local Players = game:GetService("Players")
local SoundService = game:GetService("SoundService")
Players.PlayerAdded:Connect(function(player)
local sound = Instance.new("Sound", SoundService)
sound.SoundId = "rbxassetid://" -- замените на ID вашего аудиофайла
sound:Play()
end)