Simple fade script
This script can be called by any object that wants to fade. The sprite accepts one argument, which is how fast to fade eg 0.01, 0.04. This script will automatically destroy the object once it becomes invisible. Easy!
 

image_alpha -= argument0

if image_alpha < 0
{
    instance_destroy()
}
 

 
Google