I am trying to make a sound play after six seconds but it isn't playing when I try it Here is the script:
wait(6) local sound = Instance.new("Sound", game.Workspace) sound.SoundId = "rbxassetid://2991071517"
I am trying to make this sound play for everyone at the same time not for an individual person
Hello. All you forgot to do is to play the sound by using sound:Play()
.
wait(6) local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://2991071517" sound.Parent = workspace sound:Play()