How can I get a asset name, image and description from the asset id?
1 Like
You can use HttpService
for creating uuid for you stuff, then add it to your item as a new instance or attribute. Then you can check whatever you want if your item has a corresponding asset id that you put in.
1 Like
Use MarketplaceService:GetProductInfo(id, InfoType.Asset)
local id = 0000000
local data = game.MarketplaceService:GetProductInfo(id, Enum.InfoType.Asset)
-- name = data.Name
-- description = data.Description
5 Likes
How could I get if they own it or not?
Creating your own purchase history is a best approach in this case. I’m sorry for my reply, I wasn’t sure that you were talking about parts or developer products.
I don’t think that it is possible to check if a user owns anything other than a gamepass using marketplace service.