Gradient transparency fade out effect
UI Gradients don’t have that option, you will need a form of overlay. They most likely have a large donut shape that they zoom out or something, you can’t really do this purely with roblox tools. I would recommend attempting to manually create the effect with a plugin: [Plugin] Gradientifier, then use code to automate the process between two frames.
2 Likes
I tried but maybe the plugin is not for sale anymore. Is there another way?
I fixed this problem like this.
-
make circle gradient image with figma.
(RGB 0% is 1 transparency in roblox) -
And put image to image label in roblox studio
(Set Background transparency to 1, size to 1, 0, 1, 0 and anchor point to 0.5, 0.5) -
Put this code
local TweenService = game:GetService("TweenService")
local gradientImage = script.Parent
local tween = TweenService:Create(gradientImage, TweenInfo.new(2), {Size = UDim2.new(200, 0, 200, 0)}) --You can change tweeninfo and size
tween:Play()