Hey guys I have been struggling to make this GUI Invisible can someone help please?
1 | local StarterGui = game:GetService( 'StarterGui' ) |
2 | script.Parent.MouseButton 1 Click:connect( function () |
3 | script.Parent.Parent.Visible = false |
4 | script.Parent.Sound:Stop() |
5 | StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, true ) |
6 | end ) |
Try to replace :
1 | StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, true ) |
by
1 | StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, false ) |
You are actually making them visible, not invisible