me7474
(74゠゠゠゠゠74)
1
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()
me7474
(74゠゠゠゠゠74)
3
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