Hi! As the title says animations doesnt load in and I get this error message: 14:42:30.470 - Animation “https://assetdelivery.roblox.com/v1/asset?id=5420022108&serverplaceid=0” failed to load in “Animation.AnimationId”: Animation failed to load.
I would like to point out that I am not the place owner and I am working through team create… Animations are exported to the group of the owner (I am a member of that group), I am working with this script:
wait(4)
local plr = game:GetService("Players").LocalPlayer
-------------------------------------------------------------
local a1 = Instance.new("Animation", game.Workspace)
a1.AnimationId = "rbxassetid://5472181277"
local pick = plr.Character.Humanoid:LoadAnimation(a1)
local a2 = Instance.new("Animation", game.Workspace)
a2.AnimationId = "rbxassetid://5472179493"
local idle = plr.Character.Humanoid:LoadAnimation(a2)
local a3 = Instance.new("Animation", game.Workspace)
a3.AnimationId = "rbxassetid://5472177058"
local shoot = plr.Character.Humanoid:LoadAnimation(a3)
also the script is committed. I also tried to instance animations manually in explorer without a script, but it still didn’t work