diff --git a/code/game/objects/items/weapons/cards_ids.dm b/code/game/objects/items/weapons/cards_ids.dm
index 0e0bbb0444c..a7cd4468802 100644
--- a/code/game/objects/items/weapons/cards_ids.dm
+++ b/code/game/objects/items/weapons/cards_ids.dm
@@ -280,6 +280,7 @@
dat+="
"
stamped = 1
to_chat(user, "You stamp the ID card!")
+ playsound(user, 'sound/items/handling/standard_stamp.ogg', 50, vary = TRUE)
else
to_chat(user, "This ID has already been stamped!")
diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm
index a499908709a..3baaf76ab28 100644
--- a/code/modules/paperwork/paper.dm
+++ b/code/modules/paperwork/paper.dm
@@ -434,6 +434,7 @@
stamp(P)
to_chat(user, "You stamp the paper with your rubber stamp.")
+ playsound(user, 'sound/items/handling/standard_stamp.ogg', 50, vary = TRUE)
if(is_hot(P))
if(HAS_TRAIT(user, TRAIT_CLUMSY) && prob(10))
diff --git a/code/modules/paperwork/stamps.dm b/code/modules/paperwork/stamps.dm
index 8c24cc55c9d..8fb3082e078 100644
--- a/code/modules/paperwork/stamps.dm
+++ b/code/modules/paperwork/stamps.dm
@@ -15,6 +15,7 @@
/obj/item/stamp/suicide_act(mob/user)
user.visible_message("[user] stamps 'VOID' on [user.p_their()] forehead, then promptly falls over, dead.")
+ playsound(user, 'sound/items/handling/standard_stamp.ogg', 50, vary = TRUE)
return OXYLOSS
/obj/item/stamp/qm
diff --git a/sound/Attributions.txt b/sound/Attributions.txt
index df74fd7ef55..d74d0ee9a91 100644
--- a/sound/Attributions.txt
+++ b/sound/Attributions.txt
@@ -1,3 +1,5 @@
items/thermal_drill.ogg was sampled from Builders Drilling.wav under a Sampling Plus 1.0 license. It was uploaded by Koops on 2010-05-10. Source (http://soundbible.com/1420-Builders-Drilling.html)
creatures/dog_yelp.ogg is DogYelp.wav. It is under a CC-BY 3.0 license. It has been cropped, EQ'd, and compressed to .ogg. Source (https://freesound.org/people/TobiasKosmos/sounds/163280/)
+
+standard_stamp.ogg is adapted from tom_woysky's "Stamp.wav" https://freesound.org/people/tom_woysky/sounds/348316/
diff --git a/sound/items/handling/standard_stamp.ogg b/sound/items/handling/standard_stamp.ogg
new file mode 100644
index 00000000000..d31fdcbc228
Binary files /dev/null and b/sound/items/handling/standard_stamp.ogg differ