Only in TDX where you can create a army of zombies that could take down cities and blow it up all with on rocket launcher in less than a quarter of a second… *ONLY IN TDX CAN YO-*
@@Cahrssomethinghe literally had 10k zombies along with towers and also the tower killed them instantly all at once, and this is never going to actually happen in game it is just a major stress test.
i mean john was like on a really high end pc which makes a really big difference, average players doesn't have super ultra op pc, like a lot are just playing on their old mom iphone, the best would be to stress test on different devices tbh idk i have no idea how to optimise the movement, like 10k enemies with only the calculations (ex: cframe calculations) and have high fps isn't that hard, but on the other hand optimising the actual model movement??? no idea fr appart if you actually modify the roblox source code or maybe there is another option to do that that i never heard of or i am too stupid
probably catmull rom spline stuff with lerp and stuff maybe?? (heartbeat is probably what was used to update the enemies position) do not even try to use body velocity, humanoids, well anything physcis related has they are really bad
@@Blockunstar ok I thought I was a good coder but I have know idea what catmull rom spline is. Ik I shouldn't use humanoid and body velocity since it's performance sucks
@@swordlegend3256 catmull rom splines are kinda curve calculations similar to bézier curves but they go through the waypoints, i suppose they used those stuff to calculate the smooth rotations and other for like movement idk, no idea if this uses lerp tho
@@Blockunstar oh thanks now I understand the wording is kinda weird but I have made a movement simar to humanoids with heartbeat by just setting cframe and also having movement direction
Hey john how do i optimize my game to your extent because i'm trying to develop a game i have a lot of experience because i have other failed projects (exactly 4 of them) By the way they are private because i'm too embarrassed to show them. one of them was called tds: back in scheme which i discontinued because i was scared that it would get taken down due to copyright i'm trying to find a fix on "how do i reduce lag" in my game or "how do i reduce ping so players can get the smoothies experience" stuff like that i
@@lifesupport-sh7sk "how do i reduce ping so players can get the smoothies experience", to reduce ping you mostly need to like, send the least amount of data has possible on client, example with tween (yes i know tween sucks): if you need your model to be tweened and you need the data on the server you might do some replications like you just make it go to the target at the end of the time then on client once the client receive a remote it will run a tween on its side, it actually saves more because you run the tween on the client instead of server so it won't be constantly updating to the position data from server to client, you can also try to optimise remotes by sending the least amount of data you can, like try to use string.pack or stuff can be useful on strings and numbers
Yo!! The optimization is great af for a roblox game, the problem is about the newest roblox updates. I have several questions; Q: Are you willing to switch game engines? A: Q: What is the game gonna have that is unique to other TDS games? A: Thanks, goodbye
Things that are unique from tds are the pausing button, the way you get transported to the match, towers having hp, towers having 2 paths, any enemy being hidden, the starter tower actually not being guy with pistol, logic like how towers cant shoot through walls, dj giving hidden detection, slowing and speeding up the match, THE EPIC THEMES, any tower being placed on a cliff, more range on a cliff, juggernaut having 4 miniguns and thats all i know
Its bringing TD standards from paid, high quality games like BTD6 to Roblox. But it also has a lot of unique features. ANY tower on can be placed cliff zones for extra range, less damage (this is because obstacles block the POV of the towers). There's an Airplane that drops cash or extra base HP every wave. The game focuses little on high health bosses and more on the satisfaction of wiping out hordes (similar to btd6) and there's a literal battleship tower that can be placed in water and launch planes, shoot huge rockets, lots of bullets etc.
@@Prexry no that isn't really the main "fix", people just assume that but it is way different, cluster is mostly just making the enemy position offset on an axis i forgot if it was z or x by just doing stuff like in example math.random, the actual optimisation needed are the calculation to know where the enemies will be and well just changing the cframe of a model
I need to see this on that $100 laptop you had on that one video when you complain about TDS hotbar UI (Most notably spamming commander ui) unless you no longer have access. I personally would find it rlly cool. But remember. Only is TDX.
This is what i like. Low end friendly. Good simple enough. And just goood. Tds is always having my ass on 10 fps with just atleast 30 zombies. And 24 accelerators. But not, tdx.
never fear, tdx optimization is here.
twitter.com/TowerDefenseX
discord.gg/tdx
www.roblox.com/groups/14733518/Tower-Defense-X#!/about
are you real tdx
Epic
Add a pair of pants
Thanks, my old Mac can play now :D
Only in TDX where you can create a army of zombies that could take down cities and blow it up all with on rocket launcher in less than a quarter of a second… *ONLY IN TDX CAN YO-*
This is probably the calmest I've ever heard John.
fr
He was at gun point
the optimization in this game is insane good job
wow the optimization is crazy, better than anything i have ever seen
Isn’t this on his best pc though?
@@Cahrssomething He's done the same test on tds
@@Cahrssomething go watch his previous performance stress test videos, he used a 350 dollars non gaming laptop there.
@@Cahrssomethinghe literally had 10k zombies along with towers and also the tower killed them instantly all at once, and this is never going to actually happen in game it is just a major stress test.
@@Randomperson10083 uh… yeah???
I love how the zombies spawn in like it’s a plague
Let us out of the caves!!!1!!1
I have been in here for like a month fr fr
I love the darkness...
Let us out
I’ve been in the cave for 1 month
I’ve known someone has been in the cave for 3 months and still is so good luck
Tru tru, i have been waitng for a half of a year
the only thing is stressing is the fps
True
That’s uhhhh that’s the point
Well a stress test is usually a benchmark to test the device's capabilities
Stress tests aren’t meant to stress the viewer or person seeing it
A John gorilla skin that makes the game lag into hell would easily make the game skyrocket
i love it
This is really impressive, and I CANNOT wait for this game.
The fact you an spawn 10k zombies and kill them at once without crashing is insane
the fact that john just spawned 10k zombies makes me scared for what's gonna happen in the future
DAM THE GRAPHICS SND ROCKETS THE EFFECTS ARE SO GOOD I WANT THIS GAME BEFORE 2024
He said the game would come out late 2023 not 2024 so yeah
i mean john was like on a really high end pc which makes a really big difference, average players doesn't have super ultra op pc, like a lot are just playing on their old mom iphone, the best would be to stress test on different devices tbh idk
i have no idea how to optimise the movement, like 10k enemies with only the calculations (ex: cframe calculations) and have high fps isn't that hard, but on the other hand optimising the actual model movement??? no idea fr appart if you actually modify the roblox source code or maybe there is another option to do that that i never heard of or i am too stupid
wow i love you vids john
Deet
What zombie movement do you use. Heartbeat? Humanoid? Or body velocity
A huge part of the optimization is probably movement so i just want to know
probably catmull rom spline stuff with lerp and stuff maybe?? (heartbeat is probably what was used to update the enemies position)
do not even try to use body velocity, humanoids, well anything physcis related has they are really bad
@@Blockunstar ok I thought I was a good coder but I have know idea what catmull rom spline is. Ik I shouldn't use humanoid and body velocity since it's performance sucks
@@swordlegend3256 catmull rom splines are kinda curve calculations similar to bézier curves but they go through the waypoints, i suppose they used those stuff to calculate the smooth rotations and other for like movement idk, no idea if this uses lerp tho
@@Blockunstar oh thanks now I understand the wording is kinda weird but I have made a movement simar to humanoids with heartbeat by just setting cframe and also having movement direction
He mentioned in a video before he doesn't use humanoid (humanoid kinda sucks for these games)
Hey john how do i optimize my game to your extent because i'm trying to develop a game i have a lot of experience because i have other failed projects (exactly 4 of them)
By the way they are private because i'm too embarrassed to show them. one of them was called tds: back in scheme which i discontinued because i was scared that it would get taken down due to copyright i'm trying to find a fix on "how do i reduce lag" in my game or "how do i reduce ping so players can get the smoothies experience" stuff like that i
I also tried making a border game called please passport (inspired by please papers the 2013 hit game)
@@lifesupport-sh7sk "how do i reduce ping so players can get the smoothies experience", to reduce ping you mostly need to like, send the least amount of data has possible on client, example with tween (yes i know tween sucks): if you need your model to be tweened and you need the data on the server you might do some replications like you just make it go to the target at the end of the time then on client once the client receive a remote it will run a tween on its side, it actually saves more because you run the tween on the client instead of server so it won't be constantly updating to the position data from server to client, you can also try to optimise remotes by sending the least amount of data you can, like try to use string.pack or stuff can be useful on strings and numbers
nice job keep working and the game will be a hit!
Yo!!
The optimization is great af for a roblox game, the problem is about the newest roblox updates.
I have several questions;
Q: Are you willing to switch game engines?
A:
Q: What is the game gonna have that is unique to other TDS games?
A:
Thanks, goodbye
I can answer question q even tho im not john or a dev
Things that are unique from tds are the pausing button, the way you get transported to the match, towers having hp, towers having 2 paths, any enemy being hidden, the starter tower actually not being guy with pistol, logic like how towers cant shoot through walls, dj giving hidden detection, slowing and speeding up the match, THE EPIC THEMES, any tower being placed on a cliff, more range on a cliff, juggernaut having 4 miniguns and thats all i know
@@ava8331towers having hp: universal gaurdians
Towers having 2 paths: Tower Blitz
@@ava8331bloons tower defense 5 (Atleast, with the paths): guten tag
Its bringing TD standards from paid, high quality games like BTD6 to Roblox. But it also has a lot of unique features. ANY tower on can be placed cliff zones for extra range, less damage (this is because obstacles block the POV of the towers). There's an Airplane that drops cash or extra base HP every wave. The game focuses little on high health bosses and more on the satisfaction of wiping out hordes (similar to btd6) and there's a literal battleship tower that can be placed in water and launch planes, shoot huge rockets, lots of bullets etc.
Pls dont make my potatus laptop laggy . I really wanna try this game
how is this even physically possible
the zombies cluster
@@Prexry no that isn't really the main "fix", people just assume that but it is way different, cluster is mostly just making the enemy position offset on an axis i forgot if it was z or x by just doing stuff like in example math.random, the actual optimisation needed are the calculation to know where the enemies will be and well just changing the cframe of a model
I need to see this on that $100 laptop you had on that one video when you complain about TDS hotbar UI (Most notably spamming commander ui) unless you no longer have access. I personally would find it rlly cool.
But remember.
Only is TDX.
I have a cool concept i think, is that you can summon a boat and can summon towers on top of the boat.
that sounds shit
meet
Admin commands in vip servers!
Bro he's adding in sandbox why need admin commands
I'm making a tkwer defense game bc of u
Yo thanks for letting me study the code
i have a school night rn its1 am rn wen i post this
some mod caved me for taking a dumb joke too seriously he got "threatened" by my joke that was supposed to not be funny The mod is called spookinio
just a question will we have a test game mode when the game comes out
and im going to guess its only in private servers
yay another tdx optimization test
When you leak that one grenadier:
I really hope this game goes into beta!!!
This is why TDX is better bc they care for your devices (even though the game isn’t out yet)
ok
Is it released
Yes
btw there is a game that use's your start just with a bit of skibidi added to it
He already responded to that copy
Anyways thank you i never crash playing tdx
When is tdx is gonna Release bro
Is tdx going to be released on console ever
Add sandbox mode to the main game
Alr planned
Bro thinks getting 29 fps is bad, I deal with it everyday😎
“bro why do i see you floating”💀
29 fps IS bad. You just have a shit computer like I do. Lol
@@jhonshmo8400 my pc is just an old oversized android💀
@@jhonshmo8400nah, if it's over 24 fps it's all the same.
@@jhonshmo8400 Actually 24fps and higher is the average since it's most movies framerate.
John made the most fps friendly td
Im sure my pc will crash by just the lobby itself loading
oh boy its midnight and im watching this
Same
So u said it was your super pc but like we are obvisoly gonna spawn 10k zombies and kill them instanly(but actualy nice man)
It will have console support ?
I want your computer 🤩
one boom and they're dead
asmr be like:
W
Still get 0.6 fps in late game endless aka wave 130+
when kan we Play the game
damn 1 4090 and a intel core i9 13900k absolute unit of a pc
Now do it in mobile
Yet again, john shows off his pc…
MORE TDX VIDEOS!
Y not graphics 1?
I love this game
This is what i like. Low end friendly. Good simple enough. And just goood. Tds is always having my ass on 10 fps with just atleast 30 zombies. And 24 accelerators. But not, tdx.
i dont even know if this game is out but im impressed
Wr are needed mobile fps test
How about low end devices?
When its gano come out im goig to play it
Crazy
Edit: Only in TDX
How join to the game
Only in TDX.
epic
can anyone send me TDX game link in roblox? i can't find it
it’s not released cause it’s unfinished
@@Calamitybesttdxboss thanks for telling me, i hope it came out better than the vdeo when it finished
@@RenHimura7370he said 1?.??.23 my guess is December or November because October is just a showcase of new tower called operator and artillery
m1 abrams
Hey i have a idea add mobile
you should try garbage laptops (specifically the ones that are aroudn 250 dollars)
now add console support so i can play on my playstation plz plz plz that’ll be epok
KEEP IN MIND HE PROBABLY HAS A 3000 DOLLARS OR EVEN MORE OF A PC lets hope my garbage pc wont blow up
tdx like among us
Only in TDX
only in tdx
I said and ill say it again its not optimized enough for my pc to handle it its not ur problem tho my pc is 10 years old
Blud is leaking the source code
I can’t find this game
it’s not out cause it’s unfinished
Please tell me there will at least be console support? Please be better than TDS in that aspect? Pretty please with a cherry on top?
my ancient pc will crash on only 100 zombies
How old is your pc
1000000000 bc
early
heheheheheheheheyheheheeh
imagine
😊 'Promo sm'
ONLY IN TDX!!!!!!!!!
Can I be a tester for you
Give us the game now 😈
Bro test on phones!
i just notice toitlet tower defnes copyed jhon roblox entire lobby and upgrades stuff
And they also copied tds victory ui
skibidi toilet
first?
John can u friend me pls
Cool
Epic
Cool