So I’m using a custom character in my game; and so I need custom animations. The animations all work flawlessly, and so do the character rigs. I copied & pasted the default Animate script, and tweaked it a little to have my custom animations as well as a couple extra features. (I did not change anything to do with the way animations are played)
The issue is, the running animation specifically doesn’t replicate. All other animations on every character/skin work perfectly fine. The running animation however, works, but doesn’t replicate to other clients.
This could be because the script is a localscript. When FilteringEnabled was added, localscripts could only affect one client. To work around this, you would need to make a RemoteFunction, or RemoteEvent.
I was also told multiple times & read in multiple posts that Animations replicate automatically, so I wouldn’t think it being a local script is the issue. Seeing the server-side example, where the animations are controlled by a server script, and it still has the same issue. It’s also odd because the running animation is the only one not functioning properly. I tried to replace the running animation id with another one that was functioning, and it still didn’t work. So the issue is not the animation, but either the script itself, or possibly some other technical issue (?).