let xt = 0 let kirin2 = images.createBigImage(` # # . . . . . . . . . # . . . # # . . . . # # # . . # . . . . # . # . . # # # . . # . # . . # . # . `) let tone1 = [ 262, 294, 330, 349, 392, 440, 494, 523 ] basic.forever(function () { xt = 0 for (let index = 0; index < 8; index++) { kirin2.scrollImage(1, 200) music.play(music.tonePlayable(tone1[xt], music.beat(BeatFraction.Whole)), music.PlaybackMode.UntilDone) xt += 1 } })