Ive just found ur channel and i found ur game and i really like it, your doing amazing at capturing the battleground aspect and also making it different from most bg games and i like the bit of uniqueness in the game. I would personally love to see The Hero of Hell as Denji's awakening, but really good game. ❤
Twiddle finger lyrics from fnf for no reason:AFTER ALL OF THE WASTED YEARS...NEED TO GET A TASTE OF YOUR FEAR...NEED A LITTLE TASTE OF YOUR BLOOD THEN WE CAN FINALLY BE ONE... YOU'RE EVERYTHING THAT I'VE EVER WANTED...JUST A SINGLE BITE AND IM THROUGH... THERE'S NO NEED TO BEG OR BARGAIN BECAUSE ALL I NEED IS YOU.
@@LeehamsonTheThirdI'm not entirely sure if it can solve your problem, but the module basically has 3 methods that can be ran after the main code is executed. :andThen() contains a callback thay runs after the main code executes (without an error). It can hold a parameter which you can use to describe if a certain condition occured such as if a follow up attack didn't connect. This method can be stacked as many times as needed. :finally() has a callback that runs after all the previous callbacks are executed (even if an error occurs, this callback will sti execute). This can make it so even if an error happens, you can cleanup some things that might still exist or are still processing. :catch() has a callback that runs only if any of the previous callbacks (im not sure about the :finally() callback) pushes an error. A promise in general is kind of like a pcall() where code after its callback still executes even if the promise pushes an error. Ex: Prom.try(function() return 1 == 2 end):andThen(function(result) print(result) -- false end):finally(function() --idk what to really put here lol end):catch(function(err) warn(err) end) Theres a whole api page for the module so you can google that if you wanna learn more about it. (Also sorry im late)
So a couple things to note; #1: There IS combo potential, however you don't get as much damage in as you would expect, which I say should be changed. #2: There a 0 finisher moves in the game, so I believe you should add those. #3: The cooldowns are WAY too long for a combo that doesn't do much damage, and only consists of 3 moves, ESPECIALLY since the character has a counter. #4: When I died, for some odd reason, and I don't know how to replicate this outcome, but my corpse started jittering uncontrollably, and I clipped through the floor a few times.
I love internet clout from niche internet micro celebrities (PS: I have more plans of adding onto the map as I’m not satisfied with the quality of it at the moment)
the game is really decent so far, i just think you need to polish the combat some more though. it feels pretty rough and snappy rather than smooth, which isnt necessarily a bad thing ig but it is a bit hard to get used to
why not make it so there are cars in the map, and you can throw them at players as a replacement for the car throw? it shouldnt deal too much imo but its really funny
I played the game this is my review tho it's mainly opinions I have and what I like and dislike please don't take anything I say as an insult the game over all is quite good. really good quality, m1's do a but to much damage, mobile buttons are to small and close to each other, combat is good, ragdoll time is a bit too long for my liking but not bad, map is small witch would only be a problem if theirs a lot of players in a server, some moves fell a bit off to use, overall very good for a game in beta form.
In my opinion when you become Chainsaw guy you should make the head become the Orange thingy like in the anime! Edit: Yeah i know i'm late no need to get offended.
make it so when u die with the ult bar u can use it and get a another life has the chainsaw devil(forgot the name) fuses into u and u have a string from ur chest and only one move and u can use it right away - this is from the very first episode I think so it would be very cool with a cut sence
The game seems like it didn't take as much effort as other games, the dashes feel weird and the stun is broken and the players are so damn annoying (that part's not your fault)
Work on hero of hell chainsaw guy... Why? Well, usually bg games complete one character and then move on to the next so i beg you to not work on power yet 🙏 🙏 🙏
I found a glitch If you use axe assault at a certain point of the map the person getting hit will go under the map and Lee I have proof be cause I know under the map is a crusty musty big stud block
Bro just ignored the fact that JJS is a bg game for his point about all bg games looking the same, dont really care cuz he's not dogging on them but still.
I swear I'm not AI 😭😭😭
LOOOOOLLLL😂😂😊
ai
I never thought you were
Sounds like what an AI would say🤔
We need hero of hell
i loved the part where Leehamson III said "its 🎮 DEVIL BATTLEGROUNDS [TESTING] time" and 🎮 DEVIL BATTLEGROUNDS [TESTING]ed all over the place
bot
@@SergeantNooob how lmao
@@N00DL1C10USI loved the part where (particular individual) said “it’s (x)ing time” and starts (x)ing all over the place
THANK YOU SO MUCH, IVE WANTED A CSM BATTLEGROUNDS GAME FOR SO LONG THAT IS ACTUALLY BEIGN WORKED ON AND IS GOOD!!!!
This is what im talking about, a bg developer who actually interacts with the community daily
dude I can't make eye contact with you without feeling immense discomfort and stress. PLEASE STOP STARING AT ME LIKE THAT 😭😭😭
Fr
1000 yard stare be like
I really hope this game takes off
Ive just found ur channel and i found ur game and i really like it, your doing amazing at capturing the battleground aspect and also making it different from most bg games and i like the bit of uniqueness in the game. I would personally love to see The Hero of Hell as Denji's awakening, but really good game. ❤
Twiddle finger lyrics from fnf for no reason:AFTER ALL OF THE WASTED YEARS...NEED TO GET A TASTE OF YOUR FEAR...NEED A LITTLE TASTE OF YOUR BLOOD THEN WE CAN FINALLY BE ONE... YOU'RE EVERYTHING THAT I'VE EVER WANTED...JUST A SINGLE BITE AND IM THROUGH... THERE'S NO NEED TO BEG OR BARGAIN BECAUSE ALL I NEED IS YOU.
go do your homework bro
@@ChibiShibi_ 💀
The invincibility bug and bugs similar to that is why I use the promise module to fix the player/s if any errors or unexpected events occur.
I'm interested, how do you use the module to solve this?
@@LeehamsonTheThirdI'm not entirely sure if it can solve your problem, but the module basically has 3 methods that can be ran after the main code is executed.
:andThen() contains a callback thay runs after the main code executes (without an error). It can hold a parameter which you can use to describe if a certain condition occured such as if a follow up attack didn't connect. This method can be stacked as many times as needed.
:finally() has a callback that runs after all the previous callbacks are executed (even if an error occurs, this callback will sti execute). This can make it so even if an error happens, you can cleanup some things that might still exist or are still processing.
:catch() has a callback that runs only if any of the previous callbacks (im not sure about the :finally() callback) pushes an error.
A promise in general is kind of like a pcall() where code after its callback still executes even if the promise pushes an error.
Ex:
Prom.try(function()
return 1 == 2
end):andThen(function(result)
print(result) -- false
end):finally(function()
--idk what to really put here lol
end):catch(function(err)
warn(err)
end)
Theres a whole api page for the module so you can google that if you wanna learn more about it.
(Also sorry im late)
NOOOOOO, YOU REMOVED THE DE ACTIVATINF MID ATTACK BUG/TECH, it was so cool to do that mixed combo
So a couple things to note; #1: There IS combo potential, however you don't get as much damage in as you would expect, which I say should be changed. #2: There a 0 finisher moves in the game, so I believe you should add those. #3: The cooldowns are WAY too long for a combo that doesn't do much damage, and only consists of 3 moves, ESPECIALLY since the character has a counter. #4: When I died, for some odd reason, and I don't know how to replicate this outcome, but my corpse started jittering uncontrollably, and I clipped through the floor a few times.
God i love leehamsonthethird
Goodness me! I must exclaim to the thee that I completely hate LeehamsonTheThird! I wholly abhor and detest every aspect of his being!
Yes
I was making a game just like this and found your TH-cam and realized we are making the same game😭
Bro got pickle rick as stuff toy hehehe 0:16
5:25 you should probably tween the cam to the head instead of just completely locking it on, similar to how tsb does it
0% video
100% sleeping
Umm. I think I caught a professional yapper.
@@MrBadDood-jr2bq Same.
i love how he just stare blankly into the camera like there no soul left in there
I love internet clout from niche internet micro celebrities (PS: I have more plans of adding onto the map as I’m not satisfied with the quality of it at the moment)
yo sigmaaa
this game is actually good, it's different from the others, instead of chainsaw man being an awakening it's a mode
I feel like instead of kicking when the chain pull them it cut them up and then the chain fully unwrapped and he can combo from there
I just tested this game and its incredible i love it!!!
man this is encouragement im trying to make a chainsaw man battlegrounds game by myself and this is helo
Can you make it so you can change where and the size of the buttons are on mobile
Make a awaking :) ❤
I like the pickle Rick in the back ground
the game is really decent so far, i just think you need to polish the combat some more though. it feels pretty rough and snappy rather than smooth, which isnt necessarily a bad thing ig but it is a bit hard to get used to
in what areas? I'd love to know so I can improve the game!
blink twice if you're being held at gunpoint
😑😐😑😐
@@Sanstheskeleton-v3k👏👏👏👏👏
Uhmm, who is that behind my he-
I love how you stare into my soul :)
video: 🔥🔥🔥🔥🔥
Lehamson: 🗿
i got 8 minutes of lee staring into my soul
underrated guy
why not make it so there are cars in the map, and you can throw them at players as a replacement for the car throw? it shouldnt deal too much imo but its really funny
Maybe devil battlegrounds was the friends we made along the way
An idea that could make chainsaw man broken is just make it have extra m1s but all m1s deal less damage
I played the game this is my review tho it's mainly opinions I have and what I like and dislike please don't take anything I say as an insult the game over all is quite good. really good quality, m1's do a but to much damage, mobile buttons are to small and close to each other, combat is good, ragdoll time is a bit too long for my liking but not bad, map is small witch would only be a problem if theirs a lot of players in a server, some moves fell a bit off to use, overall very good for a game in beta form.
You should add elevated fights😮
In my opinion when you become Chainsaw guy you should make the head become the Orange thingy like in the anime!
Edit: Yeah i know i'm late no need to get offended.
You should add Reze/ Bomb girl
make it so when u die with the ult bar u can use it and get a another life has the chainsaw devil(forgot the name) fuses into u and u have a string from ur chest and only one move and u can use it right away
- this is from the very first episode I think so it would be very cool with a cut sence
i love the stun counter!! :3 definetly didn't get 90 percent of my health deleted cause you can combo into other moves with it!!!!11!!!
Early access !
aint no way bro said "chainsaw man never did that move"
Everytime he talks his eyes stare into my soul
Niceee
more videos, for some reason youtube only recommended me after 13 days!!!
Missed u broski
pickle rick body pillow
I would say work on a early power, at least in my opinion its better to have two move sets then most of everyone using one combo
Only 24 views bro Fell off
stop staring into my soul
he's back🔥
FIRST MANGODEV THEN HIM??!!
You should work on power if it'll keep your interest longer
1:23 Npc stare😊
Hmmmmm good vid ❤
W game, I'm making my own maybe we can do a collab?
yo is this guy an ai (give power jiggle physics)
Tbh nice update maybe you should do a private server gamepass one day and add in the unused moves and some comands : ) 3:20
We are chainsaws
What is the name or link to the game?
power would be cool
omori battlegrounds would be so cool but no one in the entire history of the universe would create it
thanks for live
When you hit someone from behind and their blocking it needs to block break
Please make it so when you kill someone with a finisher, you get a bit of health back. No matter WHAT char you play.
bro look like npc lol
I know 😭😭
Fr
Is this a war declaration? 😰
We all love Leehamsonthethird
and im boknero now, ardlap has ceased to exist
hero of hell
do power next but if you add hero of hell you will need to add a awakeing to pawer when you add her
why is bro staring into my soul
The game seems like it didn't take as much effort as other games, the dashes feel weird and the stun is broken and the players are so damn annoying (that part's not your fault)
lee gyatson the third
Will it be on Xbox?
Please work on this more 😭🙏
pls make the game able to customize controls,when you’re able to
Work on hero of hell chainsaw guy... Why? Well, usually bg games complete one character and then move on to the next so i beg you to not work on power yet 🙏 🙏 🙏
Yo bro you should make it where if you die you can use ultimate like in the anime 😊
And there should be a cutscene where the chainsaw dog emerges with you:D
For the ultimate
YAYYYYYYYYYYYYYYYYYYYY
this is cool
what happened to chainsaw guy...
Guess who's back. Back again hansom third tell a friend
make this video to 1k likes please 😢
where ur black belt XD
bro's eyes are dead af
I found a glitch
If you use axe assault at a certain point of the map the person getting hit will go under the map and Lee I have proof be cause I know under the map is a crusty musty big stud block
What if cars were in the map and could be thrown
Finally liam!!!!111!!!
wooo les go
why does bro talk like a robot💀
Work on early accessss(also make it where if they buy it u get robux ) :D
Why is bro staring at my soul 😭
I’m on mobile and the buttons are SO SMALL, and there’s no shift lock. Wich makes it hard to side dash.
the lock icon on the topbar is the shift lock button and I'm working on a update with a new mobile layout editor so dw.
why do devs waste their talent on battleground games i wonder
Bro just ignored the fact that JJS is a bg game for his point about all bg games looking the same, dont really care cuz he's not dogging on them but still.
can you make jjba battlegrounds (Bizzare Battlegrounds could be the name)
I liked the video the 111th time
I was the only one online the one day
My character is glitched. FIX IT.
Bro just does not blink lol
6:00
strong moves? bro a combo which uses 3 moves do less than 50 damage