Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do i make a bubble chat only?

Asked by
MedFist -5
6 years ago

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?

2 answers

Log in to vote
2
Answered by 6 years ago

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.

0
I've done that. there seems to be a chat on top of that which seems to be stopping the normal chat. I don't know how to get rid of it and wondering a way to overwrite the custom chat to a normal chat by a script of some sort. MedFist -5 — 6y
0
Once a youtuber said that the effects dont give the effect in studio. hiimgoodpack 2009 — 6y
0
Or you could just plop this code in starter player scripts: cricketjedi 2 — 4y
Ad
Log in to vote
0
Answered by 4 years ago
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)


Answer this question