Using inside the Script the Object that Own the Script Instance

I have the next class:
TConfigCompOrm = class(TCustomOrm)
private
FCalcPairs :TObjectList;
FLineState :TOrmStatus;
FConfiguration :TObjectList;
FPrecursor :TCustomOrm;
FScript :TPSScript;
FPair :TCalcPair;
function GetOrmVersion :string;
private
FCD_PARENT :TWideStringField;
FNM_COMPONENT :TIntegerField;
FFORMULA_QTY_QUANTITY :TWideMemoField;

I need to use, inside the FScript component, All the methods and properties of TConfigCompOrm instance that owns the Script. Including “Configuration” that is a List of Objects of the same type.

How to accomplish this?