i want to change the death sound volume because its too loud
i made a custom death sound btw
This would be a way to do that …
A local script in StarterPlayer.StarterPlayerScripts
local player = game:GetService("Players").LocalPlayer
local function PlayerAdded(character)
local humanoid = character:WaitForChild("Humanoid")
task.wait(1)
character.Humanoid.WalkSpeed = 16
character.HumanoidRootPart.Climbing.Volume = 0.75
character.HumanoidRootPart.Died.Volume = 0.125
character.HumanoidRootPart.FreeFalling.Volume = 0.125
character.HumanoidRootPart.GettingUp.Volume = 0.75
character.HumanoidRootPart.Jumping.Volume = 0.1
character.HumanoidRootPart.Landing.Volume = 1
character.HumanoidRootPart.Running.Volume = 0.2
character.HumanoidRootPart.Splash.Volume = 0.175
character.HumanoidRootPart.Swimming.Volume = 0.25
end
player.CharacterAdded:Connect(PlayerAdded)
2 Likes
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.