My game is completly broken...

I tried to add the we are number 1 as a soundtrack and the game completly broke. I tried to change the soundtrack to see what would happed and all it did was add sound. https://flowlab.io/game/play/1165859 Please help @grazer

It looks like you have two problems:

  1. You added your sound block to the ground object which there are many copies of, so the sound is going to attempt to play about 500 times.
  2. You are triggering the sound start from an Always trigger, which means that the sound will start playing every frame (30 times per second)

500 x 30 = playing your sound 15,000 times per second. The game doesn’t have any time left to do anything else :frowning:

thanks @grazer