Advertisement
xOmqDarryl

noclip v2

Dec 19th, 2020
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 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.  
  6. end
  7. end)
  8.  
  9. local p = game.Players.LocalPlayer
  10. local mo = p:GetMouse()
  11.  
  12. mo.KeyDown:connect(function(k)
  13. if k == "e" then
  14. noclip = true
  15. p.Character.Humanoid:ChangeState(11)
  16. end
  17. end)
  18.  
  19. mo.KeyDown:connect(function(k)
  20. if k == "r" then
  21. noclip = not noclip
  22. p.Character.Humanoid:ChangeState(11)
  23. end
  24. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement