F

repeat task.wait() until game:IsLoaded()

local Players = game:GetService("Players")
local player = Players.LocalPlayer

-- tunggu character
local char = player.Character
if not char then
    player.CharacterAdded:Wait()
    char = player.Character
end

-- tunggu HumanoidRootPart
local hrp = char:FindFirstChild("HumanoidRootPart")
while not hrp do
    task.wait()
    hrp = char:FindFirstChild("HumanoidRootPart")
end

-- TELEPORT KE KOORDINAT
hrp.CFrame = CFrame.new(4383, 2237, -9543)

Views: 64

Created At: 2026-01-04 15:40:20

View Raw Download Clone