I want to load a player’s animation to the rig but it keeps saying that it’s not verified.
I have searched the web and found that I have to “verify” the id.
I have also found that it plays the animation when it loads the character but it doesn’t.
Please help.
script;
local description = game.Players:GetHumanoidDescriptionFromUserId(id)
script.Parent.Rig.Humanoid:ApplyDescription(description)
local idleanim = Instance.new('Animation')
idleanim.AnimationId = 'rbxassetid://'..description.IdleAnimation
local track = script.Parent.Rig.Humanoid:LoadAnimation(idleanim)
track.Looped = true
track:Play()
You’re getting an ID that’s exclusively made to be equipable for your avatar, not the actual animation ID that Animation object is expecting for, you’ll have to find out the real one instead
There was an API that returns animations from a bundle linked to AssetService, not familiar since i haven’t used it either but atleast should return the dictionary of many animations you can find.