Receiving this error for no reason

Why am I receiving this error? (error below)

None of my scripts or audio have the ID: 0 and the Audio Discovery View Sounds plugin also says there is no audio with 0 as the ID.

Error in Output:

14:24:25.208 ▶ Failed to load sound rbxassetid://0: Unable to download sound data (x3) - Studio

2 Likes
for _, service in ipairs(game:GetChildren()) do
	local success, result = pcall(function()
		return service:GetDescendants()
	end)
	
	if success then
		if result then
			for _, sound in ipairs(result) do
				if sound:IsA("Sound") then
					if sound.SoundId == "rbxassetid://0" then
						print(sound.Name)
					end
				end
			end
		end
	end
end

Paste this into studio’s command bar.

2 Likes

Thank you! I guess I had some test sounds in one of my tools.

1 Like

I know that this question has an answer, but as future reference to anyone looking for sounds throwing this error in their experiences, here’s a tip–

You can use the search bar in the explorer window to search by the ClassName of instances in addition to their more well known use, which is searching by their Name.

ex. I have a Sound with the name “PunchSFX”. It’ll pop up in the explorer window if I search “PunchSFX”, but also if I search “Sound”.