The solution is to set all of the GameObjects active, set their Visibility on start to Off, and change the sequences from:
Code: Select all
SetActive(black,false);
SetActive(pink,true);
Code: Select all
SetEnabled(SpriteRenderer,false,black);
SetEnabled(SpriteRenderer,true,pink)