local Sounds = workspace.VERYIMPORTANTPARTNODELETE local chased = script.Parent Sounds.Ambient:Play() while wait(.5) do if chased.Value == true then Sounds.BOOM:Play() Sounds.Chase:Play() Sounds.Ambient:Stop() elseif chased.Value == false then Sounds.BOOM:Stop() Sounds.Chase:Stop() Sounds.Ambient:Play() end end