How do i check if a UGC item is limited through a script?

I’m trying to check if an item is limited, but UGC items will always return as false, limited or not. Limiteds uploaded by the Roblox account work fine.
Here’s the code and what gets printed. (and yes the item i used was a UGC limited)
image

image

1 Like
local function isLimited(info): boolean
	local details = info.CollectiblesItemDetails
	return info.IsLimited or info.IsLimitedUnique or (details and details.IsLimited)
end
2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.