Skip to content

Makes tweening quick and easy by creating and automatically destroying tweens when they are done.

Notifications You must be signed in to change notification settings

arxkdev/QuickTween

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

QuickTween

Exactly like using a Tween from TweenService, but it automatically destroys the tween when it is done.

Usage

local QuickTween = require(...);
QuickTween(Instance, TweenInfo, Properties);

Example

local QuickTween = require(...);

local Part = ...;
local Info = TweenInfo.new(1, Enum.EasingStyle.Linear, Enum.EasingDirection.Out, 0, false, 0);

QuickTween(Part, Info, {
    CFrame = CFrame.new(0, 0, 0),
    Size = Vector3.new(100, 100, 100),
});

About

Makes tweening quick and easy by creating and automatically destroying tweens when they are done.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages