Animation Replication

Hello, I have a situation where all 6 player controllers control one hand. I have it setup where each player gets assigned one finger, but cant figure out how to replicate the animations. Say client one is assigned the Thumb, and clicks to press the thumb down, I cant figure out how to have all clients see the animation after client one clicks, only client one can see the thumb animation. Any help or tips is greatly appreciated!

Fixed the issue, ended up being a bug with multicasting. Shouldn’t have put the multicast in the player controller anyhow. Ended up fixing it by getting an array of all the player controllers on the server, and using a for each loop, from there I ran a Run on Owning Client for each element from the for each loop.