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

How do I make that every button has a name of a tool?

Asked by
JoneXI 51
5 years ago

Hello, I have a problem. There are 4 text buttons and 3 tools. I want that those text button's names would be the names of the tools. It prints "It worked" 12 times and all of the button names are a one tool name.

Script:

01function refresh() 
02        print("refresh play")
03for i,v in pairs(script.Parent.Frame:GetChildren()) do
04        if v:isA("TextButton") then
05            table.insert(buttons, v)
06            print("button added into table")
07        end
08end
09 
10for i,v in pairs(buttons) do
11    for u,o in pairs(player.items:GetChildren()) do
12        buttons[i].Text = o.Name
13        print("it worked")
14        end
15    end
16end
17wait(10)
18refresh()

Thank you.

1 answer

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

The issue lies in the loop

1for i,v in pairs(buttons) do -- button loop
2    for u,o in pairs(player.items:GetChildren()) do -- item loop
3        buttons[i].Text = o.Name
4        print("it worked")
5        end
6    end
7end

For every button you then get all items and set the item name to the same button meaning it will be set to the last item name in the loop.

You want to store the items then index them per button

1local itms = player.items:GetChildren()
2 
3for i,button in pairs(buttons) do
4    if itms[i] then
5        button.Text = itms[i].Name -- index the table of items
6    else
7        -- no tool for button
8    end
9end

Look at using events over refresh wait loops. You only need to refresh if something changed.

I hope this helps. Please comment if you have any other question about this code.

0
Thank you, that fixed the problem! JoneXI 51 — 5y
Ad

Answer this question