Multicrew vehicle system in UE5

Can someone tell me how I can make a multi-player tank control system. That is, each player controls separate parts of the tank. it is desirable that the tank be one pawn(Not a hull and turret as different pawns)

using enhanced input you could just add certain inputs to the player controller

so one player drives, add driving controls to that player.
a second player controls the turret so add turret controls to that player.

with a Ref to the tank you can do any functionality without having to ‘possess’ it

thanks, I will try it