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
8 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 — 8y
0
But Mad murderer or Ultimate driving? Bertox 159 — 8y
0
No problem theCJarmy7 1293 — 8y

1 answer

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

To do this, you would use SetCoreGui.

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

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

game.StarterGui:SetCore("ChatMakeSystemMessage", {
    Text = "Hii!!!",
    Color = Color3.new(0, 1, 1),
    Font = Enum.Font.Arial,
    FontSize = Enum.FontSize.Size24,
})
0
Thank you very much! Bertox 159 — 8y
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 — 7y
Ad

Answer this question