How can I make a playlist in a sound region?

In a region script, I have made multiple sounds with Sound:Play()… but it doesn’t play any sounds. Here is half of my script:


Local region = soundPlaylist

game:GetService(“Value”)

Value.Name = regionSounds

regionSounds.Value = 3

local Sounds = 

Game.ServerStorage.Sound1

Sound:Play()

Game.ServerStorage.Sound2

Sound:Play()

Game.ServerStorage.Sound3

Sound:Play()

local Sounds = game.ServerStorage.Sound1, game.ServerStorage.Sound2, game.ServerStorage.Sound3,

Sounds.Parent = game.Workspace.SoundRegion

It just doesn’t play any sounds, its only like an empty area where nothing is at.

It’s probably because you have a variable, local Sounds = and then you just continue on your merry way with playing an undefined object named Sound.Honestly, there’s a lot of problems with this script, now that I look at it better. The sounds should be called before attempting to play them, “Value” is not a service that I am aware of, and what is soundPlaylist?
we need the rest of your script.

note to self, read the entire post first

Okay, this script is a mess. You do not need to put an empty line after every line. Can you format your script so it is more readable, and we can help you better.