I want to create a code that runs and only a specific player can here it. Almost like a intro script but instead when a player joins they here a specific music peice and then maybe it runs through a playlist of songs. I know how to run songs via scripts by the way.
All you have to do is make a server script that says the following
game.Players.PlayerAdded:connect(function(player) local sound = Instance.new("Sound") sound.SoundId = "SOUND HERE" sound.Parent = player.PlayerGui sound:Play() end)
this will fire when a player joins the game. this should only play the sound to the player that joined the game