Outputting error messages but can't find the source of these errors?

I get these 2 error messages in my output everytime i run my game and I can’t find their sources

I tried searching for these IDs on the roblox marketplace but i get a “This asset was moderated” error, these sounds were not created by me

i also tried searching through the game files using a script but it didn’t print anything either

for _, obj in pairs(game:GetDescendants()) do
	if obj:IsA("Sound") then
		if obj.SoundId == "rbxassetid://525166232" or obj.SoundId == "rbxassetid://113025666500774" then
			print("Found Sound: ", obj:GetFullName())
		end
	end
end

how do i get rid of these error message?

2 Likes

I just ignore them as it really doesn’t make a difference, it may be coming from a plug-in you have installed?

2 Likes

It’s safe to assume the error could be coming from a plug-in. Try disabling all plug-ins and seeing if the error continues

2 Likes

Disabling all plug-ins fixed it, thanks guys @Axmos @Ziffixture

3 Likes

Work backwards to determine which plug-in it is, uninstall it, or find a more updated version

2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.