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)