I can’t find a solution. I just want to see how many sales my model has.
No, I mean I want to see the specific number of sales my model has. There was a way to see this before but I can’t find it now.
I think there was a way to see your model’s sales, but I think it might of been removed.
Use MarketPlaceService:GetProductInfo(assetid,Enum.InfoType.Asset).Sales
Edit : More info here MarketplaceService:GetProductInfo
you can run the code above in command bar in print
Use the old Roblox’s library URL:
https://www.roblox.com/library/[YOUR ASSET ID]
I got an error in the output when I did that
That doesn’t work anymore… you can’t view sales from that anymore because of the Creator Dashboard.
Yes, Roblox by default puts you into creator dashboard, but if you change your URL manually you can still see the old library. I always do it like this and it works fine for me.
run this code
local MarketplaceService = game:GetService("MarketplaceService")
local assetID = 0 -- Assetid Here
local sales = MarketplaceService:GetProductInfo(assetID, Enum.InfoType.Asset)
print(sales.Sales)
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.