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
script.Parent.MouseButton1Click:Connect(function()
Frame.Visible = true
end)
Close script:
local Frame = script.Parent.Parent
script.Parent.MouseButton1Click:Connect(function()
Frame.Visible = false
end)