Change Chat Badge Alert Color

I have this script that basically makes it so that when a player receives a badge by walking over the designated area, it fires in the chat that they got the badge. The only thing I wish to change/add is the ability to change the color of the chat message because currently it defaults to yellow for some reason. How would I go about changing the color? Pasted below is my script I have inserted in each part that holds the badge. Any help is greatly appreciated!

local badgeservice = game:GetService("BadgeService")
local id = 2141551581 --Put your id here

local serverScriptService = game:GetService("ServerScriptService")

local debounce = false
local Cooldown = 3 --Cooldown for avoid spam from Touched Event

local Part = script.Parent
Part.Touched:Connect(function(HitPlr)
	if debounce then return end
	debounce = true
	--BadgeGiver--
	if HitPlr.Parent:FindFirstChild("Humanoid") and game.Players:FindFirstChild(HitPlr.Parent.Name) then
		local Player = game.Players[HitPlr.Parent.Name]
		if not game:GetService("BadgeService"):UserHasBadgeAsync(Player.UserId, id) then
			badgeservice:AwardBadge(Player.UserId, id)
			game.ReplicatedStorage.SendChatEvent:FireAllClients(Player.Name.. " Got the Effortless Badge!!");
		end
	end
	--Cooldown
	task.wait(Cooldown)
	debounce = false
end)