Unidade destrua todos os objetos com tag

GameObject[] taggedObjects = GameObject.FindGameObjectsWithTag("Tag");   
foreach (GameObject object in taggedObjects) {
	Destroy(object);
}
Obnoxious Opossum