How do I set the bubble chat offset?

title

So basically my game has bubble chat enabled. But the bubble chat is currently colliding with my custom nametag BillboardGui. How can I make it appear higher than the BillboardGui?

4 Likes

I say copy the ‘BubbleChatScript’ to StarterPlayerScripts and change some values, I will say what values in a minute.

1 Like

By changing some stuff, you can achieve

@Kostiskat change ‘extraOffset’ in “ChatSettings”

fdgdfgdgfg

1 Like

Sorry, I was wrong. Sorry for the inconvidience!

I know this is an old post but I might as well answer because I had the same question up until a few minutes ago. There is a newer module for the Chat service that was created for changing bubble chat settings. I’ll provide some example code below and leave a link to the list of every setting for it. Keep in mind this does need to be in a local.

Bubble Chat Settings (https://developer.roblox.com/en-us/articles/bubble-chat)

local ChatService = game:GetService("Chat")
ChatService:SetBubbleChatSettings({
    VerticalStudsOffset = 3
})
4 Likes