-
What do you want to achieve?
I want to create a bordercolor on system messages. -
What is the issue?
Does ChatMakeSystemMessage feature a “TextStrokeColor3” or “BorderColor3” Parameter? -
What solutions have you tried so far?
Read all through the devForum, couldn’t find an answer.
repeat
wait()
local success, errormsg = pcall(function()
StarterGui:SetCore("ChatMakeSystemMessage", {
Text = plr.. " just reached the " ..stageName.. " Stage!";
Color = Color3.fromRGB(255,255,255);
Font = Enum.Font.SourceSansItalic;
TextSize = 18
TextStrokeColor3 = Color3.fromRGB(0,0,0) -- What I would like to exist.
})
end)
until success
Anything Helps!