How to animate textLabel like here?

How should I animate label like here? I know I’ve to use tween, but I dont know how to make like in the video, can u tell me please

-- Service
local TS = game:GetService("TweenService")
-- Var
local Value = Instance.new("NumberValue")
local Button = Instance.new("TextButton")
-- Settings
local EXNormalSize = UDim2.new(0,150,0,50)
local EXImpactSize = UDim2.new(0,175,0,75)
-- Function
Value.Changed:Connect(function()
	Button.Size = EXImpactSize -- Impact
	TS:Create(Button, TweenInfo.new(0.25, Enum.EasingStyle.Cubic, Enum.EasingDirection.Out), {Size = EXImpactSize}):Play() -- Slowly comes to normal size 
end)

Something like that

2 Likes