(I don’t know whether to put this in building support or scripting support)
I am trying to make this cylinder rotate with the neon rectangle welded to it. I am using a weld constraint to attach these two together.
The rectangle is not anchored but the cylinder is. Here is a video of the weird behavior
I tried anchoring the rectangle, but the rectangle doesn’t move anymore.
If it helps, this is the script used to rotate the cylinder.
while true do
script.Parent.RotVelocity = Vector3.new(0,3,0)
script.Parent.CFrame = script.Parent.CFrame * CFrame.fromEulerAnglesXYZ(3,0,0)
wait(0.1)
end
Thanks