1 | game.Workspace [ "Speaker 1" ] .Part.Sound.Playing = true |
2 | game.Workspace [ "Speaker 1" ] .Part.Sound.MaxDistance = 100 |
3 | wait ( 5 ) |
4 | -- I'm trying to make the speaker to play music, it's not working. |
to play a sound you just do
1 | Sound:Play() |
so in your case it will be
1 | game.Workspace [ "Speaker 1" ] .Part.Sound:Play() |
2 | game.Workspace [ "Speaker 1" ] .Part.Sound.MaxDistance = 100 |
3 | wait ( 5 ) |
4 | --To pause you would just do Sound:Pause() |
also make sure that the sound is already loaded in and that the sound isn't too low to where you can't hear it