Advertisement
Charliezkie

NoClip

Dec 30th, 2019
823
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. noclip = false
  2. game:GetService('RunService').Stepped:connect(function()
  3. if noclip then
  4. game:service'Players'.LocalPlayer.Character.Humanoid:ChangeState(11)
  5. end
  6. end)
  7.  
  8. plr = game:service'Players'.LocalPlayer
  9. mouse = plr:GetMouse()
  10. mouse.KeyDown:connect(function(key)
  11.  
  12. if key == "t" then
  13. noclip = not noclip
  14. game:service'Players'.LocalPlayer.Character.Humanoid:ChangeState(11)
  15. end
  16. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement