how do i make a sound when a player dies? like in game THE MADE MURDER but no one hears it but you
Put it in StarterGui or StarterPack, there's not much to explain, so I trust you can read it and figure out what I did.
local player = game.Players.LocalPlayer local char = player.Character or player.CharacterAdded:wait() local hum = char:WaitForChild("Humanoid") local sound = Instance.new("Sound", script.Parent) sound.SoundId = "rbxasset://"..0000000 hum.Died:Connect(function() sound:Play() end)