I have a script called dataSheet attached to the GameObject DataSheet. How do I access booleans in it from another scene?
When you load a new scene, Unity destroys all objects of the old scene before it creates the objects of the new scene.
You have to mark objects from the previous scene by calling DontDestroyOnLoad()
But this is not right approach how to work with Unity