I want to create a TweenInfo with default properties except for delayTime, but would rather not retype all the defaults prior to it in the constructor list.
https://create.roblox.com/docs/reference/engine/datatypes/TweenInfo#DelayTime
TweenInfo.new(time: number,easingStyle: Enum.EasingStyle,easingDirection: Enum.EasingDirection,repeatCount: number,reverses: bool,delayTime: number)
Is it possible to do something like TweenInfo.new(delayTime = 1) instead of TweenInfo.new(1, Enum.EasingStyle.Quad, Enum.EasingDirection.Out, 0, false, 1)?