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

[Solved]How can I disable classic and bubble chat while still being able to hit / to type?

Asked by 6 years ago
Edited 6 years ago

I have a custom chat gui so I have to have bubble chat on to get rid of the classic chat, but I would like to get rid of the bubble chat too. I tried just deleting Chat.BubbleChat but it didn't fix it. And if I disable chat altogether I can no longer chat at all.

2 answers

Log in to vote
0
Answered by
FazNook 61
6 years ago

Chat is a CoreGui. You can disable it by adding just one line

game.StarterGui:SetCoreGuiEnabled("Chat", false)

That's all there is to it. If you are adding this line it doesn't matter what setting's you have on, on your game.

0
yes but if I do that when I hit / it doesn't pop up the box for me to type and send chat for my custom gui to detect. You know what I mean? justoboy13 153 — 6y
Ad
Log in to vote
0
Answered by 6 years ago

I figured it out! All I had to do was set my game to classic chat with no bubble chat then put the script below into the starter gui to hide the default chat.

script.Parent:WaitForChild("Chat"):WaitForChild("Frame"):WaitForChild("ChatChannelParentFrame").Visible = false
script.Parent:WaitForChild("Chat"):WaitForChild("Frame"):WaitForChild("ChatBarParentFrame").Position = UDim2.new(0,0,0,0)

Answer this question