ZunerDev
(Zuner)
#1
Why for me doesn’t work this code?
local function SendMessage (Message, Color)
game.StarterGui:SetCore("ChatMakeSystemMessage", {
["Text"] = Message,
["Color"] = Color,
["Font"] = Enum.Font.Bangers
})
end
it have to send message, but It won’t!
1 Like
Did you call the function by chance?
ZunerDev
(Zuner)
#3
every 10 seconds, all should works
Could I see how you call the function?
ZunerDev
(Zuner)
#5
while task.wait(10) do
SendMessage("myMessage", "red")
end
I also tried to call it without parametrs but still nothing, also my output is clear.
txcIove
(txcIove)
#6
This doesn’t work with the new chat system. Either switch to the legacy one or rewrite for the new one.
ZunerDev
(Zuner)
#7
is there new method to send messages?
bytesleuth
(bytesleuth)
#8
Yes,
game:GetService("TextChatService").TextChannels.RBXSystem:DisplaySystemMessage(message here)
txcIove
(txcIove)
#9
Yes, take a look at this reply.
ZunerDev
(Zuner)
#10
I don’t see any messages in the chat (and yes, I added “”)
system
(system)
Closed
#11
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.