Can I detect if that box is open?
I want to make my status bar which you can see get smaller when its open so everything is still visible.
I tried the following but it always says active
RunService.RenderStepped:Connect(function()
if StarterGui:GetCoreGuiEnabled("Chat") then
print('active')
else
print('inactive')
end
end)