I’m getting an error in my code, I don’t know what’s causing it. If someone could help I would be really grateful!
The error I’m getting:
Failed to load sound 639750143: Unable to download sound data
(the command I need help with is in-between the comment lines)
game.Players.PlayerAdded:Connect(function(player)
player.Chatted:Connect(function(message, TargetPlayer, args, args2, args3)
if player:GetRankInGroup(GroupId) >= MinimumRankToUseAdmin then
local Arguments = string.split(message, " ")
------------------------------------------------------
if Arguments[1]:lower() == "!music" then
local Music = Instance.new("Sound", workspace)
args = Arguments[2]
Music.SoundId = args
Music:Play()
end
------------------------------------------------------
end
end)
end)
Thanks!