I have this script in my game:
Welded_Vest.C0.Position = Vector3.new(0, 0.2, 0)
when i try to change the position of the weld it gives me this in console:
Can someone please explain to me why this happens?
I have this script in my game:
Welded_Vest.C0.Position = Vector3.new(0, 0.2, 0)
when i try to change the position of the weld it gives me this in console:
Can someone please explain to me why this happens?
Do this instead:
Welded_Vest.C0 = CFrame.new(0, 0.2, 0)
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.