Every time my game plays this comes up: Failed to load sound rbxassetid://90: Request asset was not found
I cant find it anywhere in my workspace
Every time my game plays this comes up: Failed to load sound rbxassetid://90: Request asset was not found
I cant find it anywhere in my workspace
If you run this in the the command bar, it should loop through every instance until it finds the one with the SoundId of 90:
for _, p in game:GetDescendants() do
if p:IsA("Sound") and p.SoundId = "rbxassetid://90" then
print(p)
end
end
Does anything get outputted?
Bruh thx it was the ReloadSound this whole time the helped a lot thx for the script!
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.