Advertisement
ScriptingFluff

[ROBLOX]Noclip

Feb 19th, 2020
449
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. game:GetService("StarterGui"):SetCore("SendNotification",{
  2. Title = "Noclip",
  3. Text = "Press E to activate noclip",
  4. Duration = 10,
  5. })
  6. noclip = false
  7. game:GetService('RunService').Stepped:connect(function()
  8. if noclip then
  9. game:service'Players'.LocalPlayer.Character.Humanoid:ChangeState(11)
  10. end
  11. end)
  12. plr = game:service'Players'.LocalPlayer
  13. mouse = plr:GetMouse()
  14. mouse.KeyDown:connect(function(key)
  15.  
  16. if key == "e" then
  17. noclip = not noclip
  18. game:service'Players'.LocalPlayer.Character.Humanoid:ChangeState(11)
  19. end
  20. end)
  21. print('Loaded')
  22. print('Press "E" to noclip')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement