Can you stop a local sound?

When you play a sound with SoundService:PlayLocalSound(), you can’t stop it with the Sound functions (not even Instance:Destroy()) until it finishes playing.
How can I stop a sound played from SoundService?

Sound:Stop()

30303030303030303

Yes, that’s pretty obvious, how can you stop a sound by any other way?

Some other ways:

Sound:Pause()

Sound:Destroy()

Sound:Remove()

Sound.Volume = 0

Sound.IsPlaying = false

Debris:AddItem(Sound, 3)

SoundService Sounds are automatically played on the client.

Tried to do that, didn’t work.