Can someone tell me why the text is not showing up?

@jmarro,

The text is getting hidden by the background while the draw loop is running. If you want text to appear above the background and stay there, you will want to move the text blocks inside the draw loop and below the “draw sprites” block. This way, each time the draw loop runs, it will redraw the text on top of the background (and sprites) and it will remain visible.

Hope this helps!

Mike

1 Like