None of my scripted window controls work anymore. For example, this script:
PHP Code:
//#CLIENTSIDE
function onCreated() {
new GuiWindowCtrl("Dusty_Test") {
profile = GuiBlueWindowProfile;
x = 10;
y = 10;
width = 160;
height = 80;
text = "Window";
}
}
It is created, apparently, because it is stealing focus. player.chat = Dusty_Test.width; echoes as well. However, I see absolutely nothing.
edit: I thought it was all controls, but apparently it is just windows. I tried out a simple control and that seems to work, but when I changed it back to a window nothing displays.