Describe the issue briefly
mageTransparency of ImageLabel and TextTransparency of TextLabel under BillboardGui are not affected by TweenService.
Specifically, there are no intermediate values.
(Example log values are 0,0,0…1)
Environment
Studio 1.7.1
Expected Result
Transparency should interpolate smoothly when using TweenService.
Error Log
local text = damagePart.BillboardGui.TextLabel
local TweenService = game:GetService(“TweenService”)
local tweenInfo = TweenInfo.new(5, Enum.EasingStyle.Linear, Enum.EasingDirection.In)
local textTween = TweenService:Create(text, tweenInfo, { TextTransparency = 1 })
Workaround Solution
Control transparency manually using RunService or coroutine