I create a Character BP , how to control it with posses and unposses ?

First , I create a character BP, when the game start, the Player Start Actor in the scene will create an instance of my character BP, I want it can’t move and look around in the first 5 seconds,and after that it can go. so I use the posses node in the character BP, unposses is ok , but posses it not work fine. how can I do this ? Sorry for my bad English…

c7d3708c7dc1a4c524adefc7ba2ea8f57aeac099.jpeg

Your Possess node does not have an InPawn connection.

The InPawn property to this node is the Pawn you wish for the given controller to take possession of.

Feed your CharacterBP Actor reference into the InPawn node.

Thanks !

I will try it!