Watdo

You might also like

You are on page 1of 1

Nucleolus

Chloroplast

SCRIPT
function onPlayerEnters() {
if (player.z != 0) return;
this.init = true;
this.z = 0;
this.grav = .5;
onTimeOut();
}
function onTimeOut() {
this.grav -= .1;
player.z += this.grav;
if (player.z <= 0) {
this.grav = 0;
player.z = 0;
} else {
setTimer(.05);
}
}
SCRIPTEND

You might also like