I want to have my games avatar animation be R6, and I want the chat bubbles to still show up. I have the game in R6 already but the chat bubbles do not show up. How can I make it so they do while the game is still in R6?
Thanks for reading.
I want to have my games avatar animation be R6, and I want the chat bubbles to still show up. I have the game in R6 already but the chat bubbles do not show up. How can I make it so they do while the game is still in R6?
Thanks for reading.
Chat bubbles are disabled by default. You’ll have to change the chat settings to enabled it.
Where would I do that?
(30 char)
Next time make sure to use the search bar first, this question has been asked many times and solved many times.
Here’s the code if you don’t want to read the entire topic:
local Chat = game:GetService("Chat")
Chat:RegisterChatCallback(Enum.ChatCallbackType.OnCreatingChatWindow,
function()
return {
ClassicChatEnabled = false,
BubbleChatEnabled = true,
}
end)
Make sure to read the topic though so you can completely understand the code.
Thanks for the feedback, I will go test this out.