TheXcodeerror

v noclip

Nov 12th, 2019
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. local noclipplayer = game:GetService("Players").LocalPlayer
  2. local noclipmouse = noclipplayer:GetMouse()
  3.  
  4. local donoclip = false
  5. local noclip = false
  6.  
  7. function v_noclip(key)
  8. if (key == "v") then
  9. if noclip == false then
  10. donoclip = true
  11.  
  12. noclip = true
  13. elseif noclip == true then
  14. donoclip = false
  15.  
  16. noclip = false
  17. end
  18. end)
Advertisement
Add Comment
Please, Sign In to add comment