Passing Variables between Scenes

I’m learning to build a platformer game as a start.
Can anyone tell me how to pass a scene variable “PlayerScore” to another scene with the same name?
Thanks.

Don’t use scene variable, use global variable instead for every value you want to pass between multiple scene.

Delete your score var from the scene, and add it to the global var (right on “Project”).

You have to modify the conditions/actions too, the condition/action to access/modify a scene variable is different than the one to access/modify a global one :slight_smile:

Thanks, Now I can implement Player Score using Global Variable.