I have an Image that is set to a Transparency of 1 as default
I tween the image as follows:
info = TweenInfo.new(3, Enum.EasingStyle.Circular, Enum.EasingDirection.Out, 0, false, 0)
ptable = {ImageTransparency = 0.5}
imagetween = TweenService:Create(image, info, ptable)
imagetween:Play()
After that, I try to set the transparency manually with this:
if imagetween.PlaybackState == Enum.PlaybackState.Playing then
imagetween.PlaybackState = Enum.PlaybackState.Cancelled
end
image.Transparency = 1
Yet, the image doesnt change at all
Am I doing this correctly? Or should I try to approach this differently?
Any help is appreciated, thanks.