How to find tags in scene?

How can i find tag (Player) in a specific additive loaded scene (For example Town)?

Hello @sapirnoam

For gameobjects, you can use GameObject.FindGameObjectsWithTag() to get list of gameobjects or just GameObject.FindWithTag() if you’re sure that only one “player”-tagged object exists and then check it’s gameobject.scene field to find out if it’s in the scene you need.