Error with AppleScript to Press Keys

I'm trying to replicate pressing "⌘⌃⌥C" on the keyboard (ignoring the quotation marks) via the following embedded AppleScript, with the trigger being a certain kind of file being added to a folder...
However, I'm receiving an error message from Hazel when I attempt to run this. Any advice on what I might be doing wrong?
- Code: Select all
tell application "System Events"
keystroke "c" using {control down, option down, command down}
end tell
However, I'm receiving an error message from Hazel when I attempt to run this. Any advice on what I might be doing wrong?