Ive been trying to upload a sound, yet every single time i try to play it, it just doesnt work because of the “IsLoaded” property being set to false. I tried to upload the sound multiple times, literally wait a full hour, just to return to it still not loaded, despite the sound already being registered in my inventory.
Does anybody know how to fix this or if its just a temporary roblox bug?
This is almost certainly an issue with Roblox’s content moderation pipeline or the CDN cache, not necessarily a bug in your project. Even if the sound appears in your inventory, it may still be undergoing a final server-side “transcoding” process before it is ready for streaming.
Here is how you can troubleshoot this to see if it’s just a local cache issue:
1. Force a Re-Sync (The “Copy-Paste” Method):
Sometimes the existing Sound object in your Studio hierarchy gets “stuck” in a bad state.
Delete the Sound object from your workspace.
Go to the View > Toolbox > Audio tab, find your sound again, and re-insert it fresh. This forces Studio to re-request the asset from the server.
2. Check the Asset in Browser:
Copy the Asset ID.
Open your browser and go to create.roblox.com/dashboard/creations/audio.
Check if there is a “Pending” or “Moderated” tag next to your audio. If it says “Moderated,” the file itself was rejected by the system (e.g., copyright issues or silence), and no amount of waiting will fix it.
3. Clear Studio Cache (The “Nuclear” Option):
If it’s “Loaded” on the web dashboard but “IsLoaded = false” in Studio, your local Studio cache might be corrupted.
Close Studio.
Navigate to your Roblox Studio local files (%localappdata%\Roblox\Downloads and the cache folder) and clear the contents.
Re-open Studio and reload your place.
4. Check for Audio Length:
If the audio file is extremely short or has a silence-heavy start, the server sometimes fails to register the “Load” state correctly. Try re-uploading a slightly different version of the file (e.g., trim the silence).
If it still shows IsLoaded = false after checking the web dashboard, it is definitely a server-side delay. Don’t waste time re-uploading it repeatedly, as that just adds more files to the moderation queue!