Using arrow keys for incremental movement

Hello!
I am new to professionally using roblox studio for modelling and was wondering if there was an unknown feature I could enable that would allow you to use arrow keys to, move the part 0.01 studs to their respective side of the arrow key on a part similar to other game editors for precise movement. I know about changing the studs on the top but it really is a hassle to change it each time you want to do a tiny movement.

If not would there be a plugin for it as it would really make development alot more easier and less labour intensive, thank you

First thing jump in my head is by typing a short script into command bar like this “workspace.Part.Position += Vector3.new(0.1 , 0 , 0)” and manipulate the parameters to fit your needs. Then hitting enter key again and again.
Hope that helps you.