Undertale Yellow script viewer

← back to main script listing

gml_Object_obj_logo_Step_0

(view raw script w/o annotations or w/e)
1
if (image_index == 126)
2
{
3
    image_speed = 0
4
    instance_create(160, 240, obj_logo2)
5
    image_index = 127
6
    alarm[1] = 120
alarm[1]

destroy = true
7
}
8
if (destroy == true)
9
{
10
    if (image_alpha > 0)
11
        image_alpha -= 0.1
12
    else
13
        instance_destroy()
14
}