Calling GetProductInfo on a UGC limited gives "IsLimited" as false

When using MarketplaceService:GetProductInfo on a UGC limited the IsLimited key is set to false.

Reproduction Code:

local ITEM_ID = 13455546043
local Info = game:GetService("MarketplaceService"):GetProductInfo(ITEM_ID)
print(Info.IsLimited) -- gives "false", should be "true"

Expected behavior

I expect IsLimited to be true.

6 Likes

Thanks for the report! We’ll follow up when we have an update for you.

2 Likes

Any updates on wether this will be fixed or not it isn’t only for UGCs it seems like it’s also for official items

For anyone coming back to figure this out, UGC Limiteds “IsLimited” is located in a different place in the info dictionary.

You should instead refer to info.CollectiblesItemDetails.IsLimited

image

Definitely super weird how this is not documented anywhere.

The top-level IsLimited and IsLimitedUnique fields are not being populated for UGC items. Please refer to the fields in the CollectiblesItemDetails object.