Advertisement
fluffy_dev

Untitled

Mar 5th, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. local niggers = { "fuck you", "fuck you nigger", "nigger fuck all", "hitler killed ur mom" }
  2.  
  3. hook.Add("HUDPaint", "hacked u noob", function()
  4. for _, v in pairs(player.GetAll()) do
  5. if (v != LocalPlayer() && v:Alive() && v:Team() == TEAM_PROPS or v:GetFriendStatus() == "friend" ) then
  6. local pos = v:WorldSpaceCenter():ToScreen();
  7. if (pos.visible) then
  8. 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);
  9. draw.SimpleText(v:Health(), "DermaDefault", pos.x, pos.y + 20, v:GetFriendStatus() == "friend" and Color( 0, 0, 255, 255 ) or Color(255, 0, 0, 255), TEXT_ALIGN_CENTER, TEXT_ALIGN_CENTER);
  10. end
  11. end
  12. end
  13. end);
  14.  
  15. hook.Add( "Think", "spammm", function()
  16.  
  17. for k, v in pairs( player.GetAll() ) do
  18.  
  19. local nick = v:Nick()
  20.  
  21. LocalPlayer():ConCommand( "ulx psay " .. nick .. " " .. table.Random( niggers ) )
  22.  
  23. end
  24.  
  25. end )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement