Advertisement
xennyYT

[FE] Noclip

Nov 21st, 2019
323
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. --vouch
  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('Loaded')
  18. print('Press "E" to noclip')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement