diff --git a/code/game/machinery/computer/camera.dm b/code/game/machinery/computer/camera.dm
index ce6590c56a9..6d49f4740f0 100644
--- a/code/game/machinery/computer/camera.dm
+++ b/code/game/machinery/computer/camera.dm
@@ -163,8 +163,11 @@
tgui_interact(user)
/obj/machinery/computer/security/attack_ai(mob/user)
- to_chat(user, "You realise its kind of stupid to access a camera console when you have the entire camera network at your metaphorical fingertips")
- return
+ if(isAI(user))
+ to_chat(user, "You realise its kind of stupid to access a camera console when you have the entire camera network at your metaphorical fingertips")
+ return
+
+ tgui_interact(user)
/obj/machinery/computer/security/proc/show_camera_static()