Thanks for the response. The p-values the reviewer is asking about would be more along the lines of regression p-values. I had originally conducted a separate CFA and then regression models to show which personality traits predicted a certain type of social comparison. The reviewers suggested that I switch to a SEM model instead of conducting separate analyses. The p-values the reviewers are asking about are the "regression" p-values within the SEM model.
My code is below if that helps, the p-values in question are for the last 2 lines of the model2 setup.
model2<-'
Ability =~ SCOS1 + SCOS2 + SCOS3 + SCOS4 + SCOS5 + SCOS6 + SCOS11
Opinion =~ SCOS7 + SCOS8 + SCOS9 + SCOS10
Ability ~ Opinion
Ability ~ Male + AGE + AGE2 + university + RewardInterest + RewardReactivity + GoalDrive + Impulse + BISSCORE + FFFS
Opinion ~ Male + AGE + AGE2 + university + RewardInterest + RewardReactivity + GoalDrive + Impulse + BISSCORE + FFFS
'
fit2 <- sem(model2, data=mydata2)
summary(fit2, standardized = FALSE, rsq = T)