How to Make PLAYER JOINED MESSAGE? | Roblox Studio Tutorial

Опубликовано: 17 Май 2026
на канале: Nez
575
9

⭐️(like + sub = thanks)

Script: game.Players.ChildAdded:Connect(function(plr)
game.StarterGui:SetCore("ChatMakeSystemMessage", {
Text = plr.Name .. " has joined the game!",
Color = Color3.fromRGB(255, 33, 3),
Font = Enum.Font.SourceSansBold,
TextSize = 18,})
end)

wait(3)
game.StarterGui:SetCore("ChatMakeSystemMessage", {
Text = game.Players.LocalPlayer.Name .. " has joined the game!",
Color = Color3.fromRGB(255, 33, 36),
Font = Enum.Font.SourceSansBold,
TextSize = 18,})