Advertisement
Charliezkie

No Clip Script

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