Advertisement
4zx16

Rainbow Background (GUI) (1)

Dec 28th, 2021 (edited)
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.82 KB | None | 0 0
  1. --[[
  2.  || 📜 AUTHOR: @4zx16 || RAINBOW BACKGROUND (GUI) (1)
  3. ]]
  4. while true do
  5.     local Background = script.Parent
  6.    
  7.     Background.BackgroundColor3 = Color3.fromRGB(157, 255, 198)
  8.     wait(0.1)
  9.     Background.BackgroundColor3 = Color3.fromRGB(108, 255, 243)
  10.     wait(0.1)
  11.     Background.BackgroundColor3 = Color3.fromRGB(103, 169, 255)
  12.     wait(0.1)
  13.     Background.BackgroundColor3 = Color3.fromRGB(123, 97, 255)
  14.     wait(0.1)
  15.     Background.BackgroundColor3 = Color3.fromRGB(214, 90, 255)
  16.     wait(0.1)
  17.     Background.BackgroundColor3 = Color3.fromRGB(255, 87, 205)
  18.     wait(0.1)
  19.     Background.BackgroundColor3 = Color3.fromRGB(255, 80, 83)
  20.     wait(0.1)
  21.     Background.BackgroundColor3 = Color3.fromRGB(255, 138, 84)
  22.     wait(0.1)
  23.     Background.BackgroundColor3 = Color3.fromRGB(255, 235, 83)
  24.     wait(0.1)
  25.     Background.BackgroundColor3 = Color3.fromRGB(255, 235, 83)
  26. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement