Advertisement
Guest User

Untitled

a guest
Dec 13th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 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 switch = math.sin(CurTime()*3)*(175/2)+(175/2)
  9.  
  10. local switch2 = math.sin(CurTime()*3)*(255/2)+(255/2)
  11.  
  12. local plywidth = ScrW()
  13.  
  14. local color1 = Color(255,255,255,switch2)
  15.  
  16. local color2 = Color(255,255,255,switch2)
  17.  
  18. local function DrawCases()
  19.  
  20. draw.RoundedBox(0,plywidth-275,125,300,75,Color(228,87,79,switch))
  21. draw.RoundedBox(0,plywidth-275,200,300,5,Color(159,60,55,switch2))
  22.  
  23. draw.SimpleText([[Es gibt noch Supports:]],"Supportfont",plywidth-265,135,color1)
  24. draw.SimpleText([[!supportadmin]],"Supportfont",plywidth-235,165,color2)
  25.  
  26. end
  27. hook.Add("HUDPaint","CaseNotification",DrawCases)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement