Roblox's new experience controls' health bar does not update GuiService.TopBarInset

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)
1 Like

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.

I do find this an odd choice, but I do understand. I can see what I can do to mitigate the issues caused by this

1 Like