Failed to load SoundId 472556995: Unable to download sound data, how to fix?

I am trying to play a sound locally, this is the script:

local SoundService = game:GetService("SoundService")

local Sound = Instance.new("Sound")
Sound.SoundId = 472556995
SoundService:PlayLocalSound(Sound)
	
Sound.Ended:Wait()
Sound:Destroy()

all of this is done in a local script, anyone know why it throws the error Failed to load SoundId 472556995: Unable to download sound data?

Can you try this: (adding rbxassetid:// in front of the id)

local SoundService = game:GetService("SoundService")

local Sound = Instance.new("Sound")
Sound.SoundId = "rbxassetid://"..472556995
SoundService:PlayLocalSound(Sound)
	
Sound.Ended:Wait()
Sound:Destroy()

completely forgot you need rbxassetid lol. this should fix it, if it doesn’t I will reply, otherwise I will mark as solution.

2 Likes