this is my script rn
game.Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function(character)
local humanoid = character:WaitForChild("Humanoid")
local humanoidRootPart = character:WaitForChild("HumanoidRootPart")
humanoid.Died:Connect(function()
local customDeathSound = Instance.new("Sound")
customDeathSound.SoundId = "rbxassetid://93875106747040"
customDeathSound.Volume = 1
customDeathSound.Parent = humanoidRootPart
customDeathSound:Play()
end)
end)
end)
** You are now Level 4! **