I’m trying to change the default walking sounds (Walking, running, jumping, landing, and all that jazz), but whenever I play the game it says,
“Failed to load sound rbxasset://1110489303: Unable to download sound data”
local Players = game:GetService("Players")
Players.PlayerAdded:Connect(function(Player)
Player.CharacterAppearanceLoaded:Connect(function(Character)
task.wait()
local Humanoid = Character:WaitForChild("HumanoidRootPart")
local Death = Humanoid:WaitForChild("Died")
local Standup = Humanoid:WaitForChild("GettingUp")
local Jump = Humanoid:WaitForChild("Jumping")
local land = Humanoid:WaitForChild("Landing")
local run = Humanoid:WaitForChild("Running")
local splash = Humanoid:WaitForChild("Splash")
local swim = Humanoid:WaitForChild("Swimming")
Death.SoundId = "rbxassetid://7456890019"
Standup.SoundId = "rbxasset://sounds/action_get_up.mp3"
Jump.SoundId = "rbxassetid://379482972"
land.SoundId = "rbxassetid://7534134750"
run.SoundId = "rbxassetid://7002934832"
splash.SoundId = "rbxassetid://8031010108"
swim.SoundId = "rbxassetid://1110489303"
end)
end)
I’ve tried on both localscript and server script, but it still seems to not work. I am new to scripting and tried to figure it out, but then again I am new and most likely did something wrong lol.