01 | -- Core UI localscript |
02 |
03 | local availableTools = game.ReplicatedStorage:WaitForChild( "GetTools" ):InvokeServer() |
04 | local mainFrame = script.Parent:WaitForChild( "MainFrame" ) |
05 | local safeArea = mainFrame:WaitForChild( "SafeArea" ) |
06 | local itemInformation = safeArea:WaitForChild( "ItemInformation" ) |
07 | local infoFrame = itemInformation.InfoFrame |
08 | local selectedItem = itemInformation.SelectedItem |
09 | local equippedItem = itemInformation.EquippedItem |
10 | local numberOfItems = #availableTools |
11 |
12 | local itemFrame = safeArea.ItemFrame |
13 | local shopButton = script.Parent:WaitForChild( "ShopButton" ) |
14 | local buyButton = infoFrame.BuyButton |
15 | local equippedItemViewport = script.Parent:WaitForChild( "EquippedItemViewport" ) |
You could add an open variable to use the same button
01 | -- Core UI localscript |
02 | local open = false |
03 |
04 | local availableTools = game.ReplicatedStorage:WaitForChild( "GetTools" ):InvokeServer() |
05 | local mainFrame = script.Parent:WaitForChild( "MainFrame" ) |
06 | local safeArea = mainFrame:WaitForChild( "SafeArea" ) |
07 | local itemInformation = safeArea:WaitForChild( "ItemInformation" ) |
08 | local infoFrame = itemInformation.InfoFrame |
09 | local selectedItem = itemInformation.SelectedItem |
10 | local equippedItem = itemInformation.EquippedItem |
11 | local numberOfItems = #availableTools |
12 |
13 | local itemFrame = safeArea.ItemFrame |
14 | local shopButton = script.Parent:WaitForChild( "ShopButton" ) |
15 | local buyButton = infoFrame.BuyButton |
There is a simple way of doing this.
for the on button click you can type this code:
1 | shopButton.MouseButton 1 Down:Connect( function () |
2 | mainFrame.Visible = not mainFrame.Visible; |
3 | end ); |
when putting not there, if visible is true then not means false, if visible is false then not means true. not can mean opposite or in stuff like if statements you can do "if not 1 > 2 then" as in if 1 is not greater than 2. I hope this explanation helps you learn and the code can be kept simple.