Please my job depends on this ....

I need to write a script that will move files from a direcory to another directory, but only the files that are owned by a specific owner.

e.g. if seven files in a dir are owner by a user called 'budd' then move to a direcory called \budd. If not then leave alone.

Many Thanks

man find

find . -type f -user budd -exec mv {} path2BUDDdirectory \;

Budd, please read our rules and note:
(3) Refrain from idle chatter that does not contribute to the knowledge base.

"idle chatter" includes autobiographical data intended to imply that your particular problem is more deserving of an answer than someone else's. Please, in the future, simply pose your question.