I started experimenting with it and did something like this:
game.Workspace.Part.Rotation.new = (0,10,0)
It did not do anything, and I am confused? Please help?
Rotation is a property of BasePart, new is not a member of it. You're also trying to set one value to three variables when Rotation has to be a Vector3.
Rotation
new
workspace.Part.Rotation=Vector3.new(0,10,0)