So I'm wanting to create a Shop Gui and I want to title so fade through the rainbow. All help is appreciated. All links to Wiki articles are welcome too. I don't need anyone to make one for me, I just would like some guidance. Thanks.
A very easy way to make a rainbow effect is to use Color3.fromHSV. An example of it is below.
local SECONDS_PER_LOOP = 5 while true do Thing.TextColor3 = Color3.fromHSV((tick()/SECONDS_PER_LOOP)%1,1,1) wait() end
Insert a script into the text (i guess)
Try using a loop,for example:while true do,while wait do.
.then,use Color3.new()
thats the best i can do,if theres any errors,tell me so i can change them
.