Simple question about BaseTweens

I’ve read the docs before, but i want to make sure about 1 thing, i know the completed event of tween will get fired once the tween gets cancelled using :Cancel() or when it gets finished, but i want to know if it gets fired using :Pause() or not as well.

Well test it out??

But the answer is no, it wont get fired, I guess if the docs don’t mention it, then it doesn’t work.

Tested this out:

local part = workspace.Part
local ts = game:GetService("TweenService")
local ti = TweenInfo.new(20)

local T = ts:Create(part, ti, {Position = part.Position + Vector3.new(0, 100,0)})

T:Play()

T.Completed:Connect(function()
	print("Tween Finished")
end)

task.wait(3)

T:Pause()--Doesnt print "Tween Finished"

I wanted to know this, since i have a function for my notification module that if the notification frame goes outside of the screen then the (duration script, tweens) will not run until it comes inside, anyway thanks for replying.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.