I am trying to display and update a gui element (text string). Can someone tell me what I am doing wrong here? The initial text is never replaced by the updating text in the loop.
kills=0
#n::
Gui,Add,Text,vStatus, starting the killing
Gui,Show,w250 h375
Loop
{
GuiControl,,vStatus, killed %kills% Glorks!
kills+=1
Sleep,3000
}
return