Get Idle Animation Id From Idle Animation Package Problem

Hi, I just Trying To Make Outfits Loader And I Got A Little Problem
I’m Trying To Get Idle Animation Id From Roblox Api But I Got Idle Animation Bundle

  1. I Want To Get The Idle Animation Not Idle Animation Bundle

  2. I Don’t Know How To

  3. I Was Research For It But Seem Like No One Post About It

So, This is a outfit detail table
image
they give 2 id (id and currentVersionId)
after tried to load animation both of id seem like it not working

After checking in the catalog, i found the idle animation have 2 animations
image

I don’t know how to get the first idle animation

1 Like

What’s your load animation script?

Im Using Api To Load Them (OutfitData = Outfit Api, OutfitDataDetail = Get Outfit Detail From Outfit Id Api)

You can just use Players:GetHumanoidDescriptionFromUserId
It will return you with HumanoidDescription
then use Humanoid:ApplyDescription

Humanoid Description have animations, shirts, pants etc.
Example code is listed below

local players = game:GetService("Players")
local playerOutFitToGet = "ROBLOX"
local playerUserId = players:GetUserIdFromNameAsync(playerOutFitToGet)

players.PlayerAdded:Connect(function(player)
     local char = player.CharacterAdded:Wait()
     local humanoid = char:WaitForChild("Humanoid") or char:FindFirstChild("Humanoid")
     if not humanoid then return end
     local description = players:GetHumanoidDescriptionFromUserId(playerUserId)
     if not description then return end
     humanoid:ApplyDescription(description)
end)

The code above will give every player outfit of roblox.

1 Like

Im Using Api For Get They’s Outfits And Show Them In Gui
image
Seem Like Animation Doesn’t Appear

1 Like

I was able to accomplish this by getting a browser plugin called “BTRoblox”. It would allow you to view an explorer of the animation folder. From there, you can get the Id manually.

Link to plugin if you need:
Chrome
Firefox

If you want an alternative, try this:

It has the ids for all animations.

Outfits Detail Has Different Animation So I Need To Get The Animation Id From OutfitsDetailTable, Or I Need To Get Every Animations In The Roblox And Find If They’s Animation Name Are Correct (i think i can not do it)

Its easy, just add animate script in those npcs and you are good to go.
Heres the animate script below (Dont change anything from the animate script even animations the humanoiddescription will take care of it.)

https://www.roblox.com/library/9481870052/

Get avatar GUI
https://www.roblox.com/library/9481991181/

Screen shot

image
image
image

1 Like

From what I think you’re saying, you want to get the ids from a table?

I don’t see why you can’t manually copy/paste the id of the animation and play it using Animator:LoadAnimation?

The Id In The Table Isn’t Animation id