Advertisement
Aszab123

RoseHub V3

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