Well now i get this error: Expected BasePart got Model for WeldConstraint:Part1.
Could be happening cuz its going for the model instead of the PrimaryPart
Well now i get this error: Expected BasePart got Model for WeldConstraint:Part1.
Could be happening cuz its going for the model instead of the PrimaryPart
Yea, I think that would be why
How Would I do it then? Since I cant do LeftBoot:Clone().LightGrey
Oh I thought you meant that the problem is that the limb is trying to weld the the boot model instead of a part of the boot model, which might be the problem
But that is the problem. How would I access the LightGrey which is the Primary part so it doesnt error?
Instead of
local Lweld = Instance.new(âWeldConstraintâ)
Lweld.Parent = LLeg
Lweld.Part0 = LLeg
Lweld.Part1 = LBoot
local Rweld = Instance.new(âWeldConstraintâ)
Rweld.Parent = RLeg
Rweld.Part0 = RLeg
Rweld.Part1 = RBoot
try
local Lweld = Instance.new(âWeldConstraintâ)
Lweld.Parent = LLeg
Lweld.Part0 = LLeg
Lweld.Part1 = LBoot.PrimaryPart
local Rweld = Instance.new(âWeldConstraintâ)
Rweld.Parent = RLeg
Rweld.Part0 = RLeg
Rweld.Part1 = RBoot.PrimaryPart
it doesnt error but it doesnt weld
Also put the Weldconstraintsâ parents as the bootsâ primaryparts