RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a script that makes my character loop teleport up as if im floating"
-- local script local player = game.Players.LocalPlayer local character = player.Character local humanoidRootPart = character:WaitForChild("HumanoidRootPart") while true do humanoidRootPart.CFrame = humanoidRootPart.CFrame + Vector3.new(0, 5, 0) wait(0.5) humanoidRootPart.CFrame = humanoidRootPart.CFrame - Vector3.new(0, 5, 0) wait(0.5) end