Tween+
DevForum Topic
  • Welcome
  • Installation
  • Creation
    • Introduction
    • Attributes
  • Customization
    • FPS
    • Update-event
  • Usage
    • Playback and control
    • Signals
Powered by GitBook
On this page

Customization

PreviousAttributesNextFPS

Last updated 1 month ago

The customization works with a table, where you can provide any customizations you want. You don’t have to provide all, or even any, because they all have defaults.

You use it like this:

local tween = TweenPlus(
	workspace.Part,
	{
		Position = Vector3.new(0, 10, 0),
		Color = Color3.fromRGB(255, 255, 0)
	},
	{ -- Customization (optional).
		Time = 10,
		EasingStyle = "Sine",
		EasingDirection = "InOut"
	}
)
Customization options