https://www.youtube.com/watch?v=XgOov36UzjQ I want to replicate this color animation into roblox but instead of the colors going down they go around a square i hope this is clear, i’d probably have to tween some ui gradients or something but if anyone has any ideas then thanks
1 Like
i just rewatched the video and at the beginning of it where you see ‘disclaimer’ and you see the red going around the square thats exactly what i want
1 Like
Yes, you can do this if you add a UIGradient inside a UIStroke, tween the Offset and you should get the effect you want (i could provide a clip but i cannot do this right now)
2 Likes
game:GetService("TweenService"):Create(script.Parent.UIStroke.UIGradient, TweenInfo.new(4, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut, -1, true), {Offset = Vector2.new(1, 0)}):Play()
i wrote this and i made the offset of the uigradient to -1, 0 and made the rotation to -45 but the first color comes out from the corner and goes out in 2 directions instead of going 1 direction in a circular motion around the square
1 Like
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.