Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | None | 0 0
  1. nut.command.add("gearon", {
  2.     syntax = "",
  3.     onRun = function(client, arguments)
  4.       client:SetBodygroup("2","1")
  5.      
  6.       client:notifyLocalized("You've put your gear on.")
  7.     end
  8. })
  9.  
  10. nut.command.add("gearoff", {
  11.     syntax = "",
  12.     onRun = function(client, arguments)
  13.       client:SetBodygroup("1","0")
  14.      
  15.       client:notifyLocalized("You've taken your gear off.")
  16.     end
  17. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement