bush = GameObject.FindGameObjectWithTag("Bush").transform;
But with this:
bush = GameObject.FindGameObjectsWithTag("Bush").transform;
But for some reason, trying to find GameObjects with the tag and putting “.transform” after it won’t work… I tried removing the “.transform” after it and putting a foreach statement after it, like so:
foreach (GameObject bushes in bush)
{
bushes.transform();
}
But it still doesn’t work. So I came here, and would appreciate the help.