|
| 17 Sep 2015 02:21 PM |
Hi guys! I have this dev product. It lets me purchase it and it takes my money but doesn't display the gui or change the value :( I have been trying to fix this for the past week and I still cant get it to work :( Any ideas? Thanks!
Script in button in the Workspace: local MarketplaceService = game:GetService("MarketplaceService") local productId = 19750967 MarketplaceService.ProcessReceipt = function(receiptInfo)
1 2 3 4 5 6 7 8 9 10 11 12 13for i, player in ipairs(game.Players:GetChildren()) do if player.userId == receiptInfo.PlayerId then if receiptInfo.ProductId == productId then player.PlayerGui.ChoosingMap.Frame.Visible = true game.Workspace.ChooseMap.Value = true end end end
return Enum.ProductPurchaseDecision.PurchaseGranted
end
localscript in the starterpack: local buyButton = game.Workspace.Choosemapbutton.SurfaceGui.TextButton local productId = 19750967
buyButton.MouseButton1Click:connect(function() 1 2game:GetService("MarketplaceService"):PromptProductPurchase(game.Players.LocalPlayer, productId) end)
|
|
|
| Report Abuse |
|
|
|
| 17 Sep 2015 02:36 PM |
Sorry, its this:
Script in button in the Workspace: local MarketplaceService = game:GetService("MarketplaceService") local productId = 19750967 MarketplaceService.ProcessReceipt = function(receiptInfo)
for i, player in ipairs(game.Players:GetChildren()) do if player.userId == receiptInfo.PlayerId then
if receiptInfo.ProductId == productId then
player.PlayerGui.ChoosingMap.Frame.Visible = true game.Workspace.ChooseMap.Value = true
end end end
return Enum.ProductPurchaseDecision.PurchaseGranted
end
localscript in the starterpack: local buyButton = game.Workspace.Choosemapbutton.SurfaceGui.TextButton local productId = 19750967
buyButton.MouseButton1Click:connect(function()
game:GetService("MarketplaceService"):PromptProductPurchase(game.Players.LocalPlayer, productId) end) |
|
|
| Report Abuse |
|
|
| |
|
| |
|
| |
|
|
| 21 Sep 2015 11:19 AM |
| I think you should post this in scripting. also I don't know how to fix it. |
|
|
| Report Abuse |
|
|