I tried to search for a solution on why only I can see my animation and not everyone but couldn’t find a solution. How can I fix it?
The Animator
object that allows for the animations to replicate would need to be created on the server. The Roblox Developer Hub page of the Animator object has more info about this:
The Animator object must be initially created on the server and replicated to clients for animation replication to work at all. If an Animator is created locally, then AnimationTracks loaded with that Animator will not replicate.
If an
Animator
is a descendant of a Humanoid or AnimationController in a Player’sCharacter
then animations started on that Player’s client will be replicated to the server and other clients.
For animation to appear to everyone, the server must replicate it, that is, the player cannot do animation unless it will be executed locally.
Edit: Use remote events
Remote Functions and Events (roblox.com)