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
01 | ReplicatedStorage.ShopEvents.Ninjago.OnServerEvent:Connect( function (player) |
02 | local MyDebounce = true |
03 | if player.leaderstats.Money.Value > = 500 and MyDebounce = = true and player then |
05 | player.leaderstats.Money.Value = player.leaderstats.Money.Value - 500 |
07 | ServerStorage.Tools.AzureSword:Clone().Parent = player.Backpack |
08 | game.StarterGui.Shop.Shop.BuyingInfo.LegoNinjago.Buy.Text = "Bought" |
10 | if player.leaderstats.Rebirths.Value > = player.leaderstats.Rebirths.Value + 1 and MyDebounce = = false and player then |