@JMark515 I am not immediately familiar with the exact challenge you are looking at. Would you paste the link to it in your reply? From your screenshot though, it looks like you have your button connected in correctly for one thing.
First, the button click should call the execute method of the automation in your first screenshot. Second, that button click does nothing really if the home page is created (IsCreated = true). It simply jump to success and ends the automation. I suspect you are missing some logic there to perform further steps. Third, if your home page is not created (IsCreated=false), you are checking to see if the application is running. Is it is, then you are trying to start it again. In this case, I would have to look at the challenge to see exactly what you are supposed to do, but you only want to start the application if IsRunning is false. I suspect you just have that logic reversed.