Animations not replicating properly across clients

My friend is having issues with animations not showing for other players, this issue is happening in studio and in game.

Example(s):

External Media

https://streamable.com/vl0ah0

He uses the same method of using the roblox animation script with changed ID’s, which works for me but not for him.

2 Likes

local Animation = (your animation ID)

tool.Activated:Connect(function()
game.replicatedstorage.remoteevent:FireServer(Animation)
end)
– server script
game.replicatedstorage.remoteevent.OnServerEvent:Connect(function(Player, Animation)
Player:LoadAnimation(Animation)
tool.Activated:Connect(function()
Animation:Play()
end
end)

Well my friend resolved the issue on his own , I made this post for him but I forgot to close it.