Undertale Yellow script viewer

← back to main script listing

gml_Object_obj_intro_fade_in_screen_Step_0

(view raw script w/o annotations or w/e)
1
if (image_alpha < 1)
2
{
3
    image_alpha += fade_speed
4
    if (image_alpha == 1)
5
    {
6
        audio_stop_sound(mus_intro)
7
        alarm[0] = 5
alarm[0]

room_goto(rm_logos 'UNDERTALE YELLOW' logo)
8
    }
9
}