Introduction
local Tween = require(script.TweenPlus)
local tween = Tween(
workspace.Part, -- Instance to tween.
{} -- Values 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