Hi, you are setting yoyo tween. Your number of repeats is 0, which means it will run once. As it is yoyo tween it will first tween alpha from 0 to 1 and then yoyo part starts and tweens alpha from 1 back to 0. In your code, you are calling start twice without any delay or time to finish your 2 seconds (2 x 1000 - there and yoyo back) tween. If you call start on running tween it is ignored (see https://github.com/photonstorm/phaser/blob/master/src/tween/Tween.js#L296)    In case yo