Help with ChatMakeSystemMessage

  1. What do you want to achieve?
    I want to create a bordercolor on system messages.

  2. What is the issue?
    Does ChatMakeSystemMessage feature a “TextStrokeColor3” or “BorderColor3” Parameter?

  3. 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!

What you see is what you get. The developer hub API documentation is correct. There is no such thing as TextStrokeColor3 and calling that will throw an error.

2 Likes