I have problem with that script:
1 | script.Parent.MouseButton 1 Click:connect( function () |
2 | script.Parent.Parent.Frame.Visible = false |
3 | end ) |
I have been able to make it disappear, but now I need it to reappear without the player restarting.
Hey, Bryan! Great question!
You can do this by using a debounce or a more simpler way:
1 | local Frame = script.Parent.Parent.Frame |
2 |
3 | script.Parent.MouseButton 1 Click:Connect( function () |
4 | if Frame.Visible = = true then --So if the value is true then it runs the code below! |
5 | --Code here |
6 | elseif Frame.Visible = = false then --However, if the frame is not visible then it runs this code instead! Pretty simple! |
7 | --Code here |
8 | end |
9 | end ) |
You can also do this by using a debounce, which you can learn about here: https://developer.roblox.com/en-us/articles/Debounce
Be sure to upvote and mark as solution is it helps you! Happy scripting