RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a sound play when the player joins the game"
-- server script game.Players.PlayerAdded:Connect(function(player) local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://YourSoundIdHere" sound.Volume = 1 sound.Parent = player.Character sound:Play() end)