HiDad910

Send it

Mar 14th, 2021 (edited)
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. _G.noclip = true -- toggles the noclip on and off
  2. game:GetService("RunService").Stepped:Connect (function() -- basically while true do but faster and better
  3. if _G.noclip then -- if noclip is true this happens
  4.  
  5. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11) -- basically no collision float
  6.  
  7. elseif _G.noclip == not _G.noclip then -- if noclip is false
  8.  
  9. game.Players.LocalPlayer.Character.Humanoid:ChangeState(2) -- standing up
  10. end
  11. end) -- end
Add Comment
Please, Sign In to add comment