Hey. I'm looking to complete this game I've been working on.
It's a time-based game and the idea is, when you reach 20 points - it will play a sound.
Then, when you reach 40 points - it will play another sound.
At the moment I've tried;
always;
if score = 20
play sound on channel 5
if score=40
play sound on channel 6
Those didn't work. So I tried
When created
do every 1 second
If score = 20
play sound on channel 5
if score = 40
play sound on channel 6
That doesn't work, either. Not entirely sure what else I can try.

Seb.