Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Why Is My Instance.New Sound Keeps Failing To Load Sound?

Asked by
TtuNkK 37
5 years ago

So I placed a script on a part and I am trying to make it where when it's touched, it will play the sound, but it keeps giving an error on downloading the id or something. It looks like this: Failed to load sound 1841154098: Unable to download sound data Leave me anything I did wrong:

screech = script.Parent
debounce = false
screech.Touched:connect(function()
    if not debounce then
    debounce = true
    local sound = Instance.new("Sound", workspace)
    sound.SoundId = 1841154098
    sound.Volume = 1
    sound.Looped = true

    game.Workspace.sound:Play()
    end
    end)

Answer this question