local gay = LocalPlayer()
local SimpleText = draw.SimpleText
GAMEMODE["DrawOverlay"] = function()
local fags = player.GetAll()
for i=1,#fags do
local v = fags[i]
if v == gay then continue end
if v:Health() < .1 then continue end
if v:Team() == TEAM_SPECTATOR then continue end
if v == nil then continue end
local owned = v:LocalToWorld(v:OBBCenter()):ToScreen()
SimpleText(v:Name(),"TargetIDSmall",owned.x,owned.y,Color(20,70,200),1)
end
end