local Players = game:GetService("Players") local player = Players.LocalPlayer local targetPos = Vector3.new(-165.78, -1.33, -10.24) local delaySeconds = 0.1 -- temps entre chaque TP while true do task.wait(delaySeconds) if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then player.Character.HumanoidRootPart.CFrame = CFrame.new(targetPos) end end