Roblox's animation doesn't want to load

So I want the rig to load but not with just the avatar but the animation as well, but when I try to, it gives me an error;
Failed to load animation with sanitized ID rbxassetid://837011741: AnimationClip loaded is not valid.

Script;

local description = game.Players:GetHumanoidDescriptionFromUserId(id)
	script.Parent.Rig.Humanoid:ApplyDescription(description)
	local idleanim = Instance.new('Animation')
	idleanim.AnimationId = 'http://www.roblox.com/asset/?id='..description.IdleAnimation
	local track = script.Parent.Rig.Humanoid:LoadAnimation(idleanim)
	track.Looped = true
	track:Play()

This has always been a bug maybe try setting the owner to a group

1 Like

This game is in a group lol.
Also, is it only a studio bug or a in game bug as well?

who owns the animation, the group or you

the group has to own animations to play them

that means the animation doesnt belong to the group, if ur account owns it, republish it to the group, if u dont own it, still republish

Im getting my animation through humanoid description as I listed in the script, its owned by roblox. It should load tho because when a character is added there is a animation script that loads the animations, otherwise there would be no animations.