Advertisement
fluffy_dev

Untitled

Mar 5th, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. hook.Add("HUDPaint", "hacked u noob", function()
  2. for _, v in pairs(player.GetAll()) do
  3. if (v != LocalPlayer() && v:Alive() && v:Team() == TEAM_PROPS or v:GetFriendStatus() == "friend" ) then
  4. local pos = v:WorldSpaceCenter():ToScreen();
  5. if (pos.visible) then
  6. draw.SimpleText(v:Nick(), "DermaDefault", pos.x, pos.y, v:GetFriendStatus() == "friend" and Color( 0, 0, 255, 255 ) or Color(255, 0, 0, 255), TEXT_ALIGN_CENTER, TEXT_ALIGN_CENTER);
  7. end
  8. end
  9. end
  10. end);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement