Does TweenService not support NumberRange.new()?

Hi, I’m trying to use tween service to slowly bring a particle to life. For that, I’m using the lifetime and the timescale property of the particle emitter object and then tweening them to the goal. Im using this inside a module script so im not getting errors but here’s my code.

local SourceInfo = TweenInfo.new(
	3
)
local SourceProperties = {
	TimeScale = 1,
	Lifetime = NumberRange.new(3,3)
	
}
FireParticle.Lifetime = NumberRange.new(0,0)
FireParticle.TimeScale = 0
print("SCAMOSU(ASCMOCSMOK")
local FireTween = TweenService:Create(FireParticle, SourceInfo, SourceProperties)

thats it.
Am i doing something wrong or does roblox not support NumberRange.new() in tween service???

1 Like

You created the tween but did you play it?

Anyways according to documentation, no it shouldnt support number ranges

The types of properties that can be tweened are:

number
bool
CFrame
Rect
Color3
UDim
UDim2
Vector2
Vector2int16
Vector3
EnumItem

2 Likes

Thanks for assuring.
yes i played the tween.

Also the way i solved it was by using :GetPropertyChangedSignal() on timescale and then licked it to the lifetime.