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

How do I make a chat script?

Asked by 8 years ago

When new player joins i would like the game chat to them like this.

http://prntscr.com/9vbrfx

1 answer

Log in to vote
3
Answered by
rexbit 707 Moderation Voter
8 years ago

That is called ChatMakeSystemMessage, it creates it's own personal message in the chat.

game:GetService("StarterGui"):SetCore("ChatMakeSystemMessage",{
    Text = "Matter maketh man"; 
    Color = Color3.new(0,0,0); 
    Font = Enum.Font.SourceSansBold; 
    FontSize = Enum.FontSize.Size24; 
})
0
Thanks RobloxNorton 20 — 8y
0
Didn't know this exists. Neat. XAXA 1569 — 8y
Ad

Answer this question