task.wait(2) local TweenService = game:GetService("TweenService") local part = script.Parent local goal = { Position = Vector3.new(-21.3, 5, -30.7), Size = Vector3.new(10, 10, 10) } local tweenInfo = TweenInfo.new( 5, Enum.EasingStyle.Cubic, Enum.EasingDirection.Out, 0, false, 0 ) local tween = TweenService:Create(part, tweenInfo, goal) tween:Play()