Trouble cloning parts/models onto character

Issue: My friend and I are trying to clone parts/models onto a character, yet when trying to do so we are given weird orientations.

Example: https://gyazo.com/8a0d2229decbdc01422cf04e9b64c3df

Solutions Tried: We have tried using Welding, Motor6D, and Accessories, but they all give us the same issue. Note that this isn’t created by a tool, we just cloned it onto the player. We used this last time when using just one part and it was placed the way it was supposed to be, but now that I’m trying two parts I’m having issues.

Current script

local Basic_Axe = AxeModels.basicAxe
local Left_Basic_Axe = Basic_Axe.LeftAxe

Humanoid:AddAccessory(Left_Basic_Axe:Clone())
local Axe_Model_1 = BasicAxeModel_1:Clone()
    Axe_Model_1.Name = 'Left Axe'
    Axe_Model_1.Parent = Character['LeftHand']
local Axe_Model_2 = BasicAxeModel_2:Clone()
    Axe_Model_2.Name = 'Right Axe'
    Axe_Model_2.Parent = Character['RightHand']

local Axe_1_Motor = BasicAxe.Axe1_6D:Clone()
    Axe_1_Motor.Part0 = Character['LeftHand']
    Axe_1_Motor.Part1 = Axe_Model_1
    Axe_1_Motor.Parent = Character['LeftHand']
local Axe_2_Motor = BasicAxe.Axe2_6D:Clone()
    Axe_2_Motor.Part0 = Character['RightHand']
    Axe_2_Motor.Part1 = Axe_Model_2
    Axe_2_Motor.Parent = Character['RightHand']