Invisible Widowmaker

I need help visually making Widowmaker turn invisible while crouching similar to Sombra

This is actually pretty easy. This should work:

rule(“Rule 1”)
{
event
{
Ongoing - Each Player;
All;
Widowmaker;
}

conditions
{
Is Crouching(Event Player) == True;
}

actions
{
Set Invisible(Event Player, Enemies);
}
}

This is without the radius of revealing that sombra has though.
The rule below should make you visible when you uncrouch.

rule(“un-invis”)
{
event
{
Ongoing - Each Player;
All;
Widowmaker;
}

conditions
{
Is Crouching(Event Player) == False;
}

actions
{
Set Invisible(Event Player, None);
}
}