So I made this Plane and I put a script inside the propellars that make them spin but when I do play mode this happens
any idea?
here's the rotation script
while wait(0.1) do script.Parent.Rotation = script.Parent.Rotation +Vector3.new(10, 0, 0) end
Try this.
while wait(0.1) do script.Parent.CFrame = CFrame.Angles(math.rad(10),0,0) end
Hope it works.