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

why does test1 print after test2 and test3?

Asked by 3 years ago
01script.Parent.OnServerEvent:Connect(function(plr)
02    local slots = plr.Loadout
03    local gui = plr.PlayerGui.Loadout
04    local cur = plr.Character.TCount
05    local p = slots:FindFirstChild("Slot"..tostring(cur.Value))
06    local p2 = gui:FindFirstChild("Slot"..tostring(cur.Value))
07    local d = plr.Places:GetChildren()
08    local place = script.Parent.Parent.Parent.Parent.Parent
09    local the = true
10    for i=1, #d do
11        if (d[i].Name == place.Name) then
12            if (d[i].Value == true) then
13                local l = slots:GetChildren()
14                for q=1, #l do
15                    if (l[q].Value ~= place.Name) and p.Value == "" then
View all 59 lines...

so when clicking the button the first time it works normally, but when clicking it the second time it prints test 2 and 3 then at the end it prints test 1, and i dont want it to print test 1, is there any reason why its doing this? https://imgur.com/a/qe1Av8A

1 answer

Log in to vote
0
Answered by
dxrrevn 13
3 years ago

The 'elseif' statement is the one the script is following, then it is going to the 'if' statement afterwards, as something not there before has now got there. This is only a guess, and I'm not sure if I am correct. Not really dealt with this before. It seems like a logical answer, so do with it what you wish.

Ad

Answer this question