TweenService:Create property named 'Transparency' on object 'Beam' is not a data type that can be tweened

I’m trying to tween the transparency of a Beam object, but it seems like it cannot be tweened as it is a NumberSequence. Is there any workaround for this?

3 Likes

Instead of tweening the properties of the Beam directly, try tweening the properties of a NumberValue. Connect to the value of the NumberValue with GetPropertyChangedSignal and use that value to update the Beam’s transparency.

Example:
TweenBeamTransparency.rbxl (14.6 KB)

Not sure how efficient/inefficient this is, but it works. :^)

15 Likes