Sorry if this is confusing but I want to be able to have the same enemy with the same script and no change except when collided with by the bullet they will all die the same way without having do something special for each one. I have no problem with having to set up a script for each one, but I just feel there may be an easier way. My current script on the bullet is
void OnCollision2D (Collision col){
if (col.gameObject.name == "Enemy") {
enemyscript.kill ();
Destroy(gameObject);
And as of now all of the enemy are named enemy and are all attached to the same enemyscript which destroys them. Thanks ahead of time.