OnCollisionEnter not working ?

void OnCollisionEnter(Collision col)
{
if (col.gameObject.tag == “weapon”)
{
col.gameObject.active = false;
gameObject.active = false;
}
}

this isnt working … i have colliders attached to the wepaon and the gameobject
EDIT : fixed it … i forget the rigidbody every time :smile:

I have the same irritating problem