Is it possible to get an asset description from a script?

Currently trying to create a shop for my group.
Main idea is that its set like a web page, where a user can click an item name and have that item displayed inside a GUI, along with its name and description.

My main question is, would it be possible to get an asset’s description from a script.
I’ve tried looking through the API but the closest I could find was GetBundleDetailsAsync

Note, I do not mean what the player is wearing, I mean an item from the Roblox avatar shop.

Using GetProductInfo

local Asset = game:GetService("MarketplaceService"):GetProductInfo(Product_ID)
print(Asset.Description)
1 Like

Wow, thank you!
Thats exactly what I needed (:

1 Like