document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. _root["persegi"].posX = _root["persegi"]._x;
  2. _root["persegi"].kecepatan = 10;
  3. _root["persegi"].onEnterFrame = function(){
  4. this._x -= this.kecepatan;
  5. if (this._x<100) {
  6. this._x = this.posX;
  7. this.kecepatan = 10;
  8. };
  9. }
');