Advertisement
FazeWolfyBoy

Noclip

Mar 26th, 2022
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. game.StarterGui:SetCore("SendNotification", {
  2. Title = "Noclip";
  3. Text = "Noclip Press N";
  4. })
  5. game:GetService('RunService').Stepped:connect(function()
  6. if noclip then
  7. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  8. end
  9. end)
  10. plr = game.Players.LocalPlayer
  11. mouse = plr:GetMouse()
  12. mouse.KeyDown:connect(function(key)
  13.  
  14. if key == "n" then
  15. noclip = not noclip
  16. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  17. end
  18. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement