00:00
00:00
Newgrounds Background Image Theme

Heretoplayarnd 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 "The Super Duper Tutorial"

You rule.

This was so helpfull! Great job :D

Wow this is incedible

I am amazed how much infomation is packed into this tutoiral. Its AWESOME! Man I am SO glad i came across this!

this is

the single most usfull thing on newgrounds !!!!!

you should win a fucking reward

Very Nice

Great, and even had in game notes XD I couldn't find anything on how to add a pause though, besides that 10/10 5/5

awesome

nice tus but im have questions for the car one how could i make the guy go into the car if his script is:

onClipEvent (load) {
movespeed = 5;
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.RIGHT)) {
play();
_rotation = 90;
_x += movespeed;
}
if (Key.isDown(Key.LEFT)) {
play();
_rotation = 270;
_x -= movespeed;
}
if (Key.isDown(Key.UP)) {
play();
_rotation = 0;
_y -= movespeed;
}
if (Key.isDown(Key.DOWN)) {
play();
_rotation = 180;
_y += movespeed;
}
if (Key.isDown(Key.RIGHT) && Key.isDown(Key.UP)) {
_rotation = 45;
}
if (Key.isDown(Key.LEFT) && Key.isDown(Key.UP)) {
_rotation = 315;
}
if (Key.isDown(Key.RIGHT) && Key.isDown(Key.DOWN)) {
_rotation = 135;
}
if (Key.isDown(Key.LEFT) && Key.isDown(Key.DOWN)) {
_rotation = 225;
}
}