Quit OBS via AppleScript?

Drake__archer

New Member
I'm trying to make an AppleScript that can quit/close OBS, but it doesn't seem to work. I've tried replacing "OBS" in the script with other apps in my Applications folder, and they all work fine.

Any help would be greatly appreciated!
 
Post the script you wrote here for us too it what is going on.

A simple script like this could work
tell application "Preview"
quit
end tell
 
Top