Advertisement
Achitsak

qqq

Mar 22nd, 2024
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 187.84 KB | None | 0 0
  1. repeat wait() until game:IsLoaded()
  2. repeat wait() until game:GetService("Players")
  3. repeat wait() until game:GetService("Players").LocalPlayer.Character:FindFirstChild("HumanoidRootPart")
  4. repeat wait() until game:GetService("Players").LocalPlayer.PlayerGui.Main.Enabled
  5.  
  6. local placeId = game.PlaceId
  7. if placeId == 2753915549 then
  8. First_Sea = true
  9. elseif placeId == 4442272183 then
  10. Second_Sea = true
  11. elseif placeId == 7449423635 then
  12. Third_Sea = true
  13. end
  14.  
  15. if game:GetService("CoreGui"):FindFirstChild("QuartyzLib") then
  16. game:GetService("CoreGui"):FindFirstChild("QuartyzLib"):Destroy()
  17. end
  18. local UserInputService = game:GetService("UserInputService")
  19. local TweenService = game:GetService("TweenService")
  20. local RunService = game:GetService("RunService")
  21. local LocalPlayer = game:GetService("Players").LocalPlayer
  22. local Mouse = LocalPlayer:GetMouse()
  23. local HttpService = game:GetService("HttpService")
  24.  
  25. local Solaris = Instance.new("ScreenGui")
  26. Solaris.Name = "QuartyzLib"
  27. Solaris.Parent = game:GetService("CoreGui")
  28. Solaris.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  29.  
  30. local function MakeDraggable(topbarobject, object)
  31. local Dragging = nil
  32. local DragInput = nil
  33. local DragStart = nil
  34. local StartPosition = nil
  35. local function Update(input)
  36. local Delta = input.Position - DragStart
  37. local pos = UDim2.new(StartPosition.X.Scale, StartPosition.X.Offset + Delta.X, StartPosition.Y.Scale, StartPosition.Y.Offset + Delta.Y)
  38. local Tween = TweenService:Create(object, TweenInfo.new(0.15), {Position = pos})
  39. Tween:Play()
  40. end
  41. topbarobject.InputBegan:Connect(function(input)
  42. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  43. Dragging = true
  44. DragStart = input.Position
  45. StartPosition = object.Position
  46. input.Changed:Connect(function()
  47. if input.UserInputState == Enum.UserInputState.End then
  48. Dragging = false
  49. end
  50. end)
  51. end
  52. end)
  53. topbarobject.InputChanged:Connect(function(input)
  54. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  55. DragInput = input
  56. end
  57. end)
  58. UserInputService.InputChanged:Connect(function(input)
  59. if input == DragInput and Dragging then
  60. Update(input)
  61. end
  62. end)
  63. end
  64.  
  65. function Ripple(Object)
  66. spawn(function()
  67. local Circle = Instance.new("ImageLabel")
  68. Circle.Parent = Object
  69. Circle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  70. Circle.BackgroundTransparency = 1.000
  71. Circle.ZIndex = 10
  72. Circle.Image = "rbxassetid://266543268"
  73. Circle.ImageColor3 = Color3.fromRGB(210,210,210)
  74. Circle.ImageTransparency = 0.8
  75. Circle.Position = UDim2.new(0, Mouse.X - Circle.AbsolutePosition.X, 0, Mouse.Y - Circle.AbsolutePosition.Y)
  76. local Size = Object.AbsoluteSize.X
  77. TweenService:Create(Circle, TweenInfo.new(0.5), {Position = UDim2.fromScale(math.clamp(Mouse.X - Object.AbsolutePosition.X, 0, Object.AbsoluteSize.X)/Object.AbsoluteSize.X,Object,math.clamp(Mouse.Y - Object.AbsolutePosition.Y, 0, Object.AbsoluteSize.Y)/Object.AbsoluteSize.Y) - UDim2.fromOffset(Size/2,Size/2), ImageTransparency = 1, Size = UDim2.fromOffset(Size,Size)}):Play()
  78. spawn(function()
  79. wait(0.5)
  80. Circle:Destroy()
  81. end)
  82. end)
  83. end
  84.  
  85. local SolarisLib = {
  86. ["Themes"] = {
  87. ["Default"] = {
  88. MainFrame = Color3.fromRGB(25, 25, 25),
  89. TopBar = Color3.fromRGB(30, 30, 30),
  90. TextColor = Color3.fromRGB(255,255,255),
  91. Menu = Color3.fromRGB(37, 37, 37),
  92. TabToggled = Color3.fromRGB(43,43,43),
  93. Button = Color3.fromRGB(30,30,30),
  94. ButtonHold = Color3.fromRGB(31,31,31),
  95. Toggle = Color3.fromRGB(30,30,30),
  96. ToggleFrame = Color3.fromRGB(155,155,155),
  97. ToggleToggled = Color3.fromRGB(22, 168, 76),
  98. Slider = Color3.fromRGB(30,30,30),
  99. SliderVal = Color3.fromRGB(25, 25, 25),
  100. SliderInc = Color3.fromRGB(60, 60, 60),
  101. Dropdown = Color3.fromRGB(30,30,30),
  102. DropdownItem = Color3.fromRGB(30,30,30),
  103. Textbox = Color3.fromRGB(30,30,30),
  104. TextboxFrame = Color3.fromRGB(25, 25, 25),
  105. Colorpicker = Color3.fromRGB(30,30,30),
  106. Label = Color3.fromRGB(30,30,30),
  107. Bind = Color3.fromRGB(30,30,30)
  108. },
  109. ["Discord"] = {
  110. MainFrame = Color3.fromRGB(54,57,63),
  111. TopBar = Color3.fromRGB(47,49,54),
  112. TextColor = Color3.fromRGB(255,255,255),
  113. Menu = Color3.fromRGB(47,49,54),
  114. TabToggled = Color3.fromRGB(54,57,63),
  115. Button = Color3.fromRGB(88,101,242),
  116. ButtonHold = Color3.fromRGB(71,82,196),
  117. Toggle = Color3.fromRGB(47,49,54),
  118. ToggleFrame = Color3.fromRGB(67,69,74),
  119. ToggleToggled = Color3.fromRGB(22, 168, 76),
  120. Slider = Color3.fromRGB(47,49,54),
  121. SliderVal = Color3.fromRGB(42,44,49),
  122. SliderInc = Color3.fromRGB(62,64,69),
  123. Dropdown = Color3.fromRGB(47,49,54),
  124. DropdownItem = Color3.fromRGB(47,49,54),
  125. Textbox = Color3.fromRGB(47,49,54),
  126. TextboxFrame = Color3.fromRGB(42,44,49),
  127. Colorpicker = Color3.fromRGB(47,49,54),
  128. Label = Color3.fromRGB(47,49,54),
  129. Bind = Color3.fromRGB(47,49,54)
  130. },
  131. ["Blue"] = {
  132. MainFrame = Color3.fromRGB(35, 35, 50),
  133. TopBar = Color3.fromRGB(40, 40, 55),
  134. TextColor = Color3.fromRGB(255,255,255),
  135. Menu = Color3.fromRGB(47, 47, 62),
  136. TabToggled = Color3.fromRGB(53,53,68),
  137. Button = Color3.fromRGB(40,40,55),
  138. ButtonHold = Color3.fromRGB(41,41,56),
  139. Toggle = Color3.fromRGB(40,40,55),
  140. ToggleFrame = Color3.fromRGB(65,65,80),
  141. ToggleToggled = Color3.fromRGB(64, 64, 120),
  142. Slider = Color3.fromRGB(40,40,55),
  143. SliderVal = Color3.fromRGB(35, 35, 50),
  144. SliderInc = Color3.fromRGB(70, 70, 85),
  145. Dropdown = Color3.fromRGB(40,40,55),
  146. DropdownItem = Color3.fromRGB(40,40,55),
  147. Textbox = Color3.fromRGB(40,40,55),
  148. TextboxFrame = Color3.fromRGB(35, 35, 50),
  149. Colorpicker = Color3.fromRGB(40,40,55),
  150. Label = Color3.fromRGB(40,40,55),
  151. Bind = Color3.fromRGB(40,40,55)
  152. },
  153. ["Red"] = {
  154. MainFrame = Color3.fromRGB(50, 35, 35),
  155. TopBar = Color3.fromRGB(55, 40, 40),
  156. TextColor = Color3.fromRGB(255,255,255),
  157. Menu = Color3.fromRGB(62, 47, 47),
  158. TabToggled = Color3.fromRGB(68,53,53),
  159. Button = Color3.fromRGB(55,40,40),
  160. ButtonHold = Color3.fromRGB(56,41,41),
  161. Toggle = Color3.fromRGB(55,40,40),
  162. ToggleFrame = Color3.fromRGB(80,65,65),
  163. ToggleToggled = Color3.fromRGB(120, 64, 64),
  164. Slider = Color3.fromRGB(55,40,40),
  165. SliderVal = Color3.fromRGB(50, 35, 35),
  166. SliderInc = Color3.fromRGB(85, 70, 70),
  167. Dropdown = Color3.fromRGB(55,40,40),
  168. DropdownItem = Color3.fromRGB(55,40,40),
  169. Textbox = Color3.fromRGB(55,40,40),
  170. TextboxFrame = Color3.fromRGB(50, 35, 35),
  171. Colorpicker = Color3.fromRGB(55,40,40),
  172. Label = Color3.fromRGB(55,40,40),
  173. Bind = Color3.fromRGB(55,40,40)
  174. },
  175. ["Green"] = {
  176. MainFrame = Color3.fromRGB(35, 50, 35),
  177. TopBar = Color3.fromRGB(40, 55, 40),
  178. TextColor = Color3.fromRGB(255,255,255),
  179. Menu = Color3.fromRGB(47, 62, 47),
  180. TabToggled = Color3.fromRGB(53,68,53),
  181. Button = Color3.fromRGB(40,55,40),
  182. ButtonHold = Color3.fromRGB(41,56,41),
  183. Toggle = Color3.fromRGB(40,55,40),
  184. ToggleFrame = Color3.fromRGB(65,80,65),
  185. ToggleToggled = Color3.fromRGB(64, 120, 64),
  186. Slider = Color3.fromRGB(40,55,40),
  187. SliderVal = Color3.fromRGB(35, 50, 35),
  188. SliderInc = Color3.fromRGB(70, 85, 70),
  189. Dropdown = Color3.fromRGB(40,55,40),
  190. DropdownItem = Color3.fromRGB(40,55,40),
  191. Textbox = Color3.fromRGB(40,55,40),
  192. TextboxFrame = Color3.fromRGB(35, 50, 35),
  193. Colorpicker = Color3.fromRGB(40,55,40),
  194. Label = Color3.fromRGB(40,55,40),
  195. Bind = Color3.fromRGB(40,55,40)
  196. }
  197. },
  198. Settings = {
  199. ["Theme"] = "Default",
  200. CloseBind = "RightControl"
  201. },
  202. Flags = {},
  203. CurrentTab
  204. }
  205.  
  206. local NotiFrame = Instance.new("Frame")
  207. NotiFrame.Name = "NotiFrame"
  208. NotiFrame.Parent = Solaris
  209. NotiFrame.AnchorPoint = Vector2.new(0.5, 0)
  210. NotiFrame.BackgroundColor3 = Color3.fromRGB(35,35,35)
  211. NotiFrame.BorderSizePixel = 0
  212. NotiFrame.Position = UDim2.new(0.85, 0, 0, 0)
  213. NotiFrame.Size = UDim2.new(0, 400, 1, 0)
  214. NotiFrame.ClipsDescendants = true
  215. NotiFrame.BackgroundTransparency = 1
  216.  
  217. local Notilistlayout = Instance.new("UIListLayout")
  218. Notilistlayout.Parent = NotiFrame
  219. Notilistlayout.SortOrder = Enum.SortOrder.LayoutOrder
  220. Notilistlayout.Padding = UDim.new(0, 5)
  221. Notilistlayout.VerticalAlignment = Enum.VerticalAlignment.Bottom
  222.  
  223. function SolarisLib:Notification(titel,text,delays)
  224. local TitleFrame = Instance.new("Frame")
  225. TitleFrame.Name = "TitleFrame"
  226. TitleFrame.Parent = NotiFrame
  227. TitleFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  228. TitleFrame.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].MainFrame
  229. TitleFrame.BorderSizePixel = 0
  230. TitleFrame.Position = UDim2.new(0.5, 0, 0.5,0)
  231. TitleFrame.Size = UDim2.new(0, 0, 0, 0)
  232. TitleFrame.ClipsDescendants = true
  233.  
  234. local ConnerTitile = Instance.new("UICorner")
  235.  
  236. ConnerTitile.CornerRadius = UDim.new(0, 4)
  237. ConnerTitile.Parent = TitleFrame
  238.  
  239. TitleFrame:TweenSizeAndPosition(UDim2.new(0, 400-10, 0, 70), UDim2.new(0.5, 0, 0.5,0), "Out", "Quad", 0.3, true)
  240.  
  241. local imagenoti = Instance.new("ImageLabel")
  242.  
  243. imagenoti.Parent = TitleFrame
  244. imagenoti.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  245. imagenoti.BackgroundTransparency = 1.000
  246. imagenoti.AnchorPoint = Vector2.new(0.5, 0.5)
  247. imagenoti.Position = UDim2.new(0.9, 0, 0.5, 0)
  248. imagenoti.Size = UDim2.new(0, 50, 0, 50)
  249.  
  250. local txdlid = Instance.new("TextLabel")
  251.  
  252. txdlid.Parent = TitleFrame
  253. txdlid.Name = "TextLabel_Tap"
  254. txdlid.BackgroundColor3 = Color3.fromRGB(50,50,50)
  255. txdlid.Size =UDim2.new(0, 160, 0,25 )
  256. txdlid.Font = Enum.Font.GothamBold
  257. txdlid.Text = titel
  258. txdlid.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
  259. txdlid.TextSize = 13.000
  260. txdlid.AnchorPoint = Vector2.new(0.5, 0.5)
  261. txdlid.Position = UDim2.new(0.23, 0, 0.3, 0)
  262. txdlid.TextXAlignment = Enum.TextXAlignment.Left
  263. txdlid.BackgroundTransparency = 1
  264.  
  265. local LableFrame = Instance.new("Frame")
  266. LableFrame.Name = "LableFrame"
  267. LableFrame.Parent = TitleFrame
  268. LableFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  269. LableFrame.BackgroundColor3 = Color3.fromRGB(50,50,50)
  270. LableFrame.BorderSizePixel = 0
  271. LableFrame.Position = UDim2.new(0.36, 0, 0.67,0)
  272. LableFrame.Size = UDim2.new(0, 260, 0,25 )
  273. LableFrame.ClipsDescendants = true
  274. LableFrame.BackgroundTransparency = 1
  275.  
  276. local TextNoti = Instance.new("TextLabel")
  277.  
  278. TextNoti.Parent = LableFrame
  279. TextNoti.Name = "TextLabel_Tap"
  280. TextNoti.BackgroundColor3 = Color3.fromRGB(255,255,255)
  281. TextNoti.Size = UDim2.new(0, 260, 0,25)
  282. TextNoti.Font = Enum.Font.GothamBold
  283. TextNoti.Text = text
  284. TextNoti.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
  285. TextNoti.TextSize = 13.000
  286. TextNoti.AnchorPoint = Vector2.new(0.5, 0.5)
  287. TextNoti.Position = UDim2.new(0.5, 0, 0.5, 0)
  288. TextNoti.TextXAlignment = Enum.TextXAlignment.Left
  289. TextNoti.BackgroundTransparency = 1
  290.  
  291. repeat wait() until TitleFrame.Size == UDim2.new(0, 400-10, 0, 70)
  292.  
  293. local Time = Instance.new("Frame")
  294. Time.Name = "Time"
  295. Time.Parent = TitleFrame
  296. Time.BackgroundColor3 = Color3.fromRGB(255,255,255)
  297. Time.BorderSizePixel = 0
  298. Time.Position = UDim2.new(0, 0, 0.,0)
  299. Time.Size = UDim2.new(0, 0,0,0)
  300. Time.ClipsDescendants = false
  301. Time.BackgroundTransparency = 0
  302.  
  303. local ConnerTitile_Time = Instance.new("UICorner")
  304.  
  305. ConnerTitile_Time.CornerRadius = UDim.new(0, 4)
  306. ConnerTitile_Time.Name = ""
  307. ConnerTitile_Time.Parent = Time
  308.  
  309. Time:TweenSizeAndPosition(UDim2.new(0, 400-10, 0, 3), UDim2.new(0., 0, 0.,0), "Out", "Sine", 0.3, true)
  310. repeat wait() until Time.Size == UDim2.new(0, 400-10, 0, 3)
  311.  
  312. TweenService:Create(
  313. Time,
  314. TweenInfo.new(tonumber(delays), Enum.EasingStyle.Linear, Enum.EasingDirection.InOut),
  315. {Size = UDim2.new(0, 0, 0, 3)}
  316. ):Play()
  317. delay(tonumber(delays),function()
  318. TweenService:Create(
  319. TitleFrame,
  320. TweenInfo.new(0.4, Enum.EasingStyle.Back, Enum.EasingDirection.InOut),
  321. {Size = UDim2.new(0, 0, 0, 0)}
  322. ):Play()
  323. wait(0.3)
  324. TitleFrame:Destroy()
  325. end)
  326. end
  327.  
  328. function SolarisLib:Window(text)
  329. local fs = false
  330. local MainFrameHolder = Instance.new("Frame")
  331. local Shadow = Instance.new("Frame")
  332. local Image = Instance.new("ImageLabel")
  333. local Image_2 = Instance.new("ImageLabel")
  334. local MainFrame = Instance.new("Frame")
  335. local UICorner = Instance.new("UICorner")
  336. local TopBar = Instance.new("ImageLabel")
  337. local TopFrameTitle = Instance.new("TextLabel")
  338. local TabListBtn = Instance.new("ImageButton")
  339. local UIListLayout = Instance.new("UIListLayout")
  340. local MenuBtn = Instance.new("TextButton")
  341. local Ico = Instance.new("ImageLabel")
  342. local MenuFrame = Instance.new("Frame")
  343. local UICorner_2 = Instance.new("UICorner")
  344. local Shadow_2 = Instance.new("Frame")
  345. local Image_3 = Instance.new("ImageLabel")
  346. local Image_4 = Instance.new("ImageLabel")
  347. local Frame = Instance.new("Frame")
  348. local UICorner_3 = Instance.new("UICorner")
  349. local CloseBtn = Instance.new("TextButton")
  350. local Ico_2 = Instance.new("ImageLabel")
  351. local Ico_3 = Instance.new("ImageLabel")
  352. local UISizeConstraint = Instance.new("UISizeConstraint")
  353. local UIPadding = Instance.new("UIPadding")
  354. local UICorner_4 = Instance.new("UICorner")
  355. local TopBarLine = Instance.new("Frame")
  356. local TabMenu = Instance.new("Frame")
  357. local Menu = Instance.new("Frame")
  358. local UICorner_5 = Instance.new("UICorner")
  359. local Top = Instance.new("Frame")
  360. local TopBarLine_2 = Instance.new("Frame")
  361. local MenuCloseBtn = Instance.new("TextButton")
  362. local ImageLabel = Instance.new("ImageLabel")
  363. local Holder = Instance.new("Frame")
  364. local UIPadding_2 = Instance.new("UIPadding")
  365. local UIListLayout_2 = Instance.new("UIListLayout")
  366. local Shadow_3 = Instance.new("Frame")
  367. local Glow = Instance.new("ImageLabel")
  368.  
  369. MainFrameHolder.Name = "MainFrameHolder"
  370. MainFrameHolder.Parent = Solaris
  371. MainFrameHolder.AnchorPoint = Vector2.new(0.5, 0.5)
  372. MainFrameHolder.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  373. MainFrameHolder.BackgroundTransparency = 1.000
  374. MainFrameHolder.Position = UDim2.new(0.5, 0, 0.5, 0)
  375. MainFrameHolder.Size = UDim2.new(0, 0, 0, 0)
  376.  
  377. Shadow.Name = "Shadow"
  378. Shadow.Parent = MainFrameHolder
  379. Shadow.AnchorPoint = Vector2.new(0.5, 0.5)
  380. Shadow.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  381. Shadow.BackgroundTransparency = 1.000
  382. Shadow.BorderSizePixel = 0
  383. Shadow.Position = UDim2.new(0.5, 0, 0.5, 0)
  384. Shadow.Size = UDim2.new(1, 0, 1, 25)
  385.  
  386. Image.Name = "Image"
  387. Image.Parent = Shadow
  388. Image.AnchorPoint = Vector2.new(0.5, 0.5)
  389. Image.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  390. Image.BackgroundTransparency = 1.000
  391. Image.BorderSizePixel = 0
  392. Image.Position = UDim2.new(0.5, 0, 0.5, 0)
  393. Image.Size = UDim2.new(1.60000002, 0, 1.29999995, 0)
  394. Image.ZIndex = 7
  395. Image.Image = "rbxassetid://5587865193"
  396. Image.ImageColor3 = Color3.fromRGB(0, 0, 0)
  397. Image.ImageTransparency = 0.300
  398.  
  399. Image_2.Name = "Image"
  400. Image_2.Parent = Shadow
  401. Image_2.AnchorPoint = Vector2.new(0.5, 0.5)
  402. Image_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  403. Image_2.BackgroundTransparency = 1.000
  404. Image_2.BorderSizePixel = 0
  405. Image_2.Position = UDim2.new(0.5, 0, 0.5, -5)
  406. Image_2.Size = UDim2.new(1.20000005, 0, 1.10000002, 0)
  407. Image_2.ZIndex = 7
  408. Image_2.Image = "rbxassetid://5587865193"
  409. Image_2.ImageColor3 = Color3.fromRGB(0, 0, 0)
  410.  
  411. MainFrame.Name = "MainFrame"
  412. MainFrame.Parent = MainFrameHolder
  413. MainFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  414. MainFrame.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  415. MainFrame.ClipsDescendants = true
  416. MainFrame.Position = UDim2.new(0.5, 0, 0.5, 0)
  417. MainFrame.Size = UDim2.new(1, 0, 1, 0)
  418.  
  419. UICorner.CornerRadius = UDim.new(0, 6)
  420. UICorner.Parent = MainFrame
  421.  
  422. TopBar.Name = "TopBar"
  423. TopBar.Parent = MainFrame
  424. TopBar.BackgroundColor3 = Color3.fromRGB(248, 248, 248)
  425. TopBar.BackgroundTransparency = 1.000
  426. TopBar.BorderSizePixel = 0
  427. TopBar.Size = UDim2.new(1, 0, 0, 40)
  428. TopBar.ZIndex = 3
  429. TopBar.Image = "rbxassetid://6276641225"
  430. TopBar.ImageColor3 = Color3.fromRGB(30, 30, 30)
  431. TopBar.ScaleType = Enum.ScaleType.Slice
  432. TopBar.SliceCenter = Rect.new(256, 256, 256, 256)
  433. TopBar.SliceScale = 0.022
  434.  
  435. TopFrameTitle.Name = "TopFrameTitle"
  436. TopFrameTitle.Parent = TopBar
  437. TopFrameTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  438. TopFrameTitle.BackgroundTransparency = 1.000
  439. TopFrameTitle.Position = UDim2.new(0, 33, 0, 0)
  440. TopFrameTitle.Size = UDim2.new(1, -33, 1, 0)
  441. TopFrameTitle.Font = Enum.Font.Gotham
  442. TopFrameTitle.Text = text
  443. TopFrameTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
  444. TopFrameTitle.TextSize = 14.000
  445. TopFrameTitle.TextXAlignment = Enum.TextXAlignment.Left
  446.  
  447. TabListBtn.Name = "TabListBtn"
  448. TabListBtn.Parent = TopBar
  449. TabListBtn.AnchorPoint = Vector2.new(0, 0.5)
  450. TabListBtn.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  451. TabListBtn.BackgroundTransparency = 1.000
  452. TabListBtn.Position = UDim2.new(0, 10, 0.5, 0)
  453. TabListBtn.Size = UDim2.new(0, 20, 0, 20)
  454. TabListBtn.Image = "http://www.roblox.com/asset/?id=5576439039"
  455. TabListBtn.ImageTransparency = 0.400
  456.  
  457. UICorner_3.CornerRadius = UDim.new(0, 6)
  458. UICorner_3.Parent = Frame
  459.  
  460. TopBarLine.Name = "TopBarLine"
  461. TopBarLine.Parent = TopBar
  462. TopBarLine.AnchorPoint = Vector2.new(0, 1)
  463. TopBarLine.BackgroundColor3 = Color3.fromRGB(175, 175, 175)
  464. TopBarLine.BackgroundTransparency = 0.900
  465. TopBarLine.BorderSizePixel = 0
  466. TopBarLine.Position = UDim2.new(0, 0, 1, 0)
  467. TopBarLine.Size = UDim2.new(1, 0, 0, 1)
  468.  
  469. TabMenu.Name = "TabMenu"
  470. TabMenu.Parent = MainFrame
  471. TabMenu.BackgroundColor3 = Color3.fromRGB(37, 37, 37)
  472. TabMenu.BackgroundTransparency = 1.000
  473. TabMenu.Position = UDim2.new(-0.370000005, -8, 0, 0)
  474. TabMenu.Size = UDim2.new(0.370000005, 0, 1, 0)
  475. TabMenu.ZIndex = 99
  476.  
  477. Menu.Name = "Menu"
  478. Menu.Parent = TabMenu
  479. Menu.BackgroundColor3 = Color3.fromRGB(37, 37, 37)
  480. Menu.Size = UDim2.new(1, 0, 1, 0)
  481. Menu.ZIndex = 99
  482.  
  483. UICorner_5.CornerRadius = UDim.new(0, 6)
  484. UICorner_5.Parent = Menu
  485.  
  486. Top.Name = "Top"
  487. Top.Parent = Menu
  488. Top.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  489. Top.BackgroundTransparency = 1.000
  490. Top.BorderSizePixel = 0
  491. Top.Size = UDim2.new(1, 0, 0, 40)
  492. Top.ZIndex = 3
  493.  
  494. TopBarLine_2.Name = "TopBarLine"
  495. TopBarLine_2.Parent = Top
  496. TopBarLine_2.AnchorPoint = Vector2.new(0, 1)
  497. TopBarLine_2.BackgroundColor3 = Color3.fromRGB(175, 175, 175)
  498. TopBarLine_2.BackgroundTransparency = 0.900
  499. TopBarLine_2.BorderSizePixel = 0
  500. TopBarLine_2.Position = UDim2.new(0, 0, 1, 0)
  501. TopBarLine_2.Size = UDim2.new(1, 0, 0, 1)
  502.  
  503. MenuCloseBtn.Name = "MenuCloseBtn"
  504. MenuCloseBtn.Parent = Top
  505. MenuCloseBtn.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  506. MenuCloseBtn.BackgroundTransparency = 1.000
  507. MenuCloseBtn.Size = UDim2.new(0, 40, 0, 40)
  508. MenuCloseBtn.Font = Enum.Font.SourceSans
  509. MenuCloseBtn.Text = ""
  510. MenuCloseBtn.TextColor3 = Color3.fromRGB(0, 0, 0)
  511. MenuCloseBtn.TextSize = 14.000
  512.  
  513. ImageLabel.Parent = MenuCloseBtn
  514. ImageLabel.AnchorPoint = Vector2.new(0.5, 0.5)
  515. ImageLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  516. ImageLabel.BackgroundTransparency = 1.000
  517. ImageLabel.Position = UDim2.new(0.5, 0, 0.5, 0)
  518. ImageLabel.Size = UDim2.new(0, 10, 0, 10)
  519. ImageLabel.Image = "http://www.roblox.com/asset/?id=6521435525"
  520.  
  521. Holder.Name = "Holder"
  522. Holder.Parent = Menu
  523. Holder.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  524. Holder.BackgroundTransparency = 1.000
  525. Holder.Position = UDim2.new(0, 0, 0, 40)
  526. Holder.Size = UDim2.new(1, 0, 1, -40)
  527.  
  528. UIPadding_2.Parent = Holder
  529. UIPadding_2.PaddingTop = UDim.new(0, 7)
  530.  
  531. UIListLayout_2.Parent = Holder
  532. UIListLayout_2.HorizontalAlignment = Enum.HorizontalAlignment.Center
  533. UIListLayout_2.SortOrder = Enum.SortOrder.LayoutOrder
  534.  
  535. Shadow_3.Name = "Shadow"
  536. Shadow_3.Parent = TabMenu
  537. Shadow_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  538. Shadow_3.BackgroundTransparency = 1.000
  539. Shadow_3.ClipsDescendants = true
  540. Shadow_3.Size = UDim2.new(1, 8, 1, 0)
  541.  
  542. Glow.Name = "Glow"
  543. Glow.Parent = Shadow_3
  544. Glow.AnchorPoint = Vector2.new(0.5, 0.5)
  545. Glow.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  546. Glow.BackgroundTransparency = 1.000
  547. Glow.BorderSizePixel = 0
  548. Glow.Position = UDim2.new(0.5, -6, 0.5, 0)
  549. Glow.Size = UDim2.new(1, 28, 1, 28)
  550. Glow.ZIndex = 0
  551. Glow.Image = "rbxassetid://4996891970"
  552. Glow.ImageColor3 = Color3.fromRGB(15, 15, 15)
  553. Glow.ScaleType = Enum.ScaleType.Slice
  554. Glow.SliceCenter = Rect.new(20, 20, 280, 280)
  555.  
  556. local ContainerFolder = Instance.new("Folder")
  557.  
  558. ContainerFolder.Name = "ContainerFolder"
  559. ContainerFolder.Parent = MainFrame
  560.  
  561. TabListBtn.MouseButton1Click:Connect(function()
  562. TweenService:Create(
  563. TabMenu,
  564. TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  565. {Position = UDim2.new(0,0,0,0)}
  566. ):Play()
  567. end)
  568.  
  569. MenuCloseBtn.MouseButton1Click:Connect(function()
  570. TweenService:Create(
  571. TabMenu,
  572. TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  573. {Position = UDim2.new(-0.37, -8, 0, 0)}
  574. ):Play()
  575. end)
  576.  
  577. CloseBtn.MouseEnter:Connect(function()
  578. TweenService:Create(
  579. Ico,
  580. TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  581. {ImageTransparency = 0}
  582. ):Play()
  583. end)
  584.  
  585. CloseBtn.MouseLeave:Connect(function()
  586. TweenService:Create(
  587. Ico,
  588. TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  589. {ImageTransparency = 0.4}
  590. ):Play()
  591. end)
  592.  
  593. MenuBtn.MouseEnter:Connect(function()
  594. TweenService:Create(
  595. Ico,
  596. TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  597. {ImageTransparency = 0}
  598. ):Play()
  599. end)
  600.  
  601. MenuBtn.MouseLeave:Connect(function()
  602. TweenService:Create(
  603. Ico,
  604. TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  605. {ImageTransparency = 0.4}
  606. ):Play()
  607. end)
  608.  
  609. TabListBtn.MouseEnter:Connect(function()
  610. TweenService:Create(
  611. TabListBtn,
  612. TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  613. {ImageTransparency = 0}
  614. ):Play()
  615. end)
  616.  
  617. TabListBtn.MouseLeave:Connect(function()
  618. TweenService:Create(
  619. TabListBtn,
  620. TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  621. {ImageTransparency = 0.4}
  622. ):Play()
  623. end)
  624.  
  625. MenuBtn.MouseButton1Click:Connect(function()
  626. MenuFrame.Visible = not MenuFrame.Visible
  627. end)
  628.  
  629. local uitoggled = false
  630. UserInputService.InputBegan:Connect(function(input)
  631. if input.KeyCode.Name == SolarisLib.Settings.CloseBind then
  632. if uitoggled == false then
  633. MainFrameHolder:TweenSize(UDim2.new(0, 0, 0, 0), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .3, true)
  634. uitoggled = true
  635. MainFrameHolder.Visible = false
  636. else
  637. MainFrameHolder.Visible = true
  638. MainFrameHolder:TweenSize(UDim2.new(0, 480, 0, 380), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .3, true)
  639. uitoggled = false
  640. end
  641. end
  642. end)
  643.  
  644. MainFrameHolder:TweenSize(UDim2.new(0, 480, 0, 380), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .3, true)
  645. MakeDraggable(TopBar, MainFrameHolder)
  646.  
  647. spawn(function()
  648. while wait() do
  649. pcall(function()
  650. MainFrame.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].MainFrame
  651. TopBar.ImageColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TopBar
  652. TabListBtn.ImageColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
  653. TopFrameTitle.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
  654. Menu.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].Menu
  655. MenuCloseBtn.ImageLabel.ImageColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
  656. end)
  657. end
  658. end)
  659.  
  660. local TabList = {}
  661. function TabList:Tab(text)
  662. local Tab = Instance.new("TextButton")
  663. local UICorner = Instance.new("UICorner")
  664. local UIPadding = Instance.new("UIPadding")
  665.  
  666. Tab.Name = "Tab"
  667. Tab.Parent = Holder
  668. Tab.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  669. Tab.BackgroundTransparency = 1.000
  670. Tab.Size = UDim2.new(0.87, 0, 0, 30)
  671. Tab.Font = Enum.Font.Gotham
  672. Tab.Text = text
  673. Tab.TextColor3 = Color3.fromRGB(255, 255, 255)
  674. Tab.TextSize = 13.000
  675. Tab.TextTransparency = 0.400
  676. Tab.TextXAlignment = Enum.TextXAlignment.Left
  677.  
  678. UICorner.CornerRadius = UDim.new(0, 8)
  679. UICorner.Parent = Tab
  680.  
  681. UIPadding.Parent = Tab
  682. UIPadding.PaddingLeft = UDim.new(0, 5)
  683.  
  684. local Container = Instance.new("ScrollingFrame")
  685. local UIListLayout = Instance.new("UIListLayout")
  686. local UIPadding = Instance.new("UIPadding")
  687.  
  688. Container.Name = "Container"
  689. Container.Parent = ContainerFolder
  690. Container.Active = true
  691. Container.BackgroundColor3 = Color3.fromRGB(22, 22, 22)
  692. Container.BackgroundTransparency = 1.000
  693. Container.BorderSizePixel = 0
  694. Container.Position = UDim2.new(0, 0, 0, 42)
  695. Container.AutomaticCanvasSize = Enum.AutomaticSize.Y
  696. Container.CanvasSize = UDim2.new(0, 0, 0, 0)
  697. Container.Selectable = false
  698. Container.Size = UDim2.new(1, 0, 1, -42)
  699. Container.ScrollBarThickness = 4
  700. Container.Visible = false
  701.  
  702. UIListLayout.Parent = Container
  703. UIListLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center
  704. UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
  705. UIListLayout.Padding = UDim.new(0, 6)
  706.  
  707. UIPadding.Parent = Container
  708. UIPadding.PaddingTop = UDim.new(0, 6)
  709.  
  710. if fs == false then
  711. fs = true
  712. Container.Visible = true
  713. Tab.UIPadding.PaddingLeft = UDim.new(0,10)
  714. Tab.TextTransparency = 0
  715. Tab.BackgroundTransparency = 0
  716. SolarisLib.CurrentTab = Container
  717. end
  718.  
  719. Tab.MouseButton1Click:Connect(function()
  720. for i,v in next, Holder:GetChildren() do
  721. if v:IsA("TextButton") then
  722. TweenService:Create(
  723. v,
  724. TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  725. {TextTransparency = 0.4}
  726. ):Play()
  727. TweenService:Create(
  728. v,
  729. TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  730. {BackgroundTransparency = 1}
  731. ):Play()
  732. TweenService:Create(
  733. v.UIPadding,
  734. TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  735. {PaddingLeft = UDim.new(0,5)}
  736. ):Play()
  737. end
  738. TweenService:Create(
  739. Tab,
  740. TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  741. {TextTransparency = 0}
  742. ):Play()
  743. TweenService:Create(
  744. Tab,
  745. TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  746. {BackgroundTransparency = 0}
  747. ):Play()
  748. TweenService:Create(
  749. Tab.UIPadding,
  750. TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  751. {PaddingLeft = UDim.new(0,10)}
  752. ):Play()
  753. end
  754. for i,v in next, ContainerFolder:GetChildren() do
  755. if v.Name == "Container" then
  756. v.Visible = false
  757. end
  758. Container.Visible = true
  759. end
  760. local tabtoggledname = Tab.Name
  761. TweenService:Create(
  762. TabMenu,
  763. TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  764. {Position = UDim2.new(-0.37, -8, 0, 0)}
  765. ):Play()
  766. end)
  767.  
  768. local SectionHold = {}
  769. function SectionHold:Section(text)
  770. local Section = Instance.new("Frame")
  771. local SectionTitle = Instance.new("TextLabel")
  772. local UIListLayout = Instance.new("UIListLayout")
  773.  
  774. Section.Name = "Section"
  775. Section.Parent = Container
  776. Section.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  777. Section.BackgroundTransparency = 1.000
  778. Section.Size = UDim2.new(0.899999976, 0, 0, 0)
  779.  
  780. SectionTitle.Name = "SectionTitle"
  781. SectionTitle.Parent = Section
  782. SectionTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  783. SectionTitle.BackgroundTransparency = 1.000
  784. SectionTitle.Size = UDim2.new(0, 200, 0, 10)
  785. SectionTitle.Font = Enum.Font.Gotham
  786. SectionTitle.Text = text
  787. SectionTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
  788. SectionTitle.TextSize = 12.000
  789. SectionTitle.TextTransparency = 0.380
  790. SectionTitle.TextXAlignment = Enum.TextXAlignment.Left
  791.  
  792. UIListLayout.Parent = Section
  793. UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
  794. UIListLayout.Padding = UDim.new(0, 6)
  795.  
  796. spawn(function()
  797. while wait() do
  798. pcall(function()
  799. SectionTitle.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
  800. Section.Size = UDim2.new(0.9,0,0, UIListLayout.AbsoluteContentSize.Y + 15)
  801. end)
  802. end
  803. end)
  804.  
  805. local Libfunc = {}
  806. function Libfunc:Button(text, callback)
  807. local Button = Instance.new("TextButton")
  808. local UICorner = Instance.new("UICorner")
  809. local Glow = Instance.new("ImageLabel")
  810. local ButtonText = Instance.new("TextLabel")
  811.  
  812. Button.Name = "Button"
  813. Button.Parent = Section
  814. Button.BackgroundColor3 = Color3.fromRGB(28, 28, 28)
  815. Button.Size = UDim2.new(1, 0, 0, 32)
  816. Button.AutoButtonColor = false
  817. Button.Font = Enum.Font.SourceSans
  818. Button.Text = ""
  819. Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  820. Button.TextSize = 14.000
  821. Button.TextTransparency = 1.000
  822. Button.TextXAlignment = Enum.TextXAlignment.Left
  823. Button.ClipsDescendants = true
  824.  
  825. UICorner.CornerRadius = UDim.new(0, 6)
  826. UICorner.Parent = Button
  827.  
  828. Glow.Name = "Glow"
  829. Glow.Parent = Button
  830. Glow.AnchorPoint = Vector2.new(0.5, 0.5)
  831. Glow.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  832. Glow.BackgroundTransparency = 1.000
  833. Glow.BorderSizePixel = 0
  834. Glow.Position = UDim2.new(0.5, 0, 0.5, 0)
  835. Glow.Size = UDim2.new(1, 30, 1, 30)
  836. Glow.ZIndex = 0
  837. Glow.Image = "rbxassetid://4996891970"
  838. Glow.ImageColor3 = Color3.fromRGB(10, 10, 10)
  839. Glow.ImageTransparency = 0.860
  840. Glow.ScaleType = Enum.ScaleType.Slice
  841. Glow.SliceCenter = Rect.new(20, 20, 280, 280)
  842.  
  843. ButtonText.Name = "ButtonText"
  844. ButtonText.Parent = Button
  845. ButtonText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  846. ButtonText.BackgroundTransparency = 1.000
  847. ButtonText.Position = UDim2.new(0, 10, 0, 0)
  848. ButtonText.Size = UDim2.new(1, -10, 1, 0)
  849. ButtonText.Font = Enum.Font.Gotham
  850. ButtonText.Text = text
  851. ButtonText.TextColor3 = Color3.fromRGB(255, 255, 255)
  852. ButtonText.TextSize = 14.000
  853. ButtonText.TextXAlignment = Enum.TextXAlignment.Left
  854.  
  855. Button.MouseButton1Click:Connect(function()
  856. pcall(callback)
  857. Ripple(Button)
  858. TweenService:Create(
  859. UICorner,
  860. TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  861. {CornerRadius = UDim.new(0, 12)}
  862. ):Play()
  863. wait(.1)
  864. TweenService:Create(
  865. UICorner,
  866. TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  867. {CornerRadius = UDim.new(0, 6)}
  868. ):Play()
  869. end)
  870.  
  871. local Holding = false
  872. Button.MouseEnter:Connect(function()
  873. Holding = true
  874. end)
  875. Button.MouseLeave:Connect(function()
  876. Holding = false
  877. end)
  878.  
  879. spawn(function()
  880. while wait() do
  881. pcall(function()
  882. Button.BackgroundColor3 = Holding and SolarisLib.Themes[SolarisLib.Settings.Theme].ButtonHold or SolarisLib.Themes[SolarisLib.Settings.Theme].Button
  883. Button.ButtonText.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
  884. end)
  885. end
  886. end)
  887. end
  888.  
  889. function Libfunc:Toggle(text, default, callback)
  890. local togglefunc = {}
  891. local toggled = default or false
  892. local Toggle = Instance.new("TextButton")
  893. local UICorner = Instance.new("UICorner")
  894. local Glow = Instance.new("ImageLabel")
  895. local ToggleText = Instance.new("TextLabel")
  896. local ToggleFrame = Instance.new("Frame")
  897. local UICorner_2 = Instance.new("UICorner")
  898. local ToggleToggled = Instance.new("Frame")
  899. local UICorner_3 = Instance.new("UICorner")
  900. local ToggleIco = Instance.new("ImageLabel")
  901.  
  902. Toggle.Name = "Toggle"
  903. Toggle.Parent = Section
  904. Toggle.BackgroundColor3 = Color3.fromRGB(28, 28, 28)
  905. Toggle.Size = UDim2.new(1, 0, 0, 32)
  906. Toggle.AutoButtonColor = false
  907. Toggle.Font = Enum.Font.SourceSans
  908. Toggle.Text = ""
  909. Toggle.TextColor3 = Color3.fromRGB(0, 0, 0)
  910. Toggle.TextSize = 14.000
  911. Toggle.TextTransparency = 1.000
  912. Toggle.TextXAlignment = Enum.TextXAlignment.Left
  913.  
  914. UICorner.CornerRadius = UDim.new(0, 6)
  915. UICorner.Parent = Toggle
  916.  
  917. Glow.Name = "Glow"
  918. Glow.Parent = Toggle
  919. Glow.AnchorPoint = Vector2.new(0.5, 0.5)
  920. Glow.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  921. Glow.BackgroundTransparency = 1.000
  922. Glow.BorderSizePixel = 0
  923. Glow.Position = UDim2.new(0.5, 0, 0.5, 0)
  924. Glow.Size = UDim2.new(1, 30, 1, 30)
  925. Glow.ZIndex = 0
  926. Glow.Image = "rbxassetid://4996891970"
  927. Glow.ImageColor3 = Color3.fromRGB(10, 10, 10)
  928. Glow.ImageTransparency = 0.860
  929. Glow.ScaleType = Enum.ScaleType.Slice
  930. Glow.SliceCenter = Rect.new(20, 20, 280, 280)
  931.  
  932. ToggleText.Name = "ToggleText"
  933. ToggleText.Parent = Toggle
  934. ToggleText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  935. ToggleText.BackgroundTransparency = 1.000
  936. ToggleText.Position = UDim2.new(0, 10, 0, 0)
  937. ToggleText.Size = UDim2.new(0, 1, 1, 0)
  938. ToggleText.Font = Enum.Font.Gotham
  939. ToggleText.Text = text
  940. ToggleText.TextColor3 = Color3.fromRGB(255, 255, 255)
  941. ToggleText.TextSize = 14.000
  942. ToggleText.TextXAlignment = Enum.TextXAlignment.Left
  943.  
  944. ToggleFrame.Name = "ToggleFrame"
  945. ToggleFrame.Parent = Toggle
  946. ToggleFrame.AnchorPoint = Vector2.new(1, 0.5)
  947. ToggleFrame.BackgroundColor3 = Color3.fromRGB(150, 150, 150)
  948. ToggleFrame.Position = UDim2.new(1, -10, 0.5, 0)
  949. ToggleFrame.Size = UDim2.new(0, 20, 0, 20)
  950.  
  951. UICorner_2.CornerRadius = UDim.new(0, 4)
  952. UICorner_2.Parent = ToggleFrame
  953.  
  954. ToggleToggled.Name = "ToggleToggled"
  955. ToggleToggled.Parent = ToggleFrame
  956. ToggleToggled.AnchorPoint = Vector2.new(0.5, 0.5)
  957. ToggleToggled.BackgroundColor3 = Color3.fromRGB(28, 28, 28)
  958. ToggleToggled.Position = UDim2.new(0.5, 0, 0.5, 0)
  959. ToggleToggled.Size = UDim2.new(1, -2, 1, -2)
  960.  
  961. UICorner_3.CornerRadius = UDim.new(0, 4)
  962. UICorner_3.Parent = ToggleToggled
  963.  
  964. ToggleIco.Name = "ToggleIco"
  965. ToggleIco.Parent = ToggleToggled
  966. ToggleIco.AnchorPoint = Vector2.new(0.5, 0.5)
  967. ToggleIco.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  968. ToggleIco.BackgroundTransparency = 1.000
  969. ToggleIco.Position = UDim2.new(0.5, 0, 0.5, 0)
  970. ToggleIco.Size = UDim2.new(1, -2, 1, -2)
  971. ToggleIco.Image = "http://www.roblox.com/asset/?id=6031094667"
  972. ToggleIco.ImageTransparency = 1.000
  973.  
  974. function togglefunc:Set(value)
  975. TweenService:Create(ToggleIco,TweenInfo.new(.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),{ImageTransparency = value and 0 or 1}):Play()
  976. TweenService:Create(ToggleIco,TweenInfo.new(.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),{Size = value and UDim2.new(1,-2,1,-2) or UDim2.new(1,-6,1,-6)}):Play()
  977. return callback(value)
  978. end
  979.  
  980. Toggle.MouseButton1Click:Connect(function()
  981. toggled = not toggled
  982. togglefunc:Set(toggled)
  983. end)
  984.  
  985. spawn(function()
  986. while wait() do
  987. pcall(function()
  988. ToggleToggled.BackgroundColor3 = toggled and SolarisLib.Themes[SolarisLib.Settings.Theme].ToggleToggled or SolarisLib.Themes[SolarisLib.Settings.Theme].Toggle
  989. ToggleFrame.BackgroundColor3 = toggled and SolarisLib.Themes[SolarisLib.Settings.Theme].ToggleToggled or SolarisLib.Themes[SolarisLib.Settings.Theme].ToggleFrame
  990. Toggle.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].Toggle
  991. ToggleText.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
  992. end)
  993. end
  994. end)
  995.  
  996. togglefunc:Set(toggled)
  997. return togglefunc
  998. end
  999.  
  1000. function Libfunc:Slider(text, min, max, start, callback)
  1001. local Slider = Instance.new("Frame")
  1002. local SliderText = Instance.new("TextLabel")
  1003. local SliderFrame = Instance.new("Frame")
  1004. local SliderVal = Instance.new("Frame")
  1005. local UICorner = Instance.new("UICorner")
  1006. local BarCorner = Instance.new("UICorner")
  1007. local BarCorner2 = Instance.new("UICorner")
  1008.  
  1009. Slider.Name = "MainSliderFrame"
  1010. Slider.Parent = Section
  1011. Slider.BackgroundColor3 = Color3.fromRGB(28, 28, 28)
  1012. Slider.BorderSizePixel = 0
  1013. Slider.Size = UDim2.new(1, 0, 0, 48)
  1014.  
  1015. UICorner.Name = "MainCorner"
  1016. UICorner.Parent = Slider
  1017.  
  1018. SliderText.Name = "SliderTitle"
  1019. SliderText.Parent = Slider
  1020. SliderText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1021. SliderText.BackgroundTransparency = 1.000
  1022. SliderText.BorderSizePixel = 0
  1023. SliderText.Position = UDim2.new(0, 10, 0, 0)
  1024. SliderText.Size = UDim2.new(0, 1, 0.5, 0)
  1025. SliderText.Font = Enum.Font.Gotham
  1026. SliderText.Text = text .. " : " .. tostring(start and math.floor((start / max) * (max - min) + min) or 0)
  1027. SliderText.TextColor3 = Color3.fromRGB(255, 255, 255)
  1028. SliderText.TextSize = 14.000
  1029. SliderText.TextXAlignment = Enum.TextXAlignment.Left
  1030.  
  1031. SliderFrame.Name = "SliderFrame"
  1032. SliderFrame.Parent = Slider
  1033. SliderFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  1034. SliderFrame.BackgroundColor3 = Color3.fromRGB(120, 120, 120)
  1035. SliderFrame.BorderSizePixel = 0
  1036. SliderFrame.Position = UDim2.new(0.5, 0, 0.7, 0)
  1037. SliderFrame.Size = UDim2.new(0.95, 0, 0, 5)
  1038.  
  1039. BarCorner.Parent = SliderFrame
  1040.  
  1041. SliderVal.Name = "CurrentValueFrame"
  1042. SliderVal.Parent = SliderFrame
  1043. SliderVal.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1044. SliderVal.BorderSizePixel = 0
  1045. SliderVal.Size = UDim2.new((start or 0) / max, 0, 0, 5)
  1046.  
  1047. BarCorner2.Parent = SliderVal
  1048.  
  1049. local Dragging = false
  1050. local function move(input)
  1051. local pos = UDim2.new(math.clamp((input.Position.X - SliderFrame.AbsolutePosition.X) / SliderFrame.AbsoluteSize.X, 0, 1),0,1,0)
  1052. SliderVal:TweenSize(pos, "Out", "Sine", 0.1, true)
  1053. local SliderPrecise = ((pos.X.Scale * max) / max) * (max - min) + min
  1054. local SliderNonPrecise = math.floor(((pos.X.Scale * max) / max) * (max - min) + min)
  1055. local SliderValue = SliderNonPrecise or SliderPrecise
  1056. SliderValue = tonumber(string.format("%.2f", SliderValue))
  1057. SliderText.Text = text .. " : " .. tostring(SliderValue)
  1058. pcall(callback, SliderValue)
  1059. end
  1060.  
  1061. SliderFrame.InputBegan:Connect(function(input)
  1062. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1063. move(input)
  1064. Dragging = true
  1065. end
  1066. end)
  1067.  
  1068. SliderFrame.InputEnded:Connect(function(input)
  1069. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1070. Dragging = false
  1071. end
  1072. end)
  1073.  
  1074. UserInputService.InputChanged:Connect(function(input)
  1075. if Dragging and input.UserInputType == Enum.UserInputType.MouseMovement then
  1076. move(input)
  1077. end
  1078. end)
  1079.  
  1080. spawn(function()
  1081. while wait() do
  1082. pcall(function()
  1083. Slider.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].Slider
  1084. SliderFrame.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].SliderVal
  1085. SliderVal.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].SliderInc
  1086. SliderText.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
  1087. end)
  1088. end
  1089. end)
  1090. end
  1091.  
  1092. function Libfunc:Dropdown(text, list, callback)
  1093. local Dropfunc = {}
  1094. local dropdowntoggled = false
  1095. local Dropdown = Instance.new("Frame")
  1096. local Btn = Instance.new("TextButton")
  1097. local Title = Instance.new("TextLabel")
  1098. local Ico = Instance.new("ImageLabel")
  1099. local UICorner = Instance.new("UICorner")
  1100.  
  1101. Dropdown.Name = "Dropdown"
  1102. Dropdown.Parent = Section
  1103. Dropdown.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  1104. Dropdown.BackgroundTransparency = 1.000
  1105. Dropdown.ClipsDescendants = true
  1106. Dropdown.Size = UDim2.new(1, 0, 0, 32)
  1107.  
  1108. Btn.Name = "Btn"
  1109. Btn.Parent = Dropdown
  1110. Btn.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  1111. Btn.Size = UDim2.new(1, 0, 0, 32)
  1112. Btn.AutoButtonColor = false
  1113. Btn.Font = Enum.Font.SourceSans
  1114. Btn.Text = ""
  1115. Btn.TextColor3 = Color3.fromRGB(0, 0, 0)
  1116. Btn.TextSize = 14.000
  1117.  
  1118. Title.Name = "Title"
  1119. Title.Parent = Btn
  1120. Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1121. Title.BackgroundTransparency = 1.000
  1122. Title.Position = UDim2.new(0, 10, 0, 0)
  1123. Title.Selectable = true
  1124. Title.Size = UDim2.new(0, 1, 0, 32)
  1125. Title.Font = Enum.Font.Gotham
  1126. Title.Text = text .. " : N/A"
  1127. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  1128. Title.TextSize = 14.000
  1129. Title.TextXAlignment = Enum.TextXAlignment.Left
  1130.  
  1131. Ico.Name = "Ico"
  1132. Ico.Parent = Btn
  1133. Ico.AnchorPoint = Vector2.new(1, 0.5)
  1134. Ico.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1135. Ico.BackgroundTransparency = 1.000
  1136. Ico.Position = UDim2.new(1, -10, 0.5, 0)
  1137. Ico.Size = UDim2.new(0, 20, 1, -12)
  1138. Ico.Image = "http://www.roblox.com/asset/?id=6034818379"
  1139. Ico.ImageTransparency = 0.400
  1140.  
  1141. UICorner.CornerRadius = UDim.new(0, 5)
  1142. UICorner.Parent = Btn
  1143.  
  1144. local HolderFrame = Instance.new("Frame")
  1145. local Holder = Instance.new("ScrollingFrame")
  1146. local Layout = Instance.new("UIListLayout")
  1147. local UIPadding = Instance.new("UIPadding")
  1148.  
  1149. HolderFrame.Name = "HolderFrame"
  1150. HolderFrame.Parent = Dropdown
  1151. HolderFrame.BackgroundTransparency = 1
  1152. HolderFrame.ClipsDescendants = true
  1153. HolderFrame.Position = UDim2.new(0, 0, 0, 38)
  1154. HolderFrame.Selectable = true
  1155. HolderFrame.Size = UDim2.new(1, 0, 0, 0)
  1156. HolderFrame.Visible = false
  1157.  
  1158. Holder.Name = "Holder"
  1159. Holder.Parent = HolderFrame
  1160. Holder.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1161. Holder.BackgroundTransparency = 1.000
  1162. Holder.ClipsDescendants = true
  1163. Holder.Position = UDim2.new(0, 0, 0, 0)
  1164. Holder.Size = UDim2.new(1, 0, 0, 0)
  1165. Holder.CanvasSize = UDim2.new(0, 0, 0, 0)
  1166. Holder.ScrollBarThickness = 4
  1167. Holder.BorderSizePixel = 0
  1168. Holder.Visible = false
  1169.  
  1170. Layout.Name = "Layout"
  1171. Layout.Parent = Holder
  1172. Layout.SortOrder = Enum.SortOrder.LayoutOrder
  1173. Layout.Padding = UDim.new(0, 4)
  1174.  
  1175. UIPadding.Parent = Holder
  1176. UIPadding.PaddingTop = UDim.new(0, 2)
  1177. UIPadding.PaddingLeft = UDim.new(0, 12)
  1178.  
  1179. Btn.MouseButton1Click:Connect(function()
  1180. dropdowntoggled = not dropdowntoggled
  1181. TweenService:Create(
  1182. Dropdown,
  1183. TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1184. {Size = dropdowntoggled and UDim2.new(1, 0, 0, 42 + HolderFrame.AbsoluteSize.Y) or UDim2.new(1, 0, 0, 32)}
  1185. ):Play()
  1186. TweenService:Create(
  1187. Ico,TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1188. {Rotation = dropdowntoggled and 180 or 0}
  1189. ):Play()
  1190. wait(.16)
  1191. Container.CanvasSize = UDim2.new(0, 0, 0, UIListLayout.AbsoluteContentSize.Y)
  1192. Holder.Visible = not Holder.Visible
  1193. HolderFrame.Visible = not HolderFrame.Visible
  1194. end)
  1195.  
  1196. local framesize = 0
  1197. local itemcount = 0
  1198. for i,v in next, list do
  1199. itemcount = itemcount + 1
  1200. if itemcount == 1 then
  1201. framesize = 32
  1202. elseif itemcount == 2 then
  1203. framesize = 61
  1204. elseif itemcount >= 3 then
  1205. framesize = 90
  1206. end
  1207.  
  1208. local Item = Instance.new("TextButton")
  1209. local UICorner = Instance.new("UICorner")
  1210. local ItemText = Instance.new("TextLabel")
  1211.  
  1212. Item.Name = "Item"
  1213. Item.Parent = Holder
  1214. Item.BackgroundColor3 = Color3.fromRGB(34, 34, 34)
  1215. Item.Size = UDim2.new(0.9623000, 0, 0, 28)
  1216. Item.BorderSizePixel = 0
  1217. Item.AutoButtonColor = false
  1218. Item.Font = Enum.Font.Gotham
  1219. Item.Text = ""
  1220. Item.TextColor3 = Color3.fromRGB(255, 255, 255)
  1221. Item.TextSize = 14.000
  1222. Item.TextTransparency = 0.400
  1223. Item.TextXAlignment = Enum.TextXAlignment.Left
  1224. Item.ClipsDescendants = true
  1225.  
  1226. UICorner.CornerRadius = UDim.new(0, 6)
  1227. UICorner.Parent = Item
  1228.  
  1229. ItemText.Name = "ItemText"
  1230. ItemText.Parent = Item
  1231. ItemText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1232. ItemText.BackgroundTransparency = 1.000
  1233. ItemText.Position = UDim2.new(0, 5, 0, 0)
  1234. ItemText.Size = UDim2.new(0, 1, 1, 0)
  1235. ItemText.Font = Enum.Font.Gotham
  1236. ItemText.Text = v
  1237. ItemText.TextColor3 = Color3.fromRGB(255, 255, 255)
  1238. ItemText.TextSize = 13.000
  1239. ItemText.TextTransparency = 0.400
  1240. ItemText.TextXAlignment = Enum.TextXAlignment.Left
  1241.  
  1242. Item.MouseEnter:Connect(function()
  1243. TweenService:Create(
  1244. ItemText,
  1245. TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1246. {TextTransparency = 0}
  1247. ):Play()
  1248. end)
  1249.  
  1250. Item.MouseLeave:Connect(function()
  1251. TweenService:Create(
  1252. ItemText,
  1253. TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1254. {TextTransparency = 0.400}
  1255. ):Play()
  1256. end)
  1257.  
  1258. Item.MouseButton1Click:Connect(function()
  1259. dropdowntoggled = not dropdowntoggled
  1260. Ripple(Item)
  1261. Title.Text = text .. " : " .. v
  1262. TweenService:Create(
  1263. Dropdown,
  1264. TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1265. {Size = dropdowntoggled and UDim2.new(1, 0, 0, 42 + HolderFrame.AbsoluteSize.Y) or UDim2.new(1, 0, 0, 32)}
  1266. ):Play()
  1267. TweenService:Create(
  1268. Ico,TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1269. {Rotation = dropdowntoggled and 180 or 0}
  1270. ):Play()
  1271. wait(.16)
  1272. Dropdown.Size = UDim2.new(1, 0, 0, 32)
  1273. Container.CanvasSize = UDim2.new(0, 0, 0, UIListLayout.AbsoluteContentSize.Y)
  1274. Holder.Visible = not Holder.Visible
  1275. HolderFrame.Visible = not HolderFrame.Visible
  1276. return pcall(callback, v)
  1277. end)
  1278.  
  1279. Holder.CanvasSize = UDim2.new(0,0,0,Layout.AbsoluteContentSize.Y + 5)
  1280. Holder.Size = UDim2.new(1, 0, 0, framesize)
  1281. HolderFrame.Size = UDim2.new(1, 0, 0, framesize)
  1282.  
  1283. spawn(function()
  1284. while wait() do
  1285. pcall(function()
  1286. Item.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].DropdownItem
  1287. Title.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
  1288. end)
  1289. end
  1290. end)
  1291. end
  1292.  
  1293. function Dropfunc:Clear()
  1294. dropdowntoggled = false
  1295. itemcount = 0
  1296. framesize = 0
  1297. for i,v in next, Holder:GetChildren() do
  1298. if v.Name == "Item" then
  1299. v:Destroy()
  1300. end
  1301. end
  1302. Title.Text = text .. " : " .. "N/A"
  1303. TweenService:Create(
  1304. Dropdown,
  1305. TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1306. {Size = dropdowntoggled and UDim2.new(1, 0, 0, 42 + HolderFrame.AbsoluteSize.Y) or UDim2.new(1, 0, 0, 32)}
  1307. ):Play()
  1308. TweenService:Create(
  1309. Ico,TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1310. {Rotation = dropdowntoggled and 180 or 0}
  1311. ):Play()
  1312. wait(.16)
  1313. Dropdown.Size = UDim2.new(1, 0, 0, 32)
  1314. Container.CanvasSize = UDim2.new(0, 0, 0, UIListLayout.AbsoluteContentSize.Y)
  1315. HolderFrame.Size = UDim2.new(1, 0, 0, 0)
  1316. Holder.Visible = false
  1317. HolderFrame.Visible = false
  1318. end
  1319.  
  1320. function Dropfunc:Add(textadd)
  1321. itemcount = itemcount + 1
  1322. if itemcount == 1 then
  1323. framesize = 29
  1324. elseif itemcount == 2 then
  1325. framesize = 58
  1326. elseif itemcount >= 3 then
  1327. framesize = 87
  1328. end
  1329.  
  1330. local Item = Instance.new("TextButton")
  1331. local UICorner = Instance.new("UICorner")
  1332. local ItemText = Instance.new("TextLabel")
  1333.  
  1334. Item.Name = "Item"
  1335. Item.Parent = Holder
  1336. Item.BackgroundColor3 = Color3.fromRGB(34, 34, 34)
  1337. Item.Size = UDim2.new(0.9623000, 0, 0, 30)
  1338. Item.BorderSizePixel = 0
  1339. Item.AutoButtonColor = false
  1340. Item.Font = Enum.Font.Gotham
  1341. Item.Text = ""
  1342. Item.TextColor3 = Color3.fromRGB(255, 255, 255)
  1343. Item.TextSize = 14.000
  1344. Item.TextTransparency = 0.400
  1345. Item.TextXAlignment = Enum.TextXAlignment.Left
  1346. Item.ClipsDescendants = true
  1347.  
  1348. UICorner.CornerRadius = UDim.new(0, 6)
  1349. UICorner.Parent = Item
  1350.  
  1351. ItemText.Name = "ItemText"
  1352. ItemText.Parent = Item
  1353. ItemText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1354. ItemText.BackgroundTransparency = 1.000
  1355. ItemText.Position = UDim2.new(0, 5, 0, 0)
  1356. ItemText.Size = UDim2.new(0, 1, 1, 0)
  1357. ItemText.Font = Enum.Font.Gotham
  1358. ItemText.Text = textadd
  1359. ItemText.TextColor3 = Color3.fromRGB(255, 255, 255)
  1360. ItemText.TextSize = 13.000
  1361. ItemText.TextTransparency = 0.400
  1362. ItemText.TextXAlignment = Enum.TextXAlignment.Left
  1363.  
  1364. Item.MouseEnter:Connect(function()
  1365. TweenService:Create(
  1366. ItemText,
  1367. TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1368. {TextTransparency = 0}
  1369. ):Play()
  1370. end)
  1371.  
  1372. Item.MouseLeave:Connect(function()
  1373. TweenService:Create(
  1374. ItemText,
  1375. TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1376. {TextTransparency = 0.400}
  1377. ):Play()
  1378. end)
  1379.  
  1380. Item.MouseButton1Click:Connect(function()
  1381. dropdowntoggled = not dropdowntoggled
  1382. Ripple(Item)
  1383. Title.Text = text .. " : " .. textadd
  1384. TweenService:Create(
  1385. Dropdown,
  1386. TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1387. {Size = dropdowntoggled and UDim2.new(1, 0, 0, 42 + HolderFrame.AbsoluteSize.Y) or UDim2.new(1, 0, 0, 32)}
  1388. ):Play()
  1389. TweenService:Create(
  1390. Ico,TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1391. {Rotation = dropdowntoggled and 180 or 0}
  1392. ):Play()
  1393. wait(.16)
  1394. Dropdown.Size = UDim2.new(1, 0, 0, 32)
  1395. Container.CanvasSize = UDim2.new(0, 0, 0, UIListLayout.AbsoluteContentSize.Y)
  1396. Holder.Visible = not Holder.Visible
  1397. HolderFrame.Visible = not HolderFrame.Visible
  1398. return pcall(callback, textadd)
  1399. end)
  1400.  
  1401. Holder.CanvasSize = UDim2.new(0,0,0,Layout.AbsoluteContentSize.Y + 5)
  1402. Holder.Size = UDim2.new(1, 0, 0, framesize)
  1403. HolderFrame.Size = UDim2.new(1, 0, 0, framesize)
  1404.  
  1405. spawn(function()
  1406. while wait() do
  1407. pcall(function()
  1408. Item.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].DropdownItem
  1409. Title.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
  1410. end)
  1411. end
  1412. end)
  1413. end
  1414.  
  1415. function Dropfunc:Set(val)
  1416. Title.Text = text .. " : " .. val
  1417. return callback(val)
  1418. end
  1419.  
  1420. spawn(function()
  1421. while wait() do
  1422. pcall(function()
  1423. Btn.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].Dropdown
  1424. Btn.Title.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
  1425. Btn.Ico.ImageColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
  1426. end)
  1427. end
  1428. end)
  1429.  
  1430. return Dropfunc
  1431. end
  1432.  
  1433. function Libfunc:MultiDropdown(text, list, callback)
  1434. local DropdownList = {}
  1435. local Dropfunc = {}
  1436. local dropdowntoggled = false
  1437. local Dropdown = Instance.new("Frame")
  1438. local Btn = Instance.new("TextButton")
  1439. local Title = Instance.new("TextLabel")
  1440. local Ico = Instance.new("ImageLabel")
  1441. local UICorner = Instance.new("UICorner")
  1442.  
  1443. Dropdown.Name = "Dropdown"
  1444. Dropdown.Parent = Section
  1445. Dropdown.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  1446. Dropdown.BackgroundTransparency = 1.000
  1447. Dropdown.ClipsDescendants = true
  1448. Dropdown.Size = UDim2.new(1, 0, 0, 32)
  1449.  
  1450. Btn.Name = "Btn"
  1451. Btn.Parent = Dropdown
  1452. Btn.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  1453. Btn.Size = UDim2.new(1, 0, 0, 32)
  1454. Btn.AutoButtonColor = false
  1455. Btn.Font = Enum.Font.SourceSans
  1456. Btn.Text = ""
  1457. Btn.TextColor3 = Color3.fromRGB(0, 0, 0)
  1458. Btn.TextSize = 14.000
  1459.  
  1460. Title.Name = "Title"
  1461. Title.Parent = Btn
  1462. Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1463. Title.BackgroundTransparency = 1.000
  1464. Title.Position = UDim2.new(0, 10, 0, 0)
  1465. Title.Selectable = true
  1466. Title.Size = UDim2.new(0, 1, 0, 32)
  1467. Title.Font = Enum.Font.Gotham
  1468. Title.Text = text .. " : N/A"
  1469. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  1470. Title.TextSize = 14.000
  1471. Title.TextXAlignment = Enum.TextXAlignment.Left
  1472.  
  1473. Ico.Name = "Ico"
  1474. Ico.Parent = Btn
  1475. Ico.AnchorPoint = Vector2.new(1, 0.5)
  1476. Ico.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1477. Ico.BackgroundTransparency = 1.000
  1478. Ico.Position = UDim2.new(1, -10, 0.5, 0)
  1479. Ico.Size = UDim2.new(0, 20, 1, -12)
  1480. Ico.Image = "http://www.roblox.com/asset/?id=6034818379"
  1481. Ico.ImageTransparency = 0.400
  1482.  
  1483. UICorner.CornerRadius = UDim.new(0, 5)
  1484. UICorner.Parent = Btn
  1485.  
  1486. local HolderFrame = Instance.new("Frame")
  1487. local Holder = Instance.new("ScrollingFrame")
  1488. local Layout = Instance.new("UIListLayout")
  1489. local UIPadding = Instance.new("UIPadding")
  1490.  
  1491. HolderFrame.Name = "HolderFrame"
  1492. HolderFrame.Parent = Dropdown
  1493. HolderFrame.BackgroundTransparency = 1
  1494. HolderFrame.ClipsDescendants = true
  1495. HolderFrame.Position = UDim2.new(0, 0, 0, 38)
  1496. HolderFrame.Selectable = true
  1497. HolderFrame.Size = UDim2.new(1, 0, 0, 0)
  1498. HolderFrame.Visible = false
  1499.  
  1500. Holder.Name = "Holder"
  1501. Holder.Parent = HolderFrame
  1502. Holder.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1503. Holder.BackgroundTransparency = 1.000
  1504. Holder.ClipsDescendants = true
  1505. Holder.Position = UDim2.new(0, 0, 0, 0)
  1506. Holder.Size = UDim2.new(1, 0, 0, 0)
  1507. Holder.CanvasSize = UDim2.new(0, 0, 0, 0)
  1508. Holder.ScrollBarThickness = 4
  1509. Holder.BorderSizePixel = 0
  1510. Holder.Visible = false
  1511.  
  1512. Layout.Name = "Layout"
  1513. Layout.Parent = Holder
  1514. Layout.SortOrder = Enum.SortOrder.LayoutOrder
  1515. Layout.Padding = UDim.new(0, 4)
  1516.  
  1517. UIPadding.Parent = Holder
  1518. UIPadding.PaddingTop = UDim.new(0, 2)
  1519. UIPadding.PaddingLeft = UDim.new(0, 12)
  1520.  
  1521. Btn.MouseButton1Click:Connect(function()
  1522. dropdowntoggled = not dropdowntoggled
  1523. TweenService:Create(
  1524. Dropdown,
  1525. TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1526. {Size = dropdowntoggled and UDim2.new(1, 0, 0, 42 + HolderFrame.AbsoluteSize.Y) or UDim2.new(1, 0, 0, 32)}
  1527. ):Play()
  1528. TweenService:Create(
  1529. Ico,TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1530. {Rotation = dropdowntoggled and 180 or 0}
  1531. ):Play()
  1532. wait(.16)
  1533. Dropdown.Size = dropdowntoggled and UDim2.new(1, 0, 0, 42 + HolderFrame.AbsoluteSize.Y) or UDim2.new(1, 0, 0, 32)
  1534. Container.CanvasSize = UDim2.new(0, 0, 0, UIListLayout.AbsoluteContentSize.Y)
  1535. Holder.Visible = not Holder.Visible
  1536. HolderFrame.Visible = not HolderFrame.Visible
  1537. end)
  1538.  
  1539. local framesize = 0
  1540. local itemcount = 0
  1541. for i,v in next, list do
  1542. itemcount = itemcount + 1
  1543. if itemcount == 1 then
  1544. framesize = 32
  1545. elseif itemcount == 2 then
  1546. framesize = 61
  1547. elseif itemcount >= 3 then
  1548. framesize = 90
  1549. end
  1550.  
  1551. local Item = Instance.new("TextButton")
  1552. local UICorner = Instance.new("UICorner")
  1553. local ItemText = Instance.new("TextLabel")
  1554.  
  1555. Item.Name = "Item"
  1556. Item.Parent = Holder
  1557. Item.BackgroundColor3 = Color3.fromRGB(34, 34, 34)
  1558. Item.Size = UDim2.new(0.9623000, 0, 0, 28)
  1559. Item.BorderSizePixel = 0
  1560. Item.AutoButtonColor = false
  1561. Item.Font = Enum.Font.Gotham
  1562. Item.Text = ""
  1563. Item.TextColor3 = Color3.fromRGB(255, 255, 255)
  1564. Item.TextSize = 14.000
  1565. Item.TextTransparency = 0.400
  1566. Item.TextXAlignment = Enum.TextXAlignment.Left
  1567. Item.ClipsDescendants = true
  1568.  
  1569. UICorner.CornerRadius = UDim.new(0, 6)
  1570. UICorner.Parent = Item
  1571.  
  1572. ItemText.Name = "ItemText"
  1573. ItemText.Parent = Item
  1574. ItemText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1575. ItemText.BackgroundTransparency = 1.000
  1576. ItemText.Position = UDim2.new(0, 5, 0, 0)
  1577. ItemText.Size = UDim2.new(0, 1, 1, 0)
  1578. ItemText.Font = Enum.Font.Gotham
  1579. ItemText.Text = v
  1580. ItemText.TextColor3 = Color3.fromRGB(255, 255, 255)
  1581. ItemText.TextSize = 13.000
  1582. ItemText.TextTransparency = 0.400
  1583. ItemText.TextXAlignment = Enum.TextXAlignment.Left
  1584.  
  1585. Item.MouseEnter:Connect(function()
  1586. TweenService:Create(
  1587. ItemText,
  1588. TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1589. {TextTransparency = 0}
  1590. ):Play()
  1591. end)
  1592.  
  1593. Item.MouseLeave:Connect(function()
  1594. TweenService:Create(
  1595. ItemText,
  1596. TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1597. {TextTransparency = 0.400}
  1598. ):Play()
  1599. end)
  1600.  
  1601. Item.MouseButton1Click:Connect(function()
  1602. Ripple(Item)
  1603. if table.find(DropdownList, v) then
  1604. table.remove(DropdownList, table.find(DropdownList, v))
  1605. Title.Text = text .. " : " .. table.concat(DropdownList, ", ")
  1606. callback(DropdownList)
  1607. else
  1608. table.insert(DropdownList, v)
  1609. Title.Text = text .. " : " .. table.concat(DropdownList, ", ")
  1610. callback(DropdownList)
  1611. end
  1612. return pcall(callback, DropdownList)
  1613. end)
  1614.  
  1615. Holder.CanvasSize = UDim2.new(0,0,0,Layout.AbsoluteContentSize.Y + 5)
  1616. Holder.Size = UDim2.new(1, 0, 0, framesize)
  1617. HolderFrame.Size = UDim2.new(1, 0, 0, framesize)
  1618.  
  1619. spawn(function()
  1620. while wait() do
  1621. pcall(function()
  1622. Item.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].DropdownItem
  1623. Title.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
  1624. end)
  1625. end
  1626. end)
  1627. end
  1628.  
  1629. function Dropfunc:Clear()
  1630. dropdowntoggled = false
  1631. itemcount = 0
  1632. framesize = 0
  1633. for i,v in next, Holder:GetChildren() do
  1634. if v.Name == "Item" then
  1635. v:Destroy()
  1636. end
  1637. end
  1638. Title.Text = text .. " : "
  1639. TweenService:Create(
  1640. Dropdown,
  1641. TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1642. {Size = dropdowntoggled and UDim2.new(1, 0, 0, 42 + HolderFrame.AbsoluteSize.Y) or UDim2.new(1, 0, 0, 32)}
  1643. ):Play()
  1644. TweenService:Create(
  1645. Ico,TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1646. {Rotation = dropdowntoggled and 180 or 0}
  1647. ):Play()
  1648. wait(.16)
  1649. Dropdown.Size = UDim2.new(1, 0, 0, 32)
  1650. Container.CanvasSize = UDim2.new(0, 0, 0, UIListLayout.AbsoluteContentSize.Y)
  1651. HolderFrame.Size = UDim2.new(1, 0, 0, 0)
  1652. Holder.Visible = false
  1653. HolderFrame.Visible = false
  1654. end
  1655.  
  1656. function Dropfunc:Add(textadd)
  1657. itemcount = itemcount + 1
  1658. if itemcount == 1 then
  1659. framesize = 29
  1660. elseif itemcount == 2 then
  1661. framesize = 58
  1662. elseif itemcount >= 3 then
  1663. framesize = 87
  1664. end
  1665.  
  1666. local Item = Instance.new("TextButton")
  1667. local UICorner = Instance.new("UICorner")
  1668. local ItemText = Instance.new("TextLabel")
  1669.  
  1670. Item.Name = "Item"
  1671. Item.Parent = Holder
  1672. Item.BackgroundColor3 = Color3.fromRGB(34, 34, 34)
  1673. Item.Size = UDim2.new(0.9623000, 0, 0, 30)
  1674. Item.BorderSizePixel = 0
  1675. Item.AutoButtonColor = false
  1676. Item.Font = Enum.Font.Gotham
  1677. Item.Text = ""
  1678. Item.TextColor3 = Color3.fromRGB(255, 255, 255)
  1679. Item.TextSize = 14.000
  1680. Item.TextTransparency = 0.400
  1681. Item.TextXAlignment = Enum.TextXAlignment.Left
  1682. Item.ClipsDescendants = true
  1683.  
  1684. UICorner.CornerRadius = UDim.new(0, 6)
  1685. UICorner.Parent = Item
  1686.  
  1687. ItemText.Name = "ItemText"
  1688. ItemText.Parent = Item
  1689. ItemText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1690. ItemText.BackgroundTransparency = 1.000
  1691. ItemText.Position = UDim2.new(0, 5, 0, 0)
  1692. ItemText.Size = UDim2.new(0, 1, 1, 0)
  1693. ItemText.Font = Enum.Font.Gotham
  1694. ItemText.Text = textadd
  1695. ItemText.TextColor3 = Color3.fromRGB(255, 255, 255)
  1696. ItemText.TextSize = 13.000
  1697. ItemText.TextTransparency = 0.400
  1698. ItemText.TextXAlignment = Enum.TextXAlignment.Left
  1699.  
  1700. Item.MouseEnter:Connect(function()
  1701. TweenService:Create(
  1702. ItemText,
  1703. TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1704. {TextTransparency = 0}
  1705. ):Play()
  1706. end)
  1707.  
  1708. Item.MouseLeave:Connect(function()
  1709. TweenService:Create(
  1710. ItemText,
  1711. TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  1712. {TextTransparency = 0.400}
  1713. ):Play()
  1714. end)
  1715.  
  1716. Item.MouseButton1Click:Connect(function()
  1717. Ripple(Item)
  1718. if table.find(DropdownList, textadd) then
  1719. table.remove(DropdownList, table.find(DropdownList, textadd))
  1720. Title.Text = text .. " : " .. table.concat(DropdownList, ", ")
  1721. callback(DropdownList)
  1722. else
  1723. table.insert(DropdownList, textadd)
  1724. Title.Text = text .. " : " .. table.concat(DropdownList, ", ")
  1725. callback(DropdownList)
  1726. end
  1727. return pcall(callback, DropdownList)
  1728. end)
  1729.  
  1730. Holder.CanvasSize = UDim2.new(0,0,0,Layout.AbsoluteContentSize.Y + 5)
  1731. Holder.Size = UDim2.new(1, 0, 0, framesize)
  1732. HolderFrame.Size = UDim2.new(1, 0, 0, framesize)
  1733.  
  1734. spawn(function()
  1735. while wait() do
  1736. pcall(function()
  1737. Item.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].DropdownItem
  1738. Title.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
  1739. end)
  1740. end
  1741. end)
  1742. end
  1743.  
  1744. function Dropfunc:Set(val)
  1745. if type(val) == "table" then
  1746. for i,v in pairs(val) do
  1747. table.insert(DropdownList, v)
  1748. end
  1749. else
  1750. table.insert(DropdownList, val)
  1751. end
  1752. Title.Text = text .. " : " .. table.concat(DropdownList, ", ")
  1753. return callback(DropdownList)
  1754. end
  1755.  
  1756. spawn(function()
  1757. while wait() do
  1758. pcall(function()
  1759. Btn.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].Dropdown
  1760. Btn.Title.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
  1761. Btn.Ico.ImageColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
  1762. end)
  1763. end
  1764. end)
  1765.  
  1766. return Dropfunc
  1767. end
  1768.  
  1769. function Libfunc:Colorpicker(text, preset, callback)
  1770. local cpkfunc = {}
  1771. local colorpickertoggled = false
  1772. local ColorH, ColorS, ColorV = 1, 1, 1
  1773. local Colorpicker = Instance.new("Frame")
  1774. local UICorner = Instance.new("UICorner")
  1775. local Btn = Instance.new("TextButton")
  1776. local Box = Instance.new("Frame")
  1777. local UICorner_2 = Instance.new("UICorner")
  1778. local Colorpicker_2 = Instance.new("TextLabel")
  1779. local Hue = Instance.new("ImageLabel")
  1780. local HueCorner = Instance.new("UICorner")
  1781. local HueSelection = Instance.new("ImageLabel")
  1782. local HueGradient = Instance.new("UIGradient")
  1783. local Color = Instance.new("ImageLabel")
  1784. local ColorCorner = Instance.new("UICorner")
  1785. local ColorSelection = Instance.new("ImageLabel")
  1786.  
  1787. Colorpicker.Name = "Colorpicker"
  1788. Colorpicker.Parent = Section
  1789. Colorpicker.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  1790. Colorpicker.ClipsDescendants = true
  1791. Colorpicker.Size = UDim2.new(1, 0, 0, 32)
  1792.  
  1793. UICorner.CornerRadius = UDim.new(0, 6)
  1794. UICorner.Parent = Colorpicker
  1795.  
  1796. Btn.Name = "Btn"
  1797. Btn.Parent = Colorpicker
  1798. Btn.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  1799. Btn.BackgroundTransparency = 1.000
  1800. Btn.Size = UDim2.new(1, 0, 0, 32)
  1801. Btn.Font = Enum.Font.SourceSans
  1802. Btn.Text = ""
  1803. Btn.TextColor3 = Color3.fromRGB(0, 0, 0)
  1804. Btn.TextSize = 14.000
  1805.  
  1806. Box.Name = "Box"
  1807. Box.Parent = Btn
  1808. Box.AnchorPoint = Vector2.new(1, 0.5)
  1809. Box.BackgroundColor3 = preset
  1810. Box.Position = UDim2.new(1, -8, 0.5, 0)
  1811. Box.Size = UDim2.new(0, 21, 0, 21)
  1812.  
  1813. UICorner_2.CornerRadius = UDim.new(0, 4)
  1814. UICorner_2.Parent = Box
  1815.  
  1816. Colorpicker_2.Name = "Colorpicker"
  1817. Colorpicker_2.Parent = Btn
  1818. Colorpicker_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1819. Colorpicker_2.BackgroundTransparency = 1.000
  1820. Colorpicker_2.Position = UDim2.new(0, 10, 0, 0)
  1821. Colorpicker_2.Size = UDim2.new(0, 1, 0, 32)
  1822. Colorpicker_2.Font = Enum.Font.Gotham
  1823. Colorpicker_2.Text = text
  1824. Colorpicker_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  1825. Colorpicker_2.TextSize = 14.000
  1826. Colorpicker_2.TextXAlignment = Enum.TextXAlignment.Left
  1827.  
  1828. Hue.Name = "Hue"
  1829. Hue.Parent = Colorpicker
  1830. Hue.AnchorPoint = Vector2.new(0.5, 0)
  1831. Hue.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1832. Hue.Position = UDim2.new(0.5, 117, 0, 33)
  1833. Hue.Size = UDim2.new(0, 25, 0, 80)
  1834. Hue.Visible = false
  1835.  
  1836. HueCorner.CornerRadius = UDim.new(0, 3)
  1837. HueCorner.Name = "HueCorner"
  1838. HueCorner.Parent = Hue
  1839.  
  1840. HueSelection.Name = "HueSelection"
  1841. HueSelection.Parent = Hue
  1842. HueSelection.AnchorPoint = Vector2.new(0.5, 0.5)
  1843. HueSelection.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1844. HueSelection.BackgroundTransparency = 1.000
  1845. HueSelection.Position = UDim2.new(0.1348387, 0, 0.885714293, 0)
  1846. HueSelection.Size = UDim2.new(0, 18, 0, 18)
  1847. HueSelection.Image = "http://www.roblox.com/asset/?id=4805639000"
  1848.  
  1849. HueGradient.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(255, 0, 4)), ColorSequenceKeypoint.new(0.09, Color3.fromRGB(232, 0, 248)), ColorSequenceKeypoint.new(0.23, Color3.fromRGB(18, 0, 222)), ColorSequenceKeypoint.new(0.44, Color3.fromRGB(1, 113, 165)), ColorSequenceKeypoint.new(0.58, Color3.fromRGB(83, 128, 0)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(170, 17, 17))}
  1850. HueGradient.Rotation = 270
  1851. HueGradient.Name = "HueGradient"
  1852. HueGradient.Parent = Hue
  1853.  
  1854. Color.Name = "Color"
  1855. Color.Parent = Colorpicker
  1856. Color.AnchorPoint = Vector2.new(0.5, 0)
  1857. Color.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  1858. Color.Position = UDim2.new(0.5, -27, 0, 33)
  1859. Color.Size = UDim2.new(0, 246, 0, 80)
  1860. Color.ZIndex = 10
  1861. Color.Image = "rbxassetid://4155801252"
  1862. Color.Visible = false
  1863.  
  1864. ColorCorner.CornerRadius = UDim.new(0, 3)
  1865. ColorCorner.Name = "ColorCorner"
  1866. ColorCorner.Parent = Color
  1867.  
  1868. ColorSelection.Name = "ColorSelection"
  1869. ColorSelection.Parent = Color
  1870. ColorSelection.AnchorPoint = Vector2.new(0.5, 0.5)
  1871. ColorSelection.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1872. ColorSelection.BackgroundTransparency = 1.000
  1873. ColorSelection.Position = UDim2.new(0.878423631, 0, 0.161290318, 0)
  1874. ColorSelection.Size = UDim2.new(0, 18, 0, 18)
  1875. ColorSelection.Image = "http://www.roblox.com/asset/?id=4805639000"
  1876. ColorSelection.ScaleType = Enum.ScaleType.Fit
  1877.  
  1878. local function UpdateColorPicker()
  1879. Box.BackgroundColor3 = Color3.fromHSV(ColorH, ColorS, ColorV)
  1880. Color.BackgroundColor3 = Color3.fromHSV(ColorH, 1, 1)
  1881. pcall(callback, Box.BackgroundColor3)
  1882. end
  1883.  
  1884. Btn.MouseButton1Click:Connect(function()
  1885. colorpickertoggled = not colorpickertoggled
  1886. TweenService:Create(Colorpicker,TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),{Size = colorpickertoggled and UDim2.new(1,0,0,120) or UDim2.new(1,0,0,32)}):Play()
  1887. wait(.15)
  1888. Colorpicker.Size = colorpickertoggled and UDim2.new(1,0,0,120) or UDim2.new(1,0,0,32)
  1889. Container.CanvasSize = UDim2.new(0, 0, 0, UIListLayout.AbsoluteContentSize.Y)
  1890. Hue.Visible, Color.Visible = colorpickertoggled, colorpickertoggled
  1891. end)
  1892.  
  1893. ColorH = 1 - (math.clamp(HueSelection.AbsolutePosition.Y - Hue.AbsolutePosition.Y, 0, Hue.AbsoluteSize.Y) / Hue.AbsoluteSize.Y)
  1894. ColorS = (math.clamp(ColorSelection.AbsolutePosition.X - Color.AbsolutePosition.X, 0, Color.AbsoluteSize.X) / Color.AbsoluteSize.X)
  1895. ColorV = 1 - (math.clamp(ColorSelection.AbsolutePosition.Y - Color.AbsolutePosition.Y, 0, Color.AbsoluteSize.Y) / Color.AbsoluteSize.Y)
  1896.  
  1897. Box.BackgroundColor3 = preset
  1898. Color.BackgroundColor3 = preset
  1899. pcall(callback, Box.BackgroundColor3)
  1900.  
  1901. local ColorInput;
  1902. Color.InputBegan:Connect(function(input)
  1903. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1904. if ColorInput then
  1905. ColorInput:Disconnect()
  1906. end
  1907. ColorInput = RunService.RenderStepped:Connect(function()
  1908. local ColorX = (math.clamp(Mouse.X - Color.AbsolutePosition.X, 0, Color.AbsoluteSize.X) / Color.AbsoluteSize.X)
  1909. local ColorY = (math.clamp(Mouse.Y - Color.AbsolutePosition.Y, 0, Color.AbsoluteSize.Y) / Color.AbsoluteSize.Y)
  1910. ColorSelection.Position = UDim2.new(ColorX, 0, ColorY, 0)
  1911. ColorS = ColorX
  1912. ColorV = 1 - ColorY
  1913. UpdateColorPicker()
  1914. end)
  1915. end
  1916. end)
  1917.  
  1918. Color.InputEnded:Connect(function(input)
  1919. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1920. if ColorInput then
  1921. ColorInput:Disconnect()
  1922. end
  1923. end
  1924. end)
  1925.  
  1926. local HueInput;
  1927. Hue.InputBegan:Connect(function(input)
  1928. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1929. if HueInput then
  1930. HueInput:Disconnect()
  1931. end
  1932. HueInput = RunService.RenderStepped:Connect(function()
  1933. local HueY = (math.clamp(Mouse.Y - Hue.AbsolutePosition.Y, 0, Hue.AbsoluteSize.Y) / Hue.AbsoluteSize.Y)
  1934. HueSelection.Position = UDim2.new(0.48, 0, HueY, 0)
  1935. ColorH = 1 - HueY
  1936. UpdateColorPicker(true)
  1937. end)
  1938. end
  1939. end)
  1940.  
  1941. Hue.InputEnded:Connect(function(input)
  1942. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  1943. if HueInput then
  1944. HueInput:Disconnect()
  1945. end
  1946. end
  1947. end)
  1948.  
  1949. spawn(function()
  1950. while wait() do
  1951. pcall(function()
  1952. Colorpicker.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].Colorpicker
  1953. Colorpicker_2.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
  1954. end)
  1955. end
  1956. end)
  1957.  
  1958. return cpkfunc
  1959. end
  1960.  
  1961. function Libfunc:Label(text)
  1962. local LabelFunc = {}
  1963. local Label = Instance.new("Frame")
  1964. local Title = Instance.new("TextLabel")
  1965. local UICorner = Instance.new("UICorner")
  1966.  
  1967. Label.Name = "Label"
  1968. Label.Parent = Section
  1969. Label.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  1970. Label.ClipsDescendants = true
  1971. Label.Size = UDim2.new(1, 0, 0, 32)
  1972.  
  1973. Title.Name = "Title"
  1974. Title.Parent = Label
  1975. Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1976. Title.BackgroundTransparency = 1.000
  1977. Title.Position = UDim2.new(0, 10, 0, 0)
  1978. Title.Selectable = true
  1979. Title.Size = UDim2.new(0, 1, 0, 32)
  1980. Title.Font = Enum.Font.Gotham
  1981. Title.Text = text
  1982. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  1983. Title.TextSize = 14.000
  1984. Title.TextXAlignment = Enum.TextXAlignment.Left
  1985.  
  1986. UICorner.CornerRadius = UDim.new(0, 6)
  1987. UICorner.Parent = Label
  1988.  
  1989. function LabelFunc:Refresh(tochange)
  1990. Title.Text = tochange
  1991. end
  1992.  
  1993. spawn(function()
  1994. while wait() do
  1995. pcall(function()
  1996. Label.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].Label
  1997. Title.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
  1998. end)
  1999. end
  2000. end)
  2001.  
  2002. return LabelFunc
  2003. end
  2004.  
  2005. function Libfunc:Textbox(text, disappear, callback)
  2006. local Textbox = Instance.new("Frame")
  2007. local Title = Instance.new("TextLabel")
  2008. local UICorner = Instance.new("UICorner")
  2009. local Box = Instance.new("TextBox")
  2010. local UICorner_2 = Instance.new("UICorner")
  2011.  
  2012. Textbox.Name = "Textbox"
  2013. Textbox.Parent = Section
  2014. Textbox.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  2015. Textbox.ClipsDescendants = true
  2016. Textbox.Size = UDim2.new(1, 0, 0, 32)
  2017.  
  2018. Title.Name = "Title"
  2019. Title.Parent = Textbox
  2020. Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2021. Title.BackgroundTransparency = 1.000
  2022. Title.Position = UDim2.new(0, 10, 0, 0)
  2023. Title.Selectable = true
  2024. Title.Size = UDim2.new(0, 1, 0, 32)
  2025. Title.Font = Enum.Font.Gotham
  2026. Title.Text = text
  2027. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  2028. Title.TextSize = 14.000
  2029. Title.TextXAlignment = Enum.TextXAlignment.Left
  2030.  
  2031. UICorner.CornerRadius = UDim.new(0.0500000007, 0)
  2032. UICorner.Parent = Textbox
  2033.  
  2034. Box.Name = "Box"
  2035. Box.Parent = Textbox
  2036. Box.AnchorPoint = Vector2.new(1, 0.5)
  2037. Box.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  2038. Box.BorderSizePixel = 0
  2039. Box.Position = UDim2.new(1, -10, 0.5, 0)
  2040. Box.Size = UDim2.new(0, 0, 0, 22)
  2041. Box.Font = Enum.Font.Gotham
  2042. Box.Text = ""
  2043. Box.TextColor3 = Color3.fromRGB(255, 255, 255)
  2044. Box.TextSize = 14.000
  2045.  
  2046. UICorner_2.CornerRadius = UDim.new(0, 4)
  2047. UICorner_2.Parent = Box
  2048.  
  2049. Box.Changed:Connect(function()
  2050. Box.Size = UDim2.new(0,Box.TextBounds.X + 16,0,22)
  2051. end)
  2052. Box.PlaceholderText = " "
  2053.  
  2054. Textbox.InputBegan:Connect(function(input)
  2055. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  2056. Box:CaptureFocus()
  2057. end
  2058. end)
  2059.  
  2060. Box.FocusLost:Connect(function()
  2061. local txt = Box.Text
  2062. if disappear then
  2063. Box.Text = ""
  2064. end
  2065. return callback(txt)
  2066. end)
  2067.  
  2068. UserInputService.InputBegan:Connect(function(input)
  2069. if input.KeyCode == Enum.KeyCode.Escape and Box:IsFocused() then
  2070. Box:ReleaseFocus()
  2071. end
  2072. end)
  2073.  
  2074. spawn(function()
  2075. while wait() do
  2076. pcall(function()
  2077. Textbox.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].Textbox
  2078. Title.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
  2079. Box.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextboxFrame
  2080. Box.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
  2081. end)
  2082. end
  2083. end)
  2084. end
  2085.  
  2086. function Libfunc:Bind(text, presetbind, callback)
  2087. local BindFunc = {}
  2088. local Key = presetbind.Name
  2089. local Bind = Instance.new("TextButton")
  2090. local BText = Instance.new("TextLabel")
  2091. local Title = Instance.new("TextLabel")
  2092. local UICorner = Instance.new("UICorner")
  2093.  
  2094. Bind.Name = "Bind"
  2095. Bind.Parent = Section
  2096. Bind.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  2097. Bind.Size = UDim2.new(1, 0, 0, 32)
  2098. Bind.AutoButtonColor = false
  2099. Bind.Font = Enum.Font.SourceSans
  2100. Bind.TextColor3 = Color3.fromRGB(0, 0, 0)
  2101. Bind.TextSize = 14.000
  2102. Bind.TextTransparency = 1.000
  2103. Bind.TextXAlignment = Enum.TextXAlignment.Left
  2104.  
  2105. BText.Name = "BText"
  2106. BText.Parent = Bind
  2107. BText.AnchorPoint = Vector2.new(1, 0)
  2108. BText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2109. BText.BackgroundTransparency = 1.000
  2110. BText.Position = UDim2.new(1, -10, 0, 0)
  2111. BText.Selectable = true
  2112. BText.Size = UDim2.new(0, 1, 0, 32)
  2113. BText.Font = Enum.Font.Gotham
  2114. BText.Text = presetbind.Name
  2115. BText.TextColor3 = Color3.fromRGB(255, 255, 255)
  2116. BText.TextSize = 14.000
  2117. BText.TextXAlignment = Enum.TextXAlignment.Right
  2118.  
  2119. Title.Name = "Title"
  2120. Title.Parent = Bind
  2121. Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2122. Title.BackgroundTransparency = 1.000
  2123. Title.Position = UDim2.new(0, 10, 0, 0)
  2124. Title.Selectable = true
  2125. Title.Size = UDim2.new(0, 1, 0, 32)
  2126. Title.Font = Enum.Font.Gotham
  2127. Title.Text = text
  2128. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  2129. Title.TextSize = 14.000
  2130. Title.TextXAlignment = Enum.TextXAlignment.Left
  2131.  
  2132. UICorner.CornerRadius = UDim.new(0.0500000007, 0)
  2133. UICorner.Parent = Bind
  2134.  
  2135. local togglebind = false
  2136. Bind.MouseButton1Click:Connect(function()
  2137. BText.Text = "..."
  2138. local inputwait = game:GetService("UserInputService").InputBegan:wait()
  2139. togglebind = false
  2140. if togglebind == false then
  2141. if inputwait.KeyCode.Name ~= "Unknown" then
  2142. BText.Text = inputwait.KeyCode.Name
  2143. Key = inputwait.KeyCode.Name
  2144. togglebind = true
  2145. end
  2146. end
  2147. end)
  2148.  
  2149. game:GetService("UserInputService").InputBegan:connect(function(current, pressed)
  2150. if not pressed then
  2151. if current.KeyCode.Name == Key then
  2152. callback(Key)
  2153. end
  2154. end
  2155. end)
  2156.  
  2157. spawn(function()
  2158. while wait() do
  2159. pcall(function()
  2160. Bind.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].Bind
  2161. Title.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
  2162. BText.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
  2163. end)
  2164. end
  2165. end)
  2166.  
  2167. return BindFunc
  2168. end
  2169. return Libfunc
  2170. end
  2171. return SectionHold
  2172. end
  2173. return TabList
  2174. end
  2175.  
  2176. local pages = ""
  2177. local stopsearch = false
  2178. function TPReturner()
  2179. local Site;
  2180. if pages == "" then
  2181. Site = game:GetService("HttpService"):JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. game.PlaceId .. '/servers/Public?sortOrder=Asc&limit=100'))
  2182. else
  2183. Site = game:GetService("HttpService"):JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. game.PlaceId .. '/servers/Public?sortOrder=Asc&limit=100&cursor=' .. pages))
  2184. end
  2185. if Site.nextPageCursor and Site.nextPageCursor ~= "null" then
  2186. pages = Site.nextPageCursor
  2187. end
  2188. if Site["data"][1] ~= nil then
  2189. for i,v in pairs(Site["data"]) do
  2190. if v.id ~= game.JobId and #v.players < v.maxPlayers then
  2191. stopsearch = true
  2192. game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, v.id)
  2193. end
  2194. end
  2195. elseif Site.nextPageCursor and Site.nextPageCursor ~= nil then
  2196. pages = Site.nextPageCursor
  2197. end
  2198. end
  2199.  
  2200. function Teleport()
  2201. while task.wait() do
  2202. pcall(function()
  2203. TPReturner()
  2204. if pages ~= "" then
  2205. TPReturner()
  2206. end
  2207. end)
  2208. if stopsearch then
  2209. break
  2210. end
  2211. end
  2212. end
  2213.  
  2214. spawn(function()
  2215. pcall(function()
  2216. while wait() do
  2217. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  2218. if v.Name ~= game.Players.LocalPlayer.Name then
  2219. if game.Players.LocalPlayer.Name:sub(1,3) == v.Name:sub(1,3) then
  2220. Teleport()
  2221. end
  2222. end
  2223. end
  2224. end
  2225. end)
  2226. end)
  2227.  
  2228. getgenv().Setting = {
  2229. ["AutoFarm"] = false;
  2230. ["FarmMasteryAfterMax"] = true;
  2231. ["Level"] = game.Players.LocalPlayer.Data.Level.Value;
  2232. ["Weapon"] = "";
  2233. ["Superhuman"] = true;
  2234. ["Electric Claw"] = true;
  2235. ["Rengoku"] = true;
  2236. ["AutoSaber"] = true;
  2237. ["Yama"] = true;
  2238. ["Check Rengoku"] = false;
  2239. ["Check Superhuman"] = {
  2240. ["Electro"] = false;
  2241. ["BlackLeg"] = false;
  2242. ["FishmanKarate"] = false;
  2243. ["DragonClaw"] = false;
  2244. ["Superhuman"] = false;
  2245. ["Lv"] = 0;
  2246. };
  2247. ["Check Electric Claw"] = {
  2248. ["Have"] = false;
  2249. ["Lv"] = 0;
  2250. };
  2251. ["Sea Check"] = false;
  2252. ["CodeRedeemed"] = {
  2253. ["Bluxxy"] = false,
  2254. ["fudd10_v2"] = false,
  2255. ["3BVISITS"] = false,
  2256. ["UPD16"] = false,
  2257. ["SUB2GAMERROBOT_EXP1"] = false,
  2258. ["Sub2NoobMaster123"] = false,
  2259. ["Sub2Daigrock"] = false,
  2260. ["Axiore"] = false,
  2261. ["TantaiGaming"] = false,
  2262. ["StrawHatMaine"] = false,
  2263. ["Sub2OfficialNoobie"] = false,
  2264. ["TheGreatAce"] = false
  2265. },
  2266. ["WhiteScreenEnable"] = true;
  2267. ["AutoAwakeFruit"] = true;
  2268. }
  2269. getgenv().MainSetting = {
  2270. ["WebHooklink"] = "";
  2271. ["WebHookNotification"] = false;
  2272. ["SelectedFruit"] = {};
  2273. ["BuySelectedFruit"] = false;
  2274. ["Toggle Key"] = SolarisLib.Settings.CloseBind;
  2275. }
  2276. if not getgenv().Setting["FarmMasteryAfterMax"] then
  2277. getgenv().Setting["FarmMasteryAfterMax"] = true
  2278. end
  2279.  
  2280. if _G.CanUse then
  2281. _G.CanUse["print"] = true
  2282. _G.CanUse["hook"] = true
  2283. end
  2284. local GameName = game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name:gsub(" ", "")
  2285. local FolderName = "Quartyz Premium"
  2286. local gameFolder = FolderName .. "/BloxFruits"
  2287. local FileName = gameFolder .. "/" .. "QuartyzSoCute" .. game.Players.LocalPlayer.UserId .. "[" .. game.Players.LocalPlayer.Name .. "]"
  2288. if not isfolder(FolderName) then
  2289. makefolder(FolderName)
  2290. end
  2291. if not isfolder(gameFolder) then
  2292. makefolder(gameFolder)
  2293. end
  2294. if not isfile(gameFolder .. "/Saveglobalsetting.json") then
  2295. writefile(gameFolder .. "/Saveglobalsetting.json", game:GetService("HttpService"):JSONEncode(getgenv().MainSetting))
  2296. end
  2297. if not isfile(FileName .. ".json") then
  2298. writefile(FileName .. ".json", game:GetService("HttpService"):JSONEncode(getgenv().Setting))
  2299. end
  2300. if _G.CanUse then
  2301. _G.CanUse["print"] = false
  2302. _G.CanUse["hook"] = false
  2303. end
  2304.  
  2305. function Savesetting()
  2306. if _G.CanUse then
  2307. _G.CanUse["print"] = true
  2308. _G.CanUse["hook"] = true
  2309. end
  2310. writefile(FileName .. ".json", game:GetService("HttpService"):JSONEncode(getgenv().Setting))
  2311. if _G.CanUse then
  2312. _G.CanUse["print"] = false
  2313. _G.CanUse["hook"] = false
  2314. end
  2315. end
  2316.  
  2317. function Loadsetting()
  2318. if _G.CanUse then
  2319. _G.CanUse["print"] = true
  2320. _G.CanUse["hook"] = true
  2321. end
  2322. getgenv().Setting = game:GetService("HttpService"):JSONDecode(readfile(FileName .. ".json"))
  2323. if _G.CanUse then
  2324. _G.CanUse["print"] = false
  2325. _G.CanUse["hook"] = false
  2326. end
  2327. end
  2328. function Savemainsetting()
  2329. if _G.CanUse then
  2330. _G.CanUse["print"] = true
  2331. _G.CanUse["hook"] = true
  2332. end
  2333. writefile(gameFolder .. "/Saveglobalsetting.json", game:GetService("HttpService"):JSONEncode(getgenv().MainSetting))
  2334. if _G.CanUse then
  2335. _G.CanUse["print"] = false
  2336. _G.CanUse["hook"] = false
  2337. end
  2338. end
  2339. function Loadglobalsetting()
  2340. if _G.CanUse then
  2341. _G.CanUse["print"] = true
  2342. _G.CanUse["hook"] = true
  2343. end
  2344. getgenv().MainSetting = game:GetService("HttpService"):JSONDecode(readfile(gameFolder .. "/Saveglobalsetting.json"))
  2345. if _G.CanUse then
  2346. _G.CanUse["print"] = false
  2347. _G.CanUse["hook"] = false
  2348. end
  2349. end
  2350.  
  2351. Loadglobalsetting()
  2352. Loadsetting()
  2353.  
  2354. spawn(function()
  2355. while task.wait() do
  2356. pcall(function()
  2357. SolarisLib.Settings.CloseBind = getgenv().MainSetting["Toggle Key"]
  2358. end)
  2359. end
  2360. end)
  2361. if getgenv().Setting["Yama"] == nil then
  2362. getgenv().Setting["Yama"] = true
  2363. end
  2364. if getgenv().MainSetting["Toggle Key"] == nil then
  2365. getgenv().MainSetting["Toggle Key"] = SolarisLib.Settings.CloseBind
  2366. end
  2367.  
  2368. Weapon = {}
  2369. for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetChildren()) do
  2370. if v:IsA("Tool") then
  2371. table.insert(Weapon ,v.Name)
  2372. end
  2373. end
  2374. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  2375. if v:IsA("Tool") then
  2376. table.insert(Weapon, v.Name)
  2377. end
  2378. end
  2379. FruitList = {}
  2380. for i,v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("GetFruits")) do
  2381. if not table.find(FruitList, v.Name) and v.Name then
  2382. table.insert(FruitList, v.Name)
  2383. end
  2384. end
  2385.  
  2386. ExpensiveFruit = {}
  2387. spawn(function()
  2388. pcall(function()
  2389. while wait() do
  2390. for i,v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getInventoryFruits")) do
  2391. if v.Price >= 1000000 and not table.find(ExpensiveFruit, v) then
  2392. table.insert(ExpensiveFruit, v)
  2393. end
  2394. end
  2395. table.sort(ExpensiveFruit, function(a, b)
  2396. return a.Price < b.Price
  2397. end)
  2398. end
  2399. end)
  2400. end)
  2401.  
  2402. function FruitInStore()
  2403. fruitinstore = {}
  2404. for i,v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getInventoryFruits")) do
  2405. if v.Name and not table.find(fruitinstore, v.Name) then
  2406. table.insert(fruitinstore, v.Name)
  2407. end
  2408. end
  2409. return fruitinstore
  2410. end
  2411.  
  2412. FruitCanAwaketable = {}
  2413. for i,v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("GetFruits")) do
  2414. if v.Data["Awakening"] and not table.find(FruitCanAwaketable, v) then
  2415. table.insert(FruitCanAwaketable, v)
  2416. end
  2417. end
  2418. table.sort(FruitCanAwaketable, function(a, b)
  2419. return a.Price > b.Price
  2420. end)
  2421. FruitCanAwake = {}
  2422. for i,v in pairs(FruitCanAwaketable) do
  2423. if not table.find(FruitCanAwake, v.Name) then
  2424. table.insert(FruitCanAwake, v.Name)
  2425. end
  2426. end
  2427.  
  2428. spawn(function()
  2429. while true do wait(5)
  2430. table.clear(ExpensiveFruit)
  2431. end
  2432. end)
  2433.  
  2434. function TP(P)
  2435. local TPFunc = {}
  2436. Distance = (P.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude
  2437. if (CFrame.new(-11578.7676, 48.7659416, -7557.87988).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude < 40 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Awakener", "Check") ~= 0 and getgenv().Setting["AutoAwakeFruit"] then
  2438. return
  2439. end
  2440. if Distance < 8 then
  2441. Speed = 1000
  2442. elseif Distance < 275 then
  2443. Speed = 250
  2444. pcall(function()
  2445. tweenplay:Cancel()
  2446. end)
  2447. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = P
  2448. elseif Distance >= 275 then
  2449. Speed = 250
  2450. end
  2451. tweenplay = game:GetService("TweenService"):Create(game.Players.LocalPlayer.Character.HumanoidRootPart, TweenInfo.new(Distance/Speed, Enum.EasingStyle.Linear), {CFrame = P})
  2452. tweenplay:Play()
  2453. function TPFunc:Stop()
  2454. tweenplay:Cancel()
  2455. return tweenplay
  2456. end
  2457. return TPFunc
  2458. end
  2459.  
  2460. function GetDistance(P)
  2461. local Distance = (P.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude
  2462. return Distance
  2463. end
  2464.  
  2465. function CheckLevel(lvl)
  2466. local LowerLevel;
  2467. local Lvl = lvl or game:GetService("Players").LocalPlayer.Data.Level.Value
  2468. if Lvl >= 1 and Lvl <= 9 then
  2469. if tostring(game.Players.LocalPlayer.Team) == "Marines" then
  2470. namemon = "Trainee [Lv. 5]"
  2471. namequest = "MarineQuest"
  2472. questlv = 1
  2473. npcpos = CFrame.new(-2709.67944, 24.5206585, 2104.24585, -0.744724929, -3.97967455e-08, -0.667371571, 4.32403588e-08, 1, -1.07884304e-07, 0.667371571, -1.09201515e-07, -0.744724929)
  2474. elseif tostring(game.Players.LocalPlayer.Team) == "Pirates" then
  2475. namemon = "Bandit [Lv. 5]"
  2476. namequest = "BanditQuest1"
  2477. questlv = 1
  2478. npcpos = CFrame.new(1059.99731, 16.9222069, 1549.28162, -0.95466274, 7.29721794e-09, 0.297689587, 1.05190106e-08, 1, 9.22064114e-09, -0.297689587, 1.19340022e-08, -0.95466274)
  2479. end
  2480. return {["QuestLv"] = questlv, ["CFrameQuest"] = npcpos, ["NameMon"] = namemon, ["NameQuest"] = namequest}
  2481. end
  2482. local GuideModule = require(game:GetService("ReplicatedStorage").GuideModule)
  2483. local Quests = require(game:GetService("ReplicatedStorage").Quests)
  2484. for i,v in pairs(GuideModule["Data"]["NPCList"]) do
  2485. for i1,v1 in pairs(v["Levels"]) do
  2486. if Lvl >= v1 then
  2487. if not levelreq then
  2488. levelreq = 0
  2489. end
  2490. if v1 > levelreq then
  2491. npcpos = i["CFrame"]
  2492. questlv = i1
  2493. levelreq = v1
  2494. end
  2495. if #v["Levels"] == 3 and questlv == 3 then
  2496. npcpos = i["CFrame"]
  2497. questlv = 2
  2498. levelreq = v["Levels"][2]
  2499. end
  2500. end
  2501. end
  2502. end
  2503. for i,v in pairs(Quests) do
  2504. for i1,v1 in pairs(v) do
  2505. if v1["LevelReq"] == levelreq and i ~= "CitizenQuest" then
  2506. namequest = i
  2507. for i2,v2 in pairs(v1["Task"]) do
  2508. namemon = i2
  2509. end
  2510. end
  2511. end
  2512. end
  2513. if namequest == "MarineQuest2" then
  2514. namequest = "MarineQuest2"
  2515. questlv = 1
  2516. namemon = "Chief Petty Officer [Lv. 120]"
  2517. levelreq = 120
  2518. elseif namequest == "ImpelQuest" then
  2519. namequest = "PrisonerQuest"
  2520. questlv = 2
  2521. namemon = "Dangerous Prisoner"
  2522. levelreq = 210
  2523. npcpos = CFrame.new(5310.60547, 0.350014925, 474.946594, 0.0175017118, 0, 0.999846935, 0, 1, 0, -0.999846935, 0, 0.0175017118)
  2524. elseif namequest == "SkyExp1Quest" then
  2525. if questlv == 1 then
  2526. npcpos = CFrame.new(-4721.88867, 843.874695, -1949.96643, 0.996191859, -0, -0.0871884301, 0, 1, -0, 0.0871884301, 0, 0.996191859)
  2527. elseif questlv == 2 then
  2528. npcpos = CFrame.new(-7859.09814, 5544.19043, -381.476196, -0.422592998, 0, 0.906319618, 0, 1, 0, -0.906319618, 0, -0.422592998)
  2529. end
  2530. elseif namequest == "Area2Quest" and questlv == 2 then
  2531. namequest = "Area2Quest"
  2532. questlv = 1
  2533. namemon = "Swan Pirate [Lv. 775]"
  2534. levelreq = 775
  2535. end
  2536. namemon = namemon:sub(1,#namemon)
  2537. if not namemon:find("Lv") then
  2538. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  2539. monlv = string.match(v.Name, "%d+")
  2540. if v.Name:find(namemon) and #v.Name > #namemon and tonumber(monlv) <= Lvl + 50 then
  2541. namemon = v.Name
  2542. end
  2543. end
  2544. end
  2545. if not namemon:find("Lv") then
  2546. for i,v in pairs(game:GetService("ReplicatedStorage"):GetChildren()) do
  2547. monlv = string.match(v.Name, "%d+")
  2548. if v.Name:find(namemon) and #v.Name > #namemon and tonumber(monlv) <= Lvl + 50 then
  2549. namemon = v.Name
  2550. end
  2551. end
  2552. end
  2553. return {["QuestLv"] = questlv, ["CFrameQuest"] = npcpos, ["NameMon"] = namemon, ["NameQuest"] = namequest, ["LevelReq"] = levelreq}
  2554. end
  2555.  
  2556. function EquipWeapon(ToolSe)
  2557. if not CheckFruit and game.Players.LocalPlayer.Backpack:FindFirstChild(ToolSe) then
  2558. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  2559. if v.Name == ToolSe then
  2560. wait(0.6)
  2561. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  2562. end
  2563. end
  2564. end
  2565. end
  2566.  
  2567. function SelectFruit(name)
  2568. if not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild(name) then
  2569. game:GetService("Players").LocalPlayer.Character.Humanoid:EquipTool(game:GetService("Players").LocalPlayer.Backpack:FindFirstChild(name))
  2570. end
  2571. end
  2572.  
  2573. game:GetService("Players").LocalPlayer.Data.Level.Changed:Connect(function(param)
  2574. if param > getgenv().Setting["Level"] then
  2575. getgenv().Setting["Level"] = param
  2576. Savesetting()
  2577. end
  2578. end)
  2579.  
  2580. spawn(function()
  2581. while wait() do
  2582. pcall(function()
  2583. CFrameQuest = CheckLevel()["CFrameQuest"]
  2584. QuestLv = CheckLevel()["QuestLv"]
  2585. Namemon = CheckLevel()["NameMon"]
  2586. if Namemon:find("Lv") then
  2587. NameMon = Namemon
  2588. end
  2589. NameQuest = CheckLevel()["NameQuest"]
  2590. Farm_Mode = CFrame.new(0, 30, 8)
  2591. end)
  2592. end
  2593. end)
  2594.  
  2595. spawn(function()
  2596. while wait() and Second_Sea do
  2597. pcall(function()
  2598. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TalkTrevor","1") == 0 then
  2599. ContinueFarm = true
  2600. elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TalkTrevor","1") ~= 0 and ExpensiveFruit[1] ~= nil then
  2601. ContinueFarm = true
  2602. end
  2603. end)
  2604. end
  2605. end)
  2606.  
  2607. function UseLessFruit()
  2608. uselessfruit = {}
  2609. for i,v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getInventoryFruits")) do
  2610. if not table.find(FruitCanAwake, v.Name) and v.Price < 1000000 then
  2611. table.insert(uselessfruit, v.Name)
  2612. end
  2613. end
  2614. return uselessfruit
  2615. end
  2616.  
  2617. function BestFruit()
  2618. bestfruit = {}
  2619. for i,v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("GetFruits")) do
  2620. if table.find(FruitCanAwake, v.Name) or v.Price >= 1000000 then
  2621. table.insert(bestfruit, v.Name)
  2622. end
  2623. end
  2624. return bestfruit
  2625. end
  2626.  
  2627. function SkillWork()
  2628. skillcorrect = {}
  2629. for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.Main.Skills[game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool").Name]:GetDescendants()) do
  2630. if v.ClassName == "TextLabel" then
  2631. if v.Name == "Title" then
  2632. if v.TextColor3 == Color3.fromRGB(255, 255, 255) and v.Parent.Name ~= "Template" then
  2633. if not table.find(skillcorrect,v.Parent.Name) then
  2634. table.insert(skillcorrect,v.Parent.Name)
  2635. end
  2636. else
  2637. if table.find(skillcorrect,v.Parent.Name) then
  2638. table.remove(skillcorrect,v.Parent.Name)
  2639. end
  2640. end
  2641. end
  2642. end
  2643. end
  2644. return skillcorrect
  2645. end
  2646. --game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AwakeningChanger", "Check")
  2647.  
  2648. function AwakeCheck()
  2649. awakedskill = {}
  2650. for i,v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getAwakenedAbilities")) do
  2651. if v["Key"] then
  2652. table.insert(awakedskill, v["Key"])
  2653. if v["Awakened"] then
  2654. awakedskill[v["Key"]] = true
  2655. else
  2656. awakedskill[v["Key"]] = false
  2657. end
  2658. end
  2659. end
  2660. return awakedskill
  2661. end
  2662.  
  2663. spawn(function()
  2664. while wait() do
  2665. if getgenv().Setting["AutoFarm"] and getgenv().Setting["AutoAwakeFruit"] and getgenv().Setting["Level"] >= 2300 and UseLessFruit()[1] ~= nil and table.find(AwakeCheck(), "V") and AwakeCheck()["V"] == false then
  2666. pcall(function()
  2667. GoAwakening = true
  2668. if not game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
  2669. if game.Players.LocalPlayer.Data.DevilFruit.Value == "Bird: Phoenix" then
  2670. NameChip = "Ice"
  2671. else
  2672. if game.Players.LocalPlayer.Data.DevilFruit.Value ~= "" then
  2673. if game.Players.LocalPlayer.Data.DevilFruit.Value:find(" ") then
  2674. NameChip = game.Players.LocalPlayer.Data.DevilFruit.Value
  2675. elseif game.Players.LocalPlayer.Data.DevilFruit.Value:find("-") then
  2676. NameChip = game.Players.LocalPlayer.Data.DevilFruit.Value:split("-")[1]
  2677. end
  2678. else
  2679. NameChip = "Flame"
  2680. end
  2681. end
  2682. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("RaidsNpc", "Select", NameChip)
  2683. if not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Special Microchip") and not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Special Microchip") and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("RaidsNpc", "Select", NameChip):find("cooldown") then
  2684. CheckFruit = true
  2685. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("LoadFruit", UseLessFruit()[1])
  2686. wait()
  2687. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("RaidsNpc", "Select", NameChip)
  2688. wait()
  2689. CheckFruit = false
  2690. elseif game.Players.LocalPlayer.Backpack:FindFirstChild("Special Microchip") or game.Players.LocalPlayer.Character:FindFirstChild("Special Microchip") then
  2691. if Second_Sea then
  2692. fireclickdetector(game:GetService("Workspace").Map.CircleIsland.RaidSummon2.Button.Main.ClickDetector)
  2693. elseif Third_Sea then
  2694. fireclickdetector(game:GetService("Workspace").Map["Boat Castle"].RaidSummon2.Button.Main.ClickDetector)
  2695. end
  2696. end
  2697. elseif not game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Timer.Visible and game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
  2698. SolarisLib:Notification("Auto Awake Fruit", "Have Someone In Dungeon", 0.25)
  2699. if game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Y < 200 then
  2700. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.X, 201, game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Z)
  2701. end
  2702. end
  2703. end)
  2704. else
  2705. GoAwakening = false
  2706. end
  2707. end
  2708. end)
  2709.  
  2710. spawn(function()
  2711. while wait() and Third_Sea do
  2712. pcall(function()
  2713. if game:GetService("Workspace").Enemies:FindFirstChild("Deandre [Lv. 1750]") or game:GetService("Workspace").Enemies:FindFirstChild("Urban [Lv. 1750]") or game:GetService("Workspace").Enemies:FindFirstChild("Diablo [Lv. 1750]") or game:GetService("ReplicatedStorage"):FindFirstChild("Deandre [Lv. 1750]") or game:GetService("ReplicatedStorage"):FindFirstChild("Urban [Lv. 1750]") or game:GetService("ReplicatedStorage"):FindFirstChild("Diablo [Lv. 1750]") then
  2714. StartEliteHunter = true
  2715. else
  2716. StartEliteHunter = false
  2717. end
  2718. end)
  2719. end
  2720. end)
  2721.  
  2722. spawn(function()
  2723. while wait() and Third_Sea do
  2724. pcall(function()
  2725. if UseLessFruit()[1] then
  2726. CanStartRaid = true
  2727. elseif game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Special Microchip") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Special Microchip") then
  2728. CanStartRaid = true
  2729. else
  2730. CanStartRaid = false
  2731. end
  2732. end)
  2733. end
  2734. end)
  2735.  
  2736. local Remotes = game:GetService("ReplicatedStorage").Remotes
  2737. local LocalPlayer = game.Players.LocalPlayer
  2738. spawn(function()
  2739. while wait() do
  2740. if getgenv().Setting["AutoFarm"] then
  2741. pcall(function()
  2742. if ((First_Sea and getgenv().Setting["Level"] >= 700) or (Second_Sea and getgenv().Setting["Level"] >= 1500 and ContinueFarm)) then
  2743. if getgenv().Setting["Level"] >= 700 and First_Sea then
  2744. if game.Workspace.Map.Ice.Door.CanCollide == true and game.Workspace.Map.Ice.Door.Transparency == 0 then
  2745. if not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Key") and not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Key") and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("DressrosaQuestProgress").UsedKey == false then
  2746. TP(CFrame.new(4851.8720703125, 5.6514348983765, 718.47094726563))
  2747. wait(.5)
  2748. if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - CFrame.new(4851.8720703125, 5.6514348983765, 718.47094726563).Position).Magnitude <= 5 then
  2749. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("DressrosaQuestProgress","Detective")
  2750. end
  2751. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Key") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Key") then
  2752. EquipWeapon("Key")
  2753. TP(CFrame.new(1347.7124, 37.3751602, -1325.6488))
  2754. end
  2755. elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("DressrosaQuestProgress").KilledIceBoss == false and game.Workspace.Map.Ice.Door.CanCollide == false and game.Workspace.Map.Ice.Door.Transparency == 1 then
  2756. if game:GetService("Workspace").Enemies:FindFirstChild("Ice Admiral [Lv. 700] [Boss]") then
  2757. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  2758. if v.Name == "Ice Admiral [Lv. 700] [Boss]" and v.Humanoid.Health > 0 then
  2759. repeat task.wait()
  2760. EquipWeapon(getgenv().Setting["Weapon"])
  2761. TP(v.HumanoidRootPart.CFrame * Farm_Mode)
  2762. v.HumanoidRootPart.CanCollide = false
  2763. v.HumanoidRootPart.Size = Vector3.new(60,60,60)
  2764. RawFastAttack = true
  2765. until v.Humanoid.Health <= 0 or not v.Parent or not getgenv().Setting["AutoFarm"]
  2766. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelDressrosa")
  2767. end
  2768. end
  2769. else
  2770. RawFastAttack = true
  2771. TP(CFrame.new(1347.7124, 37.3751602, -1325.6488))
  2772. end
  2773. elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("DressrosaQuestProgress").TalkedDetective == true and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("DressrosaQuestProgress").UsedKey == true and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("DressrosaQuestProgress").KilledIceBoss == true then
  2774. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelDressrosa")
  2775. end
  2776. elseif getgenv().Setting["Level"] >= 1500 and Second_Sea then
  2777. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ZQuestProgress").KilledIndraBoss == false then
  2778. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") == 3 then
  2779. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TalkTrevor","1") == 0 then
  2780. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ZQuestProgress","Check") == 0 then
  2781. if (CFrame.new(-1926.3221435547, 12.819851875305, 1738.3092041016).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 10 then
  2782. wait(1.1)
  2783. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ZQuestProgress","Begin")
  2784. else
  2785. TP(CFrame.new(-1926.3221435547, 12.819851875305, 1738.3092041016))
  2786. end
  2787. if game:GetService("Workspace").Enemies:FindFirstChild("rip_indra [Lv. 1500] [Boss]") then
  2788. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  2789. if v.Name == "rip_indra [Lv. 1500] [Boss]" then
  2790. repeat task.wait()
  2791. EquipWeapon(getgenv().Setting["Weapon"])
  2792. TP(v.HumanoidRootPart.CFrame * Farm_Mode)
  2793. v.HumanoidRootPart.CanCollide = false
  2794. v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
  2795. RawFastAttack = true
  2796. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelZou")
  2797. until getgenv().Setting["AutoFarm"] == false or v.Humanoid.Health <= 0 or not v.Parent
  2798. RawFastAttack = false
  2799. end
  2800. end
  2801. elseif not game:GetService("Workspace").Enemies:FindFirstChild("rip_indra [Lv. 1500] [Boss]") and (CFrame.new(-26880.93359375, 22.848554611206, 473.18951416016).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 1000 then
  2802. TP(CFrame.new(-26880.93359375, 22.848554611206, 473.18951416016))
  2803. end
  2804. elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ZQuestProgress","Check") ~= 0 then
  2805. if game:GetService("Workspace").Enemies:FindFirstChild("Don Swan [Lv. 1000] [Boss]") or game:GetService("ReplicatedStorage"):FindFirstChild("Don Swan [Lv. 1000] [Boss]") then
  2806. if game:GetService("Workspace").Enemies:FindFirstChild("Don Swan [Lv. 1000] [Boss]") then
  2807. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  2808. if v.Name == "Don Swan [Lv. 1000] [Boss]" then
  2809. repeat task.wait()
  2810. EquipWeapon(getgenv().Setting["Weapon"])
  2811. TP(v.HumanoidRootPart.CFrame * Farm_Mode)
  2812. v.HumanoidRootPart.CanCollide = false
  2813. v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
  2814. RawFastAttack = true
  2815. until getgenv().Setting["AutoFarm"] == false or v.Humanoid.Health <= 0 or not v.Parent
  2816. RawFastAttack = false
  2817. end
  2818. end
  2819. else
  2820. if (CFrame.new(2284.912109375, 15.537666320801, 905.48291015625).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 1000 then
  2821. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(2284.912109375, 15.537666320801, 905.48291015625))
  2822. end
  2823. TP(CFrame.new(2284.912109375, 15.537666320801, 905.48291015625))
  2824. end
  2825. elseif not game:GetService("Workspace").Enemies:FindFirstChild("Don Swan [Lv. 1000] [Boss]") and not game:GetService("ReplicatedStorage"):FindFirstChild("Don Swan [Lv. 1000] [Boss]") then
  2826. if (CFrame.new(2284.912109375, 15.537666320801, 905.48291015625).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 1000 then
  2827. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(2284.912109375, 15.537666320801, 905.48291015625))
  2828. end
  2829. TP(CFrame.new(2284.912109375, 15.537666320801, 905.48291015625))
  2830. end
  2831. end
  2832. elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TalkTrevor","1") ~= 0 then
  2833. CheckFruit = true
  2834. if game.Players.LocalPlayer.Backpack:FindFirstChild("Quake Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Human: Buddha Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("String Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Bird: Phoenix Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Rumble Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Paw Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Gravity Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Dough Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Shadow Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Venom Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Control Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Dragon Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Soul Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Quake Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Human: Buddha Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("String Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Bird: Phoenix Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Rumble Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Paw Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Gravity Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Dough Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Shadow Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Venom Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Control Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Soul Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Dragon Fruit") then
  2835. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TalkTrevor","1")
  2836. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TalkTrevor","2")
  2837. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TalkTrevor","3")
  2838. CheckFruit = false
  2839. elseif ExpensiveFruit[1] ~= nil then
  2840. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("LoadFruit", ExpensiveFruit[1].Name)
  2841. end
  2842. end
  2843. elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") == 0 then
  2844. if string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Swan Pirates") and string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "50") and game.Players.LocalPlayer.PlayerGui.Main.Quest.Visible == true then
  2845. if game:GetService("Workspace").Enemies:FindFirstChild("Swan Pirate [Lv. 775]") then
  2846. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  2847. if v.Name == "Swan Pirate [Lv. 775]" then
  2848. repeat task.wait()
  2849. EquipWeapon(getgenv().Setting["Weapon"])
  2850. TP(v.HumanoidRootPart.CFrame * Farm_Mode)
  2851. v.HumanoidRootPart.CanCollide = false
  2852. v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
  2853. PosMonBartilo = v.HumanoidRootPart.CFrame
  2854. MagnetBartilo = true
  2855. until not v.Parent or v.Humanoid.Health <= 0 or getgenv().Setting["AutoFarm"] == false or game.Players.LocalPlayer.PlayerGui.Main.Quest.Visible == false
  2856. MagnetBartilo = false
  2857. end
  2858. end
  2859. elseif game:GetService("ReplicatedStorage"):FindFirstChild("Swan Pirate [Lv. 775]") then
  2860. TP(game:GetService("ReplicatedStorage"):FindFirstChild("Swan Pirate [Lv. 775]").HumanoidRootPart.CFrame)
  2861. end
  2862. else
  2863. TP(CFrame.new(-456.28952, 73.0200958, 299.895966))
  2864. if (Vector3.new(-456.28952, 73.0200958, 299.895966) - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 30 then
  2865. wait(1.1)
  2866. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StartQuest","BartiloQuest",1)
  2867. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetSpawnPoint")
  2868. end
  2869. end
  2870. elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") == 1 then
  2871. if QuestBartilo == nil then
  2872. TP(CFrame.new(-456.28952, 73.0200958, 299.895966))
  2873. end
  2874. if (Vector3.new(-456.28952, 73.0200958, 299.895966) - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 30 then
  2875. wait(1.1)
  2876. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo")
  2877. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetSpawnPoint")
  2878. QuestBartilo = 1
  2879. end
  2880. if game:GetService("Workspace").Enemies:FindFirstChild("Jeremy [Lv. 850] [Boss]") then
  2881. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  2882. if v.Name == "Jeremy [Lv. 850] [Boss]" then
  2883. repeat task.wait()
  2884. EquipWeapon(getgenv().Setting["Weapon"])
  2885. TP(v.HumanoidRootPart.CFrame * Farm_Mode)
  2886. v.HumanoidRootPart.CanCollide = false
  2887. v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
  2888. RawFastAttack = true
  2889. until not v.Parent or v.Humanoid.Health <= 0 or getgenv().Setting["AutoFarm"] == false
  2890. RawFastAttack = false
  2891. end
  2892. end
  2893. elseif QuestBartilo == 1 and game:GetService("ReplicatedStorage"):FindFirstChild("Jeremy [Lv. 850] [Boss]") then
  2894. TP(game:GetService("ReplicatedStorage"):FindFirstChild("Jeremy [Lv. 850] [Boss]").HumanoidRootPart.CFrame)
  2895. end
  2896. elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") == 2 then
  2897. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, game:GetService("Workspace").Map.Dressrosa.BartiloPlates.Plate1, 0)
  2898. task.wait()
  2899. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, game:GetService("Workspace").Map.Dressrosa.BartiloPlates.Plate2, 0)
  2900. task.wait()
  2901. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, game:GetService("Workspace").Map.Dressrosa.BartiloPlates.Plate3, 0)
  2902. task.wait()
  2903. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, game:GetService("Workspace").Map.Dressrosa.BartiloPlates.Plate4, 0)
  2904. task.wait()
  2905. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, game:GetService("Workspace").Map.Dressrosa.BartiloPlates.Plate5, 0)
  2906. task.wait()
  2907. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, game:GetService("Workspace").Map.Dressrosa.BartiloPlates.Plate6, 0)
  2908. task.wait()
  2909. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, game:GetService("Workspace").Map.Dressrosa.BartiloPlates.Plate7, 0)
  2910. task.wait()
  2911. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, game:GetService("Workspace").Map.Dressrosa.BartiloPlates.Plate8, 0)
  2912. end
  2913. else
  2914. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelZou")
  2915. end
  2916. end
  2917. elseif not First_Sea and (FragmentRaid or AwakeFragmentsRaid) and getgenv().Setting["Level"] >= 1100 and CanStartRaid then
  2918. if not game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
  2919. if game.Players.LocalPlayer.Data.DevilFruit.Value == "Bird: Phoenix" then
  2920. NameChip = "Ice"
  2921. else
  2922. if game.Players.LocalPlayer.Data.DevilFruit.Value ~= "" then
  2923. if game.Players.LocalPlayer.Data.DevilFruit.Value:find(" ") then
  2924. NameChip = game.Players.LocalPlayer.Data.DevilFruit.Value
  2925. elseif game.Players.LocalPlayer.Data.DevilFruit.Value:find("-") then
  2926. NameChip = game.Players.LocalPlayer.Data.DevilFruit.Value:split("-")[1]
  2927. end
  2928. else
  2929. NameChip = "Flame"
  2930. end
  2931. end
  2932. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("RaidsNpc", "Select", NameChip)
  2933. if not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Special Microchip") and not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Special Microchip") and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("RaidsNpc", "Select", NameChip):find("cooldown") then
  2934. CheckFruit = true
  2935. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("LoadFruit", UseLessFruit()[1])
  2936. wait()
  2937. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("RaidsNpc", "Select", NameChip)
  2938. wait()
  2939. CheckFruit = false
  2940. elseif game.Players.LocalPlayer.Backpack:FindFirstChild("Special Microchip") or game.Players.LocalPlayer.Character:FindFirstChild("Special Microchip") then
  2941. if Second_Sea then
  2942. fireclickdetector(game:GetService("Workspace").Map.CircleIsland.RaidSummon2.Button.Main.ClickDetector)
  2943. elseif Third_Sea then
  2944. fireclickdetector(game:GetService("Workspace").Map["Boat Castle"].RaidSummon2.Button.Main.ClickDetector)
  2945. end
  2946. end
  2947. elseif not game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Timer.Visible and game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
  2948. if game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Y < 200 then
  2949. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.X, 200, game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Z)
  2950. end
  2951. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") and game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Timer.Visible then
  2952. for i,v in pairs(Workspace.Enemies:GetChildren()) do
  2953. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  2954. v.Humanoid.Health = 0
  2955. sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
  2956. end
  2957. end
  2958. if game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 5") or game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 4") or game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 3") or game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 2") or game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
  2959. if game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 5") then
  2960. TP(game:GetService("Workspace")["_WorldOrigin"].Locations["Island 5"].CFrame*CFrame.new(0,80,0))
  2961. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 4") then
  2962. TP(game:GetService("Workspace")["_WorldOrigin"].Locations["Island 4"].CFrame*CFrame.new(0,80,0))
  2963. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 3") then
  2964. TP(game:GetService("Workspace")["_WorldOrigin"].Locations["Island 3"].CFrame*CFrame.new(0,80,0))
  2965. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 2") then
  2966. if game:GetService("Workspace")["_WorldOrigin"].Locations["Island 2"]:FindFirstChild("Mesh").Scale.Y >= 1580 then
  2967. TP(game:GetService("Workspace")["_WorldOrigin"].Locations["Island 2"].CFrame*CFrame.new(300,30,0))
  2968. else
  2969. TP(game:GetService("Workspace")["_WorldOrigin"].Locations["Island 2"].CFrame*CFrame.new(0,30,0))
  2970. end
  2971. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
  2972. TP(game:GetService("Workspace")["_WorldOrigin"].Locations["Island 1"].CFrame*CFrame.new(0,70,0))
  2973. end
  2974. end
  2975. end
  2976. elseif getgenv().Setting["Rengoku"] and getgenv().Setting["Level"] >= 1350 and Second_Sea and not getgenv().Setting["Check Rengoku"] then
  2977. if not game:GetService("Workspace").Map.IceCastle:FindFirstChild("RengokuChest") then
  2978. getgenv().Setting["Check Rengoku"] = true
  2979. Savesetting()
  2980. end
  2981. if game.Players.LocalPlayer.Backpack:FindFirstChild("Hidden Key") or game.Players.LocalPlayer.Character:FindFirstChild("Hidden Key") then
  2982. TP(game:GetService("Workspace").Map.IceCastle:FindFirstChild("RengokuChest").Detection.CFrame)
  2983. if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Rengoku") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Rengoku") then
  2984. getgenv().Setting["Check Rengoku"] = true
  2985. Savesetting()
  2986. end
  2987. elseif not game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible then
  2988. if GetDistance(CFrame.new(5668.41211, 28.176754, -6483.41553, 0.977241755, 1.14578029e-07, 0.21212855, -1.15998432e-07, 1, -5.74894665e-09, -0.21212855, -1.89884695e-08, 0.977241755)) < 5 then
  2989. wait(1.1)
  2990. if getgenv().Setting["Level"] >= 1350 and getgenv().Setting["Level"] <= 1374 then
  2991. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StartQuest", "FrostQuest", 1)
  2992. elseif getgenv().Setting["Level"] >= 1375 then
  2993. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StartQuest", "FrostQuest", 2)
  2994. end
  2995. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetSpawnPoint")
  2996. else
  2997. TP(CFrame.new(5668.41211, 28.176754, -6483.41553, 0.977241755, 1.14578029e-07, 0.21212855, -1.15998432e-07, 1, -5.74894665e-09, -0.21212855, -1.89884695e-08, 0.977241755))
  2998. if getgenv().Setting["AutoFarm"] and game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Z > 30000 then
  2999. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-6508.5581054688, 89.034996032715, -132.83953857422))
  3000. end
  3001. end
  3002. elseif game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible then
  3003. if game:GetService("Workspace").Enemies:FindFirstChild("Snow Lurker [Lv. 1375]") or game:GetService("Workspace").Enemies:FindFirstChild("Arctic Warrior [Lv. 1350]") then
  3004. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3005. if (v.Name == "Snow Lurker [Lv. 1375]" or v.Name == "Arctic Warrior [Lv. 1350]") and v.Humanoid.Health > 0 then
  3006. repeat task.wait()
  3007. EquipWeapon(getgenv().Setting["Weapon"])
  3008. TP(v.HumanoidRootPart.CFrame * Farm_Mode)
  3009. v.HumanoidRootPart.CanCollide = false
  3010. v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
  3011. PosMonRengoku = v.HumanoidRootPart.CFrame
  3012. RengokuMagnet = true
  3013. until game.Players.LocalPlayer.Backpack:FindFirstChild("Hidden Key") or getgenv().Setting["Rengoku"] == false or not v.Parent or v.Humanoid.Health <= 0
  3014. RengokuMagnet = false
  3015. end
  3016. end
  3017. elseif game:GetService("ReplicatedStorage"):FindFirstChild("Snow Lurker [Lv. 1375]") then
  3018. TP(game:GetService("ReplicatedStorage"):FindFirstChild("Snow Lurker [Lv. 1375]").HumanoidRootPart.CFrame)
  3019. elseif game:GetService("ReplicatedStorage"):FindFirstChild("Arctic Warrior [Lv. 1350]") then
  3020. TP(game:GetService("ReplicatedStorage"):FindFirstChild("Arctic Warrior [Lv. 1350]").HumanoidRootPart.CFrame)
  3021. end
  3022. end
  3023. elseif getgenv().Setting["AutoFarm"] and Third_Sea and getgenv().Setting["Electric Claw"] and ((game.Players.LocalPlayer.Character:FindFirstChild("Electro") and game.Players.LocalPlayer.Character:FindFirstChild("Electro").Level.Value >= 400) or (game.Players.LocalPlayer.Backpack:FindFirstChild("Electro") and game.Players.LocalPlayer.Backpack:FindFirstChild("Electro").Level.Value >= 400)) and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw","Start") ~= 0 then
  3024. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw", true) == 4 then
  3025. repeat task.wait() TP(CFrame.new(-10369.7725, 331.654175, -10130.3047, 0.879783928, -1.15147909e-08, 0.475373745, -1.70712194e-10, 1, 2.45385472e-08, -0.475373745, -2.16697718e-08, 0.879783928)) until (CFrame.new(-10369.7725, 331.654175, -10130.3047, 0.879783928, -1.15147909e-08, 0.475373745, -1.70712194e-10, 1, 2.45385472e-08, -0.475373745, -2.16697718e-08, 0.879783928).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 5 or AutoElectricClaw == false or game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw","Start") == 0
  3026. if (CFrame.new(-10369.7725, 331.654175, -10130.3047, 0.879783928, -1.15147909e-08, 0.475373745, -1.70712194e-10, 1, 2.45385472e-08, -0.475373745, -2.16697718e-08, 0.879783928).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 5 then
  3027. wait(1.1)
  3028. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw","Start")
  3029. end
  3030. repeat task.wait() TP(CFrame.new(-12548.998046875, 332.40396118164, -7603.1865234375)) until (CFrame.new(-12548.998046875, 332.40396118164, -7603.1865234375).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 5 or getgenv().Setting["Electric Claw"] == false or game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw","Start") == 0
  3031. end
  3032. elseif getgenv().Setting["Level"] >= 2300 and getgenv().Setting["AutoAwakeFruit"] and table.find(FruitCanAwake, game.Players.LocalPlayer.Data.DevilFruit.Value) and table.find(AwakeCheck(), "V") and AwakeCheck()["V"] == false and UseLessFruit()[1] ~= nil then
  3033. if game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") and game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Timer.Visible then
  3034. for i,v in pairs(game.Workspace.Enemies:GetDescendants()) do
  3035. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  3036. pcall(function()
  3037. v.Humanoid.Health = 0
  3038. sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
  3039. end)
  3040. end
  3041. end
  3042. if game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 5") or game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 4") or game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 3") or game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 2") or game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
  3043. if game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 5") then
  3044. TP(game:GetService("Workspace")["_WorldOrigin"].Locations["Island 5"].CFrame*CFrame.new(0,80,0))
  3045. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 4") then
  3046. TP(game:GetService("Workspace")["_WorldOrigin"].Locations["Island 4"].CFrame*CFrame.new(0,80,0))
  3047. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 3") then
  3048. TP(game:GetService("Workspace")["_WorldOrigin"].Locations["Island 3"].CFrame*CFrame.new(0,80,0))
  3049. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 2") then
  3050. TP(game:GetService("Workspace")["_WorldOrigin"].Locations["Island 2"].CFrame*CFrame.new(0,30,0))
  3051. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
  3052. TP(game:GetService("Workspace")["_WorldOrigin"].Locations["Island 1"].CFrame*CFrame.new(0,70,0))
  3053. end
  3054. end
  3055. end
  3056. elseif getgenv().Setting["AutoSaber"] and getgenv().Setting["Level"] >= 275 and First_Sea and (game:GetService("Workspace").Enemies:FindFirstChild("Saber Expert [Lv. 200] [Boss]") or game:GetService("ReplicatedStorage"):FindFirstChild("Saber Expert [Lv. 200] [Boss]")) and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ProQuestProgress").KilledShanks == false then
  3057. local RemoteProQuest = Remotes.CommF_:InvokeServer("ProQuestProgress")
  3058. if not Workspace.Map.Jungle.QuestPlates.Door.CanCollide then
  3059. if RemoteProQuest["UsedTorch"] then
  3060. if RemoteProQuest["UsedCup"] then
  3061. if RemoteProQuest["TalkedSon"] then
  3062. if RemoteProQuest["KilledMob"] then
  3063. if RemoteProQuest["UsedRelic"] then
  3064. if not RemoteProQuest["KilledShanks"] then
  3065. if game:GetService("Workspace").Enemies:FindFirstChild("Saber Expert [Lv. 200] [Boss]") then
  3066. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3067. if v.Name == "Saber Expert [Lv. 200] [Boss]" then
  3068. repeat task.wait()
  3069. EquipWeapon(getgenv().Setting["Weapon"])
  3070. TP(v.HumanoidRootPart.CFrame * Farm_Mode)
  3071. v.HumanoidRootPart.CanCollide = false
  3072. v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
  3073. RawFastAttack = true
  3074. until not v.Parent or v.Humanoid.Health <= 0 or AutoSaber == false
  3075. RawFastAttack = false
  3076. end
  3077. end
  3078. else
  3079. RawFastAttack = false
  3080. TP(CFrame.new(-1458.89502, 29.8870335, -50.633564))
  3081. if GetDistance(CFrame.new(-1458.89502, 29.8870335, -50.633564)) <= 100 then
  3082. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetSpawnPoint")
  3083. end
  3084. end
  3085. end
  3086. else
  3087. if not LocalPlayer.Character:FindFirstChild("Relic") and not LocalPlayer.Backpack:FindFirstChild("Relic") then
  3088. Remotes.CommF_:InvokeServer("ProQuestProgress","RichSon")
  3089. else
  3090. EquipWeapon("Relic")
  3091. if LocalPlayer.Character:FindFirstChild("Relic") then
  3092. Remotes.CommF_:InvokeServer("ProQuestProgress", "PlaceRelic")
  3093. end
  3094. end
  3095. end
  3096. elseif game:GetService("Workspace").Enemies:FindFirstChild("Mob Leader [Lv. 120] [Boss]") then
  3097. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3098. if v.Name == "Mob Leader [Lv. 120] [Boss]" then
  3099. repeat task.wait()
  3100. EquipWeapon(getgenv().Setting["Weapon"])
  3101. TP(v.HumanoidRootPart.CFrame * Farm_Mode)
  3102. v.HumanoidRootPart.CanCollide = false
  3103. v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
  3104. RawFastAttack = true
  3105. until not v.Parent or v.Humanoid.Health <= 0 or AutoSaber == false
  3106. RawFastAttack = false
  3107. end
  3108. end
  3109. else
  3110. RawFastAttack = false
  3111. TP(CFrame.new(-2844.7307128906, 7.4180502891541, 5356.6723632813))
  3112. end
  3113. else
  3114. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ProQuestProgress","RichSon")
  3115. end
  3116. else
  3117. if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Cup") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Cup") then
  3118. EquipWeapon("Cup")
  3119. if game:GetService("Players").LocalPlayer.Character.Cup.Handle.Drop1.Transparency == 1 then
  3120. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ProQuestProgress","FillCup",game:GetService("Players").LocalPlayer.Character.Cup)
  3121. elseif game:GetService("Players").LocalPlayer.Character.Cup.Handle.Drop1.Transparency ~= 1 then
  3122. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ProQuestProgress","SickMan")
  3123. end
  3124. elseif not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Cup") and not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Cup") then
  3125. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ProQuestProgress","GetCup")
  3126. end
  3127. end
  3128. elseif not LocalPlayer.Character:FindFirstChild("Torch") and not LocalPlayer.Backpack:FindFirstChild("Torch") then
  3129. Remotes.CommF_:InvokeServer("ProQuestProgress", "GetTorch")
  3130. else
  3131. Remotes.CommF_:InvokeServer("ProQuestProgress", "DestroyTorch")
  3132. end
  3133. else
  3134. for i,v in pairs(RemoteProQuest["Plates"]) do
  3135. if v == false then
  3136. Remotes.CommF_:InvokeServer("ProQuestProgress", "Plate", i)
  3137. end
  3138. end
  3139. getsenv(game.Players.LocalPlayer.PlayerScripts.QuestPro):refresh()
  3140. end
  3141. elseif getgenv().Setting["Yama"] and Third_Sea and StartEliteHunter then
  3142. if not game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible then
  3143. if GetDistance(CFrame.new(-5418.392578125, 313.74130249023, -2824.9157714844)) < 5 then
  3144. wait(1.1)
  3145. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("EliteHunter")
  3146. else
  3147. TP(CFrame.new(-5418.392578125, 313.74130249023, -2824.9157714844))
  3148. end
  3149. elseif game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible then
  3150. if string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Deandre") or string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Diablo") or string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Urban") then
  3151. if game:GetService("Workspace").Enemies:FindFirstChild("Deandre [Lv. 1750]") or game:GetService("Workspace").Enemies:FindFirstChild("Diablo [Lv. 1750]") or game:GetService("Workspace").Enemies:FindFirstChild("Urban [Lv. 1750]") then
  3152. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3153. if v.Name == "Deandre [Lv. 1750]" or v.Name == "Diablo [Lv. 1750]" or v.Name == "Urban [Lv. 1750]" then
  3154. repeat task.wait()
  3155. EquipWeapon(getgenv().Setting["Weapon"])
  3156. TP(v.HumanoidRootPart.CFrame * Farm_Mode)
  3157. v.HumanoidRootPart.CanCollide = false
  3158. v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
  3159. v.Humanoid.WalkSpeed = 0
  3160. OldFrame = v.HumanoidRootPart.CFrame
  3161. v.HumanoidRootPart.CFrame = OldFrame
  3162. RawFastAttack = true
  3163. until v.Humanoid.Health <= 0 or not StartEliteHunter or game.Players.LocalPlayer.PlayerGui.Main.Quest.Visible == false
  3164. RawFastAttack = false
  3165. end
  3166. end
  3167. elseif game:GetService("ReplicatedStorage"):FindFirstChild("Deandre [Lv. 1750]") then
  3168. TP(game:GetService("ReplicatedStorage"):FindFirstChild("Deandre [Lv. 1750]").HumanoidRootPart.CFrame)
  3169. elseif game:GetService("ReplicatedStorage"):FindFirstChild("Urban [Lv. 1750]") then
  3170. TP(game:GetService("ReplicatedStorage"):FindFirstChild("Urban [Lv. 1750]").HumanoidRootPart.CFrame)
  3171. elseif game:GetService("ReplicatedStorage"):FindFirstChild("Diablo [Lv. 1750]") then
  3172. TP(game:GetService("ReplicatedStorage"):FindFirstChild("Diablo [Lv. 1750]").HumanoidRootPart.CFrame)
  3173. end
  3174. else
  3175. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
  3176. end
  3177. end
  3178. elseif getgenv().Setting["AutoFarm"] then
  3179. if First_Sea then
  3180. if getgenv().Setting["Level"] >= 150 and getgenv().Setting["Level"] <= 189 and GetDistance(CFrameQuest) > 1500 then
  3181. if toposfarm then
  3182. toposfarm:Stop()
  3183. wait(0.05)
  3184. end
  3185. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-4607.82275, 872.54248, -1667.55688))
  3186. elseif getgenv().Setting["Level"] >= 375 and getgenv().Setting["Level"] <= 449 and GetDistance(CFrameQuest) > 3000 then
  3187. if toposfarm then
  3188. toposfarm:Stop()
  3189. wait(0.05)
  3190. end
  3191. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(61163.8515625, 11.6796875, 1819.7841796875))
  3192. elseif getgenv().Setting["Level"] >= 450 and getgenv().Setting["Level"] <= 474 and GetDistance(CFrameQuest) > 3000 then
  3193. if toposfarm then
  3194. toposfarm:Stop()
  3195. wait(0.05)
  3196. end
  3197. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-4607.82275, 872.54248, -1667.55688))
  3198. elseif getgenv().Setting["Level"] >= 475 and getgenv().Setting["Level"] <= 624 and game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Y < 2000 then
  3199. if toposfarm then
  3200. toposfarm:Stop()
  3201. wait(0.05)
  3202. end
  3203. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-7894.6176757813, 5547.1416015625, -380.29119873047))
  3204. elseif getgenv().Setting["Level"] >= 625 and game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Y > 3000 then
  3205. if toposfarm then
  3206. toposfarm:Stop()
  3207. wait(0.05)
  3208. end
  3209. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-4607.82275, 872.54248, -1667.55688))
  3210. end
  3211. elseif Second_Sea then
  3212. if getgenv().Setting["Level"] >= 1250 and getgenv().Setting["Level"] <= 1349 and GetDistance(CFrameQuest) > 20000 then
  3213. if toposfarm then
  3214. toposfarm:Stop()
  3215. wait(0.05)
  3216. end
  3217. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(923.21252441406, 126.9760055542, 32852.83203125))
  3218. elseif getgenv().Setting["Level"] >= 1350 and GetDistance(CFrameQuest) > 20000 then
  3219. if toposfarm then
  3220. toposfarm:Stop()
  3221. wait(0.05)
  3222. end
  3223. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-6508.5581054688, 89.034996032715, -132.83953857422))
  3224. end
  3225. elseif Third_Sea then
  3226. if getgenv().Setting["Level"] >= 1575 and getgenv().Setting["Level"] <= 1699 and GetDistance(CFrameQuest) > 2000 then
  3227. if toposfarm then
  3228. toposfarm:Stop()
  3229. wait(0.05)
  3230. end
  3231. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(5314.58203125, 25.419387817383, -125.94227600098))
  3232. end
  3233. end
  3234. if not game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible then
  3235. if GetDistance(CFrameQuest) < 5 then
  3236. wait(1.1)
  3237. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StartQuest", NameQuest, QuestLv)
  3238. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetSpawnPoint")
  3239. elseif GetDistance(CFrameQuest) < 20 or GetDistance(CFrameQuest) > 400 then
  3240. toquest = TP(CFrameQuest)
  3241. elseif GetDistance(CFrameQuest) >= 20 and GetDistance(CFrameQuest) <= 400 then
  3242. if toquest then
  3243. toquest:Stop()
  3244. wait(0.06)
  3245. end
  3246. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrameQuest
  3247. end
  3248. elseif game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible then
  3249. if game:GetService("Workspace").Enemies:FindFirstChild(NameMon) then
  3250. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3251. if v.Name == NameMon and v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 then
  3252. repeat task.wait()
  3253. if string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestReward.Title.Text:gsub(",","") ,require(game:GetService("ReplicatedStorage").Quests)[NameQuest][QuestLv].Reward.Exp) then
  3254. MinHealth = v.Humanoid.MaxHealth * 25 / 100
  3255. if FarmMasteryFruit and getgenv().Setting["FarmMasteryAfterMax"] then
  3256. if v.Humanoid.Health <= MinHealth then
  3257. EquipWeapon(game.Players.LocalPlayer.Data.DevilFruit.Value)
  3258. if GetDistance(v.HumanoidRootPart.CFrame * Farm_Mode) < 20 or GetDistance(v.HumanoidRootPart.CFrame * Farm_Mode) > 400 then
  3259. tweenmob = TP(v.HumanoidRootPart.CFrame * Farm_Mode)
  3260. elseif GetDistance(v.HumanoidRootPart.CFrame * Farm_Mode) >= 20 and GetDistance(v.HumanoidRootPart.CFrame * Farm_Mode) <= 400 then
  3261. if tweenmob then
  3262. tweenmob:Stop()
  3263. wait(0.06)
  3264. end
  3265. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * Farm_Mode
  3266. end
  3267. v.HumanoidRootPart.CanCollide = false
  3268. v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
  3269. PosMon = v.HumanoidRootPart.CFrame
  3270. MagnetActive = true
  3271. spawn(function()
  3272. if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Human-Human: Buddha") then
  3273. if game.Players.LocalPlayer.Character.HumanoidRootPart.Size == Vector3.new(2, 2.0199999809265, 1) then
  3274. if table.find(SkillWork(), "Z") then
  3275. game:GetService("VirtualInputManager"):SendKeyEvent(true, "Z", false, game)
  3276. game:GetService("VirtualInputManager"):SendKeyEvent(false, "Z", false, game)
  3277. end
  3278. end
  3279. if table.find(SkillWork(), "X") then
  3280. game:GetService("VirtualInputManager"):SendKeyEvent(true, "X", false, game)
  3281. game:GetService("Players").LocalPlayer.Character[game.Players.LocalPlayer.Data.DevilFruit.Value].RemoteEvent:FireServer(v.HumanoidRootPart.Position)
  3282. game:GetService("VirtualInputManager"):SendKeyEvent(false, "X", false, game)
  3283. end
  3284. if table.find(SkillWork(), "C") then
  3285. game:GetService("VirtualInputManager"):SendKeyEvent(true, "C", false, game)
  3286. game:GetService("Players").LocalPlayer.Character[game.Players.LocalPlayer.Data.DevilFruit.Value].RemoteEvent:FireServer(v.HumanoidRootPart.Position)
  3287. game:GetService("VirtualInputManager"):SendKeyEvent(false, "C", false, game)
  3288. end
  3289. if table.find(SkillWork(), "V") then
  3290. game:GetService("VirtualInputManager"):SendKeyEvent(true, "V", false, game)
  3291. game:GetService("Players").LocalPlayer.Character[game.Players.LocalPlayer.Data.DevilFruit.Value].RemoteEvent:FireServer(v.HumanoidRootPart.Position)
  3292. game:GetService("VirtualInputManager"):SendKeyEvent(false, "V", false, game)
  3293. end
  3294. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild(game.Players.LocalPlayer.Data.DevilFruit.Value) then
  3295. if table.find(SkillWork(), "Z") then
  3296. game:GetService("VirtualInputManager"):SendKeyEvent(true, "Z", false, game)
  3297. game:GetService("Players").LocalPlayer.Character[game.Players.LocalPlayer.Data.DevilFruit.Value].RemoteEvent:FireServer(v.HumanoidRootPart.Position)
  3298. game:GetService("VirtualInputManager"):SendKeyEvent(false, "Z", false, game)
  3299. end
  3300. if table.find(SkillWork(), "X") then
  3301. game:GetService("VirtualInputManager"):SendKeyEvent(true, "X", false, game)
  3302. game:GetService("Players").LocalPlayer.Character[game.Players.LocalPlayer.Data.DevilFruit.Value].RemoteEvent:FireServer(v.HumanoidRootPart.Position)
  3303. game:GetService("VirtualInputManager"):SendKeyEvent(false, "X", false, game)
  3304. end
  3305. if table.find(SkillWork(), "C") then
  3306. game:GetService("VirtualInputManager"):SendKeyEvent(true, "C", false, game)
  3307. game:GetService("Players").LocalPlayer.Character[game.Players.LocalPlayer.Data.DevilFruit.Value].RemoteEvent:FireServer(v.HumanoidRootPart.Position)
  3308. game:GetService("VirtualInputManager"):SendKeyEvent(false, "C", false, game)
  3309. end
  3310. if table.find(SkillWork(), "V") then
  3311. game:GetService("VirtualInputManager"):SendKeyEvent(true, "V", false, game)
  3312. game:GetService("Players").LocalPlayer.Character[game.Players.LocalPlayer.Data.DevilFruit.Value].RemoteEvent:FireServer(v.HumanoidRootPart.Position)
  3313. game:GetService("VirtualInputManager"):SendKeyEvent(false, "V", false, game)
  3314. end
  3315. end
  3316. end)
  3317. else
  3318. EquipWeapon(getgenv().Setting["Weapon"])
  3319. if GetDistance(v.HumanoidRootPart.CFrame * Farm_Mode) < 20 or GetDistance(v.HumanoidRootPart.CFrame * Farm_Mode) > 400 then
  3320. tweenmob = TP(v.HumanoidRootPart.CFrame * Farm_Mode)
  3321. elseif GetDistance(v.HumanoidRootPart.CFrame * Farm_Mode) >= 20 and GetDistance(v.HumanoidRootPart.CFrame * Farm_Mode) <= 400 then
  3322. if tweenmob then
  3323. tweenmob:Stop()
  3324. wait(0.06)
  3325. end
  3326. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * Farm_Mode
  3327. end
  3328. v.HumanoidRootPart.CanCollide = false
  3329. v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
  3330. PosMon = v.HumanoidRootPart.CFrame
  3331. MagnetActive = true
  3332. end
  3333. else
  3334. if game.Players.LocalPlayer.Backpack:FindFirstChild(getgenv().Setting["Weapon"]) then
  3335. EquipWeapon(getgenv().Setting["Weapon"])
  3336. end
  3337. if GetDistance(v.HumanoidRootPart.CFrame * Farm_Mode) < 20 or GetDistance(v.HumanoidRootPart.CFrame * Farm_Mode) > 400 then
  3338. tweenmob = TP(v.HumanoidRootPart.CFrame * Farm_Mode)
  3339. elseif GetDistance(v.HumanoidRootPart.CFrame * Farm_Mode) >= 20 and GetDistance(v.HumanoidRootPart.CFrame * Farm_Mode) <= 400 then
  3340. if tweenmob then
  3341. tweenmob:Stop()
  3342. wait(0.06)
  3343. end
  3344. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * Farm_Mode
  3345. end
  3346. v.HumanoidRootPart.CanCollide = false
  3347. v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
  3348. PosMon = v.HumanoidRootPart.CFrame
  3349. MagnetActive = true
  3350. if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Black Leg") and table.find(SkillWork(), "V") then
  3351. game:GetService("VirtualInputManager"):SendKeyEvent(true, "V", false, game)
  3352. game:GetService("VirtualInputManager"):SendKeyEvent(false, "V", false, game)
  3353. end
  3354. end
  3355. else
  3356. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
  3357. end
  3358. until not getgenv().Setting["AutoFarm"] or v.Humanoid.Health <= 0 or not game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible
  3359. MagnetActive = false
  3360. end
  3361. end
  3362. elseif game:GetService("ReplicatedStorage"):FindFirstChild(NameMon) then
  3363. tweenmob = TP(game:GetService("ReplicatedStorage"):FindFirstChild(NameMon).HumanoidRootPart.CFrame)
  3364. elseif GetDistance(PosMon) >= 400 then
  3365. tweenmob = TP(PosMon * Farm_Mode)
  3366. end
  3367. end
  3368. end
  3369. end)
  3370. end
  3371. end
  3372. end)
  3373.  
  3374. spawn(function()
  3375. while wait() and Second_Sea do
  3376. pcall(function()
  3377. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyHaki","Geppo")
  3378. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyHaki","Buso")
  3379. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyHaki","Soru")
  3380. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ProQuestProgress").KilledShanks then
  3381. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("KenTalk","Buy")
  3382. end
  3383. end)
  3384. end
  3385. end)
  3386.  
  3387. function CheckFragmentsWant()
  3388. amount_Fragments = 0
  3389. for i,v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("GetFruits")) do
  3390. if v.Data["Awakening"] and v.Name == game.Players.LocalPlayer.Data.DevilFruit.Value then
  3391. for i1,v1 in pairs(v.Data["Awakening"]["Fragments"]) do
  3392. if not AwakeCheck()[i1] then
  3393. amount_Fragments = amount_Fragments + v.Data["Awakening"]["Fragments"][i1]
  3394. end
  3395. end
  3396. end
  3397. end
  3398. return amount_Fragments
  3399. end
  3400.  
  3401. spawn(function()
  3402. while wait() and not First_Sea do
  3403. pcall(function()
  3404. if getgenv().Setting["AutoFarm"] and getgenv().Setting["AutoAwakeFruit"] and getgenv().Setting["Level"] >= 2300 then
  3405. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Awakener", "Check") ~= 0 then
  3406. local args = {
  3407. [1] = "Awakener",
  3408. [2] = "Awaken"
  3409. }
  3410. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  3411. end
  3412. if game.Players.LocalPlayer.Data.Fragments.Value < CheckFragmentsWant() then
  3413. AwakeFragmentsRaid = true
  3414. else
  3415. AwakeFragmentsRaid = false
  3416. end
  3417. else
  3418. AwakeFragmentsRaid = false
  3419. end
  3420. end)
  3421. end
  3422. end)
  3423.  
  3424. spawn(function()
  3425. while wait() and Third_Sea do
  3426. pcall(function()
  3427. if game.Players.LocalPlayer.Data.DevilFruit.Value == "" then
  3428. if getgenv().Setting["AutoAwakeFruit"] and getgenv().Setting["AutoFarm"] then
  3429. for i,v in pairs(FruitCanAwake) do
  3430. for i1,v1 in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getInventoryFruits")) do
  3431. if v1.Name == v then
  3432. CheckFruit = true
  3433. wait()
  3434. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("LoadFruit", v.Name)
  3435. wait()
  3436. game:GetService("Players").LocalPlayer.Character:WaitForChild(v.Name).EatRemote:InvokeServer("Eat")
  3437. wait()
  3438. CheckFruit = false
  3439. end
  3440. end
  3441. end
  3442. end
  3443. end
  3444. end)
  3445. end
  3446. end)
  3447.  
  3448. counttime = 0
  3449. spawn(function()
  3450. while wait() do
  3451. if getgenv().MainSetting["WebHookNotification"] then
  3452. WebHook(getgenv().MainSetting["WebHooklink"])
  3453. repeat wait(1)
  3454. counttime = counttime + 1
  3455. until counttime >= 180 or not getgenv().MainSetting["WebHookNotification"]
  3456. counttime = 0
  3457. end
  3458. end
  3459. end)
  3460.  
  3461. spawn(function()
  3462. while wait() and not Third_Sea do
  3463. pcall(function()
  3464. if getgenv().MainSetting["BuySelectedFruit"] then
  3465. if not table.find(getgenv().MainSetting["SelectedFruit"], game.Players.LocalPlayer.Data.DevilFruit.Value) then
  3466. for i,v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("GetFruits")) do
  3467. for i1,v1 in next, v do
  3468. if i1 == "Name" then
  3469. if v["OnSale"] and table.find(getgenv().MainSetting["SelectedFruit"], v1) and not table.find(getgenv().MainSetting["SelectedFruit"], game.Players.LocalPlayer.Data.DevilFruit.Value) then
  3470. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("PurchaseRawFruit", v1)
  3471. end
  3472. end
  3473. end
  3474. end
  3475. end
  3476. end
  3477. end)
  3478. end
  3479. end)
  3480.  
  3481. spawn(function()
  3482. while wait() do
  3483. if getgenv().Setting["Level"] ~= 2300 then
  3484. if getgenv().Setting["AutoFarm"] and getgenv().Setting["CodeRedeemed"]["TheGreatAce"] == false then
  3485. pcall(function()
  3486. if not string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Level.Exp.Text, "2x") then
  3487. for i,v in pairs(getgenv().Setting["CodeRedeemed"]) do
  3488. if v == false then
  3489. game:GetService("ReplicatedStorage").Remotes.Redeem:InvokeServer(i)
  3490. getgenv().Setting["CodeRedeemed"][i] = true
  3491. Savesetting()
  3492. end
  3493. end
  3494. end
  3495. end)
  3496. end
  3497. end
  3498. end
  3499. end)
  3500.  
  3501. spawn(function()
  3502. while wait() do
  3503. pcall(function()
  3504. if getgenv().Setting["AutoFarm"] and getgenv().Setting["FarmMasteryAfterMaxLv"] then
  3505. if getgenv().Setting["Level"] >= 2300 then
  3506. if table.find(FruitCanAwake, game.Players.LocalPlayer.Data.DevilFruit.Value) and table.find(AwakeCheck(), "V") and AwakeCheck()["V"] then
  3507. if getgenv().Setting["Check Superhuman"]["Lv"] <= 349 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySuperhuman") ~= 0 then
  3508. if not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Superhuman") and not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Superhuman") then
  3509. if game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool") then
  3510. game:GetService("Players").LocalPlayer.Character.Humanoid:UnequipTools()
  3511. end
  3512. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySuperhuman")
  3513. else
  3514. getgenv().Setting["Weapon"] = "Superhuman"
  3515. getgenv().Setting["Check Superhuman"]["Lv"] = game:GetService("Players").LocalPlayer.Character:FindFirstChild("Superhuman").Level.Value
  3516. Savesetting()
  3517. end
  3518. elseif getgenv().Setting["Check Electric Claw"]["Lv"] <= 349 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw") ~= 0 then
  3519. if not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Electric Claw") and not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Electric Claw") then
  3520. if game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool") then
  3521. game:GetService("Players").LocalPlayer.Character.Humanoid:UnequipTools()
  3522. end
  3523. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw")
  3524. else
  3525. getgenv().Setting["Weapon"] = "Electric Claw"
  3526. getgenv().Setting["Check Electric Claw"]["Lv"] = game:GetService("Players").LocalPlayer.Character:FindFirstChild("Electric Claw").Level.Value
  3527. Savesetting()
  3528. end
  3529. else
  3530. FarmMasteryFruit = true
  3531. end
  3532. else
  3533. if getgenv().Setting["Check Superhuman"]["Lv"] <= 349 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySuperhuman") ~= 0 then
  3534. if not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Superhuman") and not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Superhuman") then
  3535. if game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool") then
  3536. game:GetService("Players").LocalPlayer.Character.Humanoid:UnequipTools()
  3537. end
  3538. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySuperhuman")
  3539. else
  3540. getgenv().Setting["Weapon"] = "Superhuman"
  3541. getgenv().Setting["Check Superhuman"]["Lv"] = game:GetService("Players").LocalPlayer.Character:FindFirstChild("Superhuman").Level.Value
  3542. Savesetting()
  3543. end
  3544. elseif getgenv().Setting["Check Electric Claw"]["Lv"] <= 349 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw") ~= 0 then
  3545. if not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Electric Claw") and not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Electric Claw") then
  3546. if game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool") then
  3547. game:GetService("Players").LocalPlayer.Character.Humanoid:UnequipTools()
  3548. end
  3549. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw")
  3550. else
  3551. getgenv().Setting["Weapon"] = "Electric Claw"
  3552. getgenv().Setting["Check Electric Claw"]["Lv"] = game:GetService("Players").LocalPlayer.Character:FindFirstChild("Electric Claw").Level.Value
  3553. Savesetting()
  3554. end
  3555. elseif game.Players.LocalPlayer.Data.DevilFruit.Value ~= "" then
  3556. FarmMasteryFruit = true
  3557. end
  3558. end
  3559. end
  3560. end
  3561. end)
  3562. end
  3563. end)
  3564.  
  3565. spawn(function()
  3566. while wait() and Second_Sea do
  3567. if getgenv().Setting["AutoFarm"] then
  3568. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("LegendarySwordDealer", "1")
  3569. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("LegendarySwordDealer", "2")
  3570. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("LegendarySwordDealer", "3")
  3571. end
  3572. end
  3573. end)
  3574.  
  3575. spawn(function()
  3576. while wait() do
  3577. if getgenv().Setting["Superhuman"] then
  3578. pcall(function()
  3579. oldName = nil
  3580. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  3581. if v:IsA("Tool") and v.ToolTip == "Melee" then
  3582. if not oldName then
  3583. oldName = v.Name
  3584. elseif oldName and v.Name == oldName then
  3585. game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState(15)
  3586. end
  3587. for i1,v1 in pairs(game:GetService("Players").LocalPlayer.Character:GetChildren()) do
  3588. if v1:IsA("Tool") and v1.ToolTip == "Melee" then
  3589. game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState(15)
  3590. end
  3591. end
  3592. end
  3593. end
  3594. end)
  3595. end
  3596. end
  3597. end)
  3598.  
  3599. spawn(function()
  3600. while wait() do
  3601. if getgenv().Setting["Superhuman"] and (not getgenv().Setting["Check Superhuman"]["Superhuman"] or Second_Sea) then
  3602. pcall(function()
  3603. if game.Players.LocalPlayer.Character.Humanoid.Health > 0 then
  3604. if game.Players.LocalPlayer.Backpack:FindFirstChild("Superhuman") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Superhuman") then
  3605. getgenv().Setting["Weapon"] = "Superhuman"
  3606. getgenv().Setting["Check Superhuman"]["Lv"] = game:GetService("Players").LocalPlayer.Character:FindFirstChild("Superhuman").Level.Value
  3607. getgenv().Setting["Check Superhuman"]["Superhuman"] = true
  3608. Savesetting()
  3609. elseif game.Players.LocalPlayer.Backpack:FindFirstChild("Dragon Claw") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Dragon Claw") then
  3610. getgenv().Setting["Weapon"] = "Dragon Claw"
  3611. Savesetting()
  3612. elseif game.Players.LocalPlayer.Backpack:FindFirstChild("Fishman Karate") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Fishman Karate") then
  3613. getgenv().Setting["Weapon"] = "Fishman Karate"
  3614. Savesetting()
  3615. elseif game.Players.LocalPlayer.Backpack:FindFirstChild("Electro") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Electro") then
  3616. getgenv().Setting["Weapon"] = "Electro"
  3617. Savesetting()
  3618. elseif game.Players.LocalPlayer.Backpack:FindFirstChild("Black Leg") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Black Leg") then
  3619. getgenv().Setting["Weapon"] = "Black Leg"
  3620. Savesetting()
  3621. elseif game.Players.LocalPlayer.Backpack:FindFirstChild("Combat") or game.Players.LocalPlayer.Character:FindFirstChild("Combat") then
  3622. getgenv().Setting["Weapon"] = "Combat"
  3623. Savesetting()
  3624. end
  3625. if game.Players.LocalPlayer.Backpack:FindFirstChild("Combat") or game.Players.LocalPlayer.Character:FindFirstChild("Combat") or not getgenv().Setting["Check Superhuman"]["Electro"] then
  3626. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectro")
  3627. end
  3628. if game.Players.LocalPlayer.Backpack:FindFirstChild("Black Leg") and game.Players.LocalPlayer.Backpack:FindFirstChild("Black Leg").Level.Value >= 300 then
  3629. getgenv().Setting["Check Superhuman"]["BlackLeg"] = true
  3630. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyFishmanKarate")
  3631. wait()
  3632. end
  3633. if game.Players.LocalPlayer.Character:FindFirstChild("Black Leg") and game.Players.LocalPlayer.Character:FindFirstChild("Black Leg").Level.Value >= 300 then
  3634. getgenv().Setting["Check Superhuman"]["BlackLeg"] = true
  3635. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyFishmanKarate")
  3636. wait()
  3637. end
  3638. if game.Players.LocalPlayer.Backpack:FindFirstChild("Electro") and game.Players.LocalPlayer.Backpack:FindFirstChild("Electro").Level.Value >= 300 then
  3639. getgenv().Setting["Check Superhuman"]["Electro"] = true
  3640. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyBlackLeg")
  3641. wait()
  3642. end
  3643. if game.Players.LocalPlayer.Character:FindFirstChild("Electro") and game.Players.LocalPlayer.Character:FindFirstChild("Electro").Level.Value >= 300 then
  3644. getgenv().Setting["Check Superhuman"]["Electro"] = true
  3645. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyBlackLeg")
  3646. wait()
  3647. end
  3648. if game.Players.LocalPlayer.Backpack:FindFirstChild("Fishman Karate") and game.Players.LocalPlayer.Backpack:FindFirstChild("Fishman Karate").Level.Value >= 300 then
  3649. getgenv().Setting["Check Superhuman"]["FishmanKarate"] = true
  3650. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward", "DragonClaw", "2")
  3651. if game.Players.LocalPlayer.Data.Fragments.Value <= 1499 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward", "DragonClaw", "2") ~= 1 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward", "DragonClaw", "2") ~= 2 then
  3652. FragmentRaid = true
  3653. end
  3654. wait()
  3655. end
  3656. if game.Players.LocalPlayer.Character:FindFirstChild("Fishman Karate") and game.Players.LocalPlayer.Character:FindFirstChild("Fishman Karate").Level.Value >= 300 then
  3657. getgenv().Setting["Check Superhuman"]["FishmanKarate"] = true
  3658. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward", "DragonClaw", "2")
  3659. if game.Players.LocalPlayer.Data.Fragments.Value <= 1499 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward", "DragonClaw", "2") ~= 1 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward", "DragonClaw", "2") ~= 2 then
  3660. FragmentRaid = true
  3661. end
  3662. wait()
  3663. end
  3664. if game.Players.LocalPlayer.Backpack:FindFirstChild("Dragon Claw") and game.Players.LocalPlayer.Backpack:FindFirstChild("Dragon Claw").Level.Value >= 300 then
  3665. FragmentRaid = false
  3666. getgenv().Setting["Check Superhuman"]["DragonClaw"] = true
  3667. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySuperhuman")
  3668. wait()
  3669. end
  3670. if game.Players.LocalPlayer.Character:FindFirstChild("Dragon Claw") and game.Players.LocalPlayer.Character:FindFirstChild("Dragon Claw").Level.Value >= 300 then
  3671. FragmentRaid = false
  3672. getgenv().Setting["Check Superhuman"]["DragonClaw"] = true
  3673. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySuperhuman")
  3674. wait()
  3675. end
  3676. end
  3677. end)
  3678. end
  3679. end
  3680. end)
  3681.  
  3682. spawn(function()
  3683. while task.wait() do
  3684. if getgenv().Setting["AutoFarm"] then
  3685. if game.Players.LocalPlayer.Data.Stats.Melee.Level.Value ~= 2300 then
  3686. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AddPoint", "Melee", 1)
  3687. elseif game.Players.LocalPlayer.Data.Stats.Defense.Level.Value ~= 2300 then
  3688. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AddPoint", "Defense", 1)
  3689. elseif getgenv().Setting["AutoAwakeFruit"] and game.Players.LocalPlayer.Data.Stats["Demon Fruit"].Level.Value ~= 2300 then
  3690. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AddPoint", "Demon Fruit", 1)
  3691. end
  3692. end
  3693. end
  3694. end)
  3695.  
  3696. spawn(function()
  3697. while wait() do
  3698. pcall(function()
  3699. if getgenv().Setting["Electric Claw"] and not getgenv().Setting["Check Electric Claw"]["Have"] and (getgenv().Setting["Check Superhuman"]["Superhuman"] == true or not getgenv().Setting["Superhuman"]) and Third_Sea then
  3700. if (game.Players.LocalPlayer.Character:FindFirstChild("Electro") and game.Players.LocalPlayer.Character:FindFirstChild("Electro").Level.Value >= 400) or (game.Players.LocalPlayer.Backpack:FindFirstChild("Electro") and game.Players.LocalPlayer.Backpack:FindFirstChild("Electro").Level.Value >= 400) then
  3701. if game.Players.LocalPlayer.Data.Fragments.Value <= 4999 and not getgenv().Setting["Check Electric Claw"]["Have"] and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw","Start") == 0 then
  3702. FragmentRaid = true
  3703. end
  3704. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw")
  3705. end
  3706. if game.Players.LocalPlayer.Backpack:FindFirstChild("Electro") or game.Players.LocalPlayer.Character:FindFirstChild("Electro") then
  3707. getgenv().Setting["Weapon"] = "Electro"
  3708. Savesetting()
  3709. elseif game.Players.LocalPlayer.Backpack:FindFirstChild("Electric Claw") or game.Players.LocalPlayer.Character:FindFirstChild("Electric Claw") then
  3710. FragmentRaid = false
  3711. getgenv().Setting["Weapon"] = "Electric Claw"
  3712. getgenv().Setting["Check Electric Claw"]["Lv"] = game:GetService("Players").LocalPlayer.Character:FindFirstChild("Electric Claw").Level.Value
  3713. getgenv().Setting["Check Electric Claw"]["Have"] = true
  3714. Savesetting()
  3715. else
  3716. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectro")
  3717. end
  3718. end
  3719. end)
  3720. end
  3721. end)
  3722.  
  3723. spawn(function()
  3724. while wait() do
  3725. pcall(function()
  3726. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  3727. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Buso")
  3728. end
  3729. end)
  3730. end
  3731. end)
  3732.  
  3733. spawn(function()
  3734. pcall(function()
  3735. while wait() do
  3736. if getgenv().Setting["AutoFarm"] and not CheckFruit and not GoAwakening then
  3737. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Cousin","Buy")
  3738. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  3739. if string.find(v.Name, "Fruit") then
  3740. FruitDeleteSpace = v.Name:gsub(" Fruit", "")
  3741. if v.Name == "Bird: Falcon Fruit" then
  3742. NameFruit = "Bird-Bird: Falcon"
  3743. elseif v.Name == "Bird: Phoenix Fruit" then
  3744. NameFruit = "Bird-Bird: Phoenix"
  3745. elseif v.Name == "Human: Buddha Fruit" then
  3746. NameFruit = "Human-Human: Buddha"
  3747. else
  3748. NameFruit = FruitDeleteSpace.."-"..FruitDeleteSpace
  3749. end
  3750. if not table.find(FruitInStore(), NameFruit) then
  3751. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StoreFruit", NameFruit)
  3752. end
  3753. end
  3754. end
  3755. for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetChildren()) do
  3756. if string.find(v.Name, "Fruit") then
  3757. FruitDeleteSpace = v.Name:gsub(" Fruit", "")
  3758. if v.Name == "Bird: Falcon Fruit" then
  3759. NameFruit = "Bird-Bird: Falcon"
  3760. elseif v.Name == "Bird: Phoenix Fruit" then
  3761. NameFruit = "Bird-Bird: Phoenix"
  3762. elseif v.Name == "Human: Buddha Fruit" then
  3763. NameFruit = "Human-Human: Buddha"
  3764. else
  3765. NameFruit = FruitDeleteSpace.."-"..FruitDeleteSpace
  3766. end
  3767. if not table.find(FruitInStore(), NameFruit) then
  3768. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StoreFruit", NameFruit)
  3769. end
  3770. end
  3771. end
  3772. end
  3773. end
  3774. end)
  3775. end)
  3776.  
  3777. spawn(function()
  3778. while task.wait() do
  3779. pcall(function()
  3780. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3781. if v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 and not v.Name:find("Boss") then
  3782. if getgenv().Setting["AutoFarm"] and MagnetActive and tonumber(v.Name:match("%d+")) <= tonumber(NameMon:match("%d+")) then
  3783. if (v.HumanoidRootPart.Position - PosMon.Position).Magnitude <= 350 then
  3784. v.Head.CanCollide = false
  3785. v.HumanoidRootPart.CanCollide = false
  3786. v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
  3787. v.Humanoid.WalkSpeed = 0
  3788. v.HumanoidRootPart.CFrame = PosMon
  3789. sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
  3790. end
  3791. elseif getgenv().Setting["AutoFarm"] and MagnetBartilo then
  3792. if v.Name == "Swan Pirate [Lv. 775]" then
  3793. v.Head.CanCollide = false
  3794. v.HumanoidRootPart.CanCollide = false
  3795. v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
  3796. v.Humanoid.WalkSpeed = 0
  3797. v.HumanoidRootPart.CFrame = PosMonBartilo
  3798. sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
  3799. end
  3800. elseif getgenv().Setting["Rengoku"] and RengokuMagnet then
  3801. if (v.Name == "Snow Lurker [Lv. 1375]" or v.Name == "Arctic Warrior [Lv. 1350]") and (v.HumanoidRootPart.Position - PosMonRengoku.Position).Magnitude <= 375 then
  3802. v.Head.CanCollide = false
  3803. v.HumanoidRootPart.CanCollide = false
  3804. v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
  3805. v.Humanoid.WalkSpeed = 0
  3806. v.HumanoidRootPart.CFrame = PosMonRengoku
  3807. sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
  3808. end
  3809. end
  3810. end
  3811. end
  3812. end)
  3813. end
  3814. end)
  3815.  
  3816. local LPH_JIT_MAX = LPH_JIT_MAX or function(...) return ... end
  3817. local RigC = getupvalue(require(game:GetService("Players").LocalPlayer.PlayerScripts.CombatFramework),2)
  3818. local particle = require(game:GetService("Players").LocalPlayer.PlayerScripts.CombatFramework.Particle)
  3819. local kkii = require(game:GetService("ReplicatedStorage").Util.CameraShaker)
  3820. local function maxincrement()
  3821. return #RigC.activeController.anims.basic
  3822. end
  3823. kkii:Stop()
  3824. LPH_JIT_MAX(function()
  3825. spawn(function()
  3826. game:GetService("RunService").Stepped:Connect(function()
  3827. pcall(function()
  3828. RigC.activeController.increment = maxincrement() - 1
  3829. RigC.activeController.timeToNextAttack = -(math.huge*math.huge*math.huge)
  3830. RigC.activeController.hitboxMagnitude = 50
  3831. game:GetService("RunService").RenderStepped:wait()
  3832. RigC.activeController.attacking = false
  3833. end)
  3834. end)
  3835. game:GetService("RunService").Heartbeat:Connect(function()
  3836. pcall(function()
  3837. if RawFastAttack or (getgenv().Setting["AutoFarm"] and MagnetActive) or (getgenv().Setting["AutoFarm"] and MagnetBartilo) or (getgenv().Setting["Rengoku"] and RengokuMagnet) then
  3838. RigC.activeController:attack()
  3839. end
  3840. end)
  3841. end)
  3842. local hookparticle;
  3843. hookparticle = hookfunc(particle.play, function(...)
  3844. local args = {...}
  3845. args[2] = nil
  3846. return hookparticle(args[1], args[2], args[3])
  3847. end)
  3848. end)
  3849. end)()
  3850.  
  3851. spawn(function()
  3852. game:GetService("CoreGui").RobloxPromptGui.promptOverlay.ChildAdded:Connect(function(child)
  3853. if child.Name == 'ErrorPrompt' and child:FindFirstChild('MessageArea') and child.MessageArea:FindFirstChild("ErrorFrame") then
  3854. if not game:GetService("CoreGui").RobloxPromptGui.promptOverlay.ErrorPrompt.MessageArea.ErrorFrame.ErrorMessage.Text:lower():find("teleport") then
  3855. game:GetService("TeleportService"):Teleport(game.PlaceId)
  3856. end
  3857. end
  3858. end)
  3859. end)
  3860.  
  3861. spawn(function()
  3862. game:GetService("RunService").Heartbeat:Connect(function()
  3863. if getgenv().Setting["AutoFarm"] then
  3864. if syn then
  3865. setfflag("HumanoidParallelRemoveNoPhysics", "False")
  3866. setfflag("HumanoidParallelRemoveNoPhysicsNoSimulate2", "False")
  3867. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  3868. else
  3869. if not game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("MyBodyVelocity") then
  3870. local BodyVelocity = Instance.new("BodyVelocity")
  3871. BodyVelocity.Name = "MyBodyVelocity"
  3872. BodyVelocity.Parent = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  3873. BodyVelocity.MaxForce = Vector3.new(10000, 10000, 10000)
  3874. BodyVelocity.Velocity = Vector3.new(0, 0, 0)
  3875. end
  3876. if not game:GetService("Workspace"):FindFirstChild("LOL") then
  3877. local LOL = Instance.new("Part")
  3878. LOL.Name = "LOL"
  3879. LOL.Parent = game.Workspace
  3880. LOL.Anchored = true
  3881. LOL.Transparency = 1
  3882. LOL.Size = Vector3.new(20 ,0.25 ,20)
  3883. LOL.Material = "Neon"
  3884. elseif game:GetService("Workspace"):FindFirstChild("LOL") then
  3885. game.Workspace["LOL"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0, -3.9, 0)
  3886. end
  3887. end
  3888. elseif game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("MyBodyVelocity") then
  3889. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("MyBodyVelocity"):Destroy()
  3890. elseif game:GetService("Workspace"):FindFirstChild("LOL") then
  3891. game:GetService("Workspace"):FindFirstChild("LOL"):Destroy()
  3892. end
  3893. end)
  3894. game:GetService("RunService").Stepped:Connect(function()
  3895. if getgenv().Setting["AutoFarm"] then
  3896. for _, v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  3897. if v:IsA("BasePart") then
  3898. v.CanCollide = false
  3899. end
  3900. end
  3901. end
  3902. end)
  3903. end)
  3904.  
  3905. function WebHook(url)
  3906. pcall(function()
  3907. local Race = game.Players.LocalPlayer.Data.Race.Value
  3908. local Fruit = game.Players.LocalPlayer.Data.DevilFruit.Value or "not Have"
  3909. local PlayersServer = #game.Players:GetPlayers()
  3910. local Ping = game:GetService("Stats").Network.ServerStatsItem["Data Ping"]:GetValueString()
  3911. local cpu = game:GetService("Stats").PerformanceStats.CPU:GetValueString()
  3912. local Memory = game:GetService("Stats").PerformanceStats.Memory:GetValueString()
  3913. local gpu = game:GetService("Stats").PerformanceStats.GPU:GetValueString()
  3914. local Fps = math.floor(workspace:GetRealPhysicsFPS())
  3915. WeaponMelee = "Error"
  3916. WeaponMeleeLv = "Error"
  3917. WeaponSword = "Error"
  3918. WeaponSwordLv = "Error"
  3919. for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetChildren()) do
  3920. if v:IsA("Tool") then
  3921. if v.ToolTip == "Melee" then
  3922. WeaponMelee = v.Name
  3923. WeaponMeleeLv = v.Level.Value
  3924. elseif v.ToolTip == "Sword" then
  3925. WeaponSword = v.Name
  3926. WeaponSwordLv = v.Level.Value
  3927. end
  3928. end
  3929. end
  3930. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  3931. if v:IsA("Tool") then
  3932. if v.ToolTip == "Melee" then
  3933. WeaponMelee = v.Name
  3934. WeaponMeleeLv = v.Level.Value
  3935. elseif v.ToolTip == "Sword" then
  3936. WeaponSword = v.Name
  3937. WeaponSwordLv = v.Level.Value
  3938. end
  3939. end
  3940. end
  3941. fruitinstore = ""
  3942. for i,v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getInventoryFruits")) do
  3943. if i > 1 then
  3944. fruitinstore = fruitinstore..", "..v.Name
  3945. else
  3946. fruitinstore = fruitinstore..v.Name
  3947. end
  3948. end
  3949. wpstorage = ""
  3950. for i, v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getInventoryWeapons")) do
  3951. if i > 1 then
  3952. wpstorage = wpstorage..", "..v.Name
  3953. else
  3954. wpstorage = wpstorage..v.Name
  3955. end
  3956. end
  3957. awakened = ""
  3958. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AwakeningChanger", "Check") then
  3959. for i,v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getAwakenedAbilities")) do
  3960. if v["Key"] then
  3961. if v["Awakened"] then
  3962. if i ~= "X" then
  3963. awakened = awakened..", "..v["Key"]
  3964. else
  3965. awakened = awakened..v["Key"]
  3966. end
  3967. end
  3968. end
  3969. end
  3970. end
  3971. local data = {
  3972. ["content"] = "",
  3973. ["embeds"] = {
  3974. {
  3975. ["color"] = tonumber(0x000000),
  3976. ["title"] = "Check Status".." Credit Van Thang(Vin Hub)",
  3977. ["fields"] = {
  3978. {
  3979. ["name"] = "Name :",
  3980. ["value"] = "||"..game.Players.LocalPlayer.Name.."||",
  3981. ["inline"] = false
  3982. },
  3983. {
  3984. ["name"] = "Data",
  3985. ["value"] = "**Fragments : "..tostring(game:GetService("Players").LocalPlayer.Data.Fragments.Value).."\nBeli : "..tostring(game:GetService("Players").LocalPlayer.Data.Beli.Value).."\nLevel : "..tostring(game:GetService("Players").LocalPlayer.Data.Level.Value).. "\nFruit : ".. Fruit .."\nAwakened Skill : " .. awakened .. "**",
  3986. ["inline"] = false,
  3987. },
  3988. {
  3989. ["name"] = "Weapon",
  3990. ["value"] = "**Melee : ".. WeaponMelee .."\nMastery : ".. WeaponMeleeLv .."\nSword : ".. WeaponSword .."\nMastery : ".. WeaponSwordLv .."**",
  3991. ["inline"] = false
  3992. },
  3993. {
  3994. ["name"] = "Inventory Devil Fruit",
  3995. ["value"] = "**Inventory Fruit : "..fruitinstore.."**",
  3996. ["inline"] = false
  3997. },
  3998. {
  3999. ["name"] = "Inventory Weapons",
  4000. ["value"] = "**Inventory :"..wpstorage.."**",
  4001. ["inline"] = false
  4002. },
  4003. },
  4004. }
  4005. }
  4006. }
  4007. local request = http_request
  4008. local response = request(
  4009. {
  4010. Url = url,
  4011. Method = "POST",
  4012. Headers = {
  4013. ["Content-Type"] = "application/json"
  4014. },
  4015. Body = game:GetService("HttpService"):JSONEncode(data)
  4016. }
  4017. )
  4018. end)
  4019. end
  4020.  
  4021. if getgenv().Setting["Level"] == 0 then
  4022. getgenv().Setting["Level"] = game.Players.LocalPlayer.Data.Level.Value
  4023. Savesetting()
  4024. end
  4025.  
  4026. function UpdatePlayer()
  4027. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  4028. pcall(function()
  4029. if v.Character and v.Name ~= game.Players.LocalPlayer.Name then
  4030. if ESPPlayer then
  4031. if v.Character.Head and not v.Character.Head:FindFirstChild("PlayerESP : "..v.Name) then
  4032. local Bb = Instance.new("BillboardGui", v.Character.Head)
  4033. Bb.Name = "PlayerESP : "..v.Name
  4034. Bb.ExtentsOffset = Vector3.new(0, 1, 0)
  4035. Bb.Size = UDim2.new(1, 200, 1, 30)
  4036. Bb.Adornee = v.Character.Head
  4037. Bb.AlwaysOnTop = true
  4038. local Textlb = Instance.new("TextLabel", Bb)
  4039. Textlb.Font = "GothamBold"
  4040. Textlb.FontSize = "Size14"
  4041. Textlb.Text = v.Name.."\n"..math.round((v.Character.Head.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude/3).." m."
  4042. Textlb.Size = UDim2.new(1,0,1,0)
  4043. Textlb.BackgroundTransparency = 1
  4044. Textlb.TextStrokeTransparency = 0.5
  4045. if v.Team == game:GetService("Players").LocalPlayer.Team then
  4046. Textlb.TextColor3 = Color3.new(0, 255, 0)
  4047. else
  4048. Textlb.TextColor3 = Color3.new(0, 0, 204)
  4049. end
  4050. else
  4051. v.Character.Head["PlayerESP : "..v.Name].TextLabel.Text = v.Name.."\n"..math.round((v.Character.Head.Position - game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.Position).Magnitude/3).." m."
  4052. end
  4053. else
  4054. if v.Character.Head:FindFirstChild("PlayerESP : "..v.Name) then
  4055. v.Character.Head:FindFirstChild("PlayerESP : "..v.Name):Destroy()
  4056. end
  4057. end
  4058. end
  4059. end)
  4060. end
  4061. end
  4062. function UpdateDevilFruit()
  4063. for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
  4064. pcall(function()
  4065. if string.find(v.Name, "Fruit") then
  4066. if ESPFruit then
  4067. if not v.Handle:FindFirstChild(v.Name) then
  4068. local Bb = Instance.new("BillboardGui", v.Handle)
  4069. Bb.Name = v.Name
  4070. Bb.ExtentsOffset = Vector3.new(0, 1, 0)
  4071. Bb.Size = UDim2.new(1, 200, 1, 30)
  4072. Bb.Adornee = v.Handle
  4073. Bb.AlwaysOnTop = true
  4074. local Textlb = Instance.new("TextLabel", Bb)
  4075. Textlb.Font = "GothamBold"
  4076. Textlb.FontSize = "Size14"
  4077. Textlb.Size = UDim2.new(1,0,1,0)
  4078. Textlb.BackgroundTransparency = 1
  4079. Textlb.TextStrokeTransparency = 0.5
  4080. Textlb.Text = v.Name.."\n"..math.round((v.Handle.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude/3).." m."
  4081. Textlb.TextColor3 = Color3.new(255, 255, 255)
  4082. else
  4083. v.Handle[v.Name].TextLabel.Text = v.Name.."\n"..math.round((v.Handle.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude/3).." m."
  4084. end
  4085. end
  4086. else
  4087. if v.Handle:FindFirstChild(v.Name) then
  4088. v.Handle:FindFirstChild(v.Name):Destroy()
  4089. end
  4090. end
  4091. end)
  4092. end
  4093. end
  4094.  
  4095. function BoostFPS()
  4096. local decalsyeeted = true -- Leaving this on makes games look shitty but the fps goes up by at least 20.
  4097. local g = game
  4098. local w = g.Workspace
  4099. local l = g.Lighting
  4100. local t = w.Terrain
  4101. t.WaterWaveSize = 0
  4102. t.WaterWaveSpeed = 0
  4103. t.WaterReflectance = 0
  4104. t.WaterTransparency = 0
  4105. l.GlobalShadows = false
  4106. l.FogEnd = 9e9
  4107. l.Brightness = 0
  4108. settings().Rendering.QualityLevel = "Level01"
  4109. for i, v in pairs(g:GetDescendants()) do
  4110. if v:IsA("Part") or v:IsA("Union") or v:IsA("CornerWedgePart") or v:IsA("TrussPart") then
  4111. v.Material = "Plastic"
  4112. v.Reflectance = 0
  4113. elseif v:IsA("Decal") or v:IsA("Texture") and decalsyeeted then
  4114. v.Transparency = 1
  4115. elseif v:IsA("ParticleEmitter") or v:IsA("Trail") then
  4116. v.Lifetime = NumberRange.new(0)
  4117. elseif v:IsA("Explosion") then
  4118. v.BlastPressure = 1
  4119. v.BlastRadius = 1
  4120. elseif v:IsA("Fire") or v:IsA("SpotLight") or v:IsA("Smoke") or v:IsA("Sparkles") then
  4121. v.Enabled = false
  4122. elseif v:IsA("MeshPart") then
  4123. v.Material = "Plastic"
  4124. v.Reflectance = 0
  4125. v.TextureID = 10385902758728957
  4126. end
  4127. end
  4128. for i, e in pairs(l:GetChildren()) do
  4129. if e:IsA("BlurEffect") or e:IsA("SunRaysEffect") or e:IsA("ColorCorrectionEffect") or e:IsA("BloomEffect") or e:IsA("DepthOfFieldEffect") then
  4130. e.Enabled = false
  4131. end
  4132. end
  4133. end
  4134.  
  4135. if _G.AutoFarm then
  4136. getgenv().Setting["AutoFarm"] = _G.AutoFarm
  4137. end
  4138. if _G.Superhuman == false then
  4139. getgenv().Setting["Superhuman"] = _G.Superhuman
  4140. end
  4141. if _G.ElectricClaw == false then
  4142. getgenv().Setting["Electric Claw"] = _G.ElectricClaw
  4143. end
  4144. if _G.Rengoku == false then
  4145. getgenv().Setting["Rengoku"] = _G.Rengoku
  4146. end
  4147. if _G.Saber == false then
  4148. getgenv().Setting["AutoSaber"] = _G.Saber
  4149. end
  4150. if _G.Yama == false then
  4151. getgenv().Setting["Yama"] = _G.Yama
  4152. end
  4153. if _G.MasAfterMax == false then
  4154. getgenv().Setting["FarmMasteryAfterMax"] = _G.MasAfterMax
  4155. end
  4156. if _G.AutoAwakeFruit == false then
  4157. getgenv().Setting["AutoAwakeFruit"] = _G.AutoAwakeFruit
  4158. end
  4159. if _G.WhiteScreen == false then
  4160. getgenv().Setting["WhiteScreenEnable"] = _G.WhiteScreen
  4161. end
  4162. if _G.FastMode then
  4163. BoostFPS()
  4164. end
  4165. if Third_Sea and getgenv().Setting["Superhuman"] and getgenv().Setting["Electric Claw"] then
  4166. getgenv().Setting["Superhuman"] = false
  4167. end
  4168.  
  4169. local win = SolarisLib:Window("Quartyz")
  4170. local Main = win:Tab("Main")
  4171. local Section1 = Main:Section("Main")
  4172. local Section2 = Main:Section("Setting")
  4173.  
  4174. Section1:Toggle("Auto Farm Level", getgenv().Setting["AutoFarm"], function(vu)
  4175. getgenv().Setting["AutoFarm"] = vu
  4176. if not vu then
  4177. TP(game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame)
  4178. end
  4179. Savesetting()
  4180. end)
  4181.  
  4182. local weapondrop = Section1:Dropdown("Weapon", Weapon, function(vu)
  4183. getgenv().Setting["Weapon"] = vu
  4184. Savesetting()
  4185. end)
  4186. if getgenv().Setting["Weapon"] ~= "" then
  4187. weapondrop:Set(getgenv().Setting["Weapon"])
  4188. end
  4189. Section1:Button("Refresh Weapon", function(vu)
  4190. weapondrop:Clear()
  4191. for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetChildren()) do
  4192. if v:IsA("Tool") then
  4193. weapondrop:Add(v.Name)
  4194. end
  4195. end
  4196. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  4197. if v:IsA("Tool") then
  4198. weapondrop:Add(v.Name)
  4199. end
  4200. end
  4201. end)
  4202. Section1:Bind("Toggle UI", Enum.KeyCode[getgenv().MainSetting["Toggle Key"]], function(vu)
  4203. getgenv().MainSetting["Toggle Key"] = vu
  4204. print(vu)
  4205. Savemainsetting()
  4206. end)
  4207.  
  4208. Section2:Textbox("WebHooklink", true, function(vu)
  4209. getgenv().MainSetting["WebHooklink"] = vu
  4210. Savemainsetting()
  4211. end)
  4212.  
  4213. Section2:Toggle("WebHook [Every 3 minutes]", getgenv().MainSetting["WebHookNotification"], function(vu)
  4214. getgenv().MainSetting["WebHookNotification"] = vu
  4215. Savemainsetting()
  4216. end)
  4217.  
  4218. local Dropdownfruit = Section2:MultiDropdown("Fruit Select", FruitList, function(vu)
  4219. getgenv().MainSetting["SelectedFruit"] = vu
  4220. Savemainsetting()
  4221. end)
  4222. pcall(function()
  4223. if getgenv().MainSetting["SelectedFruit"][1] == nil then
  4224. Dropdownfruit:Set({"Dragon-Dragon", "Shadow-Shadow", "Venom-Venom", "Quake-Quake", "Human-Human: Buddha", "Rumble-Rumble", "Magma-Magma", "Dark-Dark", "Ice-Ice"})
  4225. else
  4226. Dropdownfruit:Set(getgenv().MainSetting["SelectedFruit"])
  4227. end
  4228. end)
  4229.  
  4230. Section2:Toggle("Auto Buy Selected Fruit", getgenv().MainSetting["BuySelectedFruit"], function(vu)
  4231. getgenv().MainSetting["BuySelectedFruit"] = vu
  4232. Savemainsetting()
  4233. end)
  4234.  
  4235. Section2:Toggle("Rengoku", getgenv().Setting["Rengoku"], function(vu)
  4236. getgenv().Setting["Rengoku"] = vu
  4237. Savesetting()
  4238. end)
  4239.  
  4240. Section2:Toggle("Yama", getgenv().Setting["Yama"], function(vu)
  4241. getgenv().Setting["Yama"] = vu
  4242. Savesetting()
  4243. end)
  4244.  
  4245. Section2:Toggle("Saber", getgenv().Setting["AutoSaber"], function(vu)
  4246. getgenv().Setting["AutoSaber"] = vu
  4247. Savesetting()
  4248. end)
  4249.  
  4250. Section2:Toggle("Superhuman", getgenv().Setting["Superhuman"], function(vu)
  4251. getgenv().Setting["Superhuman"] = vu
  4252. if vu and not getgenv().Setting["Check Superhuman"]["Electro"] and not getgenv().Setting["Check Superhuman"]["Superhuman"] then
  4253. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectro")
  4254. end
  4255. Savesetting()
  4256. end)
  4257.  
  4258. Section2:Toggle("Electric Claw", getgenv().Setting["Electric Claw"], function(vu)
  4259. getgenv().Setting["Electric Claw"] = vu
  4260. Savesetting()
  4261. end)
  4262.  
  4263. Section2:Toggle("Auto Mastery After Max Lv", getgenv().Setting["FarmMasteryAfterMax"], function(vu)
  4264. getgenv().Setting["FarmMasteryAfterMax"] = vu
  4265. Savesetting()
  4266. end)
  4267.  
  4268. Section2:Toggle("Auto Awake Fruit", getgenv().Setting["AutoAwakeFruit"], function(vu)
  4269. getgenv().Setting["AutoAwakeFruit"] = vu
  4270. Savesetting()
  4271. end)
  4272.  
  4273. Section2:Toggle("White Screen", getgenv().Setting["WhiteScreenEnable"], function(vu)
  4274. getgenv().Setting["WhiteScreenEnable"] = vu
  4275. Savesetting()
  4276. end)
  4277.  
  4278. Section2:Button("Fast Mode", function()
  4279. BoostFPS()
  4280. end)
  4281.  
  4282. local Ser = Main:Section("Server")
  4283.  
  4284. Ser:Button("Rejoin Server", function()
  4285. game:GetService("TeleportService"):Teleport(game.PlaceId)
  4286. end)
  4287.  
  4288. Ser:Button("Hop Server", function()
  4289. Teleport()
  4290. end)
  4291.  
  4292. Ser:Button("Hop Server(Less Player)", function()
  4293. local maxplayers, gamelink, goodserver = math.huge, "https://games.roblox.com/v1/games/" .. game.PlaceId .. "/servers/Public?sortOrder=Asc&limit=100"
  4294. local function serversearch()
  4295. website = game:GetService"HttpService":JSONDecode(game:HttpGetAsync(gamelink))
  4296. for _, v in pairs(website.data) do
  4297. pcall(function()
  4298. if v.id and v.playing and tonumber(maxplayers) > tonumber(v.playing) then
  4299. maxplayers = v.playing
  4300. goodserver = v.id
  4301. end
  4302. end)
  4303. end
  4304. end
  4305. function getservers()
  4306. pcall(serversearch)
  4307. for i, v in pairs(website) do
  4308. if i == "nextPageCursor" then
  4309. if gamelink:find"&cursor=" then
  4310. local a = gamelink:find"&cursor="
  4311. local b = gamelink:sub(a)
  4312. gamelink = gamelink:gsub(b, "")
  4313. end
  4314. gamelink = gamelink .. "&cursor=" .. v
  4315. pcall(getservers)
  4316. end
  4317. end
  4318. end
  4319. SolarisLib:Notification("Warning", "wait for searching server\nand wait for hop", 30)
  4320. pcall(getservers)
  4321. game:GetService"TeleportService":TeleportToPlaceInstance(game.PlaceId, goodserver)
  4322. end)
  4323.  
  4324. local Misc = win:Tab("Misc")
  4325. local Misc1 = Misc:Section("ESP")
  4326.  
  4327. Misc1:Toggle("EPS Fruit", false, function(vu)
  4328. ESPFruit = vu
  4329. while ESPFruit do wait()
  4330. UpdateDevilFruit()
  4331. end
  4332. end)
  4333.  
  4334. Misc1:Toggle("ESP Player", false, function(vu)
  4335. ESPPlayer = vu
  4336. while ESPPlayer do wait()
  4337. UpdatePlayer()
  4338. end
  4339. end)
  4340.  
  4341. local BuyItem = Misc:Section("Item")
  4342.  
  4343. BuyItem:Label("Abilities")
  4344. BuyItem:Button("Skyjump", function()
  4345. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyHaki","Geppo")
  4346. end)
  4347. BuyItem:Button("Buso Haki", function()
  4348. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyHaki","Buso")
  4349. end)
  4350. BuyItem:Button("Soru", function()
  4351. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyHaki","Soru")
  4352. end)
  4353. BuyItem:Button("Ken Haki", function()
  4354. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("KenTalk","Start")
  4355. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("KenTalk","Buy")
  4356. end)
  4357. BuyItem:Toggle("Auto Buy Abilities", false, function(vu)
  4358. Abilities = vu
  4359. while Abilities do wait()
  4360. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyHaki","Geppo")
  4361. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyHaki","Buso")
  4362. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyHaki","Soru")
  4363. end
  4364. end)
  4365. BuyItem:Button("Refund Stat [2500 F]", function()
  4366. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","Refund","1")
  4367. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","Refund","2")
  4368. end)
  4369. BuyItem:Button("Reroll Race [3000 F]", function()
  4370. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","Reroll","1")
  4371. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","Reroll","2")
  4372. end)
  4373. BuyItem:Label("Fighting Style")
  4374. BuyItem:Button("Black Leg", function()
  4375. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyBlackLeg")
  4376. end)
  4377. BuyItem:Button("Electro", function()
  4378. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectro")
  4379. end)
  4380. BuyItem:Button("Fishman Karate", function()
  4381. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyFishmanKarate")
  4382. end)
  4383. BuyItem:Button("Dragon Claw", function()
  4384. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","DragonClaw","1")
  4385. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","DragonClaw","2")
  4386. end)
  4387. BuyItem:Button("Superhuman", function()
  4388. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySuperhuman")
  4389. end)
  4390. BuyItem:Button("Death Step", function()
  4391. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDeathStep")
  4392. end)
  4393. BuyItem:Button("Sharkman Karate", function()
  4394. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySharkmanKarate",true)
  4395. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySharkmanKarate")
  4396. end)
  4397. BuyItem:Button("Electric Claw", function()
  4398. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw",true)
  4399. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw")
  4400. end)
  4401. BuyItem:Button("Dragon Talon", function()
  4402. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDragonTalon",true)
  4403. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDragonTalon")
  4404. end)
  4405. BuyItem:Label("Sword")
  4406. BuyItem:Button("Katana", function()
  4407. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Katana")
  4408. end)
  4409. BuyItem:Button("Cutlass", function()
  4410. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Cutlass")
  4411. end)
  4412. BuyItem:Button("Duel Katana", function()
  4413. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Duel Katana")
  4414. end)
  4415. BuyItem:Button("Iron Mace", function()
  4416. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Iron Mace")
  4417. end)
  4418. BuyItem:Button("Pipe", function()
  4419. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Pipe")
  4420. end)
  4421. BuyItem:Button("Triple Katana", function()
  4422. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Triple Katana")
  4423. end)
  4424. BuyItem:Button("Dual-Headed Blade", function()
  4425. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Dual-Headed Blade")
  4426. end)
  4427. BuyItem:Button("Bisento", function()
  4428. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Bisento")
  4429. end)
  4430. BuyItem:Button("Soul Cane", function()
  4431. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Soul Cane")
  4432. end)
  4433. BuyItem:Label("Gun")
  4434. BuyItem:Button("Slingshot", function()
  4435. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Slingshot")
  4436. end)
  4437.  
  4438. BuyItem:Button("Musket", function()
  4439. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Musket")
  4440. end)
  4441.  
  4442. BuyItem:Button("Flintlock", function()
  4443. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Flintlock")
  4444. end)
  4445. BuyItem:Button("Refined Flintlock", function()
  4446. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Refined Flintlock")
  4447. end)
  4448. BuyItem:Button("Cannon", function()
  4449. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Cannon")
  4450. end)
  4451. BuyItem:Button("Kabucha", function()
  4452. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","Slingshot","1")
  4453. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","Slingshot","2")
  4454. end)
  4455. BuyItem:Label("Accessory")
  4456. BuyItem:Button("Black Cape", function()
  4457. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Black Cape")
  4458. end)
  4459. BuyItem:Button("Toemo Ring", function()
  4460. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Tomoe Ring")
  4461. end)
  4462. BuyItem:Button("Swordsman Hat", function()
  4463. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Swordsman Hat")
  4464. end)
  4465.  
  4466. local UITab = win:Tab("Other UI")
  4467. local UItab = UITab:Section("game")
  4468.  
  4469. UItab:Button("Devil Shop", function()
  4470. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("GetFruits")
  4471. game.Players.localPlayer.PlayerGui.Main.FruitShop.Visible = true
  4472. end)
  4473. UItab:Button("Awakening UI", function()
  4474. game.Players.LocalPlayer.PlayerGui.Main.AwakeningToggler.Visible = true
  4475. end)
  4476. UItab:Button("Inventory UI", function()
  4477. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getInventoryWeapons")
  4478. game.Players.localPlayer.PlayerGui.Main.Inventory.Visible = true
  4479. end)
  4480. UItab:Button("Fruit Inventory", function()
  4481. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getInventoryFruits")
  4482. game:GetService("Players").LocalPlayer.PlayerGui.Main.FruitInventory.Visible = true
  4483. end)
  4484. UItab:Button("Color Haki", function()
  4485. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getColors")
  4486. game.Players.localPlayer.PlayerGui.Main.Colors.Visible = true
  4487. end)
  4488. UItab:Button("Title Name", function()
  4489. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getTitles")
  4490. game.Players.localPlayer.PlayerGui.Main.Titles.Visible = true
  4491. end)
  4492.  
  4493. local WindowFocusReleasedFunction = function()
  4494. if getgenv().Setting["WhiteScreenEnable"] then
  4495. RunService:Set3dRenderingEnabled(false)
  4496. else
  4497. RunService:Set3dRenderingEnabled(true)
  4498. end
  4499. setfpscap(30)
  4500. return
  4501. end
  4502.  
  4503. local WindowFocusedFunction = function()
  4504. RunService:Set3dRenderingEnabled(true)
  4505. setfpscap(30)
  4506. return
  4507. end
  4508.  
  4509. local Initialize = function()
  4510. UserInputService.WindowFocusReleased:Connect(WindowFocusReleasedFunction)
  4511. UserInputService.WindowFocused:Connect(WindowFocusedFunction)
  4512. return
  4513. end
  4514. Initialize()
  4515.  
  4516. local vu = game:GetService("VirtualUser")
  4517. game:GetService("Players").LocalPlayer.Idled:connect(function()
  4518. vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  4519. wait(1)
  4520. vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  4521. end)
  4522.  
  4523. SolarisLib:Notification("Quartyz", "Whitelisted", 3)
  4524.  
  4525. return SolarisLib
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement