Roblox Studio Tool

Tween Generator

Configure the settings to instantly generate ready-to-use TweenInfo Lua code

Settings

Time (seconds)
EasingStyle
EasingDirection
RepeatCount
DelayTime (seconds)
tween.lua
local TweenService = game:GetService("TweenService")

local tweenInfo = TweenInfo.new(
    1,                           -- Time
    Enum.EasingStyle.Quad,       -- EasingStyle
    Enum.EasingDirection.Out,    -- EasingDirection
    0,                           -- RepeatCount
    false,                       -- Reverses
    0                            -- DelayTime
)