Retrieve bundles from humanoid description

how can i retrieve the bundle ids (if any) from an avatar that gets loaded? i tried using:

for _,bundleId in ipairs(result:GetEquippedEmotes()) do
	if bundleId then
		table.insert(bundleIdsTable,bundleId)
	end
end

but nothing gets inserted into the table even if the avatar indeed has parts of a bundle, is there any other way to get the bundle ids?

Iā€™m pretty sure :GetEquippedEmotes returns a table in format:

{
    {Slot = Y, Name = "YName"},
    {Slot = X, Name = "XName"},
}

and not actual bundle ids.

This post might help you

1 Like

thank you :))

xxxxxxxxxxxxxxxxxxxxx