Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- sX <- GUI.GetScreenSize().X;
- sY <- GUI.GetScreenSize().Y;
- function Script::ScriptLoad()
- {
- LogoLoad()
- Console.Print("Client side scripts loaded")
- }
- LOGO<-
- {
- LOGOM = null
- LOGOB = null
- }
- function LogoLoad()
- {
- LOGO.LOGOM = GUISprite( );
- LOGO.LOGOM.SetTexture( "rma.png" );
- LOGO.LOGOM.Size = VectorScreen( sX*0.100, sY*0.100 );
- LOGO.LOGOM.Pos = VectorScreen( sX*0.830, sY*0.200 );
- LOGO.LOGOM.AddFlags( GUI_FLAG_VISIBLE | GUI_FLAG_AUTO_RESIZE | GUI_FLAG_TABSTOP)
- LOGO.LOGOB = GUISprite( );
- LOGO.LOGOB.SetTexture( "fcb.png" );
- LOGO.LOGOB.Size = VectorScreen( sX*0.085, sY*0.085 );
- LOGO.LOGOB.Pos = VectorScreen( sX*0.630, sY*0.215 );
- LOGO.LOGOB.AddFlags( GUI_FLAG_VISIBLE | GUI_FLAG_AUTO_RESIZE | GUI_FLAG_TABSTOP)
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement