O00fed_loadstringss

Untitled

May 26th, 2019
568
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 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. end
  6. end)
  7.  
  8. local plr = game.Players.LocalPlayer
  9. local mouse = plr:GetMouse()
  10. mouse.KeyDown:connect(function(key)
  11.  
  12. if key == "f" then
  13. noclip = not noclip
  14. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  15.  
  16. end
  17. end)
  18. end)
Advertisement
Add Comment
Please, Sign In to add comment