Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Mouse1 Click to disable GUI?

Asked by 5 years ago
Edited 5 years ago

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 :).

1function OnClicked()
2    script.Parent.Parent.Active = false
3 
4 
5script.Parent.MouseButton1Click:Connect(OnClicked) 
6end

the script doesnt WAAARARKKKAKKKRKROAKSDADADAWDASDZCZXCZ >:(

help plz

0
use Enabled instead of active. That just makes it so it cant be interacted with. If its a screengui, that is. And you have your connect statement inside the function. RunKittenzRComin 170 — 5y
0
Connect statement inside the function? jetpush123 2 — 5y
0
:connect() inside the function. put it outside. RunKittenzRComin 170 — 5y

2 answers

Log in to vote
0
Answered by
2ndwann 131
5 years ago
Edited 5 years ago

Perhaps this may work. (Assuming the button is a child of a frame)

1-- Put this script inside the "resume" button
2 
3function onClicked()
4    script.Parent.Parent.Visible = false -- hides the game menu
5end
6 
7script.Parent.MouseButton1Down:Connect(onClicked) -- When the user click on the button, it will hide the game menu.

I hope this helps.

0
didnt work ;-; jetpush123 2 — 5y
Ad
Log in to vote
0
Answered by 5 years ago
01local Screen = ScreenGui -- screengui the button is in
02local press = Button -- The button, can be any imagebutton, textbutton, etc.
03 
04button.MouseButton1Click:Connect(function()
05    if Screen.Enabled == true then
06        Screen.Enabled = false
07    else
08        Screen.Enabled = true
09    end
10end)

Should toggle on button press. Works in local or normal. Comment if theres an error

0
Note that this toggles the ScreenGui specified, sorry i diden't make that clear. The screengui can be ANY screengui. RunKittenzRComin 170 — 5y
0
And I missread. If you dont want a toggle, remove the else statement. RunKittenzRComin 170 — 5y
0
ok jetpush123 2 — 5y
0
didnt work jetpush123 2 — 5y
View all comments (2 more)
0
Thats a lot of information, thank you. I can now fix the problem and keep helping you. RunKittenzRComin 170 — 5y
0
I don't know whats wrong myself, so how can I tell you? I'm new, and you gave me completely new code from the original, I don't know it. jetpush123 2 — 5y

Answer this question