Advertisement
Guest User

Noclip

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