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???