Failed to load sound rbxassetid://1111105824

recently i keep getting errors saying “failed to load sound rbxassetid://…”. But i haven’t even added any sound instances into the game. I searched using ctrl + shift + f but there weren’t any script or instances including the sound
image_2024-06-16_105556692


i would greatly appreciate any help!

Does this happen when you load into studio for the first time or play the game in studio

it happens everytime i play/test the game

Can you try looking for sound instances when the game is running


still nothing

Try running this in your command line when your game is running

for _,v in pairs(game:GetDescendants()) do
	if v:IsA("Sound") and v.SoundId == "rbxassetid://1111105824" then
		print(v)
	end
end

oh tysm! i found that it was from a dummy model i took from the toolbox (sry i forgot)

1 Like

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