So im trying to make a script for a gui to appear on the screen when a txtbutton is pressed, but im not getting any good results.Any help?
Lets say you have a localscript in a textbutton. You want the frame to be invisible when you click it. Just do this
1 | local Frame = Where the frame is |
2 |
3 | script.Parent.MouseButton 1 Click:connect( function () |
4 | Frame.Visible = false |
5 | end ) |
Its pretty simple but does the work.
(Next time try doing research SH isn't for request you just got lucky this time)