Advertisement
Guest User

Untitled

a guest
Apr 26th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. surface.CreateFont( "Kix", {
  2. font = "Arial", -- Use the font-name which is shown to you by your operating system Font Viewer, not the file name
  3. extended = false,
  4. size = 20,
  5. weight = 1500,
  6. blursize = 0,
  7. scanlines = 0,
  8. antialias = true,
  9. underline = false,
  10. italic = false,
  11. strikeout = false,
  12. symbol = false,
  13. rotary = false,
  14. shadow = false,
  15. additive = false,
  16. outline = false,
  17. } )
  18.  
  19.  
  20.  
  21. hook.Add("HUDPaint" , "DrawMyHud" , function()
  22.  
  23. draw.RoundedBox(10,1515,3,410,65,Color(0,0,0,200))
  24.  
  25. draw.SimpleText("You have just died. New Life Rule is now active,", "Kix",1520,5,Color(255,255,255),0,0)
  26.  
  27. draw.SimpleText("returning to this position/using knowledge from ", "Kix",1520,25,Color(255,255,255),0,0)
  28.  
  29. draw.SimpleText("previous lives/life is punishable. ", "Kix",1520,45,Color(255,255,255),0,0)
  30.  
  31. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement