So I have a script where I just simply want to run my animation, the animation is a group asset and I can see it when I go to group creations. In my place there are a bunch of dummies on display under workspace
and each of them has this script:
hum = script.Parent.Humanoid anim = Instance.new("Animation") anim.AnimationId = "rbxassetid://3998315161" animTrack = hum:LoadAnimation(anim) animTrack:Play()
The animation ID is different for all them and I press the play button (green arrow) it works fine and they are all animating but when I press the play solo button, Most of them aren't animating but it shows no error. I check the server side of the play solo feature and it turns out they are animating for the server and it just doesn't replicate to the client. Here is an image for reference
Why does this happen and how do I guarantee that all animations are playing ?