of     1   

zaniac10
#155806101Thursday, February 12, 2015 9:41 AM GMT

if script.Parent.Rotation >= 3 then end output: Workspace.Part.Script:8: attempt to compare userdata with number +Part ++Script
darkemosoul
#155806265Thursday, February 12, 2015 9:54 AM GMT

After looking up the class properties of "Part", the Rotation property returns a Vector3 and your comparing that to a number.
drager980
#155806971Thursday, February 12, 2015 10:50 AM GMT

rotation is a vector3 meaning if you wanted to check it you'd do something like: if workspace.Part.Rotation >= Vector3.new(0,180,0) then alternatively, you can make the statement based on a specific axis of rotation (x,y or z) if workspace.Part.Rotation.Y >= 180 then and so on
zaniac10
#155807404Thursday, February 12, 2015 11:17 AM GMT

if script.Parent.Rotation <= Vector3.new(-87,0,0) then end same output ;/
championbuilder
#155813936Thursday, February 12, 2015 4:31 PM GMT

if script.Parent.Rotation.X <= 0 then print("Minus X Rotation") else print("Positive X Rotation") end
Aesthetical
#155814342Thursday, February 12, 2015 4:46 PM GMT

A vector3 can't be "bigger than" another vector3-- they're positions! What exactly are you trying to do?
zaniac10
#155839023Friday, February 13, 2015 12:37 AM GMT

trying to make it so a missile will stop going if it's facing -90 degrees down rather than it going in circles

    of     1