Hi Craig, try this. It will sample the Lightning layer, using the current position of the layer that you apply the sliders (and the expressions) to:
//red slider
target = thisComp.layer("Lightning Layer");
colorValue = target.sampleImage(transform.position, radius = [.5, .5] );
outputValue = (colorValue * 255);
outputValue[0];
//green slider
target = thisComp.layer("Lightning Layer");
colorValue = target.sampleImage(transform.position, radius = [.5, .5] );
outputValue = (colorValue * 255);
outputValue[1];
//blue slider
target = thisComp.layer("Lightning Layer");
colorValue = target.sampleImage(transform.position, radius = [.5, .5] );
outputValue = (colorValue * 255);
outputValue[2];
//alpha slider
target = thisComp.layer("Lightning Layer");
colorValue = target.sampleImage(transform.position, radius = [.5, .5] );
outputValue = (colorValue * 255);
outputValue[3];