eternal-space/objects/obj_player_2/Collision_obj_rock.gml
2021-08-01 20:37:02 -04:00

14 lines
245 B
Plaintext

/// @description Insert description here
// You can write your code in this editor
lives -=1;
score -= 1000;
with(obj_spawner){
alarm[1] = room_speed;
};
instance_destroy();
repeat(15){
instance_create_layer(x,y,"Instances",obj_dust);
};