Persatuan menghancurkan semua objek dengan tag

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