Advertisement
Guest User

d

a guest
Feb 14th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. local frame = vgui.Create( "DFrame" )
  2. frame:SetSize( 200, 150 )
  3. frame:SetTitle( "Credits" )
  4. frame:Center()
  5. frame:MakePopup()
  6.  
  7. -- Rich Text panel
  8. local richtext = vgui.Create( "RichText", frame )
  9. richtext:Dock( FILL )
  10.  
  11. -- Text segment #1 ( grayish color )
  12. richtext:InsertColorChange( 192, 192, 192, 255 )
  13. richtext:AppendText( "This server was made by shadowxbeasts \nThanks to Rutonyukusu for helping me with Dev things \nAnd thanks to God Loves Us for some funding." )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement