Tabs on the GUI showing up all at once

Hello! I made an obby practice game to train people in obby. Inside of this obby is a GUI that has multiple tabs in the GUI. And I when every I open a tab it works. But if I open another tab, the tab I opened previous is still the same. If you don’t know what I’m talking about here is 2 pictures

When I open the settings tab:

When I open the Logs tab:

So yeah… Let me know if u have a solution! :smiley:

I don’t know if you did this already, but you need make scripts to hide/show the tabs you want.
For example you would need to disable the visibility of the tab you have open, so you enable the new tab you want to open.

Do you mind showing your script?

3 Likes

Thanks! Here is the script

script.Parent.MouseButton1Click:connect(function()
script.Parent.Parent.DV.DVframe.Visible = false
script.Parent.Parent.LO.LOframe.Visible = false
wait(0.1)
script.Parent.STframe.Visible = true
end)