Posses first character

Hey guys,
I set a blueprint system that spawns a pawn class and possesses into it. The problem is i can’t find how to posses back into first pawn.

This is the system i set for spawning and possessing.

Basically you need to get a reference to the pawn your looking to posses. in the picture you have there you get your reference from the spawn node. To go back to your previous character you need a reference to it. there are a few ways i can think of to accomplish this: first you could make a variable in your player controller that is a reference to the original actor, or you could do your possession script in the level blueprint where you can have references to things in the scene. The first way is probably the better way to go. Also if you have the possession script on one character but not the other then it wont work on both. I would make this script in the player controller so that no matter which pawn you posses you can always use the ability.

I made a variable and it worked. Thanks a lot :slight_smile: