Advertisement
4zx16

Rainbow Part

Dec 28th, 2021
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.40 KB | None | 0 0
  1. --[[
  2.  || 📜 AUTHOR: @4zx16 || RAINBOW PART
  3. ]]
  4. wait(1)
  5. while true do
  6.     local Tween = game:GetService('TweenService')
  7.    
  8.     Tween:Create(
  9.     script.Parent,TweenInfo.new(1,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut),
  10.     {Color = Color3.fromRGB(255, 0, 0)}):Play()
  11.     wait(1.1)
  12.  
  13.     Tween:Create(
  14.     script.Parent,TweenInfo.new(1,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut),
  15.     {Color = Color3.fromRGB(255, 155, 0)}):Play()
  16.     wait(1.1)
  17.  
  18.     Tween:Create(
  19.     script.Parent,TweenInfo.new(1,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut),
  20.     {Color = Color3.fromRGB(255, 255, 0)}):Play()
  21.     wait(1.1)
  22.  
  23.     Tween:Create(
  24.     script.Parent,TweenInfo.new(1,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut),
  25.     {Color = Color3.fromRGB(0, 255, 0)}):Play()
  26.     wait(1.1)
  27.  
  28.     Tween:Create(
  29.     script.Parent,TweenInfo.new(1,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut),
  30.     {Color = Color3.fromRGB(0, 255, 255)}):Play()
  31.     wait(1.1)
  32.  
  33.     Tween:Create(
  34.     script.Parent,TweenInfo.new(1,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut),
  35.     {Color = Color3.fromRGB(0, 155, 255)}):Play()
  36.     wait(1.1)
  37.  
  38.     Tween:Create(
  39.     script.Parent,TweenInfo.new(1,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut),
  40.     {Color = Color3.fromRGB(255, 0, 255)}):Play()
  41.     wait(1.1)
  42.  
  43.     Tween:Create(
  44.     script.Parent,TweenInfo.new(1,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut),
  45.     {Color = Color3.fromRGB(255, 0, 155)}):Play()
  46.     wait(1.1)
  47. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement