Advertisement
NELSONHERO1

NoClip Script

Feb 15th, 2021
25,816
-1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 1
  1. noclip = false
  2. game:GetService('RunService').Stepped:connect(function()
  3. if noclip then
  4. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  5. end
  6. end)
  7. plr = game.Players.LocalPlayer
  8. mouse = plr:GetMouse()
  9. mouse.KeyDown:connect(function(key)
  10.  
  11. if key == "e" then
  12. noclip = not noclip
  13. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  14. end
  15. end)
  16. print('Loaded')
  17. print('Press "E" to noclip')
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement