Advertisement
xOmqDarryl

noclip

Dec 19th, 2020
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 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
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement