How can I change price text to thumbnail images on a shop like one in Pls Donate?

Hello fellow devs!

Now I am developing a shop system like that of Pls Donate.

And so far so good.

Here is the shop I made:
SamuraiEraHouses

However, unlike Pls Donate,
I want to show product thumbnails (images) rather than prices
in front of a shop.

How can I realize it?

I looked for in JSON data but I couldn’t find out which one means thumbnail image

1 Like

let me see JSON data and find out what is thumbnail images

Here is the sererscript.
And I used the url here to take JSON data.

local nameLabel = script.Parent:WaitForChild("NamePart"):WaitForChild("NameGui"):WaitForChild("NameLabel")
nameLabel.Text = "Unclaimed!"
local itemsScroller = script.Parent:WaitForChild("ItemsPart"):WaitForChild("ItemsGui"):WaitForChild("ItemsScroller")

local proximityPrompt = Instance.new("ProximityPrompt", script.Parent.NamePart)
proximityPrompt.HoldDuration = 1
proximityPrompt.ActionText = "Hold E to Claim!"
proximityPrompt.UIOffset = Vector2.new(0, 2)
proximityPrompt.RequiresLineOfSight = false
proximityPrompt.Name = "StandProximityPrompt"


local http = game:GetService("HttpService")

local url = "https://catalog.roproxy.com/v1/search/items/details?Category=3&CreatorName="


proximityPrompt.Triggered:Connect(function(plr)

	local data = http:JSONDecode(http:GetAsync(url .. plr.Name)).data

	if data then

		game.ReplicatedStorage.RemoteEvent:FireClient(plr)

		nameLabel.Text = plr.Name .. "'s Stand"

		proximityPrompt.Enabled = false

		table.sort(data,
			function(a,b)
				return a.price < b.price
			end
		)


		for i, item in pairs(data) do

			local newButton = script.DonateButton:Clone()
			newButton.Text = item.price .. "R$"

			local id = Instance.new("IntValue", newButton)
			id.Value = item.id

			newButton.Parent = itemsScroller

			--itemsScroller.CanvasSize = UDim2.new(0, itemsScroller.UIListLayout.AbsoluteContentSize.X, 0, 0)
		end
		

		for i, item in pairs(data) do

			local newButton = script.ImageButton:Clone()
			newButton.Image = item.Image

			local id = Instance.new("IntValue", newButton)
			id.Value = item.id

			newButton.Parent = itemsScroller

			--itemsScroller.CanvasSize = UDim2.new(0, itemsScroller.UIListLayout.AbsoluteContentSize.X, 0, 0)
		end


		game.Players.PlayerRemoving:Connect(function(plrLeaving)

			if plr == plrLeaving then

				nameLabel.Text = "Unclaimed!"
				proximityPrompt.Enabled = true

				for i, child in pairs(itemsScroller:GetChildren()) do
					if child:IsA("TextButton") then child:Destroy() end
				end
			end
		end)
	end
end)

Here is my JSON data:

{"keyword":null,"previousPageCursor":null,"nextPageCursor":"2_1_f6b695237375168cd277d6e8e4049108","data":[{"id":8545341966,"itemType":"Asset","assetType":12,"name":"Farmer Pants (Female)","description":"New clothing asset","productId":1233410102,"genres":["All"],"itemStatus":[],"itemRestrictions":[],"creatorHasVerifiedBadge":false,"creatorType":"User","creatorTargetId":2458041368,"creatorName":"HubMong","price":5,"favoriteCount":0,"offSaleDeadline":null},{"id":8903365859,"itemType":"Asset","assetType":12,"name":"Merchant Class Pants Male 3 (Kimono)","description":"Merchant Class Pants Male 3 (Kimono) in Samurai Era.","productId":1239617903,"genres":["All"],"itemStatus":[],"itemRestrictions":[],"creatorHasVerifiedBadge":false,"creatorType":"User","creatorTargetId":2458041368,"creatorName":"HubMong","price":50,"favoriteCount":0,"offSaleDeadline":null},{"id":8909248649,"itemType":"Asset","assetType":12,"name":"Merchant Class Pants Male 5 (Kimono)","description":"Merchant Class Pants Male 5 (Kimono) in Samurai Era by ########","productId":1239846068,"genres":["All"],"itemStatus":[],"itemRestrictions":[],"creatorHasVerifiedBadge":false,"creatorType":"User","creatorTargetId":2458041368,"creatorName":"HubMong","price":50,"favoriteCount":0,"offSaleDeadline":null},{"id":10408675997,"itemType":"Asset","assetType":12,"name":"Red Fundoshi And Waraji","description":"Red Fundoshi and Waraji used in Samurai Era of Japan","productId":1291726071,"genres":["All"],"itemStatus":[],"itemRestrictions":[],"creatorHasVerifiedBadge":false,"creatorType":"User","creatorTargetId":2458041368,"creatorName":"HubMong","price":5,"favoriteCount":0,"offSaleDeadline":null},{"id":8288133921,"itemType":"Asset","assetType":12,"name":"Simple Suit Bottom (Brown)","description":"Simple Suit Bottom (Brown) for formal use.","productId":1229864621,"genres":["TownAndCity"],"itemStatus":[],"itemRestrictions":[],"creatorHasVerifiedBadge":false,"creatorType":"User","creatorTargetId":2458041368,"creatorName":"HubMong","price":99,"favoriteCount":0,"offSaleDeadline":null},{"id":8903554117,"itemType":"Asset","assetType":12,"name":"Merchant Class Pants Male 4 (Kimono)","description":"Merchant Class Pants Male 4 (Kimono) in Samurai Era.","productId":1239624519,"genres":["All"],"itemStatus":[],"itemRestrictions":[],"creatorHasVerifiedBadge":false,"creatorType":"User","creatorTargetId":2458041368,"creatorName":"HubMong","price":50,"favoriteCount":0,"offSaleDeadline":null},{"id":7374008455,"itemType":"Asset","assetType":11,"name":"ESL Angels","description":"This shirt commemorates release of ESL Angels by HubMong.","productId":1200237321,"genres":["All"],"itemStatus":[],"itemRestrictions":[],"creatorHasVerifiedBadge":false,"creatorType":"User","creatorTargetId":2458041368,"creatorName":"HubMong","price":10,"favoriteCount":0,"offSaleDeadline":null},{"id":8910014060,"itemType":"Asset","assetType":11,"name":"Merchant Class Shirt Male 5 (Kimono, Haori) L","description":"Merchant Class Shirt Male 5 (Kimono, Haori) in Samurai Era. Longer Sleeves.","productId":1239883176,"genres":["All"],"itemStatus":[],"itemRestrictions":[],"creatorHasVerifiedBadge":false,"creatorType":"User","creatorTargetId":2458041368,"creatorName":"HubMong","price":20,"favoriteCount":0,"offSaleDeadline":null},{"id":8288137594,"itemType":"Asset","assetType":11,"name":"Simple Suit Jacket (Brown)","description":"Simple Suit Jacket (Brown) for formal use.","productId":1229864411,"genres":["All"],"itemStatus":[],"itemRestrictions":[],"creatorHasVerifiedBadge":false,"creatorType":"User","creatorTargetId":2458041368,"creatorName":"HubMong","price":99,"favoriteCount":0,"offSaleDeadline":null},{"id":8902035460,"itemType":"Asset","assetType":12,"name":"Merchant Class Pants Female 4 (Kimono, Yukata)","description":"Merchant Class Pants Female 4 (Kimono, Yukata) in Samurai Era.","productId":1239571159,"genres":["All"],"itemStatus":[],"itemRestrictions":[],"creatorHasVerifiedBadge":false,"creatorType":"User","creatorTargetId":2458041368,"creatorName":"HubMong","price":20,"favoriteCount":0,"offSaleDeadline":null}]}

{“keyword”:null,“previousPageCursor”:null,“nextPageCursor”:“2_1_f6b695237375168cd277d6e8e4049108”,“data”:[{“id”:8545341966,“itemType”:“Asset”,“assetType”:12,“name”:“Farmer Pants (Female)”,“description”:“New clothing asset”,“productId”:1233410102,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“User”,“creatorTargetId”:2458041368,“creatorName”:“HubMong”,“price”:5,“favoriteCount”:0,“offSaleDeadline”:null},{“id”:8903365859,“itemType”:“Asset”,“assetType”:12,“name”:“Merchant Class Pants Male 3 (Kimono)”,“description”:“Merchant Class Pants Male 3 (Kimono) in Samurai Era.”,“productId”:1239617903,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“User”,“creatorTargetId”:2458041368,“creatorName”:“HubMong”,“price”:50,“favoriteCount”:0,“offSaleDeadline”:null},{“id”:8909248649,“itemType”:“Asset”,“assetType”:12,“name”:“Merchant Class Pants Male 5 (Kimono)”,“description”:“Merchant Class Pants Male 5 (Kimono) in Samurai Era by ########”,“productId”:1239846068,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“User”,“creatorTargetId”:2458041368,“creatorName”:“HubMong”,“price”:50,“favoriteCount”:0,“offSaleDeadline”:null},{“id”:10408675997,“itemType”:“Asset”,“assetType”:12,“name”:“Red Fundoshi And Waraji”,“description”:“Red Fundoshi and Waraji used in Samurai Era of Japan”,“productId”:1291726071,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“User”,“creatorTargetId”:2458041368,“creatorName”:“HubMong”,“price”:5,“favoriteCount”:0,“offSaleDeadline”:null},{“id”:8288133921,“itemType”:“Asset”,“assetType”:12,“name”:“Simple Suit Bottom (Brown)”,“description”:“Simple Suit Bottom (Brown) for formal use.”,“productId”:1229864621,“genres”:[“TownAndCity”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“User”,“creatorTargetId”:2458041368,“creatorName”:“HubMong”,“price”:99,“favoriteCount”:0,“offSaleDeadline”:null},{“id”:8903554117,“itemType”:“Asset”,“assetType”:12,“name”:“Merchant Class Pants Male 4 (Kimono)”,“description”:“Merchant Class Pants Male 4 (Kimono) in Samurai Era.”,“productId”:1239624519,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“User”,“creatorTargetId”:2458041368,“creatorName”:“HubMong”,“price”:50,“favoriteCount”:0,“offSaleDeadline”:null},{“id”:7374008455,“itemType”:“Asset”,“assetType”:11,“name”:“ESL Angels”,“description”:“This shirt commemorates release of ESL Angels by HubMong.”,“productId”:1200237321,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“User”,“creatorTargetId”:2458041368,“creatorName”:“HubMong”,“price”:10,“favoriteCount”:0,“offSaleDeadline”:null},{“id”:8910014060,“itemType”:“Asset”,“assetType”:11,“name”:“Merchant Class Shirt Male 5 (Kimono, Haori) L”,“description”:“Merchant Class Shirt Male 5 (Kimono, Haori) in Samurai Era. Longer Sleeves.”,“productId”:1239883176,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“User”,“creatorTargetId”:2458041368,“creatorName”:“HubMong”,“price”:20,“favoriteCount”:0,“offSaleDeadline”:null},{“id”:8288137594,“itemType”:“Asset”,“assetType”:11,“name”:“Simple Suit Jacket (Brown)”,“description”:“Simple Suit Jacket (Brown) for formal use.”,“productId”:1229864411,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“User”,“creatorTargetId”:2458041368,“creatorName”:“HubMong”,“price”:99,“favoriteCount”:0,“offSaleDeadline”:null},{“id”:8902035460,“itemType”:“Asset”,“assetType”:12,“name”:“Merchant Class Pants Female 4 (Kimono, Yukata)”,“description”:“Merchant Class Pants Female 4 (Kimono, Yukata) in Samurai Era.”,“productId”:1239571159,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“User”,“creatorTargetId”:2458041368,“creatorName”:“HubMong”,“price”:20,“favoriteCount”:0,“offSaleDeadline”:null}]}

{“keyword”:null,“previousPageCursor”:null,“nextPageCursor”:“2_1_f6b695237375168cd277d6e8e4049108”,“data”:[{“id”:129459077,“itemType”:“Asset”,“assetType”:12,“name”:“Black Slacks”,“description”:“Black is the new black.”,“productId”:17801012,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“User”,“creatorTargetId”:1,“creatorName”:“Roblox”,“price”:1,“favoriteCount”:269225,“offSaleDeadline”:null},{“id”:5197702014,“itemType”:“Asset”,“assetType”:12,“name”:“Cute ripped Jeans Y2k aesthetic vintage girl ok”,“description”:“Made by cu1prit\nmatching shirt: \nhttps://www.roblox.com/catalog/7057276102/gray-plaid-y2k-vintage-aesthetic-cute-flannel-emo\ncute summer fit: https://www.roblox.com/catalog/9793289753/summer-girl-cute-vintage-bloxburg-aesthetic-floral",“productId”:1003565839,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“Group”,“creatorTargetId”:3749945,“creatorName”:“uaeu”,“price”:5,“favoriteCount”:138546,“offSaleDeadline”:null},{“id”:9922856883,“itemType”:“Asset”,“assetType”:12,“name”:"✰💗☻ cute preppy Y2k Smiley cap set! ☆ ° .”,“description”:“★ Original designed by 0kTams.\n★ SHOP: - dreamland - - Roblox Do NOT copy / re upload / trace or i will dmca.\n★ HAT: https://www.roblox.com/catalog/9826797118/Preppy-Y2k-Smiley-Cap",“productId”:1273628532,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“Group”,“creatorTargetId”:12701746,“creatorName”:"- dreamland -”,“price”:5,“favoriteCount”:55992,“offSaleDeadline”:null},{“id”:6709744935,“itemType”:“Asset”,“assetType”:12,“name”:“Cute vintage jeans aesthetic y2k emo skater gucci”,“description”:“This asset has been reviewed and approved for not breaking any of the rules by many moderators.”,“productId”:1166488768,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“Group”,“creatorTargetId”:4761049,“creatorName”:“FP clothing”,“price”:5,“favoriteCount”:187290,“offSaleDeadline”:null},{“id”:7919545692,“itemType”:“Asset”,“assetType”:11,“name”:“y2k aesthetic emo Black Shirt trendy cool cute boy”,“description”:“:star:Don’t forget to favorite our shirt for more cool clothes!”,“productId”:1218554921,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“Group”,“creatorTargetId”:12556581,“creatorName”:“reysia”,“price”:5,“favoriteCount”:175470,“offSaleDeadline”:null},{“id”:7143467788,“itemType”:“Asset”,“assetType”:12,“name”:“vamp emo goth grey jeans ripped distressed trendy”,“description”:“matching top! https://www.roblox.com/catalog/8733027867/spring-summer-Hawaiian-flower-floral-tropical-cute",“productId”:1191929159,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“Group”,“creatorTargetId”:6630971,“creatorName”:“Zerya”,“price”:5,“favoriteCount”:171644,“offSaleDeadline”:null},{“id”:7827759475,“itemType”:“Asset”,“assetType”:12,“name”:"Y2k Emo Goth Vamp Chain Grunge Aesthetic Vintage”,“description”:"[ Content Deleted ]",“productId”:1215284305,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“Group”,“creatorTargetId”:12499958,“creatorName”:“Domiclo”,“price”:5,“favoriteCount”:56445,“offSaleDeadline”:null},{“id”:6554200369,“itemType”:“Asset”,“assetType”:11,“name”:“Grey Suit w/ Black Vest [+]”,“description”:“Part of the Formal set.\n\nPants:\nhttps://www.roblox.com/catalog/6555797786/\n\nWithout Gloves:\nhttps://www.roblox.com/catalog/7152058085/”,“productId”:1160384415,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“Group”,“creatorTargetId”:6589372,“creatorName”:“TIX Clothing +”,“price”:5,“favoriteCount”:246803,“offSaleDeadline”:null},{“id”:1210857662,“itemType”:“Asset”,“assetType”:11,“name”:"[+] Black Suit",“description”:“A regular black suit for all occasions.\n\nPants: https://www.roblox.com/catalog/1210858279/",“productId”:120202956,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“Group”,“creatorTargetId”:1221204,“creatorName”:"The Iron Cafe™”,“price”:5,“favoriteCount”:140913,“offSaleDeadline”:null},{“id”:6876555875,“itemType”:“Asset”,“assetType”:11,“name”:“y2k aesthetic girl vintage trendy soft gray cute”,“description”:“cute summer set: https://www.roblox.com/catalog/9793289753/summer-girl-cute-vintage-bloxburg-aesthetic-floral\n\ncute jeans: https://www.roblox.com/catalog/5197702014/\n\nhttps://www.roblox.com/catalog/8828281142/Cute-Denim-Shorts-Jeans-Aesthetic-Sporty-Preppys",“productId”:1177804101,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“Group”,“creatorTargetId”:3749945,“creatorName”:“uaeu”,“price”:5,“favoriteCount”:335147,"offSaleDeadline”:null}]}

ok

short answer: the link is wrong
long answer try making it to a Text
very long answer:
{“keyword”:null,“previousPageCursor”:null,“nextPageCursor”:“2_1_f6b695237375168cd277d6e8e4049108”,“data”:[{“id”:129459077,“itemType”:“Asset”,“assetType”:12,“name”:“Black Slacks”,“description”:“Black is the new black.”,“productId”:17801012,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“User”,“creatorTargetId”:1,“creatorName”:“Roblox”,“price”:1,“favoriteCount”:269225,“offSaleDeadline”:null},{“id”:5197702014,“itemType”:“Asset”,“assetType”:12,“name”:“Cute ripped Jeans Y2k aesthetic vintage girl ok”,“description”:“Made by cu1prit\nmatching shirt: \nhttps://www.roblox.com/catalog/7057276102/gray-plaid-y2k-vintage-aesthetic-cute-flannel-emo\ncute summer fit: https://www.roblox.com/catalog/9793289753/summer-girl-cute-vintage-bloxburg-aesthetic-floral",“productId”:1003565839,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“Group”,“creatorTargetId”:3749945,“creatorName”:“uaeu”,“price”:5,“favoriteCount”:138546,“offSaleDeadline”:null},{“id”:9922856883,“itemType”:“Asset”,“assetType”:12,“name”:"✰💗☻ cute preppy Y2k Smiley cap set! ☆ ° .”,“description”:“★ Original designed by 0kTams.\n★ SHOP: - dreamland - - Roblox Do NOT copy / re upload / trace or i will dmca.\n★ HAT: https://www.roblox.com/catalog/9826797118/Preppy-Y2k-Smiley-Cap",“productId”:1273628532,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“Group”,“creatorTargetId”:12701746,“creatorName”:"- dreamland -”,“price”:5,“favoriteCount”:55992,“offSaleDeadline”:null},{“id”:6709744935,“itemType”:“Asset”,“assetType”:12,“name”:“Cute vintage jeans aesthetic y2k emo skater gucci”,“description”:“This asset has been reviewed and approved for not breaking any of the rules by many moderators.”,“productId”:1166488768,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“Group”,“creatorTargetId”:4761049,“creatorName”:“FP clothing”,“price”:5,“favoriteCount”:187290,“offSaleDeadline”:null},{“id”:7919545692,“itemType”:“Asset”,“assetType”:11,“name”:“y2k aesthetic emo Black Shirt trendy cool cute boy”,“description”:“:star:Don’t forget to favorite our shirt for more cool clothes!”,“productId”:1218554921,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“Group”,“creatorTargetId”:12556581,“creatorName”:“reysia”,“price”:5,“favoriteCount”:175470,“offSaleDeadline”:null},{“id”:7143467788,“itemType”:“Asset”,“assetType”:12,“name”:“vamp emo goth grey jeans ripped distressed trendy”,“description”:“matching top! https://www.roblox.com/catalog/8733027867/spring-summer-Hawaiian-flower-floral-tropical-cute",“productId”:1191929159,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“Group”,“creatorTargetId”:6630971,“creatorName”:“Zerya”,“price”:5,“favoriteCount”:171644,“offSaleDeadline”:null},{“id”:7827759475,“itemType”:“Asset”,“assetType”:12,“name”:"Y2k Emo Goth Vamp Chain Grunge Aesthetic Vintage”,“description”:"[ Content Deleted ]",“productId”:1215284305,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“Group”,“creatorTargetId”:12499958,“creatorName”:“Domiclo”,“price”:5,“favoriteCount”:56445,“offSaleDeadline”:null},{“id”:6554200369,“itemType”:“Asset”,“assetType”:11,“name”:“Grey Suit w/ Black Vest [+]”,“description”:“Part of the Formal set.\n\nPants:\nhttps://www.roblox.com/catalog/6555797786/\n\nWithout Gloves:\nhttps://www.roblox.com/catalog/7152058085/”,“productId”:1160384415,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“Group”,“creatorTargetId”:6589372,“creatorName”:“TIX Clothing +”,“price”:5,“favoriteCount”:246803,“offSaleDeadline”:null},{“id”:1210857662,“itemType”:“Asset”,“assetType”:11,“name”:"[+] Black Suit",“description”:“A regular black suit for all occasions.\n\nPants: https://www.roblox.com/catalog/1210858279/",“productId”:120202956,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“Group”,“creatorTargetId”:1221204,“creatorName”:"The Iron Cafe™”,“price”:5,“favoriteCount”:140913,“offSaleDeadline”:null},{“id”:6876555875,“itemType”:“Asset”,“assetType”:11,“name”:“y2k aesthetic girl vintage trendy soft gray cute”,“description”:“cute summer set: https://www.roblox.com/catalog/9793289753/summer-girl-cute-vintage-bloxburg-aesthetic-floral\n\ncute jeans: https://www.roblox.com/catalog/5197702014/\n\nhttps://www.roblox.com/catalog/8828281142/Cute-Denim-Shorts-Jeans-Aesthetic-Sporty-Preppys",“productId”:1177804101,“genres”:[“All”],“itemStatus”:[],“itemRestrictions”:[],“creatorHasVerifiedBadge”:false,“creatorType”:“Group”,“creatorTargetId”:3749945,“creatorName”:“uaeu”,“price”:5,“favoriteCount”:335147,"offSaleDeadline”:null}]}

Thank you for your reply, but I cannot catch the meaning.
Do you think the url in the script is wrong?

For the item price, “price” is double-quoted in the JSON data.
Which double-quoted word mean thumbnail images?

1 Like

You can add an image label on the frame or button (GUI):smiley:
make sure the iamge labe have a size {1,0} {1,0} and position {0,0} {0,0}

1 Like

Correct me if I’m wrong but can’t you just use MarketplaceService:GetProductInfo()??

https://developer.roblox.com/en-us/api-reference/function/MarketplaceService/GetProductInfo

1 Like

Yes, maybe IconImageAssetId is what I want.
I will try to use this.

Yes, I will try to use image label or image button instead of text buttons.

Use the rbxthumb content URL.

rbxthumb://type=Asset&w=150&h=150&id=0 --Replace '0' with the asset's ID.

1 Like
1 Like

Thank you for your info. It seems it works good.

Thank you for the info.
I will definitely read through this page.