You could wrap this into it's own stored procedure but since it hasn't been a priority I just haven't. The usage for this script is just to change the variables @schemaName and @tableName at the top of the script. The table that is specified should have CDC enabled for all columns. The usage for the stored procedure that is generated is simply: Rollback_SchemaName_TableName @startTime, @endTime.
If either variables are sent as null then getdate() is used. So if you just want to rollback all transactions from a specific time to the present then you can leave @endTime null.
Let me know if there are any bugs in this script. This is my first submission and I am interested to see how it goes.