Introduction

When you require the module, it'll return a function, which you can use to create tweens:

local Tween = require(script.TweenPlus)

local tween = Tween(
	workspace.Part, -- Instance to tween.
	{} -- Values to tween.
)

You simply input all the values you would like to tween:

local tween = Tween(
	workspace.Part,
	{
		Position = Vector3.new(0, 10, 0),
		Color = Color3.fromRGB(255, 255, 0)
		-- And as many more as you'd like.
	}
)

Last updated