Jump_off_a_cliff

Roblox BAD NOCLIP

Jan 30th, 2021 (edited)
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.68 KB | None | 0 0
  1. -- This doesn't work on lots of games, I was too lazy to make it better lol
  2. -- type /console when u've executed the script
  3.  
  4. noclip = false
  5. game:GetService('RunService').Stepped:connect(function()
  6. if noclip then
  7. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  8. end
  9. end)
  10. plr = game.Players.LocalPlayer
  11. mouse = plr:GetMouse()
  12. mouse.KeyDown:connect(function(key)
  13.  
  14. if key == "e" then -- Change 'e' to whatever you want to toggle noclip on
  15. noclip = not noclip
  16. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  17. end
  18. end)
  19. print('Loaded')
  20. print('Press e to toggle noclip')
  21. wait(1)
  22. print('If you made a custom keybind just use that to toggle noclip on and off')
Add Comment
Please, Sign In to add comment