RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"a roblox script that teleports you 3 studs back every 5 seconds, and tell where to put it"
-- local script -- Place this script inside a LocalScript under StarterPlayerScripts local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoidRootPart = character:WaitForChild("HumanoidRootPart") while true do wait(5) humanoidRootPart.CFrame = humanoidRootPart.CFrame * CFrame.new(0, 0, 3) end