local player = game.Players.LocalPlayer local function teleport() while true do if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then local originalPosition = player.Character.HumanoidRootPart.Position player.Character.HumanoidRootPart.CFrame = CFrame.new(-923, 94, 2052) task.wait() player.Character.HumanoidRootPart.CFrame = CFrame.new(originalPosition) break end task.wait(0) end end teleport() player.CharacterAdded:Connect(teleport)