Well couse I didn't had fading door, and it sucks at dupping as donkie said, I made my own fading door like.
Here is what you need:
A door plate, I used an 2*2 PHX plate
A controle plate, like an 1*1 PHX plate
A button
Unofficial wire extra's
Expression 2 (find the expression at the end of this tut)
And last a targetfinder
Make it like this and make sure the targetfinder is nocolided with everything(get the nocolide tool and rightclick it)

These are the options of the targetfinder:

The button has to be toggled, and on/off values are 1/0.
The white thing is a
WIRED nocolide, you can only find the
WIRED nocolide in the unofficial wire extra's (wich can be found on the wire site, tis an svn.) Ones you found the
WIRED nocolide tool left click ones on the 2*2 plate and right click on the controle plate(1*1) to spawn the
WIRED nocolide controler.
Wireing:
nocolide controler - activate -> expression 2 chip
Expression 2 chip - On -> Button
Expression 2 chip - Targetfiner -> targetfinder - 1_ent
Yes that really is everything

.
And last the expression:
Call it what ever you like, I called it Fading_door_controler.
@name Fading door controler
@inputs On
@inputs Targetfiner:entity
@outputs Nocolide
@persist
@trigger all
if(On)
{
if(entity(Targetfiner:id())==owner())
{
Nocolide = 1
}
else
{
Nocolide = 0
}
}
else
{
Nocolide = 0
}
Also I'm gonna make an upgraded version of the chip later, in that version you can add other names aswell.