question: Can somebody please help! when the Tween gets bigger i want it to stay like that for 3 seconds then it will go back how do i fix this?
this is my script:
local TweenService = game:GetService("TweenService") local Grow = script.Parent
local Info = TweenInfo.new( 0.5, ---Length
Enum.EasingStyle.Sine, ----easingstyle Enum.EasingDirection.Out, ----e.d 0, -----repeat true, ---reverse 2
)
local Goals = { Size = Vector3.new(6,6,6);
}
local makePartBiggerTween = TweenService:Create(Grow, Info, Goals)
wait(10) makePartBiggerTween:Play()
You can wait after makePartBiggerTween is finished playing and then make the same Tween with a smaller size. After your code add
wait(3.5) -- 3 seconds plus the 0.5 seconds for the makePartBiggerTween TweenService:Create(Grow,Info, {Size = Vector3.new(3,3,3):Play() -- The same as makePartBigger except we are shrinking it. You can change the size to however small u want it to be