ChatService:RegisterProcessCommands Making chat wierd

So I copied code from @colbert2677 in the post Can you enable/disable bubble chat for a specific player? but the chat is acting wierd:

image21323fdfdfdfd

Heres the code:

warn('work')

local function Run(ChatService)
	local function processChat(speakerName, message, channelName)
		local splits = string.split(message, ' ')
		if splits[1] == '/system' then
			return (true)
		end
		return (false)
	end

	ChatService:RegisterProcessCommandsFunction("RadioChatBlock", processChat)
	
end

return Run

It works well but my only concern is how the Chat looks. If I type /system, the message won’t appear, thats great. But again, the Chat is deformed. It will be great if @colbert2677 replied lol.

Okay I found why.

There was a Bool named ‘InsertDefaultModules’ I think and I had it checked off. Now, checking it on, it stills works and the old chat is back :smiley: