00:00
00:00
Newgrounds Background Image Theme

qamar123 just joined the crew!

We need you on the team, too.

Support Newgrounds and get tons of perks for just $2.99!

Create a Free Account and then..

Become a Supporter!

Reviews for "Bob Goes to Space"

lol

you didnt even tell me about this one brian

that was pointless, yet entertaining

i had fun for you're first game. congratulations, you're the first entry i'm not going to blam today.

Random.. Totally random... BUT I LIKE IT!!!

Man.. That was pointless.. But its really addicting and interesting. Good music too.. I really like random stuff on NG.. Lol... That was just funny.. enjoyable.. Just one question.. what were you thinking????

It was ok for you first game...

Well, it was pretty pointless, but fun in a way. He looked like a popped balloon that was blowing aimlessly around space..? The music was good, graphics were different, no violence, it was funny because of, well i'm not sure but i thought it was for some reason.. :D good job..

humm

How did you make the as for using the keys to move

empirewigs410 responds:

ok, first, make a picture and convert it to a movie clip. Call it car. Then right click on the clip and copy these actions into it:
onClipEvent (enterFrame) {
_root.speed = speed;
_root.mph = Number(speed)*2;
_root.mph -= _root.mph%1;
if (_root.mph<1) {
_root.mph = 1;
}
if (Key.isDown(Key.UP)) {
speed += 2;
}
if (Key.isDown(Key.DOWN)) {
speed -= 1;
}
if (Math.abs(speed)>20) {
speed *= .7;
}
if (Key.isDown(Key.LEFT)) {
_rotation -= 14;
}
if (Key.isDown(Key.RIGHT)) {
_rotation += 14;
}
speed *= .98;
x = Math.sin(_rotation*(Math.PI/180))*speed;
y = Math.cos(_rotation*(Math.PI/180))*speed*-1;
if (!_root.boundary.hitTest(_x+x, _y+y, true)) {
_x += x;
_y += y;
} else {
speed *= -.6;
}
}
onClipEvent (enterFrame) {
if (this._x> 600) {
this._x = -50;
}
}
onClipEvent (enterFrame) {
if (this._y> 450) {
this._y = -50;
}
}
onClipEvent (enterFrame) {
if (this._x <-50) {
this._x = 600;
}
}
onClipEvent (enterFrame) {
if (this._y <-50) {
this._y = 450;
}
}

If you want more help, goto flashkit.com and goto tutorials, then games, then on page 5 the how to make GTA like movement. MUST HAVE FLASH MX