Guest User

Untitled

a guest
Dec 31st, 2018
1,225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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. }
Advertisement
Add Comment
Please, Sign In to add comment