unity search for objects in the scene with a tag and destroy them code example
Example: unity destroy all objects with tag
GameObject[] enemies = GameObject.FindGameObjectsWithTag("Enemy");
foreach(GameObject enemy in enemies)
{
GameObject.Destroy(enemy);
}