Полагаю, вы хотите заставку перед меню, верно?
Если это так, попробуйте:
label splashscreen: # create a label for your splashscreen
play music mysong # This is optional
scene black
with Pause(5) # You can change the pause time
show text "Lorem Ipsum..." with dissolve
with Pause(5)
hide text with dissolve
with Pause (1)
show text "My" with dissolve # You can change this to an image if you have one
with Pause(6) # This pauses the current shown text
hide text with dissolve
with Pause(2)
return # And of course the Return will take you to the main menu screen
Надеюсь, это поможет.