I have saved the animations as my own but they still don't work, this is how I put in the ID: https://i.gyazo.com/4d130411f0578440dab575a634dc2d91.png
Here is the animations script: local poseanim = Instance.new("Animation") poseanim.AnimationId = "http://www.roblox.com/Asset/?ID=419001089" local pose = character.Humanoid:LoadAnimation(poseanim)
local equipanim = Instance.new("Animation") equipanim.AnimationId = "http://www.roblox.com/Asset/?ID=94160581" local equip = character.Humanoid:LoadAnimation(equipanim)
local block1anim = Instance.new("Animation") block1anim.AnimationId = "http://www.roblox.com/Asset/?ID=419001012" local block1 = character.Humanoid:LoadAnimation(block1anim)
local stunanim = Instance.new("Animation") stunanim.AnimationId = "http://www.roblox.com/Asset/?ID=419001182" local stun = character.Humanoid:LoadAnimation(stunanim)
Only the block animation seems to work in game.
For me, whenever something works in studio and not in the game it is a filtering enabled issue.. however it may not be your issue.