Advertisement
ssssdsd1213

Untitled

Dec 29th, 2022
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 402.36 KB | None | 0 0
  1. _G.Color = Color3.fromRGB(255,0,0)
  2. if not game:IsLoaded() then repeat game.Loaded:Wait() until game:IsLoaded() end
  3.  
  4. repeat wait() until game:GetService("Players")
  5.  
  6. if not game:GetService("Players").LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then repeat wait() until game:GetService("Players").LocalPlayer.Character:FindFirstChild("HumanoidRootPart") end
  7.  
  8. wait(1)
  9.  
  10. do
  11. local ui = game.CoreGui:FindFirstChild("UlLib")
  12. if ui then
  13. ui:Destroy()
  14. end
  15. end
  16.  
  17. local UserInputService = game:GetService("UserInputService")
  18. local TweenService = game:GetService("TweenService")
  19.  
  20. local function MakeDraggable(topbarobject, object)
  21. local Dragging = nil
  22. local DragInput = nil
  23. local DragStart = nil
  24. local StartPosition = nil
  25.  
  26. local function Update(input)
  27. local Delta = input.Position - DragStart
  28. local pos =
  29. UDim2.new(
  30. StartPosition.X.Scale,
  31. StartPosition.X.Offset + Delta.X,
  32. StartPosition.Y.Scale,
  33. StartPosition.Y.Offset + Delta.Y
  34. )
  35. local Tween = TweenService:Create(object, TweenInfo.new(0.2), {Position = pos})
  36. Tween:Play()
  37. end
  38.  
  39. topbarobject.InputBegan:Connect(
  40. function(input)
  41. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  42. Dragging = true
  43. DragStart = input.Position
  44. StartPosition = object.Position
  45.  
  46. input.Changed:Connect(
  47. function()
  48. if input.UserInputState == Enum.UserInputState.End then
  49. Dragging = false
  50. end
  51. end
  52. )
  53. end
  54. end
  55. )
  56.  
  57. topbarobject.InputChanged:Connect(
  58. function(input)
  59. if
  60. input.UserInputType == Enum.UserInputType.MouseMovement or
  61. input.UserInputType == Enum.UserInputType.Touch
  62. then
  63. DragInput = input
  64. end
  65. end
  66. )
  67.  
  68. UserInputService.InputChanged:Connect(
  69. function(input)
  70. if input == DragInput and Dragging then
  71. Update(input)
  72. end
  73. end
  74. )
  75. end
  76.  
  77. local library = {}
  78.  
  79. function library:AddWindow(text,keybind)
  80. local bind = keybind or Enum.KeyCode.RightControl
  81. local ff = false
  82. local currenttab = ""
  83.  
  84. local DoctorShiba = Instance.new("ScreenGui")
  85. DoctorShiba.Name = "UlLib"
  86. DoctorShiba.Parent = game.CoreGui
  87. DoctorShiba.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  88.  
  89. local Main = Instance.new("Frame")
  90. Main.Name = "Main"
  91. Main.Parent = DoctorShiba
  92. Main.AnchorPoint = Vector2.new(0.5, 0.5)
  93. Main.BackgroundColor3 = Color3.fromRGB(30, 28, 39)
  94. Main.BackgroundTransparency = 0.100
  95. Main.BorderSizePixel = 0
  96. Main.ClipsDescendants = true
  97. Main.Position = UDim2.new(0.499526083, 0, 0.499241292, 0)
  98. Main.Size = UDim2.new(0, 600, 0, 350)
  99.  
  100. local Top = Instance.new("Frame")
  101. Top.Name = "Top"
  102. Top.Parent = Main
  103. Top.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  104. Top.BackgroundTransparency = 1.000
  105. Top.BorderSizePixel = 0
  106. Top.Size = UDim2.new(0, 600, 0, 20)
  107.  
  108. local Page = Instance.new("Frame")
  109. Page.Name = "Page"
  110. Page.Parent = Main
  111. Page.BackgroundColor3 = Color3.fromRGB(25, 23, 35)
  112. Page.BackgroundTransparency = 0.100
  113. Page.BorderSizePixel = 0
  114. Page.Size = UDim2.new(0, 125, 0, 350)
  115.  
  116. local NameHub = Instance.new("TextLabel")
  117. NameHub.Name = "NameHub"
  118. NameHub.Parent = Page
  119. NameHub.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  120. NameHub.BackgroundTransparency = 1.000
  121. NameHub.Position = UDim2.new(0.113333493, 0, 0, 0)
  122. NameHub.Size = UDim2.new(0, 110, 0, 20)
  123. NameHub.Font = Enum.Font.GothamSemibold
  124. NameHub.Text = text
  125. NameHub.TextColor3 = Color3.fromRGB(225, 0, 0)
  126. NameHub.TextSize = 11.000
  127. NameHub.TextXAlignment = Enum.TextXAlignment.Left
  128.  
  129. local User = Instance.new("Frame")
  130. User.Name = "User"
  131. User.Parent = Page
  132. User.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  133. User.BackgroundTransparency = 1.000
  134. User.Position = UDim2.new(0, 0, 0.8, 30)
  135. User.Size = UDim2.new(0, 125, 0, 40)
  136.  
  137. local UserText = Instance.new("TextLabel")
  138. UserText.Name = "UserText"
  139. UserText.Parent = User
  140. UserText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  141. UserText.BackgroundTransparency = 1.000
  142. UserText.Position = UDim2.new(0.354999989, 0, 0, 11)
  143. UserText.Size = UDim2.new(0, 80, 0, 20)
  144. UserText.Font = Enum.Font.Gotham
  145. UserText.Text = tostring(game.Players.LocalPlayer.Name)
  146. spawn(function()
  147. while wait() do
  148. pcall(function()
  149. wait(0.1)
  150. game:GetService('TweenService'):Create(
  151. UserText,TweenInfo.new(1,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut),
  152. {TextColor3 = Color3.fromRGB(255, 0, 0)}
  153. ):Play()
  154. wait(.5)
  155. game:GetService('TweenService'):Create(
  156. UserText,TweenInfo.new(1,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut),
  157. {TextColor3 = Color3.fromRGB(255, 155, 0)}
  158. ):Play()
  159. wait(.5)
  160. game:GetService('TweenService'):Create(
  161. UserText,TweenInfo.new(1,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut),
  162. {TextColor3 = Color3.fromRGB(255, 255, 0)}
  163. ):Play()
  164. wait(.5)
  165. game:GetService('TweenService'):Create(
  166. UserText,TweenInfo.new(1,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut),
  167. {TextColor3 = Color3.fromRGB(0, 255, 0)}
  168. ):Play()
  169. wait(.5)
  170. game:GetService('TweenService'):Create(
  171. UserText,TweenInfo.new(1,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut),
  172. {TextColor3 = Color3.fromRGB(0, 255, 255)}
  173. ):Play()
  174. wait(.5)
  175. game:GetService('TweenService'):Create(
  176. UserText,TweenInfo.new(1,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut),
  177. {TextColor3 = Color3.fromRGB(0, 155, 255)}
  178. ):Play()
  179. wait(.5)
  180. game:GetService('TweenService'):Create(
  181. UserText,TweenInfo.new(1,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut),
  182. {TextColor3 = Color3.fromRGB(255, 0, 255)}
  183. ):Play()
  184. wait(.5)
  185. game:GetService('TweenService'):Create(
  186. UserText,TweenInfo.new(1,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut),
  187. {TextColor3 = Color3.fromRGB(255, 0, 155)}
  188. ):Play()
  189. wait(.5)
  190. end)
  191. end
  192. end)
  193. UserText.TextScaled = true
  194. UserText.TextSize = 11.000
  195. UserText.TextWrapped = true
  196. UserText.TextXAlignment = Enum.TextXAlignment.Left
  197.  
  198. local UITextSizeConstraint = Instance.new("UITextSizeConstraint")
  199. UITextSizeConstraint.Parent = UserText
  200. UITextSizeConstraint.MaxTextSize = 11
  201.  
  202. local UserImage = Instance.new("ImageLabel")
  203. UserImage.Name = "UserImage"
  204. UserImage.Parent = User
  205. UserImage.BackgroundColor3 = Color3.fromRGB(225, 225, 225)
  206. UserImage.Position = UDim2.new(0, 10, 0, 9)
  207. UserImage.Size = UDim2.new(0, 25, 0, 25)
  208. UserImage.Image = "https://www.roblox.com/headshot-thumbnail/image?userId="..game.Players.LocalPlayer.UserId.."&width=420&height=420&format=png"
  209.  
  210. local UserImageCorner = Instance.new("UICorner")
  211. UserImageCorner.CornerRadius = UDim.new(0, 100)
  212. UserImageCorner.Name = "UserImageCorner"
  213. UserImageCorner.Parent = UserImage
  214.  
  215. local ScrollPage = Instance.new("ScrollingFrame")
  216. ScrollPage.Name = "ScrollPage"
  217. ScrollPage.Parent = Page
  218. ScrollPage.Active = true
  219. ScrollPage.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  220. ScrollPage.BackgroundTransparency = 1.000
  221. ScrollPage.BorderSizePixel = 0
  222. ScrollPage.Position = UDim2.new(0, 0, 0.086, 0)
  223. ScrollPage.Size = UDim2.new(0, 125, 0, 290)
  224. ScrollPage.CanvasSize = UDim2.new(0, 0, 0, 0)
  225. ScrollPage.ScrollBarThickness = 0
  226. local PageList = Instance.new("UIListLayout")
  227. PageList.Name = "PageList"
  228. PageList.Parent = ScrollPage
  229. PageList.SortOrder = Enum.SortOrder.LayoutOrder
  230. PageList.Padding = UDim.new(0, 7)
  231.  
  232. local PagePadding = Instance.new("UIPadding")
  233. PagePadding.Name = "PagePadding"
  234. PagePadding.Parent = ScrollPage
  235. PagePadding.PaddingTop = UDim.new(0, 5)
  236. PagePadding.PaddingLeft = UDim.new(0, 28)
  237.  
  238. local TabFolder = Instance.new("Folder")
  239. TabFolder.Name = "TabFolder"
  240. TabFolder.Parent = Main
  241.  
  242. MakeDraggable(Top,Main)
  243.  
  244. local uihide = false
  245.  
  246. UserInputService.InputBegan:Connect(function(input)
  247. if input.KeyCode == bind then
  248. if uihide == false then
  249. uihide = true
  250. Main:TweenSize(UDim2.new(0, 0, 0, 0),"In","Quad",0.2,true)
  251. else
  252. uihide = false
  253. Main:TweenSize(UDim2.new(0, 600, 0, 350),"Out","Quad",0.2,true)
  254. end
  255. end
  256. end)
  257.  
  258. local uitab = {}
  259.  
  260. function uitab:AddTab(text,image)
  261. local Image = image or 6023426915
  262.  
  263. local PageButton = Instance.new("TextButton")
  264. PageButton.Name = "PageButton"
  265. PageButton.Parent = ScrollPage
  266. PageButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  267. PageButton.BackgroundTransparency = 1.000
  268. PageButton.BorderSizePixel = 0
  269. PageButton.Position = UDim2.new(0.224000007, 0, 0.029787235, 0)
  270. PageButton.Size = UDim2.new(0, 97, 0, 20)
  271. PageButton.AutoButtonColor = false
  272. PageButton.Font = Enum.Font.GothamSemibold
  273. PageButton.Text = text
  274. PageButton.TextColor3 = Color3.fromRGB(225, 225, 225)
  275. PageButton.TextSize = 11.000
  276. PageButton.TextXAlignment = Enum.TextXAlignment.Left
  277.  
  278. local PageImage = Instance.new("ImageLabel")
  279. PageImage.Name = "PageImage"
  280. PageImage.Parent = PageButton
  281. PageImage.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  282. PageImage.BackgroundTransparency = 1.000
  283. PageImage.Position = UDim2.new(0, -20, 0, 3)
  284. PageImage.Size = UDim2.new(0, 15, 0, 15)
  285. PageImage.Image = "rbxassetid://"..tostring(Image)
  286.  
  287. local MainTab = Instance.new("Frame")
  288. MainTab.Name = "MainTab"
  289. MainTab.Parent = TabFolder
  290. MainTab.BackgroundColor3 = Color3.fromRGB(30, 28, 39)
  291. MainTab.BorderSizePixel = 0
  292. MainTab.Position = UDim2.new(0.208333328, 0, 0, 0)
  293. MainTab.Size = UDim2.new(0, 475, 0, 350)
  294. MainTab.Visible = false
  295.  
  296. local ScrollTab = Instance.new("ScrollingFrame")
  297. ScrollTab.Name = "ScrollTab"
  298. ScrollTab.Parent = MainTab
  299. ScrollTab.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  300. ScrollTab.BackgroundTransparency = 1.000
  301. ScrollTab.BorderSizePixel = 0
  302. ScrollTab.Position = UDim2.new(0, 0, 0.057, 0)
  303. ScrollTab.Size = UDim2.new(0, 475, 0, 330)
  304. ScrollTab.CanvasSize = UDim2.new(0, 0, 0, 0)
  305. ScrollTab.ScrollBarThickness = 3
  306.  
  307. local TabList = Instance.new("UIListLayout")
  308. TabList.Name = "TabList"
  309. TabList.Parent = ScrollTab
  310. TabList.SortOrder = Enum.SortOrder.LayoutOrder
  311. TabList.Padding = UDim.new(0, 5)
  312.  
  313. local TabPadding = Instance.new("UIPadding")
  314. TabPadding.Name = "TabPadding"
  315. TabPadding.Parent = ScrollTab
  316. TabPadding.PaddingLeft = UDim.new(0, 10)
  317. TabPadding.PaddingTop = UDim.new(0, 10)
  318.  
  319. PageButton.MouseButton1Click:Connect(function()
  320. currenttab = MainTab.Name
  321. for i,v in next, TabFolder:GetChildren() do
  322. if v.Name == "MainTab" then
  323. v.Visible = false
  324. end
  325. end
  326. MainTab.Visible = true
  327.  
  328. for i,v in next, ScrollPage:GetChildren() do
  329. if v:IsA("TextButton") then
  330. TweenService:Create(
  331. v,
  332. TweenInfo.new(0.3,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  333. {TextColor3 = Color3.fromRGB(225, 225, 225)}
  334. ):Play()
  335. end
  336. TweenService:Create(
  337. PageButton,
  338. TweenInfo.new(0.3,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  339. {TextColor3 = Color3.fromRGB(255,0,0)}
  340. ):Play()
  341. end
  342. end)
  343.  
  344. if ff == false then
  345. TweenService:Create(
  346. PageButton,
  347. TweenInfo.new(0.3,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  348. {TextColor3 = Color3.fromRGB(255,0,0)}
  349. ):Play()
  350. for i,v in next, TabFolder:GetChildren() do
  351. if v.Name == "MainTab" then
  352. v.Visible = false
  353. end
  354. MainTab.Visible = true
  355. end
  356. ff = true
  357. end
  358.  
  359. game:GetService("RunService").Stepped:Connect(function()
  360. pcall(function()
  361. ScrollPage.CanvasSize = UDim2.new(0,0,0,PageList.AbsoluteContentSize.Y + 10)
  362. ScrollTab.CanvasSize = UDim2.new(0,0,0,TabList.AbsoluteContentSize.Y + 30)
  363. end)
  364. end)
  365.  
  366. local main = {}
  367.  
  368. function main:AddButton(text,callback)
  369. local Button = Instance.new("TextButton")
  370.  
  371. Button.Name = "Button"
  372. Button.Parent = ScrollTab
  373. Button.BackgroundColor3 = Color3.fromRGB(50, 48, 59)
  374. Button.BackgroundTransparency = 0.1
  375. Button.BorderSizePixel = 0
  376. Button.Size = UDim2.new(0, 455, 0, 30)
  377. Button.AutoButtonColor = false
  378. Button.Font = Enum.Font.Gotham
  379. Button.Text = text
  380. Button.TextColor3 = Color3.fromRGB(225, 225, 225)
  381. Button.TextSize = 11.000
  382. Button.TextWrapped = true
  383.  
  384. local ButtonCorner = Instance.new("UICorner")
  385. ButtonCorner.Name = "ButtonCorner"
  386. ButtonCorner.CornerRadius = UDim.new(0, 5)
  387. ButtonCorner.Parent = Button
  388.  
  389. Button.MouseEnter:Connect(function()
  390. TweenService:Create(
  391. Button,
  392. TweenInfo.new(0.4,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  393. {TextColor3 = Color3.fromRGB(255,0,0)}
  394. ):Play()
  395. end)
  396.  
  397. Button.MouseLeave:Connect(function()
  398. TweenService:Create(
  399. Button,
  400. TweenInfo.new(0.4,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  401. {TextColor3 = Color3.fromRGB(225, 225, 225)}
  402. ):Play()
  403. end)
  404.  
  405. Button.MouseButton1Click:Connect(function()
  406. callback()
  407. Button.TextSize = 0
  408. TweenService:Create(
  409. Button,
  410. TweenInfo.new(0.4,Enum.EasingStyle.Back,Enum.EasingDirection.Out),
  411. {TextSize = 11}
  412. ):Play()
  413. end)
  414. end
  415.  
  416. function main:AddToggle(text,config,callback)
  417. local ToggleImage = Instance.new("Frame")
  418.  
  419. local Toggle = Instance.new("TextButton")
  420. Toggle.Name = "Toggle"
  421. Toggle.Parent = ScrollTab
  422. Toggle.BackgroundColor3 = Color3.fromRGB(50, 48, 59)
  423. Toggle.BackgroundTransparency = 0.1
  424. Toggle.BorderSizePixel = 0
  425. Toggle.AutoButtonColor = false
  426. Toggle.Size = UDim2.new(0, 455, 0, 30)
  427. Toggle.Font = Enum.Font.SourceSans
  428. Toggle.Text = ""
  429. Toggle.TextColor3 = Color3.fromRGB(0, 0, 0)
  430. Toggle.TextSize = 14.000
  431.  
  432. local ToggleCorner = Instance.new("UICorner")
  433. ToggleCorner.Name = "ToggleCorner"
  434. ToggleCorner.CornerRadius = UDim.new(0, 5)
  435. ToggleCorner.Parent = Toggle
  436.  
  437. local ToggleLabel = Instance.new("TextLabel")
  438. ToggleLabel.Name = "ToggleLabel"
  439. ToggleLabel.Parent = Toggle
  440. ToggleLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  441. ToggleLabel.BackgroundTransparency = 1.000
  442. ToggleLabel.Position = UDim2.new(0, 13, 0, 0)
  443. ToggleLabel.Size = UDim2.new(0, 410, 0, 30)
  444. ToggleLabel.Font = Enum.Font.Gotham
  445. ToggleLabel.Text = text
  446. ToggleLabel.TextColor3 = Color3.fromRGB(225, 225, 225)
  447. ToggleLabel.TextSize = 11.000
  448. ToggleLabel.TextXAlignment = Enum.TextXAlignment.Left
  449.  
  450. ToggleImage.Name = "ToggleImage"
  451. ToggleImage.Parent = Toggle
  452. ToggleImage.BackgroundColor3 = Color3.fromRGB(70, 68, 79)
  453. ToggleImage.Position = UDim2.new(0, 425, 0, 5)
  454. ToggleImage.BorderSizePixel = 0
  455. ToggleImage.Size = UDim2.new(0, 20, 0, 20)
  456. local ToggleImageCorner = Instance.new("UICorner")
  457. ToggleImageCorner.Name = "ToggleImageCorner"
  458. ToggleImageCorner.CornerRadius = UDim.new(0, 5)
  459. ToggleImageCorner.Parent = ToggleImage
  460.  
  461. local ToggleImage2 = Instance.new("Frame")
  462. ToggleImage2.Name = "ToggleImage2"
  463. ToggleImage2.Parent = ToggleImage
  464. ToggleImage2.AnchorPoint = Vector2.new(0.5, 0.5)
  465. ToggleImage2.BackgroundColor3 = Color3.fromRGB(255,0,0)
  466. ToggleImage2.Position = UDim2.new(0, 10, 0, 10)
  467. ToggleImage2.Visible = false
  468.  
  469. local ToggleImage2Corner = Instance.new("UICorner")
  470. ToggleImage2Corner.Name = "ToggleImageCorner"
  471. ToggleImage2Corner.CornerRadius = UDim.new(0, 5)
  472. ToggleImage2Corner.Parent = ToggleImage2
  473.  
  474. Toggle.MouseEnter:Connect(function()
  475. TweenService:Create(
  476. ToggleLabel,
  477. TweenInfo.new(0.4,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  478. {TextColor3 = Color3.fromRGB(255,0,0)}
  479. ):Play()
  480. end)
  481.  
  482. Toggle.MouseLeave:Connect(function()
  483. TweenService:Create(
  484. ToggleLabel,
  485. TweenInfo.new(0.4,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  486. {TextColor3 = Color3.fromRGB(225, 225, 225)}
  487. ):Play()
  488. end)
  489. if config == nil then config = false end
  490. local toggled = config or false
  491. Toggle.MouseButton1Click:Connect(function()
  492. if toggled == false then
  493. toggled = true
  494. ToggleImage2.Visible = true
  495. ToggleImage2:TweenSize(UDim2.new(0, 21, 0, 21),"In","Quad",0.1,true)
  496. else
  497. toggled = false
  498. ToggleImage2:TweenSize(UDim2.new(0, 0, 0, 0),"In","Quad",0.1,true)
  499. wait(0.1)
  500. ToggleImage2.Visible = false
  501. end
  502. callback(toggled)
  503. end)
  504.  
  505. if config == true then
  506. ToggleImage2.Visible = true
  507. ToggleImage2:TweenSize(UDim2.new(0, 21, 0, 21),"In","Quad",0.1,true)
  508. toggled = true
  509. callback(toggled)
  510. end
  511. end
  512.  
  513. function main:AddTextbox(text,holder,disappear,callback)
  514. local Textboxx = Instance.new("Frame")
  515. local TextboxxCorner = Instance.new("UICorner")
  516. local TextboxTitle = Instance.new("TextLabel")
  517. local Textbox = Instance.new("TextBox")
  518. local TextboxCorner = Instance.new("UICorner")
  519.  
  520. Textboxx.Name = "Textboxx"
  521. Textboxx.Parent = ScrollTab
  522. Textboxx.BackgroundColor3 = Color3.fromRGB(50, 48, 59)
  523. Textboxx.Size = UDim2.new(0, 455, 0, 30)
  524.  
  525. TextboxxCorner.CornerRadius = UDim.new(0, 5)
  526. TextboxxCorner.Name = "TextboxxCorner"
  527. TextboxxCorner.Parent = Textboxx
  528.  
  529. TextboxTitle.Name = "TextboxTitle"
  530. TextboxTitle.Parent = Textboxx
  531. TextboxTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  532. TextboxTitle.BackgroundTransparency = 1.000
  533. TextboxTitle.Position = UDim2.new(0, 15, 0, 0)
  534. TextboxTitle.Size = UDim2.new(0, 300, 0, 30)
  535. TextboxTitle.Font = Enum.Font.Gotham
  536. TextboxTitle.Text = text
  537. TextboxTitle.TextColor3 = Color3.fromRGB(225, 225, 225)
  538. TextboxTitle.TextSize = 11.000
  539. TextboxTitle.TextXAlignment = Enum.TextXAlignment.Left
  540.  
  541. Textbox.Name = "Textbox"
  542. Textbox.Parent = Textboxx
  543. Textbox.BackgroundColor3 = Color3.fromRGB(30, 28, 39)
  544. Textbox.Position = UDim2.new(0, 310, 0, 5)
  545. Textbox.Size = UDim2.new(0, 140, 0, 20)
  546. Textbox.Font = Enum.Font.Gotham
  547. Textbox.Text = holder
  548. Textbox.TextColor3 = Color3.fromRGB(225, 225, 225)
  549. Textbox.TextSize = 11.000
  550.  
  551. Textbox.FocusLost:Connect(function()
  552. if #Textbox.Text > 0 then
  553. callback(Textbox.Text)
  554. end
  555. if disappear then
  556. Textbox.Text = ""
  557. else
  558. Textbox.Text = holder
  559. end
  560. end)
  561.  
  562. TextboxCorner.Name = "TextboxCorner"
  563. TextboxCorner.CornerRadius = UDim.new(0, 5)
  564. TextboxCorner.Parent = Textbox
  565. end
  566.  
  567. function main:AddDropdown(text,table,callback)
  568. local Dropdown = Instance.new("Frame")
  569. local UICorner = Instance.new("UICorner")
  570. local DropButton = Instance.new("TextButton")
  571. local Droptitle = Instance.new("TextLabel")
  572. local DropScroll = Instance.new("ScrollingFrame")
  573. local DropdownList = Instance.new("UIListLayout")
  574. local DropdownPadding = Instance.new("UIPadding")
  575. local DropImage = Instance.new("ImageLabel")
  576.  
  577. Dropdown.Name = "Dropdown"
  578. Dropdown.Parent = ScrollTab
  579. Dropdown.Active = true
  580. Dropdown.BackgroundColor3 = Color3.fromRGB(50, 48, 59)
  581. Dropdown.ClipsDescendants = true
  582. Dropdown.Size = UDim2.new(0, 455, 0, 30)
  583.  
  584. UICorner.CornerRadius = UDim.new(0, 5)
  585. UICorner.Parent = Dropdown
  586.  
  587. DropButton.Name = "DropButton"
  588. DropButton.Parent = Dropdown
  589. DropButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  590. DropButton.BackgroundTransparency = 1.000
  591. DropButton.Size = UDim2.new(0, 455, 0, 30)
  592. DropButton.Font = Enum.Font.SourceSans
  593. DropButton.Text = ""
  594. DropButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  595. DropButton.TextSize = 14.000
  596.  
  597. Droptitle.Name = "Droptitle"
  598. Droptitle.Parent = Dropdown
  599. Droptitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  600. Droptitle.BackgroundTransparency = 1.000
  601. Droptitle.Position = UDim2.new(0.0281690136, 0, 0, 0)
  602. Droptitle.Size = UDim2.new(0, 410, 0, 30)
  603. Droptitle.Font = Enum.Font.Gotham
  604. Droptitle.Text = text.." : "
  605. Droptitle.TextColor3 = Color3.fromRGB(225, 225, 225)
  606. Droptitle.TextSize = 11.000
  607. Droptitle.TextXAlignment = Enum.TextXAlignment.Left
  608.  
  609. DropImage.Name = "DropImage"
  610. DropImage.Parent = Dropdown
  611. DropImage.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  612. DropImage.BackgroundTransparency = 1.000
  613. DropImage.Position = UDim2.new(0, 425, 0, 5)
  614. DropImage.Rotation = 0
  615. DropImage.Size = UDim2.new(0, 20, 0, 20)
  616. DropImage.Image = "rbxassetid://5012539403"
  617.  
  618. DropScroll.Name = "DropScroll"
  619. DropScroll.Parent = Droptitle
  620. DropScroll.Active = true
  621. DropScroll.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  622. DropScroll.BackgroundTransparency = 1.000
  623. DropScroll.BorderSizePixel = 0
  624. DropScroll.Position = UDim2.new(-0.0317460336, 0, 1, 0)
  625. DropScroll.Size = UDim2.new(0, 455, 0, 70)
  626. DropScroll.CanvasSize = UDim2.new(0, 0, 0, 2)
  627. DropScroll.ScrollBarThickness = 2
  628.  
  629. DropdownList.Name = "DropdownList"
  630. DropdownList.Parent = DropScroll
  631. DropdownList.SortOrder = Enum.SortOrder.LayoutOrder
  632. DropdownList.Padding = UDim.new(0, 5)
  633.  
  634. DropdownPadding.Name = "DropdownPadding"
  635. DropdownPadding.Parent = DropScroll
  636. DropdownPadding.PaddingTop = UDim.new(0, 5)
  637.  
  638. local isdropping = false
  639.  
  640. for i,v in next,table do
  641. local DropButton2 = Instance.new("TextButton")
  642.  
  643. DropButton2.Name = "DropButton2"
  644. DropButton2.Parent = DropScroll
  645. DropButton2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  646. DropButton2.BackgroundTransparency = 1.000
  647. DropButton2.Size = UDim2.new(0, 455, 0, 30)
  648. DropButton2.AutoButtonColor = false
  649. DropButton2.Font = Enum.Font.Gotham
  650. DropButton2.TextColor3 = Color3.fromRGB(225, 225, 225)
  651. DropButton2.TextSize = 11.000
  652. DropButton2.Text = tostring(v)
  653.  
  654. DropButton2.MouseEnter:Connect(function()
  655. TweenService:Create(
  656. DropButton2,
  657. TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  658. {TextColor3 = Color3.fromRGB(255,0,0)}
  659. ):Play()
  660. end)
  661. DropButton2.MouseLeave:Connect(function()
  662. TweenService:Create(
  663. DropButton2,
  664. TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  665. {TextColor3 = Color3.fromRGB(225, 225, 225)}
  666. ):Play()
  667. end)
  668.  
  669. DropButton2.MouseButton1Click:Connect(function()
  670. TweenService:Create(
  671. Dropdown,
  672. TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  673. {Size = UDim2.new(0, 455, 0, 30)}
  674. ):Play()
  675. TweenService:Create(
  676. DropImage,
  677. TweenInfo.new(0.3, Enum.EasingStyle.Linear, Enum.EasingDirection.Out),
  678. {Rotation = 0}
  679. ):Play()
  680. Droptitle.Text = text.." : "..tostring(v)
  681. callback(v)
  682. isdropping = not isdropping
  683. DropScroll.CanvasSize = UDim2.new(0,0,0,DropdownList.AbsoluteContentSize.Y + 10)
  684. end)
  685. end
  686.  
  687. DropButton.MouseButton1Click:Connect(function()
  688. if isdropping == false then
  689. isdropping = true
  690. TweenService:Create(
  691. Dropdown,
  692. TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  693. {Size = UDim2.new(0, 455, 0, 100)}
  694. ):Play()
  695. TweenService:Create(
  696. DropImage,
  697. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  698. {Rotation = -180}
  699. ):Play()
  700. DropScroll.CanvasSize = UDim2.new(0,0,0,DropdownList.AbsoluteContentSize.Y + 10)
  701. else
  702. isdropping = false
  703. TweenService:Create(
  704. Dropdown,
  705. TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  706. {Size = UDim2.new(0, 455, 0, 30)}
  707. ):Play()
  708. TweenService:Create(
  709. DropImage,
  710. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  711. {Rotation = 0}
  712. ):Play()
  713. DropScroll.CanvasSize = UDim2.new(0,0,0,DropdownList.AbsoluteContentSize.Y + 10)
  714. end
  715. end)
  716. DropScroll.CanvasSize = UDim2.new(0,0,0,DropdownList.AbsoluteContentSize.Y + 10)
  717.  
  718. local drop = {}
  719.  
  720. function drop:Clear()
  721. Droptitle.Text = tostring(text).." :"
  722. TweenService:Create(
  723. Dropdown,
  724. TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  725. {Size = UDim2.new(0, 455, 0, 30)}
  726. ):Play()
  727. isdropping = false
  728. for i, v in next, DropScroll:GetChildren() do
  729. if v:IsA("TextButton") then
  730. v:Destroy()
  731. end
  732. end
  733. end
  734. function drop:Add(t)
  735. local DropButton2 = Instance.new("TextButton")
  736.  
  737. DropButton2.Name = "DropButton2"
  738. DropButton2.Parent = DropScroll
  739. DropButton2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  740. DropButton2.BackgroundTransparency = 1.000
  741. DropButton2.Size = UDim2.new(0, 455, 0, 30)
  742. DropButton2.AutoButtonColor = false
  743. DropButton2.Font = Enum.Font.Gotham
  744. DropButton2.TextColor3 = Color3.fromRGB(225, 225, 225)
  745. DropButton2.TextSize = 11.000
  746. DropButton2.Text = tostring(t)
  747.  
  748. DropButton2.MouseButton1Click:Connect(function()
  749. TweenService:Create(
  750. Dropdown,
  751. TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  752. {Size = UDim2.new(0, 455, 0, 30)}
  753. ):Play()
  754. TweenService:Create(
  755. DropImage,
  756. TweenInfo.new(0.3, Enum.EasingStyle.Linear, Enum.EasingDirection.Out),
  757. {Rotation = 0}
  758. ):Play()
  759. Droptitle.Text = text.." : "..tostring(t)
  760. callback(t)
  761. isdropping = not isdropping
  762. DropScroll.CanvasSize = UDim2.new(0,0,0,DropdownList.AbsoluteContentSize.Y + 10)
  763. end)
  764. end
  765. return drop
  766. end
  767.  
  768. function main:AddSlider(text,min,max,set,callback)
  769. set = (math.clamp(set,min,max))
  770. if set > max then set = max end
  771.  
  772. local Slider = Instance.new("Frame")
  773. local UICorner = Instance.new("UICorner")
  774. local SliderTitle = Instance.new("TextLabel")
  775. local SliderValue = Instance.new("TextLabel")
  776. local SliderButton = Instance.new("TextButton")
  777. local Bar1 = Instance.new("Frame")
  778. local Bar = Instance.new("Frame")
  779. local UICorner_2 = Instance.new("UICorner")
  780. local CircleBar = Instance.new("Frame")
  781. local UICorner_3 = Instance.new("UICorner")
  782. local UICorner_4 = Instance.new("UICorner")
  783.  
  784. Slider.Name = "Slider"
  785. Slider.Parent = ScrollTab
  786. Slider.BackgroundColor3 = Color3.fromRGB(50, 48, 59)
  787. Slider.Size = UDim2.new(0, 455, 0, 40)
  788.  
  789. UICorner.CornerRadius = UDim.new(0, 5)
  790. UICorner.Parent = Slider
  791.  
  792. SliderTitle.Name = "SliderTitle"
  793. SliderTitle.Parent = Slider
  794. SliderTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  795. SliderTitle.BackgroundTransparency = 1.000
  796. SliderTitle.Position = UDim2.new(0.0283286124, 0, 0, 0)
  797. SliderTitle.Size = UDim2.new(0, 290, 0, 20)
  798. SliderTitle.Font = Enum.Font.Gotham
  799. SliderTitle.Text = text
  800. SliderTitle.TextColor3 = Color3.fromRGB(225, 225, 225)
  801. SliderTitle.TextSize = 11.000
  802. SliderTitle.TextXAlignment = Enum.TextXAlignment.Left
  803.  
  804. SliderValue.Name = "SliderValue"
  805. SliderValue.Parent = Slider
  806. SliderValue.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  807. SliderValue.BackgroundTransparency = 1.000
  808. SliderValue.Position = UDim2.new(0.887778878, 0, 0, 0)
  809. SliderValue.Size = UDim2.new(0, 40, 0, 20)
  810. SliderValue.Font = Enum.Font.Gotham
  811. SliderValue.Text = tostring(set and math.floor( (set / max) * (max - min) + min) or 0)
  812. SliderValue.TextColor3 = Color3.fromRGB(225, 225, 225)
  813. SliderValue.TextSize = 11.000
  814.  
  815. SliderButton.Name = "SliderButton"
  816. SliderButton.Parent = Slider
  817. SliderButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  818. SliderButton.BackgroundTransparency = 1.000
  819. SliderButton.Position = UDim2.new(0, 10, 0, 25)
  820. SliderButton.Size = UDim2.new(0, 435, 0, 5)
  821. SliderButton.AutoButtonColor = false
  822. SliderButton.Font = Enum.Font.SourceSans
  823. SliderButton.Text = ""
  824. SliderButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  825. SliderButton.TextSize = 14.000
  826.  
  827. Bar1.Name = "Bar1"
  828. Bar1.Parent = SliderButton
  829. Bar1.BackgroundColor3 = Color3.fromRGB(30, 28, 39)
  830. Bar1.Size = UDim2.new(0, 435, 0, 5)
  831.  
  832. Bar.Name = "Bar"
  833. Bar.Parent = Bar1
  834. Bar.BackgroundColor3 = Color3.fromRGB(255,0,0)
  835. Bar.Size = UDim2.new(set/max, 0, 0, 5)
  836.  
  837. UICorner_2.CornerRadius = UDim.new(0, 100)
  838. UICorner_2.Parent = Bar
  839.  
  840. CircleBar.Name = "CircleBar"
  841. CircleBar.Parent = Bar
  842. CircleBar.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  843. CircleBar.Position = UDim2.new(1, -2, 0, -2)
  844. CircleBar.AnchorPoint = Vector2.new(0, 0.1)
  845. CircleBar.Size = UDim2.new(0, 10, 0, 10)
  846.  
  847. UICorner_3.CornerRadius = UDim.new(0, 100)
  848. UICorner_3.Parent = CircleBar
  849.  
  850. UICorner_4.CornerRadius = UDim.new(0, 100)
  851. UICorner_4.Parent = Bar1
  852.  
  853. local mouse = game.Players.LocalPlayer:GetMouse()
  854. local uis = game:GetService("UserInputService")
  855.  
  856. if Value == nil then
  857. Value = set
  858. pcall(function()
  859. callback(Value)
  860. end)
  861. end
  862.  
  863. SliderButton.MouseButton1Down:Connect(function()
  864. Value = math.floor((((tonumber(max) - tonumber(min)) / 435) * Bar.AbsoluteSize.X) + tonumber(min)) or 0
  865. pcall(function()
  866. callback(Value)
  867. end)
  868. Bar.Size = UDim2.new(0, math.clamp(mouse.X - Bar.AbsolutePosition.X, 0, 435), 0, 5)
  869. CircleBar.Position = UDim2.new(0, math.clamp(mouse.X - Bar.AbsolutePosition.X - 2, 0, 425), 0, -2)
  870. moveconnection = mouse.Move:Connect(function()
  871. SliderValue.Text = Value
  872. Value = math.floor((((tonumber(max) - tonumber(min)) / 435) * Bar.AbsoluteSize.X) + tonumber(min))
  873. pcall(function()
  874. callback(Value)
  875. end)
  876. Bar.Size = UDim2.new(0, math.clamp(mouse.X - Bar.AbsolutePosition.X, 0, 435), 0, 5)
  877. CircleBar.Position = UDim2.new(0, math.clamp(mouse.X - Bar.AbsolutePosition.X - 2, 0, 425), 0, -2)
  878. end)
  879. releaseconnection = uis.InputEnded:Connect(function(Mouse)
  880. if Mouse.UserInputType == Enum.UserInputType.MouseButton1 then
  881. Value = math.floor((((tonumber(max) - tonumber(min)) / 435) * Bar.AbsoluteSize.X) + tonumber(min))
  882. pcall(function()
  883. callback(Value)
  884. end)
  885. Bar.Size = UDim2.new(0, math.clamp(mouse.X - Bar.AbsolutePosition.X, 0, 435), 0, 5)
  886. CircleBar.Position = UDim2.new(0, math.clamp(mouse.X - Bar.AbsolutePosition.X - 2, 0, 425), 0, -2)
  887. moveconnection:Disconnect()
  888. releaseconnection:Disconnect()
  889. end
  890. end)
  891. end)
  892. releaseconnection = uis.InputEnded:Connect(function(Mouse)
  893. if Mouse.UserInputType == Enum.UserInputType.MouseButton1 then
  894. Value = math.floor((((tonumber(max) - tonumber(min)) / 435) * Bar.AbsoluteSize.X) + tonumber(min))
  895. SliderValue.Text = Value
  896. end
  897. end)
  898. end
  899. function main:AddSeperator(text)
  900. local Seperator = Instance.new("Frame")
  901. local Sep1 = Instance.new("Frame")
  902. local SepLabel = Instance.new("TextLabel")
  903. local Sep2 = Instance.new("Frame")
  904.  
  905. Seperator.Name = "Seperator"
  906. Seperator.Parent = ScrollTab
  907. Seperator.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  908. Seperator.BackgroundTransparency = 1.000
  909. Seperator.ClipsDescendants = true
  910. Seperator.Size = UDim2.new(0, 455, 0, 20)
  911.  
  912. Sep1.Name = "Sep1"
  913. Sep1.Parent = Seperator
  914. Sep1.BackgroundColor3 = Color3.fromRGB(255,0,0)
  915. Sep1.BorderSizePixel = 0
  916. Sep1.Position = UDim2.new(0, 0, 0, 10)
  917. Sep1.Size = UDim2.new(0, 150, 0, 1)
  918.  
  919. SepLabel.Name = "SepLabel"
  920. SepLabel.Parent = Seperator
  921. SepLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  922. SepLabel.BackgroundTransparency = 1.000
  923. SepLabel.Position = UDim2.new(0, 95, 0, 0)
  924. SepLabel.Size = UDim2.new(0, 255, 0, 20)
  925. SepLabel.Font = Enum.Font.Gotham
  926. SepLabel.Text = text
  927. SepLabel.TextColor3 = Color3.fromRGB(225,225,225)
  928. SepLabel.TextSize = 11.000
  929.  
  930. Sep2.Name = "Sep2"
  931. Sep2.Parent = Seperator
  932. Sep2.BackgroundColor3 = Color3.fromRGB(255,0,0)
  933. Sep2.BorderSizePixel = 0
  934. Sep2.Position = UDim2.new(0, 305, 0, 10)
  935. Sep2.Size = UDim2.new(0, 150, 0, 1)
  936. end
  937. function main:AddLine()
  938. local Line = Instance.new("Frame")
  939. local Linee = Instance.new("Frame")
  940.  
  941. Line.Name = "Line"
  942. Line.Parent = ScrollTab
  943. Line.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  944. Line.BackgroundTransparency = 1.000
  945. Line.ClipsDescendants = true
  946. Line.Size = UDim2.new(0, 455, 0, 20)
  947.  
  948. Linee.Name = "Linee"
  949. Linee.Parent = Line
  950. Linee.BackgroundColor3 = Color3.fromRGB(255,0,0)
  951. Linee.BorderSizePixel = 0
  952. Linee.Position = UDim2.new(0, 0, 0, 10)
  953. Linee.Size = UDim2.new(0, 455, 0, 1)
  954. end
  955. function main:AddLabel(text)
  956. local Label = Instance.new("TextLabel")
  957. local PaddingLabel = Instance.new("UIPadding")
  958. local labell = {}
  959.  
  960. Label.Name = "Label"
  961. Label.Parent = ScrollTab
  962. Label.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  963. Label.BackgroundTransparency = 1.000
  964. Label.Size = UDim2.new(0, 455, 0, 20)
  965. Label.Font = Enum.Font.Gotham
  966. Label.TextColor3 = Color3.fromRGB(225, 225, 225)
  967. Label.TextSize = 11.000
  968. Label.Text = text
  969. Label.TextXAlignment = Enum.TextXAlignment.Left
  970.  
  971. PaddingLabel.PaddingLeft = UDim.new(0,10)
  972. PaddingLabel.Parent = Label
  973. PaddingLabel.Name = "PaddingLabel"
  974.  
  975. function labell:Set(newtext)
  976. Label.Text = newtext
  977. end
  978.  
  979. return labell
  980. end
  981.  
  982. return main
  983. end
  984. return uitab
  985. end
  986.  
  987. --------------------------------------------------------------------
  988. if game.PlaceId == 2753915549 then
  989. World1 = true
  990. elseif game.PlaceId == 4442272183 then
  991. World2 = true
  992. elseif game.PlaceId == 7449423635 then
  993. World3 = true
  994. end
  995.  
  996. function CheckQuest()
  997. MyLevel = game:GetService("Players").LocalPlayer.Data.Level.Value
  998. if World1 then
  999. if MyLevel == 1 or MyLevel <= 9 then
  1000. Mon = "Bandit [Lv. 5]"
  1001. LevelQuest = 1
  1002. NameQuest = "BanditQuest1"
  1003. NameMon = "Bandit"
  1004. CFrameQuest = CFrame.new(1059.37195, 15.4495068, 1550.4231, 0.939700544, -0, -0.341998369, 0, 1, -0, 0.341998369, 0, 0.939700544)
  1005. elseif MyLevel == 10 or MyLevel <= 14 then
  1006. Mon = "Monkey [Lv. 14]"
  1007. LevelQuest = 1
  1008. NameQuest = "JungleQuest"
  1009. NameMon = "Monkey"
  1010. CFrameQuest = CFrame.new(-1598.08911, 35.5501175, 153.377838, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1011. elseif MyLevel == 15 or MyLevel <= 29 then
  1012. Mon = "Gorilla [Lv. 20]"
  1013. LevelQuest = 2
  1014. NameQuest = "JungleQuest"
  1015. NameMon = "Gorilla"
  1016. CFrameQuest = CFrame.new(-1598.08911, 35.5501175, 153.377838, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1017. elseif MyLevel == 30 or MyLevel <= 39 then
  1018. Mon = "Pirate [Lv. 35]"
  1019. LevelQuest = 1
  1020. NameQuest = "BuggyQuest1"
  1021. NameMon = "Pirate"
  1022. CFrameQuest = CFrame.new(-1141.07483, 4.10001802, 3831.5498, 0.965929627, -0, -0.258804798, 0, 1, -0, 0.258804798, 0, 0.965929627)
  1023. elseif MyLevel == 40 or MyLevel <= 59 then
  1024. Mon = "Brute [Lv. 45]"
  1025. LevelQuest = 2
  1026. NameQuest = "BuggyQuest1"
  1027. NameMon = "Brute"
  1028. CFrameQuest = CFrame.new(-1141.07483, 4.10001802, 3831.5498, 0.965929627, -0, -0.258804798, 0, 1, -0, 0.258804798, 0, 0.965929627)
  1029. elseif MyLevel == 60 or MyLevel <= 74 then
  1030. Mon = "Desert Bandit [Lv. 60]"
  1031. LevelQuest = 1
  1032. NameQuest = "DesertQuest"
  1033. NameMon = "Desert Bandit"
  1034. CFrameQuest = CFrame.new(894.488647, 5.14000702, 4392.43359, 0.819155693, -0, -0.573571265, 0, 1, -0, 0.573571265, 0, 0.819155693)
  1035. elseif MyLevel == 75 or MyLevel <= 89 then
  1036. Mon = "Desert Officer [Lv. 70]"
  1037. LevelQuest = 2
  1038. NameQuest = "DesertQuest"
  1039. NameMon = "Desert Officer"
  1040. CFrameQuest = CFrame.new(894.488647, 5.14000702, 4392.43359, 0.819155693, -0, -0.573571265, 0, 1, -0, 0.573571265, 0, 0.819155693)
  1041. elseif MyLevel == 90 or MyLevel <= 99 then
  1042. Mon = "Snow Bandit [Lv. 90]"
  1043. LevelQuest = 1
  1044. NameQuest = "SnowQuest"
  1045. NameMon = "Snow Bandit"
  1046. CFrameQuest = CFrame.new(1389.74451, 88.1519318, -1298.90796, -0.342042685, 0, 0.939684391, 0, 1, 0, -0.939684391, 0, -0.342042685)
  1047. elseif MyLevel == 100 or MyLevel <= 119 then
  1048. Mon = "Snowman [Lv. 100]"
  1049. LevelQuest = 2
  1050. NameQuest = "SnowQuest"
  1051. NameMon = "Snowman"
  1052. CFrameQuest = CFrame.new(1389.74451, 88.1519318, -1298.90796, -0.342042685, 0, 0.939684391, 0, 1, 0, -0.939684391, 0, -0.342042685)
  1053. elseif MyLevel == 120 or MyLevel <= 149 then
  1054. Mon = "Chief Petty Officer [Lv. 120]"
  1055. LevelQuest = 1
  1056. NameQuest = "MarineQuest2"
  1057. NameMon = "Chief Petty Officer"
  1058. CFrameQuest = CFrame.new(-5039.58643, 27.3500385, 4324.68018, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1059. elseif MyLevel == 150 or MyLevel <= 174 then
  1060. Mon = "Sky Bandit [Lv. 150]"
  1061. LevelQuest = 1
  1062. NameQuest = "SkyQuest"
  1063. NameMon = "Sky Bandit"
  1064. CFrameQuest = CFrame.new(-4839.53027, 716.368591, -2619.44165, 0.866007268, 0, 0.500031412, 0, 1, 0, -0.500031412, 0, 0.866007268)
  1065. elseif MyLevel == 175 or MyLevel <= 189 then
  1066. Mon = "Dark Master [Lv. 175]"
  1067. LevelQuest = 2
  1068. NameQuest = "SkyQuest"
  1069. NameMon = "Dark Master"
  1070. CFrameQuest = CFrame.new(-4839.53027, 716.368591, -2619.44165, 0.866007268, 0, 0.500031412, 0, 1, 0, -0.500031412, 0, 0.866007268)
  1071. elseif MyLevel == 190 or MyLevel <= 209 then
  1072. Mon = "Prisoner [Lv. 190]"
  1073. LevelQuest = 1
  1074. NameQuest = "PrisonerQuest"
  1075. NameMon = "Prisoner"
  1076. CFrameQuest = CFrame.new(5308.93115, 1.65517521, 475.120514, -0.0894274712, -5.00292918e-09, -0.995993316, 1.60817859e-09, 1, -5.16744869e-09, 0.995993316, -2.06384709e-09, -0.0894274712)
  1077. elseif MyLevel == 210 or MyLevel <= 249 then
  1078. Mon = "Dangerous Prisoner [Lv. 210]"
  1079. LevelQuest = 2
  1080. NameQuest = "PrisonerQuest"
  1081. NameMon = "Dangerous Prisoner"
  1082. CFrameQuest = CFrame.new(5308.93115, 1.65517521, 475.120514, -0.0894274712, -5.00292918e-09, -0.995993316, 1.60817859e-09, 1, -5.16744869e-09, 0.995993316, -2.06384709e-09, -0.0894274712)
  1083. elseif MyLevel == 250 or MyLevel <= 274 then
  1084. Mon = "Toga Warrior [Lv. 250]"
  1085. LevelQuest = 1
  1086. NameQuest = "ColosseumQuest"
  1087. NameMon = "Toga Warrior"
  1088. CFrameQuest = CFrame.new(-1580.04663, 6.35000277, -2986.47534, -0.515037298, 0, -0.857167721, 0, 1, 0, 0.857167721, 0, -0.515037298)
  1089. elseif MyLevel == 275 or MyLevel <= 299 then
  1090. Mon = "Gladiator [Lv. 275]"
  1091. LevelQuest = 2
  1092. NameQuest = "ColosseumQuest"
  1093. NameMon = "Gladiator"
  1094. CFrameQuest = CFrame.new(-1580.04663, 6.35000277, -2986.47534, -0.515037298, 0, -0.857167721, 0, 1, 0, 0.857167721, 0, -0.515037298)
  1095. elseif MyLevel == 300 or MyLevel <= 324 then
  1096. Mon = "Military Soldier [Lv. 300]"
  1097. LevelQuest = 1
  1098. NameQuest = "MagmaQuest"
  1099. NameMon = "Military Soldier"
  1100. CFrameQuest = CFrame.new(-5313.37012, 10.9500084, 8515.29395, -0.499959469, 0, 0.866048813, 0, 1, 0, -0.866048813, 0, -0.499959469)
  1101. elseif MyLevel == 325 or MyLevel <= 374 then
  1102. Mon = "Military Spy [Lv. 325]"
  1103. LevelQuest = 2
  1104. NameQuest = "MagmaQuest"
  1105. NameMon = "Military Spy"
  1106. CFrameQuest = CFrame.new(-5313.37012, 10.9500084, 8515.29395, -0.499959469, 0, 0.866048813, 0, 1, 0, -0.866048813, 0, -0.499959469)
  1107. elseif MyLevel == 375 or MyLevel <= 399 then
  1108. Mon = "Fishman Warrior [Lv. 375]"
  1109. LevelQuest = 1
  1110. NameQuest = "FishmanQuest"
  1111. NameMon = "Fishman Warrior"
  1112. CFrameQuest = CFrame.new(61122.65234375, 18.497442245483, 1569.3997802734)
  1113. if _G.AutoFarm and (CFrameQuest.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 10000 then
  1114. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(61163.8515625, 11.6796875, 1819.7841796875))
  1115. end
  1116. elseif MyLevel == 400 or MyLevel <= 449 then
  1117. Mon = "Fishman Commando [Lv. 400]"
  1118. LevelQuest = 2
  1119. NameQuest = "FishmanQuest"
  1120. NameMon = "Fishman Commando"
  1121. CFrameQuest = CFrame.new(61122.65234375, 18.497442245483, 1569.3997802734)
  1122. if _G.AutoFarm and (CFrameQuest.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 10000 then
  1123. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(61163.8515625, 11.6796875, 1819.7841796875))
  1124. end
  1125. elseif MyLevel == 450 or MyLevel <= 474 then
  1126. Mon = "God's Guard [Lv. 450]"
  1127. LevelQuest = 1
  1128. NameQuest = "SkyExp1Quest"
  1129. NameMon = "God's Guard"
  1130. CFrameQuest = CFrame.new(-4721.88867, 843.874695, -1949.96643, 0.996191859, -0, -0.0871884301, 0, 1, -0, 0.0871884301, 0, 0.996191859)
  1131. if _G.AutoFarm and (CFrameQuest.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 10000 then
  1132. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-4607.82275, 872.54248, -1667.55688))
  1133. end
  1134. elseif MyLevel == 475 or MyLevel <= 524 then
  1135. Mon = "Shanda [Lv. 475]"
  1136. LevelQuest = 2
  1137. NameQuest = "SkyExp1Quest"
  1138. NameMon = "Shanda"
  1139. CFrameQuest = CFrame.new(-7859.09814, 5544.19043, -381.476196, -0.422592998, 0, 0.906319618, 0, 1, 0, -0.906319618, 0, -0.422592998)
  1140. if _G.AutoFarm and (CFrameQuest.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 10000 then
  1141. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-7894.6176757813, 5547.1416015625, -380.29119873047))
  1142. end
  1143. elseif MyLevel == 525 or MyLevel <= 549 then
  1144. Mon = "Royal Squad [Lv. 525]"
  1145. LevelQuest = 1
  1146. NameQuest = "SkyExp2Quest"
  1147. NameMon = "Royal Squad"
  1148. CFrameQuest = CFrame.new(-7906.81592, 5634.6626, -1411.99194, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1149. elseif MyLevel == 550 or MyLevel <= 624 then
  1150. Mon = "Royal Soldier [Lv. 550]"
  1151. LevelQuest = 2
  1152. NameQuest = "SkyExp2Quest"
  1153. NameMon = "Royal Soldier"
  1154. CFrameQuest = CFrame.new(-7906.81592, 5634.6626, -1411.99194, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1155. elseif MyLevel == 625 or MyLevel <= 649 then
  1156. Mon = "Galley Pirate [Lv. 625]"
  1157. LevelQuest = 1
  1158. NameQuest = "FountainQuest"
  1159. NameMon = "Galley Pirate"
  1160. CFrameQuest = CFrame.new(5259.81982, 37.3500175, 4050.0293, 0.087131381, 0, 0.996196866, 0, 1, 0, -0.996196866, 0, 0.087131381)
  1161. elseif MyLevel >= 650 then
  1162. Mon = "Galley Captain [Lv. 650]"
  1163. LevelQuest = 2
  1164. NameQuest = "FountainQuest"
  1165. NameMon = "Galley Captain"
  1166. CFrameQuest = CFrame.new(5259.81982, 37.3500175, 4050.0293, 0.087131381, 0, 0.996196866, 0, 1, 0, -0.996196866, 0, 0.087131381)
  1167. end
  1168. elseif World2 then
  1169. if MyLevel == 700 or MyLevel <= 724 then
  1170. Mon = "Raider [Lv. 700]"
  1171. LevelQuest = 1
  1172. NameQuest = "Area1Quest"
  1173. NameMon = "Raider"
  1174. CFrameQuest = CFrame.new(-429.543518, 71.7699966, 1836.18188, -0.22495985, 0, -0.974368095, 0, 1, 0, 0.974368095, 0, -0.22495985)
  1175. elseif MyLevel == 725 or MyLevel <= 774 then
  1176. Mon = "Mercenary [Lv. 725]"
  1177. LevelQuest = 2
  1178. NameQuest = "Area1Quest"
  1179. NameMon = "Mercenary"
  1180. CFrameQuest = CFrame.new(-429.543518, 71.7699966, 1836.18188, -0.22495985, 0, -0.974368095, 0, 1, 0, 0.974368095, 0, -0.22495985)
  1181. elseif MyLevel == 775 or MyLevel <= 799 then
  1182. Mon = "Swan Pirate [Lv. 775]"
  1183. LevelQuest = 1
  1184. NameQuest = "Area2Quest"
  1185. NameMon = "Swan Pirate"
  1186. CFrameQuest = CFrame.new(638.43811, 71.769989, 918.282898, 0.139203906, 0, 0.99026376, 0, 1, 0, -0.99026376, 0, 0.139203906)
  1187. elseif MyLevel == 800 or MyLevel <= 874 then
  1188. Mon = "Factory Staff [Lv. 800]"
  1189. NameQuest = "Area2Quest"
  1190. LevelQuest = 2
  1191. NameMon = "Factory Staff"
  1192. CFrameQuest = CFrame.new(632.698608, 73.1055908, 918.666321, -0.0319722369, 8.96074881e-10, -0.999488771, 1.36326533e-10, 1, 8.92172336e-10, 0.999488771, -1.07732087e-10, -0.0319722369)
  1193. elseif MyLevel == 875 or MyLevel <= 899 then
  1194. Mon = "Marine Lieutenant [Lv. 875]"
  1195. LevelQuest = 1
  1196. NameQuest = "MarineQuest3"
  1197. NameMon = "Marine Lieutenant"
  1198. CFrameQuest = CFrame.new(-2440.79639, 71.7140732, -3216.06812, 0.866007268, 0, 0.500031412, 0, 1, 0, -0.500031412, 0, 0.866007268)
  1199. elseif MyLevel == 900 or MyLevel <= 949 then
  1200. Mon = "Marine Captain [Lv. 900]"
  1201. LevelQuest = 2
  1202. NameQuest = "MarineQuest3"
  1203. NameMon = "Marine Captain"
  1204. CFrameQuest = CFrame.new(-2440.79639, 71.7140732, -3216.06812, 0.866007268, 0, 0.500031412, 0, 1, 0, -0.500031412, 0, 0.866007268)
  1205. elseif MyLevel == 950 or MyLevel <= 974 then
  1206. Mon = "Zombie [Lv. 950]"
  1207. LevelQuest = 1
  1208. NameQuest = "ZombieQuest"
  1209. NameMon = "Zombie"
  1210. CFrameQuest = CFrame.new(-5497.06152, 47.5923004, -795.237061, -0.29242146, 0, -0.95628953, 0, 1, 0, 0.95628953, 0, -0.29242146)
  1211. elseif MyLevel == 975 or MyLevel <= 999 then
  1212. Mon = "Vampire [Lv. 975]"
  1213. LevelQuest = 2
  1214. NameQuest = "ZombieQuest"
  1215. NameMon = "Vampire"
  1216. CFrameQuest = CFrame.new(-5497.06152, 47.5923004, -795.237061, -0.29242146, 0, -0.95628953, 0, 1, 0, 0.95628953, 0, -0.29242146)
  1217. elseif MyLevel == 1000 or MyLevel <= 1049 then
  1218. Mon = "Snow Trooper [Lv. 1000]"
  1219. LevelQuest = 1
  1220. NameQuest = "SnowMountainQuest"
  1221. NameMon = "Snow Trooper"
  1222. CFrameQuest = CFrame.new(609.858826, 400.119904, -5372.25928, -0.374604106, 0, 0.92718488, 0, 1, 0, -0.92718488, 0, -0.374604106)
  1223. elseif MyLevel == 1050 or MyLevel <= 1099 then
  1224. Mon = "Winter Warrior [Lv. 1050]"
  1225. LevelQuest = 2
  1226. NameQuest = "SnowMountainQuest"
  1227. NameMon = "Winter Warrior"
  1228. CFrameQuest = CFrame.new(609.858826, 400.119904, -5372.25928, -0.374604106, 0, 0.92718488, 0, 1, 0, -0.92718488, 0, -0.374604106)
  1229. elseif MyLevel == 1100 or MyLevel <= 1124 then
  1230. Mon = "Lab Subordinate [Lv. 1100]"
  1231. LevelQuest = 1
  1232. NameQuest = "IceSideQuest"
  1233. NameMon = "Lab Subordinate"
  1234. CFrameQuest = CFrame.new(-6064.06885, 15.2422857, -4902.97852, 0.453972578, -0, -0.891015649, 0, 1, -0, 0.891015649, 0, 0.453972578)
  1235. elseif MyLevel == 1125 or MyLevel <= 1174 then
  1236. Mon = "Horned Warrior [Lv. 1125]"
  1237. LevelQuest = 2
  1238. NameQuest = "IceSideQuest"
  1239. NameMon = "Horned Warrior"
  1240. CFrameQuest = CFrame.new(-6064.06885, 15.2422857, -4902.97852, 0.453972578, -0, -0.891015649, 0, 1, -0, 0.891015649, 0, 0.453972578)
  1241. elseif MyLevel == 1175 or MyLevel <= 1199 then
  1242. Mon = "Magma Ninja [Lv. 1175]"
  1243. LevelQuest = 1
  1244. NameQuest = "FireSideQuest"
  1245. NameMon = "Magma Ninja"
  1246. CFrameQuest = CFrame.new(-5428.03174, 15.0622921, -5299.43457, -0.882952213, 0, 0.469463557, 0, 1, 0, -0.469463557, 0, -0.882952213)
  1247. elseif MyLevel == 1200 or MyLevel <= 1249 then
  1248. Mon = "Lava Pirate [Lv. 1200]"
  1249. LevelQuest = 2
  1250. NameQuest = "FireSideQuest"
  1251. NameMon = "Lava Pirate"
  1252. CFrameQuest = CFrame.new(-5428.03174, 15.0622921, -5299.43457, -0.882952213, 0, 0.469463557, 0, 1, 0, -0.469463557, 0, -0.882952213)
  1253. elseif MyLevel == 1250 or MyLevel <= 1274 then
  1254. Mon = "Ship Deckhand [Lv. 1250]"
  1255. LevelQuest = 1
  1256. NameQuest = "ShipQuest1"
  1257. NameMon = "Ship Deckhand"
  1258. CFrameQuest = CFrame.new(1037.80127, 125.092171, 32911.6016)
  1259. if _G.AutoFarm and (CFrameQuest.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 10000 then
  1260. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(923.21252441406, 126.9760055542, 32852.83203125))
  1261. end
  1262. elseif MyLevel == 1275 or MyLevel <= 1299 then
  1263. Mon = "Ship Engineer [Lv. 1275]"
  1264. LevelQuest = 2
  1265. NameQuest = "ShipQuest1"
  1266. NameMon = "Ship Engineer"
  1267. CFrameQuest = CFrame.new(1037.80127, 125.092171, 32911.6016)
  1268. if _G.AutoFarm and (CFrameQuest.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 10000 then
  1269. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(923.21252441406, 126.9760055542, 32852.83203125))
  1270. end
  1271. elseif MyLevel == 1300 or MyLevel <= 1324 then
  1272. Mon = "Ship Steward [Lv. 1300]"
  1273. LevelQuest = 1
  1274. NameQuest = "ShipQuest2"
  1275. NameMon = "Ship Steward"
  1276. CFrameQuest = CFrame.new(968.80957, 125.092171, 33244.125)
  1277. if _G.AutoFarm and (CFrameQuest.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 10000 then
  1278. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(923.21252441406, 126.9760055542, 32852.83203125))
  1279. end
  1280. elseif MyLevel == 1325 or MyLevel <= 1349 then
  1281. Mon = "Ship Officer [Lv. 1325]"
  1282. LevelQuest = 2
  1283. NameQuest = "ShipQuest2"
  1284. NameMon = "Ship Officer"
  1285. CFrameQuest = CFrame.new(968.80957, 125.092171, 33244.125)
  1286. if _G.AutoFarm and (CFrameQuest.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 10000 then
  1287. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(923.21252441406, 126.9760055542, 32852.83203125))
  1288. end
  1289. elseif MyLevel == 1350 or MyLevel <= 1374 then
  1290. Mon = "Arctic Warrior [Lv. 1350]"
  1291. LevelQuest = 1
  1292. NameQuest = "FrostQuest"
  1293. NameMon = "Arctic Warrior"
  1294. CFrameQuest = CFrame.new(5667.6582, 26.7997818, -6486.08984, -0.933587909, 0, -0.358349502, 0, 1, 0, 0.358349502, 0, -0.933587909)
  1295. if _G.AutoFarm and (CFrameQuest.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 10000 then
  1296. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-6508.5581054688, 5000.034996032715, -132.83953857422))
  1297. end
  1298. elseif MyLevel == 1375 or MyLevel <= 1424 then
  1299. Mon = "Snow Lurker [Lv. 1375]"
  1300. LevelQuest = 2
  1301. NameQuest = "FrostQuest"
  1302. NameMon = "Snow Lurker"
  1303. CFrameQuest = CFrame.new(5667.6582, 26.7997818, -6486.08984, -0.933587909, 0, -0.358349502, 0, 1, 0, 0.358349502, 0, -0.933587909)
  1304. elseif MyLevel == 1425 or MyLevel <= 1449 then
  1305. Mon = "Sea Soldier [Lv. 1425]"
  1306. LevelQuest = 1
  1307. NameQuest = "ForgottenQuest"
  1308. NameMon = "Sea Soldier"
  1309. CFrameQuest = CFrame.new(-3054.44458, 235.544281, -10142.8193, 0.990270376, -0, -0.13915664, 0, 1, -0, 0.13915664, 0, 0.990270376)
  1310. elseif MyLevel >= 1450 then
  1311. Mon = "Water Fighter [Lv. 1450]"
  1312. LevelQuest = 2
  1313. NameQuest = "ForgottenQuest"
  1314. NameMon = "Water Fighter"
  1315. CFrameQuest = CFrame.new(-3054.44458, 235.544281, -10142.8193, 0.990270376, -0, -0.13915664, 0, 1, -0, 0.13915664, 0, 0.990270376)
  1316. end
  1317. elseif World3 then
  1318. if MyLevel == 1500 or MyLevel <= 1524 then
  1319. Mon = "Pirate Millionaire [Lv. 1500]"
  1320. LevelQuest = 1
  1321. NameQuest = "PiratePortQuest"
  1322. NameMon = "Pirate Millionaire"
  1323. CFrameQuest = CFrame.new(-290.074677, 42.9034653, 5581.58984, 0.965929627, -0, -0.258804798, 0, 1, -0, 0.258804798, 0, 0.965929627)
  1324. elseif MyLevel == 1525 or MyLevel <= 1574 then
  1325. Mon = "Pistol Billionaire [Lv. 1525]"
  1326. LevelQuest = 2
  1327. NameQuest = "PiratePortQuest"
  1328. NameMon = "Pistol Billionaire"
  1329. CFrameQuest = CFrame.new(-290.074677, 42.9034653, 5581.58984, 0.965929627, -0, -0.258804798, 0, 1, -0, 0.258804798, 0, 0.965929627)
  1330. elseif MyLevel == 1575 or MyLevel <= 1599 then
  1331. Mon = "Dragon Crew Warrior [Lv. 1575]"
  1332. LevelQuest = 1
  1333. NameQuest = "AmazonQuest"
  1334. NameMon = "Dragon Crew Warrior"
  1335. CFrameQuest = CFrame.new(5832.83594, 51.6806107, -1101.51563, 0.898790359, -0, -0.438378751, 0, 1, -0, 0.438378751, 0, 0.898790359)
  1336. elseif MyLevel == 1600 or MyLevel <= 1624 then
  1337. Mon = "Dragon Crew Archer [Lv. 1600]"
  1338. NameQuest = "AmazonQuest"
  1339. LevelQuest = 2
  1340. NameMon = "Dragon Crew Archer"
  1341. CFrameQuest = CFrame.new(5833.1147460938, 51.60498046875, -1103.0693359375)
  1342. elseif MyLevel == 1625 or MyLevel <= 1649 then
  1343. Mon = "Female Islander [Lv. 1625]"
  1344. NameQuest = "AmazonQuest2"
  1345. LevelQuest = 1
  1346. NameMon = "Female Islander"
  1347. CFrameQuest = CFrame.new(5446.8793945313, 601.62945556641, 749.45672607422)
  1348. elseif MyLevel == 1650 or MyLevel <= 1699 then
  1349. Mon = "Giant Islander [Lv. 1650]"
  1350. NameQuest = "AmazonQuest2"
  1351. LevelQuest = 2
  1352. NameMon = "Giant Islander"
  1353. CFrameQuest = CFrame.new(5446.8793945313, 601.62945556641, 749.45672607422)
  1354. elseif MyLevel == 1700 or MyLevel <= 1724 then
  1355. Mon = "Marine Commodore [Lv. 1700]"
  1356. LevelQuest = 1
  1357. NameQuest = "MarineTreeIsland"
  1358. NameMon = "Marine Commodore"
  1359. CFrameQuest = CFrame.new(2180.54126, 27.8156815, -6741.5498, -0.965929747, 0, 0.258804798, 0, 1, 0, -0.258804798, 0, -0.965929747)
  1360. elseif MyLevel == 1725 or MyLevel <= 1774 then
  1361. Mon = "Marine Rear Admiral [Lv. 1725]"
  1362. NameMon = "Marine Rear Admiral"
  1363. NameQuest = "MarineTreeIsland"
  1364. LevelQuest = 2
  1365. CFrameQuest = CFrame.new(2179.98828125, 28.731239318848, -6740.0551757813)
  1366. elseif MyLevel == 1775 or MyLevel <= 1799 then
  1367. Mon = "Fishman Raider [Lv. 1775]"
  1368. LevelQuest = 1
  1369. NameQuest = "DeepForestIsland3"
  1370. NameMon = "Fishman Raider"
  1371. CFrameQuest = CFrame.new(-10581.6563, 330.872955, -8761.18652, -0.882952213, 0, 0.469463557, 0, 1, 0, -0.469463557, 0, -0.882952213)
  1372. elseif MyLevel == 1800 or MyLevel <= 1824 then
  1373. Mon = "Fishman Captain [Lv. 1800]"
  1374. LevelQuest = 2
  1375. NameQuest = "DeepForestIsland3"
  1376. NameMon = "Fishman Captain"
  1377. CFrameQuest = CFrame.new(-10581.6563, 330.872955, -8761.18652, -0.882952213, 0, 0.469463557, 0, 1, 0, -0.469463557, 0, -0.882952213)
  1378. elseif MyLevel == 1825 or MyLevel <= 1849 then
  1379. Mon = "Forest Pirate [Lv. 1825]"
  1380. LevelQuest = 1
  1381. NameQuest = "DeepForestIsland"
  1382. NameMon = "Forest Pirate"
  1383. CFrameQuest = CFrame.new(-13234.04, 331.488495, -7625.40137, 0.707134247, -0, -0.707079291, 0, 1, -0, 0.707079291, 0, 0.707134247)
  1384. elseif MyLevel == 1850 or MyLevel <= 1899 then
  1385. Mon = "Mythological Pirate [Lv. 1850]"
  1386. LevelQuest = 2
  1387. NameQuest = "DeepForestIsland"
  1388. NameMon = "Mythological Pirate"
  1389. CFrameQuest = CFrame.new(-13234.04, 331.488495, -7625.40137, 0.707134247, -0, -0.707079291, 0, 1, -0, 0.707079291, 0, 0.707134247)
  1390. elseif MyLevel == 1900 or MyLevel <= 1924 then
  1391. Mon = "Jungle Pirate [Lv. 1900]"
  1392. LevelQuest = 1
  1393. NameQuest = "DeepForestIsland2"
  1394. NameMon = "Jungle Pirate"
  1395. CFrameQuest = CFrame.new(-12680.3818, 389.971039, -9902.01953, -0.0871315002, 0, 0.996196866, 0, 1, 0, -0.996196866, 0, -0.0871315002)
  1396. elseif MyLevel == 1925 or MyLevel <= 1974 then
  1397. Mon = "Musketeer Pirate [Lv. 1925]"
  1398. LevelQuest = 2
  1399. NameQuest = "DeepForestIsland2"
  1400. NameMon = "Musketeer Pirate"
  1401. CFrameQuest = CFrame.new(-12680.3818, 389.971039, -9902.01953, -0.0871315002, 0, 0.996196866, 0, 1, 0, -0.996196866, 0, -0.0871315002)
  1402. elseif MyLevel == 1975 or MyLevel <= 1999 then
  1403. Mon = "Reborn Skeleton [Lv. 1975]"
  1404. LevelQuest = 1
  1405. NameQuest = "HauntedQuest1"
  1406. NameMon = "Reborn Skeleton"
  1407. CFrameQuest = CFrame.new(-9479.2168, 141.215088, 5566.09277, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1408. elseif MyLevel == 2000 or MyLevel <= 2024 then
  1409. Mon = "Living Zombie [Lv. 2000]"
  1410. LevelQuest = 2
  1411. NameQuest = "HauntedQuest1"
  1412. NameMon = "Living Zombie"
  1413. CFrameQuest = CFrame.new(-9479.2168, 141.215088, 5566.09277, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1414. elseif MyLevel == 2025 or MyLevel <= 2049 then
  1415. Mon = "Demonic Soul [Lv. 2025]"
  1416. LevelQuest = 1
  1417. NameQuest = "HauntedQuest2"
  1418. NameMon = "Demonic Soul"
  1419. CFrameQuest = CFrame.new(-9516.99316, 172.017181, 6078.46533, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1420. elseif MyLevel == 2050 or MyLevel <= 2074 then
  1421. Mon = "Posessed Mummy [Lv. 2050]"
  1422. LevelQuest = 2
  1423. NameQuest = "HauntedQuest2"
  1424. NameMon = "Posessed Mummy"
  1425. CFrameQuest = CFrame.new(-9516.99316, 172.017181, 6078.46533, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1426. elseif MyLevel == 2075 or MyLevel <= 2099 then
  1427. Mon = "Peanut Scout [Lv. 2075]"
  1428. LevelQuest = 1
  1429. NameQuest = "NutsIslandQuest"
  1430. NameMon = "Peanut Scout"
  1431. CFrameQuest = CFrame.new(-2104.3908691406, 38.104167938232, -10194.21875, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1432. elseif MyLevel == 2100 or MyLevel <= 2124 then
  1433. Mon = "Peanut President [Lv. 2100]"
  1434. LevelQuest = 2
  1435. NameQuest = "NutsIslandQuest"
  1436. NameMon = "Peanut President"
  1437. CFrameQuest = CFrame.new(-2104.3908691406, 38.104167938232, -10194.21875, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1438. elseif MyLevel == 2125 or MyLevel <= 2149 then
  1439. Mon = "Ice Cream Chef [Lv. 2125]"
  1440. LevelQuest = 1
  1441. NameQuest = "IceCreamIslandQuest"
  1442. NameMon = "Ice Cream Chef"
  1443. CFrameQuest = CFrame.new(-820.64825439453, 65.819526672363, -10965.795898438, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1444. elseif MyLevel == 2150 or MyLevel <= 2199 then
  1445. Mon = "Ice Cream Commander [Lv. 2150]"
  1446. LevelQuest = 2
  1447. NameQuest = "IceCreamIslandQuest"
  1448. NameMon = "Ice Cream Commander"
  1449. CFrameQuest = CFrame.new(-820.64825439453, 65.819526672363, -10965.795898438, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1450. elseif MyLevel == 2200 or MyLevel <= 2224 then
  1451. Mon = "Cookie Crafter [Lv. 2200]"
  1452. LevelQuest = 1
  1453. NameQuest = "CakeQuest1"
  1454. NameMon = "Cookie Crafter"
  1455. CFrameQuest = CFrame.new(-2021.32007, 37.7982254, -12028.7295, 0.957576931, -8.80302053e-08, 0.288177818, 6.9301187e-08, 1, 7.51931211e-08, -0.288177818, -5.2032135e-08, 0.957576931)
  1456. elseif MyLevel == 2225 or MyLevel <= 2249 then
  1457. Mon = "Cake Guard [Lv. 2225]"
  1458. LevelQuest = 2
  1459. NameQuest = "CakeQuest1"
  1460. NameMon = "Cake Guard"
  1461. CFrameQuest = CFrame.new(-2021.32007, 37.7982254, -12028.7295, 0.957576931, -8.80302053e-08, 0.288177818, 6.9301187e-08, 1, 7.51931211e-08, -0.288177818, -5.2032135e-08, 0.957576931)
  1462. elseif MyLevel == 2250 or MyLevel <= 2274 then
  1463. Mon = "Baking Staff [Lv. 2250]"
  1464. LevelQuest = 1
  1465. NameQuest = "CakeQuest2"
  1466. NameMon = "Baking Staff"
  1467. CFrameQuest = CFrame.new(-1927.91602, 37.7981339, -12842.5391, -0.96804446, 4.22142143e-08, 0.250778586, 4.74911062e-08, 1, 1.49904711e-08, -0.250778586, 2.64211941e-08, -0.96804446)
  1468. elseif MyLevel >= 2275 then
  1469. Mon = "Head Baker [Lv. 2275]"
  1470. LevelQuest = 2
  1471. NameQuest = "CakeQuest2"
  1472. NameMon = "Head Baker"
  1473. CFrameQuest = CFrame.new(-1927.91602, 37.7981339, -12842.5391, -0.96804446, 4.22142143e-08, 0.250778586, 4.74911062e-08, 1, 1.49904711e-08, -0.250778586, 2.64211941e-08, -0.96804446)
  1474. end
  1475. end
  1476. end
  1477.  
  1478. function Hop()
  1479. local PlaceID = game.PlaceId
  1480. local AllIDs = {}
  1481. local foundAnything = ""
  1482. local actualHour = os.date("!*t").hour
  1483. local Deleted = false
  1484. function TPReturner()
  1485. local Site;
  1486. if foundAnything == "" then
  1487. Site = game.HttpService:JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. PlaceID .. '/servers/Public?sortOrder=Asc&limit=100'))
  1488. else
  1489. Site = game.HttpService:JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. PlaceID .. '/servers/Public?sortOrder=Asc&limit=100&cursor=' .. foundAnything))
  1490. end
  1491. local ID = ""
  1492. if Site.nextPageCursor and Site.nextPageCursor ~= "null" and Site.nextPageCursor ~= nil then
  1493. foundAnything = Site.nextPageCursor
  1494. end
  1495. local num = 0;
  1496. for i,v in pairs(Site.data) do
  1497. local Possible = true
  1498. ID = tostring(v.id)
  1499. if tonumber(v.maxPlayers) > tonumber(v.playing) then
  1500. for _,Existing in pairs(AllIDs) do
  1501. if num ~= 0 then
  1502. if ID == tostring(Existing) then
  1503. Possible = false
  1504. end
  1505. else
  1506. if tonumber(actualHour) ~= tonumber(Existing) then
  1507. local delFile = pcall(function()
  1508. AllIDs = {}
  1509. table.insert(AllIDs, actualHour)
  1510. end)
  1511. end
  1512. end
  1513. num = num + 1
  1514. end
  1515. if Possible == true then
  1516. table.insert(AllIDs, ID)
  1517. wait()
  1518. pcall(function()
  1519. wait()
  1520. game:GetService("TeleportService"):TeleportToPlaceInstance(PlaceID, ID, game.Players.LocalPlayer)
  1521. end)
  1522. wait(4)
  1523. end
  1524. end
  1525. end
  1526. end
  1527. function Teleport()
  1528. while wait() do
  1529. pcall(function()
  1530. TPReturner()
  1531. if foundAnything ~= "" then
  1532. TPReturner()
  1533. end
  1534. end)
  1535. end
  1536. end
  1537. Teleport()
  1538. end
  1539.  
  1540. function isnil(thing)
  1541. return (thing == nil)
  1542. end
  1543. local function round(n)
  1544. return math.floor(tonumber(n) + 0.5)
  1545. end
  1546. Number = math.random(1, 1000000)
  1547. function UpdateEspPlayer()
  1548. if ESPPlayer then
  1549. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1550. if not isnil(v.Character) then
  1551. if not v.Character.Head:FindFirstChild('NameEsp'..v.Name) then
  1552. local BillboardGui = Instance.new("BillboardGui")
  1553. local ESP = Instance.new("TextLabel")
  1554. local HealthESP = Instance.new("TextLabel")
  1555. BillboardGui.Parent = v.Character.Head
  1556. BillboardGui.Name = 'NameEsp'..v.Name
  1557. BillboardGui.ExtentsOffset = Vector3.new(0, 1, 0)
  1558. BillboardGui.Size = UDim2.new(1,200,1,30)
  1559. BillboardGui.Adornee = v.Character.Head
  1560. BillboardGui.AlwaysOnTop = true
  1561. ESP.Name = "ESP"
  1562. ESP.Parent = BillboardGui
  1563. ESP.TextTransparency = 0
  1564. ESP.BackgroundTransparency = 1
  1565. ESP.Size = UDim2.new(0, 200, 0, 30)
  1566. ESP.Position = UDim2.new(0,25,0,0)
  1567. ESP.Font = Enum.Font.Gotham
  1568. ESP.Text = (v.Name ..' '.."[ "..round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Character.Head.Position).Magnitude/3) ..' M'.." ]")
  1569. if v.Team == game:GetService("Players").LocalPlayer.Team then
  1570. ESP.TextColor3 = Color3.new(0, 255, 255)
  1571. else
  1572. ESP.TextColor3 = Color3.new(255, 0, 0)
  1573. end
  1574. ESP.TextSize = 14
  1575. ESP.TextStrokeTransparency = 0.500
  1576. ESP.TextWrapped = true
  1577. HealthESP.Name = "HealthESP"
  1578. HealthESP.Parent = ESP
  1579. HealthESP.TextTransparency = 0
  1580. HealthESP.BackgroundTransparency = 1
  1581. HealthESP.Position = ESP.Position + UDim2.new(0, -25, 0, 15)
  1582. HealthESP.Size = UDim2.new(0, 200, 0, 30)
  1583. HealthESP.Font = Enum.Font.Gotham
  1584. HealthESP.TextColor3 = Color3.fromRGB(255, 0, 0)
  1585. HealthESP.TextSize = 14
  1586. HealthESP.TextStrokeTransparency = 0.500
  1587. HealthESP.TextWrapped = true
  1588. HealthESP.Text = "Health "..math.floor(v.Character.Humanoid.Health).."/"..math.floor(v.Character.Humanoid.MaxHealth)
  1589. else
  1590. v.Character.Head['NameEsp'..v.Name].ESP.Text = (v.Name ..' '..round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Character.Head.Position).Magnitude/3) ..' M')
  1591. v.Character.Head['NameEsp'..v.Name].ESP.HealthESP.Text = "Health "..math.floor(v.Character.Humanoid.Health).."/"..math.floor(v.Character.Humanoid.MaxHealth)
  1592. v.Character.Head:FindFirstChild('NameEsp'..v.Name).ESP.TextTransparency = 0
  1593. v.Character.Head:FindFirstChild('NameEsp'..v.Name).ESP.HealthESP.TextTransparency = 0
  1594. end
  1595. end
  1596. end
  1597. else
  1598. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1599. if v.Character.Head:FindFirstChild('NameEsp'..v.Name) then
  1600. v.Character.Head:FindFirstChild('NameEsp'..v.Name).ESP.TextTransparency = 1
  1601. v.Character.Head:FindFirstChild('NameEsp'..v.Name).ESP.HealthESP.TextTransparency = 1
  1602. end
  1603. end
  1604. end
  1605. end
  1606.  
  1607. function UpdateIslandESP()
  1608. for i,v in pairs(game:GetService("Workspace")["_WorldOrigin"].Locations:GetChildren()) do
  1609. pcall(function()
  1610. if IslandESP then
  1611. if v.Name ~= "Sea" then
  1612. if not v:FindFirstChild('NameEsp') then
  1613. local bill = Instance.new('BillboardGui',v)
  1614. bill.Name = 'NameEsp'
  1615. bill.ExtentsOffset = Vector3.new(0, 1, 0)
  1616. bill.Size = UDim2.new(1,200,1,30)
  1617. bill.Adornee = v
  1618. bill.AlwaysOnTop = true
  1619. local name = Instance.new('TextLabel',bill)
  1620. name.Font = "GothamBold"
  1621. name.FontSize = "Size14"
  1622. name.TextWrapped = true
  1623. name.Size = UDim2.new(1,0,1,0)
  1624. name.TextYAlignment = 'Top'
  1625. name.BackgroundTransparency = 1
  1626. name.TextStrokeTransparency = 0.5
  1627. name.TextColor3 = Color3.fromRGB(80, 245, 245)
  1628. else
  1629. v['NameEsp'].TextLabel.Text = (v.Name ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  1630. end
  1631. end
  1632. else
  1633. if v:FindFirstChild('NameEsp') then
  1634. v:FindFirstChild('NameEsp'):Destroy()
  1635. end
  1636. end
  1637. end)
  1638. end
  1639. end
  1640.  
  1641. function UpdateChestEsp()
  1642. for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
  1643. pcall(function()
  1644. if string.find(v.Name,"Chest") then
  1645. if ChestESP then
  1646. if string.find(v.Name,"Chest") then
  1647. if not v:FindFirstChild('NameEsp'..Number) then
  1648. local bill = Instance.new('BillboardGui',v)
  1649. bill.Name = 'NameEsp'..Number
  1650. bill.ExtentsOffset = Vector3.new(0, 1, 0)
  1651. bill.Size = UDim2.new(1,200,1,30)
  1652. bill.Adornee = v
  1653. bill.AlwaysOnTop = true
  1654. local name = Instance.new('TextLabel',bill)
  1655. name.Font = "GothamBold"
  1656. name.FontSize = "Size14"
  1657. name.TextWrapped = true
  1658. name.Size = UDim2.new(1,0,1,0)
  1659. name.TextYAlignment = 'Top'
  1660. name.BackgroundTransparency = 1
  1661. name.TextStrokeTransparency = 0.5
  1662. name.TextColor3 = Color3.fromRGB(0, 255, 250)
  1663. if v.Name == "Chest1" then
  1664. name.Text = ("Chest 1" ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  1665. end
  1666. if v.Name == "Chest2" then
  1667. name.Text = ("Chest 2" ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  1668. end
  1669. if v.Name == "Chest3" then
  1670. name.Text = ("Chest 3" ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  1671. end
  1672. else
  1673. v['NameEsp'..Number].TextLabel.Text = (v.Name ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  1674. end
  1675. end
  1676. else
  1677. if v:FindFirstChild('NameEsp'..Number) then
  1678. v:FindFirstChild('NameEsp'..Number):Destroy()
  1679. end
  1680. end
  1681. end
  1682. end)
  1683. end
  1684. end
  1685.  
  1686. function UpdateBfEsp()
  1687. for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
  1688. pcall(function()
  1689. if DevilFruitESP then
  1690. if string.find(v.Name, "Fruit") then
  1691. if not v.Handle:FindFirstChild('NameEsp'..Number) then
  1692. local bill = Instance.new('BillboardGui',v.Handle)
  1693. bill.Name = 'NameEsp'..Number
  1694. bill.ExtentsOffset = Vector3.new(0, 1, 0)
  1695. bill.Size = UDim2.new(1,200,1,30)
  1696. bill.Adornee = v.Handle
  1697. bill.AlwaysOnTop = true
  1698. local name = Instance.new('TextLabel',bill)
  1699. name.Font = "GothamBold"
  1700. name.FontSize = "Size14"
  1701. name.TextWrapped = true
  1702. name.Size = UDim2.new(1,0,1,0)
  1703. name.TextYAlignment = 'Top'
  1704. name.BackgroundTransparency = 1
  1705. name.TextStrokeTransparency = 0.5
  1706. name.TextColor3 = Color3.fromRGB(255, 0, 0)
  1707. name.Text = (v.Name ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Handle.Position).Magnitude/3) ..' M')
  1708. else
  1709. v.Handle['NameEsp'..Number].TextLabel.Text = (v.Name ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Handle.Position).Magnitude/3) ..' M')
  1710. end
  1711. end
  1712. else
  1713. if v.Handle:FindFirstChild('NameEsp'..Number) then
  1714. v.Handle:FindFirstChild('NameEsp'..Number):Destroy()
  1715. end
  1716. end
  1717. end)
  1718. end
  1719. end
  1720.  
  1721. function UpdateFlowerEsp()
  1722. for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
  1723. pcall(function()
  1724. if v.Name == "Flower2" or v.Name == "Flower1" then
  1725. if FlowerESP then
  1726. if not v:FindFirstChild('NameEsp'..Number) then
  1727. local bill = Instance.new('BillboardGui',v)
  1728. bill.Name = 'NameEsp'..Number
  1729. bill.ExtentsOffset = Vector3.new(0, 1, 0)
  1730. bill.Size = UDim2.new(1,200,1,30)
  1731. bill.Adornee = v
  1732. bill.AlwaysOnTop = true
  1733. local name = Instance.new('TextLabel',bill)
  1734. name.Font = "GothamBold"
  1735. name.FontSize = "Size14"
  1736. name.TextWrapped = true
  1737. name.Size = UDim2.new(1,0,1,0)
  1738. name.TextYAlignment = 'Top'
  1739. name.BackgroundTransparency = 1
  1740. name.TextStrokeTransparency = 0.5
  1741. name.TextColor3 = Color3.fromRGB(255, 0, 0)
  1742. if v.Name == "Flower1" then
  1743. name.Text = ("Blue Flower" ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  1744. name.TextColor3 = Color3.fromRGB(0, 0, 255)
  1745. end
  1746. if v.Name == "Flower2" then
  1747. name.Text = ("Red Flower" ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  1748. name.TextColor3 = Color3.fromRGB(255, 0, 0)
  1749. end
  1750. else
  1751. v['NameEsp'..Number].TextLabel.Text = (v.Name ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  1752. end
  1753. else
  1754. if v:FindFirstChild('NameEsp'..Number) then
  1755. v:FindFirstChild('NameEsp'..Number):Destroy()
  1756. end
  1757. end
  1758. end
  1759. end)
  1760. end
  1761. end
  1762.  
  1763. function InfAb()
  1764. if InfAbility then
  1765. if not game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("Agility") then
  1766. local inf = Instance.new("ParticleEmitter")
  1767. inf.Acceleration = Vector3.new(0,0,0)
  1768. inf.Archivable = true
  1769. inf.Drag = 20
  1770. inf.EmissionDirection = Enum.NormalId.Top
  1771. inf.Enabled = true
  1772. inf.Lifetime = NumberRange.new(0.2,0.2)
  1773. inf.LightInfluence = 0
  1774. inf.LockedToPart = true
  1775. inf.Name = "Agility"
  1776. inf.Rate = 500
  1777. local numberKeypoints2 = {
  1778. NumberSequenceKeypoint.new(0, 0);
  1779. NumberSequenceKeypoint.new(1, 4);
  1780. }
  1781. inf.Size = NumberSequence.new(numberKeypoints2)
  1782. inf.RotSpeed = NumberRange.new(999, 9999)
  1783. inf.Rotation = NumberRange.new(0, 0)
  1784. inf.Speed = NumberRange.new(30, 30)
  1785. inf.SpreadAngle = Vector2.new(360,360)
  1786. inf.Texture = "rbxassetid://7157487174"
  1787. inf.VelocityInheritance = 0
  1788. inf.ZOffset = 2
  1789. inf.Transparency = NumberSequence.new(0)
  1790. inf.Color = ColorSequence.new(Color3.fromRGB(80,245,245),Color3.fromRGB(80,245,245))
  1791. inf.Parent = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  1792. end
  1793. else
  1794. if game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("Agility") then
  1795. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("Agility"):Destroy()
  1796. end
  1797. end
  1798. end
  1799.  
  1800. local LocalPlayer = game:GetService'Players'.LocalPlayer
  1801. local originalstam = LocalPlayer.Character.Energy.Value
  1802. function infinitestam()
  1803. LocalPlayer.Character.Energy.Changed:connect(function()
  1804. if InfiniteEnergy then
  1805. LocalPlayer.Character.Energy.Value = originalstam
  1806. end
  1807. end)
  1808. end
  1809.  
  1810. spawn(function()
  1811. pcall(function()
  1812. while wait(.1) do
  1813. if InfiniteEnergy then
  1814. wait(0.3)
  1815. originalstam = LocalPlayer.Character.Energy.Value
  1816. infinitestam()
  1817. end
  1818. end
  1819. end)
  1820. end)
  1821.  
  1822. function NoDodgeCool()
  1823. if nododgecool then
  1824. for i,v in next, getgc() do
  1825. if game:GetService("Players").LocalPlayer.Character.Dodge then
  1826. if typeof(v) == "function" and getfenv(v).script == game:GetService("Players").LocalPlayer.Character.Dodge then
  1827. for i2,v2 in next, getupvalues(v) do
  1828. if tostring(v2) == "0.4" then
  1829. repeat wait(.1)
  1830. setupvalue(v,i2,0)
  1831. until not nododgecool
  1832. end
  1833. end
  1834. end
  1835. end
  1836. end
  1837. end
  1838. end
  1839.  
  1840. function fly()
  1841. local mouse=game:GetService("Players").LocalPlayer:GetMouse''
  1842. localplayer=game:GetService("Players").LocalPlayer
  1843. game:GetService("Players").LocalPlayer.Character:WaitForChild("HumanoidRootPart")
  1844. local torso = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  1845. local speedSET=25
  1846. local keys={a=false,d=false,w=false,s=false}
  1847. local e1
  1848. local e2
  1849. local function start()
  1850. local pos = Instance.new("BodyPosition",torso)
  1851. local gyro = Instance.new("BodyGyro",torso)
  1852. pos.Name="EPIXPOS"
  1853. pos.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  1854. pos.position = torso.Position
  1855. gyro.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  1856. gyro.CFrame = torso.CFrame
  1857. repeat
  1858. wait()
  1859. localplayer.Character.Humanoid.PlatformStand=true
  1860. local new=gyro.CFrame - gyro.CFrame.p + pos.position
  1861. if not keys.w and not keys.s and not keys.a and not keys.d then
  1862. speed=1
  1863. end
  1864. if keys.w then
  1865. new = new + workspace.CurrentCamera.CoordinateFrame.lookVector * speed
  1866. speed=speed+speedSET
  1867. end
  1868. if keys.s then
  1869. new = new - workspace.CurrentCamera.CoordinateFrame.lookVector * speed
  1870. speed=speed+speedSET
  1871. end
  1872. if keys.d then
  1873. new = new * CFrame.new(speed,0,0)
  1874. speed=speed+speedSET
  1875. end
  1876. if keys.a then
  1877. new = new * CFrame.new(-speed,0,0)
  1878. speed=speed+speedSET
  1879. end
  1880. if speed>speedSET then
  1881. speed=speedSET
  1882. end
  1883. pos.position=new.p
  1884. if keys.w then
  1885. gyro.CFrame = workspace.CurrentCamera.CoordinateFrame*CFrame.Angles(-math.rad(speed*15),0,0)
  1886. elseif keys.s then
  1887. gyro.CFrame = workspace.CurrentCamera.CoordinateFrame*CFrame.Angles(math.rad(speed*15),0,0)
  1888. else
  1889. gyro.CFrame = workspace.CurrentCamera.CoordinateFrame
  1890. end
  1891. until not Fly
  1892. if gyro then
  1893. gyro:Destroy()
  1894. end
  1895. if pos then
  1896. pos:Destroy()
  1897. end
  1898. flying=false
  1899. localplayer.Character.Humanoid.PlatformStand=false
  1900. speed=0
  1901. end
  1902. e1=mouse.KeyDown:connect(function(key)
  1903. if not torso or not torso.Parent then
  1904. flying=false e1:disconnect() e2:disconnect() return
  1905. end
  1906. if key=="w" then
  1907. keys.w=true
  1908. elseif key=="s" then
  1909. keys.s=true
  1910. elseif key=="a" then
  1911. keys.a=true
  1912. elseif key=="d" then
  1913. keys.d=true
  1914. end
  1915. end)
  1916. e2=mouse.KeyUp:connect(function(key)
  1917. if key=="w" then
  1918. keys.w=false
  1919. elseif key=="s" then
  1920. keys.s=false
  1921. elseif key=="a" then
  1922. keys.a=false
  1923. elseif key=="d" then
  1924. keys.d=false
  1925. end
  1926. end)
  1927. start()
  1928. end
  1929.  
  1930. function Click()
  1931. game:GetService'VirtualUser':CaptureController()
  1932. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  1933. end
  1934.  
  1935. function AutoHaki()
  1936. if not game:GetService("Players").LocalPlayer.Character:FindFirstChild("HasBuso") then
  1937. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Buso")
  1938. end
  1939. end
  1940.  
  1941. function UnEquipWeapon(Weapon)
  1942. if game.Players.LocalPlayer.Character:FindFirstChild(Weapon) then
  1943. _G.NotAutoEquip = true
  1944. wait(.5)
  1945. game.Players.LocalPlayer.Character:FindFirstChild(Weapon).Parent = game.Players.LocalPlayer.Backpack
  1946. wait(.1)
  1947. _G.NotAutoEquip = false
  1948. end
  1949. end
  1950.  
  1951. function EquipWeapon(ToolSe)
  1952. if not _G.NotAutoEquip then
  1953. if game.Players.LocalPlayer.Backpack:FindFirstChild(ToolSe) then
  1954. Tool = game.Players.LocalPlayer.Backpack:FindFirstChild(ToolSe)
  1955. wait(.1)
  1956. game.Players.LocalPlayer.Character.Humanoid:EquipTool(Tool)
  1957. end
  1958. end
  1959. end
  1960.  
  1961. function topos(Pos)
  1962. Distance = (Pos.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude
  1963. if game.Players.LocalPlayer.Character.Humanoid.Sit == true then game.Players.LocalPlayer.Character.Humanoid.Sit = false end
  1964. pcall(function() tween = game:GetService("TweenService"):Create(game.Players.LocalPlayer.Character.HumanoidRootPart,TweenInfo.new(Distance/210, Enum.EasingStyle.Linear),{CFrame = Pos}) end)
  1965. tween:Play()
  1966. if Distance <= 250 then
  1967. tween:Cancel()
  1968. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = Pos
  1969. end
  1970. if _G.StopTween == true then
  1971. tween:Cancel()
  1972. _G.Clip = false
  1973. end
  1974. end
  1975.  
  1976. function GetDistance(target)
  1977. return math.floor((target.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude)
  1978. end
  1979.  
  1980. function TP(Pos)
  1981. Distance = (Pos.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude
  1982. if Distance < 250 then
  1983. Speed = 600
  1984. elseif Distance >= 1000 then
  1985. Speed = 200
  1986. end
  1987. game:GetService("TweenService"):Create(
  1988. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart,
  1989. TweenInfo.new(Distance/Speed, Enum.EasingStyle.Linear),
  1990. {CFrame = Pos}
  1991. ):Play()
  1992. _G.Clip = true
  1993. wait(Distance/Speed)
  1994. _G.Clip = false
  1995. end
  1996.  
  1997. spawn(function()
  1998. pcall(function()
  1999. while wait() do
  2000. if _G.AutoAdvanceDungeon or _G.AutoDoughtBoss or _G.Auto_DungeonMobAura or _G.AutoFarmChest or _G.AutoFarmBossHallow or _G.AutoFarmSwanGlasses or _G.AutoLongSword or _G.AutoBlackSpikeycoat or _G.AutoElectricClaw or _G.AutoFarmGunMastery or _G.AutoHolyTorch or _G.AutoLawRaid or _G.AutoFarmBoss or _G.AutoTwinHooks or _G.AutoOpenSwanDoor or _G.AutoDragon_Trident or _G.AutoSaber or _G.AutoFarmFruitMastery or _G.AutoFarmGunMastery or _G.TeleportIsland or _G.Auto_EvoRace or _G.AutoFarmAllMsBypassType or _G.AutoObservationv2 or _G.AutoMusketeerHat or _G.AutoEctoplasm or _G.AutoRengoku or _G.Auto_Rainbow_Haki or _G.AutoObservation or _G.AutoDarkDagger or _G.Safe_Mode or _G.MasteryFruit or _G.AutoBudySword or _G.AutoBounty or _G.AutoAllBoss or _G.Auto_Bounty or _G.AutoSharkman or _G.Auto_Mastery_Fruit or _G.Auto_Mastery_Gun or _G.Auto_Dungeon or _G.Auto_Cavender or _G.Auto_Pole or _G.Auto_Kill_Ply or _G.Auto_Factory or _G.AutoSecondSea or _G.TeleportPly or _G.AutoBartilo or _G.Auto_DarkBoss or _G.GrabChest or _G.AutoFarmBounty or _G.Holy_Torch or _G.AutoFarm or _G.Clip or FarmBoss or _G.AutoElitehunter or _G.AutoThirdSea or _G.Auto_Bone == true then
  2001. if not game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("BodyClip") then
  2002. local Noclip = Instance.new("BodyVelocity")
  2003. Noclip.Name = "BodyClip"
  2004. Noclip.Parent = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2005. Noclip.MaxForce = Vector3.new(100000,100000,100000)
  2006. Noclip.Velocity = Vector3.new(0,0,0)
  2007. end
  2008. end
  2009. end
  2010. end)
  2011. end)
  2012.  
  2013. spawn(function()
  2014. pcall(function()
  2015. game:GetService("RunService").Stepped:Connect(function()
  2016. if _G.AutoAdvanceDungeon or _G.AutoDoughtBoss or _G.Auto_DungeonMobAura or _G.AutoFarmChest or _G.AutoFarmBossHallow or _G.AutoFarmSwanGlasses or _G.AutoLongSword or _G.AutoBlackSpikeycoat or _G.AutoElectricClaw or _G.AutoFarmGunMastery or _G.AutoHolyTorch or _G.AutoLawRaid or _G.AutoFarmBoss or _G.AutoTwinHooks or _G.AutoOpenSwanDoor or _G.AutoDragon_Trident or _G.AutoSaber or _G.NOCLIP or _G.AutoFarmFruitMastery or _G.AutoFarmGunMastery or _G.TeleportIsland or _G.Auto_EvoRace or _G.AutoFarmAllMsBypassType or _G.AutoObservationv2 or _G.AutoMusketeerHat or _G.AutoEctoplasm or _G.AutoRengoku or _G.Auto_Rainbow_Haki or _G.AutoObservation or _G.AutoDarkDagger or _G.Safe_Mode or _G.MasteryFruit or _G.AutoBudySword or _G.AutoBounty or _G.AutoAllBoss or _G.Auto_Bounty or _G.AutoSharkman or _G.Auto_Mastery_Fruit or _G.Auto_Mastery_Gun or _G.Auto_Dungeon or _G.Auto_Cavender or _G.Auto_Pole or _G.Auto_Kill_Ply or _G.Auto_Factory or _G.AutoSecondSea or _G.TeleportPly or _G.AutoBartilo or _G.Auto_DarkBoss or _G.GrabChest or _G.AutoFarmBounty or _G.Holy_Torch or _G.AutoFarm or _G.Clip or _G.AutoElitehunter or _G.AutoThirdSea or _G.Auto_Bone == true then
  2017. for _, v in pairs(game:GetService("Players").LocalPlayer.Character:GetDescendants()) do
  2018. if v:IsA("BasePart") then
  2019. v.CanCollide = false
  2020. end
  2021. end
  2022. end
  2023. end)
  2024. end)
  2025. end)
  2026.  
  2027. spawn(function()
  2028. while wait() do
  2029. if _G.AutoDoughtBoss or _G.Auto_DungeonMobAura or _G.AutoFarmChest or _G.AutoFarmBossHallow or _G.AutoFarmSwanGlasses or _G.AutoLongSword or _G.AutoBlackSpikeycoat or _G.AutoElectricClaw or _G.AutoFarmGunMastery or _G.AutoHolyTorch or _G.AutoLawRaid or _G.AutoFarmBoss or _G.AutoTwinHooks or _G.AutoOpenSwanDoor or _G.AutoDragon_Trident or _G.AutoSaber or _G.NOCLIP or _G.AutoFarmFruitMastery or _G.AutoFarmGunMastery or _G.TeleportIsland or _G.Auto_EvoRace or _G.AutoFarmAllMsBypassType or _G.AutoObservationv2 or _G.AutoMusketeerHat or _G.AutoEctoplasm or _G.AutoRengoku or _G.Auto_Rainbow_Haki or _G.AutoObservation or _G.AutoDarkDagger or _G.Safe_Mode or _G.MasteryFruit or _G.AutoBudySword or _G.AutoAllBoss or _G.Auto_Bounty or _G.AutoSharkman or _G.Auto_Mastery_Fruit or _G.Auto_Mastery_Gun or _G.Auto_Dungeon or _G.Auto_Cavender or _G.Auto_Pole or _G.Auto_Kill_Ply or _G.Auto_Factory or _G.AutoSecondSea or _G.TeleportPly or _G.AutoBartilo or _G.Auto_DarkBoss or _G.AutoFarm or _G.Clip or _G.AutoElitehunter or _G.AutoThirdSea or _G.Auto_Bone == true then
  2030. pcall(function()
  2031. game:GetService("ReplicatedStorage").Remotes.CommE:FireServer("Ken",true)
  2032. end)
  2033. end
  2034. end
  2035. end)
  2036.  
  2037. function StopTween(target)
  2038. if not target then
  2039. _G.StopTween = true
  2040. wait()
  2041. topos(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame)
  2042. wait()
  2043. if game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("BodyClip") then
  2044. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("BodyClip"):Destroy()
  2045. end
  2046. _G.StopTween = false
  2047. _G.Clip = false
  2048. end
  2049. end
  2050.  
  2051. spawn(function()
  2052. pcall(function()
  2053. while wait() do
  2054. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  2055. if v:IsA("Tool") then
  2056. if v:FindFirstChild("RemoteFunctionShoot") then
  2057. SelectWeaponGun = v.Name
  2058. end
  2059. end
  2060. end
  2061. end
  2062. end)
  2063. end)
  2064.  
  2065. game:GetService("Players").LocalPlayer.Idled:connect(function()
  2066. game:GetService("VirtualUser"):Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  2067. wait(1)
  2068. game:GetService("VirtualUser"):Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  2069. end)
  2070.  
  2071. local ScreenGui = Instance.new("ScreenGui")
  2072. local Toggle = Instance.new("TextButton")
  2073.  
  2074. ScreenGui.Name = "ScreenGui"
  2075. ScreenGui.Parent = game.CoreGui
  2076.  
  2077. Toggle.Name = "Toggle"
  2078. Toggle.Parent = ScreenGui
  2079. Toggle.BackgroundColor3 = Color3.fromRGB(15, 15, 15)
  2080. Toggle.Position = UDim2.new(0.120833337, 0, 0.0952890813, 0)
  2081. Toggle.Size = UDim2.new(0, 50, 0, 50)
  2082. Toggle.Font = Enum.Font.Code
  2083. Toggle.Text = "R"
  2084. Toggle.TextColor3 = Color3.fromRGB(255, 0, 0)
  2085. Toggle.TextScaled = true
  2086. Toggle.MouseButton1Down:connect(function()
  2087. game:GetService("VirtualInputManager"):SendKeyEvent(true,305,false,game)
  2088. game:GetService("VirtualInputManager"):SendKeyEvent(false,305,false,game)
  2089. end)
  2090. --------------------------------------------------------------------
  2091. local RenUi = library:AddWindow("Ren Hub | BF",Enum.KeyCode.RightControl)
  2092. --------------------------------------------------------------------
  2093. local Main = RenUi:AddTab("Auto Farm","6026568198")
  2094. local Combat = RenUi:AddTab("Combat","7251993295")
  2095. local Stats = RenUi:AddTab("Stats","7040410130")
  2096. local Teleport = RenUi:AddTab("Teleport","6035190846")
  2097. local Dungeon = RenUi:AddTab("Dungeon","7044284832")
  2098. local DevilFruit = RenUi:AddTab("Devil Fruit","7044233235")
  2099. local Shop = RenUi:AddTab("Shop","6031265976")
  2100. local Misc = RenUi:AddTab("Misc","6034509993")
  2101. --------------------------------------------------------------------
  2102. Main:AddSeperator("Settings")
  2103.  
  2104. Time = Main:AddLabel("Server Time")
  2105.  
  2106. function UpdateTime()
  2107. local GameTime = math.floor(workspace.DistributedGameTime+0.5)
  2108. local Hour = math.floor(GameTime/(60^2))%24
  2109. local Minute = math.floor(GameTime/(60^1))%60
  2110. local Second = math.floor(GameTime/(60^0))%60
  2111. Time:Set("Hr(s) : "..Hour.." Min(s) : "..Minute.." Sec(s) : "..Second)
  2112. end
  2113.  
  2114. spawn(function()
  2115. while task.wait() do
  2116. pcall(function()
  2117. UpdateTime()
  2118. end)
  2119. end
  2120. end)
  2121.  
  2122. Main:AddToggle("Auto Set Spawn Points",true,function(value)
  2123. _G.AutoSetSpawn = value
  2124. end)
  2125.  
  2126. spawn(function()
  2127. pcall(function()
  2128. while wait() do
  2129. if _G.AutoSetSpawn then
  2130. if game:GetService("Players").LocalPlayer.Character.Humanoid.Health > 0 then
  2131. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetSpawnPoint")
  2132. end
  2133. end
  2134. end
  2135. end)
  2136. end)
  2137.  
  2138. Main:AddToggle("Bring Mob",true,function(value)
  2139. _G.BringMonster = value
  2140. end)
  2141.  
  2142. WeaponList = {}
  2143.  
  2144. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  2145. if v:IsA("Tool") then
  2146. table.insert(WeaponList ,v.Name)
  2147. end
  2148. end
  2149.  
  2150. local SelectWeapona = Main:AddDropdown("Select Weapon",WeaponList,function(value)
  2151. _G.SelectWeapon = value
  2152. end)
  2153.  
  2154. Main:AddButton("Refresh Weapon",function()
  2155. SelectWeapona:Clear()
  2156. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  2157. SelectWeapona:Add(v.Name)
  2158. end
  2159. end)
  2160.  
  2161. Main:AddSeperator("Main")
  2162.  
  2163. local AutoFarm = Main:AddToggle("Auto Farm Level",_G.AutoFarm,function(value)
  2164. _G.AutoFarm = value
  2165. StopTween(_G.AutoFarm)
  2166. end)
  2167.  
  2168. spawn(function()
  2169. while wait() do
  2170. if _G.AutoFarm then
  2171. pcall(function()
  2172. local QuestTitle = game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text
  2173. if not string.find(QuestTitle, NameMon) then
  2174. StartMagnet = false
  2175. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
  2176. end
  2177. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false then
  2178. StartMagnet = false
  2179. CheckQuest()
  2180. repeat wait() topos(CFrameQuest) until (CFrameQuest.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 3 or not _G.AutoFarm
  2181. if (CFrameQuest.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 3 then
  2182. wait(1.2)
  2183. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StartQuest",NameQuest,LevelQuest)
  2184. wait(0.5)
  2185. end
  2186. elseif game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == true then
  2187. CheckQuest()
  2188. if game:GetService("Workspace").Enemies:FindFirstChild(Mon) then
  2189. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  2190. if v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 then
  2191. if v.Name == Mon then
  2192. if string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, NameMon) then
  2193. repeat task.wait()
  2194. EquipWeapon(_G.SelectWeapon)
  2195. AutoHaki()
  2196. PosMon = v.HumanoidRootPart.CFrame
  2197. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  2198. v.HumanoidRootPart.CanCollide = false
  2199. v.Humanoid.WalkSpeed = 0
  2200. v.Head.CanCollide = false
  2201. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  2202. StartMagnet = true
  2203. game:GetService'VirtualUser':CaptureController()
  2204. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  2205. until not _G.AutoFarm or v.Humanoid.Health <= 0 or not v.Parent or game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false
  2206. else
  2207. StartMagnet = false
  2208. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
  2209. end
  2210. end
  2211. end
  2212. end
  2213. else
  2214. StartMagnet = false
  2215. if game:GetService("ReplicatedStorage"):FindFirstChild(Mon) then
  2216. topos(game:GetService("ReplicatedStorage"):FindFirstChild(Mon).HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  2217. else
  2218. if (CFrameQuest.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 15 then
  2219. if PosMon ~= nil then
  2220. topos(PosMon * CFrame.new(5,10,7))
  2221. else
  2222. if OldPos ~= nil then
  2223. topos(OldPos.Position)
  2224. end
  2225. end
  2226. end
  2227. end
  2228. end
  2229. end
  2230. end)
  2231. end
  2232. end
  2233. end)
  2234.  
  2235. if World1 then
  2236. Main:AddToggle("Auto Second Sea",_G.AutoSecondSea,function(value)
  2237. _G.AutoSecondSea = value
  2238. StopTween(_G.AutoSecondSea)
  2239. end)
  2240.  
  2241. spawn(function()
  2242. while wait() do
  2243. if _G.AutoSecondSea then
  2244. pcall(function()
  2245. local MyLevel = game:GetService("Players").LocalPlayer.Data.Level.Value
  2246. if MyLevel >= 700 and World1 then
  2247. if game:GetService("Workspace").Map.Ice.Door.CanCollide == false and game:GetService("Workspace").Map.Ice.Door.Transparency == 1 then
  2248. local CFrame1 = CFrame.new(4849.29883, 5.65138149, 719.611877)
  2249. repeat topos(CFrame1) wait() until (CFrame1.Position-game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 3 or _G.AutoSecondSea == false
  2250. wait(1.1)
  2251. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("DressrosaQuestProgress","Detective")
  2252. wait(0.5)
  2253. EquipWeapon("Key")
  2254. repeat topos(CFrame.new(1347.7124, 37.3751602, -1325.6488)) wait() until (Vector3.new(1347.7124, 37.3751602, -1325.6488)-game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 3 or _G.AutoSecondSea == false
  2255. wait(0.5)
  2256. else
  2257. if game:GetService("Workspace").Map.Ice.Door.CanCollide == false and game:GetService("Workspace").Map.Ice.Door.Transparency == 1 then
  2258. if game:GetService("Workspace").Enemies:FindFirstChild("Ice Admiral [Lv. 700] [Boss]") then
  2259. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  2260. if v.Name == "Ice Admiral [Lv. 700] [Boss]" then
  2261. if not v.Humanoid.Health <= 0 then
  2262. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  2263. OldCFrameSecond = v.HumanoidRootPart.CFrame
  2264. repeat task.wait()
  2265. AutoHaki()
  2266. EquipWeapon(_G.SelectWeapon)
  2267. v.HumanoidRootPart.CanCollide = false
  2268. v.Humanoid.WalkSpeed = 0
  2269. v.Head.CanCollide = false
  2270. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  2271. v.HumanoidRootPart.CFrame = OldCFrameSecond
  2272. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  2273. game:GetService("VirtualUser"):CaptureController()
  2274. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  2275. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  2276. until not _G.AutoSecondSea or not v.Parent or v.Humanoid.Health <= 0
  2277. end
  2278. else
  2279. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelDressrosa")
  2280. end
  2281. end
  2282. end
  2283. else
  2284. if game:GetService("ReplicatedStorage"):FindFirstChild("Ice Admiral [Lv. 700] [Boss]") then
  2285. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Ice Admiral [Lv. 700] [Boss]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  2286. end
  2287. end
  2288. end
  2289. end
  2290. end
  2291. end)
  2292. end
  2293. end
  2294. end)
  2295. end
  2296.  
  2297. if World2 then
  2298. Main:AddToggle("Auto Third Sea",_G.AutoThirdSea,function(value)
  2299. _G.AutoThirdSea = value
  2300. StopTween(_G.AutoThirdSea)
  2301. end)
  2302.  
  2303. spawn(function()
  2304. while wait() do
  2305. if _G.AutoThirdSea then
  2306. pcall(function()
  2307. if game:GetService("Players").LocalPlayer.Data.Level.Value >= 1500 and World2 then
  2308. _G.AutoFarm = false
  2309. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ZQuestProgress","Check") == 0 then
  2310. topos(CFrame.new(-1926.3221435547, 12.819851875305, 1738.3092041016))
  2311. if (CFrame.new(-1926.3221435547, 12.819851875305, 1738.3092041016).Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 10 then
  2312. wait(1.5)
  2313. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ZQuestProgress","Begin")
  2314. end
  2315. wait(1.8)
  2316. if game:GetService("Workspace").Enemies:FindFirstChild("rip_indra [Lv. 1500] [Boss]") then
  2317. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  2318. if v.Name == "rip_indra [Lv. 1500] [Boss]" then
  2319. OldCFrameThird = v.HumanoidRootPart.CFrame
  2320. repeat task.wait()
  2321. AutoHaki()
  2322. EquipWeapon(_G.SelectWeapon)
  2323. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  2324. v.HumanoidRootPart.CFrame = OldCFrameThird
  2325. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  2326. v.HumanoidRootPart.CanCollide = false
  2327. v.Humanoid.WalkSpeed = 0
  2328. game:GetService'VirtualUser':CaptureController()
  2329. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  2330. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelZou")
  2331. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  2332. until _G.AutoThirdSea == false or v.Humanoid.Health <= 0 or not v.Parent
  2333. end
  2334. end
  2335. elseif not game:GetService("Workspace").Enemies:FindFirstChild("rip_indra [Lv. 1500] [Boss]") and (CFrame.new(-26880.93359375, 22.848554611206, 473.18951416016).Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 1000 then
  2336. topos(CFrame.new(-26880.93359375, 22.848554611206, 473.18951416016))
  2337. end
  2338. end
  2339. end
  2340. end)
  2341. end
  2342. end
  2343. end)
  2344. end
  2345.  
  2346. if World2 then
  2347. Main:AddToggle("Auto Farm Factory",_G.AutoFactory,function(value)
  2348. _G.AutoFactory = value
  2349. StopTween(_G.AutoFactory)
  2350. end)
  2351.  
  2352. spawn(function()
  2353. while wait() do
  2354. pcall(function()
  2355. if _G.AutoFactory then
  2356. if game:GetService("Workspace").Enemies:FindFirstChild("Core") then
  2357. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  2358. if v.Name == "Core" and v.Humanoid.Health > 0 then
  2359. repeat task.wait()
  2360. AutoHaki()
  2361. EquipWeapon(_G.SelectWeapon)
  2362. topos(CFrame.new(448.46756, 199.356781, -441.389252))
  2363. game:GetService("VirtualUser"):CaptureController()
  2364. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  2365. until v.Humanoid.Health <= 0 or _G.AutoFactory == false
  2366. end
  2367. end
  2368. else
  2369. topos(CFrame.new(448.46756, 199.356781, -441.389252))
  2370. end
  2371. end
  2372. end)
  2373. end
  2374. end)
  2375. elseif World3 then
  2376. Main:AddToggle("Auto Mystic Island",_G.AutoMysticIsland,function(value)
  2377. _G.AutoMysticIsland = value
  2378. end)
  2379.  
  2380. spawn(function()
  2381. while wait() do
  2382. if _G.AutoMysticIsland then
  2383. pcall(function()
  2384. if game:GetService("Workspace").Map:FindFirstChild("MysticIsland") then
  2385. topos(game:GetService("Workspace").Map:FindFirstChild("MysticIsland").HumanoidRootPart.CFrame * CFrame.new(0,500,-100))
  2386. end
  2387. end)
  2388. end
  2389. end
  2390. end)
  2391. end
  2392.  
  2393. Main:AddSeperator("Fighting Style")
  2394.  
  2395. Main:AddToggle("Auto Superhuman",_G.AutoSuperhuman,function(value)
  2396. _G.AutoSuperhuman = value
  2397. end)
  2398.  
  2399. spawn(function()
  2400. pcall(function()
  2401. while wait() do
  2402. if _G.AutoSuperhuman then
  2403. if game.Players.LocalPlayer.Backpack:FindFirstChild("Combat") or game.Players.LocalPlayer.Character:FindFirstChild("Combat") and game:GetService("Players")["LocalPlayer"].Data.Beli.Value >= 150000 then
  2404. UnEquipWeapon("Combat")
  2405. wait(.1)
  2406. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyBlackLeg")
  2407. end
  2408. if game.Players.LocalPlayer.Character:FindFirstChild("Superhuman") or game.Players.LocalPlayer.Backpack:FindFirstChild("Superhuman") then
  2409. _G.SelectWeapon = "Superhuman"
  2410. end
  2411. if game.Players.LocalPlayer.Backpack:FindFirstChild("Black Leg") or game.Players.LocalPlayer.Character:FindFirstChild("Black Leg") or game.Players.LocalPlayer.Backpack:FindFirstChild("Electro") or game.Players.LocalPlayer.Character:FindFirstChild("Electro") or game.Players.LocalPlayer.Backpack:FindFirstChild("Fishman Karate") or game.Players.LocalPlayer.Character:FindFirstChild("Fishman Karate") or game.Players.LocalPlayer.Backpack:FindFirstChild("Dragon Claw") or game.Players.LocalPlayer.Character:FindFirstChild("Dragon Claw") then
  2412. if game.Players.LocalPlayer.Backpack:FindFirstChild("Black Leg") and game.Players.LocalPlayer.Backpack:FindFirstChild("Black Leg").Level.Value <= 299 then
  2413. _G.SelectWeapon = "Black Leg"
  2414. end
  2415. if game.Players.LocalPlayer.Backpack:FindFirstChild("Electro") and game.Players.LocalPlayer.Backpack:FindFirstChild("Electro").Level.Value <= 299 then
  2416. _G.SelectWeapon = "Electro"
  2417. end
  2418. if game.Players.LocalPlayer.Backpack:FindFirstChild("Fishman Karate") and game.Players.LocalPlayer.Backpack:FindFirstChild("Fishman Karate").Level.Value <= 299 then
  2419. _G.SelectWeapon = "Fishman Karate"
  2420. end
  2421. if game.Players.LocalPlayer.Backpack:FindFirstChild("Dragon Claw") and game.Players.LocalPlayer.Backpack:FindFirstChild("Dragon Claw").Level.Value <= 299 then
  2422. _G.SelectWeapon = "Dragon Claw"
  2423. end
  2424. if game.Players.LocalPlayer.Backpack:FindFirstChild("Black Leg") and game.Players.LocalPlayer.Backpack:FindFirstChild("Black Leg").Level.Value >= 300 and game:GetService("Players")["LocalPlayer"].Data.Beli.Value >= 300000 then
  2425. UnEquipWeapon("Black Leg")
  2426. wait(.1)
  2427. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectro")
  2428. end
  2429. if game.Players.LocalPlayer.Character:FindFirstChild("Black Leg") and game.Players.LocalPlayer.Character:FindFirstChild("Black Leg").Level.Value >= 300 and game:GetService("Players")["LocalPlayer"].Data.Beli.Value >= 300000 then
  2430. UnEquipWeapon("Black Leg")
  2431. wait(.1)
  2432. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectro")
  2433. end
  2434. if game.Players.LocalPlayer.Backpack:FindFirstChild("Electro") and game.Players.LocalPlayer.Backpack:FindFirstChild("Electro").Level.Value >= 300 and game:GetService("Players")["LocalPlayer"].Data.Beli.Value >= 750000 then
  2435. UnEquipWeapon("Electro")
  2436. wait(.1)
  2437. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyFishmanKarate")
  2438. end
  2439. if game.Players.LocalPlayer.Character:FindFirstChild("Electro") and game.Players.LocalPlayer.Character:FindFirstChild("Electro").Level.Value >= 300 and game:GetService("Players")["LocalPlayer"].Data.Beli.Value >= 750000 then
  2440. UnEquipWeapon("Electro")
  2441. wait(.1)
  2442. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyFishmanKarate")
  2443. end
  2444. if game.Players.LocalPlayer.Backpack:FindFirstChild("Fishman Karate") and game.Players.LocalPlayer.Backpack:FindFirstChild("Fishman Karate").Level.Value >= 300 and game:GetService("Players")["Localplayer"].Data.Fragments.Value >= 1500 then
  2445. UnEquipWeapon("Fishman Karate")
  2446. wait(.1)
  2447. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","DragonClaw","1")
  2448. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","DragonClaw","2")
  2449. end
  2450. if game.Players.LocalPlayer.Character:FindFirstChild("Fishman Karate") and game.Players.LocalPlayer.Character:FindFirstChild("Fishman Karate").Level.Value >= 300 and game:GetService("Players")["Localplayer"].Data.Fragments.Value >= 1500 then
  2451. UnEquipWeapon("Fishman Karate")
  2452. wait(.1)
  2453. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","DragonClaw","1")
  2454. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","DragonClaw","2")
  2455. end
  2456. if game.Players.LocalPlayer.Backpack:FindFirstChild("Dragon Claw") and game.Players.LocalPlayer.Backpack:FindFirstChild("Dragon Claw").Level.Value >= 300 and game:GetService("Players")["LocalPlayer"].Data.Beli.Value >= 3000000 then
  2457. UnEquipWeapon("Dragon Claw")
  2458. wait(.1)
  2459. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySuperhuman")
  2460. end
  2461. if game.Players.LocalPlayer.Character:FindFirstChild("Dragon Claw") and game.Players.LocalPlayer.Character:FindFirstChild("Dragon Claw").Level.Value >= 300 and game:GetService("Players")["LocalPlayer"].Data.Beli.Value >= 3000000 then
  2462. UnEquipWeapon("Dragon Claw")
  2463. wait(.1)
  2464. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySuperhuman")
  2465. end
  2466. end
  2467. end
  2468. end
  2469. end)
  2470. end)
  2471.  
  2472. Main:AddToggle("Auto DeathStep",_G.AutoDeathStep,function(value)
  2473. _G.AutoDeathStep = value
  2474. end)
  2475.  
  2476. spawn(function()
  2477. while wait() do wait()
  2478. if _G.AutoDeathStep then
  2479. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Black Leg") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Black Leg") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Death Step") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Death Step") then
  2480. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Black Leg") and game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Black Leg").Level.Value >= 450 then
  2481. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDeathStep")
  2482. _G.SelectWeapon = "Death Step"
  2483. end
  2484. if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Black Leg") and game:GetService("Players").LocalPlayer.Character:FindFirstChild("Black Leg").Level.Value >= 450 then
  2485. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDeathStep")
  2486. _G.SelectWeapon = "Death Step"
  2487. end
  2488. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Black Leg") and game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Black Leg").Level.Value <= 449 then
  2489. _G.SelectWeapon = "Black Leg"
  2490. end
  2491. else
  2492. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyBlackLeg")
  2493. end
  2494. end
  2495. end
  2496. end)
  2497.  
  2498. Main:AddToggle("Auto Sharkman Karate",_G.AutoSharkman,function(value)
  2499. _G.AutoSharkman = value
  2500. end)
  2501.  
  2502. spawn(function()
  2503. pcall(function()
  2504. while wait() do
  2505. if _G.AutoSharkman then
  2506. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyFishmanKarate")
  2507. if string.find(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySharkmanKarate"), "keys") then
  2508. if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Water Key") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Water Key") then
  2509. topos(CFrame.new(-2604.6958, 239.432526, -10315.1982, 0.0425701365, 0, -0.999093413, 0, 1, 0, 0.999093413, 0, 0.0425701365))
  2510. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySharkmanKarate")
  2511. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Fishman Karate") and game:GetService("Players").LocalPlayer.Character:FindFirstChild("Fishman Karate").Level.Value >= 400 then
  2512. else
  2513. Ms = "Tide Keeper [Lv. 1475] [Boss]"
  2514. if game:GetService("Workspace").Enemies:FindFirstChild(Ms) then
  2515. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  2516. if v.Name == Ms then
  2517. OldCFrameShark = v.HumanoidRootPart.CFrame
  2518. repeat task.wait()
  2519. AutoHaki()
  2520. EquipWeapon(_G.SelectWeapon)
  2521. v.Head.CanCollide = false
  2522. v.Humanoid.WalkSpeed = 0
  2523. v.HumanoidRootPart.CanCollide = false
  2524. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  2525. v.HumanoidRootPart.CFrame = OldCFrameShark
  2526. topos(v.HumanoidRootPart.CFrame*CFrame.new(5,10,7))
  2527. game:GetService("VirtualUser"):CaptureController()
  2528. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 670))
  2529. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  2530. until not v.Parent or v.Humanoid.Health <= 0 or _G.AutoSharkman == false or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Water Key") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Water Key")
  2531. end
  2532. end
  2533. else
  2534. topos(CFrame.new(-3570.18652, 123.328949, -11555.9072, 0.465199202, -1.3857326e-08, 0.885206044, 4.0332897e-09, 1, 1.35347511e-08, -0.885206044, -2.72606271e-09, 0.465199202))
  2535. wait(3)
  2536. end
  2537. end
  2538. else
  2539. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySharkmanKarate")
  2540. end
  2541. end
  2542. end
  2543. end)
  2544. end)
  2545.  
  2546. Main:AddToggle("Auto Electric Claw",_G.AutoElectricClaw,function(value)
  2547. _G.AutoElectricClaw = value
  2548. StopTween(_G.AutoElectricClaw)
  2549. end)
  2550.  
  2551. spawn(function()
  2552. pcall(function()
  2553. while wait() do
  2554. if _G.AutoElectricClaw then
  2555. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Electro") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Electro") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Electric Claw") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Electric Claw") then
  2556. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Electro") and game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Electro").Level.Value >= 400 then
  2557. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw")
  2558. _G.SelectWeapon = "Electric Claw"
  2559. end
  2560. if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Electro") and game:GetService("Players").LocalPlayer.Character:FindFirstChild("Electro").Level.Value >= 400 then
  2561. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw")
  2562. _G.SelectWeapon = "Electric Claw"
  2563. end
  2564. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Electro") and game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Electro").Level.Value <= 399 then
  2565. _G.SelectWeapon = "Electro"
  2566. end
  2567. else
  2568. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectro")
  2569. end
  2570. end
  2571. if _G.AutoElectricClaw then
  2572. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Electro") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Electro") then
  2573. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Electro") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Electro") and game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Electro").Level.Value >= 400 or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Electro").Level.Value >= 400 then
  2574. if _G.AutoFarm == false then
  2575. repeat task.wait()
  2576. topos(CFrame.new(-10371.4717, 330.764496, -10131.4199))
  2577. until not _G.AutoElectricClaw or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position - CFrame.new(-10371.4717, 330.764496, -10131.4199).Position).Magnitude <= 10
  2578. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw","Start")
  2579. wait(2)
  2580. repeat task.wait()
  2581. topos(CFrame.new(-12550.532226563, 336.22631835938, -7510.4233398438))
  2582. until not _G.AutoElectricClaw or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position - CFrame.new(-12550.532226563, 336.22631835938, -7510.4233398438).Position).Magnitude <= 10
  2583. wait(1)
  2584. repeat task.wait()
  2585. topos(CFrame.new(-10371.4717, 330.764496, -10131.4199))
  2586. until not _G.AutoElectricClaw or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position - CFrame.new(-10371.4717, 330.764496, -10131.4199).Position).Magnitude <= 10
  2587. wait(1)
  2588. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw")
  2589. elseif _G.AutoFarm == true then
  2590. _G.AutoFarm = false
  2591. wait(1)
  2592. repeat task.wait()
  2593. topos(CFrame.new(-10371.4717, 330.764496, -10131.4199))
  2594. until not _G.AutoElectricClaw or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position - CFrame.new(-10371.4717, 330.764496, -10131.4199).Position).Magnitude <= 10
  2595. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw","Start")
  2596. wait(2)
  2597. repeat task.wait()
  2598. topos(CFrame.new(-12550.532226563, 336.22631835938, -7510.4233398438))
  2599. until not _G.AutoElectricClaw or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position - CFrame.new(-12550.532226563, 336.22631835938, -7510.4233398438).Position).Magnitude <= 10
  2600. wait(1)
  2601. repeat task.wait()
  2602. topos(CFrame.new(-10371.4717, 330.764496, -10131.4199))
  2603. until not _G.AutoElectricClaw or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position - CFrame.new(-10371.4717, 330.764496, -10131.4199).Position).Magnitude <= 10
  2604. wait(1)
  2605. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw")
  2606. _G.SelectWeapon = "Electric Claw"
  2607. wait(.1)
  2608. _G.AutoFarm = true
  2609. end
  2610. end
  2611. end
  2612. end
  2613. end
  2614. end)
  2615. end)
  2616.  
  2617. Main:AddToggle("Auto Dragon Talon",_G.AutoDragonTalon,function(value)
  2618. _G.AutoDragonTalon = value
  2619. end)
  2620.  
  2621. spawn(function()
  2622. while wait() do
  2623. if _G.AutoDragonTalon then
  2624. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Dragon Claw") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Dragon Claw") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Dragon Talon") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Dragon Talon") then
  2625. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Dragon Claw") and game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Dragon Claw").Level.Value >= 400 then
  2626. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDragonTalon")
  2627. _G.SelectWeapon = "Dragon Talon"
  2628. end
  2629. if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Dragon Claw") and game:GetService("Players").LocalPlayer.Character:FindFirstChild("Dragon Claw").Level.Value >= 400 then
  2630. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDragonTalon")
  2631. _G.SelectWeapon = "Dragon Talon"
  2632. end
  2633. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Dragon Claw") and game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Dragon Claw").Level.Value <= 399 then
  2634. _G.SelectWeapon = "Dragon Claw"
  2635. end
  2636. else
  2637. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","DragonClaw","2")
  2638. end
  2639. end
  2640. end
  2641. end)
  2642.  
  2643. Main:AddSeperator("Mastery")
  2644.  
  2645. Main:AddToggle("Auto Farm BF Mastery",_G.AutoFarmFruitMastery,function(value)
  2646. _G.AutoFarmFruitMastery = value
  2647. StopTween(_G.AutoFarmFruitMastery)
  2648. if _G.AutoFarmFruitMastery == false then
  2649. UseSkill = false
  2650. end
  2651. end)
  2652.  
  2653. spawn(function()
  2654. while wait() do
  2655. if _G.AutoFarmFruitMastery then
  2656. pcall(function()
  2657. local QuestTitle = game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text
  2658. if not string.find(QuestTitle, NameMon) then
  2659. Magnet = false
  2660. UseSkill = false
  2661. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
  2662. end
  2663. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false then
  2664. StartMasteryFruitMagnet = false
  2665. UseSkill = false
  2666. CheckQuest()
  2667. repeat wait()
  2668. topos(CFrameQuest)
  2669. until (CFrameQuest.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 3 or not _G.AutoFarmFruitMastery
  2670. if (CFrameQuest.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 3 then
  2671. wait(1.2)
  2672. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StartQuest",NameQuest,LevelQuest)
  2673. wait(0.5)
  2674. end
  2675. elseif game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == true then
  2676. CheckQuest()
  2677. if game:GetService("Workspace").Enemies:FindFirstChild(Mon) then
  2678. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  2679. if v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 then
  2680. if v.Name == Mon then
  2681. if string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, NameMon) then
  2682. HealthMs = v.Humanoid.MaxHealth * _G.Kill_At/100
  2683. repeat task.wait()
  2684. if v.Humanoid.Health <= HealthMs then
  2685. AutoHaki()
  2686. EquipWeapon(game:GetService("Players").LocalPlayer.Data.DevilFruit.Value)
  2687. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  2688. v.HumanoidRootPart.CanCollide = false
  2689. PosMonMasteryFruit = v.HumanoidRootPart.CFrame
  2690. v.Humanoid.WalkSpeed = 0
  2691. v.Head.CanCollide = false
  2692. UseSkill = true
  2693. else
  2694. UseSkill = false
  2695. AutoHaki()
  2696. EquipWeapon(_G.SelectWeapon)
  2697. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  2698. v.HumanoidRootPart.CanCollide = false
  2699. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  2700. PosMonMasteryFruit = v.HumanoidRootPart.CFrame
  2701. v.Humanoid.WalkSpeed = 0
  2702. v.Head.CanCollide = false
  2703. end
  2704. StartMasteryFruitMagnet = true
  2705. game:GetService'VirtualUser':CaptureController()
  2706. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  2707. until not _G.AutoFarmFruitMastery or v.Humanoid.Health <= 0 or not v.Parent or game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false
  2708. else
  2709. UseSkill = false
  2710. StartMasteryFruitMagnet = false
  2711. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
  2712. end
  2713. end
  2714. end
  2715. end
  2716. else
  2717. StartMasteryFruitMagnet = false
  2718. UseSkill = false
  2719. local Mob = game:GetService("ReplicatedStorage"):FindFirstChild(Mon)
  2720. if Mob then
  2721. topos(Mob.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  2722. else
  2723. if game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame.Y <= 1 then
  2724. game:GetService("Players").LocalPlayer.Character.Humanoid.Jump = true
  2725. task.wait()
  2726. game:GetService("Players").LocalPlayer.Character.Humanoid.Jump = false
  2727. end
  2728. end
  2729. end
  2730. end
  2731. end)
  2732. end
  2733. end
  2734. end)
  2735.  
  2736. spawn(function()
  2737. while wait() do
  2738. if UseSkill then
  2739. pcall(function()
  2740. CheckQuest()
  2741. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  2742. if game:GetService("Players").LocalPlayer.Character:FindFirstChild(game:GetService("Players").LocalPlayer.Data.DevilFruit.Value) then
  2743. MasBF = game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Data.DevilFruit.Value].Level.Value
  2744. elseif game:GetService("Players").LocalPlayer.Backpack:FindFirstChild(game:GetService("Players").LocalPlayer.Data.DevilFruit.Value) then
  2745. MasBF = game:GetService("Players").LocalPlayer.Backpack[game:GetService("Players").LocalPlayer.Data.DevilFruit.Value].Level.Value
  2746. end
  2747. if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Dragon-Dragon") then
  2748. if _G.SkillZ then
  2749. local args = {
  2750. [1] = PosMonMasteryFruit.Position
  2751. }
  2752. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2753. game:GetService("VirtualInputManager"):SendKeyEvent(true,"Z",false,game)
  2754. game:GetService("VirtualInputManager"):SendKeyEvent(false,"Z",false,game)
  2755. end
  2756. if _G.SkillX then
  2757. local args = {
  2758. [1] = PosMonMasteryFruit.Position
  2759. }
  2760. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2761. game:GetService("VirtualInputManager"):SendKeyEvent(true,"X",false,game)
  2762. game:GetService("VirtualInputManager"):SendKeyEvent(false,"X",false,game)
  2763. end
  2764. if _G.SkillC then
  2765. local args = {
  2766. [1] = PosMonMasteryFruit.Position
  2767. }
  2768. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2769. game:GetService("VirtualInputManager"):SendKeyEvent(true,"C",false,game)
  2770. wait(2)
  2771. game:GetService("VirtualInputManager"):SendKeyEvent(false,"C",false,game)
  2772. end
  2773. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Venom-Venom") then
  2774. if _G.SkillZ then
  2775. local args = {
  2776. [1] = PosMonMasteryFruit.Position
  2777. }
  2778. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2779. game:GetService("VirtualInputManager"):SendKeyEvent(true,"Z",false,game)
  2780. game:GetService("VirtualInputManager"):SendKeyEvent(false,"Z",false,game)
  2781. end
  2782. if _G.SkillX then
  2783. local args = {
  2784. [1] = PosMonMasteryFruit.Position
  2785. }
  2786. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2787. game:GetService("VirtualInputManager"):SendKeyEvent(true,"X",false,game)
  2788. game:GetService("VirtualInputManager"):SendKeyEvent(false,"X",false,game)
  2789. end
  2790. if _G.SkillC then
  2791. local args = {
  2792. [1] = PosMonMasteryFruit.Position
  2793. }
  2794. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2795. game:GetService("VirtualInputManager"):SendKeyEvent(true,"C",false,game)
  2796. wait(2)
  2797. game:GetService("VirtualInputManager"):SendKeyEvent(false,"C",false,game)
  2798. end
  2799. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Human-Human: Buddha") then
  2800. if _G.SkillZ and game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Size == Vector3.new(2, 2.0199999809265, 1) then
  2801. local args = {
  2802. [1] = PosMonMasteryFruit.Position
  2803. }
  2804. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2805. game:GetService("VirtualInputManager"):SendKeyEvent(true,"Z",false,game)
  2806. game:GetService("VirtualInputManager"):SendKeyEvent(false,"Z",false,game)
  2807. end
  2808. if _G.SkillX then
  2809. local args = {
  2810. [1] = PosMonMasteryFruit.Position
  2811. }
  2812. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2813. game:GetService("VirtualInputManager"):SendKeyEvent(true,"X",false,game)
  2814. game:GetService("VirtualInputManager"):SendKeyEvent(false,"X",false,game)
  2815. end
  2816. if _G.SkillC then
  2817. local args = {
  2818. [1] = PosMonMasteryFruit.Position
  2819. }
  2820. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2821. game:GetService("VirtualInputManager"):SendKeyEvent(true,"C",false,game)
  2822. game:GetService("VirtualInputManager"):SendKeyEvent(false,"C",false,game)
  2823. end
  2824. if _G.SkillV then
  2825. local args = {
  2826. [1] = PosMonMasteryFruit.Position
  2827. }
  2828. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2829. game:GetService("VirtualInputManager"):SendKeyEvent(true,"V",false,game)
  2830. game:GetService("VirtualInputManager"):SendKeyEvent(false,"V",false,game)
  2831. end
  2832. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild(game:GetService("Players").LocalPlayer.Data.DevilFruit.Value) then
  2833. if _G.SkillZ then
  2834. local args = {
  2835. [1] = PosMonMasteryFruit.Position
  2836. }
  2837. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2838. game:GetService("VirtualInputManager"):SendKeyEvent(true,"Z",false,game)
  2839. game:GetService("VirtualInputManager"):SendKeyEvent(false,"Z",false,game)
  2840. end
  2841. if _G.SkillX then
  2842. local args = {
  2843. [1] = PosMonMasteryFruit.Position
  2844. }
  2845. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2846. game:GetService("VirtualInputManager"):SendKeyEvent(true,"X",false,game)
  2847. game:GetService("VirtualInputManager"):SendKeyEvent(false,"X",false,game)
  2848. end
  2849. if _G.SkillC then
  2850. local args = {
  2851. [1] = PosMonMasteryFruit.Position
  2852. }
  2853. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2854. game:GetService("VirtualInputManager"):SendKeyEvent(true,"C",false,game)
  2855. game:GetService("VirtualInputManager"):SendKeyEvent(false,"C",false,game)
  2856. end
  2857. if _G.SkillV then
  2858. local args = {
  2859. [1] = PosMonMasteryFruit.Position
  2860. }
  2861. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2862. game:GetService("VirtualInputManager"):SendKeyEvent(true,"V",false,game)
  2863. game:GetService("VirtualInputManager"):SendKeyEvent(false,"V",false,game)
  2864. end
  2865. end
  2866. end
  2867. end)
  2868. end
  2869. end
  2870. end)
  2871.  
  2872. spawn(function()
  2873. game:GetService("RunService").RenderStepped:Connect(function()
  2874. pcall(function()
  2875. if UseSkill then
  2876. for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.Notifications:GetChildren()) do
  2877. if v.Name == "NotificationTemplate" then
  2878. if string.find(v.Text,"Skill locked!") then
  2879. v:Destroy()
  2880. end
  2881. end
  2882. end
  2883. end
  2884. end)
  2885. end)
  2886. end)
  2887.  
  2888. spawn(function()
  2889. pcall(function()
  2890. game:GetService("RunService").RenderStepped:Connect(function()
  2891. if UseSkill then
  2892. local args = {
  2893. [1] = PosMonMasteryFruit.Position
  2894. }
  2895. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Data.DevilFruit.Value].RemoteEvent:FireServer(unpack(args))
  2896. end
  2897. end)
  2898. end)
  2899. end)
  2900.  
  2901. Main:AddToggle("Auto Farm Gun Mastery",_G.AutoFarmGunMastery,function(value)
  2902. _G.AutoFarmGunMastery = value
  2903. StopTween(_G.AutoFarmGunMastery)
  2904. end)
  2905.  
  2906. spawn(function()
  2907. pcall(function()
  2908. while wait() do
  2909. if _G.AutoFarmGunMastery then
  2910. local QuestTitle = game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text
  2911. if not string.find(QuestTitle, NameMon) then
  2912. Magnet = false
  2913. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
  2914. end
  2915. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false then
  2916. StartMasteryGunMagnet = false
  2917. CheckQuest()
  2918. topos(CFrameQuest)
  2919. if (CFrameQuest.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 10 then
  2920. wait(1.2)
  2921. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StartQuest", NameQuest, LevelQuest)
  2922. end
  2923. elseif game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == true then
  2924. CheckQuest()
  2925. if game:GetService("Workspace").Enemies:FindFirstChild(Mon) then
  2926. pcall(function()
  2927. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  2928. if v.Name == Mon then
  2929. repeat task.wait()
  2930. if string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, NameMon) then
  2931. HealthMin = v.Humanoid.MaxHealth * _G.Kill_At/100
  2932. if v.Humanoid.Health <= HealthMin then
  2933. EquipWeapon(SelectWeaponGun)
  2934. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  2935. v.Humanoid.WalkSpeed = 0
  2936. v.HumanoidRootPart.CanCollide = false
  2937. v.HumanoidRootPart.Size = Vector3.new(2,2,1)
  2938. v.Head.CanCollide = false
  2939. local args = {
  2940. [1] = v.HumanoidRootPart.Position,
  2941. [2] = v.HumanoidRootPart
  2942. }
  2943. game:GetService("Players").LocalPlayer.Character[SelectWeaponGun].RemoteFunctionShoot:InvokeServer(unpack(args))
  2944. else
  2945. AutoHaki()
  2946. EquipWeapon(_G.SelectWeapon)
  2947. v.Humanoid.WalkSpeed = 0
  2948. v.HumanoidRootPart.CanCollide = false
  2949. v.Head.CanCollide = false
  2950. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  2951. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  2952. game:GetService'VirtualUser':CaptureController()
  2953. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  2954. end
  2955. StartMasteryGunMagnet = true
  2956. PosMonMasteryGun = v.HumanoidRootPart.CFrame
  2957. else
  2958. StartMasteryGunMagnet = false
  2959. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
  2960. end
  2961. until v.Humanoid.Health <= 0 or _G.AutoFarmGunMastery == false or game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false
  2962. StartMasteryGunMagnet = false
  2963. end
  2964. end
  2965. end)
  2966. else
  2967. StartMasteryGunMagnet = false
  2968. local Mob = game:GetService("ReplicatedStorage"):FindFirstChild(Mon)
  2969. if Mob then
  2970. topos(Mob.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  2971. else
  2972. if game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame.Y <= 1 then
  2973. game:GetService("Players").LocalPlayer.Character.Humanoid.Jump = true
  2974. task.wait()
  2975. game:GetService("Players").LocalPlayer.Character.Humanoid.Jump = false
  2976. end
  2977. end
  2978. end
  2979. end
  2980. end
  2981. end
  2982. end)
  2983. end)
  2984.  
  2985. _G.Kill_At = 25
  2986. Main:AddSlider("Kill At %",1,100,25,function(value)
  2987. _G.Kill_At = value
  2988. end)
  2989.  
  2990. Main:AddSeperator("Bosses")
  2991.  
  2992. local Boss = {}
  2993.  
  2994. for i, v in pairs(game:GetService("ReplicatedStorage"):GetChildren()) do
  2995. if string.find(v.Name, "Boss") then
  2996. if v.Name == "Ice Admiral [Lv. 700] [Boss]" then
  2997. else
  2998. table.insert(Boss, v.Name)
  2999. end
  3000. end
  3001. end
  3002.  
  3003. local BossName = Main:AddDropdown("Select Boss",Boss,function(value)
  3004. _G.SelectBoss = value
  3005. end)
  3006.  
  3007. Main:AddButton("Refresh Boss",function()
  3008. BossName:Clear()
  3009. for i, v in pairs(game:GetService("ReplicatedStorage"):GetChildren()) do
  3010. if string.find(v.Name, "Boss") then
  3011. BossName:Add(v.Name)
  3012. end
  3013. end
  3014. end)
  3015.  
  3016. Main:AddToggle("Auto Farm Boss",_G.AutoFarmBoss,function(value)
  3017. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
  3018. _G.AutoFarmBoss = value
  3019. StopTween(_G.AutoFarmBoss)
  3020. end)
  3021.  
  3022. spawn(function()
  3023. while wait() do
  3024. if _G.AutoFarmBoss then
  3025. pcall(function()
  3026. if game:GetService("Workspace").Enemies:FindFirstChild(_G.SelectBoss) then
  3027. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3028. if v.Name == _G.SelectBoss then
  3029. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  3030. repeat task.wait()
  3031. AutoHaki()
  3032. EquipWeapon(_G.SelectWeapon)
  3033. v.HumanoidRootPart.CanCollide = false
  3034. v.Humanoid.WalkSpeed = 0
  3035. v.HumanoidRootPart.Size = Vector3.new(80,80,80)
  3036. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3037. game:GetService("VirtualUser"):CaptureController()
  3038. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  3039. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  3040. until not _G.AutoFarmBoss or not v.Parent or v.Humanoid.Health <= 0
  3041. end
  3042. end
  3043. end
  3044. else
  3045. if game:GetService("ReplicatedStorage"):FindFirstChild(_G.SelectBoss) then
  3046. topos(game:GetService("ReplicatedStorage"):FindFirstChild(_G.SelectBoss).HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3047. end
  3048. end
  3049. end)
  3050. end
  3051. end
  3052. end)
  3053.  
  3054. Main:AddToggle("Auto Farm All Boss",_G.AutoAllBoss,function(value)
  3055. _G.AutoAllBoss = value
  3056. StopTween(_G.AutoAllBoss)
  3057. end)
  3058.  
  3059. Main:AddToggle("Auto Farm All Boss Hop",_G.AutoAllBossHop,function(value)
  3060. _G.AutoAllBossHop = value
  3061. end)
  3062.  
  3063. spawn(function()
  3064. while wait() do
  3065. if _G.AutoAllBoss then
  3066. pcall(function()
  3067. for i,v in pairs(game.ReplicatedStorage:GetChildren()) do
  3068. if string.find(v.Name,"Boss") then
  3069. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude < 17000 then
  3070. repeat task.wait()
  3071. AutoHaki()
  3072. EquipWeapon(_G.SelectWeapon)
  3073. v.Humanoid.WalkSpeed = 0
  3074. v.HumanoidRootPart.CanCollide = false
  3075. v.Head.CanCollide = false
  3076. v.HumanoidRootPart.Size = Vector3.new(80,80,80)
  3077. topos(v.HumanoidRootPart.CFrame*CFrame.new(5,10,7))
  3078. game:GetService'VirtualUser':CaptureController()
  3079. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  3080. sethiddenproperty(game.Players.LocalPlayer,"SimulationRadius",math.huge)
  3081. until v.Humanoid.Health <= 0 or _G.AutoAllBoss == false or not v.Parent
  3082. end
  3083. else
  3084. if _G.AutoAllBossHop then
  3085. Hop()
  3086. end
  3087. end
  3088. end
  3089. end)
  3090. end
  3091. end
  3092. end)
  3093.  
  3094. Main:AddSeperator("Dought")
  3095.  
  3096. local MobKilled = Main:AddLabel("Killed")
  3097.  
  3098. spawn(function()
  3099. while wait() do
  3100. pcall(function()
  3101. if string.len(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner")) == 88 then
  3102. MobKilled:Set("Defeat : "..string.sub(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner"),39,41))
  3103. elseif string.len(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner")) == 87 then
  3104. MobKilled:Set("Defeat : "..string.sub(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner"),39,40))
  3105. elseif string.len(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner")) == 86 then
  3106. MobKilled:Set("Defeat : "..string.sub(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner"),39,39))
  3107. else
  3108. MobKilled:Set("Boss Is Spawning")
  3109. end
  3110. end)
  3111. end
  3112. end)
  3113.  
  3114. Main:AddToggle("Auto Dought Boss",_G.AutoDoughtBoss,function(value)
  3115. _G.AutoDoughtBoss = value
  3116. StopTween(_G.AutoDoughtBoss)
  3117. end)
  3118.  
  3119. spawn(function()
  3120. while wait() do
  3121. pcall(function()
  3122. if string.len(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner")) == 88 then
  3123. KillMob = (tonumber(string.sub(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner"),39,41)) - 500)
  3124. elseif string.len(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner")) == 87 then
  3125. KillMob = (tonumber(string.sub(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner"),40,41)) - 500)
  3126. elseif string.len(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner")) == 86 then
  3127. KillMob = (tonumber(string.sub(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner"),41,41)) - 500)
  3128. end
  3129. end)
  3130. end
  3131. end)
  3132.  
  3133. spawn(function()
  3134. while wait() do
  3135. if _G.AutoDoughtBoss then
  3136. pcall(function()
  3137. if game:GetService("Workspace").Enemies:FindFirstChild("Cake Prince [Lv. 2300] [Raid Boss]") then
  3138. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3139. if v.Name == "Cake Prince [Lv. 2300] [Raid Boss]" then
  3140. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  3141. repeat task.wait()
  3142. AutoHaki()
  3143. EquipWeapon(_G.SelectWeapon)
  3144. v.HumanoidRootPart.CanCollide = false
  3145. v.Humanoid.WalkSpeed = 0
  3146. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3147. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3148. game:GetService("VirtualUser"):CaptureController()
  3149. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  3150. sethiddenproperty(game.Players.LocalPlayer,"SimulationRadius",math.huge)
  3151. until not _G.AutoDoughtBoss or not v.Parent or v.Humanoid.Health <= 0
  3152. end
  3153. end
  3154. end
  3155. else
  3156. if game:GetService("ReplicatedStorage"):FindFirstChild("Cake Prince [Lv. 2300] [Raid Boss]") then
  3157. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Cake Prince [Lv. 2300] [Raid Boss]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3158. else
  3159. if KillMob == 0 then
  3160. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner",true)
  3161. end
  3162. if game:GetService("Workspace").Map.CakeLoaf.BigMirror.Other.Transparency == 1 then
  3163. if game:GetService("Workspace").Enemies:FindFirstChild("Cookie Crafter [Lv. 2200]") or game:GetService("Workspace").Enemies:FindFirstChild("Cake Guard [Lv. 2225]") or game:GetService("Workspace").Enemies:FindFirstChild("Baking Staff [Lv. 2250]") or game:GetService("Workspace").Enemies:FindFirstChild("Head Baker [Lv. 2275]") then
  3164. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3165. if v.Name == "Cookie Crafter [Lv. 2200]" or v.Name == "Cake Guard [Lv. 2225]" or v.Name == "Baking Staff [Lv. 2250]" or v.Name == "Head Baker [Lv. 2275]" then
  3166. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  3167. repeat task.wait()
  3168. AutoHaki()
  3169. EquipWeapon(_G.SelectWeapon)
  3170. v.HumanoidRootPart.CanCollide = false
  3171. v.Humanoid.WalkSpeed = 0
  3172. v.Head.CanCollide = false
  3173. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3174. MagnetDought = true
  3175. PosMonDoughtOpenDoor = v.HumanoidRootPart.CFrame
  3176. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3177. game:GetService("VirtualUser"):CaptureController()
  3178. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  3179. until not _G.AutoDoughtBoss or not v.Parent or v.Humanoid.Health <= 0 or game:GetService("Workspace").Map.CakeLoaf.BigMirror.Other.Transparency == 0 or game:GetService("ReplicatedStorage"):FindFirstChild("Cake Prince [Lv. 2300] [Raid Boss]") or game:GetService("Workspace").Enemies:FindFirstChild("Cake Prince [Lv. 2300] [Raid Boss]") or KillMob == 0
  3180. end
  3181. end
  3182. end
  3183. else
  3184. MagnetDought = false
  3185. if game:GetService("ReplicatedStorage"):FindFirstChild("Cookie Crafter [Lv. 2200]") then
  3186. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Cookie Crafter [Lv. 2200]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3187. else
  3188. if game:GetService("ReplicatedStorage"):FindFirstChild("Cake Guard [Lv. 2225]") then
  3189. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Cake Guard [Lv. 2225]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3190. else
  3191. if game:GetService("ReplicatedStorage"):FindFirstChild("Baking Staff [Lv. 2250]") then
  3192. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Baking Staff [Lv. 2250]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3193. else
  3194. if game:GetService("ReplicatedStorage"):FindFirstChild("Head Baker [Lv. 2275]") then
  3195. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Head Baker [Lv. 2275]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3196. end
  3197. end
  3198. end
  3199. end
  3200. end
  3201. else
  3202. if game:GetService("Workspace").Enemies:FindFirstChild("Cake Prince [Lv. 2300] [Raid Boss]") then
  3203. topos(game:GetService("Workspace").Enemies:FindFirstChild("Cake Prince [Lv. 2300] [Raid Boss]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3204. else
  3205. if game:GetService("ReplicatedStorage"):FindFirstChild("Cake Prince [Lv. 2300] [Raid Boss]") then
  3206. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Cake Prince [Lv. 2300] [Raid Boss]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3207. end
  3208. end
  3209. end
  3210. end
  3211. end
  3212. end)
  3213. end
  3214. end
  3215. end)
  3216.  
  3217. Main:AddSeperator("Advance Dungeon")
  3218.  
  3219. Main:AddToggle("Auto Advance Dungeon",_G.AutoAdvanceDungeon,function(value)
  3220. _G.AutoAdvanceDungeon = value
  3221. StopTween(_G.AutoAdvanceDungeon)
  3222. end)
  3223.  
  3224. spawn(function()
  3225. while wait() do
  3226. if _G.AutoAdvanceDungeon then
  3227. pcall(function()
  3228. if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Bird-Bird: Phoenix") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Bird-Bird: Phoenix") then
  3229. if game.Players.LocalPlayer.Backpack:FindFirstChild(game.Players.LocalPlayer.Data.DevilFruit.Value) then
  3230. if game.Players.LocalPlayer.Backpack:FindFirstChild(game.Players.LocalPlayer.Data.DevilFruit.Value).Level.Value >= 400 then
  3231. topos(CFrame.new(-2812.76708984375, 254.803466796875, -12595.560546875))
  3232. if (CFrame.new(-2812.76708984375, 254.803466796875, -12595.560546875).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 10 then
  3233. wait(1.5)
  3234. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SickScientist","Check")
  3235. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SickScientist","Heal")
  3236. end
  3237. end
  3238. elseif game.Players.LocalPlayer.Character:FindFirstChild(game.Players.LocalPlayer.Data.DevilFruit.Value) then
  3239. if game.Players.LocalPlayer.Character:FindFirstChild(game.Players.LocalPlayer.Data.DevilFruit.Value).Level.Value >= 400 then
  3240. topos(CFrame.new(-2812.76708984375, 254.803466796875, -12595.560546875))
  3241. if (CFrame.new(-2812.76708984375, 254.803466796875, -12595.560546875).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 10 then
  3242. wait(1.5)
  3243. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SickScientist","Check")
  3244. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SickScientist","Heal")
  3245. end
  3246. end
  3247. end
  3248. end
  3249. end)
  3250. end
  3251. end
  3252. end)
  3253.  
  3254. Main:AddSeperator("Buddy Sword")
  3255.  
  3256. Main:AddToggle("Auto Buddy Sword",_G.AutoBudySword,function(value)
  3257. _G.AutoBudySword = value
  3258. StopTween(_G.AutoBudySword)
  3259. end)
  3260.  
  3261. Main:AddToggle("Auto Buddy Sword Hop",_G.AutoBudySwordHop,function(value)
  3262. _G.AutoBudySwordHop = value
  3263. end)
  3264.  
  3265. spawn(function()
  3266. while wait() do
  3267. if _G.AutoBudySword then
  3268. pcall(function()
  3269. if game:GetService("Workspace").Enemies:FindFirstChild("Cake Queen [Lv. 2175] [Boss]") then
  3270. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3271. if v.Name == "Cake Queen [Lv. 2175] [Boss]" then
  3272. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  3273. repeat task.wait()
  3274. AutoHaki()
  3275. EquipWeapon(_G.SelectWeapon)
  3276. v.HumanoidRootPart.CanCollide = false
  3277. v.Humanoid.WalkSpeed = 0
  3278. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3279. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3280. game:GetService("VirtualUser"):CaptureController()
  3281. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  3282. sethiddenproperty(game.Players.LocalPlayer,"SimulationRadius",math.huge)
  3283. until not _G.AutoBudySword or not v.Parent or v.Humanoid.Health <= 0
  3284. end
  3285. end
  3286. end
  3287. else
  3288. if game:GetService("ReplicatedStorage"):FindFirstChild("Cake Queen [Lv. 2175] [Boss]") then
  3289. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Cake Queen [Lv. 2175] [Boss]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3290. else
  3291. if _G.AutoBudySwordHop then
  3292. Hop()
  3293. end
  3294. end
  3295. end
  3296. end)
  3297. end
  3298. end
  3299. end)
  3300.  
  3301. Main:AddSeperator("Elite")
  3302.  
  3303. local EliteProgress = Main:AddLabel("")
  3304.  
  3305. spawn(function()
  3306. pcall(function()
  3307. while wait() do
  3308. EliteProgress:Set("Elite Progress : "..game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("EliteHunter","Progress"))
  3309. end
  3310. end)
  3311. end)
  3312.  
  3313. Main:AddToggle("Auto Elite Hunter",_G.AutoElitehunter,function(value)
  3314. _G.AutoElitehunter = value
  3315. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
  3316. StopTween(_G.AutoElitehunter)
  3317. end)
  3318.  
  3319. spawn(function()
  3320. while wait() do
  3321. if _G.AutoElitehunter and World3 then
  3322. pcall(function()
  3323. local QuestTitle = game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text
  3324. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false then
  3325. repeat wait()
  3326. topos(CFrame.new(-5418.892578125, 313.74130249023, -2826.2260742188))
  3327. until not _G.AutoElitehunter or (Vector3.new(-5418.892578125, 313.74130249023, -2826.2260742188)-game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 3
  3328. if (Vector3.new(-5418.892578125, 313.74130249023, -2826.2260742188)-game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 3 then
  3329. wait(1.1)
  3330. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("EliteHunter")
  3331. wait(0.5)
  3332. end
  3333. elseif game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == true then
  3334. if string.find(QuestTitle,"Diablo") or string.find(QuestTitle,"Deandre") or string.find(QuestTitle,"Urban") then
  3335. if game:GetService("Workspace").Enemies:FindFirstChild("Diablo [Lv. 1750]") or game:GetService("Workspace").Enemies:FindFirstChild("Deandre [Lv. 1750]") or game:GetService("Workspace").Enemies:FindFirstChild("Urban [Lv. 1750]") then
  3336. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3337. if v.Name == "Diablo [Lv. 1750]" or v.Name == "Deandre [Lv. 1750]" or v.Name == "Urban [Lv. 1750]" then
  3338. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  3339. repeat task.wait()
  3340. AutoHaki()
  3341. EquipWeapon(_G.SelectWeapon)
  3342. v.HumanoidRootPart.CanCollide = false
  3343. v.Humanoid.WalkSpeed = 0
  3344. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3345. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3346. game:GetService("VirtualUser"):CaptureController()
  3347. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  3348. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  3349. until _G.AutoElitehunter == false or v.Humanoid.Health <= 0 or not v.Parent
  3350. end
  3351. end
  3352. end
  3353. else
  3354. if game:GetService("ReplicatedStorage"):FindFirstChild("Diablo [Lv. 1750]") then
  3355. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Diablo [Lv. 1750]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3356. elseif game:GetService("ReplicatedStorage"):FindFirstChild("Deandre [Lv. 1750]") then
  3357. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Deandre [Lv. 1750]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3358. elseif game:GetService("ReplicatedStorage"):FindFirstChild("Urban [Lv. 1750]") then
  3359. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Urban [Lv. 1750]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3360. else
  3361. if _G.AutoEliteHunterHop then
  3362. Hop()
  3363. else
  3364. topos(CFrame.new(-5418.892578125, 313.74130249023, -2826.2260742188))
  3365. end
  3366. end
  3367. end
  3368. end
  3369. end
  3370. end)
  3371. end
  3372. end
  3373. end)
  3374.  
  3375. Main:AddToggle("Auto Elite Hunter Hop",_G.AutoEliteHunterHop,function(value)
  3376. _G.AutoEliteHunterHop = value
  3377. end)
  3378.  
  3379. Main:AddSeperator("Hallow Scythe")
  3380.  
  3381. Main:AddToggle("Auto Hallow Scythe",_G.AutoFarmBossHallow,function(value)
  3382. _G.AutoFarmBossHallow = value
  3383. StopTween(_G.AutoFarmBossHallow)
  3384. end)
  3385.  
  3386. Main:AddToggle("Auto Hallow Scythe Hop",_G.AutoFarmBossHallowHop,function(value)
  3387. _G.AutoFarmBossHallowHop = value
  3388. end)
  3389.  
  3390. spawn(function()
  3391. while wait() do
  3392. if _G.AutoFarmBossHallow then
  3393. pcall(function()
  3394. if game:GetService("Workspace").Enemies:FindFirstChild("Soul Reaper [Lv. 2100] [Raid Boss]") then
  3395. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3396. if string.find(v.Name , "Soul Reaper") then
  3397. repeat task.wait()
  3398. EquipWeapon(_G.SelectWeapon)
  3399. AutoHaki()
  3400. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3401. topos(v.HumanoidRootPart.CFrame*CFrame.new(5,10,7))
  3402. game:GetService("VirtualUser"):CaptureController()
  3403. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 670))
  3404. v.HumanoidRootPart.Transparency = 1
  3405. sethiddenproperty(game.Players.LocalPlayer,"SimulationRadius",math.huge)
  3406. until v.Humanoid.Health <= 0 or _G.AutoFarmBossHallow == false
  3407. end
  3408. end
  3409. elseif game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Hallow Essence") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Hallow Essence") then
  3410. repeat topos(CFrame.new(-8932.322265625, 146.83154296875, 6062.55078125)) wait() until (CFrame.new(-8932.322265625, 146.83154296875, 6062.55078125).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 8
  3411. EquipWeapon("Hallow Essence")
  3412. else
  3413. if game:GetService("ReplicatedStorage"):FindFirstChild("Soul Reaper [Lv. 2100] [Raid Boss]") then
  3414. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Soul Reaper [Lv. 2100] [Raid Boss]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3415. else
  3416. if _G.AutoFarmBossHallowHop then
  3417. Hop()
  3418. end
  3419. end
  3420. end
  3421. end)
  3422. end
  3423. end
  3424. end)
  3425.  
  3426. Main:AddSeperator("Dark Dagger")
  3427.  
  3428. Main:AddToggle("Auto Dark Dagger",_G.AutoDarkDagger,function(value)
  3429. _G.AutoDarkDagger = value
  3430. StopTween(_G.AutoDarkDagger)
  3431. end)
  3432.  
  3433. spawn(function()
  3434. pcall(function()
  3435. while wait() do
  3436. if _G.AutoDarkDagger then
  3437. if game:GetService("Workspace").Enemies:FindFirstChild("rip_indra True Form [Lv. 5000] [Raid Boss]") or game:GetService("Workspace").Enemies:FindFirstChild("rip_indra [Lv. 5000] [Raid Boss]") then
  3438. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3439. if v.Name == ("rip_indra True Form [Lv. 5000] [Raid Boss]" or v.Name == "rip_indra [Lv. 5000] [Raid Boss]") and v.Humanoid.Health > 0 and v:IsA("Model") and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") then
  3440. repeat task.wait()
  3441. pcall(function()
  3442. AutoHaki()
  3443. EquipWeapon(_G.SelectWeapon)
  3444. v.HumanoidRootPart.CanCollide = false
  3445. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3446. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3447. game:GetService("VirtualUser"):CaptureController()
  3448. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 670),workspace.CurrentCamera.CFrame)
  3449. end)
  3450. until _G.AutoDarkDagger == false or v.Humanoid.Health <= 0
  3451. end
  3452. end
  3453. else
  3454. topos(CFrame.new(-5344.822265625, 423.98541259766, -2725.0930175781))
  3455. end
  3456. end
  3457. end
  3458. end)
  3459. end)
  3460.  
  3461. Main:AddToggle("Auto Dark Dagger Hop",_G.AutoDarkDagger_Hop,function(value)
  3462. _G.AutoDarkDagger_Hop = value
  3463. end)
  3464.  
  3465. spawn(function()
  3466. pcall(function()
  3467. while wait() do
  3468. if (_G.AutoDarkDagger_Hop and _G.AutoDarkDagger) and World3 and not game:GetService("ReplicatedStorage"):FindFirstChild("rip_indra True Form [Lv. 5000] [Raid Boss]") and not game:GetService("Workspace").Enemies:FindFirstChild("rip_indra True Form [Lv. 5000] [Raid Boss]") then
  3469. Hop()
  3470. end
  3471. end
  3472. end)
  3473. end)
  3474.  
  3475. Main:AddSeperator("Swan Glasses")
  3476.  
  3477. Main:AddToggle("Auto Swan Glasses",_G.AutoFarmSwanGlasses,function(value)
  3478. _G.AutoFarmSwanGlasses = value
  3479. StopTween(_G.AutoFarmSwanGlasses)
  3480. end)
  3481.  
  3482. spawn(function()
  3483. pcall(function()
  3484. while wait() do
  3485. if _G.AutoFarmSwanGlasses then
  3486. if game:GetService("Workspace").Enemies:FindFirstChild("Don Swan [Lv. 1000] [Boss]") then
  3487. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3488. if v.Name == "Don Swan [Lv. 1000] [Boss]" and v.Humanoid.Health > 0 and v:IsA("Model") and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") then
  3489. repeat task.wait()
  3490. pcall(function()
  3491. AutoHaki()
  3492. EquipWeapon(_G.SelectWeapon)
  3493. v.HumanoidRootPart.CanCollide = false
  3494. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3495. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3496. game:GetService("VirtualUser"):CaptureController()
  3497. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 670))
  3498. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  3499. end)
  3500. until _G.AutoFarmSwanGlasses == false or v.Humanoid.Health <= 0
  3501. end
  3502. end
  3503. else
  3504. repeat task.wait()
  3505. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(2284.912109375, 15.537666320801, 905.48291015625))
  3506. until (CFrame.new(2284.912109375, 15.537666320801, 905.48291015625).Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 4 or _G.AutoFarmSwanGlasses == false
  3507. end
  3508. end
  3509. end
  3510. end)
  3511. end)
  3512.  
  3513. Main:AddToggle("Auto Swan Glasses Hop",_G.AutoFarmSwanGlasses_Hop,function(value)
  3514. _G.AutoFarmSwanGlasses_Hop = value
  3515. end)
  3516.  
  3517. spawn(function()
  3518. pcall(function()
  3519. while wait(.1) do
  3520. if (_G.AutoFarmSwanGlasses and _G.AutoFarmSwanGlasses_Hop) and World2 and not game:GetService("ReplicatedStorage"):FindFirstChild("Don Swan [Lv. 1000] [Boss]") and not game:GetService("Workspace").Enemies:FindFirstChild("Don Swan [Lv. 1000] [Boss]") then
  3521. Hop()
  3522. end
  3523. end
  3524. end)
  3525. end)
  3526.  
  3527. Main:AddSeperator("Bone")
  3528.  
  3529. local BoneFarm = Main:AddToggle("Auto Farm Bone",_G.Auto_Bone,function(value)
  3530. _G.Auto_Bone = value
  3531. StopTween(_G.Auto_Bone)
  3532. end)
  3533.  
  3534. spawn(function()
  3535. while wait() do
  3536. if _G.Auto_Bone and World3 then
  3537. pcall(function()
  3538. if game:GetService("Workspace").Enemies:FindFirstChild("Reborn Skeleton [Lv. 1975]") or game:GetService("Workspace").Enemies:FindFirstChild("Living Zombie [Lv. 2000]") or game:GetService("Workspace").Enemies:FindFirstChild("Demonic Soul [Lv. 2025]") or game:GetService("Workspace").Enemies:FindFirstChild("Posessed Mummy [Lv. 2050]") then
  3539. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3540. if v.Name == "Reborn Skeleton [Lv. 1975]" or v.Name == "Living Zombie [Lv. 2000]" or v.Name == "Demonic Soul [Lv. 2025]" or v.Name == "Posessed Mummy [Lv. 2050]" then
  3541. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  3542. repeat task.wait()
  3543. AutoHaki()
  3544. EquipWeapon(_G.SelectWeapon)
  3545. v.HumanoidRootPart.CanCollide = false
  3546. v.Humanoid.WalkSpeed = 0
  3547. v.Head.CanCollide = false
  3548. StartMagnetBoneMon = true
  3549. PosMonBone = v.HumanoidRootPart.CFrame
  3550. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3551. game:GetService("VirtualUser"):CaptureController()
  3552. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  3553. until not _G.Auto_Farm_Bone or not v.Parent or v.Humanoid.Health <= 0
  3554. end
  3555. end
  3556. end
  3557. else
  3558. StartMagnetBoneMon = false
  3559. for i,v in pairs(game:GetService("ReplicatedStorage"):GetChildren()) do
  3560. if v.Name == "Reborn Skeleton [Lv. 1975]" then
  3561. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3562. elseif v.Name == "Living Zombie [Lv. 2000]" then
  3563. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3564. elseif v.Name == "Demonic Soul [Lv. 2025]" then
  3565. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3566. elseif v.Name == "Posessed Mummy [Lv. 2050]" then
  3567. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3568. end
  3569. end
  3570. end
  3571. end)
  3572. end
  3573. end
  3574. end)
  3575.  
  3576. Main:AddToggle("Auto Random Surprise",_G.Auto_Random_Bone,function(value)
  3577. _G.Auto_Random_Bone = value
  3578. end)
  3579.  
  3580. spawn(function()
  3581. pcall(function()
  3582. while wait(.1) do
  3583. if _G.Auto_Random_Bone then
  3584. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Bones","Buy",1,1)
  3585. end
  3586. end
  3587. end)
  3588. end)
  3589.  
  3590. Main:AddSeperator("Observation")
  3591.  
  3592. local ObservationRange = Main:AddLabel("")
  3593.  
  3594. spawn(function()
  3595. while wait() do
  3596. pcall(function()
  3597. ObservationRange:Set("Observation Range Level : "..math.floor(game:GetService("Players").LocalPlayer.VisionRadius.Value))
  3598. end)
  3599. end
  3600. end)
  3601.  
  3602. Main:AddToggle("Auto Farm Observation",_G.AutoObservation,function(value)
  3603. _G.AutoObservation = value
  3604. StopTween(_G.AutoObservation)
  3605. end)
  3606.  
  3607. spawn(function()
  3608. while wait() do
  3609. pcall(function()
  3610. if _G.AutoObservation then
  3611. repeat task.wait()
  3612. if not game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel") then
  3613. game:GetService('VirtualUser'):CaptureController()
  3614. game:GetService('VirtualUser'):SetKeyDown('0x65')
  3615. wait(2)
  3616. game:GetService('VirtualUser'):SetKeyUp('0x65')
  3617. end
  3618. until game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel") or not _G.AutoObservation
  3619. end
  3620. end)
  3621. end
  3622. end)
  3623.  
  3624. Main:AddToggle("Auto Farm Observation Hop",_G.AutoObservation_Hop,function(value)
  3625. _G.AutoObservation_Hop = value
  3626. end)
  3627.  
  3628. spawn(function()
  3629. pcall(function()
  3630. while wait() do
  3631. if _G.AutoObservation then
  3632. if game:GetService("Players").LocalPlayer.VisionRadius.Value >= 3000 then
  3633. game:GetService("StarterGui"):SetCore("SendNotification", {
  3634. Icon = "rbxassetid://0";
  3635. Title = "Observation",
  3636. Text = "You Have Max Points"
  3637. })
  3638. wait(2)
  3639. else
  3640. if World2 then
  3641. if game:GetService("Workspace").Enemies:FindFirstChild("Lava Pirate [Lv. 1200]") then
  3642. if game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel") then
  3643. repeat task.wait()
  3644. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Enemies:FindFirstChild("Lava Pirate [Lv. 1200]").HumanoidRootPart.CFrame * CFrame.new(3,0,0)
  3645. until _G.AutoObservation == false or not game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel")
  3646. else
  3647. repeat task.wait()
  3648. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Enemies:FindFirstChild("Lava Pirate [Lv. 1200]").HumanoidRootPart.CFrame * CFrame.new(0,50,0)+
  3649. wait(1)
  3650. if not game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel") and _G.AutoObservation_Hop == true then
  3651. game:GetService("TeleportService"):Teleport(game.PlaceId,game:GetService("Players").LocalPlayer)
  3652. end
  3653. until _G.AutoObservation == false or game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel")
  3654. end
  3655. else
  3656. topos(CFrame.new(-5478.39209, 15.9775667, -5246.9126))
  3657. end
  3658. elseif World1 then
  3659. if game:GetService("Workspace").Enemies:FindFirstChild("Galley Captain [Lv. 650]") then
  3660. if game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel") then
  3661. repeat task.wait()
  3662. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Enemies:FindFirstChild("Galley Captain [Lv. 650]").HumanoidRootPart.CFrame * CFrame.new(3,0,0)
  3663. until _G.AutoObservation == false or not game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel")
  3664. else
  3665. repeat task.wait()
  3666. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Enemies:FindFirstChild("Galley Captain [Lv. 650]").HumanoidRootPart.CFrame * CFrame.new(0,50,0)
  3667. wait(1)
  3668. if not game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel") and _G.AutoObservation_Hop == true then
  3669. game:GetService("TeleportService"):Teleport(game.PlaceId,game:GetService("Players").LocalPlayer)
  3670. end
  3671. until _G.AutoObservation == false or game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel")
  3672. end
  3673. else
  3674. topos(CFrame.new(5533.29785, 88.1079102, 4852.3916))
  3675. end
  3676. elseif World3 then
  3677. if game:GetService("Workspace").Enemies:FindFirstChild("Giant Islander [Lv. 1650]") then
  3678. if game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel") then
  3679. repeat task.wait()
  3680. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Enemies:FindFirstChild("Giant Islander [Lv. 1650]").HumanoidRootPart.CFrame * CFrame.new(3,0,0)
  3681. until _G.AutoObservation == false or not game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel")
  3682. else
  3683. repeat task.wait()
  3684. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Enemies:FindFirstChild("Giant Islander [Lv. 1650]").HumanoidRootPart.CFrame * CFrame.new(0,50,0)
  3685. wait(1)
  3686. if not game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel") and _G.AutoObservation_Hop == true then
  3687. game:GetService("TeleportService"):Teleport(game.PlaceId,game:GetService("Players").LocalPlayer)
  3688. end
  3689. until _G.AutoObservation == false or game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel")
  3690. end
  3691. else
  3692. topos(CFrame.new(4530.3540039063, 656.75695800781, -131.60952758789))
  3693. end
  3694. end
  3695. end
  3696. end
  3697. end
  3698. end)
  3699. end)
  3700.  
  3701. Main:AddSeperator("Saber")
  3702.  
  3703. Main:AddToggle("Auto Saber",_G.AutoSaber,function(value)
  3704. _G.AutoSaber = value
  3705. StopTween(_G.AutoSaber)
  3706. end)
  3707.  
  3708. Main:AddToggle("Auto Saber Hop",_G.AutoSaber_Hop,function(value)
  3709. _G.AutoSaber_Hop = value
  3710. end)
  3711.  
  3712. spawn(function()
  3713. while wait() do
  3714. if _G.AutoSaber then
  3715. pcall(function()
  3716. if game:GetService("Workspace").Enemies:FindFirstChild("Saber Expert [Lv. 200] [Boss]") then
  3717. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3718. if v.Name == "Saber Expert [Lv. 200] [Boss]" then
  3719. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  3720. PosMonSaber = v.HumanoidRootPart.CFrame
  3721. repeat task.wait()
  3722. AutoHaki()
  3723. EquipWeapon(_G.SelectWeapon)
  3724. v.HumanoidRootPart.CanCollide = false
  3725. v.Humanoid.WalkSpeed = 0
  3726. v.HumanoidRootPart.CFrame = PosMonSaber
  3727. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3728. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3729. game:GetService("VirtualUser"):CaptureController()
  3730. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  3731. sethiddenproperty(game.Players.LocalPlayer,"SimulationRadius",math.huge)
  3732. until not _G.AutoSaber or not v.Parent or v.Humanoid.Health <= 0
  3733. end
  3734. end
  3735. end
  3736. else
  3737. if game:GetService("ReplicatedStorage"):FindFirstChild("Saber Expert [Lv. 200] [Boss]") then
  3738. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Saber Expert [Lv. 200] [Boss]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3739. else
  3740. if _G.AutoSaber_Hop then
  3741. Hop()
  3742. end
  3743. end
  3744. end
  3745. end)
  3746. end
  3747. end
  3748. end)
  3749.  
  3750. Main:AddSeperator("Legendary Sword")
  3751.  
  3752. Main:AddToggle("Auto Legendary Sword",_G.AutoBuyLegendarySword,function(value)
  3753. _G.AutoBuyLegendarySword = value
  3754. end)
  3755.  
  3756. spawn(function()
  3757. while wait() do
  3758. if _G.AutoBuyLegendarySword then
  3759. pcall(function()
  3760. local args = {
  3761. [1] = "LegendarySwordDealer",
  3762. [2] = "1"
  3763. }
  3764. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  3765. local args = {
  3766. [1] = "LegendarySwordDealer",
  3767. [2] = "2"
  3768. }
  3769. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  3770. local args = {
  3771. [1] = "LegendarySwordDealer",
  3772. [2] = "3"
  3773. }
  3774. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  3775. if _G.AutoBuyLegendarySword_Hop and _G.AutoBuyLegendarySword and World2 then
  3776. wait(10)
  3777. Hop()
  3778. end
  3779. end)
  3780. end
  3781. end
  3782. end)
  3783.  
  3784. Main:AddToggle("Auto Legendary Sword Hop",_G.AutoBuyLegendarySword_Hop,function(value)
  3785. _G.AutoBuyLegendarySword_Hop = value
  3786. end)
  3787.  
  3788. Main:AddSeperator("Enchancement Colour")
  3789.  
  3790. Main:AddToggle("Auto Enchancement Colour",_G.AutoBuyEnchancementColour,function(value)
  3791. _G.AutoBuyEnchancementColour = value
  3792. end)
  3793.  
  3794. Main:AddToggle("Auto Enchancement Hop",_G.AutoBuyEnchancementColour_Hop,function(value)
  3795. _G.AutoBuyEnchancementColour_Hop = value
  3796. end)
  3797.  
  3798. spawn(function()
  3799. while wait() do
  3800. if _G.AutoBuyEnchancementColour then
  3801. local args = {
  3802. [1] = "ColorsDealer",
  3803. [2] = "2"
  3804. }
  3805. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  3806. if _G.AutoBuyEnchancementColour_Hop and _G.AutoBuyEnchancementColour and not World1 then
  3807. wait(10)
  3808. Hop()
  3809. end
  3810. end
  3811. end
  3812. end)
  3813.  
  3814. Main:AddSeperator("Other")
  3815.  
  3816. Main:AddToggle("Auto Musketeer Hat",_G.AutoMusketeerHat,function(value)
  3817. _G.AutoMusketeerHat = value
  3818. StopTween(_G.AutoMusketeerHat)
  3819. end)
  3820.  
  3821. spawn(function()
  3822. pcall(function()
  3823. while wait(.1) do
  3824. if _G.AutoMusketeerHat then
  3825. if game:GetService("Players").LocalPlayer.Data.Level.Value >= 1800 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CitizenQuestProgress").KilledBandits == false then
  3826. if string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Forest Pirate") and string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "50") and game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == true then
  3827. if game:GetService("Workspace").Enemies:FindFirstChild("Forest Pirate [Lv. 1825]") then
  3828. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3829. if v.Name == "Forest Pirate [Lv. 1825]" then
  3830. repeat task.wait()
  3831. pcall(function()
  3832. EquipWeapon(_G.SelectWeapon)
  3833. AutoHaki()
  3834. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3835. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3836. v.HumanoidRootPart.CanCollide = false
  3837. game:GetService'VirtualUser':CaptureController()
  3838. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  3839. MusketeerHatMon = v.HumanoidRootPart.CFrame
  3840. StartMagnetMusketeerhat = true
  3841. end)
  3842. until _G.AutoMusketeerHat == false or not v.Parent or v.Humanoid.Health <= 0 or game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false
  3843. StartMagnetMusketeerhat = false
  3844. end
  3845. end
  3846. else
  3847. StartMagnetMusketeerhat = false
  3848. topos(CFrame.new(-13206.452148438, 425.89199829102, -7964.5537109375))
  3849. end
  3850. else
  3851. topos(CFrame.new(-12443.8671875, 332.40396118164, -7675.4892578125))
  3852. if (Vector3.new(-12443.8671875, 332.40396118164, -7675.4892578125) - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 30 then
  3853. wait(1.5)
  3854. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StartQuest","CitizenQuest",1)
  3855. end
  3856. end
  3857. elseif game:GetService("Players").LocalPlayer.Data.Level.Value >= 1800 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CitizenQuestProgress").KilledBoss == false then
  3858. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible and string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Captain Elephant") and game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == true then
  3859. if game:GetService("Workspace").Enemies:FindFirstChild("Captain Elephant [Lv. 1875] [Boss]") then
  3860. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3861. if v.Name == "Captain Elephant [Lv. 1875] [Boss]" then
  3862. OldCFrameElephant = v.HumanoidRootPart.CFrame
  3863. repeat task.wait()
  3864. pcall(function()
  3865. EquipWeapon(_G.SelectWeapon)
  3866. AutoHaki()
  3867. v.HumanoidRootPart.CanCollide = false
  3868. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3869. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3870. v.HumanoidRootPart.CanCollide = false
  3871. v.HumanoidRootPart.CFrame = OldCFrameElephant
  3872. game:GetService("VirtualUser"):CaptureController()
  3873. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 672))
  3874. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  3875. end)
  3876. until _G.AutoMusketeerHat == false or v.Humanoid.Health <= 0 or not v.Parent or game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false
  3877. end
  3878. end
  3879. else
  3880. topos(CFrame.new(-13374.889648438, 421.27752685547, -8225.208984375))
  3881. end
  3882. else
  3883. topos(CFrame.new(-12443.8671875, 332.40396118164, -7675.4892578125))
  3884. if (CFrame.new(-12443.8671875, 332.40396118164, -7675.4892578125).Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 4 then
  3885. wait(1.5)
  3886. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CitizenQuestProgress","Citizen")
  3887. end
  3888. end
  3889. elseif game:GetService("Players").LocalPlayer.Data.Level.Value >= 1800 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CitizenQuestProgress","Citizen") == 2 then
  3890. topos(CFrame.new(-12512.138671875, 340.39279174805, -9872.8203125))
  3891. end
  3892. end
  3893. end
  3894. end)
  3895. end)
  3896.  
  3897. Main:AddToggle("Auto Rainbow Haki",_G.Auto_Rainbow_Haki,function(value)
  3898. _G.Auto_Rainbow_Haki = value
  3899. StopTween(_G.Auto_Rainbow_Haki)
  3900. end)
  3901.  
  3902. spawn(function()
  3903. pcall(function()
  3904. while wait(.1) do
  3905. if _G.Auto_Rainbow_Haki then
  3906. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false then
  3907. topos(CFrame.new(-11892.0703125, 930.57672119141, -8760.1591796875))
  3908. if (Vector3.new(-11892.0703125, 930.57672119141, -8760.1591796875) - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 30 then
  3909. wait(1.5)
  3910. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("HornedMan","Bet")
  3911. end
  3912. elseif game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == true and string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Stone") then
  3913. if game:GetService("Workspace").Enemies:FindFirstChild("Stone [Lv. 1550] [Boss]") then
  3914. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3915. if v.Name == "Stone [Lv. 1550] [Boss]" then
  3916. OldCFrameRainbow = v.HumanoidRootPart.CFrame
  3917. repeat task.wait()
  3918. EquipWeapon(_G.SelectWeapon)
  3919. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3920. v.HumanoidRootPart.CanCollide = false
  3921. v.HumanoidRootPart.CFrame = OldCFrameRainbow
  3922. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3923. game:GetService("VirtualUser"):CaptureController()
  3924. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 672))
  3925. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  3926. until _G.Auto_Rainbow_Haki == false or v.Humanoid.Health <= 0 or not v.Parent or game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false
  3927. end
  3928. end
  3929. else
  3930. topos(CFrame.new(-1086.11621, 38.8425903, 6768.71436, 0.0231462717, -0.592676699, 0.805107772, 2.03251839e-05, 0.805323839, 0.592835128, -0.999732077, -0.0137055516, 0.0186523199))
  3931. end
  3932. elseif game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == true and string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Island Empress") then
  3933. if game:GetService("Workspace").Enemies:FindFirstChild("Island Empress [Lv. 1675] [Boss]") then
  3934. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3935. if v.Name == "Island Empress [Lv. 1675] [Boss]" then
  3936. OldCFrameRainbow = v.HumanoidRootPart.CFrame
  3937. repeat task.wait()
  3938. EquipWeapon(_G.SelectWeapon)
  3939. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3940. v.HumanoidRootPart.CanCollide = false
  3941. v.HumanoidRootPart.CFrame = OldCFrameRainbow
  3942. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3943. game:GetService("VirtualUser"):CaptureController()
  3944. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 672))
  3945. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  3946. until _G.Auto_Rainbow_Haki == false or v.Humanoid.Health <= 0 or not v.Parent or game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false
  3947. end
  3948. end
  3949. else
  3950. topos(CFrame.new(5713.98877, 601.922974, 202.751251, -0.101080291, -0, -0.994878292, -0, 1, -0, 0.994878292, 0, -0.101080291))
  3951. end
  3952. elseif string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Kilo Admiral") then
  3953. if game:GetService("Workspace").Enemies:FindFirstChild("Kilo Admiral [Lv. 1750] [Boss]") then
  3954. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3955. if v.Name == "Kilo Admiral [Lv. 1750] [Boss]" then
  3956. OldCFrameRainbow = v.HumanoidRootPart.CFrame
  3957. repeat task.wait()
  3958. EquipWeapon(_G.SelectWeapon)
  3959. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3960. v.HumanoidRootPart.CanCollide = false
  3961. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3962. v.HumanoidRootPart.CFrame = OldCFrameRainbow
  3963. game:GetService("VirtualUser"):CaptureController()
  3964. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 672))
  3965. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  3966. until _G.Auto_Rainbow_Haki == false or v.Humanoid.Health <= 0 or not v.Parent or game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false
  3967. end
  3968. end
  3969. else
  3970. topos(CFrame.new(2877.61743, 423.558685, -7207.31006, -0.989591599, -0, -0.143904909, -0, 1.00000012, -0, 0.143904924, 0, -0.989591479))
  3971. end
  3972. elseif string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Captain Elephant") then
  3973. if game:GetService("Workspace").Enemies:FindFirstChild("Captain Elephant [Lv. 1875] [Boss]") then
  3974. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3975. if v.Name == "Captain Elephant [Lv. 1875] [Boss]" then
  3976. OldCFrameRainbow = v.HumanoidRootPart.CFrame
  3977. repeat task.wait()
  3978. EquipWeapon(_G.SelectWeapon)
  3979. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3980. v.HumanoidRootPart.CanCollide = false
  3981. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3982. v.HumanoidRootPart.CFrame = OldCFrameRainbow
  3983. game:GetService("VirtualUser"):CaptureController()
  3984. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 672))
  3985. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  3986. until _G.Auto_Rainbow_Haki == false or v.Humanoid.Health <= 0 or not v.Parent or game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false
  3987. end
  3988. end
  3989. else
  3990. topos(CFrame.new(-13485.0283, 331.709259, -8012.4873, 0.714521289, 7.98849911e-08, 0.69961375, -1.02065748e-07, 1, -9.94383065e-09, -0.69961375, -6.43015241e-08, 0.714521289))
  3991. end
  3992. elseif string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Beautiful Pirate") then
  3993. if game:GetService("Workspace").Enemies:FindFirstChild("Beautiful Pirate [Lv. 1950] [Boss]") then
  3994. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3995. if v.Name == "Beautiful Pirate [Lv. 1950] [Boss]" then
  3996. OldCFrameRainbow = v.HumanoidRootPart.CFrame
  3997. repeat task.wait()
  3998. EquipWeapon(_G.SelectWeapon)
  3999. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  4000. v.HumanoidRootPart.CanCollide = false
  4001. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4002. v.HumanoidRootPart.CFrame = OldCFrameRainbow
  4003. game:GetService("VirtualUser"):CaptureController()
  4004. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 672))
  4005. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  4006. until _G.Auto_Rainbow_Haki == false or v.Humanoid.Health <= 0 or not v.Parent or game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false
  4007. end
  4008. end
  4009. else
  4010. topos(CFrame.new(5312.3598632813, 20.141201019287, -10.158538818359))
  4011. end
  4012. else
  4013. topos(CFrame.new(-11892.0703125, 930.57672119141, -8760.1591796875))
  4014. if (Vector3.new(-11892.0703125, 930.57672119141, -8760.1591796875) - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 30 then
  4015. wait(1.5)
  4016. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("HornedMan","Bet")
  4017. end
  4018. end
  4019. end
  4020. end
  4021. end)
  4022. end)
  4023.  
  4024. Main:AddToggle("Auto Observation Haki v2",_G.AutoObservationv2,function(value)
  4025. _G.AutoObservationv2 = value
  4026. StopTween(_G.AutoObservationv2)
  4027. end)
  4028.  
  4029. spawn(function()
  4030. while wait() do
  4031. pcall(function()
  4032. if _G.AutoObservationv2 then
  4033. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CitizenQuestProgress","Citizen") == 3 then
  4034. _G.AutoMusketeerHat = false
  4035. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Banana") and game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Apple") and game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Pineapple") then
  4036. repeat
  4037. topos(CFrame.new(-12444.78515625, 332.40396118164, -7673.1806640625))
  4038. wait()
  4039. until not _G.AutoObservationv2 or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position-Vector3.new(-12444.78515625, 332.40396118164, -7673.1806640625)).Magnitude <= 10
  4040. wait(.5)
  4041. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CitizenQuestProgress","Citizen")
  4042. elseif game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Fruit Bowl") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Fruit Bowl") then
  4043. repeat
  4044. topos(CFrame.new(-10920.125, 624.20275878906, -10266.995117188))
  4045. wait()
  4046. until not _G.AutoObservationv2 or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position-Vector3.new(-10920.125, 624.20275878906, -10266.995117188)).Magnitude <= 10
  4047. wait(.5)
  4048. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("KenTalk2","Start")
  4049. wait(1)
  4050. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("KenTalk2","Buy")
  4051. else
  4052. for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
  4053. if v.Name == "Apple" or v.Name == "Banana" or v.Name == "Pineapple" then
  4054. v.Handle.CFrame = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,1,10)
  4055. wait()
  4056. firetouchinterest(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart,v.Handle,0)
  4057. wait()
  4058. end
  4059. end
  4060. end
  4061. else
  4062. _G.AutoMusketeerHat = true
  4063. end
  4064. end
  4065. end)
  4066. end
  4067. end)
  4068.  
  4069. Main:AddToggle("Auto Rengoku",_G.AutoRengoku,function(value)
  4070. _G.AutoRengoku = value
  4071. StopTween(_G.AutoRengoku)
  4072. end)
  4073.  
  4074. spawn(function()
  4075. pcall(function()
  4076. while wait() do
  4077. if _G.AutoRengoku then
  4078. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Hidden Key") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Hidden Key") then
  4079. EquipWeapon("Hidden Key")
  4080. topos(CFrame.new(6571.1201171875, 299.23028564453, -6967.841796875))
  4081. elseif game:GetService("Workspace").Enemies:FindFirstChild("Snow Lurker [Lv. 1375]") or game:GetService("Workspace").Enemies:FindFirstChild("Arctic Warrior [Lv. 1350]") then
  4082. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4083. if (v.Name == "Snow Lurker [Lv. 1375]" or v.Name == "Arctic Warrior [Lv. 1350]") and v.Humanoid.Health > 0 then
  4084. repeat task.wait()
  4085. EquipWeapon(_G.SelectWeapon)
  4086. AutoHaki()
  4087. v.HumanoidRootPart.CanCollide = false
  4088. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4089. RengokuMon = v.HumanoidRootPart.CFrame
  4090. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  4091. game:GetService'VirtualUser':CaptureController()
  4092. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  4093. StartRengokuMagnet = true
  4094. until game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Hidden Key") or _G.AutoRengoku == false or not v.Parent or v.Humanoid.Health <= 0
  4095. StartRengokuMagnet = false
  4096. end
  4097. end
  4098. else
  4099. StartRengokuMagnet = false
  4100. topos(CFrame.new(5439.716796875, 84.420944213867, -6715.1635742188))
  4101. end
  4102. end
  4103. end
  4104. end)
  4105. end)
  4106.  
  4107. Main:AddToggle("Auto Farm Ectoplasm",_G.AutoEctoplasm,function(value)
  4108. _G.AutoEctoplasm = value
  4109. StopTween(_G.AutoEctoplasm)
  4110. end)
  4111.  
  4112. spawn(function()
  4113. pcall(function()
  4114. while wait() do
  4115. if _G.AutoEctoplasm then
  4116. if game:GetService("Workspace").Enemies:FindFirstChild("Ship Deckhand [Lv. 1250]") or game:GetService("Workspace").Enemies:FindFirstChild("Ship Engineer [Lv. 1275]") or game:GetService("Workspace").Enemies:FindFirstChild("Ship Steward [Lv. 1300]") or game:GetService("Workspace").Enemies:FindFirstChild("Ship Officer [Lv. 1325]") then
  4117. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4118. if string.find(v.Name, "Ship") then
  4119. repeat task.wait()
  4120. EquipWeapon(_G.SelectWeapon)
  4121. AutoHaki()
  4122. if string.find(v.Name,"Ship") then
  4123. v.HumanoidRootPart.CanCollide = false
  4124. v.Head.CanCollide = false
  4125. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4126. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  4127. game:GetService'VirtualUser':CaptureController()
  4128. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  4129. EctoplasmMon = v.HumanoidRootPart.CFrame
  4130. StartEctoplasmMagnet = true
  4131. else
  4132. StartEctoplasmMagnet = false
  4133. topos(CFrame.new(911.35827636719, 125.95812988281, 33159.5390625))
  4134. end
  4135. until _G.AutoEctoplasm == false or not v.Parent or v.Humanoid.Health <= 0
  4136. end
  4137. end
  4138. else
  4139. StartEctoplasmMagnet = false
  4140. local Distance = (Vector3.new(911.35827636719, 125.95812988281, 33159.5390625) - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude
  4141. if Distance > 18000 then
  4142. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(923.21252441406, 126.9760055542, 32852.83203125))
  4143. end
  4144. topos(CFrame.new(911.35827636719, 125.95812988281, 33159.5390625))
  4145. end
  4146. end
  4147. end
  4148. end)
  4149. end)
  4150.  
  4151. Main:AddToggle("Auto Yama",_G.AutoYama,function(value)
  4152. _G.AutoYama = value
  4153. StopTween(_G.AutoYama)
  4154. end)
  4155.  
  4156. spawn(function()
  4157. while wait() do
  4158. if _G.AutoYama then
  4159. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("EliteHunter","Progress") >= 30 then
  4160. repeat wait(.1)
  4161. fireclickdetector(game:GetService("Workspace").Map.Waterfall.SealedKatana.Handle.ClickDetector)
  4162. until game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Yama") or not _G.AutoYama
  4163. end
  4164. end
  4165. end
  4166. end)
  4167.  
  4168. Main:AddToggle("Auto Evo Race",_G.Auto_EvoRace,function(value)
  4169. _G.Auto_EvoRace = value
  4170. StopTween(_G.Auto_EvoRace)
  4171. end)
  4172.  
  4173. spawn(function()
  4174. pcall(function()
  4175. while wait(.1) do
  4176. if _G.Auto_EvoRace then
  4177. if not game:GetService("Players").LocalPlayer.Data.Race:FindFirstChild("Evolved") then
  4178. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Alchemist","1") == 0 then
  4179. topos(CFrame.new(-2779.83521, 72.9661407, -3574.02002, -0.730484903, 6.39014104e-08, -0.68292886, 3.59963224e-08, 1, 5.50667032e-08, 0.68292886, 1.56424669e-08, -0.730484903))
  4180. if (Vector3.new(-2779.83521, 72.9661407, -3574.02002) - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 4 then
  4181. wait(1.3)
  4182. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Alchemist","2")
  4183. end
  4184. elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Alchemist","1") == 1 then
  4185. pcall(function()
  4186. if not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Flower 1") and not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Flower 1") then
  4187. topos(game:GetService("Workspace").Flower1.CFrame)
  4188. elseif not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Flower 2") and not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Flower 2") then
  4189. topos(game:GetService("Workspace").Flower2.CFrame)
  4190. elseif not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Flower 3") and not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Flower 3") then
  4191. if game:GetService("Workspace").Enemies:FindFirstChild("Zombie [Lv. 950]") then
  4192. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4193. if v.Name == "Zombie [Lv. 950]" then
  4194. repeat task.wait()
  4195. AutoHaki()
  4196. EquipWeapon(_G.SelectWeapon)
  4197. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  4198. v.HumanoidRootPart.CanCollide = false
  4199. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4200. game:GetService("VirtualUser"):CaptureController()
  4201. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 672))
  4202. PosMonEvo = v.HumanoidRootPart.CFrame
  4203. StartEvoMagnet = true
  4204. until game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Flower 3") or not v.Parent or v.Humanoid.Health <= 0 or _G.Auto_EvoRace == false
  4205. StartEvoMagnet = false
  4206. end
  4207. end
  4208. else
  4209. StartEvoMagnet = false
  4210. topos(CFrame.new(-5685.9233398438, 48.480125427246, -853.23724365234))
  4211. end
  4212. end
  4213. end)
  4214. elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Alchemist","1") == 2 then
  4215. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Alchemist","3")
  4216. end
  4217. end
  4218. end
  4219. end
  4220. end)
  4221. end)
  4222.  
  4223. Main:AddToggle("Auto Bartlio Quest",_G.AutoBartilo,function(value)
  4224. _G.AutoBartilo = value
  4225. end)
  4226.  
  4227. spawn(function()
  4228. pcall(function()
  4229. while wait(.1) do
  4230. if _G.AutoBartilo then
  4231. if game:GetService("Players").LocalPlayer.Data.Level.Value >= 800 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") == 0 then
  4232. if string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Swan Pirates") and string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "50") and game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == true then
  4233. if game:GetService("Workspace").Enemies:FindFirstChild("Swan Pirate [Lv. 775]") then
  4234. Ms = "Swan Pirate [Lv. 775]"
  4235. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4236. if v.Name == Ms then
  4237. pcall(function()
  4238. repeat task.wait()
  4239. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4240. EquipWeapon(_G.SelectWeapon)
  4241. AutoHaki()
  4242. v.HumanoidRootPart.Transparency = 1
  4243. v.HumanoidRootPart.CanCollide = false
  4244. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4245. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  4246. PosMonBarto = v.HumanoidRootPart.CFrame
  4247. game:GetService'VirtualUser':CaptureController()
  4248. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  4249. AutoBartiloBring = true
  4250. until not v.Parent or v.Humanoid.Health <= 0 or _G.AutoBartilo == false or game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false
  4251. AutoBartiloBring = false
  4252. end)
  4253. end
  4254. end
  4255. else
  4256. repeat topos(CFrame.new(932.624451, 156.106079, 1180.27466, -0.973085582, 4.55137119e-08, -0.230443969, 2.67024713e-08, 1, 8.47491108e-08, 0.230443969, 7.63147128e-08, -0.973085582)) wait() until not _G.AutoBartilo or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position-Vector3.new(932.624451, 156.106079, 1180.27466, -0.973085582, 4.55137119e-08, -0.230443969, 2.67024713e-08, 1, 8.47491108e-08, 0.230443969, 7.63147128e-08, -0.973085582)).Magnitude <= 10
  4257. end
  4258. else
  4259. repeat topos(CFrame.new(-456.28952, 73.0200958, 299.895966)) wait() until not _G.AutoBartilo or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position-Vector3.new(-456.28952, 73.0200958, 299.895966)).Magnitude <= 10
  4260. wait(1.1)
  4261. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StartQuest","BartiloQuest",1)
  4262. end
  4263. elseif game:GetService("Players").LocalPlayer.Data.Level.Value >= 800 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") == 1 then
  4264. if game:GetService("Workspace").Enemies:FindFirstChild("Jeremy [Lv. 850] [Boss]") then
  4265. Ms = "Jeremy [Lv. 850] [Boss]"
  4266. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4267. if v.Name == Ms then
  4268. OldCFrameBartlio = v.HumanoidRootPart.CFrame
  4269. repeat task.wait()
  4270. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4271. EquipWeapon(_G.SelectWeapon)
  4272. AutoHaki()
  4273. v.HumanoidRootPart.Transparency = 1
  4274. v.HumanoidRootPart.CanCollide = false
  4275. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4276. v.HumanoidRootPart.CFrame = OldCFrameBartlio
  4277. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  4278. game:GetService'VirtualUser':CaptureController()
  4279. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  4280. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  4281. until not v.Parent or v.Humanoid.Health <= 0 or _G.AutoBartilo == false
  4282. end
  4283. end
  4284. elseif game:GetService("ReplicatedStorage"):FindFirstChild("Jeremy [Lv. 850] [Boss]") then
  4285. repeat topos(CFrame.new(-456.28952, 73.0200958, 299.895966)) wait() until not _G.AutoBartilo or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position-Vector3.new(-456.28952, 73.0200958, 299.895966)).Magnitude <= 10
  4286. wait(1.1)
  4287. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo")
  4288. wait(1)
  4289. repeat topos(CFrame.new(2099.88159, 448.931, 648.997375)) wait() until not _G.AutoBartilo or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position-Vector3.new(2099.88159, 448.931, 648.997375)).Magnitude <= 10
  4290. wait(2)
  4291. else
  4292. repeat topos(CFrame.new(2099.88159, 448.931, 648.997375)) wait() until not _G.AutoBartilo or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position-Vector3.new(2099.88159, 448.931, 648.997375)).Magnitude <= 10
  4293. end
  4294. elseif game:GetService("Players").LocalPlayer.Data.Level.Value >= 800 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") == 2 then
  4295. repeat topos(CFrame.new(-1850.49329, 13.1789551, 1750.89685)) wait() until not _G.AutoBartilo or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position-Vector3.new(-1850.49329, 13.1789551, 1750.89685)).Magnitude <= 10
  4296. wait(1)
  4297. repeat topos(CFrame.new(-1858.87305, 19.3777466, 1712.01807)) wait() until not _G.AutoBartilo or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position-Vector3.new(-1858.87305, 19.3777466, 1712.01807)).Magnitude <= 10
  4298. wait(1)
  4299. repeat topos(CFrame.new(-1803.94324, 16.5789185, 1750.89685)) wait() until not _G.AutoBartilo or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position-Vector3.new(-1803.94324, 16.5789185, 1750.89685)).Magnitude <= 10
  4300. wait(1)
  4301. repeat topos(CFrame.new(-1858.55835, 16.8604317, 1724.79541)) wait() until not _G.AutoBartilo or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position-Vector3.new(-1858.55835, 16.8604317, 1724.79541)).Magnitude <= 10
  4302. wait(1)
  4303. repeat topos(CFrame.new(-1869.54224, 15.987854, 1681.00659)) wait() until not _G.AutoBartilo or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position-Vector3.new(-1869.54224, 15.987854, 1681.00659)).Magnitude <= 10
  4304. wait(1)
  4305. repeat topos(CFrame.new(-1800.0979, 16.4978027, 1684.52368)) wait() until not _G.AutoBartilo or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position-Vector3.new(-1800.0979, 16.4978027, 1684.52368)).Magnitude <= 10
  4306. wait(1)
  4307. repeat topos(CFrame.new(-1819.26343, 14.795166, 1717.90625)) wait() until not _G.AutoBartilo or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position-Vector3.new(-1819.26343, 14.795166, 1717.90625)).Magnitude <= 10
  4308. wait(1)
  4309. repeat topos(CFrame.new(-1813.51843, 14.8604736, 1724.79541)) wait() until not _G.AutoBartilo or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position-Vector3.new(-1813.51843, 14.8604736, 1724.79541)).Magnitude <= 10
  4310. end
  4311. end
  4312. end
  4313. end)
  4314. end)
  4315.  
  4316. Main:AddToggle("Auto Holy Torch",_G.AutoHolyTorch,function(value)
  4317. _G.AutoHolyTorch = value
  4318. StopTween(_G.AutoHolyTorch)
  4319. end)
  4320.  
  4321. spawn(function()
  4322. while wait() do
  4323. if _G.AutoHolyTorch then
  4324. pcall(function()
  4325. wait(1)
  4326. TP(CFrame.new(-10752, 417, -9366))
  4327. wait(1)
  4328. TP(CFrame.new(-11672, 334, -9474))
  4329. wait(1)
  4330. TP(CFrame.new(-12132, 521, -10655))
  4331. wait(1)
  4332. TP(CFrame.new(-13336, 486, -6985))
  4333. wait(1)
  4334. TP(CFrame.new(-13489, 332, -7925))
  4335. end)
  4336. end
  4337. end
  4338. end)
  4339.  
  4340. spawn(function()
  4341. while task.wait() do
  4342. pcall(function()
  4343. if _G.BringMonster then
  4344. CheckQuest()
  4345. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4346. if _G.AutoFarm and StartMagnet and v.Name == Mon and (Mon == "Factory Staff [Lv. 800]" or Mon == "Monkey [Lv. 14]" or Mon == "Dragon Crew Warrior [Lv. 1575]" or Mon == "Dragon Crew Archer [Lv. 1600]") and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 and (v.HumanoidRootPart.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 220 then
  4347. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4348. v.HumanoidRootPart.CFrame = PosMon
  4349. v.Humanoid:ChangeState(14)
  4350. v.HumanoidRootPart.CanCollide = false
  4351. v.Head.CanCollide = false
  4352. if v.Humanoid:FindFirstChild("Animator") then
  4353. v.Humanoid.Animator:Destroy()
  4354. end
  4355. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  4356. elseif _G.AutoFarm and StartMagnet and v.Name == Mon and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 and (v.HumanoidRootPart.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 275 then
  4357. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4358. v.HumanoidRootPart.CFrame = PosMon
  4359. v.Humanoid:ChangeState(14)
  4360. v.HumanoidRootPart.CanCollide = false
  4361. v.Head.CanCollide = false
  4362. if v.Humanoid:FindFirstChild("Animator") then
  4363. v.Humanoid.Animator:Destroy()
  4364. end
  4365. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  4366. end
  4367. if _G.AutoEctoplasm and StartEctoplasmMagnet then
  4368. if string.find(v.Name, "Ship") and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 and (v.HumanoidRootPart.Position - EctoplasmMon.Position).Magnitude <= 250 then
  4369. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4370. v.HumanoidRootPart.CFrame = EctoplasmMon
  4371. v.Humanoid:ChangeState(14)
  4372. v.HumanoidRootPart.CanCollide = false
  4373. v.Head.CanCollide = false
  4374. if v.Humanoid:FindFirstChild("Animator") then
  4375. v.Humanoid.Animator:Destroy()
  4376. end
  4377. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4378. end
  4379. end
  4380. if _G.AutoRengoku and StartRengokuMagnet then
  4381. if (v.Name == "Snow Lurker [Lv. 1375]" or v.Name == "Arctic Warrior [Lv. 1350]") and (v.HumanoidRootPart.Position - RengokuMon.Position).Magnitude <= 250 and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  4382. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4383. v.Humanoid:ChangeState(14)
  4384. v.HumanoidRootPart.CanCollide = false
  4385. v.Head.CanCollide = false
  4386. v.HumanoidRootPart.CFrame = RengokuMon
  4387. if v.Humanoid:FindFirstChild("Animator") then
  4388. v.Humanoid.Animator:Destroy()
  4389. end
  4390. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4391. end
  4392. end
  4393. if _G.AutoMusketeerHat and StartMagnetMusketeerhat then
  4394. if v.Name == "Forest Pirate [Lv. 1825]" and (v.HumanoidRootPart.Position - MusketeerHatMon.Position).Magnitude <= 250 and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  4395. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4396. v.Humanoid:ChangeState(14)
  4397. v.HumanoidRootPart.CanCollide = false
  4398. v.Head.CanCollide = false
  4399. v.HumanoidRootPart.CFrame = MusketeerHatMon
  4400. if v.Humanoid:FindFirstChild("Animator") then
  4401. v.Humanoid.Animator:Destroy()
  4402. end
  4403. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4404. end
  4405. end
  4406. if _G.Auto_EvoRace and StartEvoMagnet then
  4407. if v.Name == "Zombie [Lv. 950]" and (v.HumanoidRootPart.Position - PosMonEvo.Position).Magnitude <= 250 and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  4408. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4409. v.Humanoid:ChangeState(14)
  4410. v.HumanoidRootPart.CanCollide = false
  4411. v.Head.CanCollide = false
  4412. v.HumanoidRootPart.CFrame = PosMonEvo
  4413. if v.Humanoid:FindFirstChild("Animator") then
  4414. v.Humanoid.Animator:Destroy()
  4415. end
  4416. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4417. end
  4418. end
  4419. if _G.AutoBartilo and AutoBartiloBring then
  4420. if v.Name == "Swan Pirate [Lv. 775]" and (v.HumanoidRootPart.Position - PosMonBarto.Position).Magnitude <= 250 and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  4421. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4422. v.Humanoid:ChangeState(14)
  4423. v.HumanoidRootPart.CanCollide = false
  4424. v.Head.CanCollide = false
  4425. v.HumanoidRootPart.CFrame = PosMonBarto
  4426. if v.Humanoid:FindFirstChild("Animator") then
  4427. v.Humanoid.Animator:Destroy()
  4428. end
  4429. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4430. end
  4431. end
  4432. if _G.AutoFarmFruitMastery and StartMasteryFruitMagnet then
  4433. if v.Name == "Monkey [Lv. 14]" then
  4434. if (v.HumanoidRootPart.Position - PosMonMasteryFruit.Position).Magnitude <= 250 and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  4435. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4436. v.Humanoid:ChangeState(14)
  4437. v.HumanoidRootPart.CanCollide = false
  4438. v.Head.CanCollide = false
  4439. v.HumanoidRootPart.CFrame = PosMonMasteryFruit
  4440. if v.Humanoid:FindFirstChild("Animator") then
  4441. v.Humanoid.Animator:Destroy()
  4442. end
  4443. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4444. end
  4445. elseif v.Name == "Factory Staff [Lv. 800]" then
  4446. if (v.HumanoidRootPart.Position - PosMonMasteryFruit.Position).Magnitude <= 250 and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  4447. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4448. v.Humanoid:ChangeState(14)
  4449. v.HumanoidRootPart.CanCollide = false
  4450. v.Head.CanCollide = false
  4451. v.HumanoidRootPart.CFrame = PosMonMasteryFruit
  4452. if v.Humanoid:FindFirstChild("Animator") then
  4453. v.Humanoid.Animator:Destroy()
  4454. end
  4455. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4456. end
  4457. elseif v.Name == Mon then
  4458. if (v.HumanoidRootPart.Position - PosMonMasteryFruit.Position).Magnitude <= 250 and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  4459. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4460. v.Humanoid:ChangeState(14)
  4461. v.HumanoidRootPart.CanCollide = false
  4462. v.Head.CanCollide = false
  4463. v.HumanoidRootPart.CFrame = PosMonMasteryFruit
  4464. if v.Humanoid:FindFirstChild("Animator") then
  4465. v.Humanoid.Animator:Destroy()
  4466. end
  4467. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4468. end
  4469. end
  4470. end
  4471. if _G.AutoFarmGunMastery and StartMasteryGunMagnet then
  4472. if v.Name == "Monkey [Lv. 14]" then
  4473. if (v.HumanoidRootPart.Position - PosMonMasteryGun.Position).Magnitude <= 250 and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  4474. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4475. v.Humanoid:ChangeState(14)
  4476. v.HumanoidRootPart.CanCollide = false
  4477. v.Head.CanCollide = false
  4478. v.HumanoidRootPart.CFrame = PosMonMasteryGun
  4479. if v.Humanoid:FindFirstChild("Animator") then
  4480. v.Humanoid.Animator:Destroy()
  4481. end
  4482. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4483. end
  4484. elseif v.Name == "Factory Staff [Lv. 800]" then
  4485. if (v.HumanoidRootPart.Position - PosMonMasteryGun.Position).Magnitude <= 250 and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  4486. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4487. v.Humanoid:ChangeState(14)
  4488. v.HumanoidRootPart.CanCollide = false
  4489. v.Head.CanCollide = false
  4490. v.HumanoidRootPart.CFrame = PosMonMasteryGun
  4491. if v.Humanoid:FindFirstChild("Animator") then
  4492. v.Humanoid.Animator:Destroy()
  4493. end
  4494. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4495. end
  4496. elseif v.Name == Mon then
  4497. if (v.HumanoidRootPart.Position - PosMonMasteryGun.Position).Magnitude <= 250 and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  4498. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4499. v.Humanoid:ChangeState(14)
  4500. v.HumanoidRootPart.CanCollide = false
  4501. v.Head.CanCollide = false
  4502. v.HumanoidRootPart.CFrame = PosMonMasteryGun
  4503. if v.Humanoid:FindFirstChild("Animator") then
  4504. v.Humanoid.Animator:Destroy()
  4505. end
  4506. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4507. end
  4508. end
  4509. end
  4510. if _G.Auto_Bone and StartMagnetBoneMon then
  4511. if (v.Name == "Reborn Skeleton [Lv. 1975]" or v.Name == "Living Zombie [Lv. 2000]" or v.Name == "Demonic Soul [Lv. 2025]" or v.Name == "Posessed Mummy [Lv. 2050]") and (v.HumanoidRootPart.Position - PosMonBone.Position).Magnitude <= 250 and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  4512. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4513. v.Humanoid:ChangeState(14)
  4514. v.HumanoidRootPart.CanCollide = false
  4515. v.Head.CanCollide = false
  4516. v.HumanoidRootPart.CFrame = PosMonBone
  4517. if v.Humanoid:FindFirstChild("Animator") then
  4518. v.Humanoid.Animator:Destroy()
  4519. end
  4520. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4521. end
  4522. end
  4523. if _G.AutoDoughtBoss and MagnetDought then
  4524. if (v.Name == "Cookie Crafter [Lv. 2200]" or v.Name == "Cake Guard [Lv. 2225]" or v.Name == "Baking Staff [Lv. 2250]" or v.Name == "Head Baker [Lv. 2275]") and (v.HumanoidRootPart.Position - PosMonDoughtOpenDoor.Position).Magnitude <= 250 and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  4525. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4526. v.Humanoid:ChangeState(14)
  4527. v.HumanoidRootPart.CanCollide = false
  4528. v.Head.CanCollide = false
  4529. v.HumanoidRootPart.CFrame = PosMonDoughtOpenDoor
  4530. if v.Humanoid:FindFirstChild("Animator") then
  4531. v.Humanoid.Animator:Destroy()
  4532. end
  4533. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4534. end
  4535. end
  4536. if _G.AutoCandy and StartMagnetCandy then
  4537. if (v.HumanoidRootPart.Position - PosMonCandy.Position).Magnitude <= 250 and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  4538. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4539. v.Humanoid:ChangeState(14)
  4540. v.HumanoidRootPart.CanCollide = false
  4541. v.Head.CanCollide = false
  4542. v.HumanoidRootPart.CFrame = PosMonCandy
  4543. if v.Humanoid:FindFirstChild("Animator") then
  4544. v.Humanoid.Animator:Destroy()
  4545. end
  4546. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4547. end
  4548. end
  4549. end
  4550. end
  4551. end)
  4552. end
  4553. end)
  4554.  
  4555. local plyserv = Combat:AddLabel("Players")
  4556.  
  4557. spawn(function()
  4558. while wait() do
  4559. pcall(function()
  4560. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  4561. if i == 12 then
  4562. plyserv:Set("Players :".." "..i.." ".."/".." ".."12".." ".."(Max)")
  4563. elseif i == 1 then
  4564. plyserv:Set("Player :".." "..i.." ".."/".." ".."12")
  4565. else
  4566. plyserv:Set("Players :".." "..i.." ".."/".." ".."12")
  4567. end
  4568. end
  4569. end)
  4570. end
  4571. end)
  4572.  
  4573. Playerslist = {}
  4574.  
  4575. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  4576. table.insert(Playerslist,v.Name)
  4577. end
  4578.  
  4579. local SelectedPly = Combat:AddDropdown("Select Players",Playerslist,function(value)
  4580. _G.SelectPly = value
  4581. end)
  4582.  
  4583. Combat:AddButton("Refresh Player",function()
  4584. Playerslist = {}
  4585. SelectedPly:Clear()
  4586. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  4587. SelectedPly:Add(v.Name)
  4588. end
  4589. end)
  4590.  
  4591. Combat:AddToggle("Spectate Player",false,function(value)
  4592. SpectatePlys = value
  4593. local plr1 = game:GetService("Players").LocalPlayer.Character.Humanoid
  4594. local plr2 = game:GetService("Players"):FindFirstChild(_G.SelectPly)
  4595. repeat wait(.1)
  4596. game:GetService("Workspace").Camera.CameraSubject = game:GetService("Players"):FindFirstChild(_G.SelectPly).Character.Humanoid
  4597. until SpectatePlys == false
  4598. game:GetService("Workspace").Camera.CameraSubject = game:GetService("Players").LocalPlayer.Character.Humanoid
  4599. end)
  4600.  
  4601. Combat:AddToggle("Teleport",false,function(value)
  4602. _G.TeleportPly = value
  4603. pcall(function()
  4604. if _G.TeleportPly then
  4605. repeat topos(game:GetService("Players")[_G.SelectPly].Character.HumanoidRootPart.CFrame) wait() until _G.TeleportPly == false
  4606. end
  4607. StopTween(_G.TeleportPly)
  4608. end)
  4609. end)
  4610.  
  4611. Combat:AddToggle("Auto Farm Player",false,function(value)
  4612. _G.Auto_Kill_Ply = value
  4613. StopTween(_G.Auto_Kill_Ply)
  4614. end)
  4615.  
  4616. spawn(function()
  4617. while wait() do
  4618. if _G.Auto_Kill_Ply then
  4619. pcall(function()
  4620. if _G.SelectPly ~= nil then
  4621. if game.Players:FindFirstChild(_G.SelectPly) then
  4622. if game.Players:FindFirstChild(_G.SelectPly).Character.Humanoid.Health > 0 then
  4623. repeat task.wait()
  4624. EquipWeapon(_G.SelectWeapon)
  4625. AutoHaki()
  4626. game.Players:FindFirstChild(_G.SelectPly).Character.HumanoidRootPart.CanCollide = false
  4627. topos(game.Players:FindFirstChild(_G.SelectPly).Character.HumanoidRootPart.CFrame * CFrame.new(0,35,0))
  4628. spawn(function()
  4629. pcall(function()
  4630. if _G.SelectWeapon == SelectWeaponGun then
  4631. local args = {
  4632. [1] = game.Players:FindFirstChild(_G.SelectPly).Character.HumanoidRootPart.Position,
  4633. [2] = game.Players:FindFirstChild(_G.SelectPly).Character.HumanoidRootPart
  4634. }
  4635. game:GetService("Players").LocalPlayer.Character[SelectWeaponGun].RemoteFunctionShoot:InvokeServer(unpack(args))
  4636. else
  4637. game:GetService("VirtualUser"):CaptureController()
  4638. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  4639. end
  4640. end)
  4641. end)
  4642. until game.Players:FindFirstChild(_G.SelectPly).Character.Humanoid.Health <= 0 or not game.Players:FindFirstChild(_G.SelectPly) or not _G.Auto_Kill_Ply
  4643. end
  4644. end
  4645. end
  4646. end)
  4647. end
  4648. end
  4649. end)
  4650.  
  4651. Combat:AddSeperator("Aimbot")
  4652.  
  4653. spawn(function()
  4654. while wait() do
  4655. pcall(function()
  4656. local MaxDistance = math.huge
  4657. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  4658. if v.Name ~= game:GetService("Players").LocalPlayer.Name then
  4659. local Distance = v:DistanceFromCharacter(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position)
  4660. if Distance < MaxDistance then
  4661. MaxDistance = Distance
  4662. PlayerSelectAimbot = v.Name
  4663. end
  4664. end
  4665. end
  4666. end)
  4667. end
  4668. end)
  4669.  
  4670. Combat:AddToggle("Aimbot Gun",false,function(value)
  4671. _G.Aimbot_Gun = value
  4672. end)
  4673.  
  4674. spawn(function()
  4675. while task.wait() do
  4676. if _G.Aimbot_Gun and game:GetService("Players").LocalPlayer.Character:FindFirstChild(SelectWeaponGun) then
  4677. pcall(function()
  4678. game:GetService("Players").LocalPlayer.Character[SelectWeaponGun].Cooldown.Value = 0
  4679. local args = {
  4680. [1] = game:GetService("Players"):FindFirstChild(PlayerSelectAimbot).Character.HumanoidRootPart.Position,
  4681. [2] = game:GetService("Players"):FindFirstChild(PlayerSelectAimbot).Character.HumanoidRootPart
  4682. }
  4683. game:GetService("Players").LocalPlayer.Character[SelectWeaponGun].RemoteFunctionShoot:InvokeServer(unpack(args))
  4684. game:GetService'VirtualUser':CaptureController()
  4685. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  4686. end)
  4687. end
  4688. end
  4689. end)
  4690.  
  4691. Combat:AddToggle("Aimbot Skill",false,function(value)
  4692. _G.Aimbot_Skill = value
  4693. end)
  4694.  
  4695. spawn(function()
  4696. pcall(function()
  4697. while task.wait() do
  4698. if _G.Aimbot_Skill and PlayerSelectAimbot ~= nil and game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool") and game.Players.LocalPlayer.Character[game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool").Name]:FindFirstChild("MousePos") then
  4699. local args = {
  4700. [1] = game:GetService("Players"):FindFirstChild(PlayerSelectAimbot).Character.HumanoidRootPart.Position
  4701. }
  4702.  
  4703. game:GetService("Players").LocalPlayer.Character:FindFirstChild(game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool").Name).RemoteEvent:FireServer(unpack(args))
  4704. end
  4705. end
  4706. end)
  4707. end)
  4708.  
  4709. Combat:AddSeperator("PvP")
  4710.  
  4711. Combat:AddToggle("Enabled PvP",false,function(value)
  4712. _G.EnabledPvP = value
  4713. end)
  4714.  
  4715. spawn(function()
  4716. pcall(function()
  4717. while wait(.1) do
  4718. if _G.EnabledPvP then
  4719. if game:GetService("Players").LocalPlayer.PlayerGui.Main.PvpDisabled.Visible == true then
  4720. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("EnablePvp")
  4721. end
  4722. end
  4723. end
  4724. end)
  4725. end)
  4726.  
  4727. Combat:AddToggle("Safe Mode",false,function(value)
  4728. _G.Safe_Mode = value
  4729. StopTween(_G.Safe_Mode)
  4730. end)
  4731.  
  4732. spawn(function()
  4733. pcall(function()
  4734. while wait() do
  4735. if _G.Safe_Mode then
  4736. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame
  4737. end
  4738. end
  4739. end)
  4740. end)
  4741.  
  4742. Combat:AddButton("Respawn",function()
  4743. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetTeam","Pirates")
  4744. wait()
  4745. end)
  4746.  
  4747. Combat:AddSeperator("Bounty")
  4748.  
  4749. local Current = Combat:AddLabel("Current Bounties :")
  4750.  
  4751. local Bounty = tostring(game:GetService("Players").LocalPlayer.leaderstats["Bounty/Honor"].Value)
  4752. local sub = string.sub
  4753. local len = string.len
  4754. spawn(function()
  4755. while wait() do
  4756. pcall(function()
  4757. if len(Bounty) == 4 then
  4758. Bounty1 = sub(Bounty,1,1).."."..sub(Bounty,2,3).."K"
  4759. elseif len(Bounty) == 5 then
  4760. Bounty1 = sub(Bounty,1,2).."."..sub(Bounty,3,4).."K"
  4761. elseif len(Bounty) == 6 then
  4762. Bounty1 = sub(Bounty,1,3).."."..sub(Bounty,4,5).."K"
  4763. elseif len(Bounty) == 7 then
  4764. Bounty1 = sub(Bounty,1,1).."."..sub(Bounty,2,3).."M"
  4765. elseif len(Bounty) == 8 then
  4766. Bounty1 = sub(Bounty,1,2).."."..sub(Bounty,3,4).."M"
  4767. elseif len(Bounty) <= 3 then
  4768. Bounty1 = Bounty
  4769. end
  4770. if tonumber(Bounty) == 25000000 then
  4771. Current:Set("Current Bounties : "..Bounty1.." [ Max ]")
  4772. elseif tonumber(Bounty) < 25000000 then
  4773. Current:Set("Current Bounties : "..Bounty1)
  4774. end
  4775. end)
  4776. end
  4777. end)
  4778.  
  4779. local Earn = Combat:AddLabel("Earned")
  4780. local OldBounty = game:GetService("Players").LocalPlayer.leaderstats["Bounty/Honor"].Value
  4781. local Bounty = tostring(game:GetService("Players").LocalPlayer.leaderstats["Bounty/Honor"].Value)
  4782. local Earned = tostring(game:GetService("Players").LocalPlayer.leaderstats["Bounty/Honor"].Value - OldBounty)
  4783. local sub = string.sub
  4784. local len = string.len
  4785. spawn(function()
  4786. while wait() do
  4787. pcall(function()
  4788. if len(Earned) == 4 then
  4789. Earned1 = sub(Earned,1,1).."."..sub(Earned,2,3).."K"
  4790. elseif len(Earned) == 5 then
  4791. Earned1 = sub(Earned,1,2).."."..sub(Earned,3,4).."K"
  4792. elseif len(Earned) == 6 then
  4793. Earned1 = sub(Earned,1,3).."."..sub(Earned,4,5).."K"
  4794. elseif len(Earned) == 7 then
  4795. Earned1 = sub(Earned,1,1).."."..sub(Earned,2,3).."M"
  4796. elseif len(Earned) == 8 then
  4797. Earned1 = sub(Earned,1,2).."."..sub(Earned,3,4).."M"
  4798. elseif len(Earned) <= 3 then
  4799. Earned1 = Earned
  4800. end
  4801. Earn:Set("Earned : "..tonumber(Earned1))
  4802. end)
  4803. end
  4804. end)
  4805.  
  4806. Combat:AddToggle("Auto Farm Bounty",_G.AutoFarmBounty,function(value)
  4807. _G.AutoFarmBounty = value
  4808. StopTween(_G.AutoFarmBounty)
  4809. end)
  4810.  
  4811. spawn(function()
  4812. while wait() do
  4813. pcall(function()
  4814. if _G.AutoFarmBounty then
  4815. for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetChildren()) do
  4816. if v:IsA("Shirt") then
  4817. v:Destroy()
  4818. end
  4819. if v:IsA("Pants") then
  4820. v:Destroy()
  4821. end
  4822. if v:IsA("Accessory") then
  4823. v:Destroy()
  4824. end
  4825. end
  4826. end
  4827. end)
  4828. end
  4829. end)
  4830.  
  4831. spawn(function()
  4832. pcall(function()
  4833. if _G.AutoFarmBounty then
  4834. while wait() do
  4835. if game.Players.LocalPlayer.Character.Humanoid.Health > 0 then
  4836. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetSpawnPoint")
  4837. end
  4838. end
  4839. end
  4840. end)
  4841. end)
  4842.  
  4843. spawn(function()
  4844. while wait() do
  4845. pcall(function()
  4846. if _G.AutoFarmBounty then
  4847. if not game:GetService("Players").LocalPlayer.Character:FindFirstChild("HasBuso") then
  4848. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Buso")
  4849. end
  4850. end
  4851. end)
  4852. end
  4853. end)
  4854.  
  4855. spawn(function()
  4856. while task.wait() do
  4857. pcall(function()
  4858. if _G.AutoFarmBounty then
  4859. game:GetService("Players").LocalPlayer.Character[SelectWeaponGun].Cooldown.Value = 0
  4860. spawn(function()
  4861. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Beli.Visible = false
  4862. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.HP.Visible = false
  4863. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Energy.Visible = false
  4864. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.StatsButton.Visible = false
  4865. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.ShopButton.Visible = false
  4866. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Skills.Visible = false
  4867. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Level.Visible = false
  4868. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.MenuButton.Visible = false
  4869. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Code.Visible = false
  4870. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Settings.Visible = false
  4871. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Mute.Visible = false
  4872. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.CrewButton.Visible = false
  4873. game.Players.LocalPlayer.Character.Animate.Disabled = true
  4874. end)
  4875. end
  4876. end)
  4877. end
  4878. end)
  4879. CastlePostoMansion = CFrame.new(-5084.8447265625, 316.48101806641, -3145.3752441406)
  4880. MansiontoCastlePos = CFrame.new(-12464.596679688, 376.30590820312, -7567.2626953125)
  4881. Castletophydra = CFrame.new(-5095.33984375, 316.48101806641, -3168.3134765625)
  4882. HydratoCastle = CFrame.new(5741.869140625, 611.94750976562, -282.61154174805)
  4883. spawn(function()
  4884. while wait() do
  4885. pcall(function()
  4886. if _G.AutoFarmBounty then
  4887. for i,v in pairs(game:GetService("Workspace").Characters:GetChildren()) do
  4888. if v.Name ~= game.Players.LocalPlayer.Name then
  4889. if v:WaitForChild("Humanoid").Health > 0 and (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - v.HumanoidRootPart.Position).Magnitude <= 17000 then
  4890. plyselecthunthelpold = v.Humanoid.Health
  4891. repeat task.wait()
  4892. EquipWeapon(SelectWeaponGun)
  4893. NameTarget = v.Name
  4894. if tostring(game.Players.LocalPlayer.Team) == "Pirates" then
  4895. topos(v.HumanoidRootPart.CFrame * CFrame.new(0,60,-20))
  4896. elseif tostring(game.Players.LocalPlayer.Team) == "Marines" then
  4897. if game.Players[NameTarget].Team ~= game.Players.LocalPlayer.Team then
  4898. topos(v.HumanoidRootPart.CFrame * CFrame.new(0,60,-20))
  4899. end
  4900. end
  4901. spawn(function()
  4902. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 150 then
  4903. StartCheckTarget = true
  4904. end
  4905. end)
  4906. v.HumanoidRootPart.CanCollide = false
  4907. spawn(function()
  4908. pcall(function()
  4909. local args = {
  4910. [1] = v.HumanoidRootPart.Position,
  4911. [2] = v.HumanoidRootPart
  4912. }
  4913. game:GetService("Players").LocalPlayer.Character[SelectWeaponGun].RemoteFunctionShoot:InvokeServer(unpack(args))
  4914. end)
  4915. end)
  4916. TargetSelectHunt = v.Humanoid
  4917. until _G.AutoFarmBounty == false or v.Humanoid.Health == 0 or not v:FindFirstChild("HumanoidRootPart") or not v:FindFirstChild("Humanoid") or not v.Parent or NextplySelect == true
  4918. NextplySelect = false
  4919. StartCheckTarget = false
  4920. end
  4921. end
  4922. end
  4923. end
  4924. end)
  4925. end
  4926. end)
  4927.  
  4928. spawn(function()
  4929. pcall(function()
  4930. while task.wait() do
  4931. if _G.AutoFarmBounty then
  4932. game:GetService("Players").LocalPlayer.PlayerGui.Main.InCombat.Visible = false
  4933. game:GetService("Players").LocalPlayer.PlayerGui.Main.SafeZone.Visible = false
  4934. end
  4935. end
  4936. end)
  4937. end)
  4938.  
  4939. spawn(function()
  4940. pcall(function()
  4941. while wait() do
  4942. if _G.AutoFarmBounty then
  4943. if TargetSelectHunt ~= nil then
  4944. if StartCheckTarget then
  4945. wait(6.5)
  4946. if TargetSelectHunt.Health == TargetSelectHunt.MaxHealth or TargetSelectHunt.Health >= plyselecthunthelpold then
  4947. NextplySelect = true
  4948. TargetSelectHunt = nil
  4949. end
  4950. end
  4951. end
  4952. end
  4953. end
  4954. end)
  4955. end)
  4956.  
  4957. spawn(function()
  4958. pcall(function()
  4959. while wait(.1) do
  4960. if _G.AutoFarmBounty then
  4961. if game:GetService("Players").LocalPlayer.PlayerGui.Main.PvpDisabled.Visible == true then
  4962. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("EnablePvp")
  4963. end
  4964. end
  4965. end
  4966. end)
  4967. end)
  4968.  
  4969. Combat:AddToggle("Auto Farm Bounty Hop",_G.AutoFarmBounty_Hop,function(value)
  4970. _G.AutoFarmBounty_Hop = value
  4971. end)
  4972.  
  4973. spawn(function()
  4974. while wait() do
  4975. if _G.AutoFarmBounty then
  4976. if _G.AutoFarmBounty_Hop then
  4977. pcall(function()
  4978. wait(120)
  4979. Hop()
  4980. end)
  4981. end
  4982. end
  4983. end
  4984. end)
  4985.  
  4986. Combat:AddSeperator("Misc Bounty")
  4987.  
  4988. Combat:AddButton("Next Player",function()
  4989. NextplySelect = true
  4990. wait(.1)
  4991. NextplySelect = false
  4992. end)
  4993.  
  4994. Combat:AddSlider("Lock Bounty",1,25000000,750000,function(value)
  4995. _G.BountyLock = value
  4996. end)
  4997.  
  4998. Combat:AddToggle("Start Bounty Lock",false,function(value)
  4999. _G.StartBountyLock = value
  5000. end)
  5001.  
  5002. spawn(function()
  5003. while wait() do
  5004. if _G.StartBountyLock then
  5005. pcall(function()
  5006. if game:GetService("Players").LocalPlayer.leaderstats["Bounty/Honor"].Value >= _G.BountyLock then
  5007. game:GetService("Players").LocalPlayer:Kick("Successfully! Bounty Farm")
  5008. end
  5009. end)
  5010. end
  5011. end
  5012. end)
  5013.  
  5014. Stats:AddSeperator("Auto Stats")
  5015.  
  5016. local Pointstat = Stats:AddLabel("Stat Points")
  5017.  
  5018. spawn(function()
  5019. while wait() do
  5020. pcall(function()
  5021. Pointstat:Set("Stat Points : "..tostring(game:GetService("Players")["LocalPlayer"].Data.Points.Value))
  5022. end)
  5023. end
  5024. end)
  5025.  
  5026. Stats:AddToggle("Auto Melee",_G.Auto_Melee,function(value)
  5027. _G.Auto_Melee = value
  5028. end)
  5029.  
  5030. Stats:AddToggle("Auto Defense",_G.Auto_Defense,function(value)
  5031. _G.Auto_Defense = value
  5032. end)
  5033.  
  5034. Stats:AddToggle("Auto Sword",_G.Auto_Sword,function(value)
  5035. _G.Auto_Sword = value
  5036. end)
  5037.  
  5038. Stats:AddToggle("Auto Gun",_G.Auto_Gun,function(value)
  5039. _G.Auto_Gun = value
  5040. end)
  5041.  
  5042. Stats:AddToggle("Auto Devil Fruits",_G.Auto_DevilFruit,function(value)
  5043. _G.Auto_DevilFruit = value
  5044. end)
  5045.  
  5046. _G.PointStats = 1
  5047. Stats:AddSlider("Select Point",1,100,1,function(value)
  5048. _G.PointStats = value
  5049. end)
  5050.  
  5051. spawn(function()
  5052. while wait() do
  5053. pcall(function()
  5054. if _G.Auto_Melee then
  5055. if game:GetService("Players")["LocalPlayer"].Data.Points.Value ~= 0 then
  5056. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AddPoint","Melee",_G.PointStats)
  5057. end
  5058. end
  5059. end)
  5060. end
  5061. end)
  5062.  
  5063. spawn(function()
  5064. while wait() do
  5065. pcall(function()
  5066. if _G.Auto_Defense then
  5067. if game:GetService("Players")["LocalPlayer"].Data.Points.Value ~= 0 then
  5068. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AddPoint","Defense",_G.PointStats)
  5069. end
  5070. end
  5071. end)
  5072. end
  5073. end)
  5074.  
  5075. spawn(function()
  5076. while wait() do
  5077. pcall(function()
  5078. if _G.Auto_Sword then
  5079. if game:GetService("Players")["LocalPlayer"].Data.Points.Value ~= 0 then
  5080. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AddPoint","Sword",_G.PointStats)
  5081. end
  5082. end
  5083. end)
  5084. end
  5085. end)
  5086.  
  5087. spawn(function()
  5088. while wait() do
  5089. pcall(function()
  5090. if _G.Auto_Gun then
  5091. if game:GetService("Players")["LocalPlayer"].Data.Points.Value ~= 0 then
  5092. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AddPoint","Gun",_G.PointStats)
  5093. end
  5094. end
  5095. end)
  5096. end
  5097. end)
  5098.  
  5099. spawn(function()
  5100. while wait() do
  5101. pcall(function()
  5102. if _G.Auto_DevilFruit then
  5103. if game:GetService("Players")["LocalPlayer"].Data.Points.Value ~= 0 then
  5104. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AddPoint","Devil Fruit",_G.PointStats)
  5105. end
  5106. end
  5107. end)
  5108. end
  5109. end)
  5110.  
  5111. Stats:AddSeperator("Status")
  5112.  
  5113. local locallv = Stats:AddLabel("Level")
  5114.  
  5115. spawn(function()
  5116. while wait() do
  5117. pcall(function()
  5118. locallv:Set("Level :".." "..game:GetService("Players").LocalPlayer.Data.Level.Value)
  5119. end)
  5120. end
  5121. end)
  5122.  
  5123. local localrace = Stats:AddLabel("Race")
  5124.  
  5125. spawn(function()
  5126. while wait() do
  5127. pcall(function()
  5128. localrace:Set("Race :".." "..game:GetService("Players").LocalPlayer.Data.Race.Value)
  5129. end)
  5130. end
  5131. end)
  5132.  
  5133. local localbeli = Stats:AddLabel("Beli")
  5134.  
  5135. spawn(function()
  5136. while wait() do
  5137. pcall(function()
  5138. localbeli:Set("Beli :".." "..game:GetService("Players").LocalPlayer.Data.Beli.Value)
  5139. end)
  5140. end
  5141. end)
  5142.  
  5143. local localfrag = Stats:AddLabel("Fragment")
  5144.  
  5145. spawn(function()
  5146. while wait() do
  5147. pcall(function()
  5148. localfrag:Set("Fragments :".." "..game:GetService("Players").LocalPlayer.Data.Fragments.Value)
  5149. end)
  5150. end
  5151. end)
  5152.  
  5153.  
  5154. local localexp = Stats:AddLabel("ExP")
  5155.  
  5156. spawn(function()
  5157. while wait() do
  5158. pcall(function()
  5159. localexp:Set("ExP Points :".." "..game:GetService("Players").LocalPlayer.Data.Exp.Value)
  5160. end)
  5161. end
  5162. end)
  5163.  
  5164. local localstat = Stats:AddLabel("Stats Points")
  5165.  
  5166. spawn(function()
  5167. while wait() do
  5168. pcall(function()
  5169. localstat:Set("Stats Points :".." "..game:GetService("Players").LocalPlayer.Data.Points.Value)
  5170. end)
  5171. end
  5172. end)
  5173.  
  5174. local localbountyhornor = Stats:AddLabel("Bounty")
  5175.  
  5176. spawn(function()
  5177. while wait() do
  5178. pcall(function()
  5179. localbountyhornor:Set("Bounty / Honor :".." "..game:GetService("Players").LocalPlayer.leaderstats["Bounty/Honor"].Value)
  5180. end)
  5181. end
  5182. end)
  5183.  
  5184. local localDevil = Stats:AddLabel("Devil Fruit")
  5185.  
  5186. spawn(function()
  5187. while wait() do
  5188. pcall(function()
  5189. if game:GetService("Players").LocalPlayer.Character:FindFirstChild(game:GetService("Players").LocalPlayer.Data.DevilFruit.Value) or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild(game:GetService("Players").LocalPlayer.Data.DevilFruit.Value) then
  5190. localDevil:Set("Devil Fruit :".." "..game:GetService("Players").LocalPlayer.Data.DevilFruit.Value)
  5191. else
  5192. localDevil:Set("Not Have Devil Fruit")
  5193. end
  5194. end)
  5195. end
  5196. end)
  5197.  
  5198. Stats:AddSeperator("Fake")
  5199.  
  5200. Stats:AddToggle("Enabled Fake",_G.EnabledStat,function(value)
  5201. _G.EnabledStat = value
  5202. end)
  5203.  
  5204. Stats:AddTextbox("Level","",true,function(value)
  5205. if _G.EnabledStat then
  5206. game:GetService("Players")["LocalPlayer"].Data.Level.Value = tonumber(value)
  5207. end
  5208. end)
  5209.  
  5210. Stats:AddTextbox("Exp ","",true,function(value)
  5211. if _G.EnabledStat then
  5212. game:GetService("Players")["LocalPlayer"].Data.Exp.Value = tonumber(value)
  5213. end
  5214. end)
  5215.  
  5216. Stats:AddTextbox("Beli","",true,function(value)
  5217. if _G.EnabledStat then
  5218. game:GetService("Players")["LocalPlayer"].Data.Beli.Value = tonumber(value)
  5219. end
  5220. end)
  5221.  
  5222. Stats:AddTextbox("Fragments","",true,function(value)
  5223. if _G.EnabledStat then
  5224. game:GetService("Players")["Localplayer"].Data.Fragments.Value = tonumber(value)
  5225. end
  5226. end)
  5227.  
  5228. Stats:AddTextbox("Melee","",true,function(value)
  5229. if _G.EnabledStat then
  5230. game:GetService("Players")["LocalPlayer"].Data.Stats.Melee.Level.Value = tonumber(value)
  5231. end
  5232. end)
  5233.  
  5234. Stats:AddTextbox("Defense","",true,function(value)
  5235. if _G.EnabledStat then
  5236. game:GetService("Players")["LocalPlayer"].Data.Stats.Defense.Level.Value = tonumber(value)
  5237. end
  5238. end)
  5239.  
  5240. Stats:AddTextbox("Sword","",true,function(value)
  5241. if _G.EnabledStat then
  5242. game:GetService("Players")["LocalPlayer"].Data.Stats.Sword.Level.Value = tonumber(value)
  5243. end
  5244. end)
  5245.  
  5246. Stats:AddTextbox("Gun","",true,function(value)
  5247. if _G.EnabledStat then
  5248. game:GetService("Players")["LocalPlayer"].Data.Stats.Gun.Level.Value = tonumber(value)
  5249. end
  5250. end)
  5251. Stats:AddTextbox("Fruit","",true,function(value)
  5252. if _G.EnabledStat then
  5253. game:GetService("Players")["LocalPlayer"].Data.Stats["Demon Fruit"].Level.Value = tonumber(value)
  5254. end
  5255. end)
  5256.  
  5257. Stats:AddTextbox("Bounty","",true,function(value)
  5258. if _G.EnabledStat then
  5259. game:GetService("Players")["LocalPlayer"].leaderstats["Bounty/Honor"].Value = tonumber(value)
  5260. end
  5261. end)
  5262.  
  5263. Teleport:AddSeperator("World - Monster")
  5264.  
  5265. Teleport:AddButton("Teleport To Old World",function()
  5266. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelMain")
  5267. end)
  5268.  
  5269. Teleport:AddButton("Teleport To Second Sea",function()
  5270. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelDressrosa")
  5271. end)
  5272.  
  5273. Teleport:AddButton("Teleport To Third Sea",function()
  5274. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelZou")
  5275. end)
  5276.  
  5277. Teleport:AddButton("Teleport to Seabeast",function()
  5278. for i,v in pairs(game:GetService("Workspace").SeaBeasts:GetChildren()) do
  5279. if v:FindFirstChild("HumanoidRootPart") then
  5280. topos(v.HumanoidRootPart.CFrame*CFrame.new(0,100,0))
  5281. end
  5282. end
  5283. end)
  5284.  
  5285. Teleport:AddSeperator("Island")
  5286.  
  5287. if World1 then
  5288. Teleport:AddDropdown("Select Island",{
  5289. "WindMill",
  5290. "Marine",
  5291. "Middle Town",
  5292. "Jungle",
  5293. "Pirate Village",
  5294. "Desert",
  5295. "Snow Island",
  5296. "MarineFord",
  5297. "Colosseum",
  5298. "Sky Island 1",
  5299. "Sky Island 2",
  5300. "Sky Island 3",
  5301. "Prison",
  5302. "Magma Village",
  5303. "Under Water Island",
  5304. "Fountain City",
  5305. "Shank Room",
  5306. "Mob Island"
  5307. },function(value)
  5308. _G.SelectIsland = value
  5309. end)
  5310. end
  5311.  
  5312. if World2 then
  5313. Teleport:AddDropdown("Select Island",{
  5314. "The Cafe",
  5315. "Frist Spot",
  5316. "Dark Area",
  5317. "Flamingo Mansion",
  5318. "Flamingo Room",
  5319. "Green Zone",
  5320. "Factory",
  5321. "Colossuim",
  5322. "Zombie Island",
  5323. "Two Snow Mountain",
  5324. "Punk Hazard",
  5325. "Cursed Ship",
  5326. "Ice Castle",
  5327. "Forgotten Island",
  5328. "Ussop Island",
  5329. "Mini Sky Island"
  5330. },function(value)
  5331. _G.SelectIsland = value
  5332. end)
  5333. end
  5334.  
  5335. if World3 then
  5336. Teleport:AddDropdown("Select Island",{
  5337. "Mansion",
  5338. "Port Town",
  5339. "Great Tree",
  5340. "Castle On The Sea",
  5341. "MiniSky",
  5342. "Hydra Island",
  5343. "Floating Turtle",
  5344. "Haunted Castle",
  5345. "Ice Cream Island",
  5346. "Peanut Island",
  5347. "Cake Island"
  5348. },function(value)
  5349. _G.SelectIsland = value
  5350. end)
  5351. end
  5352.  
  5353. Teleport:AddToggle("Teleport",false,function(value)
  5354. _G.TeleportIsland = value
  5355. if _G.TeleportIsland == true then
  5356. repeat wait()
  5357. if _G.SelectIsland == "WindMill" then
  5358. topos(CFrame.new(979.79895019531, 16.516613006592, 1429.0466308594))
  5359. elseif _G.SelectIsland == "Marine" then
  5360. topos(CFrame.new(-2566.4296875, 6.8556680679321, 2045.2561035156))
  5361. elseif _G.SelectIsland == "Middle Town" then
  5362. topos(CFrame.new(-690.33081054688, 15.09425163269, 1582.2380371094))
  5363. elseif _G.SelectIsland == "Jungle" then
  5364. topos(CFrame.new(-1612.7957763672, 36.852081298828, 149.12843322754))
  5365. elseif _G.SelectIsland == "Pirate Village" then
  5366. topos(CFrame.new(-1181.3093261719, 4.7514905929565, 3803.5456542969))
  5367. elseif _G.SelectIsland == "Desert" then
  5368. topos(CFrame.new(944.15789794922, 20.919729232788, 4373.3002929688))
  5369. elseif _G.SelectIsland == "Snow Island" then
  5370. topos(CFrame.new(1347.8067626953, 104.66806030273, -1319.7370605469))
  5371. elseif _G.SelectIsland == "MarineFord" then
  5372. topos(CFrame.new(-4914.8212890625, 50.963626861572, 4281.0278320313))
  5373. elseif _G.SelectIsland == "Colosseum" then
  5374. topos( CFrame.new(-1427.6203613281, 7.2881078720093, -2792.7722167969))
  5375. elseif _G.SelectIsland == "Sky Island 1" then
  5376. topos(CFrame.new(-4869.1025390625, 733.46051025391, -2667.0180664063))
  5377. elseif _G.SelectIsland == "Sky Island 2" then
  5378. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-4607.82275, 872.54248, -1667.55688))
  5379. elseif _G.SelectIsland == "Sky Island 3" then
  5380. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-7894.6176757813, 5547.1416015625, -380.29119873047))
  5381. elseif _G.SelectIsland == "Prison" then
  5382. topos( CFrame.new(4875.330078125, 5.6519818305969, 734.85021972656))
  5383. elseif _G.SelectIsland == "Magma Village" then
  5384. topos(CFrame.new(-5247.7163085938, 12.883934020996, 8504.96875))
  5385. elseif _G.SelectIsland == "Under Water Island" then
  5386. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(61163.8515625, 11.6796875, 1819.7841796875))
  5387. elseif _G.SelectIsland == "Fountain City" then
  5388. topos(CFrame.new(5127.1284179688, 59.501365661621, 4105.4458007813))
  5389. elseif _G.SelectIsland == "Shank Room" then
  5390. topos(CFrame.new(-1442.16553, 29.8788261, -28.3547478))
  5391. elseif _G.SelectIsland == "Mob Island" then
  5392. topos(CFrame.new(-2850.20068, 7.39224768, 5354.99268))
  5393. elseif _G.SelectIsland == "The Cafe" then
  5394. topos(CFrame.new(-380.47927856445, 77.220390319824, 255.82550048828))
  5395. elseif _G.SelectIsland == "Frist Spot" then
  5396. topos(CFrame.new(-11.311455726624, 29.276733398438, 2771.5224609375))
  5397. elseif _G.SelectIsland == "Dark Area" then
  5398. topos(CFrame.new(3780.0302734375, 22.652164459229, -3498.5859375))
  5399. elseif _G.SelectIsland == "Flamingo Mansion" then
  5400. topos(CFrame.new(-483.73370361328, 332.0383605957, 595.32708740234))
  5401. elseif _G.SelectIsland == "Flamingo Room" then
  5402. topos(CFrame.new(2284.4140625, 15.152037620544, 875.72534179688))
  5403. elseif _G.SelectIsland == "Green Zone" then
  5404. topos( CFrame.new(-2448.5300292969, 73.016105651855, -3210.6306152344))
  5405. elseif _G.SelectIsland == "Factory" then
  5406. topos(CFrame.new(424.12698364258, 211.16171264648, -427.54049682617))
  5407. elseif _G.SelectIsland == "Colossuim" then
  5408. topos( CFrame.new(-1503.6224365234, 219.7956237793, 1369.3101806641))
  5409. elseif _G.SelectIsland == "Zombie Island" then
  5410. topos(CFrame.new(-5622.033203125, 492.19604492188, -781.78552246094))
  5411. elseif _G.SelectIsland == "Two Snow Mountain" then
  5412. topos(CFrame.new(753.14288330078, 408.23559570313, -5274.6147460938))
  5413. elseif _G.SelectIsland == "Punk Hazard" then
  5414. topos(CFrame.new(-6127.654296875, 15.951762199402, -5040.2861328125))
  5415. elseif _G.SelectIsland == "Cursed Ship" then
  5416. topos(CFrame.new(923.40197753906, 125.05712890625, 32885.875))
  5417. elseif _G.SelectIsland == "Ice Castle" then
  5418. topos(CFrame.new(6148.4116210938, 294.38687133789, -6741.1166992188))
  5419. elseif _G.SelectIsland == "Forgotten Island" then
  5420. topos(CFrame.new(-3032.7641601563, 317.89672851563, -10075.373046875))
  5421. elseif _G.SelectIsland == "Ussop Island" then
  5422. topos(CFrame.new(4816.8618164063, 8.4599885940552, 2863.8195800781))
  5423. elseif _G.SelectIsland == "Mini Sky Island" then
  5424. topos(CFrame.new(-288.74060058594, 49326.31640625, -35248.59375))
  5425. elseif _G.SelectIsland == "Great Tree" then
  5426. topos(CFrame.new(2681.2736816406, 1682.8092041016, -7190.9853515625))
  5427. elseif _G.SelectIsland == "Castle On The Sea" then
  5428. topos(CFrame.new(-5074.45556640625, 314.5155334472656, -2991.054443359375))
  5429. elseif _G.SelectIsland == "MiniSky" then
  5430. topos(CFrame.new(-260.65557861328, 49325.8046875, -35253.5703125))
  5431. elseif _G.SelectIsland == "Port Town" then
  5432. topos(CFrame.new(-290.7376708984375, 6.729952812194824, 5343.5537109375))
  5433. elseif _G.SelectIsland == "Hydra Island" then
  5434. topos(CFrame.new(5228.8842773438, 604.23400878906, 345.0400390625))
  5435. elseif _G.SelectIsland == "Floating Turtle" then
  5436. topos(CFrame.new(-13274.528320313, 531.82073974609, -7579.22265625))
  5437. elseif _G.SelectIsland == "Mansion" then
  5438. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-12471.169921875, 374.94024658203, -7551.677734375))
  5439. elseif _G.SelectIsland == "Haunted Castle" then
  5440. topos(CFrame.new(-9515.3720703125, 164.00624084473, 5786.0610351562))
  5441. elseif _G.SelectIsland == "Ice Cream Island" then
  5442. topos(CFrame.new(-902.56817626953, 79.93204498291, -10988.84765625))
  5443. elseif _G.SelectIsland == "Peanut Island" then
  5444. topos(CFrame.new(-2062.7475585938, 50.473892211914, -10232.568359375))
  5445. elseif _G.SelectIsland == "Cake Island" then
  5446. topos(CFrame.new(-1884.7747802734375, 19.327526092529297, -11666.8974609375))
  5447. end
  5448. until not _G.TeleportIsland
  5449. end
  5450. StopTween(_G.TeleportIsland)
  5451. end)
  5452.  
  5453. Dungeon:AddLine()
  5454.  
  5455. local TimeRaid = Dungeon:AddLabel("Wait For Dungeon")
  5456.  
  5457. spawn(function()
  5458. pcall(function()
  5459. while wait() do
  5460. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Timer.Visible == true then
  5461. TimeRaid:Set(game:GetService("Players").LocalPlayer.PlayerGui.Main.Timer.Text)
  5462. else
  5463. TimeRaid:Set("Wait For Dungeon")
  5464. end
  5465. end
  5466. end)
  5467. end)
  5468.  
  5469. Dungeon:AddToggle("Auto Farm Dungeon",_G.Auto_Dungeon,function(value)
  5470. _G.Auto_Dungeon = value
  5471. StopTween(_G.Auto_Dungeon)
  5472. end)
  5473.  
  5474. spawn(function()
  5475. pcall(function()
  5476. while wait() do
  5477. if _G.Auto_Dungeon then
  5478. if game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Timer.Visible == true then
  5479. for i,v in pairs(game:GetService("Workspace").Enemies:GetDescendants()) do
  5480. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  5481. pcall(function()
  5482. repeat wait()
  5483. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  5484. v.Humanoid.Health = 0
  5485. v.HumanoidRootPart.CanCollide = false
  5486. until not _G.Auto_Dungeon or not v.Parent or v.Humanoid.Health <= 0
  5487. end)
  5488. end
  5489. end
  5490. end
  5491. end
  5492. end
  5493. end)
  5494. end)
  5495.  
  5496. spawn(function()
  5497. pcall(function()
  5498. while wait() do
  5499. if _G.Auto_Dungeon then
  5500. if game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Timer.Visible == true then
  5501. if game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 5") then
  5502. topos(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 5").CFrame*CFrame.new(0,80,100))
  5503. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 4") then
  5504. topos(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 4").CFrame*CFrame.new(0,80,100))
  5505. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 3") then
  5506. topos(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 3").CFrame*CFrame.new(0,80,100))
  5507. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 2") then
  5508. topos(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 2").CFrame*CFrame.new(0,80,100))
  5509. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
  5510. topos(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1").CFrame*CFrame.new(0,80,100))
  5511. end
  5512. end
  5513. end
  5514. end
  5515. end)
  5516. end)
  5517.  
  5518. Dungeon:AddToggle("Auto Awakener",_G.Auto_Awakener,function(value)
  5519. _G.Auto_Awakener = value
  5520. end)
  5521.  
  5522. spawn(function()
  5523. pcall(function()
  5524. while wait(.1) do
  5525. if _G.Auto_Awakener then
  5526. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Awakener","Check")
  5527. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Awakener","Awaken")
  5528. end
  5529. end
  5530. end)
  5531. end)
  5532.  
  5533. Dungeon:AddLine()
  5534.  
  5535. Dungeon:AddDropdown("Select Chips",{"Flame","Ice","Quake","Light","Dark","String","Rumble","Magma","Human: Buddha","Sand","Bird: Phoenix"},function(value)
  5536. _G.SelectChip = value
  5537. end)
  5538.  
  5539. Dungeon:AddToggle("Auto Select Dungeon",_G.AutoSelectDungeon,function(value)
  5540. _G.AutoSelectDungeon = value
  5541. end)
  5542.  
  5543. spawn(function()
  5544. while wait() do
  5545. if _G.AutoSelectDungeon then
  5546. pcall(function()
  5547. if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Flame-Flame") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Flame-Flame") then
  5548. _G.SelectChip = "Flame"
  5549. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Ice-Ice") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Ice-Ice") then
  5550. _G.SelectChip = "Ice"
  5551. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Quake-Quake") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Quake-Quake") then
  5552. _G.SelectChip = "Quake"
  5553. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Light-Light") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Light-Light") then
  5554. _G.SelectChip = "Light"
  5555. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Dark-Dark") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Dark-Dark") then
  5556. _G.SelectChip = "Dark"
  5557. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("String-String") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("String-String") then
  5558. _G.SelectChip = "String"
  5559. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Rumble-Rumble") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Rumble-Rumble") then
  5560. _G.SelectChip = "Rumble"
  5561. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Magma-Magma") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Magma-Magma") then
  5562. _G.SelectChip = "Magma"
  5563. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Human-Human: Buddha Fruit") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Human-Human: Buddha Fruit") then
  5564. _G.SelectChip = "Human: Buddha"
  5565. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Sand-Sand") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Sand-Sand") then
  5566. _G.SelectChip = "Sand"
  5567. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Bird-Bird: Phoenix") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Bird-Bird: Phoenix") then
  5568. _G.SelectChip = "Bird: Phoenix"
  5569. else
  5570. _G.SelectChip = "Flame"
  5571. end
  5572. end)
  5573. end
  5574. end
  5575. end)
  5576.  
  5577. Dungeon:AddToggle("Auto Buy Chip",_G.AutoBuyChip,function(value)
  5578. _G.AutoBuyChip = value
  5579. end)
  5580.  
  5581. spawn(function()
  5582. pcall(function()
  5583. while wait() do
  5584. if _G.AutoBuyChip then
  5585. if not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Special Microchip") or not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Special Microchip") then
  5586. if not game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
  5587. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("RaidsNpc", "Select", _G.SelectChip)
  5588. end
  5589. end
  5590. end
  5591. end
  5592. end)
  5593. end)
  5594.  
  5595. Dungeon:AddButton("Buy Chip Select",function()
  5596. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("RaidsNpc","Select",_G.SelectChip)
  5597. end)
  5598.  
  5599. Dungeon:AddToggle("Auto Start Raid",_G.Auto_StartRaid,function(value)
  5600. _G.Auto_StartRaid = value
  5601. end)
  5602.  
  5603. spawn(function()
  5604. while wait(.1) do
  5605. pcall(function()
  5606. if _G.Auto_StartRaid then
  5607. if game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Timer.Visible == false then
  5608. if not game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") and game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Special Microchip") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Special Microchip") then
  5609. if World2 then
  5610. fireclickdetector(game:GetService("Workspace").Map.CircleIsland.RaidSummon2.Button.Main.ClickDetector)
  5611. elseif World3 then
  5612. fireclickdetector(game:GetService("Workspace").Map["Boat Castle"].RaidSummon2.Button.Main.ClickDetector)
  5613. end
  5614. end
  5615. end
  5616. end
  5617. end)
  5618. end
  5619. end)
  5620.  
  5621. Dungeon:AddButton("Start Raid",function()
  5622. if World2 then
  5623. fireclickdetector(game:GetService("Workspace").Map.CircleIsland.RaidSummon2.Button.Main.ClickDetector)
  5624. elseif World3 then
  5625. fireclickdetector(game:GetService("Workspace").Map["Boat Castle"].RaidSummon2.Button.Main.ClickDetector)
  5626. end
  5627. end)
  5628.  
  5629. Dungeon:AddLine()
  5630.  
  5631. Dungeon:AddButton("Next Island",function()
  5632. pcall(function()
  5633. if game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 5") then
  5634. TP(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 5").CFrame*CFrame.new(0,70,100))
  5635. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 4") then
  5636. TP(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 4").CFrame*CFrame.new(0,70,100))
  5637. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 3") then
  5638. TP(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 3").CFrame*CFrame.new(0,70,100))
  5639. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 2") then
  5640. TP(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 2").CFrame*CFrame.new(0,70,100))
  5641. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
  5642. TP(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1").CFrame*CFrame.new(0,70,100))
  5643. end
  5644. end)
  5645. end)
  5646.  
  5647. if World2 then
  5648. Dungeon:AddButton("Teleport to Lab",function()
  5649. TP(CFrame.new(-6438.73535, 250.645355, -4501.50684))
  5650. end)
  5651. elseif World3 then
  5652. Dungeon:AddButton("Teleport to Lab",function()
  5653. TP(CFrame.new(-5017.40869, 314.844055, -2823.0127, -0.925743818, 4.48217499e-08, -0.378151238, 4.55503146e-09, 1, 1.07377559e-07, 0.378151238, 9.7681621e-08, -0.925743818))
  5654. end)
  5655. end
  5656.  
  5657. if World2 then
  5658. Dungeon:AddButton("Awakening Room",function()
  5659. TP(CFrame.new(266.227783, 1.39509034, 1857.00732))
  5660. end)
  5661. elseif World3 then
  5662. Dungeon:AddButton("Awakening Room",function()
  5663. TP(CFrame.new(-11571.440429688, 49.172668457031, -7574.7368164062))
  5664. end)
  5665. end
  5666.  
  5667. DevilFruit:AddSeperator("Sniper")
  5668.  
  5669. FruitList = {
  5670. "Bomb-Bomb",
  5671. "Spike-Spike",
  5672. "Chop-Chop",
  5673. "Spring-Spring",
  5674. "Kilo-Kilo",
  5675. "Spin-Spin",
  5676. "Bird: Falcon",
  5677. "Smoke-Smoke",
  5678. "Flame-Flame",
  5679. "Ice-Ice",
  5680. "Sand-Sand",
  5681. "Dark-Dark",
  5682. "Revive-Revive",
  5683. "Diamond-Diamond",
  5684. "Light-Light",
  5685. "Love-Love",
  5686. "Rubber-Rubber",
  5687. "Barrier-Barrier",
  5688. "Magma-Magma",
  5689. "Door-Door",
  5690. "Quake-Quake",
  5691. "Human-Human: Buddha",
  5692. "String-String",
  5693. "Bird-Bird: Phoenix",
  5694. "Rumble-Rumble",
  5695. "Paw-Paw",
  5696. "Gravity-Gravity",
  5697. "Dough-Dough",
  5698. "Venom-Venom",
  5699. "Shadow-Shadow",
  5700. "Control-Control",
  5701. "Soul-Soul",
  5702. "Dragon-Dragon"
  5703. }
  5704.  
  5705. _G.SelectFruit = ""
  5706. DevilFruit:AddDropdown("Select Fruits Sniper",FruitList,function(value)
  5707. _G.SelectFruit = value
  5708. end)
  5709.  
  5710. DevilFruit:AddToggle("Auto Buy Fruit Sniper",_G.AutoBuyFruitSniper,function(value)
  5711. _G.AutoBuyFruitSniper = value
  5712. end)
  5713.  
  5714. DevilFruit:AddSeperator("Others")
  5715.  
  5716. DevilFruit:AddDropdown("Select Fruits Eat",FruitList,function(value)
  5717. _G.SelectFruitEat = value
  5718. end)
  5719.  
  5720. DevilFruit:AddToggle("Auto Eat Fruit",_G.AutoEatFruit,function(value)
  5721. _G.AutoEatFruit = value
  5722. end)
  5723.  
  5724. spawn(function()
  5725. pcall(function()
  5726. while wait(.1) do
  5727. if _G.AutoEatFruit then
  5728. game:GetService("Players").LocalPlayer.Character:FindFirstChild(_G.SelectFruitEat).EatRemote:InvokeServer()
  5729. end
  5730. end
  5731. end)
  5732. end)
  5733.  
  5734. DevilFruit:AddToggle("Auto Eat Fruit Hop",_G.AutoEatFruitHop,function(value)
  5735. _G.AutoEatFruitHop = value
  5736. end)
  5737.  
  5738. spawn(function()
  5739. pcall(function()
  5740. while wait(.1) do wait(10)
  5741. if _G.AutoEatFruitHop and _G.SelectFruitEat ~= nil then
  5742. if not game:GetService("Players").LocalPlayer.Character:FindFirstChild(_G.SelectFruitEat) or not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild(_G.SelectFruitEat) then
  5743. Hop()
  5744. else
  5745. game:GetService("Players").LocalPlayer.Character:FindFirstChild(_G.SelectFruitEat).EatRemote:InvokeServer()
  5746. end
  5747. end
  5748. end
  5749. end)
  5750. end)
  5751.  
  5752. spawn(function()
  5753. pcall(function()
  5754. while wait(.1) do
  5755. if _G.AutoBuyFruitSniper then
  5756. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("GetFruits")
  5757. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("PurchaseRawFruit",_G.SelectFruit)
  5758. end
  5759. end
  5760. end)
  5761. end)
  5762.  
  5763. DevilFruit:AddToggle("Auto Random Fruit",_G.Random_Auto,function(value)
  5764. _G.Random_Auto = value
  5765. end)
  5766.  
  5767. spawn(function()
  5768. pcall(function()
  5769. while wait(.1) do
  5770. if _G.Random_Auto then
  5771. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Cousin","Buy")
  5772. end
  5773. end
  5774. end)
  5775. end)
  5776.  
  5777. DevilFruit:AddButton("Random Fruit",function()
  5778. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Cousin","Buy")
  5779. end)
  5780.  
  5781.  
  5782. DevilFruit:AddToggle("Auto Drop Fruit",_G.DropFruit,function(value)
  5783. _G.DropFruit = value
  5784. end)
  5785.  
  5786. spawn(function()
  5787. while wait() do
  5788. if _G.DropFruit then
  5789. pcall(function()
  5790. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  5791. if string.find(v.Name, "Fruit") then
  5792. EquipWeapon(v.Name)
  5793. wait(.1)
  5794. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Dialogue.Visible == true then
  5795. game:GetService("Players").LocalPlayer.PlayerGui.Main.Dialogue.Visible = false
  5796. end
  5797. EquipWeapon(v.Name)
  5798. game:GetService("Players").LocalPlayer.Character:FindFirstChild(SelectFruit).EatRemote:InvokeServer("Drop")
  5799. end
  5800. end
  5801. for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetChildren()) do
  5802. if string.find(v.Name, "Fruit") then
  5803. EquipWeapon(v.Name)
  5804. wait(.1)
  5805. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Dialogue.Visible == true then
  5806. game:GetService("Players").LocalPlayer.PlayerGui.Main.Dialogue.Visible = false
  5807. end
  5808. EquipWeapon(v.Name)
  5809. game:GetService("Players").LocalPlayer.Character:FindFirstChild(SelectFruit).EatRemote:InvokeServer("Drop")
  5810. end
  5811. end
  5812. end)
  5813. end
  5814. end
  5815. end)
  5816.  
  5817. DevilFruit:AddToggle("Auto Store Fruit",_G.AutoStoreFruit,function(value)
  5818. _G.AutoStoreFruit = value
  5819. end)
  5820.  
  5821. spawn(function()
  5822. pcall(function()
  5823. while wait(.1) do
  5824. if _G.AutoStoreFruit then
  5825. for i,v in pairs(FruitList) do
  5826. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StoreFruit",v)
  5827. end
  5828. end
  5829. end
  5830. end)
  5831. end)
  5832.  
  5833.  
  5834. DevilFruit:AddToggle("Grab Fruit",_G.BringFruit,function(value)
  5835. _G.BringFruit = value
  5836. pcall(function()
  5837. while _G.BringFruit do wait(.1)
  5838. for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
  5839. if v:IsA("Tool") then
  5840. local OldCFrame = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame
  5841. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.Handle.CFrame * CFrame.new(0,0,8)
  5842. v.Handle.CFrame = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame
  5843. wait(.1)
  5844. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = OldCFrame
  5845. end
  5846. end
  5847. end
  5848. end)
  5849. end)
  5850.  
  5851. Shop:AddSeperator("Abilities")
  5852.  
  5853. Shop:AddButton("Buy Geppo",function()
  5854. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyHaki","Geppo")
  5855. end)
  5856.  
  5857. Shop:AddButton("Buy Buso Haki",function()
  5858. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyHaki","Buso")
  5859. end)
  5860.  
  5861. Shop:AddButton("Buy Soru",function()
  5862. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyHaki","Soru")
  5863. end)
  5864.  
  5865. Shop:AddButton("Buy Observation(Ken) Haki",function()
  5866. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("KenTalk","Buy")
  5867. end)
  5868.  
  5869. Shop:AddSeperator("Fighting Style")
  5870.  
  5871. Shop:AddButton("Buy Black Leg",function()
  5872. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyBlackLeg")
  5873. end)
  5874.  
  5875. Shop:AddButton("Buy Electro",function()
  5876. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectro")
  5877. end)
  5878.  
  5879. Shop:AddButton("Buy Fishman Karate",function()
  5880. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyFishmanKarate")
  5881. end)
  5882.  
  5883. Shop:AddButton("Buy Dragon Claw",function()
  5884. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","DragonClaw","1")
  5885. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","DragonClaw","2")
  5886. end)
  5887.  
  5888. Shop:AddButton("Buy Superhuman",function()
  5889. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySuperhuman")
  5890. end)
  5891.  
  5892. Shop:AddButton("Buy Death Step",function()
  5893. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDeathStep")
  5894. end)
  5895.  
  5896. Shop:AddButton("Buy Sharkman Karate",function()
  5897. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySharkmanKarate",true)
  5898. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySharkmanKarate")
  5899. end)
  5900.  
  5901. Shop:AddButton("Buy Electric Claw",function()
  5902. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw")
  5903. end)
  5904.  
  5905. Shop:AddButton("Buy Dragon Talon",function()
  5906. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDragonTalon")
  5907. end)
  5908. -----Shop----------------
  5909. Shop:AddSeperator("Accessory")
  5910.  
  5911. Shop:AddButton("Tomoe Ring",function()
  5912. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Tomoe Ring")
  5913. end)
  5914.  
  5915. Shop:AddButton("Black Cape",function()
  5916. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Black Cape")
  5917. end)
  5918.  
  5919. Shop:AddButton("Swordsman Hat",function()
  5920. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Swordsman Hat")
  5921. end)
  5922.  
  5923. Shop:AddSeperator("Sword")
  5924.  
  5925. Shop:AddButton("Cutlass",function()
  5926. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Cutlass")
  5927. end)
  5928.  
  5929. Shop:AddButton("Katana",function()
  5930. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Katana")
  5931. end)
  5932.  
  5933. Shop:AddButton("Iron Mace",function()
  5934. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Iron Mace")
  5935. end)
  5936.  
  5937. Shop:AddButton("Duel Katana",function()
  5938. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Duel Katana")
  5939. end)
  5940.  
  5941. Shop:AddButton("Triple Katana", function()
  5942. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Triple Katana")
  5943. end)
  5944.  
  5945. Shop:AddButton("Pipe",function()
  5946. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Pipe")
  5947. end)
  5948.  
  5949. Shop:AddButton("Dual Headed Blade",function()
  5950. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Dual-Headed Blade")
  5951. end)
  5952.  
  5953. Shop:AddButton("Bisento",function()
  5954. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Bisento")
  5955. end)
  5956.  
  5957. Shop:AddButton("Soul Cane",function()
  5958. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Soul Cane")
  5959. end)
  5960.  
  5961. Shop:AddSeperator("Gun")
  5962.  
  5963. Shop:AddButton("Slingshot",function()
  5964. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Slingshot")
  5965. end)
  5966.  
  5967. Shop:AddButton("Musket",function()
  5968. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Musket")
  5969. end)
  5970.  
  5971. Shop:AddButton("Flintlock",function()
  5972. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Flintlock")
  5973. end)
  5974.  
  5975. Shop:AddButton("Refined Flintlock",function()
  5976. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Refined Flintlock")
  5977. end)
  5978.  
  5979. Shop:AddButton("Cannon",function()
  5980. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Cannon")
  5981. end)
  5982.  
  5983. Shop:AddButton("Kabucha",function()
  5984. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","Slingshot","1")
  5985. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","Slingshot","2")
  5986. end)
  5987. ------------Bone------------------
  5988.  
  5989. Shop:AddSeperator("Bones")
  5990.  
  5991. Shop:AddButton("Buy Surprise",function()
  5992. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Bones","Buy",1,1)
  5993. end)
  5994.  
  5995. Shop:AddButton("Stat Refund",function()
  5996. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Bones","Buy",1,2)
  5997. end)
  5998.  
  5999. Shop:AddButton("Race Reroll",function()
  6000. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Bones","Buy",1,3)
  6001. end)
  6002.  
  6003. Misc:AddSeperator("Server")
  6004.  
  6005. Misc:AddButton("Rejoin Server",function()
  6006. game:GetService("TeleportService"):Teleport(game.PlaceId, game:GetService("Players").LocalPlayer)
  6007. end)
  6008.  
  6009. Misc:AddButton("Server Hop",function()
  6010. Hop()
  6011. end)
  6012.  
  6013. Misc:AddButton("Hop To Lower Player",function()
  6014. getgenv().AutoTeleport = true
  6015. getgenv().DontTeleportTheSameNumber = true
  6016. getgenv().CopytoClipboard = false
  6017. if not game:IsLoaded() then
  6018. print("Game is loading waiting...")
  6019. end
  6020. local maxplayers = math.huge
  6021. local serversmaxplayer;
  6022. local goodserver;
  6023. local gamelink = "https://games.roblox.com/v1/games/" .. game.PlaceId .. "/servers/Public?sortOrder=Asc&limit=100"
  6024. function serversearch()
  6025. for _, v in pairs(game:GetService("HttpService"):JSONDecode(game:HttpGetAsync(gamelink)).data) do
  6026. if type(v) == "table" and v.playing ~= nil and maxplayers > v.playing then
  6027. serversmaxplayer = v.maxPlayers
  6028. maxplayers = v.playing
  6029. goodserver = v.id
  6030. end
  6031. end
  6032. end
  6033. function getservers()
  6034. serversearch()
  6035. for i,v in pairs(game:GetService("HttpService"):JSONDecode(game:HttpGetAsync(gamelink))) do
  6036. if i == "nextPageCursor" then
  6037. if gamelink:find("&cursor=") then
  6038. local a = gamelink:find("&cursor=")
  6039. local b = gamelink:sub(a)
  6040. gamelink = gamelink:gsub(b, "")
  6041. end
  6042. gamelink = gamelink .. "&cursor=" ..v
  6043. getservers()
  6044. end
  6045. end
  6046. end
  6047. getservers()
  6048. if AutoTeleport then
  6049. if DontTeleportTheSameNumber then
  6050. if #game:GetService("Players"):GetPlayers() - 4 == maxplayers then
  6051. return warn("It has same number of players (except you)")
  6052. elseif goodserver == game.JobId then
  6053. return warn("Your current server is the most empty server atm")
  6054. end
  6055. end
  6056. game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, goodserver)
  6057. end
  6058. end)
  6059.  
  6060. Misc:AddSeperator("Ui")
  6061.  
  6062. Misc:AddButton("Open Devil Shop",function()
  6063. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("GetFruits")
  6064. game:GetService("Players").LocalPlayer.PlayerGui.Main.FruitShop.Visible = true
  6065. end)
  6066.  
  6067. Misc:AddButton("Open Inventory",function()
  6068. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getInventoryWeapons")
  6069. wait(1)
  6070. game:GetService("Players").LocalPlayer.PlayerGui.Main.Inventory.Visible = true
  6071. end)
  6072.  
  6073. Misc:AddButton("Open Inventory Fruit",function()
  6074. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getInventoryFruits")
  6075. game:GetService("Players").LocalPlayer.PlayerGui.Main.FruitInventory.Visible = true
  6076. end)
  6077.  
  6078. Misc:AddToggle("Highlight Mode",false,function(value)
  6079. if value == true then
  6080. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Beli.Visible = false
  6081. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.HP.Visible = false
  6082. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Energy.Visible = false
  6083. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.StatsButton.Visible = false
  6084. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.ShopButton.Visible = false
  6085. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Skills.Visible = false
  6086. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Level.Visible = false
  6087. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.MenuButton.Visible = false
  6088. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Code.Visible = false
  6089. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Settings.Visible = false
  6090. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Mute.Visible = false
  6091. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.CrewButton.Visible = false
  6092. else
  6093. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Beli.Visible = true
  6094. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.HP.Visible = true
  6095. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Energy.Visible = true
  6096. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.StatsButton.Visible = true
  6097. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.ShopButton.Visible = true
  6098. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Skills.Visible = true
  6099. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Level.Visible = true
  6100. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.MenuButton.Visible = true
  6101. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Code.Visible = true
  6102. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Settings.Visible = true
  6103. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Mute.Visible = true
  6104. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.CrewButton.Visible = true
  6105. end
  6106. end)
  6107.  
  6108. Misc:AddSeperator("Teams")
  6109.  
  6110. Misc:AddButton("Join Pirates Team",function()
  6111. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetTeam","Pirates")
  6112. end)
  6113.  
  6114. Misc:AddButton("Join Marines Team",function()
  6115. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetTeam","Marines")
  6116. end)
  6117.  
  6118. Misc:AddSeperator("Boost")
  6119.  
  6120. Misc:AddButton("Unlock Portal",function()
  6121. _G.UnlockPortal = true
  6122. end)
  6123.  
  6124. spawn(function()
  6125. while wait() do
  6126. pcall(function()
  6127. if _G.UnlockPortal == true then
  6128. for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.Notifications:GetChildren()) do
  6129. if v.Name == "NotificationTemplate" then
  6130. if string.find(v.Text,"cannot") then
  6131. v:Destroy()
  6132. end
  6133. end
  6134. end
  6135. end
  6136. end)
  6137. end
  6138. end)
  6139.  
  6140. spawn(function()
  6141. while wait() do
  6142. pcall(function()
  6143. if _G.UnlockPortal == true then
  6144. CastlePostoMansion = CFrame.new(-5084.8447265625, 316.48101806641, -3145.3752441406)
  6145. MansiontoCastlePos = CFrame.new(-12464.596679688, 376.30590820312, -7567.2626953125)
  6146. Castletophydra = CFrame.new(-5095.33984375, 316.48101806641, -3168.3134765625)
  6147. HydratoCastle = CFrame.new(5741.869140625, 611.94750976562, -282.61154174805)
  6148. if (CastlePostoMansion.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 8 then
  6149. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-12471.169921875, 374.94024658203, -7551.677734375))
  6150. end
  6151. if (MansiontoCastlePos.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 8 then
  6152. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-5072.08984375, 314.5412902832, -3151.1098632812))
  6153. end
  6154. if (Castletophydra.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 8 then
  6155. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(5748.7587890625, 610.44982910156, -267.81704711914))
  6156. end
  6157. if (HydratoCastle.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 8 then
  6158. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-5072.08984375, 314.5412902832, -3151.1098632812))
  6159. end
  6160. end
  6161. end)
  6162. end
  6163. end)
  6164.  
  6165. Misc:AddButton("Invisible",function()
  6166. game:GetService("Players").LocalPlayer.Character.LowerTorso:Destroy()
  6167. end)
  6168.  
  6169. Misc:AddButton("Click TP Tool",function()
  6170. local plr = game:GetService("Players").LocalPlayer
  6171. local mouse = plr:GetMouse()
  6172. local tool = Instance.new("Tool")
  6173. tool.RequiresHandle = false
  6174. tool.Name = "Teleport Tool"
  6175. tool.Activated:Connect(function()
  6176. local root = plr.Character.HumanoidRootPart
  6177. local pos = mouse.Hit.Position+Vector3.new(0,2.5,0)
  6178. local offset = pos-root.Position
  6179. root.CFrame = root.CFrame+offset
  6180. end)
  6181. tool.Parent = plr.Backpack
  6182. end)
  6183.  
  6184. Misc:AddButton("Stop All Tween",function()
  6185. topos(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame)
  6186. _G.Clip = false
  6187. end)
  6188.  
  6189. Misc:AddSeperator("Codes")
  6190.  
  6191. local x2Code = {
  6192. "3BVISITS",
  6193. "UPD16",
  6194. "FUDD10",
  6195. "BIGNEWS",
  6196. "THEGREATACE",
  6197. "SUB2GAMERROBOT_EXP1",
  6198. "StrawHatMaine",
  6199. "Sub2OfficialNoobie",
  6200. "SUB2NOOBMASTER123",
  6201. "Sub2Daigrock",
  6202. "Axiore",
  6203. "TantaiGaming",
  6204. "STRAWHATMAINE"
  6205. }
  6206.  
  6207. Misc:AddButton("Redeem All Codes",function()
  6208. function RedeemCode(value)
  6209. game:GetService("ReplicatedStorage").Remotes.Redeem:InvokeServer(value)
  6210. end
  6211. for i,v in pairs(x2Code) do
  6212. RedeemCode(v)
  6213. end
  6214. end)
  6215.  
  6216. Misc:AddDropdown("Selected Codes",{"1MLIKES_RESET","THIRDSEA","SUB2GAMERROBOT_RESET1","SUB2UNCLEKIZARU"},function(value)
  6217. _G.CodeSelect = value
  6218. end)
  6219.  
  6220. Misc:AddButton("Redeem Code",function()
  6221. game:GetService("ReplicatedStorage").Remotes.Redeem:InvokeServer(_G.CodeSelect)
  6222. end)
  6223.  
  6224. Misc:AddSeperator("State")
  6225.  
  6226. Misc:AddDropdown("Select Haki State",{"State 0","State 1","State 2","State 3","State 4","State 5"},function(value)
  6227. _G.SelectStateHaki = value
  6228. end)
  6229.  
  6230. Misc:AddButton("Change Buso Haki State",function()
  6231. if _G.SelectStateHaki == "State 0" then
  6232. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ChangeBusoStage",0)
  6233. elseif _G.SelectStateHaki == "State 1" then
  6234. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ChangeBusoStage",1)
  6235. elseif _G.SelectStateHaki == "State 2" then
  6236. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ChangeBusoStage",2)
  6237. elseif _G.SelectStateHaki == "State 3" then
  6238. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ChangeBusoStage",3)
  6239. elseif _G.SelectStateHaki == "State 4" then
  6240. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ChangeBusoStage",4)
  6241. elseif _G.SelectStateHaki == "State 5" then
  6242. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ChangeBusoStage",5)
  6243. end
  6244. end)
  6245.  
  6246. Misc:AddSeperator("Graphic")
  6247.  
  6248. local a = game.Lighting
  6249. local c = Instance.new("ColorCorrectionEffect", a)
  6250. local e = Instance.new("ColorCorrectionEffect", a)
  6251. OldAmbient = a.Ambient
  6252. OldBrightness = a.Brightness
  6253. OldColorShift_Top = a.ColorShift_Top
  6254. OldBrightnessc = c.Brightness
  6255. OldContrastc = c.Contrast
  6256. OldTintColorc = c.TintColor
  6257. OldTintColore = e.TintColor
  6258. Misc:AddToggle("RTX Mode",_G.RTXMode,function(value)
  6259. _G.RTXMode = value
  6260. if not _G.RTXMode then return end
  6261. while _G.RTXMode do wait()
  6262. a.Ambient = Color3.fromRGB(33, 33, 33)
  6263. a.Brightness = 0.3
  6264. c.Brightness = 0.176
  6265. c.Contrast = 0.39
  6266. c.TintColor = Color3.fromRGB(217, 145, 57)
  6267. game.Lighting.FogEnd = 999
  6268. if not game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("PointLight") then
  6269. local a2 = Instance.new("PointLight")
  6270. a2.Parent = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  6271. a2.Range = 15
  6272. a2.Color = Color3.fromRGB(217, 145, 57)
  6273. end
  6274. if not _G.RTXMode then
  6275. a.Ambient = OldAmbient
  6276. a.Brightness = OldBrightness
  6277. a.ColorShift_Top = OldColorShift_Top
  6278. c.Contrast = OldContrastc
  6279. c.Brightness = OldBrightnessc
  6280. c.TintColor = OldTintColorc
  6281. e.TintColor = OldTintColore
  6282. game.Lighting.FogEnd = 2500
  6283. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("PointLight"):Destroy()
  6284. end
  6285. end
  6286. end)
  6287.  
  6288. Misc:AddButton("FPS Boost",function()
  6289. pcall(function()
  6290. game:GetService("Lighting").FantasySky:Destroy()
  6291. local g = game
  6292. local w = g.Workspace
  6293. local l = g.Lighting
  6294. local t = w.Terrain
  6295. t.WaterWaveSize = 0
  6296. t.WaterWaveSpeed = 0
  6297. t.WaterReflectance = 0
  6298. t.WaterTransparency = 0
  6299. l.GlobalShadows = false
  6300. l.FogEnd = 9e9
  6301. l.Brightness = 0
  6302. settings().Rendering.QualityLevel = "Level01"
  6303. for i, v in pairs(g:GetDescendants()) do
  6304. if v:IsA("Part") or v:IsA("Union") or v:IsA("CornerWedgePart") or v:IsA("TrussPart") then
  6305. v.Material = "Plastic"
  6306. v.Reflectance = 0
  6307. elseif v:IsA("Decal") or v:IsA("Texture") then
  6308. v.Transparency = 1
  6309. elseif v:IsA("ParticleEmitter") or v:IsA("Trail") then
  6310. v.Lifetime = NumberRange.new(0)
  6311. elseif v:IsA("Explosion") then
  6312. v.BlastPressure = 1
  6313. v.BlastRadius = 1
  6314. elseif v:IsA("Fire") or v:IsA("SpotLight") or v:IsA("Smoke") or v:IsA("Sparkles") then
  6315. v.Enabled = false
  6316. elseif v:IsA("MeshPart") then
  6317. v.Material = "Plastic"
  6318. v.Reflectance = 0
  6319. v.TextureID = 10385902758728957
  6320. end
  6321. end
  6322. for i, e in pairs(l:GetChildren()) do
  6323. if e:IsA("BlurEffect") or e:IsA("SunRaysEffect") or e:IsA("ColorCorrectionEffect") or e:IsA("BloomEffect") or e:IsA("DepthOfFieldEffect") then
  6324. e.Enabled = false
  6325. end
  6326. end
  6327. for i, v in pairs(game:GetService("Workspace").Camera:GetDescendants()) do
  6328. if v.Name == ("Water;") then
  6329. v.Transparency = 1
  6330. v.Material = "Plastic"
  6331. end
  6332. end
  6333. end)
  6334. end)
  6335.  
  6336. Misc:AddToggle("Remove Fog",RemoveFog,function(value)
  6337. RemoveFog = value
  6338. if not RemoveFog then return end
  6339. while RemoveFog do wait()
  6340. game.Lighting.FogEnd = 9e9
  6341. if not RemoveFog then
  6342. game.Lighting.FogEnd = 2500
  6343. end
  6344. end
  6345. end)
  6346.  
  6347. Misc:AddButton("Unlock FPS",function()
  6348. setfpscap(100)
  6349. end)
  6350.  
  6351. Misc:AddSeperator("ESP")
  6352.  
  6353. Misc:AddToggle("ESP Player",false,function(value)
  6354. ESPPlayer = value
  6355. while ESPPlayer do wait()
  6356. UpdateEspPlayer()
  6357. end
  6358. end)
  6359.  
  6360. Misc:AddToggle("ESP Chest",false,function(value)
  6361. ChestESP = value
  6362. while ChestESP do wait()
  6363. UpdateChestEsp()
  6364. end
  6365. end)
  6366.  
  6367. Misc:AddToggle("ESP Fruit",false,function(value)
  6368. DevilFruitESP = value
  6369. while DevilFruitESP do wait()
  6370. UpdateBfEsp()
  6371. end
  6372. end)
  6373.  
  6374. Misc:AddToggle("ESP Flower",false,function(value)
  6375. FlowerESP = value
  6376. while FlowerESP do wait()
  6377. UpdateFlowerEsp()
  6378. end
  6379. end)
  6380.  
  6381. Misc:AddToggle("ESP Island",IslandESP,function(value)
  6382. IslandESP = value
  6383. while IslandESP do wait()
  6384. UpdateIslandESP()
  6385. end
  6386. end)
  6387.  
  6388. Misc:AddSeperator("Abilities")
  6389.  
  6390. Misc:AddToggle("Dodge No Cooldown",false,function(value)
  6391. nododgecool = value
  6392. NoDodgeCool()
  6393. end)
  6394.  
  6395. Misc:AddToggle("Infinite Energy",false,function(value)
  6396. InfiniteEnergy = value
  6397. originalstam = LocalPlayer.Character.Energy.Value
  6398. end)
  6399.  
  6400. Misc:AddToggle("Auto Active Race",_G.AutoAgility,function(value)
  6401. _G.AutoAgility = value
  6402. end)
  6403.  
  6404. spawn(function()
  6405. pcall(function()
  6406. while wait() do
  6407. if _G.AutoAgility then
  6408. game:GetService("ReplicatedStorage").Remotes.CommE:FireServer("ActivateAbility")
  6409. end
  6410. end
  6411. end)
  6412. end)
  6413.  
  6414. Misc:AddToggle("Infinite Ability",false,function(value)
  6415. InfAbility = value
  6416. if value == false then
  6417. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("Agility"):Destroy()
  6418. end
  6419. end)
  6420.  
  6421. spawn(function()
  6422. while wait() do
  6423. if InfAbility then
  6424. InfAb()
  6425. end
  6426. end
  6427. end)
  6428.  
  6429. Misc:AddToggle("Infinite Obversation Range",getgenv().InfiniteObRange,function(value)
  6430. getgenv().InfiniteObRange = value
  6431. local VS = game:GetService("Players").LocalPlayer.VisionRadius.Value
  6432. while getgenv().InfiniteObRange do
  6433. wait()
  6434. local player = game:GetService("Players").LocalPlayer
  6435. local char = player.Character
  6436. local VisionRadius = player.VisionRadius
  6437. if player then
  6438. if char.Humanoid.Health <= 0 then
  6439. wait(5)
  6440. end
  6441. VisionRadius.Value = math.huge
  6442. elseif getgenv().InfiniteObRange == false and player then
  6443. VisionRadius.Value = VS
  6444. end
  6445. end
  6446. end)
  6447.  
  6448. Misc:AddToggle("Infinite Geppo",getgenv().InfGeppo,function(value)
  6449. getgenv().InfGeppo = value
  6450. end)
  6451.  
  6452. spawn(function()
  6453. while wait() do
  6454. pcall(function()
  6455. if getgenv().InfGeppo then
  6456. for i,v in next, getgc() do
  6457. if game:GetService("Players").LocalPlayer.Character.Geppo then
  6458. if typeof(v) == "function" and getfenv(v).script == game:GetService("Players").LocalPlayer.Character.Geppo then
  6459. for i2,v2 in next, getupvalues(v) do
  6460. if tostring(i2) == "9" then
  6461. repeat wait(.1)
  6462. setupvalue(v,i2,0)
  6463. until not getgenv().InfGeppo or game:GetService("Players").LocalPlayer.Character.Humanoid.Health <= 0
  6464. end
  6465. end
  6466. end
  6467. end
  6468. end
  6469. end
  6470. end)
  6471. end
  6472. end)
  6473.  
  6474. Misc:AddToggle("Infinite Soru",getgenv().InfSoru,function(value)
  6475. getgenv().InfSoru = value
  6476. end)
  6477.  
  6478. spawn(function()
  6479. while wait() do
  6480. pcall(function()
  6481. if getgenv().InfSoru and game:GetService("Players").LocalPlayer.Character:FindFirstChild("HumanoidRootPart") ~= nil then
  6482. for i,v in next, getgc() do
  6483. if game:GetService("Players").LocalPlayer.Character.Soru then
  6484. if typeof(v) == "function" and getfenv(v).script == game:GetService("Players").LocalPlayer.Character.Soru then
  6485. for i2,v2 in next, getupvalues(v) do
  6486. if typeof(v2) == "table" then
  6487. repeat wait(.1)
  6488. v2.LastUse = 0
  6489. until not getgenv().InfSoru or game:GetService("Players").LocalPlayer.Character.Humanoid.Health <= 0
  6490. end
  6491. end
  6492. end
  6493. end
  6494. end
  6495. end
  6496. end)
  6497. end
  6498. end)
  6499.  
  6500. Misc:AddToggle("Walk on Water",_G.WalkWater,function(value)
  6501. _G.WalkWater = value
  6502. end)
  6503.  
  6504. spawn(function()
  6505. pcall(function()
  6506. while wait() do
  6507. if _G.WalkWater then
  6508. if game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame.Y <= 1 then
  6509. if not game:GetService("Workspace"):FindFirstChild("Water") then
  6510. local Water = Instance.new("Part", game:GetService("Workspace"))
  6511. Water.Name = "Water"
  6512. Water.Size = Vector3.new(15,0.5,15)
  6513. Water.Anchored = true
  6514. Water.Material = "Neon"
  6515. Water.Color = _G.Color
  6516. game:GetService("Workspace").Water.CFrame = CFrame.new(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame.X,game:GetService("Workspace").Camera["Water;"].CFrame.Y,game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame.Z)
  6517. else
  6518. game:GetService("Workspace").Water.CFrame = CFrame.new(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame.X,game:GetService("Workspace").Camera["Water;"].CFrame.Y,game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame.Z)
  6519. end
  6520. elseif game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame.Y >= 1 and game:GetService("Workspace"):FindFirstChild("Water") then
  6521. game:GetService("Workspace"):FindFirstChild("Water"):Destroy()
  6522. end
  6523. else
  6524. if game:GetService("Workspace"):FindFirstChild("Water") then
  6525. game:GetService("Workspace"):FindFirstChild("Water"):Destroy()
  6526. end
  6527. end
  6528. end
  6529. end)
  6530. end)
  6531.  
  6532. Misc:AddToggle("Fly",false,function(value)
  6533. Fly = value
  6534. end)
  6535.  
  6536. spawn(function()
  6537. while wait() do
  6538. pcall(function()
  6539. if Fly then
  6540. fly()
  6541. end
  6542. end)
  6543. end
  6544. end)
  6545.  
  6546. Misc:AddToggle("NoClip",_G.NOCLIP,function(value)
  6547. _G.NOCLIP = value
  6548. end)
  6549.  
  6550. Misc:AddSeperator("Mastery Skill Settings")
  6551.  
  6552. Misc:AddToggle("Skill Z",true,function(value)
  6553. _G.SkillZ = value
  6554. end)
  6555.  
  6556. Misc:AddToggle("Skill X",true,function(value)
  6557. _G.SkillX = value
  6558. end)
  6559.  
  6560. Misc:AddToggle("Skill C",true,function(value)
  6561. _G.SkillC = value
  6562. end)
  6563.  
  6564. Misc:AddToggle("Skill V",true,function(value)
  6565. _G.SkillV = value
  6566. end)
  6567. ui:Destroy()
  6568. end
  6569. end
  6570.  
  6571. local UserInputService = game:GetService("UserInputService")
  6572. local TweenService = game:GetService("TweenService")
  6573.  
  6574. local function MakeDraggable(topbarobject, object)
  6575. local Dragging = nil
  6576. local DragInput = nil
  6577. local DragStart = nil
  6578. local StartPosition = nil
  6579.  
  6580. local function Update(input)
  6581. local Delta = input.Position - DragStart
  6582. local pos =
  6583. UDim2.new(
  6584. StartPosition.X.Scale,
  6585. StartPosition.X.Offset + Delta.X,
  6586. StartPosition.Y.Scale,
  6587. StartPosition.Y.Offset + Delta.Y
  6588. )
  6589. local Tween = TweenService:Create(object, TweenInfo.new(0.2), {Position = pos})
  6590. Tween:Play()
  6591. end
  6592.  
  6593. topbarobject.InputBegan:Connect(
  6594. function(input)
  6595. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  6596. Dragging = true
  6597. DragStart = input.Position
  6598. StartPosition = object.Position
  6599.  
  6600. input.Changed:Connect(
  6601. function()
  6602. if input.UserInputState == Enum.UserInputState.End then
  6603. Dragging = false
  6604. end
  6605. end
  6606. )
  6607. end
  6608. end
  6609. )
  6610.  
  6611. topbarobject.InputChanged:Connect(
  6612. function(input)
  6613. if
  6614. input.UserInputType == Enum.UserInputType.MouseMovement or
  6615. input.UserInputType == Enum.UserInputType.Touch
  6616. then
  6617. DragInput = input
  6618. end
  6619. end
  6620. )
  6621.  
  6622. UserInputService.InputChanged:Connect(
  6623. function(input)
  6624. if input == DragInput and Dragging then
  6625. Update(input)
  6626. end
  6627. end
  6628. )
  6629. end
  6630.  
  6631. local library = {}
  6632.  
  6633. function library:AddWindow(text,keybind)
  6634. local bind = keybind or Enum.KeyCode.RightControl
  6635. local ff = false
  6636. local currenttab = ""
  6637.  
  6638. local DoctorShiba = Instance.new("ScreenGui")
  6639. DoctorShiba.Name = "UlLib"
  6640. DoctorShiba.Parent = game.CoreGui
  6641. DoctorShiba.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  6642.  
  6643. local Main = Instance.new("Frame")
  6644. Main.Name = "Main"
  6645. Main.Parent = DoctorShiba
  6646. Main.AnchorPoint = Vector2.new(0.5, 0.5)
  6647. Main.BackgroundColor3 = Color3.fromRGB(30, 28, 39)
  6648. Main.BackgroundTransparency = 0.100
  6649. Main.BorderSizePixel = 0
  6650. Main.ClipsDescendants = true
  6651. Main.Position = UDim2.new(0.499526083, 0, 0.499241292, 0)
  6652. Main.Size = UDim2.new(0, 600, 0, 350)
  6653.  
  6654. local Top = Instance.new("Frame")
  6655. Top.Name = "Top"
  6656. Top.Parent = Main
  6657. Top.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  6658. Top.BackgroundTransparency = 1.000
  6659. Top.BorderSizePixel = 0
  6660. Top.Size = UDim2.new(0, 600, 0, 20)
  6661.  
  6662. local Page = Instance.new("Frame")
  6663. Page.Name = "Page"
  6664. Page.Parent = Main
  6665. Page.BackgroundColor3 = Color3.fromRGB(25, 23, 35)
  6666. Page.BackgroundTransparency = 0.100
  6667. Page.BorderSizePixel = 0
  6668. Page.Size = UDim2.new(0, 125, 0, 350)
  6669.  
  6670. local NameHub = Instance.new("TextLabel")
  6671. NameHub.Name = "NameHub"
  6672. NameHub.Parent = Page
  6673. NameHub.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  6674. NameHub.BackgroundTransparency = 1.000
  6675. NameHub.Position = UDim2.new(0.113333493, 0, 0, 0)
  6676. NameHub.Size = UDim2.new(0, 110, 0, 20)
  6677. NameHub.Font = Enum.Font.GothamSemibold
  6678. NameHub.Text = text
  6679. NameHub.TextColor3 = Color3.fromRGB(225, 0, 0)
  6680. NameHub.TextSize = 11.000
  6681. NameHub.TextXAlignment = Enum.TextXAlignment.Left
  6682.  
  6683. local User = Instance.new("Frame")
  6684. User.Name = "User"
  6685. User.Parent = Page
  6686. User.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  6687. User.BackgroundTransparency = 1.000
  6688. User.Position = UDim2.new(0, 0, 0.8, 30)
  6689. User.Size = UDim2.new(0, 125, 0, 40)
  6690.  
  6691. local UserText = Instance.new("TextLabel")
  6692. UserText.Name = "UserText"
  6693. UserText.Parent = User
  6694. UserText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  6695. UserText.BackgroundTransparency = 1.000
  6696. UserText.Position = UDim2.new(0.354999989, 0, 0, 11)
  6697. UserText.Size = UDim2.new(0, 80, 0, 20)
  6698. UserText.Font = Enum.Font.Gotham
  6699. UserText.Text = tostring(game.Players.LocalPlayer.Name)
  6700. spawn(function()
  6701. while wait() do
  6702. pcall(function()
  6703. wait(0.1)
  6704. game:GetService('TweenService'):Create(
  6705. UserText,TweenInfo.new(1,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut),
  6706. {TextColor3 = Color3.fromRGB(255, 0, 0)}
  6707. ):Play()
  6708. wait(.5)
  6709. game:GetService('TweenService'):Create(
  6710. UserText,TweenInfo.new(1,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut),
  6711. {TextColor3 = Color3.fromRGB(255, 155, 0)}
  6712. ):Play()
  6713. wait(.5)
  6714. game:GetService('TweenService'):Create(
  6715. UserText,TweenInfo.new(1,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut),
  6716. {TextColor3 = Color3.fromRGB(255, 255, 0)}
  6717. ):Play()
  6718. wait(.5)
  6719. game:GetService('TweenService'):Create(
  6720. UserText,TweenInfo.new(1,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut),
  6721. {TextColor3 = Color3.fromRGB(0, 255, 0)}
  6722. ):Play()
  6723. wait(.5)
  6724. game:GetService('TweenService'):Create(
  6725. UserText,TweenInfo.new(1,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut),
  6726. {TextColor3 = Color3.fromRGB(0, 255, 255)}
  6727. ):Play()
  6728. wait(.5)
  6729. game:GetService('TweenService'):Create(
  6730. UserText,TweenInfo.new(1,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut),
  6731. {TextColor3 = Color3.fromRGB(0, 155, 255)}
  6732. ):Play()
  6733. wait(.5)
  6734. game:GetService('TweenService'):Create(
  6735. UserText,TweenInfo.new(1,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut),
  6736. {TextColor3 = Color3.fromRGB(255, 0, 255)}
  6737. ):Play()
  6738. wait(.5)
  6739. game:GetService('TweenService'):Create(
  6740. UserText,TweenInfo.new(1,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut),
  6741. {TextColor3 = Color3.fromRGB(255, 0, 155)}
  6742. ):Play()
  6743. wait(.5)
  6744. end)
  6745. end
  6746. end)
  6747. UserText.TextScaled = true
  6748. UserText.TextSize = 11.000
  6749. UserText.TextWrapped = true
  6750. UserText.TextXAlignment = Enum.TextXAlignment.Left
  6751.  
  6752. local UITextSizeConstraint = Instance.new("UITextSizeConstraint")
  6753. UITextSizeConstraint.Parent = UserText
  6754. UITextSizeConstraint.MaxTextSize = 11
  6755.  
  6756. local UserImage = Instance.new("ImageLabel")
  6757. UserImage.Name = "UserImage"
  6758. UserImage.Parent = User
  6759. UserImage.BackgroundColor3 = Color3.fromRGB(225, 225, 225)
  6760. UserImage.Position = UDim2.new(0, 10, 0, 9)
  6761. UserImage.Size = UDim2.new(0, 25, 0, 25)
  6762. UserImage.Image = "https://www.roblox.com/headshot-thumbnail/image?userId="..game.Players.LocalPlayer.UserId.."&width=420&height=420&format=png"
  6763.  
  6764. local UserImageCorner = Instance.new("UICorner")
  6765. UserImageCorner.CornerRadius = UDim.new(0, 100)
  6766. UserImageCorner.Name = "UserImageCorner"
  6767. UserImageCorner.Parent = UserImage
  6768.  
  6769. local ScrollPage = Instance.new("ScrollingFrame")
  6770. ScrollPage.Name = "ScrollPage"
  6771. ScrollPage.Parent = Page
  6772. ScrollPage.Active = true
  6773. ScrollPage.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  6774. ScrollPage.BackgroundTransparency = 1.000
  6775. ScrollPage.BorderSizePixel = 0
  6776. ScrollPage.Position = UDim2.new(0, 0, 0.086, 0)
  6777. ScrollPage.Size = UDim2.new(0, 125, 0, 290)
  6778. ScrollPage.CanvasSize = UDim2.new(0, 0, 0, 0)
  6779. ScrollPage.ScrollBarThickness = 0
  6780. local PageList = Instance.new("UIListLayout")
  6781. PageList.Name = "PageList"
  6782. PageList.Parent = ScrollPage
  6783. PageList.SortOrder = Enum.SortOrder.LayoutOrder
  6784. PageList.Padding = UDim.new(0, 7)
  6785.  
  6786. local PagePadding = Instance.new("UIPadding")
  6787. PagePadding.Name = "PagePadding"
  6788. PagePadding.Parent = ScrollPage
  6789. PagePadding.PaddingTop = UDim.new(0, 5)
  6790. PagePadding.PaddingLeft = UDim.new(0, 28)
  6791.  
  6792. local TabFolder = Instance.new("Folder")
  6793. TabFolder.Name = "TabFolder"
  6794. TabFolder.Parent = Main
  6795.  
  6796. MakeDraggable(Top,Main)
  6797.  
  6798. local uihide = false
  6799.  
  6800. UserInputService.InputBegan:Connect(function(input)
  6801. if input.KeyCode == bind then
  6802. if uihide == false then
  6803. uihide = true
  6804. Main:TweenSize(UDim2.new(0, 0, 0, 0),"In","Quad",0.2,true)
  6805. else
  6806. uihide = false
  6807. Main:TweenSize(UDim2.new(0, 600, 0, 350),"Out","Quad",0.2,true)
  6808. end
  6809. end
  6810. end)
  6811.  
  6812. local uitab = {}
  6813.  
  6814. function uitab:AddTab(text,image)
  6815. local Image = image or 6023426915
  6816.  
  6817. local PageButton = Instance.new("TextButton")
  6818. PageButton.Name = "PageButton"
  6819. PageButton.Parent = ScrollPage
  6820. PageButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  6821. PageButton.BackgroundTransparency = 1.000
  6822. PageButton.BorderSizePixel = 0
  6823. PageButton.Position = UDim2.new(0.224000007, 0, 0.029787235, 0)
  6824. PageButton.Size = UDim2.new(0, 97, 0, 20)
  6825. PageButton.AutoButtonColor = false
  6826. PageButton.Font = Enum.Font.GothamSemibold
  6827. PageButton.Text = text
  6828. PageButton.TextColor3 = Color3.fromRGB(225, 225, 225)
  6829. PageButton.TextSize = 11.000
  6830. PageButton.TextXAlignment = Enum.TextXAlignment.Left
  6831.  
  6832. local PageImage = Instance.new("ImageLabel")
  6833. PageImage.Name = "PageImage"
  6834. PageImage.Parent = PageButton
  6835. PageImage.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  6836. PageImage.BackgroundTransparency = 1.000
  6837. PageImage.Position = UDim2.new(0, -20, 0, 3)
  6838. PageImage.Size = UDim2.new(0, 15, 0, 15)
  6839. PageImage.Image = "rbxassetid://"..tostring(Image)
  6840.  
  6841. local MainTab = Instance.new("Frame")
  6842. MainTab.Name = "MainTab"
  6843. MainTab.Parent = TabFolder
  6844. MainTab.BackgroundColor3 = Color3.fromRGB(30, 28, 39)
  6845. MainTab.BorderSizePixel = 0
  6846. MainTab.Position = UDim2.new(0.208333328, 0, 0, 0)
  6847. MainTab.Size = UDim2.new(0, 475, 0, 350)
  6848. MainTab.Visible = false
  6849.  
  6850. local ScrollTab = Instance.new("ScrollingFrame")
  6851. ScrollTab.Name = "ScrollTab"
  6852. ScrollTab.Parent = MainTab
  6853. ScrollTab.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  6854. ScrollTab.BackgroundTransparency = 1.000
  6855. ScrollTab.BorderSizePixel = 0
  6856. ScrollTab.Position = UDim2.new(0, 0, 0.057, 0)
  6857. ScrollTab.Size = UDim2.new(0, 475, 0, 330)
  6858. ScrollTab.CanvasSize = UDim2.new(0, 0, 0, 0)
  6859. ScrollTab.ScrollBarThickness = 3
  6860.  
  6861. local TabList = Instance.new("UIListLayout")
  6862. TabList.Name = "TabList"
  6863. TabList.Parent = ScrollTab
  6864. TabList.SortOrder = Enum.SortOrder.LayoutOrder
  6865. TabList.Padding = UDim.new(0, 5)
  6866.  
  6867. local TabPadding = Instance.new("UIPadding")
  6868. TabPadding.Name = "TabPadding"
  6869. TabPadding.Parent = ScrollTab
  6870. TabPadding.PaddingLeft = UDim.new(0, 10)
  6871. TabPadding.PaddingTop = UDim.new(0, 10)
  6872.  
  6873. PageButton.MouseButton1Click:Connect(function()
  6874. currenttab = MainTab.Name
  6875. for i,v in next, TabFolder:GetChildren() do
  6876. if v.Name == "MainTab" then
  6877. v.Visible = false
  6878. end
  6879. end
  6880. MainTab.Visible = true
  6881.  
  6882. for i,v in next, ScrollPage:GetChildren() do
  6883. if v:IsA("TextButton") then
  6884. TweenService:Create(
  6885. v,
  6886. TweenInfo.new(0.3,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  6887. {TextColor3 = Color3.fromRGB(225, 225, 225)}
  6888. ):Play()
  6889. end
  6890. TweenService:Create(
  6891. PageButton,
  6892. TweenInfo.new(0.3,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  6893. {TextColor3 = Color3.fromRGB(255,0,0)}
  6894. ):Play()
  6895. end
  6896. end)
  6897.  
  6898. if ff == false then
  6899. TweenService:Create(
  6900. PageButton,
  6901. TweenInfo.new(0.3,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  6902. {TextColor3 = Color3.fromRGB(255,0,0)}
  6903. ):Play()
  6904. for i,v in next, TabFolder:GetChildren() do
  6905. if v.Name == "MainTab" then
  6906. v.Visible = false
  6907. end
  6908. MainTab.Visible = true
  6909. end
  6910. ff = true
  6911. end
  6912.  
  6913. game:GetService("RunService").Stepped:Connect(function()
  6914. pcall(function()
  6915. ScrollPage.CanvasSize = UDim2.new(0,0,0,PageList.AbsoluteContentSize.Y + 10)
  6916. ScrollTab.CanvasSize = UDim2.new(0,0,0,TabList.AbsoluteContentSize.Y + 30)
  6917. end)
  6918. end)
  6919.  
  6920. local main = {}
  6921.  
  6922. function main:AddButton(text,callback)
  6923. local Button = Instance.new("TextButton")
  6924.  
  6925. Button.Name = "Button"
  6926. Button.Parent = ScrollTab
  6927. Button.BackgroundColor3 = Color3.fromRGB(50, 48, 59)
  6928. Button.BackgroundTransparency = 0.1
  6929. Button.BorderSizePixel = 0
  6930. Button.Size = UDim2.new(0, 455, 0, 30)
  6931. Button.AutoButtonColor = false
  6932. Button.Font = Enum.Font.Gotham
  6933. Button.Text = text
  6934. Button.TextColor3 = Color3.fromRGB(225, 225, 225)
  6935. Button.TextSize = 11.000
  6936. Button.TextWrapped = true
  6937.  
  6938. local ButtonCorner = Instance.new("UICorner")
  6939. ButtonCorner.Name = "ButtonCorner"
  6940. ButtonCorner.CornerRadius = UDim.new(0, 5)
  6941. ButtonCorner.Parent = Button
  6942.  
  6943. Button.MouseEnter:Connect(function()
  6944. TweenService:Create(
  6945. Button,
  6946. TweenInfo.new(0.4,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  6947. {TextColor3 = Color3.fromRGB(255,0,0)}
  6948. ):Play()
  6949. end)
  6950.  
  6951. Button.MouseLeave:Connect(function()
  6952. TweenService:Create(
  6953. Button,
  6954. TweenInfo.new(0.4,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  6955. {TextColor3 = Color3.fromRGB(225, 225, 225)}
  6956. ):Play()
  6957. end)
  6958.  
  6959. Button.MouseButton1Click:Connect(function()
  6960. callback()
  6961. Button.TextSize = 0
  6962. TweenService:Create(
  6963. Button,
  6964. TweenInfo.new(0.4,Enum.EasingStyle.Back,Enum.EasingDirection.Out),
  6965. {TextSize = 11}
  6966. ):Play()
  6967. end)
  6968. end
  6969.  
  6970. function main:AddToggle(text,config,callback)
  6971. local ToggleImage = Instance.new("Frame")
  6972.  
  6973. local Toggle = Instance.new("TextButton")
  6974. Toggle.Name = "Toggle"
  6975. Toggle.Parent = ScrollTab
  6976. Toggle.BackgroundColor3 = Color3.fromRGB(50, 48, 59)
  6977. Toggle.BackgroundTransparency = 0.1
  6978. Toggle.BorderSizePixel = 0
  6979. Toggle.AutoButtonColor = false
  6980. Toggle.Size = UDim2.new(0, 455, 0, 30)
  6981. Toggle.Font = Enum.Font.SourceSans
  6982. Toggle.Text = ""
  6983. Toggle.TextColor3 = Color3.fromRGB(0, 0, 0)
  6984. Toggle.TextSize = 14.000
  6985.  
  6986. local ToggleCorner = Instance.new("UICorner")
  6987. ToggleCorner.Name = "ToggleCorner"
  6988. ToggleCorner.CornerRadius = UDim.new(0, 5)
  6989. ToggleCorner.Parent = Toggle
  6990.  
  6991. local ToggleLabel = Instance.new("TextLabel")
  6992. ToggleLabel.Name = "ToggleLabel"
  6993. ToggleLabel.Parent = Toggle
  6994. ToggleLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  6995. ToggleLabel.BackgroundTransparency = 1.000
  6996. ToggleLabel.Position = UDim2.new(0, 13, 0, 0)
  6997. ToggleLabel.Size = UDim2.new(0, 410, 0, 30)
  6998. ToggleLabel.Font = Enum.Font.Gotham
  6999. ToggleLabel.Text = text
  7000. ToggleLabel.TextColor3 = Color3.fromRGB(225, 225, 225)
  7001. ToggleLabel.TextSize = 11.000
  7002. ToggleLabel.TextXAlignment = Enum.TextXAlignment.Left
  7003.  
  7004. ToggleImage.Name = "ToggleImage"
  7005. ToggleImage.Parent = Toggle
  7006. ToggleImage.BackgroundColor3 = Color3.fromRGB(70, 68, 79)
  7007. ToggleImage.Position = UDim2.new(0, 425, 0, 5)
  7008. ToggleImage.BorderSizePixel = 0
  7009. ToggleImage.Size = UDim2.new(0, 20, 0, 20)
  7010. local ToggleImageCorner = Instance.new("UICorner")
  7011. ToggleImageCorner.Name = "ToggleImageCorner"
  7012. ToggleImageCorner.CornerRadius = UDim.new(0, 5)
  7013. ToggleImageCorner.Parent = ToggleImage
  7014.  
  7015. local ToggleImage2 = Instance.new("Frame")
  7016. ToggleImage2.Name = "ToggleImage2"
  7017. ToggleImage2.Parent = ToggleImage
  7018. ToggleImage2.AnchorPoint = Vector2.new(0.5, 0.5)
  7019. ToggleImage2.BackgroundColor3 = Color3.fromRGB(255,0,0)
  7020. ToggleImage2.Position = UDim2.new(0, 10, 0, 10)
  7021. ToggleImage2.Visible = false
  7022.  
  7023. local ToggleImage2Corner = Instance.new("UICorner")
  7024. ToggleImage2Corner.Name = "ToggleImageCorner"
  7025. ToggleImage2Corner.CornerRadius = UDim.new(0, 5)
  7026. ToggleImage2Corner.Parent = ToggleImage2
  7027.  
  7028. Toggle.MouseEnter:Connect(function()
  7029. TweenService:Create(
  7030. ToggleLabel,
  7031. TweenInfo.new(0.4,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  7032. {TextColor3 = Color3.fromRGB(255,0,0)}
  7033. ):Play()
  7034. end)
  7035.  
  7036. Toggle.MouseLeave:Connect(function()
  7037. TweenService:Create(
  7038. ToggleLabel,
  7039. TweenInfo.new(0.4,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  7040. {TextColor3 = Color3.fromRGB(225, 225, 225)}
  7041. ):Play()
  7042. end)
  7043. if config == nil then config = false end
  7044. local toggled = config or false
  7045. Toggle.MouseButton1Click:Connect(function()
  7046. if toggled == false then
  7047. toggled = true
  7048. ToggleImage2.Visible = true
  7049. ToggleImage2:TweenSize(UDim2.new(0, 21, 0, 21),"In","Quad",0.1,true)
  7050. else
  7051. toggled = false
  7052. ToggleImage2:TweenSize(UDim2.new(0, 0, 0, 0),"In","Quad",0.1,true)
  7053. wait(0.1)
  7054. ToggleImage2.Visible = false
  7055. end
  7056. callback(toggled)
  7057. end)
  7058.  
  7059. if config == true then
  7060. ToggleImage2.Visible = true
  7061. ToggleImage2:TweenSize(UDim2.new(0, 21, 0, 21),"In","Quad",0.1,true)
  7062. toggled = true
  7063. callback(toggled)
  7064. end
  7065. end
  7066.  
  7067. function main:AddTextbox(text,holder,disappear,callback)
  7068. local Textboxx = Instance.new("Frame")
  7069. local TextboxxCorner = Instance.new("UICorner")
  7070. local TextboxTitle = Instance.new("TextLabel")
  7071. local Textbox = Instance.new("TextBox")
  7072. local TextboxCorner = Instance.new("UICorner")
  7073.  
  7074. Textboxx.Name = "Textboxx"
  7075. Textboxx.Parent = ScrollTab
  7076. Textboxx.BackgroundColor3 = Color3.fromRGB(50, 48, 59)
  7077. Textboxx.Size = UDim2.new(0, 455, 0, 30)
  7078.  
  7079. TextboxxCorner.CornerRadius = UDim.new(0, 5)
  7080. TextboxxCorner.Name = "TextboxxCorner"
  7081. TextboxxCorner.Parent = Textboxx
  7082.  
  7083. TextboxTitle.Name = "TextboxTitle"
  7084. TextboxTitle.Parent = Textboxx
  7085. TextboxTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  7086. TextboxTitle.BackgroundTransparency = 1.000
  7087. TextboxTitle.Position = UDim2.new(0, 15, 0, 0)
  7088. TextboxTitle.Size = UDim2.new(0, 300, 0, 30)
  7089. TextboxTitle.Font = Enum.Font.Gotham
  7090. TextboxTitle.Text = text
  7091. TextboxTitle.TextColor3 = Color3.fromRGB(225, 225, 225)
  7092. TextboxTitle.TextSize = 11.000
  7093. TextboxTitle.TextXAlignment = Enum.TextXAlignment.Left
  7094.  
  7095. Textbox.Name = "Textbox"
  7096. Textbox.Parent = Textboxx
  7097. Textbox.BackgroundColor3 = Color3.fromRGB(30, 28, 39)
  7098. Textbox.Position = UDim2.new(0, 310, 0, 5)
  7099. Textbox.Size = UDim2.new(0, 140, 0, 20)
  7100. Textbox.Font = Enum.Font.Gotham
  7101. Textbox.Text = holder
  7102. Textbox.TextColor3 = Color3.fromRGB(225, 225, 225)
  7103. Textbox.TextSize = 11.000
  7104.  
  7105. Textbox.FocusLost:Connect(function()
  7106. if #Textbox.Text > 0 then
  7107. callback(Textbox.Text)
  7108. end
  7109. if disappear then
  7110. Textbox.Text = ""
  7111. else
  7112. Textbox.Text = holder
  7113. end
  7114. end)
  7115.  
  7116. TextboxCorner.Name = "TextboxCorner"
  7117. TextboxCorner.CornerRadius = UDim.new(0, 5)
  7118. TextboxCorner.Parent = Textbox
  7119. end
  7120.  
  7121. function main:AddDropdown(text,table,callback)
  7122. local Dropdown = Instance.new("Frame")
  7123. local UICorner = Instance.new("UICorner")
  7124. local DropButton = Instance.new("TextButton")
  7125. local Droptitle = Instance.new("TextLabel")
  7126. local DropScroll = Instance.new("ScrollingFrame")
  7127. local DropdownList = Instance.new("UIListLayout")
  7128. local DropdownPadding = Instance.new("UIPadding")
  7129. local DropImage = Instance.new("ImageLabel")
  7130.  
  7131. Dropdown.Name = "Dropdown"
  7132. Dropdown.Parent = ScrollTab
  7133. Dropdown.Active = true
  7134. Dropdown.BackgroundColor3 = Color3.fromRGB(50, 48, 59)
  7135. Dropdown.ClipsDescendants = true
  7136. Dropdown.Size = UDim2.new(0, 455, 0, 30)
  7137.  
  7138. UICorner.CornerRadius = UDim.new(0, 5)
  7139. UICorner.Parent = Dropdown
  7140.  
  7141. DropButton.Name = "DropButton"
  7142. DropButton.Parent = Dropdown
  7143. DropButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  7144. DropButton.BackgroundTransparency = 1.000
  7145. DropButton.Size = UDim2.new(0, 455, 0, 30)
  7146. DropButton.Font = Enum.Font.SourceSans
  7147. DropButton.Text = ""
  7148. DropButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  7149. DropButton.TextSize = 14.000
  7150.  
  7151. Droptitle.Name = "Droptitle"
  7152. Droptitle.Parent = Dropdown
  7153. Droptitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  7154. Droptitle.BackgroundTransparency = 1.000
  7155. Droptitle.Position = UDim2.new(0.0281690136, 0, 0, 0)
  7156. Droptitle.Size = UDim2.new(0, 410, 0, 30)
  7157. Droptitle.Font = Enum.Font.Gotham
  7158. Droptitle.Text = text.." : "
  7159. Droptitle.TextColor3 = Color3.fromRGB(225, 225, 225)
  7160. Droptitle.TextSize = 11.000
  7161. Droptitle.TextXAlignment = Enum.TextXAlignment.Left
  7162.  
  7163. DropImage.Name = "DropImage"
  7164. DropImage.Parent = Dropdown
  7165. DropImage.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  7166. DropImage.BackgroundTransparency = 1.000
  7167. DropImage.Position = UDim2.new(0, 425, 0, 5)
  7168. DropImage.Rotation = 0
  7169. DropImage.Size = UDim2.new(0, 20, 0, 20)
  7170. DropImage.Image = "rbxassetid://5012539403"
  7171.  
  7172. DropScroll.Name = "DropScroll"
  7173. DropScroll.Parent = Droptitle
  7174. DropScroll.Active = true
  7175. DropScroll.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  7176. DropScroll.BackgroundTransparency = 1.000
  7177. DropScroll.BorderSizePixel = 0
  7178. DropScroll.Position = UDim2.new(-0.0317460336, 0, 1, 0)
  7179. DropScroll.Size = UDim2.new(0, 455, 0, 70)
  7180. DropScroll.CanvasSize = UDim2.new(0, 0, 0, 2)
  7181. DropScroll.ScrollBarThickness = 2
  7182.  
  7183. DropdownList.Name = "DropdownList"
  7184. DropdownList.Parent = DropScroll
  7185. DropdownList.SortOrder = Enum.SortOrder.LayoutOrder
  7186. DropdownList.Padding = UDim.new(0, 5)
  7187.  
  7188. DropdownPadding.Name = "DropdownPadding"
  7189. DropdownPadding.Parent = DropScroll
  7190. DropdownPadding.PaddingTop = UDim.new(0, 5)
  7191.  
  7192. local isdropping = false
  7193.  
  7194. for i,v in next,table do
  7195. local DropButton2 = Instance.new("TextButton")
  7196.  
  7197. DropButton2.Name = "DropButton2"
  7198. DropButton2.Parent = DropScroll
  7199. DropButton2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  7200. DropButton2.BackgroundTransparency = 1.000
  7201. DropButton2.Size = UDim2.new(0, 455, 0, 30)
  7202. DropButton2.AutoButtonColor = false
  7203. DropButton2.Font = Enum.Font.Gotham
  7204. DropButton2.TextColor3 = Color3.fromRGB(225, 225, 225)
  7205. DropButton2.TextSize = 11.000
  7206. DropButton2.Text = tostring(v)
  7207.  
  7208. DropButton2.MouseEnter:Connect(function()
  7209. TweenService:Create(
  7210. DropButton2,
  7211. TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  7212. {TextColor3 = Color3.fromRGB(255,0,0)}
  7213. ):Play()
  7214. end)
  7215. DropButton2.MouseLeave:Connect(function()
  7216. TweenService:Create(
  7217. DropButton2,
  7218. TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  7219. {TextColor3 = Color3.fromRGB(225, 225, 225)}
  7220. ):Play()
  7221. end)
  7222.  
  7223. DropButton2.MouseButton1Click:Connect(function()
  7224. TweenService:Create(
  7225. Dropdown,
  7226. TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  7227. {Size = UDim2.new(0, 455, 0, 30)}
  7228. ):Play()
  7229. TweenService:Create(
  7230. DropImage,
  7231. TweenInfo.new(0.3, Enum.EasingStyle.Linear, Enum.EasingDirection.Out),
  7232. {Rotation = 0}
  7233. ):Play()
  7234. Droptitle.Text = text.." : "..tostring(v)
  7235. callback(v)
  7236. isdropping = not isdropping
  7237. DropScroll.CanvasSize = UDim2.new(0,0,0,DropdownList.AbsoluteContentSize.Y + 10)
  7238. end)
  7239. end
  7240.  
  7241. DropButton.MouseButton1Click:Connect(function()
  7242. if isdropping == false then
  7243. isdropping = true
  7244. TweenService:Create(
  7245. Dropdown,
  7246. TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  7247. {Size = UDim2.new(0, 455, 0, 100)}
  7248. ):Play()
  7249. TweenService:Create(
  7250. DropImage,
  7251. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  7252. {Rotation = -180}
  7253. ):Play()
  7254. DropScroll.CanvasSize = UDim2.new(0,0,0,DropdownList.AbsoluteContentSize.Y + 10)
  7255. else
  7256. isdropping = false
  7257. TweenService:Create(
  7258. Dropdown,
  7259. TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  7260. {Size = UDim2.new(0, 455, 0, 30)}
  7261. ):Play()
  7262. TweenService:Create(
  7263. DropImage,
  7264. TweenInfo.new(0.4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  7265. {Rotation = 0}
  7266. ):Play()
  7267. DropScroll.CanvasSize = UDim2.new(0,0,0,DropdownList.AbsoluteContentSize.Y + 10)
  7268. end
  7269. end)
  7270. DropScroll.CanvasSize = UDim2.new(0,0,0,DropdownList.AbsoluteContentSize.Y + 10)
  7271.  
  7272. local drop = {}
  7273.  
  7274. function drop:Clear()
  7275. Droptitle.Text = tostring(text).." :"
  7276. TweenService:Create(
  7277. Dropdown,
  7278. TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  7279. {Size = UDim2.new(0, 455, 0, 30)}
  7280. ):Play()
  7281. isdropping = false
  7282. for i, v in next, DropScroll:GetChildren() do
  7283. if v:IsA("TextButton") then
  7284. v:Destroy()
  7285. end
  7286. end
  7287. end
  7288. function drop:Add(t)
  7289. local DropButton2 = Instance.new("TextButton")
  7290.  
  7291. DropButton2.Name = "DropButton2"
  7292. DropButton2.Parent = DropScroll
  7293. DropButton2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  7294. DropButton2.BackgroundTransparency = 1.000
  7295. DropButton2.Size = UDim2.new(0, 455, 0, 30)
  7296. DropButton2.AutoButtonColor = false
  7297. DropButton2.Font = Enum.Font.Gotham
  7298. DropButton2.TextColor3 = Color3.fromRGB(225, 225, 225)
  7299. DropButton2.TextSize = 11.000
  7300. DropButton2.Text = tostring(t)
  7301.  
  7302. DropButton2.MouseButton1Click:Connect(function()
  7303. TweenService:Create(
  7304. Dropdown,
  7305. TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
  7306. {Size = UDim2.new(0, 455, 0, 30)}
  7307. ):Play()
  7308. TweenService:Create(
  7309. DropImage,
  7310. TweenInfo.new(0.3, Enum.EasingStyle.Linear, Enum.EasingDirection.Out),
  7311. {Rotation = 0}
  7312. ):Play()
  7313. Droptitle.Text = text.." : "..tostring(t)
  7314. callback(t)
  7315. isdropping = not isdropping
  7316. DropScroll.CanvasSize = UDim2.new(0,0,0,DropdownList.AbsoluteContentSize.Y + 10)
  7317. end)
  7318. end
  7319. return drop
  7320. end
  7321.  
  7322. function main:AddSlider(text,min,max,set,callback)
  7323. set = (math.clamp(set,min,max))
  7324. if set > max then set = max end
  7325.  
  7326. local Slider = Instance.new("Frame")
  7327. local UICorner = Instance.new("UICorner")
  7328. local SliderTitle = Instance.new("TextLabel")
  7329. local SliderValue = Instance.new("TextLabel")
  7330. local SliderButton = Instance.new("TextButton")
  7331. local Bar1 = Instance.new("Frame")
  7332. local Bar = Instance.new("Frame")
  7333. local UICorner_2 = Instance.new("UICorner")
  7334. local CircleBar = Instance.new("Frame")
  7335. local UICorner_3 = Instance.new("UICorner")
  7336. local UICorner_4 = Instance.new("UICorner")
  7337.  
  7338. Slider.Name = "Slider"
  7339. Slider.Parent = ScrollTab
  7340. Slider.BackgroundColor3 = Color3.fromRGB(50, 48, 59)
  7341. Slider.Size = UDim2.new(0, 455, 0, 40)
  7342.  
  7343. UICorner.CornerRadius = UDim.new(0, 5)
  7344. UICorner.Parent = Slider
  7345.  
  7346. SliderTitle.Name = "SliderTitle"
  7347. SliderTitle.Parent = Slider
  7348. SliderTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  7349. SliderTitle.BackgroundTransparency = 1.000
  7350. SliderTitle.Position = UDim2.new(0.0283286124, 0, 0, 0)
  7351. SliderTitle.Size = UDim2.new(0, 290, 0, 20)
  7352. SliderTitle.Font = Enum.Font.Gotham
  7353. SliderTitle.Text = text
  7354. SliderTitle.TextColor3 = Color3.fromRGB(225, 225, 225)
  7355. SliderTitle.TextSize = 11.000
  7356. SliderTitle.TextXAlignment = Enum.TextXAlignment.Left
  7357.  
  7358. SliderValue.Name = "SliderValue"
  7359. SliderValue.Parent = Slider
  7360. SliderValue.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  7361. SliderValue.BackgroundTransparency = 1.000
  7362. SliderValue.Position = UDim2.new(0.887778878, 0, 0, 0)
  7363. SliderValue.Size = UDim2.new(0, 40, 0, 20)
  7364. SliderValue.Font = Enum.Font.Gotham
  7365. SliderValue.Text = tostring(set and math.floor( (set / max) * (max - min) + min) or 0)
  7366. SliderValue.TextColor3 = Color3.fromRGB(225, 225, 225)
  7367. SliderValue.TextSize = 11.000
  7368.  
  7369. SliderButton.Name = "SliderButton"
  7370. SliderButton.Parent = Slider
  7371. SliderButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  7372. SliderButton.BackgroundTransparency = 1.000
  7373. SliderButton.Position = UDim2.new(0, 10, 0, 25)
  7374. SliderButton.Size = UDim2.new(0, 435, 0, 5)
  7375. SliderButton.AutoButtonColor = false
  7376. SliderButton.Font = Enum.Font.SourceSans
  7377. SliderButton.Text = ""
  7378. SliderButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  7379. SliderButton.TextSize = 14.000
  7380.  
  7381. Bar1.Name = "Bar1"
  7382. Bar1.Parent = SliderButton
  7383. Bar1.BackgroundColor3 = Color3.fromRGB(30, 28, 39)
  7384. Bar1.Size = UDim2.new(0, 435, 0, 5)
  7385.  
  7386. Bar.Name = "Bar"
  7387. Bar.Parent = Bar1
  7388. Bar.BackgroundColor3 = Color3.fromRGB(255,0,0)
  7389. Bar.Size = UDim2.new(set/max, 0, 0, 5)
  7390.  
  7391. UICorner_2.CornerRadius = UDim.new(0, 100)
  7392. UICorner_2.Parent = Bar
  7393.  
  7394. CircleBar.Name = "CircleBar"
  7395. CircleBar.Parent = Bar
  7396. CircleBar.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  7397. CircleBar.Position = UDim2.new(1, -2, 0, -2)
  7398. CircleBar.AnchorPoint = Vector2.new(0, 0.1)
  7399. CircleBar.Size = UDim2.new(0, 10, 0, 10)
  7400.  
  7401. UICorner_3.CornerRadius = UDim.new(0, 100)
  7402. UICorner_3.Parent = CircleBar
  7403.  
  7404. UICorner_4.CornerRadius = UDim.new(0, 100)
  7405. UICorner_4.Parent = Bar1
  7406.  
  7407. local mouse = game.Players.LocalPlayer:GetMouse()
  7408. local uis = game:GetService("UserInputService")
  7409.  
  7410. if Value == nil then
  7411. Value = set
  7412. pcall(function()
  7413. callback(Value)
  7414. end)
  7415. end
  7416.  
  7417. SliderButton.MouseButton1Down:Connect(function()
  7418. Value = math.floor((((tonumber(max) - tonumber(min)) / 435) * Bar.AbsoluteSize.X) + tonumber(min)) or 0
  7419. pcall(function()
  7420. callback(Value)
  7421. end)
  7422. Bar.Size = UDim2.new(0, math.clamp(mouse.X - Bar.AbsolutePosition.X, 0, 435), 0, 5)
  7423. CircleBar.Position = UDim2.new(0, math.clamp(mouse.X - Bar.AbsolutePosition.X - 2, 0, 425), 0, -2)
  7424. moveconnection = mouse.Move:Connect(function()
  7425. SliderValue.Text = Value
  7426. Value = math.floor((((tonumber(max) - tonumber(min)) / 435) * Bar.AbsoluteSize.X) + tonumber(min))
  7427. pcall(function()
  7428. callback(Value)
  7429. end)
  7430. Bar.Size = UDim2.new(0, math.clamp(mouse.X - Bar.AbsolutePosition.X, 0, 435), 0, 5)
  7431. CircleBar.Position = UDim2.new(0, math.clamp(mouse.X - Bar.AbsolutePosition.X - 2, 0, 425), 0, -2)
  7432. end)
  7433. releaseconnection = uis.InputEnded:Connect(function(Mouse)
  7434. if Mouse.UserInputType == Enum.UserInputType.MouseButton1 then
  7435. Value = math.floor((((tonumber(max) - tonumber(min)) / 435) * Bar.AbsoluteSize.X) + tonumber(min))
  7436. pcall(function()
  7437. callback(Value)
  7438. end)
  7439. Bar.Size = UDim2.new(0, math.clamp(mouse.X - Bar.AbsolutePosition.X, 0, 435), 0, 5)
  7440. CircleBar.Position = UDim2.new(0, math.clamp(mouse.X - Bar.AbsolutePosition.X - 2, 0, 425), 0, -2)
  7441. moveconnection:Disconnect()
  7442. releaseconnection:Disconnect()
  7443. end
  7444. end)
  7445. end)
  7446. releaseconnection = uis.InputEnded:Connect(function(Mouse)
  7447. if Mouse.UserInputType == Enum.UserInputType.MouseButton1 then
  7448. Value = math.floor((((tonumber(max) - tonumber(min)) / 435) * Bar.AbsoluteSize.X) + tonumber(min))
  7449. SliderValue.Text = Value
  7450. end
  7451. end)
  7452. end
  7453. function main:AddSeperator(text)
  7454. local Seperator = Instance.new("Frame")
  7455. local Sep1 = Instance.new("Frame")
  7456. local SepLabel = Instance.new("TextLabel")
  7457. local Sep2 = Instance.new("Frame")
  7458.  
  7459. Seperator.Name = "Seperator"
  7460. Seperator.Parent = ScrollTab
  7461. Seperator.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  7462. Seperator.BackgroundTransparency = 1.000
  7463. Seperator.ClipsDescendants = true
  7464. Seperator.Size = UDim2.new(0, 455, 0, 20)
  7465.  
  7466. Sep1.Name = "Sep1"
  7467. Sep1.Parent = Seperator
  7468. Sep1.BackgroundColor3 = Color3.fromRGB(255,0,0)
  7469. Sep1.BorderSizePixel = 0
  7470. Sep1.Position = UDim2.new(0, 0, 0, 10)
  7471. Sep1.Size = UDim2.new(0, 150, 0, 1)
  7472.  
  7473. SepLabel.Name = "SepLabel"
  7474. SepLabel.Parent = Seperator
  7475. SepLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  7476. SepLabel.BackgroundTransparency = 1.000
  7477. SepLabel.Position = UDim2.new(0, 95, 0, 0)
  7478. SepLabel.Size = UDim2.new(0, 255, 0, 20)
  7479. SepLabel.Font = Enum.Font.Gotham
  7480. SepLabel.Text = text
  7481. SepLabel.TextColor3 = Color3.fromRGB(225,225,225)
  7482. SepLabel.TextSize = 11.000
  7483.  
  7484. Sep2.Name = "Sep2"
  7485. Sep2.Parent = Seperator
  7486. Sep2.BackgroundColor3 = Color3.fromRGB(255,0,0)
  7487. Sep2.BorderSizePixel = 0
  7488. Sep2.Position = UDim2.new(0, 305, 0, 10)
  7489. Sep2.Size = UDim2.new(0, 150, 0, 1)
  7490. end
  7491. function main:AddLine()
  7492. local Line = Instance.new("Frame")
  7493. local Linee = Instance.new("Frame")
  7494.  
  7495. Line.Name = "Line"
  7496. Line.Parent = ScrollTab
  7497. Line.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  7498. Line.BackgroundTransparency = 1.000
  7499. Line.ClipsDescendants = true
  7500. Line.Size = UDim2.new(0, 455, 0, 20)
  7501.  
  7502. Linee.Name = "Linee"
  7503. Linee.Parent = Line
  7504. Linee.BackgroundColor3 = Color3.fromRGB(255,0,0)
  7505. Linee.BorderSizePixel = 0
  7506. Linee.Position = UDim2.new(0, 0, 0, 10)
  7507. Linee.Size = UDim2.new(0, 455, 0, 1)
  7508. end
  7509. function main:AddLabel(text)
  7510. local Label = Instance.new("TextLabel")
  7511. local PaddingLabel = Instance.new("UIPadding")
  7512. local labell = {}
  7513.  
  7514. Label.Name = "Label"
  7515. Label.Parent = ScrollTab
  7516. Label.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  7517. Label.BackgroundTransparency = 1.000
  7518. Label.Size = UDim2.new(0, 455, 0, 20)
  7519. Label.Font = Enum.Font.Gotham
  7520. Label.TextColor3 = Color3.fromRGB(225, 225, 225)
  7521. Label.TextSize = 11.000
  7522. Label.Text = text
  7523. Label.TextXAlignment = Enum.TextXAlignment.Left
  7524.  
  7525. PaddingLabel.PaddingLeft = UDim.new(0,10)
  7526. PaddingLabel.Parent = Label
  7527. PaddingLabel.Name = "PaddingLabel"
  7528.  
  7529. function labell:Set(newtext)
  7530. Label.Text = newtext
  7531. end
  7532.  
  7533. return labell
  7534. end
  7535.  
  7536. return main
  7537. end
  7538. return uitab
  7539. end
  7540. end
  7541.  
  7542.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement