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.