You can write your topic however you want, but you need to answer these questions:
What do you want to achieve? Keep it simple and clear!
i want to find out if there is a better way to create hitboxs
What is the issue? Include screenshots / videos if possible!
i am currently using raycasts for hitboxs however they are too accurate which results in hits missing when i wouldnt want them to
What solutions have you tried so far? Did you look for solutions on the
Developer Hub?
ive went on discords but people always say that raycasting is the best option however i want something as performant as raycasts while also being able to work
After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
-- This is an example Lua code block
Please do not ask people to write entire scripts or design entire systems for you. If you can’t answer the three questions above, you should probably pick a different category.
Have you tried shapecast? They are like raycasting, but instead of a line, it casts out a sphere or block (depending on what you choose), which increases the surface area of the ray, which means that you dont have to be very accurate. You can also change the size of the block or sphere.
Here’s the forum post from Roblox, they explain it pretty good.