How do I tween a Numbersequence?

I want to tween it to transparency 0, how do i do that?

local tween2 = TweenService:Create(game.Workspace.Bomb.Main.Flash1.Transparency, TweenInfo.new(time2), {Transparency = NumberSequence.new(0)})```

Took me 5 mins to search take a look at this post!

Seems like tweenservice doesnt support NumberSequence

local tween2 = TweenService:Create(game.Workspace.Bomb.Main.Flash1, TweenInfo.new(time2), {Transparency = 0})

no NumberSequence needed, and you donā€™t need to direct to an instanceā€™s property, just the instance itself

2 Likes

TweenService:Create property named ā€˜Transparencyā€™ on object ā€˜Effect1ā€™ is not a data type that can be tweened.