while true do local success, errorMessage = pcall(function() local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait() local HumanoidRootPart = Character:WaitForChild("HumanoidRootPart", 5) if HumanoidRootPart then local targetPosition = Vector3.new(-80, 359, 225) -- Replace if other game. HumanoidRootPart.CFrame = CFrame.new(targetPosition) print("Teleported to: " .. tostring(targetPosition)) else warn("HumanoidRootPart hasn't found") end end) if not success then warn("Error: " .. errorMessage) end wait(60) end