BillboardGui in front of chat

The overhead rank is in front of the chat

image

I want the chat in front of the BillboardGui, because it’s hard to read what the player is typing on the bubble chat

1 Like

You should hide the UI while a player is chatting.

How can I do this? I tried to do this but it’s not working well

You can probably use BillboardGui.StudsOffset to solve this problem. This property lets you move the billboard in a direction based on the position+orientation of the camera, so you can use it to move it like 0.25 studs backwards from where it would be, which should solve the layering issues.

Ex: Set the BillboardGui.StudsOffset to Vector3.new(0.25, 0, 0)
(It might be Vector3.new(-0.25, 0, 0) instead)

https://developer.roblox.com/en-us/api-reference/property/BillboardGui/StudsOffset

the bubble chat doesn’t have a ZIndex, I tried to change the BillboardGui ZIndex to 0, but nothing happened