Advertisement
Parellel_X

Noclip

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