You can use the OnChat hook to do that.
For example you can use this to make the first character uppercase:
For example you can use this to make the first character uppercase:
function OnChat(a_Player, a_Message)
a_Message = (a_Message:gsub("^%l", string.upper))
return false, a_Message
end

