How can i make more chat boxes?

For example, people need to have a private chat place only for that team to talk to people in their team.

Wdym?
Choices
You can have tabs on the same textbox
You can have a separate GUI(Frames)

For Tabs
You can use this script that I made
Put in ReplicatedFirst

    local Chat = game:GetService("Chat")

Chat:RegisterChatCallback(Enum.ChatCallbackType.OnCreatingChatWindow, function()
	
	return {
		ClassicChatEnabled = true, -- You can change if you want
		BubbleChatEnabled = false, -- You can change if you want
		ShowChannelsBar = true, -- You can change if you want
		AllowMeCommand = false, -- You can change if you want
		ShowJoinAndLeaveHelpText = false, -- You can change if you want
	}
end)

Hope this helps!

Flinnyd

Thanks for the helping! Its really important for me.

1 Like