Advertisement
slowlytrying

Untitled

May 31st, 2022
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  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. if key == "e" then
  11. noclip = not noclip
  12. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  13. end
  14. end)
  15. game.StarterGui:SetCore("SendNotification", {
  16. Title = "Noclip";
  17. Text = "Loaded.";
  18. Duration = "10";
  19. })
  20. wait(1)
  21. game.StarterGui:SetCore("SendNotification", {
  22. Title = "Noclip";
  23. Text = "Press E To Noclip";
  24. Duration = "10";
  25. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement