How to make dual wielding weapons?

Hi. I would like to know how I would implement dual wielding to my tools. I have a saber game called Super Sabers and we want a gamepass for Dual Wielding, so how would I get a tool in both hands? Thank you

9 Likes

You can use Humanoid | Roblox Creator Documentation to equip multiple tools and then weld it to the other hand.

4 Likes

How would I weld it to the other hand?

2 Likes

By changing the welds part property to the “LeftHand” and parent the weld there.

The weld is the (RightGrip) weld.

1 Like

Sorry for not understanding, I don’t have any knowledge in this field because I mostly code. I use a “Handle” part in the tool so Roblox welds it for me and I have a tool welding plugin to make it in right position. What weld are you talking about? Again, really sorry for not understanding

2 Likes

So uh. When you equip a tool, Roblox automatically welds the handle to the “RightHand”. The weld is parented to the RightHand and is named “RightGrip”.

To make it be held on the LeftHand, you must parent the RightGrip to the LeftHand and change its .Part0 property to the LeftHand.

After you have done this you must run Humanoid | Roblox Creator Documentation on the other tool that you want to be held on the right hand.

6 Likes

Thank you so much

(charrrrrrrrrr)

4 Likes