task Stage1LordBack{
let Frame1=0;
let Frame2=0;
let Frame3=0;
let Move1=0;
let Move2=0;
let Move3=0;
let Move4=0;
let Move5=0;
let Move6=0;
LoadGraphic("script\script-Stage1\Sky.png");   
LoadGraphic("script\script-Stage1\Glass1.png");   
LoadGraphic("script\script-Stage1\Mist.png");   
loop{
Move1+=2;
Move2+=2;
Move3+=2;
Move4+=2;
Move5+=2;
Move6+=2;
Frame1++;

SetTexture("script\script-Stage1\Sky.png");
SetGraphicRect(0,0,3000-Move1,3000);
SetGraphicAngle(120,15,20);
DrawGraphic3D(0,0,-190);
SetTexture("script\script-Stage1\Glass1.png");
SetGraphicRect(0,0,3000,3000+Move1);
SetGraphicAngle(-120,15,20);
DrawGraphic3D(0,-120,100);
SetTexture("script\script-Stage1\Mist.png");
SetGraphicRect(0,0,3000+Move4,442);
SetGraphicAngle(90,15,0);
DrawGraphic3D(400,0,+50);
SetTexture("script\script-Stage1\Mist.png");
SetGraphicRect(0,0,3000+Move3,442);
SetGraphicAngle(90,15,0);
DrawGraphic3D(200,0,-400);
SetTexture("script\script-Stage1\Mist.png");
SetGraphicRect(0,0,3000+Move2,442);
SetGraphicAngle(90,15,0);
DrawGraphic3D(0,0,-100);
SetTexture("script\script-Stage1\Mist.png");
SetGraphicRect(0,0,3000+Move2,442);
SetGraphicAngle(90,15,0);
DrawGraphic3D(0,0,-100);
SetTexture("script\script-Stage1\Mist.png");
SetGraphicRect(0,0,3000+Move2,442);
SetGraphicAngle(90,15,0);
DrawGraphic3D(0,0,-100);
if(Move1>1024){
Move1=0;
}
if(Move2>2060){
Move2=0;
}
if(Move3>2060){
Move3=0;
}
if(Move4>2060){
Move4=0;
}

yield;
}
}