How can I control 2 characters at once?

Is it possible to control 2 different characters with different controls? i.e. using WASD to move character2 around and up,down,left,right to move character2

Pawns/characters/controllers can only accept direct input while possessed. Notice how I said ‘Direct’ input. This means that you could still easily control 2 pawns/characters/controllers using indirect input. Something you could try is to create an actor, this actor will handle player input for both players. You’d add something like ‘W’ input into the actor, and when it is pressed, you’d call the move forward event on your 1st player, now when the up arrow key is pressed, you call the move forward event on your 2nd player. You can now control both players at once using the input manager actor.