Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- testing Some Stuff
- ------------------------------------------------------------------------------------------------------------------------------------
- _G.toggle = true — true or false
- if (not _G.toggle) then return; end
- while task.wait() and _G.toggle do game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0, 10, 0);
- end
- ------------------------------------------------------------------------------------------------------------------------------------
- local toggle = true — true or false
- while toggle do
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0, 10, 0)
- task.wait(0.1)
- end
- ------------------------------------------------------------------------------------------------------------------------------------
Advertisement