I Want to prompt a product purchase when someone click's on part.
```lua local button = script.Parent
local devid = 492714573
button.ClickDetector.MouseClick:Connect(function()
game:GetService("MarketplaceService"):PromptProductPurchase(game.Players.LocalPlayer,devid)
end) ``` what is wrong with this code, it doesn't seem to be working