How do I load a saved object into my Level?

I am still pretty new to Unreal so forgive me for my slowness

So I have a character class which I want to use for both enemies and the personal character you raise up*

In one level I have the training ground and I want to go to the arena and use the same character there.

So how can I load up that character and actually place it in the game. So far I just know how to place copy’s of the blueprint.

I suppose the work around is to just copy all the stats (a lot btw) and look of that specific character blueprint but I was wondering if there is a way to just plop it in when the level starts after loading it.

If I were you, I would make all the variables in your character BP that you want to load from a save “Exposed on Spawn”. Then, when you Spawn Actor from Class, you input the saved data into the spawn node which loads it right into your actor.