Advertisement
Domadicoof-28363

Untitled

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