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

Attributes

PreviousIntroductionNextCustomization

Last updated 1 month ago

If you aren't already familiar with attributes, please check out .

Starting a value name off with @ will let Tween+ know that it's an attribute. Other than that they work the same as usual properties.

Example:

local tween = TweenPlus(
	workspace.Part,
	{
		Position = Vector3.new(0, 10, 0),
		Color = Color3.fromRGB(255, 255, 0),
		["@Coolness"] = 10 -- Attribute named 'Coolness'.
	}
)
Roblox's explanation