well, i am trying to make different GUIs for my server, like Events and Chatrooms, but i dont like the blue images. so how would i change them? i have a script test, what would change?
PHP Code:
new GuiWindowCtrl("window")
{
profile = GuiBlueWindowProfile;
extent = {300,500};
position = {5, 5};
text = "This is the title";
new GuiButtonCtrl("mybutton")
{
profile = GuiBlueButtonProfile;
extent = {100, 25};
position = {5,5};
text = "Push me!";
}
}
function mybutton.onAction()
{
player.chat = "I pushed the button!";
}
posted image