I’m trying to use GetInventory to get all items from my inventory, however it misses some items
As you can see, it seems to stop at Man Face and not get the other faces
And it does print all items
but searching shows stuff missing
Theres nothing in the loop to break/return
local Inventory = AvatarEditorService:GetInventory(AllEnums)
while not Inventory.IsFinished do
local CurrentPage = Inventory:GetCurrentPage()
print(CurrentPage, itemInfo.AssetId, itemInfo.Name)
if Inventory.IsFinished then
break
end
local NextPage = pcall(function()
Inventory:AdvanceToNextPageAsync()
end)
if not NextPage then
break
end
task.wait()
end