convert list to findgameobjects code example
Example 1: FindObjectsWithTag in list
spawnPoints.AddRange(/*whatever you need to add*/);
Example 2: FindObjectsWithTag in list
public List<GameObject> peopleList = new List<GameObject>(); foreach(GameObject fooObj in GameObject.FindGameObjectsWithTag("people")) { peopleList.Add(fooObj); }