What do you want to achieve? Loop through all gui buttons found in table then make them visible.
What is the issue? They stay invisible regardless.
What solutions have you tried so far? I tried doing testbt.Visible = true but that didn’t work…
local testbt = {
Items = {Open=screen.Items},
Coins = {Open=screen.Coins},
Shop = {Open=screen.Shop}
}
close.MouseButton1Click:Connect(function()
for k,t in pairs(testbt) do
t.Open.Visible = true
end
end)