Единство уничтожить все объекты с помощью тега

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