Unable to change particle properties

Hey there! I am currently experiencing an issue where I am unable to tween a particle’s transparency. I am unsure how to do it and as a result, I get an error saying

Error: TweenService:Create property named ‘Transparency’ on object ‘Flame’ is not a data type that can be tweened.

Code:

				heartbeatSpawn(function()
								if v.model.Outer then
									for p1, p2 in ipairs(v.model.Outer:GetChildren()) do
										tween2 = tweenservice:Create(p2, TweenInfo.new(0.5), {Transparency = 1}):Play()
									end
								end
							end)

The current transparency of the particle before its about to get tweened is 1 number: 0.3. Idk what to do ://.

I don’t think it’s possible to tween a particles transparency for whatever weird reason, what I do is de-activate the particle then destroy it if it’s not needed.

1 Like

oh ok Ima try that ty. (((((((((