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

How do I make a GUI Invisible?

Asked by 9 years ago

Hey guys I have been struggling to make this GUI Invisible can someone help please?

1local StarterGui = game:GetService('StarterGui')
2script.Parent.MouseButton1Click:connect(function()
3    script.Parent.Parent.Visible = false
4    script.Parent.Sound:Stop()
5    StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, true)
6end)
0
Well, which Gui are you having problems with? Because I see two Guis that you're trying to set visibility to. The frame holding the button, and the Roblox CoreGui M39a9am3R 3210 — 9y
0
The RobloxCoreGui is to change the taskbar but the one I'm trying to change is the frame holding the button. BennyBoiOriginal 293 — 9y

1 answer

Log in to vote
0
Answered by
Vitou 65 Snack Break
9 years ago

Try to replace :

1StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, true)

by

1StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, false)

You are actually making them visible, not invisible

0
No that's for the bar above the GUI BennyBoiOriginal 293 — 9y
0
But should I move that out of the end? BennyBoiOriginal 293 — 9y
0
What's script.Parent.Parent class ? Vitou 65 — 9y
0
That's the frame BennyBoiOriginal 293 — 9y
Ad

Answer this question