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

How to make that Shop gui open/close button at the same button?

Asked by 5 years ago
Edited 5 years ago
01-- Core UI localscript
02 
03local availableTools = game.ReplicatedStorage:WaitForChild("GetTools"):InvokeServer()
04local mainFrame = script.Parent:WaitForChild("MainFrame")
05local safeArea = mainFrame:WaitForChild("SafeArea")
06local itemInformation = safeArea:WaitForChild("ItemInformation")
07local infoFrame = itemInformation.InfoFrame
08local selectedItem = itemInformation.SelectedItem
09local equippedItem = itemInformation.EquippedItem
10local numberOfItems = #availableTools
11 
12local itemFrame = safeArea.ItemFrame
13local shopButton = script.Parent:WaitForChild("ShopButton")
14local buyButton = infoFrame.BuyButton
15local equippedItemViewport = script.Parent:WaitForChild("EquippedItemViewport")
View all 51 lines...
0
Nice job, Alvin_Blox's shop gui! xD SilentsReplacement 468 — 5y

2 answers

Log in to vote
0
Answered by
kom297 -4
5 years ago

You could add an open variable to use the same button

01-- Core UI localscript
02local open = false
03 
04local availableTools = game.ReplicatedStorage:WaitForChild("GetTools"):InvokeServer()
05local mainFrame = script.Parent:WaitForChild("MainFrame")
06local safeArea = mainFrame:WaitForChild("SafeArea")
07local itemInformation = safeArea:WaitForChild("ItemInformation")
08local infoFrame = itemInformation.InfoFrame
09local selectedItem = itemInformation.SelectedItem
10local equippedItem = itemInformation.EquippedItem
11local numberOfItems = #availableTools
12 
13local itemFrame = safeArea.ItemFrame
14local shopButton = script.Parent:WaitForChild("ShopButton")
15local buyButton = infoFrame.BuyButton
View all 59 lines...
0
Also I can tell this is from the Alvinblox tutorial series on making a sword fighting game, hope it helps you get better at scripting dude! B0NBunny 11 — 5y
0
wdym? i just copied and pasted his code and added my open stuff kom297 -4 — 5y
Ad
Log in to vote
0
Answered by
DollorLua 235 Moderation Voter
5 years ago

There is a simple way of doing this.

for the on button click you can type this code:

1shopButton.MouseButton1Down:Connect(function()
2    mainFrame.Visible = not mainFrame.Visible;
3end);

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.

Answer this question