Create folder if folder doesn't exist

It thought this was easy with Hazel but can not get it to work. It runs one time and that is it.
Goal:
Create new folder "output files" in "Downloads" when there is none.
Script:
If
Kind is Folder
Full Name is not "output files"
Do the following
Run Applescript
Goal:
Create new folder "output files" in "Downloads" when there is none.
Script:
If
Kind is Folder
Full Name is not "output files"
Do the following
Run Applescript
- Code: Select all
tell application "Finder"
set folderpath to "Harde schijf:Gebruikers:toothpaste:Downloads"
make new folder at folderpath with properties {name:"output files"}
end tell