as a result of your help here the result. the code to record the movement of the camera and also of the entities. The 3 functions perform, record, stop record, and play the recording.

ofcourse in main() you should activate these functions. eg: by f1,f2, and f3

on_f1 = make_cutscene;
on_f2 = play_cutscene;
on_f3 = stop_record;

////////////////////////////////////
function make_cutscene()
{

game_save("record",1,SV_ALL-SV_INFO);
wait(1);
sys_record("record.rec",3);
}

function stop_record()
{
sys_record("record",3);
}

function play_cutscene()
{
game_load("record",3);
wait(1);
sys_replay("record.rec");
}
///