Signals

You can enable signals by installing a signal library.

circle-info

Signal+arrow-up-right is highly recommended because it’s the best.

Make sure to tagarrow-up-right the module Signal.


Each tween will have the following signals:

  • Updated

  • Started

  • Stopped

  • Completed

Example usage:

local tween = Tween(workspace.Part, {Transparency = 1}, {Time = 2})
tween.Updated:Connect(function()
	-- Alpha is in the range 0-1, so we multiply by 100 to get the percentage.
	print("Progress: "..tween.Alpha*100.."%") -- For example "Progress: 50%".
end)
tween:Start()

Last updated