Weld Gun Script Breaks/Works half the time?
So here is my whole script! Question is below
01 | local Player = game:GetService( "Players" ) |
02 | script.Parent.Equipped:connect( function (gun) |
04 | local Handle = script.Parent.Handle |
05 | local Union = script.Parent.Union |
06 | local Shoot = script.Parent.Shoot |
07 | local Hand = Player.LocalPlayer.Character |
09 | Handle.Anchored = false |
13 | local weld = Instance.new ( "Weld" , Handle) |
16 | weld.C 1 = CFrame.Angles( 0 , 0 , 0 ) * CFrame.new( 0 , 1 , 0 ) |
17 | local weld 2 = Instance.new ( "Weld" , Hand) |
18 | weld 2. Part 0 = game.Players.LocalPlayer.Character [ "Right Arm" ] |
20 | weld 2. C 1 = CFrame.Angles(math.rad( 120 ), math.rad( 30 ), 0 ) * CFrame.new( 1 , 0.4 , 0 ) |
21 | local weld 3 = Instance.new ( "Weld" , Union) |
24 | weld 3. C 1 = CFrame.Angles( 0 , 0 , 0 ) * CFrame.new( 0 , 0 , 0 ) |
28 | function KeyPressed(inputObject, gameProcessedEvent) |
29 | if inputObject.KeyCode = = Enum.KeyCode.One then |
31 | local Handle = script.Parent.Handle |
32 | local Union = script.Parent.Union |
33 | local Shoot = script.Parent.Shoot |
34 | local Hand = Player.LocalPlayer.Character |
36 | Handle.Anchored = false |
41 | local weld = Instance.new ( "Weld" , Handle) |
44 | weld.C 1 = CFrame.Angles( 0 , 0 , 0 ) * CFrame.new( 0 , 1 , 0 ) |
45 | local weld 2 = Instance.new ( "Weld" , Hand) |
46 | weld 2. Part 0 = game.Players.LocalPlayer.Character [ "Right Arm" ] |
48 | weld 2. C 1 = CFrame.Angles(math.rad( 120 ), math.rad( 30 ), 0 ) * CFrame.new( 1 , 0.4 , 0 ) |
49 | local weld 3 = Instance.new ( "Weld" , Union) |
52 | weld 3. C 1 = CFrame.Angles( 0 , 0 , 0 ) * CFrame.new( 0 , 0 , 0 ) |
55 | game:GetService( "UserInputService" ).InputBegan:connect(KeyPressed) |
So, what happens is that it sometimes goes in the direction where its suppose to be. But other times it just gives up and stays in a "Default" position. There are NO output errors, and I'm about to bust my monitor. Thanks!