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

Problem Bindable Event firing more than 1 time?

Asked by 4 years ago

So I am making a voting system for my game, that two scripts communicate with each other: the main game script and the voting script. In the voting script I have some code to run when a bindable event, "Voting", fires. The problem is that the bindable event is firing multiple times and the global variables bug.

Look:

001local AvMinigames = game.ServerStorage.Minigames.Images:GetChildren()
002local display = script.Parent.Tela.SurfaceGui.Tela
003local votesBEV = game.ReplicatedStorage.voting
004local buttons = script.Parent:GetChildren()
005local PlayerLocks = {}
006local VotesWithMinigames = {}
007local PlayerVotes = {}
008local ButTouchedEVS = {}
009local displays = {}
010 
011local function beVisible(bool)
012    if bool == true then
013        display.Visible = true 
014        for i, v in pairs(buttons)do
015            v.SurfaceGui.Nome.Visible = true
View all 218 lines...

You don't need to understand the script, it's fine in itself, but the problem is what the output is indicating:

   14:56:58.258 false  -  Server  -  Voto:144   14:56:58.259 Voting not done. Random minigame chosen: Sinking tiles  -  Server  -  Voto:154   14:56:58.259 1  -  Server  -  Voto:144   14:56:58.260 Most voted minigame: Sinking tiles with 0 votes.  -  Server  -  Voto:205   14:56:58.260 true  -  Server  -  Voto:144   14:56:58.260 Most voted minigame: Furnace jumps with 1 votes.  -  Server  -  Voto:205   14:56:58.475 false  -  Server  -  Voto:144   14:56:58.476 Voting not done. Random minigame chosen: Furnace jumps  -  Server  -  Voto:154   14:56:58.476 Most voted minigame: Furnace jumps with 0 votes.  -  Server  -  Voto:205

You see? The output indicates that the piece of code is running 2 or 3 times and the minigame selection bugs.

1
In this script you use the [votesBEV] variable once and that's to connect the event to function, where do you fire it from? You probably fire it multiple times from other script. imKirda 4491 — 4y
0
Sorry for not responding it for you, I fire it from an main script that just fires it once, bc it has an wait loop until one var is true bruno13bruno13 78 — 4y

Answer this question