Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Change in price for Skip Stage gui dev product?

Asked by 5 years ago

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:

01MarketplaceService = Game:GetService("MarketplaceService")
02 
03MarketplaceService.ProcessReceipt = function(receiptInfo)
04players = game.Players:GetPlayers()
05 
06currency = "Stage"
07 
08done = 0
09 
10for i=1,#players do
11    if players[i].userId == receiptInfo.PlayerId then
12        if receiptInfo.ProductId == 22277159 and done == 0 then
13            done = 1
14            players[i].leaderstats[currency].Value = players[i].leaderstats[currency].Value + 1
15            players[i].Character.Humanoid.Health = 0
View all 21 lines...

1 answer

Log in to vote
0
Answered by
kom297 -4
5 years ago
Edited by Ziffixture 5 years ago

Just add an if statement to check what their stage is like

1if players[i].leaderstats[currency].Value = 5 then
2    --put whatever dev product thing here
3end
0
You made a small syntax error Ziffixture 6913 — 5y
0
What would that be? i just copied how his current if statement was structured kom297 -4 — 5y
Ad

Answer this question