of     1   

CUBES4LIFE
#159802104Thursday, April 09, 2015 11:21 PM GMT

I'm making a nice, short, basic intro gui and I want to employ TweenSize. I have made many intro guis before, but theyve all used TweenPosition. This is my first time using size and I already have an issue. When I run it, the frames don't smoothly get bigger, as they all start with a size of {0, 0, 0, 0}. What it looks like on my screen, is that I may as well have altered transparency from 1 to 0,a s there is no animation, it suddenly appears. Any help would be great. Thanks! wait(1) --// Variable Storage local lineOne = script.Parent.StepOne local lineTwoA = script.Parent.StepTwoA local lineTwoB = script.Parent.StepTwoB local lineThreeA = script.Parent.StepThreeA local lineThreeB = script.Parent.StepThreeB local text1 = script.Parent.Text1 local text2 = script.Parent.Text2 local text3 = script.Parent.Text3 local logo = script.Parent.Logo --// Logic lineOne:TweenSize(UDim2.new(0.15, 0, 0, 1), 'Out', 'Quint', .3, false) lineTwoA:TweenSize(UDim2.new(0, 1, 0.3, 0), 'Out', 'Quint', .3, true) lineTwoB:TweenSize(UDim2.new(0, 1, 0.3, 0), 'Out', 'Quint', .3, false) lineThreeA:TweenSize(UDim2.new(1, 0, 0, 1), 'Out', 'Quint', .3, true) lineThreeB:TweenSize(UDim2.new(1, 0, 0, 1), 'Out', 'Quint', .3, false)
bomblover
#159802383Thursday, April 09, 2015 11:24 PM GMT

You're using .3 e.e. .3 = how long it'll take for the GUI to reach the desired size
CUBES4LIFE
#159802508Thursday, April 09, 2015 11:26 PM GMT

I know, I've tried changing it to 10 too, still the same result.
bomblover
#159802567Thursday, April 09, 2015 11:26 PM GMT

Try using Quad.
Zawie
#159802568Thursday, April 09, 2015 11:26 PM GMT

lineOne:TweenSize(UDim2.new(0.15, 0, 0, 1), 'Out', 'Quint', .3, false) wait(.3) lineTwoA:TweenSize(UDim2.new(0, 1, 0.3, 0), 'Out', 'Quint', .3, true) wait(.3) lineTwoB:TweenSize(UDim2.new(0, 1, 0.3, 0), 'Out', 'Quint', .3, false) wait(.3) lineThreeA:TweenSize(UDim2.new(1, 0, 0, 1), 'Out', 'Quint', .3, true) wait(.3) lineThreeB:TweenSize(UDim2.new(1, 0, 0, 1), 'Out', 'Quint', .3, false) I don't know what your problem is but
Miro034
#159802727Thursday, April 09, 2015 11:28 PM GMT

I despise repeated lines. I'd rather use a table and use one line of TweenSize method.
CUBES4LIFE
#159804682Thursday, April 09, 2015 11:52 PM GMT

bump
CUBES4LIFE
#159807053Friday, April 10, 2015 12:21 AM GMT

bump
CUBES4LIFE
#159815164Friday, April 10, 2015 1:55 AM GMT

bump
CUBES4LIFE
#159833376Friday, April 10, 2015 6:59 AM GMT

bump
ash877
#159833625Friday, April 10, 2015 7:10 AM GMT

aren't they all getting tweened because Tweening doesn't wait for the code to run?
ash877
#159833643Friday, April 10, 2015 7:10 AM GMT

So that means they all come in together at the same time.
CUBES4LIFE
#159833657Friday, April 10, 2015 7:11 AM GMT

The issue isnt that though, its the fact that they all appear out of nowhere and there is no animation of them changing size. One second they're invisible and the next they're not.

    of     1