Hi I was trying to make a part transparent smoothly with TweenService, but I didn’t find anything talking about using TweenService in part transparency!
Someone can help me?
Hi I was trying to make a part transparent smoothly with TweenService, but I didn’t find anything talking about using TweenService in part transparency!
Someone can help me?
Try this script out:
local TweenService = game:GetService("TweenService")
local part = workspace.Part
TweenService:Create(part,TweenInfo.new(3),{Transparency = 1}):Play()