Local Script```lua
local StarterGui = game:GetService("StarterGui")
local PlayerJoining = game.ReplicatedStorage.RemoteEvents.PlayerJoining
PlayerJoining.OnClientEvent:Connect(function(plr)
StarterGui:SetCore("ChatMakeSystemMessage", {
Text = plr.Name .. " has joined the game",
Color = Color3.new(0, 255, 255),
Font = Enum.Font.SourceSansBold,
FontSize = Enum.FontSize.Size42,
})
end) ServerScriptlua
local PlayerJoining = game.ReplicatedStorage.RemoteEvents.PlayerJoining
local Player = game.Players
Player.PlayerAdded:Connect(function(plr)
PlayerJoining:FireAllClients(plr)
end)```
** You are now Level 1! **