local Players = game:GetService("Players") local player = Players.LocalPlayer local finishLine = workspace.RaceMap:WaitForChild("FinishLine") if finishLine and finishLine:IsA("BasePart") then game:GetService("RunService").Heartbeat:Connect(function() local char = player.Character if char and char:FindFirstChild("HumanoidRootPart") then char.HumanoidRootPart.CFrame = finishLine.CFrame + Vector3.new(0, 5, 0) end end) else warn("FinishLine is missing or not a BasePart.") end