So uh roblox just removed everything about bubble chat pretty much and I have no idea how to enable it now. I used a script that made it work fine and show again but then recently it stopped and does not show again. Anyone know how I can fix this and get it to show?
Check out this and like copy paste the code and stuff if you'd like. https://devforum.roblox.com/t/removing-chat-type-avatar-appearance-override-settings/188227
Alright, so I looked around, and after testing the code version myself, it didn't work
This Video will show you how to set the bubble chat (but this will be PERMANENT for the game, as far as I can tell) https://www.youtube.com/watch?v=zMptue4QuZg&t=4s
Essentially you have to Publish the place directly from studio via "File" --> "Publish to Roblox" --> "Create New" --> "Advanced Settings", where you can choose the type of chat to be used.
However, if you followed the links provided above, a POSSIBLE alternative is the following code (it requires two players in the server to begin functioning)
In a LocalScript:
local Chat = game:GetService("Chat") local function setUpChatWindow() return { BubbleChatEnabled = true } end Chat:RegisterChatCallback(Enum.ChatCallbackType.OnCreatingChatWindow, setUpChatWindow)