How To Tween Properties

I would like to know how to tween properties as for example a blur, I already know how to tween GUI position and size. I’ve tried to look on the wiki, but they explained how to do it a little bit too complicated. Could someone explain me how to do it?

Its the same for anything. First you put the instance, and then you put the properties that you want to be tweened.

TweenService:Create(game.Lighting.Blur, TweenInfo, {Size = 100})

Size is a property of blur, which is what we want to tween.

4 Likes