1. local Player = game:GetService("Players").LocalPlayer
  2. local Finish = Workspace.Checkpoints.Spawn["60"]
  3. local Rebirth = Workspace.RebirthButtons.Spawn
  4. local Camera = Workspace.CurrentCamera
  5. local Prompt = Rebirth.ProximityPrompt
  6. local TS = game:GetService("TweenService")
  7. local TI = TweenInfo.new(0.2)
  8. while task.wait() do
  9. if Player.Character ~= nil then
  10. local Root = Player.Character.HumanoidRootPart
  11. TS:Create(Root, TI, {CFrame = Finish.CFrame}):Play()
  12. task.wait(0.2)
  13. TS:Create(Root, TI, {CFrame = Rebirth.CFrame}):Play()
  14. task.wait(0.2)
  15. TS:Create(Camera, TI, {CFrame = CFrame.new(Camera.CFrame.Position, Rebirth.Position)}):Play()
  16. task.wait(0.2)
  17. fireproximityprompt(Prompt)
  18. end
  19. end