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

Chat thing not working?

Asked by 8 years ago

I'm not sure why this isnt working, im trying to make it so it says "Hello [Players name]!" but its not doing anything.

local Chat = chat("Hi there "..plr.Name..'!', Color3.new(0,0,0))

local function chat(text, color)
game:GetService('StarterGui'):SetCore('ChatMakeSystemMessage', {
Text = text;
Color = color;
Font = Enum.Font.SourceSansItalic;
FontSize = Enum.FontSize.Size18;


}
end



game.Players.PlayerAdded:connect(function(plr)
chat()
end)

0
hh, I think you missed a parentheses there on line 4... Check da outpoot, peepuhll... ChemicalHex 979 — 8y
0
Nope. UltraUnitMode 419 — 8y

Answer this question