77jaiz
(jaiz)
#1
Is it possible to make an event happen in every server?
game:GetService("StarterGui"):SetCore("ChatMakeSystemMessage",{
Text = "[SERVER]: "..Message;
Color = Color3.fromRGB(0,255,0);
Font = Enum.Font.SourceSansBold;
FontSize = Enum.FontSize.Size24;
})
end)```
1 Like
77jaiz
(jaiz)
#2
In other words, I want it to happen globally (all around the game in every server it’ll create a chatmessage)
This is probably what you’re looking for, it uses MessagingService
which allows servers to communicate with each other throughout your main game
1 Like
Forummer
(Forummer)
#4
Just another link related to what you already provided.