#Is there a good format for setting up tweens

1 messages · Page 1 of 1 (latest)

bleak wing
#

I watched a youtube video explaining tween services but its a bit confusing still, is there like a template i can work with ?

velvet ledge
#
local tweenInfo = TweenInfo.new(
    2, -- Time
    Enum.EasingStyle.Linear, -- EasingStyle
    Enum.EasingDirection.Out, -- EasingDirection
    -1, -- RepeatCount (when less than zero the tween will loop indefinitely)
    true, -- Reverses (tween will reverse once reaching its goal)
    0 -- DelayTime
)