So i have this code which clones some model inside another model and it can be done endless times and i have created RootPart in main model to tween it and im using WeldConstraint for that (adding via instance could also use :Clone() tho) and my problem is that it only adds WeldConstraint instance only once and after that it doesn’t add even though it runs that part of the code again.
TweenAnimation_Finish.Completed:Connect(function()
local WeldContraint = Instance.new("WeldConstraint")
WeldContraint.Parent = ClonedProduct.Parent
WeldContraint.Part0 = ClonedProduct:FindFirstChildOfClass("MeshPart")
WeldContraint.Part1 = ClonedProduct.Parent.RootPart
Finished = true
end)
This is how part of the code looks like where it creates new instance of WeldConstraint.