How to make an open/close gui with only button! | Roblox studio

Опубликовано: 20 Март 2026
на канале: CodingBacon
90
2

Thank you guys for watching this video, if you have any questions, comment down below! don't forget to sub and like

Open script

local Frame = script.Parent.Parent.Frame
local open = false

script.Parent.MouseButton1Click:Connect(function()
if Frame.Visible == false then
Frame.Visible = true
else
Frame.Visible = false
end
end)