21/08/06 How to Use Tweens and TweenService - Roblox Studio Tutorial
https://youtu.be/bcMZmwZGK-o - Transparency ``` local part = script.Parent local TweenService = game:GetService("TweenService") local tweenInfo = TweenInfo.new( 5, --Time Enum.EasingStyle.Linear, --Easing Style Enum.EasingDirection.Out, --EasingDirection -1, --Repeat Count true, --Reverse 0 --DelayTime ) local tween = TweenService:Create(part, tweenInfo, {Transparency = 1}) tween:Play() ``` - Co..