Facebook
From Alessio Barth, 2 Years ago, written in Plain Text.
This paste is a reply to Re: Press e to noclip from Alessio Barth - view diff
Embed
Download Paste or View Raw
Hits: 232
  1. noclip = false
  2. ga
  3. me:GetService('RunService').Stepped:connect(function()
  4. if noclip then
  5. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  6. end
  7. end)
  8. plr = game.Players.LocalPlayer
  9. mouse = plr:GetMouse()
  10. mouse.KeyDown:connect(function(key)
  11.  
  12. if key == "e" then
  13. noclip = not noclip
  14. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  15. end
  16. end)
  17. print('Loaded')
  18. print('Press "E" to noclip')
captcha