How do I make a button to just clear stop a specific audio?

How do I make a button stop a song, once you hit a button? Like on a main menu using a text button.

1 Like

if you’re looking to stop audio use something like this:

    script.Parent.MouseButton1Down:Connect(function()
        game.SoundService.Sound.Playing = false
    end
3 Likes

Thanks, I was able to modify it a bit to work for me!
Here:
script.Parent.MouseButton1Down:Connect(function()

game.SoundService.NightVision:Stop()

end)

1 Like