I just want to make it so whenever I type /send message (or whatever) it will type that message in chat on all servers
I dont know how to do it.
I tried looking for solutions but nothing.
I just want to make it so whenever I type /send message (or whatever) it will type that message in chat on all servers
I dont know how to do it.
I tried looking for solutions but nothing.
To do this, you need to make use of the MessagingService
local msgService = game:GetService("MessagingService")
msgService:SubscribeAsync("GlobalMessage", function(args)
end)
-- WHEN A GLOBAL MESSAGE IS REQUESTED, DO THIS:
msgService:PublishAsync("GlobalMessage", args)
Let me know if you’d like more explanation.
I need a bit more of an explanation, like ow would I do it in chat?
You need to use:
StarterGui:SetCore("ChatMakeSystemMessage", {Text = "[SYSTEM]: Hello"})
In order to do this, you will need to utilize RemoteEvents and LocalScripts.