Introduction
When you require the module, it will return a function, which you can use to create tweens. Example:
local tween = TweenPlus(
workspace.Part, -- Instance to tween.
{} -- Properties to tween.
)
You simply input all the properties you would like to tween, like so:
local tween = TweenPlus(
workspace.Part,
{
Position = Vector3.new(0, 10, 0),
Color = Color3.fromRGB(255, 255, 0)
-- And as many more as you'd like.
}
)
Last updated