diff --git a/code/game/objects/items/contraband_vr.dm b/code/game/objects/items/contraband_vr.dm
index 79a19b7794..6737788486 100644
--- a/code/game/objects/items/contraband_vr.dm
+++ b/code/game/objects/items/contraband_vr.dm
@@ -51,6 +51,7 @@
/obj/item/device/perfect_tele,
/obj/item/device/sleevemate,
/obj/item/weapon/disk/nifsoft/compliance,
+ /obj/item/weapon/implanter/compliance,
/obj/item/seeds/ambrosiadeusseed,
/obj/item/seeds/ambrosiavulgarisseed,
/obj/item/seeds/libertymycelium,
diff --git a/code/game/objects/items/weapons/implants/implant_vr.dm b/code/game/objects/items/weapons/implants/implant_vr.dm
index 362a5e0be6..c825a108ae 100644
--- a/code/game/objects/items/weapons/implants/implant_vr.dm
+++ b/code/game/objects/items/weapons/implants/implant_vr.dm
@@ -134,3 +134,75 @@
..()
update()
return
+
+
+//////////////////////////////
+// Compliance Implant
+//////////////////////////////
+/obj/item/weapon/implanter/compliance
+ name = "compliance implant"
+ desc = "Implant which allows for implanting 'laws' or 'commands' in the host. Has a minature keyboard for typing laws into."
+ description_info = {"An implant that allows for a 'law' or 'command' to be uploaded in the implanted host.
+In un-modified organics, this is performed through manipulation of the nervous system and release of chemicals to ensure continued compliance.
+In synthetics or modified organics, this implant uploads a virus to any compatable hardware.
+Due to the small chemical capacity of the implant, the life of the implant is relatively small, wearing off within 24 hours or sooner."}
+
+ description_fluff = "Due to the illegality of these types of implants, they are often made in clandestine facilities with a complete lack of quality control \
+ and as such, may malfunction or simply not work whatsoever. After loyalty implants were outlawed in many civilized areas of space, an abundance of readily \
+ available implanters and implants became available for purchase on the black market, with some deciding to modify them. Now, they are often used by illegal \
+ entities to perform espionage and in some parts of space are used off the books for interrogation. Most of the makers of these modified implants have put in \
+ safeties to prevent lethal or actively harmful commands from being input to lessen the severity of the crime if they are caught. This one has a golden stamp \
+ with the shape of a star on it, the letters 'KE' in black text on it."
+
+/obj/item/weapon/implanter/compliance/New()
+ src.imp = new /obj/item/weapon/implant/compliance( src )
+ ..()
+ update()
+ return
+
+/obj/item/weapon/implanter/compliance/attack_self(mob/user)
+ if(istype(imp,/obj/item/weapon/implant/compliance))
+ var/obj/item/weapon/implant/compliance/implant = imp
+ var/newlaws = tgui_input_text(user, "Please Input Laws", "Compliance Laws", "", multiline = TRUE, prevent_enter = TRUE)
+ newlaws = sanitize(newlaws,2048)
+ if(newlaws)
+ to_chat(user,"You set the laws to:
[newlaws]")
+ implant.laws = newlaws //Organic
+ else //No using other implants.
+ to_chat(user,"A red warning pops up on the implanter's micro-screen: 'INVALID IMPLANT DETECTED.'")
+
+
+/obj/item/weapon/implant/compliance
+ name = "compliance implant"
+ desc = "Implant which allows for forcing obedience in the host."
+ icon_state = "implant_evil"
+ var/active = TRUE
+ var/laws = "CHANGE BEFORE IMPLANTATION"
+ var/nif_payload = /datum/nifsoft/compliance
+
+/obj/item/weapon/implant/compliance/get_data()
+ var/dat = {"
+Implant Specifications:
+Name:Compliance Implant
+Life:24 Hours
+