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()
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.