Can I temporarily hide the Roblox topbar menu when a player opens a UI?

I made a UI that is covered by the Roblox topbar menu on mobile, is there a way to hide it temporarily when the UI is open?

Most you can do is hide chat from bar

local StarterGui = game:GetService("StarterGui")
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, false)
1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.