Is it possible to make an animation for everyone else to see it because when I opened a place and when my friend joined, the animation appeared only to me, but not to him, so I think it was a problem in a publishing animation, so I tried to make animation free to use, but when I opened animation configuration on Website, nothing like Make public of free to use button appeared.
Any help will be appreciated! If you need a script with what I was executing animation, just leave a comment!
When playing an animation through server you need to load the Animation into the Animator instead of the Humanoid. I read this on the wiki somewhere but I can't find it now but essentially you just do a little something like this.
local Player = game.Players.LocalPlayer local Character = game.Workspace:WaitForChild(Player.Name) local Anim = game.ReplicatedStorage.Animation local LoadedAnim = Character.Humanoid.Animator:LoadAnimation(Anim) LoadedAnim:Play()