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

Help with MarketplaceService?

Asked by 11 years ago

How would I go about things if I wanted a brick, when clicked, to allow them to buy a hat/shirt/whatever?

0
Idk how to do this but check out.Kestrel's free model it does exactly what you wanted it to do above. Kozero 120 — 11y
0
Ok thanks. Latedownload 0 — 11y

1 answer

Log in to vote
1
Answered by
MixCorp 70
11 years ago
1ID = 0 --Shirt Id
2if script.Parent.ClickDetector == nil then
3C = Instance.new("ClickDetector",script.Parent)
4end
5 
6script.Parent.ClickDetector.MouseClick:connect(function(Plr)
7game:service("MarketplaceService"):PromptPurchase(plr, ID)
8end)
0
Shirt ID Works with anything but Developer Products. If you want Developer Products use PromptProductPurchase(plr,ID) MixCorp 70 — 11y
Ad

Answer this question