So locally, when a player joins the game, after 10 seconds a sound plays once? I'm not good at this sort of thing...
This will play the sound after 10 seconds from a player joining the server.
function sound() local Sound=Workspace.Part --Make sure you change the" Workspace.Sound" to the position of your Sound wait(10) Sound:Play() Players.PlayerAdded:connect(sound)