Hello im currently making this as i think it might be a bug with roblox search catalog api so basically my script loads the emotes from roblox using the catalog search params and only in studio it is loading the emotes when im playing in roblox it doesn’t load emote but some weird asset called half head i only been facing this issue recently I’m also doing the search params from server side
local params = CatalogSearchParams.new()
params.SalesTypeFilter = Enum.SalesTypeFilter.All
params.AssetTypes = {Enum.AvatarAssetType.EmoteAnimation}
local types = game:GetService("AvatarEditorService"):SearchCatalog(params)
print(types)
local function get_animations()
datatable[CurrentPageNumber] = {}
for _, ItemInfo in ipairs(types:GetCurrentPage()) do
local StoreData = {ItemInfo['Id'], ItemInfo['Name'], ItemInfo['Price']}
table.insert(datatable[CurrentPageNumber], StoreData)
end
return true