MADE BY 0_EX#8545
FEATURE:
- NOTIFICATION WHEN PLAYER JOIN
SCRIPT:
game.Players.PlayerAdded:Connect(function(player)
game:GetService("StarterGui"):SetCore("SendNotification",{
Title = "Player Joined!",
Text = player.Name.." has joined!"
})
end)