How do we use a game object?

Hi,

If we duplicate Game Object In The Project hierarchy, how does Destroy(GameObject) affect that particular gameobject, does it destroy all the duplicated GameObjects? I destroyed a particular game object but it’s collsion keeps on working, what could be the problem.

Regards,
vanhouten777.

Add the tag to each object give it different name.
when collision detection try this :

function OnCollisionEnter(collision : Collision) {
 if (collision.gameObject.tag == "gameobject")
{
Destroy(gameobject);
}
}