After some research, it seems that there is no way to find an inactive game object by tag.
However there are solutions
to access inactive game objects:
1 - Store inactive game objects in the array if you need to reactivate them (applies only to game objects inactive at run time).
2 - Do not deactivate the game object, just disable the components that you want to disable. If you want the object to disappear, turn off the renderer. If it is a specific script, deactivate the script, etc.
This solution will allow you to find a game object by the name of its tag.
kUr4m4
source share