-- локальный скриптек
local gui = script.Parent -- сюда гуи
local button = gui.TextButton -- кароч проведи сам свой путь, я не могу гадать на гуи
local toopen = gui.Frame -- что надо открыть.
local i = 1
button.MouseButton1Click:Connect(function()
if i == 1 then
toopen.Visible = true
i = 2
else
toopen.Visible = false
i = 1
end
end)
--[[скрипт должен находиться под гуишкой]]