Contouri
|
  |
| Joined: 07 Oct 2011 |
| Total Posts: 2792 |
|
| |
|
|
| 07 Dec 2015 02:01 PM |
game.Players.PlayerAdded:connect(function(player) wait(2) player.Character.Head.Died.SoundId = "rbxassetid://" -- put the id of the sound u want after // end) |
|
|
| Report Abuse |
|
|
|
| 07 Dec 2015 02:06 PM |
local soundId = 183073293
local players = game:GetService("Players") players.PlayerAdded:connect(function(player) player.CharacterAdded:connect(function(character) local sound = Instance.new("Sound", character:WaitForChild("Torso")) sound.SoundId = "rbxassetid://"..soundId local humanoid = character:WaitForChild("Humanoid") humanoid.Died:connect(function() sound:Play() end) end) end) |
|
|
| Report Abuse |
|
|
|
| 07 Dec 2015 02:07 PM |
| @Nub, wouldn't that also play the regular character death also? |
|
|
| Report Abuse |
|
|