boobster

Untitled

Feb 24th, 2017
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.44 KB | None | 0 0
  1. if (CLIENT) then
  2.     local hobos = {}
  3.         hook.Add("PreDrawHalos", "HoboWh", function()
  4.             if team.GetName() == TEAM_HOBO then
  5.                 halo.Add(ents.FindByName("food_fatburger"), Color(0, 0, 255), 2, 2, 2, true, true)
  6.             end
  7.                     for k, v in pairs(player.GetAll()) do
  8.                         if string.find(v:Team(), "Bezdomny") then
  9.                             table.insert(hobos, v)
  10.                     end
  11.                             halo.Add(hobos, Color(255, 0, 0), 2, 2, 2, true, true)
  12.                             end
  13.                
  14.    
  15.     end)
  16. end
Add Comment
Please, Sign In to add comment