How to update orientation using addition of values to existing orientation

Basically, I’m trying to update the orientation by a certain value in a part and have corrected myself using the output as a small guide but nothing is working. I’ve tried using vector3 like the output suggested but its not updating the position at all, and weirder enough there is no error message, either. Here’s the code of the issue:

while true do
wait (0.1)
script.parent.Orientation = Vector3.new(script.Parent.Orientation + Vector3.new(1,0,0))
end

If anyone could help correct me it would be appreciated

Try your code without creating a new vector3 as this:
script.Parent.Orientation + Vector3.new(1,0,0)
is already giving you a new vector3 ( i.e you are putting a vector3 in a vector3)

Do this:

while true do
	script.Parent.Orientation = script.Parent.Orientation + Vector3.new(1,0,0)
	wait(0.1)
end

It adds a Vector3.new(1,0,0) to the part’s current orientation.