Advertisement
Guest User

Untitled

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