Conditions:
compare variable: score>0
compare two values: score%5=0
Actions:
Create object
Explanation: the "%" sign is for modulo, or the remainder after division. If the score is a multiple of by 5 this operation will return 0. You also need a second condition so that this action does not run when score is equal to 0 as 0%5 will also give 0.