07 Jul 2015 16:18
Not totally sure what you're asking, but you can use the function instance_exists to see if that object already exists, or use with(object){ do so something} to cycle through all object instances, and can delete all objects that aren't the newly-instanced one using:
var current_id = id
with(your_object){ if(id != current_id){ instance_destroy() } }