Advertisement
Guest User

colrs:3

a guest
May 24th, 2015
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. CreateClientConVar( "esp_r" , 255, true ,false) //set the pos of the "info" y
  2. CreateClientConVar( "esp_g" , 0, true ,false) //set the pos of the "info" y
  3. CreateClientConVar( "esp_b" , 0, true ,false) //set the pos of the "info" y
  4.  
  5.  
  6. hook.Add("HUDPaint","",function()
  7. for k, v in next, player.GetAll() do
  8. local Pos = (v:GetPos()+Vector(0,0,80)):ToScreen()
  9. if v:Alive() and v:IsValid() and v != LocalPlayer() then
  10. surface.SetFont("trebuchet18")
  11. surface.SetTextColor(Color(GetConVarNumber("esp_r"),GetConVarNumber("esp_g"),GetConVarNumber("esp_b"),255))
  12. surface.SetTextPos( Pos.x , Pos.y )
  13. surface.DrawText( v:GetName())
  14. end
  15. end
  16. end )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement