How do I make a color flash?

So I’m making a game with astroids

Every time you touch those astroids you become red for a sec but how do I make it go away?

4 Likes

Hi @DanGaming, and welcome to our community! :slight_smile:

To make the color go away, try setting a timer and when it goes off, set the colour to white.

3 Likes

How do I make a timer?

3 Likes

An easy way to learn that is from the instructions for the Maze Game: https://www.getready.io/hourofcode-maze

Basically, you add a Timer object to your game, then in the events you can query its value and control turning it on and off (set “active” to yes/no).

3 Likes