I want my game to be bubble chat only & disable the built in roblox global chat GUI, i remember this used to be a really simple on & off setting you could access in game settings but it seems its not accessible anymore for whatever inconvenient reason.
v I’ve tried this solution that someone else posted on here, I tried it in a local script in replicated first and a regular local script not in replicated first and nothing works.
local ChatService = game:GetService(“Chat”)
ChatService:RegisterChatCallback(Enum.ChatCallbackType.OnCreatingChatWindow, function()
return {BubbleChatEnabled = true, ClassicChatEnabled = false}
end)
v I’ve also tried this, this is the closest i got, it disables the global built in chat gui but then you can no longer type either.
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, false)
