Undertale script viewer

← back to main script listing

gml_Object_obj_face_papyrus_Create_0

(view raw script w/o annotations or w/e)
1
event_inherited();
2
image_speed = 0.25;
3
if (instance_exists(obj_face_sans))
4
{
5
    with (obj_face_sans)
6
        instance_destroy();
7
}
8
if (instance_exists(obj_face_undyne))
9
{
10
    with (obj_face_undyne)
11
        instance_destroy();
12
}
13
if (instance_exists(obj_face_alphys))
14
{
15
    with (obj_face_alphys)
16
        instance_destroy();
17
}
18
if (instance_exists(obj_face_asgore))
19
{
20
    with (obj_face_asgore)
21
        instance_destroy();
22
}
23
if (instance_exists(obj_face_torieltalk))
24
{
25
    with (obj_face_torieltalk)
26
        instance_destroy();
27
}
28
if (instance_exists(obj_face_torielblink))
29
{
30
    with (obj_face_torielblink)
31
        instance_destroy();
32
}
33
if (instance_exists(obj_torbody))
34
{
35
    with (obj_torbody)
36
        instance_destroy();
37
}
38
if (instance_exists(obj_face_mettaton))
39
{
40
    with (obj_face_mettaton)
41
        instance_destroy();
42
}
43
if (global.faceemotion == 0 && sprite_index != spr_face_papyrus)
44
    sprite_index = spr_face_papyrus;
45
if (global.faceemotion == 1 && sprite_index != spr_face_papyrusmad)
46
    sprite_index = spr_face_papyrusmad;
47
if (global.faceemotion == 2 && sprite_index != spr_face_papyruslaugh)
48
    sprite_index = spr_face_papyruslaugh;
49
if (global.faceemotion == 3 && sprite_index != spr_face_papyrusside)
50
    sprite_index = spr_face_papyrusside;
51
if (global.faceemotion == 4 && sprite_index != spr_face_papyrusevil)
52
    sprite_index = spr_face_papyrusevil;
53
if (global.faceemotion == 5 && sprite_index != spr_face_papyrusside)
54
    sprite_index = spr_face_papyrussweat;
55
if (global.faceemotion == 6 && sprite_index != spr_face_papyrusdejected)
56
    sprite_index = spr_face_papyrusdejected;
57
if (global.faceemotion == 7 && sprite_index != spr_face_papyruswacky)
58
    sprite_index = spr_face_papyruswacky;
59
if (global.faceemotion == 8 && sprite_index != spr_face_papyruscry)
60
    sprite_index = spr_face_papyruscry;
61
if (global.faceemotion == 9 && sprite_index != spr_face_papyruscool)
62
    sprite_index = spr_face_papyruscool;