How can I get a table of all limiteds?

I’ve been working on a case clicker game recently and realized that looking through the catalog and manually finding all the limiteds on the limiteds on the catalog wasn’t that easy. To make things easier, is there a way to get a list of all limited items?

2 Likes

Catalog - Roblox These are all the limited items on the catalog.

1 Like

I know where to find them, but I don’t know how to turn that into a table.

1 Like

https://www.rolimons.com/api/playerassets/1
You could use rolimon’s api to check for ROBLOX’s inventory
You would have to use HTTP requests

local Http = game:GetService("HttpService")
local Inventory = Http:JSONDecode(Http:GetAsync("https://www.rolimons.com/api/playerassets/1"))
for i, v in next, Inventory.playerAssets do
    print(i) -- the limited ID
end

You should also limit the amount of times you send a HTTP request because it can cause performance issues

2 Likes

If you want to do it the best, do it by hand.

1 Like

This is a really unique take on the situation I would of probably never thought of. But I’ve heard some people say that the roblox account is missing certain items or has duplicates of certain items. Do you know how I would get the api of the rolimons catalog?

1 Like

Missing items, probably
But I don’t think it would have duplicates, since the different serials are stored in its array

2 Likes

Not sure what is meant by duplicates but the Roblox account does own multiple copies of some limiteds:

2 Likes