For the line of code to tween color, would be the following;
local TS = game:GetService("TweenService") -- grabs tween service.
local tweenInfo = TweenInfo.new(
.5, -- Whatever time you want.
Enum.EasingStyle.Sine, -- Any easing style.
Enum.EasingDirection.Out, -- Any easing direction.
0, -- How many times will it repeat
false, -- Reverse tween after finish
0 -- Delay count
)
local TweenColor = TS:Create(instance, tweenInfo, { ImageColor3 = Color3.new(0,0,0) }) -- Any color.
TweenColor:Play()
How would you make the color go up?
This is done via clip descendants, many of which I have done before.
The solution to this can be found on this forum. How I mask an image on top of another
Logo splitting and disappearing
You have 2 separate images, You just need to both tween rotation and positioning
to get that good effect. Just tween them both.
No, you won’t get copyrighted for copying the theme of a UI.
Although if you we’re to EXACTLY copy it, you can be called out for it and that
won’t be good for your reputation. Best to be inspired by it, but not to copy everything.
You have to put a UIGradient inside your logo and tween its offset , so it gives that effect.
Its most probably two different Images. You can use Bezier curve and lerping to smoothly make it travel in a curved path and tween its rotation the same time.
As long as you do not copy the UI design you are good to go.