How To Make Open & Close GUI (Roblox Studio)
Check Out The New Version: https://www.youtube.com/watch?v=z1ttxtYOqnc Frame Script: local frame = script.Parent local close = frame:WaitForChild("Close") local open = frame.Parent:WaitForChild("Open") open.MouseButton1Click:Connect(function() open.Visible = false frame.Visible = true end) close.MouseButton1Click:Connect(function() open.Visible = true frame.Visible = false end)
Check Out The New Version: https://www.youtube.com/watch?v=z1ttxtYOqnc Frame Script: local frame = script.Parent local close = frame:WaitForChild("Close") local open = frame.Parent:WaitForChild("Open") open.MouseButton1Click:Connect(function() open.Visible = false frame.Visible = true end) close.MouseButton1Click:Connect(function() open.Visible = true frame.Visible = false end)