I made a command that plays music, but It gives me an error.
Failed to load sound 1838924570: Unable to download sound data
This is the code that I have:
if not game.Workspace:FindFirstChild("KeeAdminSound") then
local sound = Instance.new("Sound")
sound.Name = "KeeAdminSound"
sound.Parent = game.Workspace
if args[2] then
sound.SoundId = tonumber(args[2])
sound:Play()
else
sound:Destroy()
end
end
I’ve tried with multiple ids.