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?