Advertisement
Guest User

Untitled

a guest
Dec 13th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. surface.CreateFont( "Supportfont", {
  2. font = "CloseCaption_Normal",
  3. size = 25,
  4. weight = 800,
  5. antialias = true
  6. } )
  7.  
  8. local plywidth = ScrW()
  9.  
  10. local function DrawCases()
  11.  
  12. switch = math.sin(CurTime()*3)*78.5+78.5
  13. switch2 = math.sin(CurTime()*3)*127.5+127.5
  14.  
  15. draw.RoundedBox(0,plywidth-275,125,300,75,Color(228,87,79,switch))
  16. draw.RoundedBox(0,plywidth-275,200,300,5,Color(159,60,55,switch2))
  17.  
  18. draw.SimpleText([[Es gibt noch Supports:]],"Supportfont",plywidth-265,135,Color(255,255,255,switch2))
  19. draw.SimpleText([[!supportadmin]],"Supportfont",plywidth-235,165,Color(255,255,255,switch2))
  20.  
  21. end
  22. hook.Add("HUDPaint","CaseNotification",DrawCases)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement