How to make system chat messages, In Roblox Studo

Опубликовано: 16 Июль 2026
на канале: SammyDev tips
28
2

Hello everyone! Thanks for watching give me so editing websites/software to get for my videos. I use OBS to record.

Script:

local messages =
{
"Did you know when we get 100 LIKES we will do a amazing update!",
"Follow us on TWITTER for updates and more!",
"Follow the game so you will be updated right when we have a update!",
}

local timePerMessage = 50


while wait(timePerMessage) do

game.StarterGui:SetCore("ChatMakeSystemMessage",
{
Text = "[🤖System Message] " .. messages[math.random(1, #messages)],
Color = Color3.fromRGB(255, 29, 29),
Font = Enum.Font.SourceSansBold,
TextSize = 20,
})
end