Your post states you want a slow changing dimension type 0. My understanding is that SCD0 just means you retain the original definition of a row and never update it or set an end date to it. If that's the case, then why use a Slow Changing Dimension wizard at all? Wouldn't you just make your ETL be insert where not exists? Or do you mean that some of the columns will be retained as the original value and you will use higher order types for other columns?
For instance, maybe you have a source table with ProductId, ProductName, and ProductDescription. Perhaps you want to retain ProductId as it is your key and the original ProductName but you want to show newer ProductDescription values. If that's the case, you could either overwrite ProductDescription with new values and leave the other columns alone (Type 1), or you could set an end date for your current row and create a new row but inset the original ProductId and ProductName (Type 2), or you could include a PreviousProductDescription in your new row while retaining the original ProductName (Type 3).