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

Playback and control

After creating a new tween, you can use the following methods:

Example:

local tween = TweenPlus(workspace.Part, {Transparency = 1}, {Time = 2})
tween:Start()
task.wait(1)
tween:Stop() -- Stop after 1 second of playback.
task.wait(1)
tween:Start() -- Resume after a 1 second pause.

PreviousUpdate-eventNextSignals

Last updated 1 month ago