Bubble Chat going too high and making impossible to communicate

My roblox standard bubble chat is appearing too high for the server (all users). I’ve come to see many people reporting the same error but only in the client, so only the message sender would see the chat that high, but for me that happens with everybody in the server, making it impossible to communicate.

image

Have you edited any of the of the code for the chat?

You can use Chat | Roblox Creator Documentation

local ChatService = game:GetService("Chat")
ChatService.BubbleChatEnabled = true
 
local bubbleChatSettings = {
	MinimizeDistance = 80 -- Default is 40
}
ChatService:SetBubbleChatSettings(bubbleChatSettings)

Yes, I did, but this problem is old, and it was there before I even forked the chat system.

Have you tried changing LocalPlayerStudsOffset or VerticalStudsOffset?

local ChatService = game:GetService("Chat")
ChatService.BubbleChatEnabled = true

local bubbleChatSettings = {
	LocalPlayerStudsOffset = Vector3.new(0,0,2) -- Default is: 0, 0, 2
    VerticalStudsOffset = 0  -- Default is: 0
}
ChatService:SetBubbleChatSettings(bubbleChatSettings)
1 Like