For my game I been trying to make sound in different areas.
In this one speed run like part of my game I wanted it to play some music if you touch the speed part. It didn’t work. Please help!
01 | local sound = game.SoundService |
02 |
03 | |
04 |
05 | script.Parent.Touched:Connect( function () |
06 |
07 | sound.Sound 1. Playing = false |
08 |
09 | sound.Sound 2. Playing = true |
10 |
11 | end ) |