Can I change Chat Bubble Height?

Is there any way I can script or make the chat bubble higher than it is?

image

1 Like

You can change the VerticalStudsOffset by using SetBubbleChatSettings in a LocalScript.

Example:

game:GetService("Chat"):SetBubbleChatSettings({
	VerticalStudsOffset = 2 --raise bubble by 2 studs
})
4 Likes

You can also use the LocalStudsPlayerOffset setting to achieve this as well.

1 Like