Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

Any way to GetProductInfo() from a Dev Product?

Asked by
lomo0987 250 Moderation Voter
9 years ago

I don't know if it's possible?

local id = script.Parent.ID
local Asset = game:GetService("MarketplaceService"):GetProductInfo(id.Value)
local binfo = script.Parent.Parent.Parent.BInfo
local image = binfo.Image
local item = binfo.Item
local desc = binfo.Desc
local price = binfo.Price

function update()
    image.Image = "http://www.roblox.com/Thumbs/Asset.ashx?Width=110&Height=110&AssetID="..Asset.AssetId
    item.Text = Asset.Name
    desc.Text = Asset.Description
    price.Text = Asset.PriceInRobux.."R$"
end

script.Parent.MouseButton1Down:connect(update)

This is my current script.. I don't know if there is any way to have it get the information from the Developer Product?

0
Why don't you just try it out? It seems to me as if a Developer Product is a normal catalog item, so it should work. juzzbyXfalcon 155 — 9y
0
I have tried. But if you know anything about Developer Products they aren't a catalog item. If you search the ID for it just like you do for a gamepass. It won't bring you to the Developer Product. lomo0987 250 — 9y

Answer this question