RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"change the death sound of the game to oof"
-- server script (ServerScriptService) to change the death sound game.Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) local humanoid = character:WaitForChild("Humanoid") humanoid.Died:Connect(function() local sound = Instance.new("Sound", character) sound.SoundId = "rbxassetid://5987688492" -- ID for the 'oof' sound sound:Play() wait(1) sound:Destroy() end) end) end)