SHOW:
|
|
- or go back to the newest paste.
1 | - | OpenClose.MouseButton1Click:connect(function() |
1 | + | ButtonNameHere.MouseButton1Click:connect(function() |
2 | - | if MainFrame.Visible == false then |
2 | + | if FrameNameHere.Visible == false then |
3 | - | MainFrame.Visible = true |
3 | + | FrameNameHere.Visible = true |
4 | else | |
5 | - | MainFrame.Visible = false |
5 | + | FrameNameHere.Visible = false |
6 | end | |
7 | end) |