Need help with gun

I normally do client side hit detection with a lot of sanity checks on the server.

30 chars

Think of it as this the bullet goes infront of the mouse so the vector3 goes into a straight line you can use magnitude or distance for that

Iā€™ve already tried Raycasting but I found it to be inaccurate a lot of the time, especially when my character is moving.

Raycasting is the most accurate solution for making guns, this is why its best if you do it on the client. You could also use bullet magnetism for making shooting easier, it means you basically weld a bigger hitbox to the character.

Search raycasting gun find a new one that has robloxs updated raycast in the toolbox and learn from it

I think what Iā€™ll do is when I click the mouse it renders a bullet on the client and at the same time casts out a ray. I can calculate how far away the target is and use that to know when the bullet should destroy itself. Giving the effect that it was hit by the bullet. How does that sound?

I learned how to make pistols a couple months ago from it

The only issue with that is players wonā€™t be able to dodge the bullets, but if your making fast bullets that will be ok.

Ok thank you Iā€™ll let you know how it works out.

1 Like

This will likely help you:

I finished it and it looks nice, I changed it up a bit so it takes the distance of the player and the distance of the moving bullet. Once the bulletā€™s distance is greater than the target than it deletes, making it look like it hit the target.