How would I tween text size?

Hey, I’m making a loading screen/intro, and I want my text to tween to textsize 17 - 20, but there is no option to tween text size, how would I do this?

Use TweenService.

local TweenService = game:GetService("TweenService")

local tween = TweenService:Create(
    textLabel,
    TweenInfo.new(1),
    {TextSize = 20}
)

tween:Play()
1 Like