Hello, I made a system message, that can be sent by a player.
I wanna make it message with caps unless player typed without caps.
Source:
local event = game:GetService("ReplicatedStorage").RemoteEvents:WaitForChild("SendWarn")
function MakeMSG(plr, text)
local color = BrickColor.new("Really red")
game.StarterGui:SetCore("ChatMakeSystemMessage", {
Text = "["..plr.Name.."]: "..text;
Font = Enum.Font.SourceSansBold;
Color = color.Color;
FontSize = Enum.FontSize.Size96
})
end
event.OnClientEvent:Connect(function(plr, text)
MakeMSG(plr, text)
end)