The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
NOCLIP FOR ALL GAMES!!! script pastebin roblox
By All games on 2024-09-21 08:00 am | Syntax: LUA | Views: 15



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  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)
  16. print('Loaded')
  17. print('Press "E" to noclip')