Chat message not working?

Please help. This is being ran in a module script and ik its running its just not sending message. No errors btw

Thank you!!!

Module Script below

local function sendbasic(msg)

	game.StarterGui:SetCore("ChatMakeSystemMessage", {
		Text = msg;
		Color = Color3.fromRGB(170, 0, 250);
		Font = Enum.Font.SourceSansBold
	})	

end

function RareAuraMessage.Init()
	if RunService:IsClient() then
		Network.Listen("RareAuraMessage", function(Args,Player)
			sendbasic(Args.Data)
			warn("Request For Chat Recieved")
		end)
	elseif RunService:IsServer() then
		
	end
end
1 Like

You sure you are using the legacy chat? or the new TextChatService that starts by default on any new place, if thats the case
Be sure to use the Search tool: