I am trying to move a part by using cframe but when it is welded to a anchored part I just cannot move it.
And I need to have it welded to an anchored part because it is a building game.
Say for example I have a turret how would I move it.
I have already tried unwelding and rewelding which works fine but.
I want to know if there are any way I can move it without doing that or if there are other solutions instead of welds
The current behavior is that when I try moving a part that is welded to a anchored part
It just dosen't move.
I have a non anchored part welded to a anchored part which is the baseplate
Any Suggestions would be useful.
Here is a example of what i want to do
Part.CFrame = Part.CFrame * CFrame.Angles(0,math.rad(90),0)
There are no errors into this code but because of the anchor and the weld
it does not move AT ALL!
My personal recommendation would be putting the whole thing into a model and making use of :SetPrimaryPartCFrame(). It's much simpler. Also, make sure you're using WeldConstraints and not Welds.