Can you have 2 players control 1 player character?

I am trying to make a simple game where one player hold the other on there shoulders the “Mover” (the one holding the other) can only move and look and the one on the “Movers” shoulders can only Look Around.

I don’t know the best way to do this any ideas?

Hey there @ClayBob! Welcome to the community! From a high level, it’s going to be dependent on your use case. Is this local only or online multiplayer? Are the actors separate or do you want it as one character controller?

ya more inputs will help us to understand the scenario that you are trying to achieve !!

sorry i will explain better.

i have a Networked game and I’m trying to make it where one player is on top of another players shoulders. the bottom player can move and the top player can look around but is attached at the shoulders on the “Mover” so he can’t move just look around. And his location is tied to wherever the mover goes. (like a dad holding his child on there shoulders)

I tried maybe making 2 Actors and attaching them using the “attach actor to actor” node and “possessing” player 1 to the bottom And player 2 to the top and implementing movement there but i have read that the problem with using an actor to “possess” as a character is that in a networked game all the replicating features are in the character movement component of the player Character.

my main goal is just to attach 2 players together and have it replicated.

how would you go about doing this? Can i attach a player character to another player character? and if there was a way to attach 2 players like that, How would you spawn them in at the same player start? cause i would want the 2 players to choose which one they would be when spawning in.

sorry for so many questions i just cant find anything online for my situation. and i’m new

two controllers talking to the server
just look at input, don’t route anything directly to the char
inputs from each controller fires events X, Y, or Z on the server
map the events to the control of the pawn on the server
updates are repped back to the clients

one controller to one pawn, yes, but there’s no reason you cannot add-movement or whatnote off other events(?). even from other controllers?