Do you want it to be a linear (i.e. every 100 points), exponential (i.e 100, 200, 400, 800 points, etc...) increase between power ups or do you want to use a list of values that you personally are picking arbitrary?
The Mod operator is your friend here...That's the '%' symbol.
Linear:
System -> Compare Variable Score > 0
System -> Compare Variable Score % 100 = 0
-- System -> Trigger Once While True
-- (Spawn your power up)
Exponential is a little more tricky:
Global Variable -> PowerUp = 1
System -> Compare Value Score > 0
System -> Compare Value Score %(PowerUp*100) = 0
-- System -> Trigger Once While True
-- System Add to PowerUp 1
-- (Spawn your power up)
And picking from a list is even more tricky if you aren't use to arrays.. You'll need an array object (we'll call it PowerUpArray):
System -> On Layout Start
--PowerUpArray Push Back 100 on X axis
--PowerUpArray Push Back 300 on X axis
--PowerUpArray Push Back 900 on X axis
--(Repeat until all are in the array
PowerUpArray -> Contains Score
-- System -> Trigger Once While True
-- (Spawn your power up)