How to make Gui Shine effect?

Hi Developers!

i am trying to make Gui Shine effect like

Shop gui in this game

https://www.roblox.com/games/5306244457/WIZARD-Tapping-Masters

Stats indicators in this game

https://www.roblox.com/games/5291924966/NEW-EGG-Tapping-Legends

My made verison is not good its simple tweening with frames.

Thanks.

Hi, your question needs to be more specific. Please leave screenshot and pin point what you desire, only then will we have context to help you out.

Here a topic about 4 UIGradient Animations (Including Rainbow!)

2 Likes

To answer your question about the Tapping Legends button effect. You can always use a GUI gradient and paste this code into a local script. Just make sure you make a variable for the gradient. You can also make it slower or faster by changing the wait values or the +1 to anything.

while true do
repeat
Gradient.Rotation = Gradient.Rotation +1
wait(0.05)
until Gradient.Rotation >= 360
wait(0.05)
Gradient.Rotation = 0
end

1 Like