- local Player = game:GetService("Players").LocalPlayer
-
- local Finish = Workspace.Checkpoints.Spawn["60"]
- local Rebirth = Workspace.RebirthButtons.Spawn
-
- local Camera = Workspace.CurrentCamera
- local Prompt = Rebirth.ProximityPrompt
-
- local TS = game:GetService("TweenService")
- local TI = TweenInfo.new(0.2)
-
- while task.wait() do
- if Player.Character ~= nil then
- local Root = Player.Character.HumanoidRootPart
-
- TS:Create(Root, TI, {CFrame = Finish.CFrame}):Play()
- task.wait(0.2)
- TS:Create(Root, TI, {CFrame = Rebirth.CFrame}):Play()
- task.wait(0.2)
- TS:Create(Camera, TI, {CFrame = CFrame.new(Camera.CFrame.Position, Rebirth.Position)}):Play()
- task.wait(0.2)
-
- fireproximityprompt(Prompt)
- end
- end