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
Off
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
Off
Insert a local script in StarterGui
and add this:
local StarterGui = game:GetService'StarterGui'
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat,false)
That completely removes the chat, I’m just trying to turn off the message history.
Maybe this?
Alright, its a tricky process
Join the game, and go to Chat and copy this
Leave the game and paste it into the Chat
Go into the script named ‘ChatSettings’ and edit this line:
Change module.BubbleChatEnabled = PlayersService.BubbleChat
to `module.BubbleChatEnabled = true’
Change module.ClassicChatEnabled = PlayersService.ClassicChat
to module.ClassicChatEnabled = false
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)