Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2020
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  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')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement