How to play sound continously

does anyone know how to keep playing a sound even if it has been destroyed without enabling PlayOnRemove?

1 Like

It’s not possible to play it on loop after being destroyed, you would have to clone the sound and then play it.

1 Like

I don’t think that you can play a sound continously but you can do the following instead if you wanna play a sound “smoothly”:

local function PlaySound(sound: Sound)
    local newSound = sound:Clone()
    newSound.Parent = game:GetService("SoundService")
    newSound:Play()
    game:GetService("Debris"):AddItem(sound, timeHere)
end
1 Like

How does this works, it’s not parenting to anything