Hi, I am trying to play an animation on all players inside a server at the same time.
for i, v in pairs(game.Workspace:GetDescendants()) do
if v.Name == "Humanoid" then
local hum = v
local Hold = hum:LoadAnimation(script.BruceHold)
Hold:Play()
end
end
I tried this method and have no errors printing, yet the script will still not work. Any help or guidance would be greatly appreciated!
The source of my issue was completely on my side, I had forgot that the animation was R15 and not R6. Once I loaded it into a new game, the R15 animation of course would not play on an R6 rig.