How do i make my game bubble chat only? I tried to make go to permissions and put it on "Bubble only" but the chat on the top left hand corner is still there, how do i get rid of it?
You want to go to Develop, Click on the Settings Icon,Configure Place, Head down to "Permission", "Other Permission", And change Chat Type to "Bubble Chat". Make sure you save.
local Chat = game:GetService("Chat") local function setUpChatWindow() return { BubbleChatEnabled = true, ClassicChatEnabled = true } --Where you choose what chats you want end Chat:RegisterChatCallback(Enum.ChatCallbackType.OnCreatingChatWindow, setUpChatWindow)