Create folder in Destination from file/folder in source

Hello everyone,

In a dual lister, this script worked flawlessly creating a new folder in Destination, but now it keeps creating the folder in the source. I'm assuming that something changed within DO since I have version 11.3 installed. Can someone please tell how I can fix this script to it works correctly?

Any help would be appreciated.

clipboard COPYNAMES=nopaths REGEXP "^(\w+)\W+(\w+)" "\1"
Set STATE=Dest
CreateFolder FROMCLIPBOARD READAUTO=tab

Try this

clipboard COPYNAMES=nopaths REGEXP "^(\w+)\W+(\w+)" "\1" Set SOURCE=toggle CreateFolder FROMCLIPBOARD READAUTO=tab

It works! Thank you.