Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I make a rainbow chat tag when someone owns a gamepass?

Asked by 4 years ago

Well I have tried making and searching online on how to make a rainbow chat tag when someone owns a gamepass but nothing has came up so if someone has a script it would be very helpful!

1 answer

Log in to vote
0
Answered by
0hsa 193
4 years ago

here's how to make something rainbow:

01while true do
02    for i=0,1,.001 do
03        yourthing.Color=Color3.fromHSV(i,1,1)
04        wait() -- change number
05    end
06    for i=1,0,-.001 do
07        yourthing.Color=Color3.fromHSV(i,1,1)
08        wait() -- change number
09    end
10end
0
I know how to make a trail... subblox1234 9 — 4y
Ad

Answer this question