Place outline() in the draw event.
// Script outline(text,outline_color,text_color)
xx=0;
yy=room_height;
// Change above variables to fit your needs.
draw_set_color(argument1);
draw_set_valign(fa_bottom);
for (i=8;i<11;i+=1) {
for (ii=8;ii<11;ii+=1) {
draw_text(xx+i,yy-ii,argument0);
}
}
draw_set_color(argument2);
draw_text(xx+9,yy-9,argument0);Tell me how it goes











