Hi, I’m trying to change how this part growing; simply wanna make it like this
from >>> to this <<<
What i want to achieve is the part would grow in this position
but what happen is this
script
local TweenService = game:GetService("TweenService")
wait(10)
local Info = TweenInfo.new(1, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut)
local Size = {
Position = Vector3.new(script.Parent.CFrame.X + 7.5, script.Parent.CFrame.Y , script.Parent.CFrame.Z),
Size = Vector3.new(16, 20, 22)
}
TweenService:Create(script.Parent, Info ,Size):Play()
wait(1)
local Info = TweenInfo.new(1, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut)
local Size = {
Position = Vector3.new(script.Parent.CFrame.X- 7.5, script.Parent.CFrame.Y, script.Parent.CFrame.Z),
Size = Vector3.new(1, 20, 22),
}
TweenService:Create(script.Parent, Info ,Size):Play()