How to get players limiteds?

I’ve tried looking it up before, but none of the solutions I found work anymore.

1 Like

Ive written code that gets the asset ids of limiteds a user owns

hope this helps:

local HttpService = game:GetService("HttpService")

local UserID = 2207291
local Url = "https://api.rolimons.com/players/v1/playerassets/"..UserID

local Success, Response = pcall(function()
	return HttpService:GetAsync(Url)
end)

if Success then
	local Data = HttpService:JSONDecode(Response)

	if Data["playerAssets"] then
		for AssetId, AssetData in pairs(Data["playerAssets"]) do
			print("Asset ID:", AssetId)
		end
	else
		print("No limiteds found")
	end
else
	warn("guh:", Response)
end
1 Like

tysm dude ive been looking for a long time for a working solution

1 Like

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