Advertisement
EliteWolfie

Noclip "e" Script

Feb 24th, 2019
4,008
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.43 KB | None | 0 0
  1. -- made by Elite Wolfie#5889
  2. noclip = false
  3. game: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 (Hotkey is "e" to Noclip/Clip)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement