Hello!
Ive made a dual wield weapon, and I made it so it becomes manually welded when equipped for animation purposes.
However, while equipping the weapon, it visible falls before snapping to the players arm.
My code:
local PRIMARY = Char:FindFirstChild("Right Arm")
if PRIMARY then
local MOTOR = Instance.new("Motor6D")
MOTOR.Parent = PRIMARY
MOTOR.Part0 = PRIMARY
MOTOR.Part1 = Tool.joint1
LAST_WELD = MOTOR -- just setting this so i can delete later :)
end
local PRIMARY2 = Char:FindFirstChild("Left Arm")
if PRIMARY then
local MOTOR = Instance.new("Motor6D")
MOTOR.Parent = PRIMARY2
MOTOR.Part0 = PRIMARY2
MOTOR.Part1 = Tool.joint2
LAST_WELD_2 = MOTOR -- just setting this so i can delete later :)
end
Video: