Not bad, few things to note:
Your interact button for the computer (most likely named "interact" in your inputs) can be held down causing it to flicker. Basically, instead of using:
if Input.is_action_pressed("interact"):
You should use:
if Input.is_action_just_pressed("interact"):
One other thing, maybe add collision to your table
Well done lager)king








