Why are my tools held backwards?
So I have been making some tools for my game and two of them appear to be held backwards. I have tried rotating the handle and the tools but it doesn't work. I have tried this code:
01 | rarm_weld = Instance.new( "Weld" ) |
02 | function onEquipped(mouse) |
03 | local rarm = script.Parent.Parent [ "Right Arm" ] |
04 | local torso = script.Parent.Parent [ "Torso" ] |
05 | rarm_weld.Parent = rarm |
06 | rarm_weld.Part 0 = rarm |
07 | rarm_weld.Part 1 = torso |
08 | rarm_weld.C 0 = CFrame.new(- 1.5 , 0.5 , 0.5 ) * CFrame.Angles(- 1.6 , 0 , 0 ) |
10 | script.Parent.Equipped:connect(onEquipped) |
11 | function onUnequipped(mouse) |
12 | rarm_weld.C 0 = CFrame.new(- 1.5 , 0 , 0 ) |
15 | script.Parent.Unequipped:connect(onUnequipped) |
that seems to help when you select the tool but when you re select the tool your arm rips off and falls through the ground. (yes, very funny) I'm not quite sure what to do about it. I am wondering if there is a way to fix this script or do something to the tool. When I mean the tool is held backwards I don't mean that the tool is backwards I mean the arm is backwards and the tool is upside down. (painful!) I would appreciate the help allot!
Sincerely, crazycittykat
EDIT
I have a place with the tools in it. The canopy and wall are the broken ones.http://www.roblox.com/Plugin-Studio-and-Tool-Workshop-place?id=215250479