Answered by
4 years ago Edited 4 years ago
Please provide explanation with your answers. Simply posting code does not spread knowledge of integral scripting processes which helps people understand the logic and reasoning behind your answer.
Try this:
1 | local Space = script.Parent.Parent.Space |
2 | local SecondFrame = script.Parent.Parent.SecondFrame |
6 | SecondFrame.Visible = true |
9 | script.Parent.MouseButton 1 Click:connect(onClick) |
Or if you want to make it so that when you click it shows, and when you click again it disappears
01 | local Space = script.Parent.Parent.Space |
02 | local SecondFrame = script.Parent.Parent.SecondFrame |
05 | if Space.Visible = = false then |
07 | elseif Space.Visible = = true then |
11 | if SecondFrame.Visible = = false then |
12 | SecondFrame.Visible = true |
13 | elseif SecondFrame.Visible = = true then |
14 | SecondFrame.Visible = false |
18 | script.Parent.MouseButton 1 Click:connect(onClick) |