So, currently I am making a system that makes walking, jumping and dying have a sound effect. My question here is how can I change the sound volume of these sounds, I also do not have them in SoundService. Here is the script if you need it:
local walk = script.Parent.HumanoidRootPart:WaitForChild("Running")
walk.SoundId = "rbxassetid://379398649"
local jump = script.Parent.HumanoidRootPart:WaitForChild("Jumping")
jump.SoundId = "rbxassetid://269463144"
local dead = script.Parent.HumanoidRootPart:WaitForChild("Died")
dead.SoundId = "rbxassetid://4588693406"
I have also have tried:
sound.Volume = 1