Destroy an object with another one.

Hi, I want to destroy an object (in this case a chain) when its touched by another object (a bolt cutter). I made the bolt cutter pickuable like in Amnesia and I want to make so when you go with the cutter in the chain, the chain will be destroyed. Hope you understand what I want. Is there a way i can do this ? Thank you!

//pseudocode

OnTriggerEnter(collider other)
if(other.tag == "boltcutter")
{
destroy(gameObject)
}

you might want to check out the onTriggerEnter section of the scripting reference