How Can I Create Different Animations For Specific Players When Joining?

Trying to script separate animations for specific players via user id upon join, how would I achieve this?

1 Like

I believe you can achieve this by using the Player.CharacterAdded event. This event fires whenever a player’s character is added to the game.

You can use the Player.UserId property to get the unique identifier for each player, and then check it against a list of user IDs for which you have defined custom animations.

1 Like

Thank you, I have a good idea of what to do for the player part, but how would I go about giving them a new animator script? Would I have to change the values of the animations per animator?

1 Like

Yea, you would have to modify the animation values in each animator script.

To create a custom animator script for each player with different animations, you can create a separate script for each player and modify the animation values as needed.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.