Advertisement
Savekiki

สคริปความถ่วนเเละจีตประสงค์

May 2nd, 2022
984
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. r = 255
  2. g = 0
  3. b = 0
  4.  
  5. while true do
  6.     wait(0.005)
  7.    
  8.     while (r == 255 and g ~= 255) do
  9.     wait(0.005)
  10.     g = g + 1
  11.     script.Parent.Color = Color3.fromRGB(r,g,b)
  12.     end
  13.     wait(0.005)
  14.     r = r - 1
  15.     script.Parent.Color = Color3.fromRGB(r,g,b)
  16.     while (r ~= 0) do
  17.     wait(0.005)
  18.     r = r - 1
  19.     script.Parent.Color = Color3.fromRGB(r,g,b)
  20.     end
  21.  
  22.     while (g == 255 and b ~= 255) do
  23.     wait(0.005)
  24.     b = b + 1
  25.     script.Parent.Color = Color3.fromRGB(r,g,b)
  26.     end
  27.     wait(0.005)
  28.     g = g - 1
  29.     script.Parent.Color = Color3.fromRGB(r,g,b)
  30.     while (g ~= 0) do
  31.     wait(0.005)
  32.     g = g - 1
  33.     script.Parent.Color = Color3.fromRGB(r,g,b)
  34.     end
  35.    
  36.     while (b == 255 and r ~= 255) do
  37.     wait(0.005)
  38.     r = r + 1
  39.     script.Parent.Color = Color3.fromRGB(r,g,b)
  40.     end
  41.     wait(0.005)
  42.     b = b - 1
  43.     script.Parent.Color = Color3.fromRGB(r,g,b)
  44.     while (b ~= 0) do
  45.     wait(0.005)
  46.     b = b - 1
  47.     script.Parent.Color = Color3.fromRGB(r,g,b)
  48.     end
  49.    
  50. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement