Advertisement
halfdan_dk

Roblox NoClip Script

Aug 3rd, 2020 (edited)
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.38 KB | None | 0 0
  1. noclip = false
  2.  
  3. plr = game:GetService("Players").LocalPlayer
  4. mouse = plr:GetMouse()
  5.  
  6. game:GetService('RunService').Stepped:Connect(function()
  7.     local hum = plr.Character:FindFirstChildOfClass("Humanoid")
  8.     if noclip then
  9.         hum:ChangeState(11)
  10.     end
  11. end)
  12.  
  13. mouse.KeyDown:Connect(function(key)
  14.     if key == "e" then
  15.         noclip = not noclip
  16.     end
  17. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement