Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to send a message in Default roblox chat?

Asked by
Bertox 159
9 years ago

I already searched in ROBLOX Wiki but i didn't found anything. I want send a message from a Script to the default ROBLOX Chat, like in Ultimate Driving or Mad Murderer but i don't know how.

0
you can't you would have to make a custom chat. LostPast 253 — 9y
0
But Mad murderer or Ultimate driving? Bertox 159 — 9y
0
No problem theCJarmy7 1293 — 9y

1 answer

Log in to vote
1
Answered by
theCJarmy7 1293 Moderation Voter
9 years ago

To do this, you would use SetCoreGui.

1game.StarterGui:SetCore("ChatMakeSystemMessage", {
2    Text = "[theCJarmy7] this can make it seem like I chatted something!"
3})

There are three customization items for this, color, font, and font size.

1game.StarterGui:SetCore("ChatMakeSystemMessage", {
2    Text = "Hii!!!",
3    Color = Color3.new(0, 1, 1),
4    Font = Enum.Font.Arial,
5    FontSize = Enum.FontSize.Size24,
6})
0
Thank you very much! Bertox 159 — 9y
0
Hi, Sorry I know this was posted a long time ago but I've noticed this isn't working in game for me, It's probably how I'm using it as I have it embedded in a function. Can anybody else verify? AlbatrossWWV 0 — 8y
Ad

Answer this question