Cool UI Border Animation Tutorial (Roblox Studio)
in this video I'm going to show you how to make cool UI border animation step by step I hope you enjoy!
__________________________________________________________________
script:
local Uigradient = script.Parent.UIStroke.UIGradient
local runService = game:GetService("RunService")
runService.RenderStepped:Connect(function()
Uigradient.Rotation += 2 --Enter the number you want here
end)
__________________________________________________________________
Script also in the comments