Advertisement
Psykek

Rose Hub

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