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!
local sound = game.SoundService script.Parent.Touched:Connect(function() sound.Sound1.Playing = false sound.Sound2.Playing = true end)