I Made This Lua:
game:GetService("MarketplaceService"):PromptProductPurchase(game.Players.LocalPlayer, 19579792) game:GetService("MarketplaceService").PromptProductPurchaseFinished:connect(function(isPurchased) if isPurchased == true then game.Lighting.Key:Clone().Parent = game.Players.LocaPlayer.Backpack end end)
Why cant I get product? If you dislike then you cant fix it because you don't know how!
I Need This In The Lua:
game:GetService("MarketplaceService"):PromptProductPurchase(game.Players.LocalPlayer, 19579792)
This should work now:
local MS = game:GetService("MarketplaceService") MS:PromptProductPurchase(game.Players.LocalPlayer, 19579792) MS.PromptProductPurchaseFinished:connect(function(PlayerId, ProductId, IsPurchased) if game.Players.LocalPlayer.userId == PlayerId and IsPurchased == true then local Key = game.Lighting.Key Key.Archivable = true local NewKey = Key:Clone() NewKey.Parent = game.Players.LocalPlayer.Backpack end end)
You just had to add in the extra arguments to PromptProductPurchaseFinished. I also improved the code a bit. I hope this works!