Change in price for Skip Stage gui dev product?
Hello. I'm currently trying to achieve a script that changes price depending on the stage someone is currently on. For example, is someone is on stage 1 and they click the skip stage gui, it goes to a dev product that costs 10 robux. However, if the user is on stage 5, it goes to a different dev product for 25.
My script:
01 | MarketplaceService = Game:GetService( "MarketplaceService" ) |
03 | MarketplaceService.ProcessReceipt = function (receiptInfo) |
04 | players = game.Players:GetPlayers() |
11 | if players [ i ] .userId = = receiptInfo.PlayerId then |
12 | if receiptInfo.ProductId = = 22277159 and done = = 0 then |
14 | players [ i ] .leaderstats [ currency ] .Value = players [ i ] .leaderstats [ currency ] .Value + 1 |
15 | players [ i ] .Character.Humanoid.Health = 0 |
20 | return Enum.ProductPurchaseDecision.PurchaseGranted |