If the value of the variable is changed after it is displayed, the display needs to be updated using the Update Display Block
Data
Update Display
my_var = 25 my_display = codesters.Display(my_var, -200, 150) stage.wait(1) my_var= my_var + 2 my_display.update(my_var)