00:00
00:00
Newgrounds Background Image Theme

Someone gifted MetalSlayer69 supporter status!

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!
Response to: Newgrounds Player Not Working Posted January 28th, 2021 in Where is / How to / Help!

Having same issue as of yesterday iu_232222_3592262.jpg

Response to: Top entries from 06/22/2020! Posted June 23rd, 2020 in P-bot's Postings

congrats I think son of musk should have won tho

Response to: Merry Christmas! Posted December 25th, 2017 in NG News

Merry Christmas everyone

Response to: Flash AS2 Wall Hit Detection Error Posted December 3rd, 2017 in Where is / How to / Help!

At 12/2/17 03:48 PM, DoubleDenial wrote: I'm coding a game, but this code always sets "touchplayer" to 0, even though I tell it not to.

onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.touchplayer = 1;
_root.player.speed = -2;
} else if (not(this.hitTest(_root.player))){
_root.touchplayer = 0;
}
}

they both have the same trigger when hittesting so it will, code it like this

onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.touchplayer = 1;
_root.player.speed = -2;
} else {
_root.touchplayer = 0;
}
}

or like this

onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.touchplayer = 1;
_root.player.speed = -2;
} else if (!this.hitTest(_root.player)) {
_root.touchplayer = 1;
}
}

Response to: NGADM 2017 - Auditions Posted May 29th, 2017 in Audio

i was very supprised to see i got invited to this as im a game designer but what the hell heres my submission

Response to: Newgrounds.io Help & Support Posted December 14th, 2016 in Game Development

At 8/1/16 01:58 PM, PsychoGoldfish wrote: Newgrounds.io is the successor to the old Newgrounds Flash API. We've completely re-built the server API to remove all dependencies on custom ActionScript classes.

Hi just wondering I'm an as2 game designer and I have implemented medals in my games before, I've been trying to add them to a new game I'm working on but I'm getting failed to unlock medal every time?
does this new api have something to do with it?

Response to: Top entries from 07/25/2016! Posted July 26th, 2016 in P-bot's Postings

damn 6th place gotta try harder, well done guys

Response to: Make New Grounds Great Again Posted April 1st, 2016 in NG News

looks like tom fulp sold out...

I think we should give him a chance tho he does kinda seem like an ass

Response to: Make New Grounds Great Again Posted April 1st, 2016 in NG News

oh dear

Response to: do you write music???? Posted September 4th, 2015 in Audio

Hey guys those of you on this project you've all been added in, just to let you know though im only at about 40% completion i'm about to upload what i've got already if you wish to preview the game.

Response to: do you write music???? Posted August 15th, 2015 in Audio

At 8/14/15 10:28 PM, TheDukeofJuke wrote: Not sure of what music you would want in a rhythm game. But this one's alright I suppose. http://www.newgrounds.com/audio/listen/581399

Hi there thanks for the response but unfortunately all positions have been filled

Response to: do you write music???? Posted August 14th, 2015 in Audio

At 8/14/15 12:54 PM, FinaLee wrote: Here's something I made a year ago on my older account that I think would fit nicely with a rhythm game.
http://www.newgrounds.com/audio/listen/571603

Another brilliant tune I'd be more than happy to add this thank you

Response to: do you write music???? Posted August 14th, 2015 in Audio

At 8/14/15 12:43 PM, MetalRenard wrote: After Dem0lecule has given his verdict here, I'd consider offering this one up for your game:
http://www.newgrounds.com/audio/listen/638016
It has an unusual and interesting rhythm, would be good for that type of game.

I had a listen I think this would go perfectly with the game thank you so much.
You'll have to bare with me for this game though as its a long term project I'll add you in as soon as I can.

Response to: do you write music???? Posted August 14th, 2015 in Audio

I've invited you as a beta tester

Response to: do you write music???? Posted August 14th, 2015 in Audio

At 8/14/15 11:13 AM, dem0lecule wrote: Do you have pictures of your WIP game? What type of genre do you require for your project?

Any genre of music is accepted I just has to be awesome lol I haven't uploaded anything yet if your interested I can upload the player with a test song so you can view it?

do you write music???? Posted August 14th, 2015 in Audio

Hi fellow newgrounders I'm a game designer and I am currently writing a rhythm game called newgrounds beatz.
I would like the songs in this game to be from newgrounds
If you have an awesome song you'd like to be in the game let me know
I'm offering 10 percent rev share but theres only 4 place left
Peace!

Response to: can anyone help Posted February 15th, 2015 in Animation

How rude of you plus I've played your games they ain't that great...
I've been scripting a month and I nearly got 3 stars on my game that's good enough for me, don't post in less you have something good to say simple. I didn't ask for your opinion

can anyone help Posted February 14th, 2015 in Animation

i'm trying to unlock a certain medal when i land on a certain frame can't seem to make the code work