Advertisement
Digitally_Neon

TEST

Sep 10th, 2019
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.13 KB | None | 0 0
  1. local ColorGet =
  2.         {
  3.             ["Very Red"] = Color3.fromRGB(255, 0, 0),
  4.             ["Red"] = Color3.fromRGB(200, 25, 25),
  5.             ["Very Blue"] = Color3.fromRGB(0, 0, 255),
  6.             ["Blue"] = Color3.fromRGB(25, 25, 200),
  7.             ["Very Green"] = Color3.fromRGB(0, 255, 0),
  8.             ["Green"] = Color3.fromRGB(25, 200, 25),
  9.             ["Very Yellow"] = Color3.fromRGB(255, 255, 0),
  10.             ["Yellow"] = Color3.fromRGB(255, 255, 102),
  11.             ["Pink"] = Color3.fromRGB(255, 0, 238),
  12.             ["Pinkish Purple"] = Color3.fromRGB(170, 0, 255),
  13.             ["Blueish Green"] = Color3.fromRGB(0, 255, 157),
  14.             ["Orange"] = Color3.fromRGB(255, 174, 0),
  15.             ["Fire Orange"] = Color3.fromRGB(255, 77, 0),
  16.             ["Red Pink"] = Color3.fromRGB(255, 0, 89),
  17.             ["Black"] = Color3.fromRGB(0, 0, 0),
  18.             ["White"] = Color3.fromRGB(205, 205, 205)
  19.         }
  20.        
  21. local TweenType =
  22.         {
  23.             ["Elastic"] = Enum.EasingStyle.Elastic,
  24.             ["Sine"] = Enum.EasingStyle.Sine,
  25.             ["Quad"] = Enum.EasingStyle.Quad,
  26.             ["Quint"] = Enum.EasingStyle.Quint,
  27.             ["Quart"] = Enum.EasingStyle.Quart,
  28.             ["Bounce"] = Enum.EasingStyle.Bounce,
  29.             ["Circular"] = Enum.EasingStyle.Circular,
  30.             ["Exponential"] = Enum.EasingStyle.Exponential
  31.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement