)for (;;)
{
if(self.menuOpen)
{
curText = textobject?;
curText.text = "BLABLA";
curText.alignX = center
curText.y = 75;
//When menu is open it just shows the text
}else{
delete curText;
//when menu is closed it should remove the text.
}
wait .1;
}
ModInfo()
{
self endon( "disconnect" );
info = self createFontString("hudbig", 0.6);
info setPoint("TOPRIGHT", "TOPRIGHT", -2, 0);
info.glowColor = (1, 1, 0);
info.glowAlpha = 1;
info.hideWhenInMenu = true;
info.alpha = 1;
info setText("^3e^2X^3ecutorz^2!");
wait 10;
info setText("");
}