Is there a way to change the bubble chat proximity anymore?

Is there a way to make that u can see bubble chat text from far away? Apparently there used to be ways but not anymore because the bubble chat system changed(?)

That one script made by that Roblox staff dude in 2018 doesn’t work, even when u change the torso to HumanoidRootPart.

Changing the BubbleChat scripts found in Chat and starterplayerscripts doesn’t work either.

2 Likes

yes use Chat:SetBubbleChatSettings({}) on the client

ex:

local Chat = game:GetService("Chat")

Chat:SetBubbleChatSettings({
	MaxDistance = x, -- Default is 100
	MinimizeDistance = x, -- Default is 40
})

see this article for specifics Bubble Chat | Roblox Creator Documentation

oh!! thank you so much! :grin: !!!