Is there a bug in this script? script.Parent:TweenSizeAndPosition(UDim2.new(0,100,0,100),UDim2.new(0.5,0,0.25,0), "Out", "Bounce", 0.5, false, nil) output keeps saying "Players.Player1.PlayerGui.ScreenGui.TextButton.Script:2: attempt to call a userdata value"
You Cant Use "Out" and "Bounce" you have to use Enums.
Example:
TweenSizeAndPosition(UDim2.new(0, 300, 0, 150), UDim2.new(0.5, -150, 0.5, -75), Enum.EasingDirection.Out, Enum.EasingStyle.Quad, 1, true)