Transferring variables between blueprints.

way simpler than it looks for many cases - if you can just get a reference to the actor you want to access

For example, use GetPlayerPawn (0) will get the Actor for the current player. You can then cast it to your specific Character and access it.

Another example, GetGameMode, Cast To MyGameMode, access its properties and functions.