I'm trying to make frames Visible and Not Visible. Does anyone know why this is breaking?
Asked by
5 years ago Edited 5 years ago
So I have a StarterGui named Menu consisting of multiple frames and one TextButton :
Abilities, Inventory, Players, TabFrame, TravelFrame, TextButton.
Inside TabFrame:
- UIListLayout set to Horizontal Layout
- 4 Buttons Named: AbilitiesTab, PlayersTab, InventoryTab, TravelTab
- LocalScript that contains the code at the end of this question.
The other frames inside the starterGui Menu contain nothing and are just frames with exactly the same positioning and size.
Tab Frame allows the user to click on one of the tabs, and switch to the inventory frame, abilities frame, travel frame, or players frame.
Tab Frame will always be visible but the other frames switch between what is selected.
So If I were to click the TravelTab it would switch from the starting Frame "Inventory" to the Travel Frame and make Inventory.Visible = false and TravelFrame.Visible = true.
Yes I probably should make them all Have frame at the end or not at all lol.
However for some reason the frames do not change in visibility.
The buttons work correctly and change background color, text color exactly the way they should. But when trying to make the frames visible or not visible, something breaks in the code.
Here is the code! Thank you!
01 | local TravelFrame = game.StarterGui.Menu.TravelFrame |
02 | local Inventory = game.StarterGui.Menu.Inventory |
03 | local Abilities = game.StarterGui.Menu.Abilities |
04 | local Players = game.StarterGui.Menu.Players |
05 | local TravelTabButton = script.Parent.TravelTab |
06 | local InventoryButton = script.Parent.InventoryTab |
07 | local AbilitiesButton = script.Parent.AbilitiesTab |
08 | local PlayersButton = script.Parent.PlayersTab |
09 | local ActiveTab = Instance.new( "Frame" ) |
10 | local ActiveTabButton = Instance.new( "TextButton" ) |
12 | ActiveTabButton = InventoryButton |
15 | script.Parent.TravelTab.MouseButton 1 Click:connect( function () |
17 | ActiveTabButton.BackgroundColor 3 = Color 3. new( 255 , 255 , 255 ) |
18 | ActiveTabButton.TextColor 3 = Color 3. new( 0 , 0 , 0 ) |
20 | ActiveTabButton = TravelTabButton |
21 | ActiveTabButton.BackgroundColor 3 = Color 3. new( 0 , 0 , 0 ) |
22 | ActiveTabButton.TextColor 3 = Color 3. new( 255 , 255 , 255 ) |
25 | ActiveTab.Visible = false |
26 | ActiveTab = TravelFrame |
27 | ActiveTab.Visible = true |
30 | script.Parent.InventoryTab.MouseButton 1 Click:connect( function () |
32 | ActiveTabButton.BackgroundColor 3 = Color 3. new( 255 , 255 , 255 ) |
33 | ActiveTabButton.TextColor 3 = Color 3. new( 0 , 0 , 0 ) |
35 | ActiveTabButton = InventoryButton |
36 | ActiveTabButton.BackgroundColor 3 = Color 3. new( 0 , 0 , 0 ) |
37 | ActiveTabButton.TextColor 3 = Color 3. new( 255 , 255 , 255 ) |
40 | ActiveTab.Visible = false |
42 | ActiveTab.Visible = true |
45 | script.Parent.PlayersTab.MouseButton 1 Click:connect( function () |
47 | ActiveTabButton.BackgroundColor 3 = Color 3. new( 255 , 255 , 255 ) |
48 | ActiveTabButton.TextColor 3 = Color 3. new( 0 , 0 , 0 ) |
50 | ActiveTabButton = PlayersButton |
51 | ActiveTabButton.BackgroundColor 3 = Color 3. new( 0 , 0 , 0 ) |
52 | ActiveTabButton.TextColor 3 = Color 3. new( 255 , 255 , 255 ) |
55 | ActiveTab.Visible = false |
57 | ActiveTab.Visible = true |
60 | script.Parent.AbilitiesTab.MouseButton 1 Click:connect( function () |
62 | ActiveTabButton.BackgroundColor 3 = Color 3. new( 255 , 255 , 255 ) |
63 | ActiveTabButton.TextColor 3 = Color 3. new( 0 , 0 , 0 ) |
65 | ActiveTabButton = AbilitiesButton |
66 | ActiveTabButton.BackgroundColor 3 = Color 3. new( 0 , 0 , 0 ) |
67 | ActiveTabButton.TextColor 3 = Color 3. new( 255 , 255 , 255 ) |
70 | ActiveTab.Visible = false |
72 | ActiveTab.Visible = true |
I also tried to just open a frame without the complex code and with a simple TextButton. I put the local script in the textbutton
and
1 | script.Parent.MouseButton 1 Click:connect( function () |
3 | someFrame.Visible = true |
4 | textButton.Visible = false |