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 3 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
3 years ago

here's how to make something rainbow:

while true do
    for i=0,1,.001 do
        yourthing.Color=Color3.fromHSV(i,1,1)
        wait() -- change number
    end
    for i=1,0,-.001 do
        yourthing.Color=Color3.fromHSV(i,1,1)
        wait() -- change number
    end
end
0
I know how to make a trail... subblox1234 9 — 3y
Ad

Answer this question