How do I get the text to tween correctly?
I have a title text that always appears at the bottom of the screen. I can't seem to bring it down any lower so I disable it, and script it to enable. Then, after that, I put in a tweening code, and all of a sudden, none of the code works at all
02 | local parent = script.Parent |
03 | local tweenService = game:GetService( "TweenService" ) |
04 | local tweeningInformation = TweenInfo.new( |
06 | Enum.EasingStyle.Bounce, |
07 | Enum.EasingDirection.In, |
13 | local partProperties = ( |
14 | Size = Vector 3. new( 433 , 73 , 0 ) |
15 | Color = Color 3. new( 255 , 255 , 255 ) |
18 | local Tween = tweenService:Create(part,tweeningInformation,partProperties) |
This is the code I have in. Is there something wrong with the code?