QwertyHacker

E To Noclip script roblox

Jan 6th, 2021 (edited)
5,810
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.35 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 = not noclip
  15.         p.Character.Humanoid:ChangeState(11)
  16.     end
  17. end)
Add Comment
Please, Sign In to add comment