I haven't played this game for months, tried it now again and found a little problem on Jessica's "fake site". The videos button is only working on specific days and at any other time it just tells you that you're already a Patron.
The problem is that if none of the conditions in the section labeled JessVideos match, it'll just continue with the next label in the script, that just happens to be ProcessingPatreonship. There should be something there that brings you back to JessBlog before that.
@T4bbo
From what I can see, Patreonship can only be 0 or 1 (could actually be replaced with Boolean True|False), so I'm proposing a fix for it (the whole label) here that looks something like this:
(You should obviously modify it to match it to your current script you're working on, in case you've added something in there after v0.1.4. And change what MC thinks in case you don't like my added text there.)
This kind on cascaded conditions must always be "closed" by a condition that matches everything else that doesn't match conditions before it, so it won't continue with what comes next without doing anything - unless it's exactly what you want to happen. In this case I doubt that you want to disable the button the way it is right now.
And since all the conditions except when Patreonship == 0 end up with jumping back to the blog, why not just end the whole label with it and make the script a little shorter.
Kudos for you work!