vlogergamer

Noclip (Roblox)

Dec 11th, 2021
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 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. if key == "q" then --you can change it to whatever letter you want
  11. noclip = not noclip
  12. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  13. end
  14. end)
  15. print('Loaded')
  16. print('Press "E" to noclip')
Advertisement
Add Comment
Please, Sign In to add comment