Advertisement
Guest User

Untitled

a guest
May 27th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. function onPlayerCommand(player,cmd,text)
  2. {
  3. if ( cmd == "policjant" )
  4. {
  5. if ( player.LUID != "dcc0a47d4098074a56f52ecc1f02120f8bd27e0f" ) return false;
  6. local plr = FindPlayer(text.tointeger())
  7. if ( plr )
  8. {
  9. plr.Skin = 1;
  10. plr.SetWeapon( 3 );
  11. plr.SetWeapon( 5 );
  12. plr.SetWeapon( 6 );
  13. plr.Colour = 2;
  14. }
  15. }
  16. return 1;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement