How To Script Hitboxes Properly | Roblox Studio

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 ม.ค. 2025

ความคิดเห็น • 164

  • @braedenwalker6414
    @braedenwalker6414 5 หลายเดือนก่อน +5

    Dude ur dropping gold left and right. When I see these new vids in my notifs I try to script whatever ur making then use the vid to see if I did it correctly/add anything I didn’t think of.

    • @iamLudius
      @iamLudius  5 หลายเดือนก่อน +1

      I can tell you’re gonna be a good scripter, keep up the good work bro :]
      Also thanks for the comment!

    • @Syntex_Error
      @Syntex_Error 5 หลายเดือนก่อน +1

      W commenter

    • @GamingScripter
      @GamingScripter 5 หลายเดือนก่อน

      It's not that hard once u get familiar with scripting
      Like you will know that it will need a CFrame so you should probably know how it will work

  • @mahtezzz1-n4x
    @mahtezzz1-n4x วันที่ผ่านมา +1

    tip that worked for me: instead of using `hum.Health -= damage` in the server script, i used `hum.Health = hum.Health - damage`

  • @ScriptPlunger
    @ScriptPlunger 5 หลายเดือนก่อน +3

    love the videos dawg, u got a new sub

    • @iamLudius
      @iamLudius  5 หลายเดือนก่อน

      Appreciate the support :]

  • @diegogaviria3863
    @diegogaviria3863 3 หลายเดือนก่อน +18

    Pro tip: Don't handle collissions nor damage on the client (Local scripts), If I were an exploiter I could just edit my local scripts and spam invoke the function that deals damage to a player. Making a remote that can send a signal from the client to the server for dealing damage is equal to giving an exploiter a tool to start griefing, since the server will think it's completely valid.
    Remember, always treat the client as a lying bastard when programming

    • @proudoyster778
      @proudoyster778 25 วันที่ผ่านมา +2

      This is my “erm actually 🤓” moment so don’t take this seriously
      As a former exploiter (no I’m not going to apologize for it because I used it for looking at how certain games i liked were developed) I’m pretty sure it is impossible to edit LocalScripts, let alone a regular script. You can’t even edit health on the client, which took me an unhealthy amount of time to figure out💀
      You could tho, remove and add the script back with the stuff you wanted to put on it (because it is possible to read scripts on the client) but then it just comes down to how secure the developer was with their code.
      So yea, like Diego said, don’t ever trust the client and have security checks for everything. For example, if someone on the client makes a rebirth button visible on their UI without the requirements, don’t allow them to rebirth. If you have a sense of humor or you think anticheats are boring asf to code, crash their game with the while loop method or play a really loud or spooky sound, or one of my favorites: put a spooky PNG image, then after a bit have creepy ambience play and then have a message that says “User has been logged”

    • @daoyeet
      @daoyeet 15 วันที่ผ่านมา +1

      @@proudoyster778 lmao the 3rd paragraph was worth reading

    • @costo.
      @costo. 13 วันที่ผ่านมา +1

      bro thinks any exploiter will interest on his game 😅😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂

    • @Garbaige
      @Garbaige 5 วันที่ผ่านมา +1

      you use the client cuz of the delay between the server and the client so sometimes on the client you would have clearly hit someone but cuz of the delay it doesn't actully happen on the server
      so if you do it on the client then you will 100% all the time hit that person
      so its a choice of: the server delay ruining the game for some people OR make the game slightly exploitable

  • @loer1662
    @loer1662 5 หลายเดือนก่อน +24

    I know someone mentioned it here before however I'll be more in-depth, but the problem with having hitboxes set up on the client (and a damage-dealing remote on the server) is that they are extremely exploitable.
    Exploiters can use the remote to kill anyone, from basically anywhere. This is where "Sanity Checks" come in, and I hope you have a video planned on them soon. Other than that great video.

    • @Ylient
      @Ylient 5 หลายเดือนก่อน +1

      aye that was me lol and i agree

    • @wifty362
      @wifty362 5 หลายเดือนก่อน +1

      Especially in this case, since they can also change the damage to math.huge, which is an instant kill.

    • @Mr1Lito
      @Mr1Lito 5 หลายเดือนก่อน +1

      So is it better to have the hitboxes set up on the server instead?

    • @wifty362
      @wifty362 5 หลายเดือนก่อน +2

      @@Mr1Lito Yes. Using a server script for this is a good solution.
      For input, you use a local script, but you don't send any arguments.

    • @loer1662
      @loer1662 5 หลายเดือนก่อน +3

      ​@@Mr1Lito The way I do it is I use a local script to detect the input, then I fire a remote event to the server with the name of the move. Then the server handles the move cooldown, the creation of the hitbox and the damage dealing. I'm curious to see what Ludius will do in the future.

  • @FlawlessPixel
    @FlawlessPixel 5 หลายเดือนก่อน +1

    The goat posted another banger

    • @iamLudius
      @iamLudius  5 หลายเดือนก่อน

      Thanks for the comment. I really appreciate it :]

  • @Comeonkeion
    @Comeonkeion 5 หลายเดือนก่อน +1

    You never fail to dissapoint Ludi

  • @bouguerrahamine7174
    @bouguerrahamine7174 5 หลายเดือนก่อน

    lets go the goat dropped a new vid

  • @devakari8347
    @devakari8347 5 หลายเดือนก่อน +32

    Something everyone following this tutorial should read:
    This is NOT safe to do for your game for 2 main reasons, exploits and bad ping.
    Exploits: Since you are handling the hitbox pretty much exclusively on the client, there are no checks to ensure validity. Moreover, the server isn't checking whether the player making the hitbox is valid. This means that an exploiter could very easily execute a script that fires the RemoteFunction shown in the video with a player or character they would like to damage as a parameter, and any arbitrary numerical value for the damage, and damage anyone or anything on the server. You can fix this multiple ways: Do the hitbox on the server (slower but more secure), or include sanity checks on the server.
    Bad Ping: Again, another problem with this being client-sided. If I was lagging really badly, and performed an attack, the hit would still go through, but this is not a good thing. Let's say I have 400 ping. To the other player, I'm shown at a distance larger than the hitbox, but to me, I'm right in front of them. Since the script only checks my client to see if their within a boundsbox, then the attack would still go through. This would be unfair to the other player, since I'm still pretty far away from them.
    There are more reasons than that, and performing backend things like this on the client is just generally a bad practice. With a few tweaks, this could be a great tutorial.

    • @Drizz1nonly
      @Drizz1nonly 4 หลายเดือนก่อน

      I dont know how to tweak it and i dont know what to do i followed hes last tutorial for m1s and it works great it js doesnt have a hitbox if this is bad then what do i do to get something that works with this script well

    • @DaikonDee
      @DaikonDee 4 หลายเดือนก่อน

      I was also thinking the same thing. But i still want to do the hitbox on client for better performance. Therefore i came out with 2 solution, First is to apply debounce to prevent multiple invoke spam and second is to check player and target distance every time remote function is invoked (if they are too far, don't apply any damage).

    • @van-cw9qd
      @van-cw9qd 4 หลายเดือนก่อน

      @@DaikonDee so this is why tsb hitbox is crazy

    • @SabbaIsHim
      @SabbaIsHim 4 หลายเดือนก่อน

      solution: handle everything else on remote function server

    • @shurah_
      @shurah_ 2 หลายเดือนก่อน +1

      this is seriously terrible advice, ALL great and responsive combat systems are based on the clientside.
      & also, if you're 'lagging due to ping', your inputs are still going to be delayed the same REGARDLESS of whether your combat's server-based or client-based.

  • @betsyduran2611
    @betsyduran2611 5 หลายเดือนก่อน +4

    Not the”they not like us”music in the background😭💀

    • @iamLudius
      @iamLudius  5 หลายเดือนก่อน

      You already know jajajajaj

    • @luauthemancool
      @luauthemancool 5 หลายเดือนก่อน

      the beef is over

  • @ScriptPlunger
    @ScriptPlunger 5 หลายเดือนก่อน +3

    also I bought the book u recommended a while ago, doing me well

    • @iamLudius
      @iamLudius  5 หลายเดือนก่อน

      Awesome bro! Keep up the good work :]
      Also thanks for the comment

  • @Jack-po8ci
    @Jack-po8ci หลายเดือนก่อน

    3:07 if you watched the last video you probably noticed that somewhere 3 extra lines of code were added can someone explain why or what they are?

  • @TeaRN-pd6vv
    @TeaRN-pd6vv 5 หลายเดือนก่อน +1

    it no work for me T-T
    Edit: the animations play but they dont take damage

  • @KeyBalls
    @KeyBalls 5 หลายเดือนก่อน +1

    u dont have any security on ur damage script, im pretty sure exploiters can easily fire that remote function and damage anyone from anywhere. for me i would either check the distance between the two players in that damage script to make sure they were hit properly. but in some cases u cant do that, so u can recheck if the player that got hit is in the hitbox, the downside is that its less efficient

  • @ultimatenick9486
    @ultimatenick9486 5 หลายเดือนก่อน

    w video i learned a lot bro thanks

  • @SomethingIsWrong12
    @SomethingIsWrong12 4 หลายเดือนก่อน +1

    Can you make the player get stunned while doing m1? This would be very helpful

  • @aidan9387
    @aidan9387 3 หลายเดือนก่อน

    don't use remote functions unless you plan on returning a value back to the client/server just use remote events

  • @keyblademaster8263
    @keyblademaster8263 5 หลายเดือนก่อน +2

    The course cost 100$ a moth & that's the half off price??

    • @dashmaster5432
      @dashmaster5432 4 หลายเดือนก่อน

      Get byteblox's course instead..

    • @keyblademaster8263
      @keyblademaster8263 4 หลายเดือนก่อน

      @@dashmaster5432 I know how to code. It's the fact that he is in all honesty still a novice at this and he's charging that amount

  • @jellyskelly2real
    @jellyskelly2real 2 หลายเดือนก่อน

    when i put the script for the first video the animations worked. now that i added new strings the animations no longer play

  • @drippyclark5444
    @drippyclark5444 5 หลายเดือนก่อน

    Is anyone here having problems where it works when u punch in the 1st time but at the 2nd time it does it multiple times instead of 1 time only?

  • @nathanrobloxsquad4529
    @nathanrobloxsquad4529 2 หลายเดือนก่อน

    What If I used .touched in this manner:
    I found it less buggy but that could just be a coincidence
    local function damage(hit)
    if hit.Parent:FindFirstChild("Player") then
    hit.Parent.Humanoid:TakeDamage(100)
    script.Parent["Sword Hit"]:Play()
    end
    end
    script.Parent.Touched:Connect(damage)

    • @shurah_
      @shurah_ 2 หลายเดือนก่อน

      the hitbox will still be inconsistent and not always register.
      the only thing i personally would use .Touched for is checking to see if a player enters a new area/location of the map.

    • @nathanrobloxsquad4529
      @nathanrobloxsquad4529 2 หลายเดือนก่อน

      how about if I use remote events? using local script and scripts

  • @Ylient
    @Ylient 5 หลายเดือนก่อน

    Although it might be slighty smoother to put the hitbox on the lcient and trust them its better to do it on the sever and weld it to the client

    • @vrfrenzy8451
      @vrfrenzy8451 5 หลายเดือนก่อน

      no not really because the server has a delay from client and server, meaning hitboxes will lag behind you pretty much and you can do security checks to check if the hitbox is correctly positioned/sized too.
      It's far from slightly smoother, it is smooth and if you purely run it on the server it will be horrible

  • @KevinsGotAim
    @KevinsGotAim 5 หลายเดือนก่อน +1

    local t = 0
    while t < 1 do
    --Wait a maximum of 1 second before deciding the animation will never load.
    if m1Track.Length > 0 then break end
    t+=task.wait()
    end
    add this right after the m1Track variables, should fix the animations playing fast

    • @KevinsGotAim
      @KevinsGotAim 5 หลายเดือนก่อน

      You should add this in a future tutorial like maybe bug fixing on the m1 system

    • @KevinsGotAim
      @KevinsGotAim 5 หลายเดือนก่อน

      the reason is because it wasnt fully loaded i think

    • @vrfrenzy8451
      @vrfrenzy8451 5 หลายเดือนก่อน

      just do
      repeat task.wait() until anim.Length ~= 0

    • @KevinsGotAim
      @KevinsGotAim 5 หลายเดือนก่อน

      @@vrfrenzy8451 I didnt think of that but imma still do mine for now

    • @vrfrenzy8451
      @vrfrenzy8451 5 หลายเดือนก่อน

      @@KevinsGotAim alr, but what I did looks cleaner and probably is more performant so feel free to use it if you want

  • @vieHxti
    @vieHxti 5 หลายเดือนก่อน +2

    should use modules for combat systems fr fr

    • @iamLudius
      @iamLudius  5 หลายเดือนก่อน +1

      Yeah, for more complex stuff for sure :]

  • @jlboss_ps4751
    @jlboss_ps4751 2 หลายเดือนก่อน

    whats really the point of a remote function rather then using a remote event

  • @Flovae
    @Flovae 5 หลายเดือนก่อน

    doesnt work hitbox is fixed in one place and player gets damaged anyways.
    EDIT: Turns out it was because it was in a module script, but the player still gets damaged and moving that out of the module script will overcomplicate the final solution (I alrd got 5 parameters going into the module script I aint gonna add another one)

  • @jbgmr
    @jbgmr 5 หลายเดือนก่อน +1

    U inspire me

    • @iamLudius
      @iamLudius  5 หลายเดือนก่อน +1

      That's the goal, happy to hear I'm able to inspire people :]

  • @flyingfox989gamer3
    @flyingfox989gamer3 หลายเดือนก่อน

    why do the dummies not get damaged when i test it

  • @Dragnor13
    @Dragnor13 5 หลายเดือนก่อน +1

    will the 3rd vid vid be when you punch someone it dose like a impact animation when the player hits them?

  • @happyparty987youtube
    @happyparty987youtube 3 หลายเดือนก่อน

    I have an error where it does no damage even if I type it correct

  • @jbgmr
    @jbgmr 5 หลายเดือนก่อน +1

    Thank you bro

    • @iamLudius
      @iamLudius  5 หลายเดือนก่อน +1

      You're welcome :]
      Thank you for the comment :]

  • @faintedwrath
    @faintedwrath หลายเดือนก่อน

    quick question here, so you have to validate on the server correct? you dont go over this in your tutorial, why dont you check it at all?

  • @Lillmario
    @Lillmario 5 หลายเดือนก่อน +1

    can you do hit stun

  • @FlyinC4T
    @FlyinC4T หลายเดือนก่อน

    let's make exploiters able to put boxes on every player on a while loop and deal them math.huge damage :troll:

  • @dogginodog8896
    @dogginodog8896 4 หลายเดือนก่อน

    Why the helll are you using a remote function if you are not returning anything to the client, just use a remote event

  • @Angocell
    @Angocell 5 หลายเดือนก่อน +2

    46 seconds ago is insane

    • @iamLudius
      @iamLudius  5 หลายเดือนก่อน

      Yeah, I just published it jajajajaajaj
      Also, thanks for the comment :]

  • @NthFancy
    @NthFancy 5 หลายเดือนก่อน

    Hoping tsb devs see this

  • @BatuIDD
    @BatuIDD 5 หลายเดือนก่อน +1

    i think the local script detects the players in the hitbox, sends those players to a remote function, and a normal script recieves this then does the damage. What if a hacker starts sending random players to that remote function? can they damage random players?

    • @TheOriginalPlu
      @TheOriginalPlu 5 หลายเดือนก่อน +1

      For the most part, Byfron prevents that. But there are still some executors that can bypass it.

    • @BatuIDD
      @BatuIDD 5 หลายเดือนก่อน +1

      @@TheOriginalPlu yeah thats true, but i think it would be better to add distance check function to the damage script. if the distance between the player hitting and the player recieving the damage has a high distance between them, code will not register the damage. Atleast somewhat prevents range extenders.

    • @iamLudius
      @iamLudius  5 หลายเดือนก่อน

      Yup, that’s a good idea to prevent exploiters

    • @iamLudius
      @iamLudius  5 หลายเดือนก่อน

      Yes, they would, but if I start explaining all that beginners could get confused

  • @TryxBloxz
    @TryxBloxz 4 หลายเดือนก่อน

    i tried to make an else statement inside the for i,v loop that said elseif humanoid == nil then and it prints missed, it would just print out missed anyways.

  • @Mf_Anisins
    @Mf_Anisins 16 วันที่ผ่านมา

    yo, i used the m1's tutorial you made and then went to this to figure out how to make it do damage and im 100% certain i did everything correct but its refusing to damage anything. any ideas what might be wrong? (also, i realized halfway through i was still in test mode so i had to remake the script and remote function, idk if that effects anything)

  • @k12cold53
    @k12cold53 4 หลายเดือนก่อน

    if im using projectiles how would i go about with these methods

  • @YUREREVENG
    @YUREREVENG 5 หลายเดือนก่อน

    i did not understand what to do in the first part💀💀💀💀

  • @kio_rblx
    @kio_rblx 5 หลายเดือนก่อน +10

    i swear you dont sound the same

    • @iamLudius
      @iamLudius  5 หลายเดือนก่อน

      Is that good or bad? In any case, I sound a bit different bc I started recording very early in the morning, so my voice is kinda different bc I just wake up in most cases or it’s hella late

    • @kio_rblx
      @kio_rblx 5 หลายเดือนก่อน

      @@iamLudius its not bad its just different

    • @christian-b8e
      @christian-b8e 5 หลายเดือนก่อน

      SKINWALKER

    • @kio_rblx
      @kio_rblx 5 หลายเดือนก่อน

      @@christian-b8e fr i didnt weanna say it tho

  • @sharky_obby-creator
    @sharky_obby-creator 5 หลายเดือนก่อน

    Im making a game, and for the moves hit detection i use simple hitbox, copying it or creating throught the script. Would've it be necessary to change the hitboxes to this zone detector? Or part hitboxes are worse in any case? Just not sure, but this seems like a feature i didnt know even exist. Crazy

  • @viktorscott8013
    @viktorscott8013 5 หลายเดือนก่อน

    Idk why but im not dealing any damage when I m1, and there are no errors in my output so i don't know why its not working. :/

    • @viktorscott8013
      @viktorscott8013 5 หลายเดือนก่อน

      I've tried everything and it's still not working

    • @eliana4925
      @eliana4925 4 หลายเดือนก่อน

      me too bruh :/

  • @AmirJrab
    @AmirJrab 5 หลายเดือนก่อน

    Can anyone tell me why it says that "OnServerInvoke can be only implemented on the server" ?

  • @shep6964
    @shep6964 4 หลายเดือนก่อน +3

    bad code, hitboxes shouldn't be done on client whatsoever, damage shouldn't be sent from client to server

    • @TDomiCoder
      @TDomiCoder 3 หลายเดือนก่อน

      True but is for more hibox latence just check after from server with raycast and distance from players

    • @Tera1539
      @Tera1539 3 หลายเดือนก่อน

      if you make hitboxes on the server, it will be extremely delayed. How should it be scripted, so hitboxes will not be delayed?

  • @Mr1Lito
    @Mr1Lito 5 หลายเดือนก่อน

    yo could you please help me here or make a video on how to hit multiple humanoids at the same time? Because when i hit 2 humanoids at the same time, only one gets damaged at a time
    Edit: Nvm i figured it out

  • @DevelyEpic
    @DevelyEpic 5 หลายเดือนก่อน

    Shouldn't you do the spacial queries on the server because of exploits? Other than that I love your vids bro they're so helpful.

  • @1The._.Dreamer._.TF0
    @1The._.Dreamer._.TF0 หลายเดือนก่อน

    it doesnt work, no damdage taken, even tho its same as in the video :( i also tried debuging/printing but also nothing showed, idk what to do

  • @bazsooka671
    @bazsooka671 หลายเดือนก่อน

    stocking scripting videos like the library of alexandria until i come across an error i don't understand
    I have a sus egirl avatar and im too scared to talk on the forum and get smited by other devs bc of it

  • @MohamedRasheed-j9c
    @MohamedRasheed-j9c 27 วันที่ผ่านมา

    I don't see any extra lines

  • @SmilingChallenger
    @SmilingChallenger 5 หลายเดือนก่อน

    Hey, how do I make a tool get ungrouped on click?

  • @Remeashbanton
    @Remeashbanton 2 หลายเดือนก่อน

    W video dawg

  • @MRmustachee
    @MRmustachee 5 หลายเดือนก่อน

    How did you make the dummy that takes damage? Sorry if this is a noob question but then again I am a noob at scripting.

  • @noyeah493
    @noyeah493 หลายเดือนก่อน

    Bro why didn't you just use a hitbox module? Personally think its gonna be much better and is not as easy to exploit

  • @firicel_0753
    @firicel_0753 5 หลายเดือนก่อน

    My hit detection just stoped from working 😅

  • @Gala_RF
    @Gala_RF 5 หลายเดือนก่อน

    3 calls a week sounds not bad, 1 on 1 calls or is it group calls ?

    • @EpikEpyx
      @EpikEpyx 5 หลายเดือนก่อน

      It's not worth it bro it's 99$ a month

    • @Gala_RF
      @Gala_RF 5 หลายเดือนก่อน

      @@EpikEpyx yea I checked after commenting, honestly I wouldn't mind if it was closer to something like $50 a month but I'm not gonna hate on the price, I understand the things that might go with setting a price like that

  • @SebiKnows
    @SebiKnows 4 หลายเดือนก่อน

    is simple spy up?

  • @C4tsH3ll
    @C4tsH3ll 3 หลายเดือนก่อน

    My brain hurts from this

  • @dawnh
    @dawnh 5 หลายเดือนก่อน

    can't you use table.find and table.insert instead for the hit conditions

    • @Astrolightation
      @Astrolightation 3 หลายเดือนก่อน

      It's the same thing.

  • @Lootifyx
    @Lootifyx 5 หลายเดือนก่อน

    Yo can you make a blocking tutorial next?

    • @KevinsGotAim
      @KevinsGotAim 5 หลายเดือนก่อน

      I already made it lol

  • @Galaxy8081
    @Galaxy8081 5 หลายเดือนก่อน

    is this any better then raycast hitbox or shapecast

    • @vrfrenzy8451
      @vrfrenzy8451 5 หลายเดือนก่อน +1

      raycast hitbox is for more precise hitboxing, this hitboxing is less accurate (as in it can only be done in the shape of a square i think) but both work well and great for hitboxing

  • @eliana4925
    @eliana4925 4 หลายเดือนก่อน

    why i cant do damage????

  • @paulgide
    @paulgide หลายเดือนก่อน

    bro damageRF,where do you putted local damageRF

    • @Jack-po8ci
      @Jack-po8ci หลายเดือนก่อน

      Yeah I know same issue for me it's somewhere at the top

  • @MohamedRasheed-j9c
    @MohamedRasheed-j9c 27 วันที่ผ่านมา

    Because it's too blurry

  • @ShokoGaming-x2p
    @ShokoGaming-x2p 7 วันที่ผ่านมา

    I have no errors but I'm not doing damage.

  • @EidrisVon
    @EidrisVon 2 หลายเดือนก่อน

    it not work for me :(

  • @bangaloretori7520
    @bangaloretori7520 5 หลายเดือนก่อน

    Gob bless you and your family

  • @fwJosi
    @fwJosi 5 หลายเดือนก่อน

    How do i make the hitbox visual?

    • @vrfrenzy8451
      @vrfrenzy8451 5 หลายเดือนก่อน

      set the transparency of the part to 0

  • @AISSmeltsoaver
    @AISSmeltsoaver 5 หลายเดือนก่อน

    Isn't Localscript a bad choice when it comes to hitboxes? because i think it's accessible by the exploiters and it can be modified to make it bigger let me know if I'm wrong.
    All things aside you are the GOAT Ludius daddy 😋😋😋😋

    • @vrfrenzy8451
      @vrfrenzy8451 5 หลายเดือนก่อน

      if you do hitboxes on the server there will be a delay on things and the hitbox will be incorrectly positioned, it's done on the client for smoothness and security checks with the hitbox can be done to make sure exploiters don't mess things up

    • @Astrolightation
      @Astrolightation 3 หลายเดือนก่อน

      ​@@vrfrenzy8451 I understand your point, but implementing hitbox detection on the client side may not always provide smooth results. Performing hitbox detection on the server side is slower, but it is more secure. Another issue is that it could cause significant latency problems if the players experience lag.

    • @vrfrenzy8451
      @vrfrenzy8451 3 หลายเดือนก่อน

      @@Astrolightation latency messes up hitboxes for players hugely, there will always be latency, that's why it's handled on the client and is security checked on the server

  • @MohamedRasheed-j9c
    @MohamedRasheed-j9c 27 วันที่ผ่านมา

    It don't work

  • @TheDr3amDEV
    @TheDr3amDEV 5 หลายเดือนก่อน

    this guy is more like vuuk studio even the avatar haha

  • @ChuckBtv
    @ChuckBtv 5 หลายเดือนก่อน +1

    woah

    • @iamLudius
      @iamLudius  5 หลายเดือนก่อน

      Thanks for the comment :]

  • @Howlinn
    @Howlinn 5 หลายเดือนก่อน

    this is great but hitboxes go on the server not the client theres just too much the client can exploit with this method.

    • @vrfrenzy8451
      @vrfrenzy8451 5 หลายเดือนก่อน

      that's why people add security checks to it, if hitboxes are done on the server there's delay and it's far less smooth

    • @Howlinn
      @Howlinn 5 หลายเดือนก่อน

      @@vrfrenzy8451 even then with the security checks. if one client is lagging it can affect the flow of combat. thats why we use the server it will be static with good optimizing.

    • @vrfrenzy8451
      @vrfrenzy8451 5 หลายเดือนก่อน

      @@Howlinn no matter the optimisation, the server will always have a delay but I get your point, I'm no professional but I've got experience

    • @Howlinn
      @Howlinn 5 หลายเดือนก่อน +1

      @@vrfrenzy8451 yeah its true the server will have a delay

  • @kazuya49
    @kazuya49 5 หลายเดือนก่อน

    "Like a pro" and he sets the rootpart and the damage in client side... A mere cheater can damage anyone anywhere with the value he wants.
    Special queries is well explained but the code is trash.

    • @vrfrenzy8451
      @vrfrenzy8451 5 หลายเดือนก่อน

      it's not entirely trash, he doesn't damage in client side cuz you can't do that, people add security checks to make sure it isn't exploited too but he just doesn't do that here cuz that'd probably be too much for 1 video focused on people who don't know how hitboxes work

    • @NewEdens
      @NewEdens 5 หลายเดือนก่อน

      He let the client decide the damage, which is beyond stupid

  • @gokublacktube7665
    @gokublacktube7665 5 หลายเดือนก่อน

    Hey

  • @paulgide
    @paulgide หลายเดือนก่อน

    ah sorry i found it thx

  • @Shadowiscutie
    @Shadowiscutie 5 หลายเดือนก่อน +1

    first

    • @iamLudius
      @iamLudius  5 หลายเดือนก่อน

      You the goat :]