I’m working on a message that pops up in the new chat. It does work, but I want to change the size of the text and its font (specifically to Gotham Bold)
local TextChatService = game:GetService("TextChatService")
local function displaySystemMessage(message)
local formattedMessage = '<font color="#02e7df">' .. message .. '</font>'
print("Message Fired!")
TextChatService:WaitForChild("TextChannels"):WaitForChild("RBXSystem"):DisplaySystemMessage(formattedMessage)
end
game:GetService("ReplicatedStorage").DonationEvents:WaitForChild("SystemMessage1K").OnClientEvent:Connect(function(message)
displaySystemMessage(message)
end)