Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- LobbyText <-
- {
- Element = null,
- Text = "",
- Color = "white",
- }
- function LoadLobbyText( text )
- {
- local strip = split( text, "`" );
- LobbyText.Text = strip[0];
- LobbyText.Element = GUILabel();
- LobbyText.Element.AddFlags( GUI_FLAG_3D_ENTITY );
- LobbyText.Element.Rotation3D = Vector( 1.571, 0, 1.59 );
- LobbyText.Element.Pos3D = Vector( -1781.03, -169.898, 26.8683 );
- LobbyText.Element.FontFlags= GUI_FFLAG_BOLD;
- LobbyText.Element.Size = VectorScreen( 875, 195 );
- // LobbyText.Element.TextAlignment = GUI_ALIGN_CENTER;
- LobbyText.Element.Size3D = Vector( 30,195,0 );
- LobbyText.Element.FontSize = 70;
- LobbyText.Element.Text = LobbyText.Text;
- GetLobbyTextColor( strip[1] );
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement