Using the new updated experience controls, the “Captures” button in the hamburger menu disappears forever and cannot be re-enabled if “Chat” CoreGUI is enabled after “All” CoreGUI types have been previously disabled.
Steps to reproduce:
- Disable all CoreGUI with
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All,false)
- Enable Captures with
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Captures,true)
- Wait a few seconds, then enable Chat with
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat,true)
. This causes Captures to disappear when it shouldn’t. - Re-enable Captures with
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Captures,true)
. It will not come back.
capturebug.rbxl (52.9 KB)
Expected behavior
I expect “Captures” to not disappear when “Chat” is enabled in the CoreGUI. I also expect “Captures” to be able to be re-enabled after being disabled.