How would I go about things if I wanted a brick, when clicked, to allow them to buy a hat/shirt/whatever?
1 | ID = 0 --Shirt Id |
2 | if script.Parent.ClickDetector = = nil then |
3 | C = Instance.new( "ClickDetector" ,script.Parent) |
4 | end |
5 |
6 | script.Parent.ClickDetector.MouseClick:connect( function (Plr) |
7 | game:service( "MarketplaceService" ):PromptPurchase(plr, ID) |
8 | end ) |