I have a "resume" TextButton in my game's menu. I'd like the menu to disable/disappear when the TextButton is clicked. (Left click/Mouse button 1). Any help is appreciated, thanks :).
1 | function OnClicked() |
2 | script.Parent.Parent.Active = false |
3 |
4 |
5 | script.Parent.MouseButton 1 Click:Connect(OnClicked) |
6 | end |
the script doesnt WAAARARKKKAKKKRKROAKSDADADAWDASDZCZXCZ >:(
help plz
Perhaps this may work. (Assuming the button is a child of a frame)
1 | -- Put this script inside the "resume" button |
2 |
3 | function onClicked() |
4 | script.Parent.Parent.Visible = false -- hides the game menu |
5 | end |
6 |
7 | script.Parent.MouseButton 1 Down:Connect(onClicked) -- When the user click on the button, it will hide the game menu. |
I hope this helps.
01 | local Screen = ScreenGui -- screengui the button is in |
02 | local press = Button -- The button, can be any imagebutton, textbutton, etc. |
03 |
04 | button.MouseButton 1 Click:Connect( function () |
05 | if Screen.Enabled = = true then |
06 | Screen.Enabled = false |
07 | else |
08 | Screen.Enabled = true |
09 | end |
10 | end ) |
Should toggle on button press. Works in local or normal. Comment if theres an error