The text buttons size is not changing hovered over. ```lua
local TweenService = game:GetService("TweenService")
local button = script.Parent
local Camera = workspace.CurrentCamera
local plr = game.Players.LocalPlayer
local char = plr.Character
local hum = char.Humanoid
local initialSize = button.Size
local tweenInfo = TweenInfo.new(0.35, Enum.EasingStyle.Quad)
local description = button.Description
-- Now Let's program the button!
button.MouseEnter:Connect(function()
TweenService:Create(description, tweenInfo, {TextTransparency = 0}):Play()
print(button.Size)
button:TweenSize(initialSize + UDim2.new(0, 0, 0, 40), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 0.1, true)
end)
button.MouseLeave:Connect(function()
TweenService:Create(description, tweenInfo, {TextTransparency = 1}):Play()
button:TweenSize(initialSize, Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 0.1, true)
end)
button.MouseButton1Click:Connect(function()
Camera.CameraSubject = hum
Camera.CameraType = Enum.CameraType.Custom
button:Destroy()
warn("MainMenuDestroyed")
end)```