How to save and load character stats using Blueprint in Unreal Engine 5?

Create a new save game class, then add all the variables you’ll need. Note you cannot store references, Only simple data.

Use your controller class to Store and Load save game data.

Absolutely limit what you do in Level BP that’s not exclusively about the level itself. Technically nothing non-level related should be in the level BP.