kk i have my message gui where when u click on a npc it opens up a blue gui an talks to you instead of the blue gui u get in teh gui editor how would u upload ur own image instead of that blue box
PHP Code:
//#CLIENTSIDE
function onActionLeftMouse(){
new GuiWindowCtrl("MyGUI_Window1"){
profile = GuiBlueWindowProfile;
clientrelative = true;
clientextent = "320,240";
canresize=false;
canminimize=false;
canclose=true;
canmaximize=false;
destroyonhide=true;
text = "message";
x = 285;
y = 241;
new GuiTextCtrl("MyGUI_Text1") {
profile = GuiBlueTextProfile;
height = 20;
text = "Uhhhhhhh.The earth is tearing apart with ";
width = 228;
x = 50;
y = 50;
}
new GuiTextCtrl("MyGUI_Text2") {
profile = GuiBlueTextProfile;
height = 20;
text = "with the reactors there are making the ";
width = 217;
x = 52;
y = 69;
}
new GuiTextCtrl("MyGUI_Text3") {
profile = GuiBlueTextProfile;
height = 20;
text = "planet die you must stop them please.";
width = 212;
x = 55;
y = 88;
}
}
}
heres a screen shot what i am talking about if yall dont know
