The new experience controls that Roblox has in Roblox Studio doesn’t have GuiService.TopBarInset update to move things out of the way for the health bar. This happens in all experiences. I found this out by having a local script run the following:
local GuiService = game:GetService("GuiService")
GuiService:GetPropertyChangedSignal("TopbarInset"):Connect(function()
print(GuiService.TopbarInset)
end)
After review, we’ve determined this reported behavior is intended with the updated design of the new experience controls. We did not want to squeeze UI between the new experience controls and the healthbar, now that the healthbar will continue to be placed on the right-side. The healthbar can be disabled if this is an issue.