I am trying to make a football glove for my Roblox game, but I am having trouble with positioning it correctly on the player’s hand. Currently when the part is cloned it spawns in the middle of the players arm.
elseif accessory == "Left Glove" and equip == "Equip" then
local Weld = Instance.new("WeldConstraint")
Glove.Parent = char
Glove.CFrame = char:FindFirstChild("Left Arm").CFrame
Glove.Name = "Left Glove"
Weld.Parent = Glove
Weld.Part0 = Glove
Weld.Part1 = char:FindFirstChild("Left Arm")
end