Quote:
Originally Posted by samich
Is there anyway I would be able to make a box behind it? I'm mostly looking for a nice aesthetic way to go about this to have some kind of backdrop behind a line of text. I'll try just tossing in a GuiScrollCtrl just to see if it gets me my results I'm looking for though.
|
I think I know what you're saying...
Create a new Gui Control and make it look like a back box.
PHP Code:
//#CLIENTSIDE
function onCreated() {
new GuiControl("Box") {
useownprofile = true;
x = 50;
y = 50;
width = 50;
height = 50;
profile.opaque = true;
profile.border = 2; //White border
profile.fillcolor = {0,0,0,150}; //Black translucent box
}
}