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

Purchasing Items after Rebirth?

Asked by
Zelt3q 31
4 years ago

I'm having some issues finding out how to let people purchase the same item after they have purchased. Any Suggestions?

01ReplicatedStorage.ShopEvents.Ninjago.OnServerEvent:Connect(function(player)
02    if player.leaderstats.Money.Value >= 500 and MyDebounce == true and player then
03        MyDebounce = false
04        player.leaderstats.Money.Value = player.leaderstats.Money.Value - 500
05 
06        ServerStorage.Tools.AzureSword:Clone().Parent = player.Backpack
07        game.StarterGui.Shop.Shop.BuyingInfo.LegoNinjago.Buy.Text = "Bought"
08 
09        if player.leaderstats.Rebirths.Value >= player.leaderstats.Rebirths.Value + 1 and MyDebounce == false and player then
10            MyDebounce = true
11 
12        end
13    end
14end)
0
Please give a clarification on this question. Do you mean they don't have to spend money on it after they rebirthed? I am confused. Nckripted 580 — 4y

1 answer

Log in to vote
0
Answered by 4 years ago
Edited 4 years ago

I believe your MyDebounce never reverts to true. In this case, it only is able to run it once since the dbounce never reverts back to true and it's required to be true for the function to run.

Also, since the MyDebounce doesn't seem to be local in the function, if one player fires the event, the MyDebounce will change for all players. You want to make the MyDebounce local to the function.

local MyDebounce = true then put the rest of your script

01ReplicatedStorage.ShopEvents.Ninjago.OnServerEvent:Connect(function(player)
02local MyDebounce = true
03    if player.leaderstats.Money.Value >= 500 and MyDebounce == true and player then
04        MyDebounce = false
05        player.leaderstats.Money.Value = player.leaderstats.Money.Value - 500
06 
07        ServerStorage.Tools.AzureSword:Clone().Parent = player.Backpack
08        game.StarterGui.Shop.Shop.BuyingInfo.LegoNinjago.Buy.Text = "Bought"
09 
10        if player.leaderstats.Rebirths.Value >= player.leaderstats.Rebirths.Value + 1 and MyDebounce == false and player then
11            MyDebounce = true
12 
13        end
14    end
15end)
0
Any update on how it went? DevMaster333 215 — 4y
Ad

Answer this question