Asset premmision errors not going away!

[NOT SURE IF THIS IS THE RIGHT CATEGORY BTW]

Ok so recently I’ve been getting these annoying asset premission errors(image below). I try to find the asset in my game, but i cannot.
image

  • Searching its name in the explorer - nothing pops up

  • Using scripts to loop through the entire game and find the asset - still nothing

  • searching via " ‘sound’ " (in this case its an audio). - STILL NOTHING.

Its like the asset doesnt exist at all

When i click on the error, i get this window - with the name and ID

Now from what i know it is NOT from plugins, since when i launch the game on roblox, and not studio, i get the same errors.

Any help is appreciated!

Update: I tried using the “Find All” tool to search through all the scripts in my game, but still nothing with the same ID

Try running this in command bar:

for i,v in game:GetDescendants() do
	if not v:IsA("Sound") then continue end
	if string.match((v::Sound).SoundId,"%d+")=="IdHere" then print("found",v) end
end

Click on Share Access and tell me what happens

OMG i think it actually WORKED TYSMMMM

1 Like