Best Simple Hitbox for basic combats?

Magnitude? Raycasting? Region3?
What’s the best simple way to make a hitbox for a basic combat?

I honestly think that the best way is raycasting but I am not saying that the other two options do not work this depends on how you configure it.

Raycasting I believe can’t be fooled by hackers. Also Magnitude shouldn’t. One thing is that hackers can fire .Touched events, so if you don’t handle that they might be able to kill people from like really far away. A magnitude check is usually great to improving that. It’s not perfect, but it’s still good.

Using Raycasting for touch detection I believe cannot be fooled by hackers if you are using it solely for touch detection.

I usually use this module for when I’m trying to use RayCast for melee weapons. It’s super easy to use and very accurate.