How do I make a tool weld at my left arm?
when ever I equip a tool,it AUTOMATICALLY holds the tool in my right arm.
I made this SCRIPT :
1 | script.Parent.Equipped:connect( function (mouse) |
3 | local plr = game.Players.LocalPlayer |
4 | local weld = Instance.new( "Weld" , plr.Character [ "Left Arm" ] ) |
5 | weld.Part 0 = weld.Parent |
6 | weld.Part 1 = script.Parent.Handle |
7 | weld.C 1 = CFrame.new( 0 , 0 , 0 ); |
but that script takes my left arm and weld it on my right arm XD
I'm so TIRED thinking of how to do this!
can some body teach me how by
using this function :
1 | script.Parent.Equipped:connect( function (mouse) |