i made a Scene With Boolean Variables but they don’t seem to work with my original scene
You’ll need to explain the problem better, which is why there’s a template when posting for help. What are you trying or expecting to do, what actually happens?
I was wondering if you you can carry stuff over from other scene’s like save data
You can if you use global variables. Scene variables only exist while the scene is around. Object variables only last while the object is around.
So dose that mean i can save my game in a different scene and then go to my main scene
Yes. Global variables will remain until the game is shut down or closed. They can be accessed from any scene. If you change a global variable in one scene, that changed value will be what another scene reads.