How can we turn off global chat?

This is really a simple issue, just how can we turn off chat messages? like make it so when somebody chats, you need to see their bubble message and can’t be seen in the chatbar (images below)

On
image

Off
image

1 Like

Insert a local script in StarterGui

and add this:

local StarterGui = game:GetService'StarterGui'
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat,false)
1 Like

That completely removes the chat, I’m just trying to turn off the message history.

1 Like

Maybe this?

1 Like

Alright, its a tricky process

  1. Join the game, and go to Chat and copy this

  2. Leave the game and paste it into the Chat

  3. Go into the script named ‘ChatSettings’ and edit this line:

  4. Change module.BubbleChatEnabled = PlayersService.BubbleChat to `module.BubbleChatEnabled = true’

  5. Change module.ClassicChatEnabled = PlayersService.ClassicChat to module.ClassicChatEnabled = false

1 Like

my solution to this was a LocalScript in StarterGui:

local chat = game.Players.LocalPlayer.PlayerGui:WaitForChild('Chat',5)
if not chat then
	return
end

chat.Frame.ChatChannelParentFrame.Visible = false
chat.Frame.ChatBarParentFrame.Position = UDim2.new(0,0,0,0)
2 Likes