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