Advertisement
4zx16

Rainbow Text (GUI)

Dec 28th, 2021 (edited)
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.01 KB | None | 0 0
  1. --[[
  2.  || 📜 AUTHOR: @4zx16 || RAINBOW TEXT (GUI)
  3. ]]
  4. while wait() do
  5.     local Text = script.Parent
  6.     local RS = game:GetService('RunService')
  7.    
  8.     for i = 1,15 do
  9.         RS.RenderStepped:Wait()
  10.         Text.TextColor3 = Color3.new(Text.TextColor3.r,Text.TextColor3.g+(17/255),Text.TextColor3.b)
  11.     end
  12.     for i = 1,15 do
  13.         RS.RenderStepped:Wait()
  14.         Text.TextColor3 = Color3.new(Text.TextColor3.r-(17/255),Text.TextColor3.g,Text.TextColor3.b)
  15.     end
  16.     for i = 1,15 do
  17.         RS.RenderStepped:Wait()
  18.         Text.TextColor3 = Color3.new(Text.TextColor3.r,Text.TextColor3.g,Text.TextColor3.b+(17/255))
  19.     end
  20.     for i = 1,15 do
  21.         RS.RenderStepped:Wait()
  22.         Text.TextColor3 = Color3.new(Text.TextColor3.r,Text.TextColor3.g-(17/255),Text.TextColor3.b)
  23.     end
  24.     for i = 1,15 do
  25.         RS.RenderStepped:Wait()
  26.         Text.TextColor3 = Color3.new(Text.TextColor3.r+(17/255),Text.TextColor3.g,Text.TextColor3.b)
  27.     end
  28.     for i = 1,15 do
  29.         RS.RenderStepped:Wait()
  30.         Text.TextColor3 = Color3.new(Text.TextColor3.r,Text.TextColor3.g,Text.TextColor3.b-(17/255))
  31.     end
  32. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement