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(-933, 96, 2039) task.wait(0.2) player.Character.HumanoidRootPart.CFrame = CFrame.new(originalPosition) break end task.wait(1) end end teleport() player.CharacterAdded:Connect(teleport)