Maybe this is what you want~
Instance Variable for the objects you want to scale:
// Scale speed. Lower value = Faster scale.
// Using power of 2 value for suggestion.
var scaleRate = 64
Every tick:
Set objects size to:
X = self.Width + (self.Width / scaleRate)
Y = self.Height + (self.Height / scaleRate)