Advertisement
naruto9161

Untitled

May 8th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 133.16 KB | None | 0 0
  1. local start = tick()
  2. local VERSION = "3.0.3"
  3. local message = [[We're back! https://discord.me/rosehub]]
  4. print'Rose Hub process started.'
  5. local coreGui = game:GetService("CoreGui")
  6. local tweening = false
  7. local scriptsTabText = ""
  8. local feTabText = ""
  9. local gameScriptsTabText = ""
  10. local guiTabText = ""
  11. local darkBack = false
  12. local lightBack = true
  13. local tweenService = game:GetService("TweenService")
  14. local tweenSpeed = 0.70
  15. local colorPickerOpen = false
  16. local backColor = Color3.fromRGB(255, 255, 255)
  17. local lightColor = Color3.fromRGB(255, 255, 255)
  18. local darkColor = Color3.fromRGB(150, 150, 150)
  19. local textColor = Color3.fromRGB(255, 255, 255)
  20. local httpService = game:GetService("HttpService")
  21. local savingSettings = false
  22. local mainSettings = nil
  23. local lighting = game:GetService("Lighting")
  24. local workspace = game:GetService("Workspace")
  25. local chat = game:GetService("Chat")
  26. local delete = {"RoseHub", "Introooo", "ColorPick"}
  27.  
  28. function FindTable(Table, Name)
  29. for i,v in pairs(Table) do
  30. if v == Name then
  31. return true
  32. end end
  33. return false
  34. end
  35.  
  36. for i,v in pairs(coreGui:GetDescendants()) do
  37. if v:IsA("ScreenGui") then
  38. if FindTable(delete, v.Name) then
  39. v:Destroy()
  40. end
  41. end
  42. end
  43.  
  44. local defaultSettings = {
  45. ["BackgroundColorR"] = 59,
  46. ["BackgroundColorG"] = 59,
  47. ["BackgroundColorB"] = 59,
  48. ["PickerColorR"] = 59,
  49. ["PickerColorG"] = 59,
  50. ["PickerColorB"] = 59,
  51. ["ChangePickerBackground"] = true,
  52. ["Transparency"] = 0.7,
  53. ["RainbowOn"] = false,
  54. ["RainbowSpeed"] = 75,
  55. }
  56.  
  57. local function round(num)
  58. return math.floor(num * 10^3 + 0.5) / 10^3
  59. end
  60.  
  61. if writefile and readfile and pcall(function() readfile("RoseHubSettings.txt") end) then
  62. local file = readfile("RoseHubSettings.txt")
  63. local continue = true
  64. local write = false
  65. if pcall(function() httpService:JSONDecode(file) end) then
  66. file = httpService:JSONDecode(readfile("RoseHubSettings.txt"))
  67. mainSettings = file
  68. else
  69. mainSettings = defaultSettings
  70. writefile("RoseHubSettings.txt", httpService:JSONEncode(defaultSettings))
  71. warn("Settings file corrupted, creating new.")
  72. continue = false
  73. end
  74. if continue then
  75. for setting,value in pairs(defaultSettings) do
  76. if file[setting] == nil then
  77. writefile("RoseHubSettings.txt", httpService:JSONEncode(defaultSettings))
  78. warn(setting.." is missing, setting to default.")
  79. file[setting] = defaultSettings[setting]
  80. write = true
  81. elseif file[setting] ~= nil then
  82. if type(file[setting]) ~= type(defaultSettings[setting]) then
  83. warn(setting.." is invalid, overwriting.")
  84. write = true
  85. file[setting] = defaultSettings[setting]
  86. end
  87. end
  88. end
  89. if write == true then
  90. warn("Fixing settings file.")
  91. mainSettings = file
  92. writefile("RoseHubSettings.txt", httpService:JSONEncode(mainSettings))
  93. write = false
  94. end
  95. end
  96. else
  97. mainSettings = defaultSettings
  98. if writefile then
  99. warn("Rose Hub settings missing, creating new.")
  100. writefile("RoseHubSettings.txt", httpService:JSONEncode(defaultSettings))
  101. end
  102. end
  103.  
  104. local savedColor = Color3.fromRGB(mainSettings.BackgroundColorR, mainSettings.BackgroundColorG, mainSettings.BackgroundColorB)
  105. local mainTransparency = mainSettings.Transparency
  106. local enableRainbow = mainSettings.RainbowOn
  107. local rainbowCount = mainSettings.RainbowSpeed
  108. local mainTrans = mainSettings.Transparency
  109. local changeColorPickerBack = mainSettings.ChangePickerBackground
  110. local colorPickerBack = Color3.fromRGB(mainSettings.PickerColorR, mainSettings.PickerColorG, mainSettings.PickerColorB)
  111.  
  112. local function saveSetting(backColor, pickerColor, changeBack, tranparency, rainbowOn, rainbowSpeed)
  113. local settingsTab = {
  114. ["BackgroundColorR"] = round(backColor.r*255),
  115. ["BackgroundColorG"] = round(backColor.g*255),
  116. ["BackgroundColorB"] = round(backColor.b*255),
  117. ["PickerColorR"] = round(pickerColor.r*255),
  118. ["PickerColorG"] = round(pickerColor.g*255),
  119. ["PickerColorB"] = round(pickerColor.b*255),
  120. ["ChangePickerBackground"] = changeBack,
  121. ["Transparency"] = round(tranparency),
  122. ["RainbowOn"] = rainbowOn,
  123. ["RainbowSpeed"] = rainbowSpeed,
  124. }
  125. writefile("RoseHubSettings.txt", httpService:JSONEncode(settingsTab))
  126. end
  127.  
  128. if darkBack then
  129. backColor = Color3.fromRGB(150, 150, 150)
  130. end
  131.  
  132. local scripttabList = {
  133. {"Infinite Yield", "MjBzRjmT", 1},
  134. {"Knife V3", "W833RBFr", 1},
  135. {"Bird Wings", "RQ9b8UTv", 1},
  136. {"M4A1", "eP1zq8tb", 1},
  137. {"Dungun", "90M7Mi8e", 1},
  138. {"Bomb Vest", "tG1PPuMd", 1},
  139. {"Music Bars", "SvYebC2r", 1},
  140. {"Omni God", "87NeeChc", 1},
  141. {"Pain Titan", "Hg5L8EtM", 1,},
  142. {"Reaper Titan", "B0q3QBg6", 1},
  143. {"Alter Chat", "ZSB4pN9R", 1},
  144. {"Hoverbike", 01268225564, 2},
  145. {"Rail Gun Titan", "0wFiFdwM", 1},
  146. {"True Hero", "P8AQ2ebJ", 1},
  147. {"Celestial Wheel", "bymTcgzf", 1},
  148. {"Knive V4", "j0Ns1w1S", 1},
  149. {"Ravenger Claws", "D7GxxvWL", 1},
  150. {"John Doe", "m5wHsLhr", 1},
  151. {"Messor Titan", "4bSrkLtA", 1},
  152. {"Clown Titan", "L0WLDZvc", 1},
  153. {"Chara", "HrWjgXtb", 1},
  154. {"Shedlesky Rage", "2SPz35LS", 1},
  155. {"LunchaThug", "x6GWFC5K", 1},
  156. {"Nazi Flag", "ZCZNxFBD", 1},
  157. {"Psychopath", "DGqk3bqY", 1},
  158. {"Fireworks Wand", "GB29NAPv", 1},
  159. {"Psycho Clown", "UgxKqKwE", 1},
  160. {"Inferno", "qhMGk36S", 1},
  161. {"Police Titan", "UCmufLU8", 1},
  162. {"Galaxy Titan", "nKNdCrKj", 1},
  163. {"Holy Wrench", "cKSh0a8C", 1},
  164. {"Krystal Dance", "j7EqLfbP", 1},
  165. {"Pee", "3CYmA0Pz", 1},
  166. {"Jihad", "vSujnuaF", 1},
  167. {"Hermit Purple", "R3C3ajQV", 1},
  168. {"Golden Gun", "2574Sd9E", 1},
  169. {"Goku", "yAXZZF9r", 1},
  170. {"Emoji", "vKPcMKnm", 1},
  171. {"Damn Son", "AMLHT8aJ", 1},
  172. {"Devuzi", "q0mt2peM", 1},
  173. {"Flash", "gGSVVq1H", 1},
  174. {"Teal Scythe", "0TUBSaxt", 1},
  175. {"Demon Demise", "ghMDMW63", 1},
  176. {"Red Sayan", "uC5DBvf9", 1},
  177. {"Ban Hammer", "1ynQ4Mu0", 1},
  178. {"Dick Gun", "UR9FBjcj", 1},
  179. {"Dat Boi", "Sz7KJHay", 1},
  180. {"Watermelon Trap", "pypsM3hj", 1},
  181. {"Whip", "XDsek3Rf", 1},
  182. {"School Shooter", "EmmwRFDA", 1},
  183. {"9/11", "3UmV26hG", 1},
  184. {"Bong", "8Kb08E9s", 1},
  185. {"Horse", "MVph7nmq", 1},
  186. {"Scythe", "fEEVkJba", 1},
  187. {"Disco Fog", "xg8d4PS0", 1},
  188. {"Disco Mesh", "GvtPCRVR", 1},
  189. {"Russian Dance", "RADQ2vH8", 1},
  190. {"Sun God", "0uJhLJ5m", 1},
  191. {"Rolling Light Ball", "S4Hj3MPd", 1},
  192. {"Red Death Scythe", "KJ5nqeVF", 1},
  193. {"Crystal Pistols", "GDLZ4VAq", 1},
  194. {"Epic Sword", "DZVV9AGG", 1},
  195. {"Circle Visualizer", "diJiteen", 1},
  196. {"Hex Blade", "fA0bBELV", 1},
  197. {"Bulldog", "nPPLxSA3", 1},
  198. {"FS-627-SENDER", "R3m4gfuP", 1},
  199. {"Voodoo Child", "w5TEtd0Q", 1},
  200. {"Bye Bye", "XBysEMgg", 1},
  201. {"Galil V2", "cnFz3h8D", 1},
  202. {"Mario", "pKmtnc9u", 1},
  203. {"Lighting Blade", "rMEe8R4N", 1},
  204. {"Flamingo Skybox", "8rWM880e", 1},
  205. {"Sin Unleashed", "ZQh5B023", 1},
  206. {"Ravager", "VQEz6a6i", 1},
  207. {"Brock", "Fe5YrxcY", 1},
  208. {"M249", "J4ijx897", 1},
  209. {"MG36", "zLZ4Auqn", 1},
  210. {"Omega Scythe", "Ag8dKZYB", 1},
  211. {"Omega Sword", "7JjxwhPn", 1},
  212. {"Draw", "1322re6a", 1},
  213. {"Gaydar", "s1P9sJub", 1},
  214. {"Crimson Hell", "na3pQXNV", 1},
  215. {"Psycho", "WNvhEZJw", 1},
  216. {"R6", "yX1DMcvM", 1},
  217. {"Elemental God", "mLz55spD", 1},
  218. {"Cross Power", "mLz55spD", 1},
  219. {"Blood Harvester", "qz0ufnwd", 1},
  220. {"Mustard Gas", "sg2wg4y8", 1},
  221. {"Gas Can", "xknu2gna", 1},
  222. {"Frieza", "tpkyda6c", 1},
  223. {"Sadistic Genocider V2", "nch0tn9u", 1},
  224. {"Demon Nelf", "VcBmmGuz", 1},
  225. {"Demonic Sword", "W2Hc3Tkd", 1},
  226. {"Noob Power", "9YMc9FRj", 1},
  227. {"Creep", "z7S1ugBF", 1},
  228. {"Crazy Nuke", "6kbRdDk6", 1},
  229. {"Sticky Bombs", "2A4U8xdA", 1},
  230. {"Cloud Visualizer", "sMCnTvHa", 1},
  231. {"Furfag", "FS1d8pB9", 1},
  232. {"Another Fist", "ukLjYGS1", 1},
  233. {"Eyozen", "VmQXnzZs", 1},
  234. {"Shadow Blade", "E08uiXDL", 1},
  235. {"Glock", "UwRX1avh", 1},
  236. {"Star Glitcher", "uiXScmiC", 1},
  237. {"Anti Kick", "uKUJcreq", 1},
  238. {"Drone", "j2Ew6274", 1},
  239. }
  240.  
  241. local fescripttabList = {
  242. {"FE God", "KduGECH6", 1},
  243. {"FE Fly", 1281055032, 2},
  244. {"Spam", "74GjB7tB", 1},
  245. {"FE Invisible", "dX3fieuT", 1},
  246. {"Infinite Yield FE", "tzTXmYf2", 1},
  247. }
  248.  
  249. local gameScriptsList = {
  250. {"Virgo 3.0", "EwYDRD4Y", 1},
  251. {"City Life Bomb Vest", "sLHGSBn1", 1},
  252. {"City Life Suicide", "YdKKQ7yT", 1},
  253. {"City Life Explosion", "vy78mqrG", 1},
  254. {"CB:RO Aimbot", "t3yHg06t", 1},
  255. {"Prison Life 2 GUI", "d6X2R39V", 1},
  256. {"Jailbreak GUI", 1461971147, 2},
  257. {"Apoc Tools v4", "0de4tAtR", 1},
  258. {"Twisted Murderer Admin", "C7eTvR3y", 1},
  259. {"Weapon Simulator Auto Farm", "fWguqvMr", 1},
  260. {"Natural Disaster Auto Survival", "e1nMaYYB", 1},
  261. {"Strucid Aimbot", "4ZQFyrS4", 1},
  262. }
  263.  
  264. local guitabList = {
  265. {"c00lgui", "Rz2EFsLU", 1},
  266. {"Topkek 4.0", "d0CJRrcg", 1},
  267. {"Topkek 3.0", "SikGfE9u", 1},
  268. {"Ro-Xploit 4.0", 175137115, 2},
  269. {"Ro-Xploit 5.0", 288646117, 2},
  270. {"Ro-Xploit 6.0", 364364477, 2},
  271. {"Dex 2.0", 492005721, 2},
  272. {"Dex 3.0", 418957341, 2},
  273. {"Clown Van", "a5UZuuiT", 1},
  274. {"Hell Elevator GUI", "8NYWpf2T", 1},
  275. {"Chams / Aimlock", "Yi7fzELj", 1},
  276. {"YourMom GUI", "289110135", 2},
  277. {"Pepe GUI", "277881926", 2},
  278. {"Brack Hub", "PT9Gf7d5", 1},
  279. {"Vesprin FE GUI", "1231351616", 2},
  280. {"Music GUI", "U352cdsv", 1},
  281. {"Dark Dex 2.0", "YzdzxuRX", 1},
  282. {"GabX", "FTf9uem2", 1},
  283. }
  284.  
  285. local mapsList = {
  286. {"Clockwork Arena", "EvnXCXhP", 1},
  287. {"Town Map", 1345094164, 2},
  288. {"Cave Island", "t29C42rm", 1},
  289. {"Nature Map", "gmF4Kq5B", 1},
  290. {"Nazi Map", "az8sLCLT", 1},
  291. {"Ritual Room", "hYCTFiAC", 1},
  292. {"Stripper", "jztW5Vuy", 1},
  293. {"Witch Map", "R9epW292", 1},
  294. {"Rainbow Tunnel", "8bznLitn", 1},
  295. {"Scary Map", "fNw46f74", 1},
  296. {"Nazi Camp", "KJNk4STm", 1},
  297. {"Night Club", 1281063730, 2},
  298. {"Da Club", "6UyLJheX", 1},
  299. }
  300.  
  301. local lists = {
  302. {scripttabList, "Scripts"},
  303. {fescripttabList, "FE Scripts"},
  304. {gameScriptsList, "Game Scripts"},
  305. {guitabList, "GUIs"},
  306. {mapsList, "Maps"},
  307. }
  308.  
  309. local tabs = {
  310. "Home",
  311. "Scripts",
  312. "FE Scripts",
  313. "GUIs",
  314. "Maps",
  315. "Audios",
  316. "Decals",
  317. "Executor",
  318. "ScriptSearch",
  319. "Game Scripts",
  320. "Settings",
  321. "Credits",
  322. }
  323.  
  324. local threshold = 185
  325. local transBackRunning = false
  326. local tweenTable = {}
  327. local function updateBack(...)
  328. local list = {...}
  329. local color = list[1]
  330. screenGui.Top.Main.BackgroundColor3 = color
  331. if list[2] and changeColorPickerBack == true then
  332. list[2].BackgroundColor3 = color
  333. end
  334. if round(color.g*255) >= threshold and round(color.b*255) >= threshold and darkBack == false or round(color.g*255) >= threshold and darkBack == false then
  335. if lightBack == true and transBackRunning == true then
  336. for _,tween in pairs(tweenTable) do
  337. tween:Pause()
  338. end
  339. end
  340. tweenTable = {}
  341. darkBack = true
  342. lightBack = false
  343. for i,v in pairs(screenGui.Top.Important:GetDescendants()) do
  344. local goal = {}
  345. goal.BackgroundColor3 = darkColor
  346. local customTween = tweenService:Create(v, TweenInfo.new(0.5), goal)
  347. table.insert(tweenTable, customTween)
  348. end
  349. transBackRunning = true
  350. for _,tween in pairs(tweenTable) do
  351. tween:Play()
  352. end
  353. tweenTable[1].Completed:Connect(function()
  354. transBackRunning = false
  355. end)
  356. elseif round(color.g*255) < threshold and round(color.b*255) < threshold and lightBack == false or round(color.g*255) < threshold and lightBack == false then
  357. if lightBack == true and transBackRunning == true then
  358. for _,tween in pairs(tweenTable) do
  359. tween:Pause()
  360. end
  361. end
  362. tweenTable = {}
  363. lightBack = true
  364. darkBack = false
  365. for i,v in pairs(screenGui.Top.Important:GetDescendants()) do
  366. local goal = {}
  367. goal.BackgroundColor3 = lightColor
  368. local customTween = tweenService:Create(v, TweenInfo.new(0.5), goal)
  369. table.insert(tweenTable, customTween)
  370. end
  371. transBackRunning = true
  372. for _,tween in pairs(tweenTable) do
  373. tween:Play()
  374. end
  375. tweenTable[1].Completed:Connect(function()
  376. transBackRunning = false
  377. end)
  378. end
  379. end
  380.  
  381. local function createFrame(Active, BackgroundColor3, BackgroundTransparency, BorderSizePixel, ClipsDescendants, Name, Parent, Position, Size)
  382. local Frame = Instance.new("Frame")
  383. Frame.Active = Active
  384. Frame.BackgroundColor3 = BackgroundColor3
  385. Frame.BackgroundTransparency = BackgroundTransparency
  386. Frame.BorderSizePixel = BorderSizePixel
  387. Frame.ClipsDescendants = ClipsDescendants
  388. Frame.Name = Name
  389. Frame.Parent = Parent
  390. Frame.Position = Position
  391. Frame.Size = Size
  392. return Frame
  393. end
  394.  
  395.  
  396. local function createTextLabel(BackgroundColor3, BackgroundTransparency, BorderSizePixel, Font, Name, Parent, Position, Size, Text, TextColor3, TextSize, TextWrapped, TextXAlignment, TextYAlignment, ZIndex)
  397. local TextLabel = Instance.new("TextLabel")
  398. TextLabel.BackgroundColor3 = BackgroundColor3
  399. TextLabel.BackgroundTransparency = BackgroundTransparency
  400. TextLabel.BorderSizePixel = BorderSizePixel
  401. TextLabel.Font = Font
  402. TextLabel.Name = Name
  403. TextLabel.Parent = Parent
  404. TextLabel.Position = Position
  405. TextLabel.Size = Size
  406. TextLabel.Text = Text
  407. TextLabel.TextColor3 = TextColor3
  408. TextLabel.TextSize = TextSize
  409. TextLabel.TextWrapped = TextWrapped
  410. TextLabel.TextXAlignment = TextXAlignment
  411. TextLabel.TextYAlignment = TextYAlignment
  412. TextLabel.ZIndex = ZIndex
  413. return TextLabel
  414. end
  415.  
  416. local function createTextBox(BackgroundColor3, BackgroundTransparency, BorderSizePixel, Font, Name, Parent, PlaceholderText, Position, Size, Text, TextColor3, TextSize, TextWrapped, TextXAlignment, TextYAlignment)
  417. local TextBox = Instance.new("TextBox")
  418. TextBox.BackgroundColor3 = BackgroundColor3
  419. TextBox.BackgroundTransparency = BackgroundTransparency
  420. TextBox.BorderSizePixel = BorderSizePixel
  421. TextBox.Font = Font
  422. TextBox.Name = Name
  423. TextBox.Parent = Parent
  424. TextBox.PlaceholderText = PlaceholderText
  425. TextBox.Position = Position
  426. TextBox.Size = Size
  427. TextBox.Text = Text
  428. TextBox.TextColor3 = TextColor3
  429. TextBox.TextSize = TextSize
  430. TextBox.TextWrapped = TextWrapped
  431. TextBox.TextXAlignment = TextXAlignment
  432. TextBox.TextYAlignment = TextYAlignment
  433. return TextBox
  434. end
  435.  
  436. local function createTextButton(BackgroundColor3, BackgroundTransparency, BorderSizePixel, Font, Name, Parent, Position, Size, Text, TextColor3, TextSize, ZIndex, func)
  437. local TextButton = Instance.new("TextButton")
  438. TextButton.BackgroundColor3 = BackgroundColor3
  439. TextButton.BackgroundTransparency = BackgroundTransparency
  440. TextButton.BorderSizePixel = BorderSizePixel
  441. TextButton.Font = Font
  442. TextButton.Name = Name
  443. TextButton.Parent = Parent
  444. TextButton.Position = Position
  445. TextButton.Size = Size
  446. TextButton.Text = Text
  447. TextButton.TextColor3 = TextColor3
  448. TextButton.TextSize = TextSize
  449. TextButton.ZIndex = ZIndex
  450. TextButton.MouseButton1Down:Connect(func)
  451. return TextButton
  452. end
  453.  
  454. local function createImageLabel(BackgroundTransparency, Image, Name, Parent, Position, Selectable, Size, ZIndex)
  455. local ImageLabel = Instance.new("ImageLabel")
  456. ImageLabel.BackgroundTransparency = BackgroundTransparency
  457. ImageLabel.Image = Image
  458. ImageLabel.Name = Name
  459. ImageLabel.Parent = Parent
  460. ImageLabel.Position = Position
  461. ImageLabel.Selectable = Selectable
  462. ImageLabel.Size = Size
  463. ImageLabel.ZIndex = ZIndex
  464. return ImageLabel
  465. end
  466.  
  467. local function createScrollingFrame(BackgroundColor3, BackgroundTransparency, BorderSizePixel, BottomImage, CanvasSize, MidImage, Name, Parent, Position, Rotation, ScrollBarThickness, Selectable, Size, TopImage, Visible)
  468. local ScrollingFrame = Instance.new("ScrollingFrame")
  469. ScrollingFrame.BackgroundColor3 = BackgroundColor3
  470. ScrollingFrame.BackgroundTransparency = BackgroundTransparency
  471. ScrollingFrame.BorderSizePixel = BorderSizePixel
  472. ScrollingFrame.BottomImage = BottomImage
  473. ScrollingFrame.CanvasSize = CanvasSize
  474. ScrollingFrame.MidImage = MidImage
  475. ScrollingFrame.Name = Name
  476. ScrollingFrame.Parent = Parent
  477. ScrollingFrame.Position = Position
  478. ScrollingFrame.Rotation = Rotation
  479. ScrollingFrame.ScrollBarThickness = ScrollBarThickness
  480. ScrollingFrame.Selectable = Selectable
  481. ScrollingFrame.Size = Size
  482. ScrollingFrame.TopImage = TopImage
  483. ScrollingFrame.Visible = Visible
  484. return ScrollingFrame
  485. end
  486.  
  487. function CreateInstance(cls,props)
  488. local inst = Instance.new(cls)
  489. for i,v in pairs(props) do
  490. inst[i] = v
  491. end
  492. return inst
  493. end
  494.  
  495. local pickerCreated = false
  496. local ColorPicker do
  497. ColorPicker = {}
  498.  
  499. local function createColorPick()
  500. local ColorPick = CreateInstance("ScreenGui",{DisplayOrder=0,Enabled=true,ResetOnSpawn=true,Name="ColorPick",})
  501. local ColorPick2 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.39215689897537,0.39215689897537,0.39215689897537),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,0),Rotation=0,Selectable=false,Size=UDim2.new(0,450,0,330),SizeConstraint=0,Visible=true,ZIndex=1,Name="ColorPicker",Parent = ColorPick})
  502. local ColorPickBack = CreateInstance("Frame",{Style=0,Active=true,AnchorPoint=Vector2.new(0,0),BackgroundColor3=colorPickerBack,BackgroundTransparency=0,BorderColor3=Color3.new(0.14509804546833,0.20784315466881,0.21176472306252),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(1, 0, 1, 0),SizeConstraint=0,Visible=true,ZIndex=1,Name="Backdrop",Parent = ColorPick2})
  503. local ColorPick3 = CreateInstance("Frame",{Style=0,Active=true,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.fromRGB(117, 117, 117),BackgroundTransparency=0.5,BorderColor3=Color3.new(0.14509804546833,0.20784315466881,0.21176472306252),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,25),Rotation=0,Selectable=false,Size=UDim2.new(1,0,1,-25),SizeConstraint=0,Visible=true,ZIndex=1,Name="Content",Parent = ColorPickBack})
  504. local ColorPick4 = CreateInstance("ImageLabel",{Image="rbxassetid://1072518502",ImageColor3=Color3.new(1,1,1),ImageRectOffset=Vector2.new(0,0),ImageRectSize=Vector2.new(0,0),ImageTransparency=0,ScaleType=0,SliceCenter=Rect.new(0,0,0,0),Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=0,BorderColor3=Color3.new(0.37647062540054,0.37647062540054,0.37647062540054),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1,-30,0,5),Rotation=0,Selectable=false,Size=UDim2.new(0,13,0,200),SizeConstraint=0,Visible=true,ZIndex=1,Name="ColorStrip",Parent = ColorPick3})
  505. local ColorPick5 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=0,BorderColor3=Color3.new(0.37647062540054,0.37647062540054,0.37647062540054),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1,-260,0,211),Rotation=0,Selectable=false,Size=UDim2.new(0,35,1,-245),SizeConstraint=0,Visible=true,ZIndex=1,Name="Preview",Parent = ColorPick3})
  506. local ColorPick6 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.37647062540054,0.37647062540054,0.37647062540054),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=true,Draggable=false,Position=UDim2.new(1,-261,0,4),Rotation=0,Selectable=false,Size=UDim2.new(0,222,0,202),SizeConstraint=0,Visible=true,ZIndex=1,Name="ColorSpaceFrame",Parent = ColorPick3})
  507. local ColorPick7 = CreateInstance("ImageLabel",{Image="rbxassetid://1072518406",ImageColor3=Color3.new(1,1,1),ImageRectOffset=Vector2.new(0,0),ImageRectSize=Vector2.new(0,0),ImageTransparency=0,ScaleType=0,SliceCenter=Rect.new(0,0,0,0),Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=0,BorderColor3=Color3.new(0.37647062540054,0.37647062540054,0.37647062540054),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,1,0,1),Rotation=0,Selectable=false,Size=UDim2.new(0,220,0,200),SizeConstraint=0,Visible=true,ZIndex=1,Name="ColorSpace",Parent = ColorPick6})
  508. local ColorPick8 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,210,0,190),Rotation=0,Selectable=false,Size=UDim2.new(0,20,0,20),SizeConstraint=0,Visible=true,ZIndex=1,Name="Scope",Parent = ColorPick7})
  509. local ColorPick9 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0,0,0),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,9,0,0),Rotation=0,Selectable=false,Size=UDim2.new(0,2,0,20),SizeConstraint=0,Visible=true,ZIndex=1,Name="Line",Parent = ColorPick8})
  510. local ColorPick10 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0,0,0),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,9),Rotation=0,Selectable=false,Size=UDim2.new(0,20,0,2),SizeConstraint=0,Visible=true,ZIndex=1,Name="Line",Parent = ColorPick8})
  511. local ColorPick11 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.3137255012989,0.3137255012989,0.3137255012989),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1,-16,0,1),Rotation=0,Selectable=false,Size=UDim2.new(0,5,0,208),SizeConstraint=0,Visible=true,ZIndex=1,Name="ArrowFrame",Parent = ColorPick3})
  512. local ColorPick12 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.63921570777893,0.63529413938522,0.64705884456635),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,-2,0,-4),Rotation=0,Selectable=false,Size=UDim2.new(0,8,0,16),SizeConstraint=0,Visible=true,ZIndex=1,Name="Arrow",Parent = ColorPick11})
  513. local ColorPick13 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0,0,0),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,2,0,8),Rotation=0,Selectable=false,Size=UDim2.new(0,1,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick12})
  514. local ColorPick14 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0,0,0),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,3,0,7),Rotation=0,Selectable=false,Size=UDim2.new(0,1,0,3),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick12})
  515. local ColorPick15 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0,0,0),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,4,0,6),Rotation=0,Selectable=false,Size=UDim2.new(0,1,0,5),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick12})
  516. local ColorPick16 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0,0,0),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,5,0,5),Rotation=0,Selectable=false,Size=UDim2.new(0,1,0,7),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick12})
  517. local ColorPick17 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0,0,0),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,6,0,4),Rotation=0,Selectable=false,Size=UDim2.new(0,1,0,9),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick12})
  518. local ColorPick18 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.25098040699959,0.25098040699959,0.25098040699959),BackgroundTransparency=0,BorderColor3=Color3.new(0.37647062540054,0.37647062540054,0.37647062540054),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1,-180,0,211),Rotation=0,Selectable=false,Size=UDim2.new(0,52,0,16),SizeConstraint=0,Visible=true,ZIndex=1,Name="Hue",Parent = ColorPick3})
  519. local ColorPick19 = CreateInstance("TextBox",{ClearTextOnFocus=true,Font=3,FontSize=5,MultiLine=false,Text="0",TextColor3=Color3.new(0.86274516582489,0.86274516582489,0.86274516582489),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=0,TextYAlignment=1,Active=true,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.25098040699959,0.25098040699959,0.25098040699959),BackgroundTransparency=1,BorderColor3=Color3.new(0.37647062540054,0.37647062540054,0.37647062540054),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,2,0,0),Rotation=0,Selectable=true,Size=UDim2.new(0,50,0,16),SizeConstraint=0,Visible=true,ZIndex=1,Name="Input",Parent = ColorPick18})
  520. local ColorPick20 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1,-16,0,0),Rotation=0,Selectable=false,Size=UDim2.new(0,16,1,0),SizeConstraint=0,Visible=true,ZIndex=1,Name="ArrowFrame",Parent = ColorPick19})
  521. local ColorPick21 = CreateInstance("TextButton",{Font=3,FontSize=5,Text="",TextColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=2,TextYAlignment=1,AutoButtonColor=false,Modal=false,Selected=false,Style=0,Active=true,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,0),Rotation=0,Selectable=true,Size=UDim2.new(1,0,0,8),SizeConstraint=0,Visible=true,ZIndex=1,Name="Up",Parent = ColorPick20})
  522. local ColorPick22 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.63921570777893,0.63529413938522,0.64705884456635),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,0),Rotation=0,Selectable=false,Size=UDim2.new(0,16,0,8),SizeConstraint=0,Visible=true,ZIndex=1,Name="Arrow",Parent = ColorPick21})
  523. local ColorPick23 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,8,0,3),Rotation=0,Selectable=false,Size=UDim2.new(0,1,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick22})
  524. local ColorPick24 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,7,0,4),Rotation=0,Selectable=false,Size=UDim2.new(0,3,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick22})
  525. local ColorPick25 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,6,0,5),Rotation=0,Selectable=false,Size=UDim2.new(0,5,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick22})
  526. local ColorPick26 = CreateInstance("TextButton",{Font=3,FontSize=5,Text="",TextColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=2,TextYAlignment=1,AutoButtonColor=false,Modal=false,Selected=false,Style=0,Active=true,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,8),Rotation=0,Selectable=true,Size=UDim2.new(1,0,0,8),SizeConstraint=0,Visible=true,ZIndex=1,Name="Down",Parent = ColorPick20})
  527. local ColorPick27 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.63921570777893,0.63529413938522,0.64705884456635),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,0),Rotation=0,Selectable=false,Size=UDim2.new(0,16,0,8),SizeConstraint=0,Visible=true,ZIndex=1,Name="Arrow",Parent = ColorPick26})
  528. local ColorPick28 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,8,0,5),Rotation=0,Selectable=false,Size=UDim2.new(0,1,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick27})
  529. local ColorPick29 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,7,0,4),Rotation=0,Selectable=false,Size=UDim2.new(0,3,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick27})
  530. local ColorPick30 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,6,0,3),Rotation=0,Selectable=false,Size=UDim2.new(0,5,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick27})
  531. local ColorPick31 = CreateInstance("TextLabel",{Font=3,FontSize=5,Text="Hue:",TextColor3=Color3.new(0.86274516582489,0.86274516582489,0.86274516582489),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=1,TextYAlignment=1,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,-40,0,0),Rotation=0,Selectable=false,Size=UDim2.new(0,34,1,0),SizeConstraint=0,Visible=true,ZIndex=1,Name="Title",Parent = ColorPick18})
  532. local ColorPick32 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.25098040699959,0.25098040699959,0.25098040699959),BackgroundTransparency=0,BorderColor3=Color3.new(0.37647062540054,0.37647062540054,0.37647062540054),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1,-180,0,233),Rotation=0,Selectable=false,Size=UDim2.new(0,52,0,16),SizeConstraint=0,Visible=true,ZIndex=1,Name="Sat",Parent = ColorPick3})
  533. local ColorPick33 = CreateInstance("TextBox",{ClearTextOnFocus=true,Font=3,FontSize=5,MultiLine=false,Text="0",TextColor3=Color3.new(0.86274516582489,0.86274516582489,0.86274516582489),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=0,TextYAlignment=1,Active=true,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.25098040699959,0.25098040699959,0.25098040699959),BackgroundTransparency=1,BorderColor3=Color3.new(0.37647062540054,0.37647062540054,0.37647062540054),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,2,0,0),Rotation=0,Selectable=true,Size=UDim2.new(0,50,0,16),SizeConstraint=0,Visible=true,ZIndex=1,Name="Input",Parent = ColorPick32})
  534. local ColorPick34 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1,-16,0,0),Rotation=0,Selectable=false,Size=UDim2.new(0,16,1,0),SizeConstraint=0,Visible=true,ZIndex=1,Name="ArrowFrame",Parent = ColorPick33})
  535. local ColorPick35 = CreateInstance("TextButton",{Font=3,FontSize=5,Text="",TextColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=2,TextYAlignment=1,AutoButtonColor=false,Modal=false,Selected=false,Style=0,Active=true,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,0),Rotation=0,Selectable=true,Size=UDim2.new(1,0,0,8),SizeConstraint=0,Visible=true,ZIndex=1,Name="Up",Parent = ColorPick34})
  536. local ColorPick36 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.63921570777893,0.63529413938522,0.64705884456635),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,0),Rotation=0,Selectable=false,Size=UDim2.new(0,16,0,8),SizeConstraint=0,Visible=true,ZIndex=1,Name="Arrow",Parent = ColorPick35})
  537. local ColorPick37 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,8,0,3),Rotation=0,Selectable=false,Size=UDim2.new(0,1,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick36})
  538. local ColorPick38 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,7,0,4),Rotation=0,Selectable=false,Size=UDim2.new(0,3,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick36})
  539. local ColorPick39 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,6,0,5),Rotation=0,Selectable=false,Size=UDim2.new(0,5,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick36})
  540. local ColorPick40 = CreateInstance("TextButton",{Font=3,FontSize=5,Text="",TextColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=2,TextYAlignment=1,AutoButtonColor=false,Modal=false,Selected=false,Style=0,Active=true,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,8),Rotation=0,Selectable=true,Size=UDim2.new(1,0,0,8),SizeConstraint=0,Visible=true,ZIndex=1,Name="Down",Parent = ColorPick34})
  541. local ColorPick41 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.63921570777893,0.63529413938522,0.64705884456635),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,0),Rotation=0,Selectable=false,Size=UDim2.new(0,16,0,8),SizeConstraint=0,Visible=true,ZIndex=1,Name="Arrow",Parent = ColorPick40})
  542. local ColorPick42 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,8,0,5),Rotation=0,Selectable=false,Size=UDim2.new(0,1,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick41})
  543. local ColorPick43 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,7,0,4),Rotation=0,Selectable=false,Size=UDim2.new(0,3,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick41})
  544. local ColorPick44 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,6,0,3),Rotation=0,Selectable=false,Size=UDim2.new(0,5,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick41})
  545. local ColorPick45 = CreateInstance("TextLabel",{Font=3,FontSize=5,Text="Sat:",TextColor3=Color3.new(0.86274516582489,0.86274516582489,0.86274516582489),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=1,TextYAlignment=1,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,-40,0,0),Rotation=0,Selectable=false,Size=UDim2.new(0,34,1,0),SizeConstraint=0,Visible=true,ZIndex=1,Name="Title",Parent = ColorPick32})
  546. local ColorPick46 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.25098040699959,0.25098040699959,0.25098040699959),BackgroundTransparency=0,BorderColor3=Color3.new(0.37647062540054,0.37647062540054,0.37647062540054),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1,-180,0,255),Rotation=0,Selectable=false,Size=UDim2.new(0,52,0,16),SizeConstraint=0,Visible=true,ZIndex=1,Name="Val",Parent = ColorPick3})
  547. local ColorPick47 = CreateInstance("TextBox",{ClearTextOnFocus=true,Font=3,FontSize=5,MultiLine=false,Text="255",TextColor3=Color3.new(0.86274516582489,0.86274516582489,0.86274516582489),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=0,TextYAlignment=1,Active=true,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.25098040699959,0.25098040699959,0.25098040699959),BackgroundTransparency=1,BorderColor3=Color3.new(0.37647062540054,0.37647062540054,0.37647062540054),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,2,0,0),Rotation=0,Selectable=true,Size=UDim2.new(0,50,0,16),SizeConstraint=0,Visible=true,ZIndex=1,Name="Input",Parent = ColorPick46})
  548. local ColorPick48 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1,-16,0,0),Rotation=0,Selectable=false,Size=UDim2.new(0,16,1,0),SizeConstraint=0,Visible=true,ZIndex=1,Name="ArrowFrame",Parent = ColorPick47})
  549. local ColorPick49 = CreateInstance("TextButton",{Font=3,FontSize=5,Text="",TextColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=2,TextYAlignment=1,AutoButtonColor=false,Modal=false,Selected=false,Style=0,Active=true,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,0),Rotation=0,Selectable=true,Size=UDim2.new(1,0,0,8),SizeConstraint=0,Visible=true,ZIndex=1,Name="Up",Parent = ColorPick48})
  550. local ColorPick50 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.63921570777893,0.63529413938522,0.64705884456635),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,0),Rotation=0,Selectable=false,Size=UDim2.new(0,16,0,8),SizeConstraint=0,Visible=true,ZIndex=1,Name="Arrow",Parent = ColorPick49})
  551. local ColorPick51 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,8,0,3),Rotation=0,Selectable=false,Size=UDim2.new(0,1,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick50})
  552. local ColorPick52 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,7,0,4),Rotation=0,Selectable=false,Size=UDim2.new(0,3,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick50})
  553. local ColorPick53 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,6,0,5),Rotation=0,Selectable=false,Size=UDim2.new(0,5,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick50})
  554. local ColorPick54 = CreateInstance("TextButton",{Font=3,FontSize=5,Text="",TextColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=2,TextYAlignment=1,AutoButtonColor=false,Modal=false,Selected=false,Style=0,Active=true,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,8),Rotation=0,Selectable=true,Size=UDim2.new(1,0,0,8),SizeConstraint=0,Visible=true,ZIndex=1,Name="Down",Parent = ColorPick48})
  555. local ColorPick55 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.63921570777893,0.63529413938522,0.64705884456635),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,0),Rotation=0,Selectable=false,Size=UDim2.new(0,16,0,8),SizeConstraint=0,Visible=true,ZIndex=1,Name="Arrow",Parent = ColorPick54})
  556. local ColorPick56 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,8,0,5),Rotation=0,Selectable=false,Size=UDim2.new(0,1,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick55})
  557. local ColorPick57 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,7,0,4),Rotation=0,Selectable=false,Size=UDim2.new(0,3,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick55})
  558. local ColorPick58 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,6,0,3),Rotation=0,Selectable=false,Size=UDim2.new(0,5,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick55})
  559. local ColorPick59 = CreateInstance("TextLabel",{Font=3,FontSize=5,Text="Val:",TextColor3=Color3.new(0.86274516582489,0.86274516582489,0.86274516582489),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=1,TextYAlignment=1,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,-40,0,0),Rotation=0,Selectable=false,Size=UDim2.new(0,34,1,0),SizeConstraint=0,Visible=true,ZIndex=1,Name="Title",Parent = ColorPick46})
  560. local ColorPick60 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.25098040699959,0.25098040699959,0.25098040699959),BackgroundTransparency=0,BorderColor3=Color3.new(0.37647062540054,0.37647062540054,0.37647062540054),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1,-63,0,233),Rotation=0,Selectable=false,Size=UDim2.new(0,52,0,16),SizeConstraint=0,Visible=true,ZIndex=1,Name="Green",Parent = ColorPick3})
  561. local ColorPick61 = CreateInstance("TextBox",{ClearTextOnFocus=true,Font=3,FontSize=5,MultiLine=false,Text="0",TextColor3=Color3.new(0.86274516582489,0.86274516582489,0.86274516582489),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=0,TextYAlignment=1,Active=true,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.25098040699959,0.25098040699959,0.25098040699959),BackgroundTransparency=1,BorderColor3=Color3.new(0.37647062540054,0.37647062540054,0.37647062540054),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,2,0,0),Rotation=0,Selectable=true,Size=UDim2.new(0,50,0,16),SizeConstraint=0,Visible=true,ZIndex=1,Name="Input",Parent = ColorPick60})
  562. local ColorPick62 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1,-16,0,0),Rotation=0,Selectable=false,Size=UDim2.new(0,16,1,0),SizeConstraint=0,Visible=true,ZIndex=1,Name="ArrowFrame",Parent = ColorPick61})
  563. local ColorPick63 = CreateInstance("TextButton",{Font=3,FontSize=5,Text="",TextColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=2,TextYAlignment=1,AutoButtonColor=false,Modal=false,Selected=false,Style=0,Active=true,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,0),Rotation=0,Selectable=true,Size=UDim2.new(1,0,0,8),SizeConstraint=0,Visible=true,ZIndex=1,Name="Up",Parent = ColorPick62})
  564. local ColorPick64 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.63921570777893,0.63529413938522,0.64705884456635),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,0),Rotation=0,Selectable=false,Size=UDim2.new(0,16,0,8),SizeConstraint=0,Visible=true,ZIndex=1,Name="Arrow",Parent = ColorPick63})
  565. local ColorPick65 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,8,0,3),Rotation=0,Selectable=false,Size=UDim2.new(0,1,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick64})
  566. local ColorPick66 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,7,0,4),Rotation=0,Selectable=false,Size=UDim2.new(0,3,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick64})
  567. local ColorPick67 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,6,0,5),Rotation=0,Selectable=false,Size=UDim2.new(0,5,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick64})
  568. local ColorPick68 = CreateInstance("TextButton",{Font=3,FontSize=5,Text="",TextColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=2,TextYAlignment=1,AutoButtonColor=false,Modal=false,Selected=false,Style=0,Active=true,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,8),Rotation=0,Selectable=true,Size=UDim2.new(1,0,0,8),SizeConstraint=0,Visible=true,ZIndex=1,Name="Down",Parent = ColorPick62})
  569. local ColorPick69 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.63921570777893,0.63529413938522,0.64705884456635),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,0),Rotation=0,Selectable=false,Size=UDim2.new(0,16,0,8),SizeConstraint=0,Visible=true,ZIndex=1,Name="Arrow",Parent = ColorPick68})
  570. local ColorPick70 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,8,0,5),Rotation=0,Selectable=false,Size=UDim2.new(0,1,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick69})
  571. local ColorPick71 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,7,0,4),Rotation=0,Selectable=false,Size=UDim2.new(0,3,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick69})
  572. local ColorPick72 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,6,0,3),Rotation=0,Selectable=false,Size=UDim2.new(0,5,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick69})
  573. local ColorPick73 = CreateInstance("TextLabel",{Font=3,FontSize=5,Text="Green:",TextColor3=Color3.new(0.86274516582489,0.86274516582489,0.86274516582489),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=1,TextYAlignment=1,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,-40,0,0),Rotation=0,Selectable=false,Size=UDim2.new(0,34,1,0),SizeConstraint=0,Visible=true,ZIndex=1,Name="Title",Parent = ColorPick60})
  574. local ColorPick74 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.25098040699959,0.25098040699959,0.25098040699959),BackgroundTransparency=0,BorderColor3=Color3.new(0.37647062540054,0.37647062540054,0.37647062540054),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1,-63,0,211),Rotation=0,Selectable=false,Size=UDim2.new(0,52,0,16),SizeConstraint=0,Visible=true,ZIndex=1,Name="Red",Parent = ColorPick3})
  575. local ColorPick75 = CreateInstance("TextBox",{ClearTextOnFocus=true,Font=3,FontSize=5,MultiLine=false,Text="0",TextColor3=Color3.new(0.86274516582489,0.86274516582489,0.86274516582489),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=0,TextYAlignment=1,Active=true,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.25098040699959,0.25098040699959,0.25098040699959),BackgroundTransparency=1,BorderColor3=Color3.new(0.37647062540054,0.37647062540054,0.37647062540054),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,2,0,0),Rotation=0,Selectable=true,Size=UDim2.new(0,50,0,16),SizeConstraint=0,Visible=true,ZIndex=1,Name="Input",Parent = ColorPick74})
  576. local ColorPick76 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1,-16,0,0),Rotation=0,Selectable=false,Size=UDim2.new(0,16,1,0),SizeConstraint=0,Visible=true,ZIndex=1,Name="ArrowFrame",Parent = ColorPick75})
  577. local ColorPick77 = CreateInstance("TextButton",{Font=3,FontSize=5,Text="",TextColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=2,TextYAlignment=1,AutoButtonColor=false,Modal=false,Selected=false,Style=0,Active=true,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,0),Rotation=0,Selectable=true,Size=UDim2.new(1,0,0,8),SizeConstraint=0,Visible=true,ZIndex=1,Name="Up",Parent = ColorPick76})
  578. local ColorPick78 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.63921570777893,0.63529413938522,0.64705884456635),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,0),Rotation=0,Selectable=false,Size=UDim2.new(0,16,0,8),SizeConstraint=0,Visible=true,ZIndex=1,Name="Arrow",Parent = ColorPick77})
  579. local ColorPick79 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,8,0,3),Rotation=0,Selectable=false,Size=UDim2.new(0,1,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick78})
  580. local ColorPick80 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,7,0,4),Rotation=0,Selectable=false,Size=UDim2.new(0,3,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick78})
  581. local ColorPick81 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,6,0,5),Rotation=0,Selectable=false,Size=UDim2.new(0,5,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick78})
  582. local ColorPick82 = CreateInstance("TextButton",{Font=3,FontSize=5,Text="",TextColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=2,TextYAlignment=1,AutoButtonColor=false,Modal=false,Selected=false,Style=0,Active=true,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,8),Rotation=0,Selectable=true,Size=UDim2.new(1,0,0,8),SizeConstraint=0,Visible=true,ZIndex=1,Name="Down",Parent = ColorPick76})
  583. local ColorPick83 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.63921570777893,0.63529413938522,0.64705884456635),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,0),Rotation=0,Selectable=false,Size=UDim2.new(0,16,0,8),SizeConstraint=0,Visible=true,ZIndex=1,Name="Arrow",Parent = ColorPick82})
  584. local ColorPick84 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,8,0,5),Rotation=0,Selectable=false,Size=UDim2.new(0,1,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick83})
  585. local ColorPick85 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,7,0,4),Rotation=0,Selectable=false,Size=UDim2.new(0,3,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick83})
  586. local ColorPick86 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,6,0,3),Rotation=0,Selectable=false,Size=UDim2.new(0,5,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick83})
  587. local ColorPick87 = CreateInstance("TextLabel",{Font=3,FontSize=5,Text="Red:",TextColor3=Color3.new(0.86274516582489,0.86274516582489,0.86274516582489),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=1,TextYAlignment=1,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,-40,0,0),Rotation=0,Selectable=false,Size=UDim2.new(0,34,1,0),SizeConstraint=0,Visible=true,ZIndex=1,Name="Title",Parent = ColorPick74})
  588. local ColorPick88 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.25098040699959,0.25098040699959,0.25098040699959),BackgroundTransparency=0,BorderColor3=Color3.new(0.37647062540054,0.37647062540054,0.37647062540054),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1,-63,0,255),Rotation=0,Selectable=false,Size=UDim2.new(0,52,0,16),SizeConstraint=0,Visible=true,ZIndex=1,Name="Blue",Parent = ColorPick3})
  589. local ColorPick89 = CreateInstance("TextBox",{ClearTextOnFocus=true,Font=3,FontSize=5,MultiLine=false,Text="0",TextColor3=Color3.new(0.86274516582489,0.86274516582489,0.86274516582489),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=0,TextYAlignment=1,Active=true,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.25098040699959,0.25098040699959,0.25098040699959),BackgroundTransparency=1,BorderColor3=Color3.new(0.37647062540054,0.37647062540054,0.37647062540054),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,2,0,0),Rotation=0,Selectable=true,Size=UDim2.new(0,50,0,16),SizeConstraint=0,Visible=true,ZIndex=1,Name="Input",Parent = ColorPick88})
  590. local ColorPick90 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1,-16,0,0),Rotation=0,Selectable=false,Size=UDim2.new(0,16,1,0),SizeConstraint=0,Visible=true,ZIndex=1,Name="ArrowFrame",Parent = ColorPick89})
  591. local ColorPick91 = CreateInstance("TextButton",{Font=3,FontSize=5,Text="",TextColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=2,TextYAlignment=1,AutoButtonColor=false,Modal=false,Selected=false,Style=0,Active=true,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,0),Rotation=0,Selectable=true,Size=UDim2.new(1,0,0,8),SizeConstraint=0,Visible=true,ZIndex=1,Name="Up",Parent = ColorPick90})
  592. local ColorPick92 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.63921570777893,0.63529413938522,0.64705884456635),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,0),Rotation=0,Selectable=false,Size=UDim2.new(0,16,0,8),SizeConstraint=0,Visible=true,ZIndex=1,Name="Arrow",Parent = ColorPick91})
  593. local ColorPick93 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,8,0,3),Rotation=0,Selectable=false,Size=UDim2.new(0,1,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick92})
  594. local ColorPick94 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,7,0,4),Rotation=0,Selectable=false,Size=UDim2.new(0,3,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick92})
  595. local ColorPick95 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,6,0,5),Rotation=0,Selectable=false,Size=UDim2.new(0,5,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick92})
  596. local ColorPick96 = CreateInstance("TextButton",{Font=3,FontSize=5,Text="",TextColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=2,TextYAlignment=1,AutoButtonColor=false,Modal=false,Selected=false,Style=0,Active=true,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,8),Rotation=0,Selectable=true,Size=UDim2.new(1,0,0,8),SizeConstraint=0,Visible=true,ZIndex=1,Name="Down",Parent = ColorPick90})
  597. local ColorPick97 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.63921570777893,0.63529413938522,0.64705884456635),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,0),Rotation=0,Selectable=false,Size=UDim2.new(0,16,0,8),SizeConstraint=0,Visible=true,ZIndex=1,Name="Arrow",Parent = ColorPick96})
  598. local ColorPick98 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,8,0,5),Rotation=0,Selectable=false,Size=UDim2.new(0,1,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick97})
  599. local ColorPick99 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,7,0,4),Rotation=0,Selectable=false,Size=UDim2.new(0,3,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick97})
  600. local ColorPick100 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.86274510622025,0.86274510622025,0.86274510622025),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,6,0,3),Rotation=0,Selectable=false,Size=UDim2.new(0,5,0,1),SizeConstraint=0,Visible=true,ZIndex=1,Name="Frame",Parent = ColorPick97})
  601. local ColorPick101 = CreateInstance("TextLabel",{Font=3,FontSize=5,Text="Blue:",TextColor3=Color3.new(0.86274516582489,0.86274516582489,0.86274516582489),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=1,TextYAlignment=1,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,-40,0,0),Rotation=0,Selectable=false,Size=UDim2.new(0,34,1,0),SizeConstraint=0,Visible=true,ZIndex=1,Name="Title",Parent = ColorPick88})
  602. local ColorPick102 = CreateInstance("TextButton",{Font=3,FontSize=5,Text="OK",TextColor3=Color3.new(0.86274516582489,0.86274516582489,0.86274516582489),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=2,TextYAlignment=1,AutoButtonColor=false,Modal=false,Selected=false,Style=0,Active=true,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.18823531270027,0.18823531270027,0.18823531270027),BackgroundTransparency=0,BorderColor3=Color3.new(0.37647062540054,0.37647062540054,0.37647062540054),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1,-210,1,-28),Rotation=0,Selectable=true,Size=UDim2.new(0,100,0,25),SizeConstraint=0,Visible=true,ZIndex=1,Name="Ok",Parent = ColorPick3})
  603. local ColorPick103 = CreateInstance("TextButton",{Font=3,FontSize=5,Text="Cancel",TextColor3=Color3.new(0.86274516582489,0.86274516582489,0.86274516582489),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=2,TextYAlignment=1,AutoButtonColor=false,Modal=false,Selected=false,Style=0,Active=true,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(0.18823531270027,0.18823531270027,0.18823531270027),BackgroundTransparency=0,BorderColor3=Color3.new(0.37647062540054,0.37647062540054,0.37647062540054),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1,-105,1,-28),Rotation=0,Selectable=true,Size=UDim2.new(0,100,0,25),SizeConstraint=0,Visible=true,ZIndex=1,Name="Cancel",Parent = ColorPick3})
  604. local ColorPick104 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,5,0,5),Rotation=0,Selectable=false,Size=UDim2.new(0,180,0,200),SizeConstraint=0,Visible=true,ZIndex=1,Name="BasicColors",Parent = ColorPick3})
  605. local ColorPick105 = CreateInstance("TextLabel",{Font=3,FontSize=5,Text="Basic Colors",TextColor3=Color3.new(0.86274516582489,0.86274516582489,0.86274516582489),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=0,TextYAlignment=1,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,-5),Rotation=0,Selectable=false,Size=UDim2.new(1,0,0,26),SizeConstraint=0,Visible=true,ZIndex=1,Name="Title",Parent = ColorPick104})
  606. local ColorPick106 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,5,0,210),Rotation=0,Selectable=false,Size=UDim2.new(0,180,0,90),SizeConstraint=0,Visible=true,ZIndex=1,Name="CustomColors",Parent = ColorPick3})
  607. local ColorPick107 = CreateInstance("TextLabel",{Font=3,FontSize=5,Text="Custom Colors (RC = Set)",TextColor3=Color3.new(0.86274516582489,0.86274516582489,0.86274516582489),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=0,TextYAlignment=1,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,0),Rotation=0,Selectable=false,Size=UDim2.new(1,0,0,20),SizeConstraint=0,Visible=true,ZIndex=1,Name="Title",Parent = ColorPick106})
  608. local ColorPick108 = CreateInstance("Frame",{Style=0,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.fromRGB(84, 84, 84),BackgroundTransparency=0,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,0,0,0),Rotation=0,Selectable=false,Size=UDim2.new(1,0,0,25),SizeConstraint=0,Visible=true,ZIndex=1,Name="TopBar",Parent = ColorPick2})
  609. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", ColorPick108, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  610. local ColorPick109 = CreateInstance("TextLabel",{Font=3,FontSize=5,Text="Color Picker",TextColor3=Color3.new(0.86274516582489,0.86274516582489,0.86274516582489),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=2,TextYAlignment=1,Active=false,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0,25,0,0),Rotation=0,Selectable=false,Size=UDim2.new(1,-50,0,25),SizeConstraint=0,Visible=true,ZIndex=1,Name="WindowTitle",Parent = ColorPick108})
  611. local ColorPick110 = CreateInstance("TextButton",{Font=4,FontSize=5,Text="X",TextColor3=Color3.new(0.86274516582489,0.86274516582489,0.86274516582489),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0,0,0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=2,TextYAlignment=1,AutoButtonColor=false,Modal=false,Selected=false,Style=0,Active=true,AnchorPoint=Vector2.new(0,0),BackgroundColor3=Color3.new(1,1,1),BackgroundTransparency=1,BorderColor3=Color3.new(0.10588236153126,0.16470588743687,0.20784315466881),BorderSizePixel=0,ClipsDescendants=false,Draggable=false,Position=UDim2.new(1,-27,0,0),Rotation=0,Selectable=true,Size=UDim2.new(0,25,0,25),SizeConstraint=0,Visible=true,ZIndex=1,Name="Close",Parent = ColorPick108})
  612. return ColorPick
  613. end
  614. local GuiTemplate = createColorPick()
  615.  
  616. ColorPicker.new = function()
  617. pickerCreated = true
  618. local newMt = setmetatable({},{})
  619.  
  620. local rootGui = GuiTemplate:Clone()
  621. rootGui.Parent = coreGui
  622. rootGui.Enabled = true
  623. pickerGui = rootGui.ColorPicker
  624. local pickerTopBar = pickerGui.TopBar
  625. backDrop = pickerGui.Backdrop
  626. local pickerFrame = pickerGui.Backdrop.Content
  627. local colorSpace = pickerFrame.ColorSpaceFrame.ColorSpace
  628. local colorStrip = pickerFrame.ColorStrip
  629. local previewFrame = pickerFrame.Preview
  630. local basicColorsFrame = pickerFrame.BasicColors
  631. local customColorsFrame = pickerFrame.CustomColors
  632. local okButton = pickerFrame.Ok
  633. local cancelButton = pickerFrame.Cancel
  634. local closeButton = pickerTopBar.Close
  635.  
  636. local colorScope = colorSpace.Scope
  637. local colorArrow = pickerFrame.ArrowFrame.Arrow
  638.  
  639. local hueInput = pickerFrame.Hue.Input
  640. local satInput = pickerFrame.Sat.Input
  641. local valInput = pickerFrame.Val.Input
  642.  
  643. local redInput = pickerFrame.Red.Input
  644. local greenInput = pickerFrame.Green.Input
  645. local blueInput = pickerFrame.Blue.Input
  646.  
  647. local user = game:GetService("UserInputService")
  648. local mouse = game:GetService("Players").LocalPlayer:GetMouse()
  649.  
  650. local hue,sat,val = Color3.toHSV(savedColor)
  651. local red,green,blue = savedColor.r, savedColor.g, savedColor.b
  652. local chosenColor = savedColor
  653.  
  654. local basicColors = {Color3.new(0,0,0),Color3.new(0.66666668653488,0,0),Color3.new(0,0.33333334326744,0),Color3.new(0.66666668653488,0.33333334326744,0),Color3.new(0,0.66666668653488,0),Color3.new(0.66666668653488,0.66666668653488,0),Color3.new(0,1,0),Color3.new(0.66666668653488,1,0),Color3.new(0,0,0.49803924560547),Color3.new(0.66666668653488,0,0.49803924560547),Color3.new(0,0.33333334326744,0.49803924560547),Color3.new(0.66666668653488,0.33333334326744,0.49803924560547),Color3.new(0,0.66666668653488,0.49803924560547),Color3.new(0.66666668653488,0.66666668653488,0.49803924560547),Color3.new(0,1,0.49803924560547),Color3.new(0.66666668653488,1,0.49803924560547),Color3.new(0,0,1),Color3.new(0.66666668653488,0,1),Color3.new(0,0.33333334326744,1),Color3.new(0.66666668653488,0.33333334326744,1),Color3.new(0,0.66666668653488,1),Color3.new(0.66666668653488,0.66666668653488,1),Color3.new(0,1,1),Color3.new(0.66666668653488,1,1),Color3.new(0.33333334326744,0,0),Color3.new(1,0,0),Color3.new(0.33333334326744,0.33333334326744,0),Color3.new(1,0.33333334326744,0),Color3.new(0.33333334326744,0.66666668653488,0),Color3.new(1,0.66666668653488,0),Color3.new(0.33333334326744,1,0),Color3.new(1,1,0),Color3.new(0.33333334326744,0,0.49803924560547),Color3.new(1,0,0.49803924560547),Color3.new(0.33333334326744,0.33333334326744,0.49803924560547),Color3.new(1,0.33333334326744,0.49803924560547),Color3.new(0.33333334326744,0.66666668653488,0.49803924560547),Color3.new(1,0.66666668653488,0.49803924560547),Color3.new(0.33333334326744,1,0.49803924560547),Color3.new(1,1,0.49803924560547),Color3.new(0.33333334326744,0,1),Color3.new(1,0,1),Color3.new(0.33333334326744,0.33333334326744,1),Color3.new(1,0.33333334326744,1),Color3.new(0.33333334326744,0.66666668653488,1),Color3.new(1,0.66666668653488,1),Color3.new(0.33333334326744,1,1),Color3.new(1,1,1)}
  655. local customColors = {}
  656.  
  657. local function updateColor(noupdate)
  658. local relativeX,relativeY,relativeStripY = 219 - hue*219, 199 - sat*199, 199 - val*199
  659. local hsvColor = Color3.fromHSV(hue,sat,val)
  660.  
  661. if noupdate == 2 or not noupdate then
  662. hueInput.Text = tostring(math.ceil(359*hue))
  663. satInput.Text = tostring(math.ceil(255*sat))
  664. valInput.Text = tostring(math.floor(255*val))
  665. end
  666. if noupdate == 1 or not noupdate then
  667. redInput.Text = tostring(math.floor(255*red))
  668. greenInput.Text = tostring(math.floor(255*green))
  669. blueInput.Text = tostring(math.floor(255*blue))
  670. end
  671.  
  672. chosenColor = Color3.new(red,green,blue)
  673.  
  674. colorScope.Position = UDim2.new(0,relativeX-9,0,relativeY-9)
  675. colorStrip.ImageColor3 = Color3.fromHSV(hue,sat,1)
  676. colorArrow.Position = UDim2.new(0,-2,0,relativeStripY-4)
  677. previewFrame.BackgroundColor3 = chosenColor
  678.  
  679. updateBack(chosenColor, backDrop)
  680.  
  681. newMt.Color = chosenColor
  682. if newMt.Changed then
  683. newMt:Changed(chosenColor)
  684. end
  685. end
  686.  
  687. local function colorSpaceInput()
  688. local relativeX = mouse.X - colorSpace.AbsolutePosition.X
  689. local relativeY = mouse.Y - colorSpace.AbsolutePosition.Y
  690.  
  691. if relativeX < 0 then relativeX = 0 elseif relativeX > 219 then relativeX = 219 end
  692. if relativeY < 0 then relativeY = 0 elseif relativeY > 199 then relativeY = 199 end
  693.  
  694. hue = (219 - relativeX)/219
  695. sat = (199 - relativeY)/199
  696.  
  697. local hsvColor = Color3.fromHSV(hue,sat,val)
  698. red,green,blue = hsvColor.r,hsvColor.g,hsvColor.b
  699.  
  700. updateColor()
  701. end
  702.  
  703. local function colorStripInput()
  704. local relativeY = mouse.Y - colorStrip.AbsolutePosition.Y
  705.  
  706. if relativeY < 0 then relativeY = 0 elseif relativeY > 199 then relativeY = 199 end
  707.  
  708. val = (199 - relativeY)/199
  709.  
  710. local hsvColor = Color3.fromHSV(hue,sat,val)
  711. red,green,blue = hsvColor.r,hsvColor.g,hsvColor.b
  712.  
  713. updateColor()
  714. end
  715.  
  716. local function hookButtons(frame,func)
  717. frame.ArrowFrame.Up.InputBegan:Connect(function(input)
  718. if input.UserInputType == Enum.UserInputType.MouseMovement then
  719. frame.ArrowFrame.Up.BackgroundTransparency = 0.5
  720. elseif input.UserInputType == Enum.UserInputType.MouseButton1 then
  721. local releaseEvent,runEvent
  722.  
  723. local startTime = tick()
  724. local pressing = true
  725. local startNum = tonumber(frame.Text)
  726.  
  727. if not startNum then return end
  728.  
  729. releaseEvent = user.InputEnded:Connect(function(input)
  730. if input.UserInputType ~= Enum.UserInputType.MouseButton1 then return end
  731. releaseEvent:Disconnect()
  732. pressing = false
  733. end)
  734.  
  735. startNum = startNum + 1
  736. func(startNum)
  737. while pressing do
  738. if tick()-startTime > 0.3 then
  739. startNum = startNum + 1
  740. func(startNum)
  741. end
  742. wait(0.1)
  743. end
  744. end
  745. end)
  746.  
  747. frame.ArrowFrame.Up.InputEnded:Connect(function(input)
  748. if input.UserInputType == Enum.UserInputType.MouseMovement then
  749. frame.ArrowFrame.Up.BackgroundTransparency = 1
  750. end
  751. end)
  752.  
  753. frame.ArrowFrame.Down.InputBegan:Connect(function(input)
  754. if input.UserInputType == Enum.UserInputType.MouseMovement then
  755. frame.ArrowFrame.Down.BackgroundTransparency = 0.5
  756. elseif input.UserInputType == Enum.UserInputType.MouseButton1 then
  757. local releaseEvent,runEvent
  758.  
  759. local startTime = tick()
  760. local pressing = true
  761. local startNum = tonumber(frame.Text)
  762.  
  763. if not startNum then return end
  764.  
  765. releaseEvent = user.InputEnded:Connect(function(input)
  766. if input.UserInputType ~= Enum.UserInputType.MouseButton1 then return end
  767. releaseEvent:Disconnect()
  768. pressing = false
  769. end)
  770.  
  771. startNum = startNum - 1
  772. func(startNum)
  773. while pressing do
  774. if tick()-startTime > 0.3 then
  775. startNum = startNum - 1
  776. func(startNum)
  777. end
  778. wait(0.1)
  779. end
  780. end
  781. end)
  782.  
  783. frame.ArrowFrame.Down.InputEnded:Connect(function(input)
  784. if input.UserInputType == Enum.UserInputType.MouseMovement then
  785. frame.ArrowFrame.Down.BackgroundTransparency = 1
  786. end
  787. end)
  788. end
  789.  
  790. colorSpace.InputBegan:Connect(function(input)
  791. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  792. local releaseEvent,mouseEvent
  793.  
  794. releaseEvent = user.InputEnded:Connect(function(input)
  795. if input.UserInputType ~= Enum.UserInputType.MouseButton1 then return end
  796. releaseEvent:Disconnect()
  797. mouseEvent:Disconnect()
  798. end)
  799.  
  800. mouseEvent = user.InputChanged:Connect(function(input)
  801. if input.UserInputType == Enum.UserInputType.MouseMovement then
  802. colorSpaceInput()
  803. end
  804. end)
  805.  
  806. colorSpaceInput()
  807. end
  808. end)
  809.  
  810. colorStrip.InputBegan:Connect(function(input)
  811. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  812. local releaseEvent,mouseEvent
  813.  
  814. releaseEvent = user.InputEnded:Connect(function(input)
  815. if input.UserInputType ~= Enum.UserInputType.MouseButton1 then return end
  816. releaseEvent:Disconnect()
  817. mouseEvent:Disconnect()
  818. end)
  819.  
  820. mouseEvent = user.InputChanged:Connect(function(input)
  821. if input.UserInputType == Enum.UserInputType.MouseMovement then
  822. colorStripInput()
  823. end
  824. end)
  825.  
  826. colorStripInput()
  827. end
  828. end)
  829.  
  830. local function updateHue(str)
  831. local num = tonumber(str)
  832. if num then
  833. hue = math.clamp(math.floor(num),0,359)/359
  834. local hsvColor = Color3.fromHSV(hue,sat,val)
  835. red,green,blue = hsvColor.r,hsvColor.g,hsvColor.b
  836. hueInput.Text = tostring(hue*359)
  837. updateColor(1)
  838. end
  839. end
  840. hueInput.FocusLost:Connect(function() updateHue(hueInput.Text) end) hookButtons(hueInput,updateHue)
  841.  
  842. local function updateSat(str)
  843. local num = tonumber(str)
  844. if num then
  845. sat = math.clamp(math.floor(num),0,255)/255
  846. local hsvColor = Color3.fromHSV(hue,sat,val)
  847. red,green,blue = hsvColor.r,hsvColor.g,hsvColor.b
  848. satInput.Text = tostring(sat*255)
  849. updateColor(1)
  850. end
  851. end
  852. satInput.FocusLost:Connect(function() updateSat(satInput.Text) end) hookButtons(satInput,updateSat)
  853.  
  854. local function updateVal(str)
  855. local num = tonumber(str)
  856. if num then
  857. val = math.clamp(math.floor(num),0,255)/255
  858. local hsvColor = Color3.fromHSV(hue,sat,val)
  859. red,green,blue = hsvColor.r,hsvColor.g,hsvColor.b
  860. valInput.Text = tostring(val*255)
  861. updateColor(1)
  862. end
  863. end
  864. valInput.FocusLost:Connect(function() updateVal(valInput.Text) end) hookButtons(valInput,updateVal)
  865.  
  866. local function updateRed(str)
  867. local num = tonumber(str)
  868. if num then
  869. red = math.clamp(math.floor(num),0,255)/255
  870. local newColor = Color3.new(red,green,blue)
  871. hue,sat,val = Color3.toHSV(newColor)
  872. redInput.Text = tostring(red*255)
  873. updateColor(2)
  874. end
  875. end
  876. redInput.FocusLost:Connect(function() updateRed(redInput.Text) end) hookButtons(redInput,updateRed)
  877.  
  878. local function updateGreen(str)
  879. local num = tonumber(str)
  880. if num then
  881. green = math.clamp(math.floor(num),0,255)/255
  882. local newColor = Color3.new(red,green,blue)
  883. hue,sat,val = Color3.toHSV(newColor)
  884. greenInput.Text = tostring(green*255)
  885. updateColor(2)
  886. end
  887. end
  888. greenInput.FocusLost:Connect(function() updateGreen(greenInput.Text) end) hookButtons(greenInput,updateGreen)
  889.  
  890. local function updateBlue(str)
  891. local num = tonumber(str)
  892. if num then
  893. blue = math.clamp(math.floor(num),0,255)/255
  894. local newColor = Color3.new(red,green,blue)
  895. hue,sat,val = Color3.toHSV(newColor)
  896. blueInput.Text = tostring(blue*255)
  897. updateColor(2)
  898. end
  899. end
  900. blueInput.FocusLost:Connect(function() updateBlue(blueInput.Text) end) hookButtons(blueInput,updateBlue)
  901.  
  902. local colorChoice = Instance.new("TextButton")
  903. colorChoice.Name = "Choice"
  904. colorChoice.Size = UDim2.new(0,25,0,18)
  905. colorChoice.BorderColor3 = Color3.new(96/255,96/255,96/255)
  906. colorChoice.Text = ""
  907. colorChoice.AutoButtonColor = false
  908.  
  909. local row = 0
  910. local column = 0
  911. for i,v in pairs(basicColors) do
  912. local newColor = colorChoice:Clone()
  913. newColor.BackgroundColor3 = v
  914. newColor.Position = UDim2.new(0,1 + 30*column,0,21 + 23*row)
  915.  
  916. newColor.MouseButton1Click:Connect(function()
  917. red,green,blue = v.r,v.g,v.b
  918. local newColor = Color3.new(red,green,blue)
  919. hue,sat,val = Color3.toHSV(newColor)
  920. updateColor()
  921. end)
  922.  
  923. newColor.Parent = basicColorsFrame
  924. column = column + 1
  925. if column == 6 then row = row + 1 column = 0 end
  926. end
  927.  
  928. row = 0
  929. column = 0
  930. for i = 1,12 do
  931. local color = customColors[i] or Color3.new(0,0,0)
  932. local newColor = colorChoice:Clone()
  933. newColor.BackgroundColor3 = color
  934. newColor.Position = UDim2.new(0,1 + 30*column,0,20 + 23*row)
  935.  
  936. newColor.MouseButton1Click:Connect(function()
  937. local curColor = customColors[i] or Color3.new(0,0,0)
  938. red,green,blue = curColor.r,curColor.g,curColor.b
  939. hue,sat,val = Color3.toHSV(curColor)
  940. updateColor()
  941. end)
  942.  
  943. newColor.MouseButton2Click:Connect(function()
  944. customColors[i] = chosenColor
  945. newColor.BackgroundColor3 = chosenColor
  946. end)
  947.  
  948. newColor.Parent = customColorsFrame
  949. column = column + 1
  950. if column == 6 then row = row + 1 column = 0 end
  951. end
  952.  
  953. pickerTopBar.InputBegan:Connect(function(input)
  954. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  955. local releaseEvent,mouseEvent
  956. local dragOffX,dragOffY = mouse.X-pickerTopBar.AbsolutePosition.X,mouse.Y-pickerTopBar.AbsolutePosition.Y
  957.  
  958. releaseEvent = user.InputEnded:Connect(function(input)
  959. if input.UserInputType ~= Enum.UserInputType.MouseButton1 then return end
  960. releaseEvent:Disconnect()
  961. mouseEvent:Disconnect()
  962. end)
  963.  
  964. mouseEvent = user.InputChanged:Connect(function(input)
  965. if input.UserInputType == Enum.UserInputType.MouseMovement then
  966. pickerGui.Position = UDim2.new(0,mouse.X-dragOffX,0,mouse.Y-dragOffY)
  967. end
  968. end)
  969. end
  970. end)
  971.  
  972. okButton.MouseButton1Click:Connect(function() if newMt.Confirm then newMt:Confirm(chosenColor) end pickerGui.Visible = false savedColor = chosenColor colorPickerOpen = false end)
  973. okButton.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement then okButton.BackgroundTransparency = 0.4 end end)
  974. okButton.InputEnded:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement then okButton.BackgroundTransparency = 0 end end)
  975.  
  976. cancelButton.MouseButton1Click:Connect(function() if newMt.Cancel then newMt:Cancel() end pickerGui.Visible = false updateBack(savedColor, backDrop) colorPickerOpen = false end)
  977. cancelButton.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement then cancelButton.BackgroundTransparency = 0.4 end end)
  978. cancelButton.InputEnded:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement then cancelButton.BackgroundTransparency = 0 end end)
  979.  
  980. closeButton.MouseButton1Click:Connect(function() pickerGui.Visible = false updateBack(savedColor, backDrop) colorPickerOpen = false end)
  981.  
  982. updateColor()
  983.  
  984. newMt.SetColor = function(self,color)
  985. red,green,blue = color.r,color.g,color.b
  986. hue,sat,val = Color3.toHSV(color)
  987. updateColor()
  988. end
  989.  
  990. newMt.Gui = rootGui
  991.  
  992. return newMt
  993. end
  994. end
  995.  
  996. local rainbowColors = {
  997. Color3.fromRGB(0, 0, 255),
  998. Color3.fromRGB(255, 0, 0),
  999. Color3.fromRGB(255, 255, 0),
  1000. Color3.fromRGB(0, 255, 0),
  1001. Color3.fromRGB(0, 255, 255),
  1002. }
  1003.  
  1004. local rainbow = false
  1005. local customRainbow = false
  1006. local rainbowReset = false
  1007. local rainbowStart = 1
  1008. local currentRainbow = nil
  1009.  
  1010. spawn(function()
  1011. while wait() do
  1012. if rainbow == true then
  1013. for i,v in pairs(rainbowColors) do
  1014. local start = rainbowColors[i]
  1015. local rEnd = i + 1
  1016. if not rainbowColors[rEnd] then
  1017. rEnd = 1
  1018. end
  1019. if customRainbow == true then
  1020. local back = screenGui.Top.Main.BackgroundColor3
  1021. start = back
  1022. end
  1023. for num = rainbowCount, 1, -1 do
  1024. currentRainbow = start:Lerp(rainbowColors[rEnd], (rainbowCount - num)/rainbowCount)
  1025. if rainbow == true then
  1026. updateBack(currentRainbow)
  1027. else
  1028. break
  1029. end
  1030. wait()
  1031. end
  1032. customRainbow = false
  1033. end
  1034. if rainbowReset == true then
  1035. rainbowReset = false
  1036. rainbow = false
  1037. currentRainbow = screenGui.Top.Main.BackgroundColor3
  1038. for num = rainbowCount, 1, -1 do
  1039. currentRainbow = currentRainbow:Lerp(savedColor, (rainbowCount - num)/rainbowCount)
  1040. updateBack(currentRainbow)
  1041. if rainbow == true then
  1042. rainbowReset = false
  1043. break
  1044. end
  1045. wait()
  1046. end
  1047. wait()
  1048. end
  1049. end
  1050. end
  1051. end)
  1052.  
  1053. --Intro
  1054. screenGui = Instance.new("ScreenGui")
  1055. screenGui.Parent = coreGui
  1056. screenGui.Name = "Introooo"
  1057. screenGui.Enabled = false
  1058.  
  1059. createFrame(false, Color3.fromRGB(59, 59, 59), 0, 0, true, "Intro", screenGui, UDim2.new(0.5, -188, 0.5, -84), UDim2.new(0, 376, 0, 169))
  1060.  
  1061. createTextLabel(Color3.fromRGB(84, 84, 84), 0, 0, Enum.Font.SourceSansBold, "Top", screenGui.Intro, UDim2.new(0, 0, 0, 0), UDim2.new(0, 376, 0, 25), "</> Rose Hub </>", Color3.fromRGB(255, 255, 255), 25, true, Enum.TextXAlignment.Center, Enum.TextYAlignment.Top, 1)
  1062.  
  1063. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Intro.Top, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1064.  
  1065. createTextLabel(Color3.fromRGB(255, 255, 255), 1, 1, Enum.Font.SourceSansBold, "Loading", screenGui.Intro, UDim2.new(0, 88, 0, 139), UDim2.new(0, 200, 0, 30), "Loading...", Color3.fromRGB(255, 255, 255), 20, false, Enum.TextXAlignment.Center, Enum.TextYAlignment.Center, 1)
  1066.  
  1067. createTextLabel(Color3.fromRGB(255, 255, 255), 1, 1, Enum.Font.SourceSansBold, "Motto", screenGui.Intro, UDim2.new(0, 88, 0, 25), UDim2.new(0, 200, 0, 33), "MOTD: "..message.."", Color3.fromRGB(255, 255, 255), 17, false, Enum.TextXAlignment.Center, Enum.TextYAlignment.Center, 1)
  1068.  
  1069. createFrame(false, Color3.fromRGB(255, 255, 255), 0.65, 1, false, "Background", screenGui.Intro, UDim2.new(0, 19, 0, 75), UDim2.new(0, 338, 0, 33))
  1070.  
  1071. createFrame(false, Color3.fromRGB(255, 255, 255), 0, 0, false, "Bar", screenGui.Intro.Background, UDim2.new(0, 0, 0, 0), UDim2.new(0, 0, 0, 33))
  1072.  
  1073. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Intro.Background, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1074.  
  1075. tweening = true
  1076.  
  1077. screenGui.Intro.Size = UDim2.new(0, 0, 0, 25)
  1078.  
  1079. wait()
  1080.  
  1081. screenGui.Enabled = true
  1082.  
  1083. screenGui.Intro:TweenSize(UDim2.new(0, 376, 0, 25), "Out", "Quad", 0.5)
  1084.  
  1085. wait(0.5)
  1086. wait()
  1087.  
  1088. screenGui.Intro:TweenSize(UDim2.new(0, 376, 0, 169), "Out", "Quad", 0.5)
  1089.  
  1090. wait(0.5)
  1091.  
  1092. screenGui.Intro.Background.Bar:TweenSize(UDim2.new(1, 0, 0, 33), "Out", "Quad", 3)
  1093.  
  1094. intro = screenGui
  1095.  
  1096. --Create Gui
  1097. gui = Instance.new("ScreenGui")
  1098. gui.Parent = coreGui
  1099. gui.Name = "RoseHub"
  1100. gui.Enabled = false
  1101.  
  1102. local uiScale = Instance.new("UIScale")
  1103. uiScale.Scale = 1.1
  1104. uiScale.Parent = gui
  1105.  
  1106. createFrame(true, Color3.fromRGB(255, 255, 255), 1, 0, false, "Main", gui, UDim2.new(0.5, -180, 0.5, -172), UDim2.new(0, 361, 0, 344))
  1107.  
  1108. gui.Main.Active = true
  1109. gui.Main.Draggable = true
  1110. gui.Main.ClipsDescendants = true
  1111.  
  1112. createTextButton(Color3.fromRGB(84, 84, 84), 0, 0, Enum.Font.SourceSansBold, "Open", gui, UDim2.new(0, 0, 0.75, 0), UDim2.new(0, 75, 0, 30), "Open", textColor, 14, 1, function()
  1113. if tweening == false then
  1114. tweening = true
  1115. gui.Open:TweenPosition(UDim2.new(0, -75, 0.75, 0), "Out", "Quad", 0.25)
  1116. wait(0.25)
  1117. gui.Main:TweenSize(UDim2.new(0, 361, 0, 31), "Out", "Quad", 0.5)
  1118. wait(0.5)
  1119. wait()
  1120. gui.Main:TweenSize(UDim2.new(0, 361, 0, 347), "Out", "Quad", 0.5)
  1121. wait(0.5)
  1122. tweening = false
  1123. end
  1124. end)
  1125.  
  1126. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", gui.Open, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1127.  
  1128. screenGui = gui.Main
  1129.  
  1130. createFrame(true, Color3.fromRGB(84, 84, 84), 0, 0, false, "Top", screenGui, UDim2.new(0, 0, 0, 0), UDim2.new(0, 361, 0, 31))
  1131. createFrame(false, savedColor, 0, 0, false, "Main", screenGui.Top, UDim2.new(0, 0, 0.984, 0), UDim2.new(0, 361, 0, 313))
  1132.  
  1133. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Main, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1134.  
  1135. createFrame(false, Color3.fromRGB(117, 117, 117), 0.5, 0, false, "Tabs", screenGui.Top, UDim2.new(0, 0, 1, 0), UDim2.new(0, 110, 0, 313))
  1136.  
  1137. createFrame(false, backColor, 1, 0, true, "Important", screenGui.Top, UDim2.new(0.36, 0, 1.516, 0), UDim2.new(0, 211, 0, 281))
  1138.  
  1139. local underline = createFrame(false, backColor, 0, 0, false, "Frame", screenGui.Top.Tabs, UDim2.new(0, 20, 0, 25), UDim2.new(0, 70, 0, 2))
  1140.  
  1141. --Create Tabs Function
  1142. local tabPos = 0
  1143. local oldTab = tabs[1]
  1144. for _,tab in pairs(tabs) do
  1145. local tabFrame = createFrame(false, Color3.fromRGB(117, 117, 117), 0.75, 0, false, tab.."Tab", screenGui.Top.Important, UDim2.new(-1, 0, 0, 0), UDim2.new(0, 211, 0, 281))
  1146. local tweenPos = tabPos + 22
  1147. createTextButton(backColor, 1, 1, Enum.Font.SourceSansBold, tab, screenGui.Top.Tabs, UDim2.new(0, 0, 0, tabPos), UDim2.new(0, 110, 0, 26), tab, textColor, 14, 1, function()
  1148. if tweening == false and tab ~= oldTab then
  1149. tweening = true
  1150. underline:TweenSizeAndPosition(UDim2.new(0, 2, 0, 0), UDim2.new(0, 55, 0, underline.Position.Y.Offset), "Out", "Quad", tweenSpeed)
  1151. local newUnderline = createFrame(false, backColor, 0, 0, false, "Frame", screenGui.Top.Tabs, UDim2.new(0, 55, 0, tweenPos), UDim2.new(0, 0, 0, 2))
  1152. newUnderline:TweenSizeAndPosition(UDim2.new(0, screenGui.Top.Tabs[tab].TextBounds.X, 0, 2), UDim2.new(0, 55 - screenGui.Top.Tabs[tab].TextBounds.X/2, 0, tweenPos), "Out", "Quad", tweenSpeed)
  1153. screenGui.Top.Important[oldTab.."Tab"]:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Quad", tweenSpeed)
  1154. screenGui.Top.Important[tab.."Tab"]:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Quad", tweenSpeed)
  1155. screenGui.Top.CurrentTab:TweenSize(UDim2.new(0, 0, 0, 31), "Out", "Quad", tweenSpeed/2)
  1156. wait(tweenSpeed/2)
  1157. screenGui.Top.CurrentTab.Label.Text = tab
  1158. screenGui.Top.CurrentTab:TweenSize(UDim2.new(0, 109, 0, 31), "Out", "Quad", tweenSpeed/2)
  1159. wait(tweenSpeed/2)
  1160. screenGui.Top.Important[oldTab.."Tab"].Position = UDim2.new(-1, 0, 0, 0)
  1161. underline:Destroy()
  1162. underline = newUnderline
  1163. oldTab = tab
  1164. tweening = false
  1165. end
  1166. end)
  1167. tabPos = tabPos + 26
  1168. end
  1169. screenGui.Top.Important[tabs[1].."Tab"].Position = UDim2.new(0, 0, 0, 0)
  1170. underline.Size = UDim2.new(0, screenGui.Top.Tabs[tabs[1]].TextBounds.X, 0, 2)
  1171. underline.Position = UDim2.new(0, 55 - screenGui.Top.Tabs[tabs[1]].TextBounds.X/2, 0, 22)
  1172.  
  1173. createTextLabel(backColor, 1, 1, Enum.Font.SourceSansBold, "Name", screenGui.Top, UDim2.new(0, 45, 0, 0), UDim2.new(0, 109, 1, 0), "Rose Hub "..VERSION, textColor, 18, true, Enum.TextXAlignment.Left, Enum.TextYAlignment.Center, 1)
  1174.  
  1175. createTextButton(backColor, 1, 0, Enum.Font.SourceSansBold, "Close", screenGui.Top, UDim2.new(0.898, 0, 0, 0), UDim2.new(0, 36, 0, 31), "X", textColor, 18, 1, function()
  1176. if tweening == false then
  1177. tweening = true
  1178. gui.Main:TweenSize(UDim2.new(0, 361, 0, 31), "Out", "Quad", 0.5)
  1179. wait(0.5)
  1180. gui.Main:TweenSize(UDim2.new(0, 0, 0, 31), "Out", "Quad", 0.5)
  1181. wait(0.5)
  1182. wait()
  1183. gui.Open:TweenPosition(UDim2.new(0, 0, 0.75, 0), "Out", "Quad", 0.25)
  1184. wait(0.25)
  1185. tweening = false
  1186. end
  1187. end)
  1188.  
  1189. local singleImageButton = Instance.new("ImageButton")
  1190. singleImageButton.BackgroundColor3 = backColor
  1191. singleImageButton.BackgroundTransparency = 1
  1192. singleImageButton.Image = "rbxassetid://708157521"
  1193. singleImageButton.Parent = screenGui.Top
  1194. singleImageButton.Position = UDim2.new(0.033, 0, 0.129, 0)
  1195. singleImageButton.ScaleType = Enum.ScaleType.Fit
  1196. singleImageButton.Size = UDim2.new(0, 24, 0, 23)
  1197. singleImageButton.MouseButton1Down:Connect(function()
  1198. --Stuff
  1199. end)
  1200.  
  1201. --Home Tab
  1202. createTextLabel(backColor, 1, 1, Enum.Font.SourceSansBold, "Part1", screenGui.Top.Important.HomeTab, UDim2.new(0.024, 0, 0.009, 0), UDim2.new(0, 200, 0, 50), "Welcome to Rose Hub!", textColor, 20, false, Enum.TextXAlignment.Center, Enum.TextYAlignment.Center, 1)
  1203.  
  1204. createTextButton(backColor, 0.75, 0, Enum.Font.SourceSansBold, "Discord", screenGui.Top.Important.HomeTab, UDim2.new(0.024, 0, 0.721, 0), UDim2.new(0, 200, 0, 50), "Discord Server:\nhttps://discord.me/rosehub", textColor, 14, 1, function()
  1205. local copy = true
  1206. if pcall(function() Synapse:Copy("http://discord.me/rosehub") end) then
  1207.  
  1208. else
  1209. local copy2 = setclipboard or Clipboard.set
  1210. copy2("http://discord.me/rosehub")
  1211.  
  1212. end
  1213.  
  1214. screenGui.Top.Important.HomeTab.Discord.Text = "Copied!"
  1215. wait(2)
  1216. screenGui.Top.Important.HomeTab.Discord.Text = "Discord Server:\nhttps://discord.me/rosehub"
  1217. end)
  1218.  
  1219. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.HomeTab.Discord, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1220.  
  1221. createTextLabel(backColor, 1, 0, Enum.Font.SourceSans, "Explanation", screenGui.Top.Important.HomeTab, UDim2.new(0, 0, 0.174, 0), UDim2.new(0, 211, 0, 141), [[To get started click the tabs to find what scripts your looking for.
  1222. The scrolling bar is invisible so to scroll use your scroll wheel.
  1223.  
  1224. Want scripts or features added?
  1225.  
  1226. Join our Discord for Support donations and more!]], textColor, 14, true, Enum.TextXAlignment.Center, Enum.TextYAlignment.Top, 4)
  1227.  
  1228. --All Script Tabs
  1229. --Sort lists and insert them
  1230. for _,list in pairs(lists) do
  1231. local toSort = {}
  1232. local sortedList = {}
  1233. local pos = 0
  1234.  
  1235. for _,v in pairs(list[1]) do
  1236. table.insert(toSort, v[1])
  1237. end
  1238.  
  1239. table.sort(toSort)
  1240.  
  1241. for i,name in pairs(toSort) do
  1242. for i,actualTable in pairs(list[1]) do
  1243. if name == actualTable[1] then
  1244. table.insert(sortedList, {actualTable[1], actualTable[2], actualTable[3]})
  1245. end
  1246. end
  1247. end
  1248.  
  1249. --Make Holding Frame
  1250. createScrollingFrame(backColor, 0.8, 0, "", UDim2.new(0, 0, 0, 0), "", "Holder", screenGui.Top.Important[list[2].."Tab"], UDim2.new(0, 10, 0, 38), 0, 0, false, UDim2.new(1, -20, 1, -48), "", true)
  1251.  
  1252. --Function to create the buttons
  1253. local function createButons(text)
  1254. pos = 5
  1255. for _,button in pairs(sortedList) do
  1256. if text == "" or string.match(string.lower(button[1]), string.lower(text)) then
  1257. createTextButton(backColor, mainTrans, 0, Enum.Font.SourceSans, button[1], screenGui.Top.Important[list[2].."Tab"].Holder, UDim2.new(0, 5, 0, pos), UDim2.new(0, 181, 0, 20), button[1], textColor, 14, 1, function()
  1258. if button[3] == 1 then
  1259. loadstring(game:HttpGet("https://pastebin.com/raw/"..button[2], true))()
  1260. elseif button[3] == 2 then
  1261. loadstring(game:GetObjects("rbxassetid://"..button[2])[1].Source)()
  1262. end
  1263. end)
  1264. pos = pos + 23
  1265. end
  1266. end
  1267. end
  1268.  
  1269. --Remove Buttons and create new on search
  1270. local function removeButtons()
  1271. for _,button in pairs(screenGui.Top.Important[list[2].."Tab"].Holder:GetChildren()) do
  1272. button:Destroy()
  1273. end
  1274. end
  1275.  
  1276. --Search Function
  1277. createTextBox(backColor, mainTrans, 0, Enum.Font.SourceSans, "Search", screenGui.Top.Important[list[2].."Tab"], "Search "..list[2], UDim2.new(0, 10, 0, 10), UDim2.new(1, -20, 0, 22), "", textColor, 14, false, Enum.TextXAlignment.Center, Enum.TextYAlignment.Center)
  1278. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important[list[2].."Tab"].Search, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1279. screenGui.Top.Important[list[2].."Tab"].Search.PlaceholderColor3 = textColor
  1280. screenGui.Top.Important[list[2].."Tab"].Search.PlaceholderText = "Search "..list[2]
  1281. local function searchBar(chosenList)
  1282. local search = screenGui.Top.Important[chosenList.."Tab"].Search
  1283. local currentSearch = ""
  1284. search.Changed:connect(function(property)
  1285. if property == "Text" then
  1286. if search.Text ~= "" and search.Text ~= currentSearch then
  1287. currentSearch = search.Text
  1288. removeButtons()
  1289. createButons(search.Text)
  1290. elseif search.Text == "" and currentSearch.Text ~= "" then
  1291. currentSearch = search.Text
  1292. removeButtons()
  1293. createButons("")
  1294. end
  1295. end
  1296. end)
  1297. end
  1298.  
  1299. searchBar(list[2])
  1300.  
  1301. --Create Buttons with no search
  1302. createButons("")
  1303.  
  1304. screenGui.Top.Important[list[2].."Tab"].Holder.CanvasSize = UDim2.new(1, 0, 0, pos + 2)
  1305. end
  1306.  
  1307. --Executor Tab
  1308. local movedExec = false
  1309. local movingText = false
  1310.  
  1311. local execHolder = createScrollingFrame(backColor, mainTrans, 0, "rbxasset://textures/ui/Scroll/scroll-bottom.png", UDim2.new(0, 0, 0, 0), "rbxasset://textures/ui/Scroll/scroll-middle.png", "Holder", screenGui.Top.Important.ExecutorTab, UDim2.new(0, 10, 0, 10), 0, 10, false, UDim2.new(1, -20, 1, -56), "rbxasset://textures/ui/Scroll/scroll-top.png", true)
  1312. execHolder.Changed:connect(function(property)
  1313. if property == "CanvasPosition" then
  1314. if movingText == false then
  1315. if execInput.TextBounds.Y - execHolder.CanvasPosition.Y <= 201 then
  1316. movedExec = false
  1317. else
  1318. movedExec = true
  1319. end
  1320. end
  1321. end
  1322. end)
  1323.  
  1324. createTextButton(backColor, mainTrans, 0, Enum.Font.SourceSansBold, "execute", screenGui.Top.Important.ExecutorTab, UDim2.new(0, 10, 1, -41), UDim2.new(0, 93, 0, 31), "Execute", textColor, 15, 3, function()
  1325. pcall(function()
  1326. loadstring(execInput.Text)()
  1327. end)
  1328. end)
  1329.  
  1330. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.ExecutorTab.execute, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1331.  
  1332. createTextButton(backColor, mainTrans, 0, Enum.Font.SourceSansBold, "clear", screenGui.Top.Important.ExecutorTab, UDim2.new(0, 108, 1, -41), UDim2.new(0, 93, 0, 31), "Clear", textColor, 15, 3, function()
  1333. execInput.Text = ""
  1334. end)
  1335.  
  1336. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.ExecutorTab.clear, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1337.  
  1338. execInput = createTextBox(backColor, 1, 0, Enum.Font.SourceSans, "input", screenGui.Top.Important.ExecutorTab.Holder, "Input script here...", UDim2.new(0, 10, 0, 10), UDim2.new(0, 170, 1, 0), "", textColor, 14, true, Enum.TextXAlignment.Left, Enum.TextYAlignment.Top)
  1339. execInput.ClearTextOnFocus = false
  1340. execInput.MultiLine = true
  1341. execInput.Changed:connect(function(property)
  1342. if property == "Text" then
  1343. movingText = true
  1344. execHolder.CanvasSize = UDim2.new(1, -20, 0, execInput.TextBounds.Y + execInput.TextSize + 10)
  1345. if movedExec == false and execInput.TextBounds.Y - execHolder.CanvasPosition.Y >= 205 then
  1346. execHolder.CanvasPosition = Vector2.new(0, execInput.TextBounds.Y + 224 + execInput.TextSize + 10)
  1347. movedExec = false
  1348. elseif movedExec == true and execInput.TextBounds.Y < 224 then
  1349. movedExec = false
  1350. end
  1351. movingText = false
  1352. end
  1353. end)
  1354.  
  1355. --Settings
  1356. createTextButton(backColor, mainTrans, 0, Enum.Font.SourceSansBold, "colorpickopen", screenGui.Top.Important.SettingsTab, UDim2.new(0, 10, 0, 10), UDim2.new(0, 93, 0, 31), "Color Picker", textColor, 15, 3, function()
  1357. if colorPickerOpen == false then
  1358. colorPickerOpen = true
  1359. if rainbow == true then
  1360. rainbow = false
  1361. rainbowReset = true
  1362. end
  1363. if pickerCreated ~= true then
  1364. ColorPicker.new()
  1365. else
  1366. pickerGui.Visible = true
  1367. end
  1368. end
  1369. end)
  1370.  
  1371. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.SettingsTab.colorpickopen, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1372.  
  1373. createTextButton(backColor, mainTrans, 0, Enum.Font.SourceSansBold, "ResetGui", screenGui.Top.Important.SettingsTab, UDim2.new(0, 108, 0, 10), UDim2.new(0, 93, 0, 31), "Reset Gui", textColor, 15, 3, function()
  1374. rainbowReset = true
  1375. rainbow = false
  1376. rainbowCount = 75
  1377. changeColorPickerBack = true
  1378. backDrop.BackgroundColor3 = Color3.fromRGB(59, 59, 59)
  1379. updateBack(Color3.fromRGB(59, 59, 59))
  1380. savedColor = Color3.fromRGB(59, 59, 59)
  1381. end)
  1382.  
  1383. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.SettingsTab.ResetGui, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1384.  
  1385. createFrame(false, backColor, mainTrans, 0, false, "RainbowFrame", screenGui.Top.Important.SettingsTab, UDim2.new(0, 10, 0, 46), UDim2.new(1, -20, 0, 111))
  1386.  
  1387. createTextLabel(backColor, mainTrans, 0, Enum.Font.SourceSansBold, "SpeedLabel", screenGui.Top.Important.SettingsTab.RainbowFrame, UDim2.new(0, 10, 0, 46), UDim2.new(0, 90, 0, 25), "Speed: "..tostring(rainbowCount), textColor, 15, false, Enum.TextXAlignment.Center, Enum.TextYAlignment.Center, 1)
  1388.  
  1389. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.SettingsTab.RainbowFrame.SpeedLabel, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1390.  
  1391. createTextButton(backColor, mainTrans, 0, Enum.Font.SourceSansBold, "RainbowSet", screenGui.Top.Important.SettingsTab.RainbowFrame, UDim2.new(0, 135, 0, 46), UDim2.new(0, 44, 0, 25), "Set", textColor, 15, 3, function()
  1392. local speed = screenGui.Top.Important.SettingsTab.RainbowFrame.RainbowBox.Text
  1393. if tonumber(speed) and tonumber(speed) >= 1 then
  1394. rainbowCount = tonumber(speed)
  1395. screenGui.Top.Important.SettingsTab.RainbowFrame.SpeedLabel.Text = "Speed: "..tostring(speed)
  1396. end
  1397. end)
  1398.  
  1399. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.SettingsTab.RainbowFrame.RainbowSet, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1400.  
  1401. createTextBox(backColor, mainTrans, 0, Enum.Font.SourceSansBold, "RainbowBox", screenGui.Top.Important.SettingsTab.RainbowFrame, "", UDim2.new(0, 105, 0, 46), UDim2.new(0, 25, 0, 25), tostring(rainbowCount), textColor, 15, false, Enum.TextXAlignment.Center, Enum.TextYAlignment.Center, true)
  1402.  
  1403. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.SettingsTab.RainbowFrame.RainbowBox, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1404.  
  1405. createTextLabel(backColor, mainTrans, 0, Enum.Font.SourceSansBold, "RainbowLabel", screenGui.Top.Important.SettingsTab.RainbowFrame, UDim2.new(0, 10, 0, 10), UDim2.new(0, 170, 0, 31), "Rainbow Background", textColor, 15, false, Enum.TextXAlignment.Center, Enum.TextYAlignment.Center, 1)
  1406.  
  1407. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.SettingsTab.RainbowFrame.RainbowLabel, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1408.  
  1409. createTextButton(backColor, mainTrans, 0, Enum.Font.SourceSansBold, "RainbowOn", screenGui.Top.Important.SettingsTab.RainbowFrame, UDim2.new(0, 10, 0, 76), UDim2.new(0, 83, 0, 25), "Enabled", textColor, 15, 3, function()
  1410. if rainbow == false and colorPickerOpen == false then
  1411. customRainbow = true
  1412. rainbow = true
  1413. rainbowReset = false
  1414. end
  1415. end)
  1416.  
  1417. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.SettingsTab.RainbowFrame.RainbowOn, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1418.  
  1419. createTextButton(backColor, mainTrans, 0, Enum.Font.SourceSansBold, "RainbowOff", screenGui.Top.Important.SettingsTab.RainbowFrame, UDim2.new(0, 98, 0, 76), UDim2.new(0, 83, 0, 25), "Disabled", textColor, 15, 3, function()
  1420. if rainbow == true and colorPickerOpen == false then
  1421. rainbow = false
  1422. rainbowReset = true
  1423. end
  1424. end)
  1425.  
  1426. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.SettingsTab.RainbowFrame.RainbowOff, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1427.  
  1428. createTextLabel(backColor, mainTrans, 0, Enum.Font.SourceSans, "ColorPickerBackgroundChangeLabel", screenGui.Top.Important.SettingsTab, UDim2.new(0, 10,0, 162), UDim2.new(1, -20, 0, 31), "Change Color Picker Background", textColor, 15, false, Enum.TextXAlignment.Center, Enum.TextYAlignment.Center, 1)
  1429.  
  1430. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.SettingsTab.ColorPickerBackgroundChangeLabel, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1431.  
  1432. createTextButton(backColor, mainTrans, 0, Enum.Font.SourceSansBold, "PickerBackgroundOn", screenGui.Top.Important.SettingsTab, UDim2.new(0, 10, 0, 198), UDim2.new(0, 93, 0, 25), "Enabled", textColor, 15, 1, function()
  1433. if changeColorPickerBack == false then
  1434. changeColorPickerBack = true
  1435. end
  1436. end)
  1437.  
  1438. createTextButton(backColor, mainTrans, 0, Enum.Font.SourceSansBold, "PickerBackgroundOff", screenGui.Top.Important.SettingsTab, UDim2.new(0, 108, 0, 198), UDim2.new(0, 93, 0, 25), "Disabled", textColor, 15, 1, function()
  1439. if changeColorPickerBack == true then
  1440. changeColorPickerBack = false
  1441. end
  1442. end)
  1443.  
  1444. createTextButton(backColor, mainTrans, 0, Enum.Font.SourceSansBold, "SaveSettings", screenGui.Top.Important.SettingsTab, UDim2.new(0, 10, 0, 228), UDim2.new(1, -20, 0, 31), "Save Settings", textColor, 15, 3, function()
  1445. if savingSettings == false then
  1446. savingSettings = true
  1447. if writefile then
  1448. local back = colorPickerBack
  1449. if backDrop then
  1450. back = backDrop.BackgroundColor3
  1451. end
  1452. saveSetting(savedColor, back, changeColorPickerBack, mainTrans, rainbow, rainbowCount)
  1453. screenGui.Top.Important.SettingsTab.SaveSettings.Text = "Settings Saved!"
  1454. wait(1)
  1455. else
  1456. screenGui.Top.Important.SettingsTab.SaveSettings.Text = "Exploit not Supported :("
  1457. wait(1)
  1458. end
  1459. screenGui.Top.Important.SettingsTab.SaveSettings.Text = "Save Settings"
  1460. savingSettings = false
  1461. end
  1462. end)
  1463.  
  1464. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.SettingsTab.SaveSettings, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1465.  
  1466. --Credits
  1467. createTextLabel(backColor, 1, 1, Enum.Font.Highway, "CreditsTxt", screenGui.Top.Important.CreditsTab, UDim2.new(0, 0, 0, 0), UDim2.new(1, 0, 1, 0), [[Humanoid/prism131
  1468.  
  1469. Zwolf#3762
  1470.  
  1471. Alex the Great#9740
  1472.  
  1473. tommie#0409
  1474.  
  1475. Zinnia#2257
  1476.  
  1477. Plutonus#0003]], textColor, 20, true, Enum.TextXAlignment.Center, Enum.TextYAlignment.Center, 1)
  1478.  
  1479. --Script Search
  1480. createTextButton(Color3.fromRGB(255, 255, 255), 0.7, 0, Enum.Font.SourceSansBold, "search", screenGui.Top.Important.ScriptSearchTab, UDim2.new(0.73, 0, 0.043, 0), UDim2.new(0, 50, 0, 28), "Search", Color3.fromRGB(255, 255, 255), 15, 3, function()
  1481.  
  1482. end)
  1483.  
  1484. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.ScriptSearchTab.search, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1485.  
  1486. createTextBox(Color3.fromRGB(255, 255, 255), 0.7, 0, Enum.Font.SourceSans, "scriptinput", screenGui.Top.Important.ScriptSearchTab, "", UDim2.new(0, 0, 0.046, 0), UDim2.new(0, 148, 0, 27), "", Color3.fromRGB(27, 42, 53), 14, false, Enum.TextXAlignment.Center, Enum.TextYAlignment.Center)
  1487.  
  1488. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.ScriptSearchTab.scriptinput, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1489.  
  1490. createTextButton(Color3.fromRGB(255, 255, 255), 0.7, 0, Enum.Font.SourceSansBold, "TextButton", screenGui.Top.Important.ScriptSearchTab, UDim2.new(0.028, 0, 0.164, 0), UDim2.new(0, 198, 0, 27), "", Color3.fromRGB(255, 255, 255), 14, 1, function()
  1491.  
  1492. end)
  1493.  
  1494. --Audios Tab
  1495. local volume = 1
  1496. local audioPage = 1
  1497.  
  1498. local function stopSounds()
  1499. for _,obj in pairs(lighting:GetChildren()) do
  1500. if obj:IsA("Sound") then
  1501. obj:Destroy()
  1502. end
  1503. end
  1504.  
  1505. for i,v in pairs(chat:GetChildren()) do
  1506. if v:IsA("Sound") then
  1507. v:Destroy()
  1508. end
  1509. end
  1510.  
  1511. for _,obj in pairs(workspace:GetChildren()) do
  1512. if obj:IsA("Sound") then
  1513. obj:Destroy()
  1514. end
  1515. end
  1516. end
  1517.  
  1518. local function playSong(id)
  1519. stopSounds()
  1520. local sound = Instance.new("Sound")
  1521. sound.Parent = lighting
  1522. sound.SoundId = "rbxassetid://"..tostring(id)
  1523. sound.Volume = volume
  1524. sound.Name = "RoseHubSound"
  1525. sound.Looped = true
  1526. sound.Playing = true
  1527. end
  1528.  
  1529. local audioHolder = createScrollingFrame(backColor, 0.8, 0, "", UDim2.new(0, 0, 0, 0), "", "Holder", screenGui.Top.Important.AudiosTab, UDim2.new(0, 10, 0, 96), 0, 0, false, UDim2.new(1, -20, 0, 145), "", true)
  1530.  
  1531. local audioInputBox = createTextBox(backColor, mainTrans, 0, Enum.Font.SourceSans, "audioinput", screenGui.Top.Important.AudiosTab, "Search Audios", UDim2.new(0, 10, 0, 10), UDim2.new(0, 140, 0, 25), "", textColor, 14, false, Enum.TextXAlignment.Center, Enum.TextYAlignment.Center)
  1532. audioInputBox.PlaceholderColor3 = textColor
  1533.  
  1534. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.AudiosTab.audioinput, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1535.  
  1536. createTextButton(backColor, mainTrans, 0, Enum.Font.SourceSansBold, "Stop", screenGui.Top.Important.AudiosTab, UDim2.new(0, 10, 0, 38), UDim2.new(0, 62, 0, 25), "Stop", textColor, 15, 1, function()
  1537. stopSounds()
  1538. end)
  1539.  
  1540. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.AudiosTab.Stop, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1541.  
  1542. local volumeBox = createTextBox(backColor, mainTrans, 0, Enum.Font.SourceSansBold, "VolumeBox", screenGui.Top.Important.AudiosTab, "Volume", UDim2.new(0, 75, 0, 38), UDim2.new(0, 61, 0, 25), "Volume", textColor, 14, false, Enum.TextXAlignment.Center, Enum.TextYAlignment.Center)
  1543.  
  1544. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.AudiosTab.VolumeBox, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1545.  
  1546. createTextButton(backColor, mainTrans, 0, Enum.Font.SourceSansBold, "Set", screenGui.Top.Important.AudiosTab, UDim2.new(0, 139, 0, 38), UDim2.new(0, 62, 0, 25), "Set", textColor, 15, 1, function()
  1547. if tonumber(volumeBox.Text) then
  1548. volume = tonumber(volumeBox.Text)
  1549. pcall(function()
  1550. lighting.RoseHubSound.Volume = volume
  1551. end)
  1552. end
  1553. end)
  1554.  
  1555. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.AudiosTab.Set, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1556.  
  1557. local currentSong = createTextLabel(backColor, mainTrans, 0, Enum.Font.SourceSans, "CurrentSong", screenGui.Top.Important.AudiosTab, UDim2.new(0, 10, 0, 66), UDim2.new(1, -20, 0, 25), "Current Song", textColor, 14, false, Enum.TextXAlignment.Center, Enum.TextYAlignment.Center, 1)
  1558.  
  1559. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.AudiosTab.CurrentSong, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1560.  
  1561. createTextButton(backColor, mainTrans, 0, Enum.Font.SourceSansBold, "PreviousPage", screenGui.Top.Important.AudiosTab, UDim2.new(0, 10, 0, 246), UDim2.new(0, 94, 0, 25), "Previous Page", textColor, 15, 1, function()
  1562. if audioPage > 1 then
  1563. audioPage = audioPage - 1
  1564. createAudios(audioPage)
  1565. end
  1566. end)
  1567.  
  1568. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.AudiosTab.PreviousPage, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1569.  
  1570. createTextButton(backColor, mainTrans, 0, Enum.Font.SourceSansBold, "NextPage", screenGui.Top.Important.AudiosTab, UDim2.new(0, 107, 0, 246), UDim2.new(0, 94, 0, 25), "Next Page", textColor, 15, 1, function()
  1571. audioPage = audioPage + 1
  1572. createAudios(audioPage)
  1573. end)
  1574.  
  1575. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.AudiosTab.NextPage, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1576.  
  1577. function createAudios(audioPage)
  1578. local audioKeyword = audioInputBox.Text
  1579. local json = "https://search.roblox.com/catalog/json?Category=Audio&Keyword="..audioKeyword.."&ResultsPerPage=25&PageNumber="..tostring(audioPage)
  1580. local gotJson = game:HttpGet(json, true)
  1581. local rawResult = httpService:JSONDecode(gotJson)
  1582. local pos = 5
  1583. for _,button in pairs(audioHolder:GetChildren()) do
  1584. button:Destroy()
  1585. end
  1586. for _,tab in pairs(rawResult) do
  1587. local scale = false
  1588. local button = createTextButton(backColor, mainTrans, 0, Enum.Font.SourceSans, tab.Name, screenGui.Top.Important.AudiosTab.Holder, UDim2.new(0, 5, 0, pos), UDim2.new(0, 181, 0, 20), tab.Name, textColor, 14, 1, function()
  1589. playSong(tab.AssetId)
  1590. currentSong.Text = tab.Name
  1591. currentSong.TextScaled = scale
  1592. end)
  1593. if button.TextBounds.X > button.Size.X.Offset then
  1594. button.TextScaled = true
  1595. scale = true
  1596. end
  1597. pos = pos + 23
  1598. end
  1599. audioHolder.CanvasSize = UDim2.new(0, 0, 0, pos + 2)
  1600. end
  1601.  
  1602. createTextButton(backColor, mainTrans, 0, Enum.Font.SourceSansBold, "search", screenGui.Top.Important.AudiosTab, UDim2.new(0, 153, 0, 10), UDim2.new(0, 48, 0, 25), "Search", textColor, 15, 3, function()
  1603. createAudios(1)
  1604. end)
  1605.  
  1606. --Remove pcall
  1607. pcall(function()
  1608. createAudios(1)
  1609. end)
  1610.  
  1611. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.AudiosTab.search, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1612.  
  1613. --Decals Tab
  1614. local decalsPage = 1
  1615.  
  1616. local decalsHolder = createScrollingFrame(backColor, 0.8, 0, "", UDim2.new(0, 0, 0, 0), "", "Holder", screenGui.Top.Important.DecalsTab, UDim2.new(0, 10, 0, 68), 0, 0, false, UDim2.new(1, -20, 0, 173), "", true)
  1617.  
  1618. createTextButton(backColor, mainTrans, 0, Enum.Font.SourceSansBold, "search", screenGui.Top.Important.DecalsTab, UDim2.new(0, 153, 0, 10), UDim2.new(0, 48, 0, 25), "Search", textColor, 15, 3, function()
  1619. createDecals(decalsPage)
  1620. end)
  1621.  
  1622. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.DecalsTab.search, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1623.  
  1624. local decalInput = createTextBox(backColor, mainTrans, 0, Enum.Font.SourceSans, "decalinput", screenGui.Top.Important.DecalsTab, "Search Decals", UDim2.new(0, 10, 0, 10), UDim2.new(0, 140, 0, 25), "", textColor, 14, false, Enum.TextXAlignment.Center, Enum.TextYAlignment.Center)
  1625. decalInput.PlaceholderColor3 = textColor
  1626.  
  1627. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.DecalsTab.decalinput, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1628.  
  1629. local selectedDecal = createTextLabel(backColor, mainTrans, 0, Enum.Font.SourceSans, "SelectedDecal", screenGui.Top.Important.DecalsTab, UDim2.new(0, 10, 0, 38), UDim2.new(1, -20, 0, 25), "Selected Decal", textColor, 14, false, Enum.TextXAlignment.Center, Enum.TextYAlignment.Center, 1)
  1630.  
  1631. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.DecalsTab.SelectedDecal, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1632.  
  1633. createTextButton(backColor, mainTrans, 0, Enum.Font.SourceSansBold, "PreviousPage", screenGui.Top.Important.DecalsTab, UDim2.new(0, 10, 0, 246), UDim2.new(0, 94, 0, 25), "Previous Page", textColor, 15, 1, function()
  1634. if decalsPage > 1 then
  1635. decalsPage = decalsPage - 1
  1636. createDecals(decalsPage)
  1637. end
  1638. end)
  1639.  
  1640. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.DecalsTab.PreviousPage, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1641.  
  1642. createTextButton(backColor, mainTrans, 0, Enum.Font.SourceSansBold, "NextPage", screenGui.Top.Important.DecalsTab, UDim2.new(0, 107, 0, 246), UDim2.new(0, 94, 0, 25), "Next Page", textColor, 15, 1, function()
  1643. decalsPage = decalsPage + 1
  1644. createDecals(decalsPage)
  1645. end)
  1646.  
  1647. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top.Important.DecalsTab.NextPage, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1648.  
  1649. function createDecals(decalsPage)
  1650. local decalsKeyword = decalInput.Text
  1651. local json = "https://search.roblox.com/catalog/json?Category=Decals&Keyword="..decalsKeyword.."&ResultsPerPage=50&PageNumber="..tostring(decalsPage)
  1652. local gotJson = game:HttpGet(json, true)
  1653. local rawResult = httpService:JSONDecode(gotJson)
  1654. local xPos = 5
  1655. local yPos = 5
  1656. local ran = 0
  1657. for _,button in pairs(decalsHolder:GetChildren()) do
  1658. button:Destroy()
  1659. end
  1660. for _,tab in pairs(rawResult) do
  1661. local singleImageButton = Instance.new("ImageButton")
  1662. singleImageButton.BackgroundColor3 = backColor
  1663. singleImageButton.BackgroundTransparency = 1
  1664. singleImageButton.BorderSizePixel = 0
  1665. singleImageButton.Image = "https://www.roblox.com/Thumbs/Asset.ashx?width=420&height=420&assetId="..tostring(tab.AssetId)
  1666. singleImageButton.Parent = screenGui.Top.Important.DecalsTab.Holder
  1667. singleImageButton.Position = UDim2.new(0, xPos, 0, yPos)
  1668. singleImageButton.ScaleType = Enum.ScaleType.Fit
  1669. singleImageButton.Size = UDim2.new(0, 89, 0, 89)
  1670. singleImageButton.MouseButton1Down:Connect(function()
  1671. local image = Instance.new("ImageLabel")
  1672. image.Parent = coreGui
  1673. image.Name = "DecalLoader"
  1674. local returnVal = nil
  1675. for i=1, 10 do
  1676. local test = pcall(function()
  1677. image.Image = "rbxassetid://"tostring(tab.AssetId)
  1678. end)
  1679. if test then
  1680. returnVal = i
  1681. break
  1682. end
  1683. end
  1684. if returnVal ~= nil then
  1685. selectedDecal.Text = tostring(tab.AssetId - returnVal)
  1686. end
  1687. end)
  1688. ran = ran + 1
  1689. xPos = xPos + 92
  1690. if ran == 2 then
  1691. ran = 0
  1692. xPos = 5
  1693. yPos = yPos + 92
  1694. end
  1695. end
  1696. decalsHolder.CanvasSize = UDim2.new(0, 0, 0, yPos + 2)
  1697. end
  1698. pcall(function()
  1699. createDecals(1)
  1700. end)
  1701.  
  1702. --Final Stuff
  1703. createImageLabel(1, "rbxasset://textures/ui/TopBar/dropshadow.png", "TopBarShadow", screenGui.Top, UDim2.new(0, 0, 1, 0), false, UDim2.new(1, 0, 0, 3), 4)
  1704.  
  1705. createFrame(false, backColor, 0, 0, false, "Frame", screenGui.Top, UDim2.new(0, 155, 0.194, 0), UDim2.new(0, 1, 0, 21))
  1706.  
  1707. createFrame(false, backColor, 1, 0, true, "CurrentTab", screenGui.Top, UDim2.new(0, 165, 0, 0), UDim2.new(0, 109, 0, 31))
  1708.  
  1709. createTextLabel(backColor, 1, 1, Enum.Font.SourceSansBold, "Label", screenGui.Top.CurrentTab, UDim2.new(0, 0, 0, 0), UDim2.new(0, 109, 0, 31), tabs[1], textColor, 18, true, Enum.TextXAlignment.Left, Enum.TextYAlignment.Center, 1)
  1710.  
  1711. updateBack(savedColor)
  1712.  
  1713. if enableRainbow == true then
  1714. customRainbow = true
  1715. rainbow = true
  1716. end
  1717.  
  1718. gui.Main.Size = UDim2.new(0, 0, 0, 31)
  1719. gui.Open.Position = UDim2.new(0, -75, 0.75, 0)
  1720.  
  1721. wait(3)
  1722.  
  1723. intro.Intro:TweenSize(UDim2.new(0, 376, 0, 25), "Out", "Quad", 0.5)
  1724. wait(0.5)
  1725. intro.Intro:TweenSize(UDim2.new(0, 0, 0, 25), "Out", "Quad", 0.5)
  1726.  
  1727. wait(0.5)
  1728.  
  1729. intro:Destroy()
  1730.  
  1731. gui.Enabled = true
  1732.  
  1733. gui.Open:TweenPosition(UDim2.new(0, 0, 0.75, 0), "Out", "Quad", 0.5)
  1734. wait(0.5)
  1735.  
  1736. tweening = false
  1737.  
  1738. print("Rose Hub process finished at " .. round(tick()-start) .. " milliseconds.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement