Just make the character walk on the lift. (lets say LIFT object number is 0 )
Then use this script
while (character[NAME].y>0 {
SetObjectPosition(0,GetObjectX (0),GetObjectY (0)-1);
character[NAME].y-1;
Wait(1);
}
This will move the char along with the lift.
You can change the numbers to your needs.