Advertisement
NightGolden

Untitled

Mar 12th, 2023
927
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 246.77 KB | None | 0 0
  1. if game.PlaceId == 2753915549 or game.PlaceId == 4442272183 or game.PlaceId == 7449423635 then
  2. _G.Color = Color3.fromRGB(255,0,0)
  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(1059.37195, 15.4495068, 1550.4231, 0.939700544, -0, -0.341998369, 0, 1, -0, 0.341998369, 0, 0.939700544)
  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(-1598.08911, 35.5501175, 153.377838, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  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(-1598.08911, 35.5501175, 153.377838, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  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(-5313.37012, 10.9500084, 8515.29395, -0.499959469, 0, 0.866048813, 0, 1, 0, -0.866048813, 0, -0.499959469)
  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(-7859.09814, 5544.19043, -381.476196, -0.422592998, 0, 0.906319618, 0, 1, 0, -0.906319618, 0, -0.422592998)
  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(-7906.81592, 5634.6626, -1411.99194, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  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(-7906.81592, 5634.6626, -1411.99194, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  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(5259.81982, 37.3500175, 4050.0293, 0.087131381, 0, 0.996196866, 0, 1, 0, -0.996196866, 0, 0.087131381)
  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 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. end
  1476. end
  1477. end
  1478.  
  1479. function Hop()
  1480. local PlaceID = game.PlaceId
  1481. local AllIDs = {}
  1482. local foundAnything = ""
  1483. local actualHour = os.date("!*t").hour
  1484. local Deleted = false
  1485. function TPReturner()
  1486. local Site;
  1487. if foundAnything == "" then
  1488. Site = game.HttpService:JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. PlaceID .. '/servers/Public?sortOrder=Asc&limit=100'))
  1489. else
  1490. Site = game.HttpService:JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. PlaceID .. '/servers/Public?sortOrder=Asc&limit=100&cursor=' .. foundAnything))
  1491. end
  1492. local ID = ""
  1493. if Site.nextPageCursor and Site.nextPageCursor ~= "null" and Site.nextPageCursor ~= nil then
  1494. foundAnything = Site.nextPageCursor
  1495. end
  1496. local num = 0;
  1497. for i,v in pairs(Site.data) do
  1498. local Possible = true
  1499. ID = tostring(v.id)
  1500. if tonumber(v.maxPlayers) > tonumber(v.playing) then
  1501. for _,Existing in pairs(AllIDs) do
  1502. if num ~= 0 then
  1503. if ID == tostring(Existing) then
  1504. Possible = false
  1505. end
  1506. else
  1507. if tonumber(actualHour) ~= tonumber(Existing) then
  1508. local delFile = pcall(function()
  1509. AllIDs = {}
  1510. table.insert(AllIDs, actualHour)
  1511. end)
  1512. end
  1513. end
  1514. num = num + 1
  1515. end
  1516. if Possible == true then
  1517. table.insert(AllIDs, ID)
  1518. wait()
  1519. pcall(function()
  1520. wait()
  1521. game:GetService("TeleportService"):TeleportToPlaceInstance(PlaceID, ID, game.Players.LocalPlayer)
  1522. end)
  1523. wait(4)
  1524. end
  1525. end
  1526. end
  1527. end
  1528. function Teleport()
  1529. while wait() do
  1530. pcall(function()
  1531. TPReturner()
  1532. if foundAnything ~= "" then
  1533. TPReturner()
  1534. end
  1535. end)
  1536. end
  1537. end
  1538. Teleport()
  1539. end
  1540.  
  1541. function isnil(thing)
  1542. return (thing == nil)
  1543. end
  1544. local function round(n)
  1545. return math.floor(tonumber(n) + 0.5)
  1546. end
  1547. Number = math.random(1, 1000000)
  1548. function UpdateEspPlayer()
  1549. if ESPPlayer then
  1550. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1551. if not isnil(v.Character) then
  1552. if not v.Character.Head:FindFirstChild('NameEsp'..v.Name) then
  1553. local BillboardGui = Instance.new("BillboardGui")
  1554. local ESP = Instance.new("TextLabel")
  1555. local HealthESP = Instance.new("TextLabel")
  1556. BillboardGui.Parent = v.Character.Head
  1557. BillboardGui.Name = 'NameEsp'..v.Name
  1558. BillboardGui.ExtentsOffset = Vector3.new(0, 1, 0)
  1559. BillboardGui.Size = UDim2.new(1,200,1,30)
  1560. BillboardGui.Adornee = v.Character.Head
  1561. BillboardGui.AlwaysOnTop = true
  1562. ESP.Name = "ESP"
  1563. ESP.Parent = BillboardGui
  1564. ESP.TextTransparency = 0
  1565. ESP.BackgroundTransparency = 1
  1566. ESP.Size = UDim2.new(0, 200, 0, 30)
  1567. ESP.Position = UDim2.new(0,25,0,0)
  1568. ESP.Font = Enum.Font.Gotham
  1569. ESP.Text = (v.Name ..' '.."[ "..round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Character.Head.Position).Magnitude/3) ..' M'.." ]")
  1570. if v.Team == game:GetService("Players").LocalPlayer.Team then
  1571. ESP.TextColor3 = Color3.new(0, 255, 255)
  1572. else
  1573. ESP.TextColor3 = Color3.new(255, 0, 0)
  1574. end
  1575. ESP.TextSize = 14
  1576. ESP.TextStrokeTransparency = 0.500
  1577. ESP.TextWrapped = true
  1578. HealthESP.Name = "HealthESP"
  1579. HealthESP.Parent = ESP
  1580. HealthESP.TextTransparency = 0
  1581. HealthESP.BackgroundTransparency = 1
  1582. HealthESP.Position = ESP.Position + UDim2.new(0, -25, 0, 15)
  1583. HealthESP.Size = UDim2.new(0, 200, 0, 30)
  1584. HealthESP.Font = Enum.Font.Gotham
  1585. HealthESP.TextColor3 = Color3.fromRGB(255, 0, 0)
  1586. HealthESP.TextSize = 14
  1587. HealthESP.TextStrokeTransparency = 0.500
  1588. HealthESP.TextWrapped = true
  1589. HealthESP.Text = "Health "..math.floor(v.Character.Humanoid.Health).."/"..math.floor(v.Character.Humanoid.MaxHealth)
  1590. else
  1591. v.Character.Head['NameEsp'..v.Name].ESP.Text = (v.Name ..' '..round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Character.Head.Position).Magnitude/3) ..' M')
  1592. v.Character.Head['NameEsp'..v.Name].ESP.HealthESP.Text = "Health "..math.floor(v.Character.Humanoid.Health).."/"..math.floor(v.Character.Humanoid.MaxHealth)
  1593. v.Character.Head:FindFirstChild('NameEsp'..v.Name).ESP.TextTransparency = 0
  1594. v.Character.Head:FindFirstChild('NameEsp'..v.Name).ESP.HealthESP.TextTransparency = 0
  1595. end
  1596. end
  1597. end
  1598. else
  1599. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1600. if v.Character.Head:FindFirstChild('NameEsp'..v.Name) then
  1601. v.Character.Head:FindFirstChild('NameEsp'..v.Name).ESP.TextTransparency = 1
  1602. v.Character.Head:FindFirstChild('NameEsp'..v.Name).ESP.HealthESP.TextTransparency = 1
  1603. end
  1604. end
  1605. end
  1606. end
  1607.  
  1608. function UpdateIslandESP()
  1609. for i,v in pairs(game:GetService("Workspace")["_WorldOrigin"].Locations:GetChildren()) do
  1610. pcall(function()
  1611. if IslandESP then
  1612. if v.Name ~= "Sea" then
  1613. if not v:FindFirstChild('NameEsp') then
  1614. local bill = Instance.new('BillboardGui',v)
  1615. bill.Name = 'NameEsp'
  1616. bill.ExtentsOffset = Vector3.new(0, 1, 0)
  1617. bill.Size = UDim2.new(1,200,1,30)
  1618. bill.Adornee = v
  1619. bill.AlwaysOnTop = true
  1620. local name = Instance.new('TextLabel',bill)
  1621. name.Font = "GothamBold"
  1622. name.FontSize = "Size14"
  1623. name.TextWrapped = true
  1624. name.Size = UDim2.new(1,0,1,0)
  1625. name.TextYAlignment = 'Top'
  1626. name.BackgroundTransparency = 1
  1627. name.TextStrokeTransparency = 0.5
  1628. name.TextColor3 = Color3.fromRGB(80, 245, 245)
  1629. else
  1630. v['NameEsp'].TextLabel.Text = (v.Name ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  1631. end
  1632. end
  1633. else
  1634. if v:FindFirstChild('NameEsp') then
  1635. v:FindFirstChild('NameEsp'):Destroy()
  1636. end
  1637. end
  1638. end)
  1639. end
  1640. end
  1641.  
  1642. function UpdateChestEsp()
  1643. for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
  1644. pcall(function()
  1645. if string.find(v.Name,"Chest") then
  1646. if ChestESP then
  1647. if string.find(v.Name,"Chest") then
  1648. if not v:FindFirstChild('NameEsp'..Number) then
  1649. local bill = Instance.new('BillboardGui',v)
  1650. bill.Name = 'NameEsp'..Number
  1651. bill.ExtentsOffset = Vector3.new(0, 1, 0)
  1652. bill.Size = UDim2.new(1,200,1,30)
  1653. bill.Adornee = v
  1654. bill.AlwaysOnTop = true
  1655. local name = Instance.new('TextLabel',bill)
  1656. name.Font = "GothamBold"
  1657. name.FontSize = "Size14"
  1658. name.TextWrapped = true
  1659. name.Size = UDim2.new(1,0,1,0)
  1660. name.TextYAlignment = 'Top'
  1661. name.BackgroundTransparency = 1
  1662. name.TextStrokeTransparency = 0.5
  1663. name.TextColor3 = Color3.fromRGB(0, 255, 250)
  1664. if v.Name == "Chest1" then
  1665. name.Text = ("Chest 1" ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  1666. end
  1667. if v.Name == "Chest2" then
  1668. name.Text = ("Chest 2" ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  1669. end
  1670. if v.Name == "Chest3" then
  1671. name.Text = ("Chest 3" ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  1672. end
  1673. else
  1674. v['NameEsp'..Number].TextLabel.Text = (v.Name ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  1675. end
  1676. end
  1677. else
  1678. if v:FindFirstChild('NameEsp'..Number) then
  1679. v:FindFirstChild('NameEsp'..Number):Destroy()
  1680. end
  1681. end
  1682. end
  1683. end)
  1684. end
  1685. end
  1686.  
  1687. function UpdateBfEsp()
  1688. for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
  1689. pcall(function()
  1690. if DevilFruitESP then
  1691. if string.find(v.Name, "Fruit") then
  1692. if not v.Handle:FindFirstChild('NameEsp'..Number) then
  1693. local bill = Instance.new('BillboardGui',v.Handle)
  1694. bill.Name = 'NameEsp'..Number
  1695. bill.ExtentsOffset = Vector3.new(0, 1, 0)
  1696. bill.Size = UDim2.new(1,200,1,30)
  1697. bill.Adornee = v.Handle
  1698. bill.AlwaysOnTop = true
  1699. local name = Instance.new('TextLabel',bill)
  1700. name.Font = "GothamBold"
  1701. name.FontSize = "Size14"
  1702. name.TextWrapped = true
  1703. name.Size = UDim2.new(1,0,1,0)
  1704. name.TextYAlignment = 'Top'
  1705. name.BackgroundTransparency = 1
  1706. name.TextStrokeTransparency = 0.5
  1707. name.TextColor3 = Color3.fromRGB(255, 0, 0)
  1708. name.Text = (v.Name ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Handle.Position).Magnitude/3) ..' M')
  1709. else
  1710. v.Handle['NameEsp'..Number].TextLabel.Text = (v.Name ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Handle.Position).Magnitude/3) ..' M')
  1711. end
  1712. end
  1713. else
  1714. if v.Handle:FindFirstChild('NameEsp'..Number) then
  1715. v.Handle:FindFirstChild('NameEsp'..Number):Destroy()
  1716. end
  1717. end
  1718. end)
  1719. end
  1720. end
  1721.  
  1722. function UpdateFlowerEsp()
  1723. for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
  1724. pcall(function()
  1725. if v.Name == "Flower2" or v.Name == "Flower1" then
  1726. if FlowerESP then
  1727. if not v:FindFirstChild('NameEsp'..Number) then
  1728. local bill = Instance.new('BillboardGui',v)
  1729. bill.Name = 'NameEsp'..Number
  1730. bill.ExtentsOffset = Vector3.new(0, 1, 0)
  1731. bill.Size = UDim2.new(1,200,1,30)
  1732. bill.Adornee = v
  1733. bill.AlwaysOnTop = true
  1734. local name = Instance.new('TextLabel',bill)
  1735. name.Font = "GothamBold"
  1736. name.FontSize = "Size14"
  1737. name.TextWrapped = true
  1738. name.Size = UDim2.new(1,0,1,0)
  1739. name.TextYAlignment = 'Top'
  1740. name.BackgroundTransparency = 1
  1741. name.TextStrokeTransparency = 0.5
  1742. name.TextColor3 = Color3.fromRGB(255, 0, 0)
  1743. if v.Name == "Flower1" then
  1744. name.Text = ("Blue Flower" ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  1745. name.TextColor3 = Color3.fromRGB(0, 0, 255)
  1746. end
  1747. if v.Name == "Flower2" then
  1748. name.Text = ("Red Flower" ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  1749. name.TextColor3 = Color3.fromRGB(255, 0, 0)
  1750. end
  1751. else
  1752. v['NameEsp'..Number].TextLabel.Text = (v.Name ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  1753. end
  1754. else
  1755. if v:FindFirstChild('NameEsp'..Number) then
  1756. v:FindFirstChild('NameEsp'..Number):Destroy()
  1757. end
  1758. end
  1759. end
  1760. end)
  1761. end
  1762. end
  1763.  
  1764. function InfAb()
  1765. if InfAbility then
  1766. if not game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("Agility") then
  1767. local inf = Instance.new("ParticleEmitter")
  1768. inf.Acceleration = Vector3.new(0,0,0)
  1769. inf.Archivable = true
  1770. inf.Drag = 20
  1771. inf.EmissionDirection = Enum.NormalId.Top
  1772. inf.Enabled = true
  1773. inf.Lifetime = NumberRange.new(0.2,0.2)
  1774. inf.LightInfluence = 0
  1775. inf.LockedToPart = true
  1776. inf.Name = "Agility"
  1777. inf.Rate = 500
  1778. local numberKeypoints2 = {
  1779. NumberSequenceKeypoint.new(0, 0);
  1780. NumberSequenceKeypoint.new(1, 4);
  1781. }
  1782. inf.Size = NumberSequence.new(numberKeypoints2)
  1783. inf.RotSpeed = NumberRange.new(999, 9999)
  1784. inf.Rotation = NumberRange.new(0, 0)
  1785. inf.Speed = NumberRange.new(30, 30)
  1786. inf.SpreadAngle = Vector2.new(360,360)
  1787. inf.Texture = "rbxassetid://7157487174"
  1788. inf.VelocityInheritance = 0
  1789. inf.ZOffset = 2
  1790. inf.Transparency = NumberSequence.new(0)
  1791. inf.Color = ColorSequence.new(Color3.fromRGB(80,245,245),Color3.fromRGB(80,245,245))
  1792. inf.Parent = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  1793. end
  1794. else
  1795. if game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("Agility") then
  1796. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("Agility"):Destroy()
  1797. end
  1798. end
  1799. end
  1800.  
  1801. local LocalPlayer = game:GetService'Players'.LocalPlayer
  1802. local originalstam = LocalPlayer.Character.Energy.Value
  1803. function infinitestam()
  1804. LocalPlayer.Character.Energy.Changed:connect(function()
  1805. if InfiniteEnergy then
  1806. LocalPlayer.Character.Energy.Value = originalstam
  1807. end
  1808. end)
  1809. end
  1810.  
  1811. spawn(function()
  1812. pcall(function()
  1813. while wait(.1) do
  1814. if InfiniteEnergy then
  1815. wait(0.3)
  1816. originalstam = LocalPlayer.Character.Energy.Value
  1817. infinitestam()
  1818. end
  1819. end
  1820. end)
  1821. end)
  1822.  
  1823. function NoDodgeCool()
  1824. if nododgecool then
  1825. for i,v in next, getgc() do
  1826. if game:GetService("Players").LocalPlayer.Character.Dodge then
  1827. if typeof(v) == "function" and getfenv(v).script == game:GetService("Players").LocalPlayer.Character.Dodge then
  1828. for i2,v2 in next, getupvalues(v) do
  1829. if tostring(v2) == "0.4" then
  1830. repeat wait(.1)
  1831. setupvalue(v,i2,0)
  1832. until not nododgecool
  1833. end
  1834. end
  1835. end
  1836. end
  1837. end
  1838. end
  1839. end
  1840.  
  1841. function fly()
  1842. local mouse=game:GetService("Players").LocalPlayer:GetMouse''
  1843. localplayer=game:GetService("Players").LocalPlayer
  1844. game:GetService("Players").LocalPlayer.Character:WaitForChild("HumanoidRootPart")
  1845. local torso = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  1846. local speedSET=25
  1847. local keys={a=false,d=false,w=false,s=false}
  1848. local e1
  1849. local e2
  1850. local function start()
  1851. local pos = Instance.new("BodyPosition",torso)
  1852. local gyro = Instance.new("BodyGyro",torso)
  1853. pos.Name="EPIXPOS"
  1854. pos.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  1855. pos.position = torso.Position
  1856. gyro.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  1857. gyro.CFrame = torso.CFrame
  1858. repeat
  1859. wait()
  1860. localplayer.Character.Humanoid.PlatformStand=true
  1861. local new=gyro.CFrame - gyro.CFrame.p + pos.position
  1862. if not keys.w and not keys.s and not keys.a and not keys.d then
  1863. speed=1
  1864. end
  1865. if keys.w then
  1866. new = new + workspace.CurrentCamera.CoordinateFrame.lookVector * speed
  1867. speed=speed+speedSET
  1868. end
  1869. if keys.s then
  1870. new = new - workspace.CurrentCamera.CoordinateFrame.lookVector * speed
  1871. speed=speed+speedSET
  1872. end
  1873. if keys.d then
  1874. new = new * CFrame.new(speed,0,0)
  1875. speed=speed+speedSET
  1876. end
  1877. if keys.a then
  1878. new = new * CFrame.new(-speed,0,0)
  1879. speed=speed+speedSET
  1880. end
  1881. if speed>speedSET then
  1882. speed=speedSET
  1883. end
  1884. pos.position=new.p
  1885. if keys.w then
  1886. gyro.CFrame = workspace.CurrentCamera.CoordinateFrame*CFrame.Angles(-math.rad(speed*15),0,0)
  1887. elseif keys.s then
  1888. gyro.CFrame = workspace.CurrentCamera.CoordinateFrame*CFrame.Angles(math.rad(speed*15),0,0)
  1889. else
  1890. gyro.CFrame = workspace.CurrentCamera.CoordinateFrame
  1891. end
  1892. until not Fly
  1893. if gyro then
  1894. gyro:Destroy()
  1895. end
  1896. if pos then
  1897. pos:Destroy()
  1898. end
  1899. flying=false
  1900. localplayer.Character.Humanoid.PlatformStand=false
  1901. speed=0
  1902. end
  1903. e1=mouse.KeyDown:connect(function(key)
  1904. if not torso or not torso.Parent then
  1905. flying=false e1:disconnect() e2:disconnect() return
  1906. end
  1907. if key=="w" then
  1908. keys.w=true
  1909. elseif key=="s" then
  1910. keys.s=true
  1911. elseif key=="a" then
  1912. keys.a=true
  1913. elseif key=="d" then
  1914. keys.d=true
  1915. end
  1916. end)
  1917. e2=mouse.KeyUp:connect(function(key)
  1918. if key=="w" then
  1919. keys.w=false
  1920. elseif key=="s" then
  1921. keys.s=false
  1922. elseif key=="a" then
  1923. keys.a=false
  1924. elseif key=="d" then
  1925. keys.d=false
  1926. end
  1927. end)
  1928. start()
  1929. end
  1930.  
  1931. function Click()
  1932. game:GetService'VirtualUser':CaptureController()
  1933. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  1934. end
  1935.  
  1936. function AutoHaki()
  1937. if not game:GetService("Players").LocalPlayer.Character:FindFirstChild("HasBuso") then
  1938. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Buso")
  1939. end
  1940. end
  1941.  
  1942. function UnEquipWeapon(Weapon)
  1943. if game.Players.LocalPlayer.Character:FindFirstChild(Weapon) then
  1944. _G.NotAutoEquip = true
  1945. wait(.5)
  1946. game.Players.LocalPlayer.Character:FindFirstChild(Weapon).Parent = game.Players.LocalPlayer.Backpack
  1947. wait(.1)
  1948. _G.NotAutoEquip = false
  1949. end
  1950. end
  1951.  
  1952. function EquipWeapon(ToolSe)
  1953. if not _G.NotAutoEquip then
  1954. if game.Players.LocalPlayer.Backpack:FindFirstChild(ToolSe) then
  1955. Tool = game.Players.LocalPlayer.Backpack:FindFirstChild(ToolSe)
  1956. wait(.1)
  1957. game.Players.LocalPlayer.Character.Humanoid:EquipTool(Tool)
  1958. end
  1959. end
  1960. end
  1961.  
  1962. function topos(Pos)
  1963. Distance = (Pos.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude
  1964. if game.Players.LocalPlayer.Character.Humanoid.Sit == true then game.Players.LocalPlayer.Character.Humanoid.Sit = false end
  1965. pcall(function() tween = game:GetService("TweenService"):Create(game.Players.LocalPlayer.Character.HumanoidRootPart,TweenInfo.new(Distance/210, Enum.EasingStyle.Linear),{CFrame = Pos}) end)
  1966. tween:Play()
  1967. if Distance <= 250 then
  1968. tween:Cancel()
  1969. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = Pos
  1970. end
  1971. if _G.StopTween == true then
  1972. tween:Cancel()
  1973. _G.Clip = false
  1974. end
  1975. end
  1976.  
  1977. function GetDistance(target)
  1978. return math.floor((target.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude)
  1979. end
  1980.  
  1981. function TP(Pos)
  1982. Distance = (Pos.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude
  1983. if Distance < 250 then
  1984. Speed = 700000
  1985. elseif Distance >= 1000 then
  1986. Speed = 200
  1987. end
  1988. game:GetService("TweenService"):Create(
  1989. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart,
  1990. TweenInfo.new(Distance/Speed, Enum.EasingStyle.Linear),
  1991. {CFrame = Pos}
  1992. ):Play()
  1993. _G.Clip = true
  1994. wait(Distance/Speed)
  1995. _G.Clip = false
  1996. end
  1997.  
  1998. spawn(function()
  1999. pcall(function()
  2000. while wait() do
  2001. 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
  2002. if not game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("BodyClip") then
  2003. local Noclip = Instance.new("BodyVelocity")
  2004. Noclip.Name = "BodyClip"
  2005. Noclip.Parent = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2006. Noclip.MaxForce = Vector3.new(100000,100000,100000)
  2007. Noclip.Velocity = Vector3.new(0,0,0)
  2008. end
  2009. end
  2010. end
  2011. end)
  2012. end)
  2013.  
  2014. spawn(function()
  2015. pcall(function()
  2016. game:GetService("RunService").Stepped:Connect(function()
  2017. 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
  2018. for _, v in pairs(game:GetService("Players").LocalPlayer.Character:GetDescendants()) do
  2019. if v:IsA("BasePart") then
  2020. v.CanCollide = false
  2021. end
  2022. end
  2023. end
  2024. end)
  2025. end)
  2026. end)
  2027.  
  2028. spawn(function()
  2029. while wait() do
  2030. 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
  2031. pcall(function()
  2032. game:GetService("ReplicatedStorage").Remotes.CommE:FireServer("Ken",true)
  2033. end)
  2034. end
  2035. end
  2036. end)
  2037.  
  2038. function StopTween(target)
  2039. if not target then
  2040. _G.StopTween = true
  2041. wait()
  2042. topos(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame)
  2043. wait()
  2044. if game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("BodyClip") then
  2045. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("BodyClip"):Destroy()
  2046. end
  2047. _G.StopTween = false
  2048. _G.Clip = false
  2049. end
  2050. end
  2051.  
  2052. spawn(function()
  2053. pcall(function()
  2054. while wait() do
  2055. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  2056. if v:IsA("Tool") then
  2057. if v:FindFirstChild("RemoteFunctionShoot") then
  2058. SelectWeaponGun = v.Name
  2059. end
  2060. end
  2061. end
  2062. end
  2063. end)
  2064. end)
  2065.  
  2066. game:GetService("Players").LocalPlayer.Idled:connect(function()
  2067. game:GetService("VirtualUser"):Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  2068. wait(1)
  2069. game:GetService("VirtualUser"):Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  2070. end)
  2071.  
  2072. local ScreenGui = Instance.new("ScreenGui")
  2073. local Toggle = Instance.new("TextButton")
  2074.  
  2075. ScreenGui.Name = "ScreenGui"
  2076. ScreenGui.Parent = game.CoreGui
  2077.  
  2078. Toggle.Name = "Toggle"
  2079. Toggle.Parent = ScreenGui
  2080. Toggle.BackgroundColor3 = Color3.fromRGB(15, 15, 15)
  2081. Toggle.Position = UDim2.new(0.120833337, 0, 0.0952890813, 0)
  2082. Toggle.Size = UDim2.new(0, 50, 0, 50)
  2083. Toggle.Font = Enum.Font.Code
  2084. Toggle.Text = "T"
  2085. Toggle.TextColor3 = Color3.fromRGB(255, 0, 0)
  2086. Toggle.TextScaled = true
  2087. Toggle.MouseButton1Down:connect(function()
  2088. game:GetService("VirtualInputManager"):SendKeyEvent(true,305,false,game)
  2089. game:GetService("VirtualInputManager"):SendKeyEvent(false,305,false,game)
  2090. end)
  2091. --------------------------------------------------------------------
  2092. local RenUi = library:AddWindow("龙叔制作【源码来自外网】",Enum.KeyCode.RightControl)
  2093. --------------------------------------------------------------------
  2094. local Main = RenUi:AddTab("自动农场","6026568198")
  2095. local Combat = RenUi:AddTab("对战","7251993295")
  2096. local Stats = RenUi:AddTab("统计数据","7040410130")
  2097. local Teleport = RenUi:AddTab("传送岛屿","6035190846")
  2098. local Dungeon = RenUi:AddTab("突袭功能","7044284832")
  2099. local DevilFruit = RenUi:AddTab("恶魔果","7044233235")
  2100. local Shop = RenUi:AddTab("商店","6031265976")
  2101. local Misc = RenUi:AddTab("设置","6034509993")
  2102. --------------------------------------------------------------------
  2103. Main:AddSeperator("你看你🐴币")
  2104. Main:AddSeperator("Settings Farm")
  2105.  
  2106. Time = Main:AddLabel("Server Time")
  2107.  
  2108. function UpdateTime()
  2109. local GameTime = math.floor(workspace.DistributedGameTime+0.5)
  2110. local Hour = math.floor(GameTime/(60^2))%24
  2111. local Minute = math.floor(GameTime/(60^1))%60
  2112. local Second = math.floor(GameTime/(60^0))%60
  2113. Time:Set("Hr(s) : "..Hour.." Min(s) : "..Minute.." Sec(s) : "..Second)
  2114. end
  2115.  
  2116. spawn(function()
  2117. while task.wait() do
  2118. pcall(function()
  2119. UpdateTime()
  2120. end)
  2121. end
  2122. end)
  2123.  
  2124. Main:AddButton("Remove Sound",function()
  2125.  
  2126.  
  2127.  
  2128. for i, v in pairs(game.Workspace["_WorldOrigin"]:GetChildren()) do
  2129. if v.Name == "CurvedRing" or v.Name == "SlashHit" or v.Name == "SwordSlash" or v.Name == "Sounds" then
  2130. v:Destroy()
  2131. end
  2132. end
  2133. end)
  2134.  
  2135. Main:AddToggle("Delete Effect hit",false,function(value)
  2136. getgenv().D = value
  2137. end)
  2138.  
  2139. Main:AddButton("Delete Effect Damage", function()
  2140. game:GetService("ReplicatedStorage").Assets.GUI.DamageCounter.Enabled = false
  2141. end)
  2142.  
  2143. Main:AddSeperator("FastAttack and Settings")
  2144.  
  2145. Main:AddToggle("自己翻译,看你🐴币",function()
  2146.  
  2147. local plr = game.Players.LocalPlayer
  2148.  
  2149. local CbFw = debug.getupvalues(require(plr.PlayerScripts.CombatFramework))
  2150. local CbFw2 = CbFw[2]
  2151.  
  2152. function GetCurrentBlade()
  2153. local p13 = CbFw2.activeController
  2154. local ret = p13.blades[1]
  2155. if not ret then return end
  2156. while ret.Parent~=game.Players.LocalPlayer.Character do ret=ret.Parent end
  2157. return ret
  2158. end
  2159. function AttackNoCD()
  2160. local AC = CbFw2.activeController
  2161. for i = 1, 1 do
  2162. local bladehit = require(game.ReplicatedStorage.CombatFramework.RigLib).getBladeHits(
  2163. plr.Character,
  2164. {plr.Character.HumanoidRootPart},
  2165. 60
  2166. )
  2167. local cac = {}
  2168. local hash = {}
  2169. for k, v in pairs(bladehit) do
  2170. if v.Parent:FindFirstChild("HumanoidRootPart") and not hash[v.Parent] then
  2171. table.insert(cac, v.Parent.HumanoidRootPart)
  2172. hash[v.Parent] = false
  2173. end
  2174. end
  2175. bladehit = cac
  2176. if #bladehit > 0 then
  2177. local u8 = debug.getupvalue(AC.attack, 5)
  2178. local u9 = debug.getupvalue(AC.attack, 6)
  2179. local u7 = debug.getupvalue(AC.attack, 4)
  2180. local u10 = debug.getupvalue(AC.attack, 7)
  2181. local u12 = (u8 * 798405 + u7 * 727595) % u9
  2182. local u13 = u7 * 798405
  2183. (function()
  2184. u12 = (u12 * u9 + u13) % 1099511627776
  2185. u8 = math.floor(u12 / u9)
  2186. u7 = u12 - u8 * u9
  2187. end)()
  2188. u10 = u10 + 1
  2189. debug.setupvalue(AC.attack, 5, u8)
  2190. debug.setupvalue(AC.attack, 6, u9)
  2191. debug.setupvalue(AC.attack, 4, u7)
  2192. debug.setupvalue(AC.attack, 7, u10)
  2193. pcall(function()
  2194. for k, v in pairs(AC.animator.anims.basic) do
  2195. v:Play()
  2196. end
  2197. end)
  2198. if plr.Character:FindFirstChildOfClass("Tool") and AC.blades and AC.blades[1] then
  2199. game:GetService("ReplicatedStorage").RigControllerEvent:FireServer("weaponChange",tostring(GetCurrentBlade()))
  2200. game.ReplicatedStorage.Remotes.Validator:FireServer(math.floor(u12 / 1099511627776 * 16777215), u10)
  2201. game:GetService("ReplicatedStorage").RigControllerEvent:FireServer("hit", bladehit, i, "")
  2202. end
  2203. end
  2204. end
  2205. end
  2206. local cac
  2207. if SuperFastMode then
  2208. cac=task.wait
  2209. else
  2210. cac=wait
  2211. end
  2212. while cac() do
  2213. AttackNoCD()
  2214. end
  2215. end)
  2216.  
  2217. Main:AddToggle("Fast Attack",true,function(Fast)
  2218.  
  2219. _G.FastAttack = Fast
  2220.  
  2221. end)
  2222. local Module = require(game:GetService("Players").LocalPlayer.PlayerScripts.CombatFramework)
  2223. local CombatFramework = debug.getupvalues(Module)[2]
  2224. local CameraShakerR = require(game.ReplicatedStorage.Util.CameraShaker)
  2225.  
  2226. spawn(function()
  2227. while true do
  2228. if _G.FastAttack then
  2229. pcall(function()
  2230. CameraShakerR:Stop()
  2231. CombatFramework.activeController.attacking = false
  2232. CombatFramework.activeController.timeToNextAttack = 0
  2233. CombatFramework.activeController.increment = 3
  2234. CombatFramework.activeController.hitboxMagnitude = 100
  2235. CombatFramework.activeController.blocking = false
  2236. CombatFramework.activeController.timeToNextBlock = 0
  2237. CombatFramework.activeController.focusStart = 0
  2238. CombatFramework.activeController.humanoid.AutoRotate = true
  2239. end)
  2240. end
  2241. task.wait()
  2242. end
  2243. end)
  2244.  
  2245. Main:AddToggle("Auto Set Spawn Points",true,function(value)
  2246. _G.AutoSetSpawn = value
  2247. end)
  2248.  
  2249. spawn(function()
  2250. pcall(function()
  2251. while wait() do
  2252. if _G.AutoSetSpawn then
  2253. if game:GetService("Players").LocalPlayer.Character.Humanoid.Health > 0 then
  2254. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetSpawnPoint")
  2255. end
  2256. end
  2257. end
  2258. end)
  2259. end)
  2260.  
  2261. Main:AddToggle("Bring Mob",true,function(value)
  2262. _G.BringMonster = value
  2263. end)
  2264.  
  2265. WeaponList = {}
  2266.  
  2267. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  2268. if v:IsA("Tool") then
  2269. table.insert(WeaponList ,v.Name)
  2270. end
  2271. end
  2272.  
  2273. local SelectWeapona = Main:AddDropdown("Select Weapon",WeaponList,function(value)
  2274. _G.SelectWeapon = value
  2275. end)
  2276.  
  2277. Main:AddButton("Refresh Weapon",function()
  2278. SelectWeapona:Clear()
  2279. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  2280. SelectWeapona:Add(v.Name)
  2281. end
  2282. end)
  2283.  
  2284. Main:AddSeperator("Main")
  2285.  
  2286. local AutoFarm = Main:AddToggle("Auto Farm Level",_G.AutoFarm,function(value)
  2287. _G.AutoFarm = value
  2288. StopTween(_G.AutoFarm)
  2289. end)
  2290.  
  2291. spawn(function()
  2292. while wait() do
  2293. if _G.AutoFarm then
  2294. pcall(function()
  2295. local QuestTitle = game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text
  2296. if not string.find(QuestTitle, NameMon) then
  2297. StartMagnet = false
  2298. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
  2299. end
  2300. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false then
  2301. StartMagnet = false
  2302. CheckQuest()
  2303. repeat wait() topos(CFrameQuest) until (CFrameQuest.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 3 or not _G.AutoFarm
  2304. if (CFrameQuest.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 3 then
  2305. wait(1.2)
  2306. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StartQuest",NameQuest,LevelQuest)
  2307. wait(0.5)
  2308. end
  2309. elseif game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == true then
  2310. CheckQuest()
  2311. if game:GetService("Workspace").Enemies:FindFirstChild(Mon) then
  2312. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  2313. if v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 then
  2314. if v.Name == Mon then
  2315. if string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, NameMon) then
  2316. repeat task.wait()
  2317. EquipWeapon(_G.SelectWeapon)
  2318. AutoHaki()
  2319. PosMon = v.HumanoidRootPart.CFrame
  2320. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  2321. v.HumanoidRootPart.CanCollide = false
  2322. v.Humanoid.WalkSpeed = 0
  2323. v.Head.CanCollide = false
  2324. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  2325. StartMagnet = true
  2326. game:GetService'VirtualUser':CaptureController()
  2327. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  2328. until not _G.AutoFarm or v.Humanoid.Health <= 0 or not v.Parent or game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false
  2329. else
  2330. StartMagnet = false
  2331. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
  2332. end
  2333. end
  2334. end
  2335. end
  2336. else
  2337. StartMagnet = false
  2338. if game:GetService("ReplicatedStorage"):FindFirstChild(Mon) then
  2339. topos(game:GetService("ReplicatedStorage"):FindFirstChild(Mon).HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  2340. else
  2341. if (CFrameQuest.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 15 then
  2342. if PosMon ~= nil then
  2343. topos(PosMon * CFrame.new(5,10,7))
  2344. else
  2345. if OldPos ~= nil then
  2346. topos(OldPos.Position)
  2347. end
  2348. end
  2349. end
  2350. end
  2351. end
  2352. end
  2353. end)
  2354. end
  2355. end
  2356. end)
  2357.  
  2358. if World1 then
  2359. Main:AddToggle("Auto Second Sea",_G.AutoSecondSea,function(value)
  2360. _G.AutoSecondSea = value
  2361. StopTween(_G.AutoSecondSea)
  2362. end)
  2363.  
  2364. spawn(function()
  2365. while wait() do
  2366. if _G.AutoSecondSea then
  2367. pcall(function()
  2368. local MyLevel = game:GetService("Players").LocalPlayer.Data.Level.Value
  2369. if MyLevel >= 700 and World1 then
  2370. if game:GetService("Workspace").Map.Ice.Door.CanCollide == false and game:GetService("Workspace").Map.Ice.Door.Transparency == 1 then
  2371. local CFrame1 = CFrame.new(4849.29883, 5.65138149, 719.611877)
  2372. repeat topos(CFrame1) wait() until (CFrame1.Position-game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 3 or _G.AutoSecondSea == false
  2373. wait(1.1)
  2374. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("DressrosaQuestProgress","Detective")
  2375. wait(0.5)
  2376. EquipWeapon("Key")
  2377. 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
  2378. wait(0.5)
  2379. else
  2380. if game:GetService("Workspace").Map.Ice.Door.CanCollide == false and game:GetService("Workspace").Map.Ice.Door.Transparency == 1 then
  2381. if game:GetService("Workspace").Enemies:FindFirstChild("Ice Admiral [Lv. 700] [Boss]") then
  2382. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  2383. if v.Name == "Ice Admiral [Lv. 700] [Boss]" then
  2384. if not v.Humanoid.Health <= 0 then
  2385. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  2386. OldCFrameSecond = v.HumanoidRootPart.CFrame
  2387. repeat task.wait()
  2388. AutoHaki()
  2389. EquipWeapon(_G.SelectWeapon)
  2390. v.HumanoidRootPart.CanCollide = false
  2391. v.Humanoid.WalkSpeed = 0
  2392. v.Head.CanCollide = false
  2393. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  2394. v.HumanoidRootPart.CFrame = OldCFrameSecond
  2395. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  2396. game:GetService("VirtualUser"):CaptureController()
  2397. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  2398. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  2399. until not _G.AutoSecondSea or not v.Parent or v.Humanoid.Health <= 0
  2400. end
  2401. else
  2402. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelDressrosa")
  2403. end
  2404. end
  2405. end
  2406. else
  2407. if game:GetService("ReplicatedStorage"):FindFirstChild("Ice Admiral [Lv. 700] [Boss]") then
  2408. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Ice Admiral [Lv. 700] [Boss]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  2409. end
  2410. end
  2411. end
  2412. end
  2413. end
  2414. end)
  2415. end
  2416. end
  2417. end)
  2418. end
  2419.  
  2420. if World2 then
  2421. Main:AddToggle("Auto Third Sea",_G.AutoThirdSea,function(value)
  2422. _G.AutoThirdSea = value
  2423. StopTween(_G.AutoThirdSea)
  2424. end)
  2425.  
  2426. spawn(function()
  2427. while wait() do
  2428. if _G.AutoThirdSea then
  2429. pcall(function()
  2430. if game:GetService("Players").LocalPlayer.Data.Level.Value >= 1500 and World2 then
  2431. _G.AutoFarm = false
  2432. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ZQuestProgress","Check") == 0 then
  2433. topos(CFrame.new(-1926.3221435547, 12.819851875305, 1738.3092041016))
  2434. if (CFrame.new(-1926.3221435547, 12.819851875305, 1738.3092041016).Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 10 then
  2435. wait(1.5)
  2436. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ZQuestProgress","Begin")
  2437. end
  2438. wait(1.8)
  2439. if game:GetService("Workspace").Enemies:FindFirstChild("rip_indra [Lv. 1500] [Boss]") then
  2440. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  2441. if v.Name == "rip_indra [Lv. 1500] [Boss]" then
  2442. OldCFrameThird = v.HumanoidRootPart.CFrame
  2443. repeat task.wait()
  2444. AutoHaki()
  2445. EquipWeapon(_G.SelectWeapon)
  2446. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  2447. v.HumanoidRootPart.CFrame = OldCFrameThird
  2448. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  2449. v.HumanoidRootPart.CanCollide = false
  2450. v.Humanoid.WalkSpeed = 0
  2451. game:GetService'VirtualUser':CaptureController()
  2452. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  2453. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelZou")
  2454. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  2455. until _G.AutoThirdSea == false or v.Humanoid.Health <= 0 or not v.Parent
  2456. end
  2457. end
  2458. 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
  2459. topos(CFrame.new(-26880.93359375, 22.848554611206, 473.18951416016))
  2460. end
  2461. end
  2462. end
  2463. end)
  2464. end
  2465. end
  2466. end)
  2467. end
  2468.  
  2469. if World2 then
  2470. Main:AddToggle("Auto Farm Factory",_G.AutoFactory,function(value)
  2471. _G.AutoFactory = value
  2472. StopTween(_G.AutoFactory)
  2473. end)
  2474.  
  2475. spawn(function()
  2476. while wait() do
  2477. pcall(function()
  2478. if _G.AutoFactory then
  2479. if game:GetService("Workspace").Enemies:FindFirstChild("Core") then
  2480. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  2481. if v.Name == "Core" and v.Humanoid.Health > 0 then
  2482. repeat task.wait()
  2483. AutoHaki()
  2484. EquipWeapon(_G.SelectWeapon)
  2485. topos(CFrame.new(448.46756, 199.356781, -441.389252))
  2486. game:GetService("VirtualUser"):CaptureController()
  2487. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  2488. until v.Humanoid.Health <= 0 or _G.AutoFactory == false
  2489. end
  2490. end
  2491. else
  2492. topos(CFrame.new(448.46756, 199.356781, -441.389252))
  2493. end
  2494. end
  2495. end)
  2496. end
  2497. end)
  2498. elseif World3 then
  2499. Main:AddToggle("Auto Mystic Island",_G.AutoMysticIsland,function(value)
  2500. _G.AutoMysticIsland = value
  2501. end)
  2502.  
  2503. spawn(function()
  2504. while wait() do
  2505. if _G.AutoMysticIsland then
  2506. pcall(function()
  2507. if game:GetService("Workspace").Map:FindFirstChild("MysticIsland") then
  2508. topos(game:GetService("Workspace").Map:FindFirstChild("MysticIsland").HumanoidRootPart.CFrame * CFrame.new(0,500,-100))
  2509. end
  2510. end)
  2511. end
  2512. end
  2513. end)
  2514. end
  2515.  
  2516. Main:AddSeperator("Auto Melee")
  2517.  
  2518. Main:AddToggle("Auto Superhuman",_G.AutoSuperhuman,function(value)
  2519. _G.AutoSuperhuman = value
  2520. end)
  2521.  
  2522. spawn(function()
  2523. pcall(function()
  2524. while wait() do
  2525. if _G.AutoSuperhuman then
  2526. if game.Players.LocalPlayer.Backpack:FindFirstChild("Combat") or game.Players.LocalPlayer.Character:FindFirstChild("Combat") and game:GetService("Players")["LocalPlayer"].Data.Beli.Value >= 150000 then
  2527. UnEquipWeapon("Combat")
  2528. wait(.1)
  2529. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyBlackLeg")
  2530. end
  2531. if game.Players.LocalPlayer.Character:FindFirstChild("Superhuman") or game.Players.LocalPlayer.Backpack:FindFirstChild("Superhuman") then
  2532. _G.SelectWeapon = "Superhuman"
  2533. end
  2534. 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
  2535. if game.Players.LocalPlayer.Backpack:FindFirstChild("Black Leg") and game.Players.LocalPlayer.Backpack:FindFirstChild("Black Leg").Level.Value <= 299 then
  2536. _G.SelectWeapon = "Black Leg"
  2537. end
  2538. if game.Players.LocalPlayer.Backpack:FindFirstChild("Electro") and game.Players.LocalPlayer.Backpack:FindFirstChild("Electro").Level.Value <= 299 then
  2539. _G.SelectWeapon = "Electro"
  2540. end
  2541. if game.Players.LocalPlayer.Backpack:FindFirstChild("Fishman Karate") and game.Players.LocalPlayer.Backpack:FindFirstChild("Fishman Karate").Level.Value <= 299 then
  2542. _G.SelectWeapon = "Fishman Karate"
  2543. end
  2544. if game.Players.LocalPlayer.Backpack:FindFirstChild("Dragon Claw") and game.Players.LocalPlayer.Backpack:FindFirstChild("Dragon Claw").Level.Value <= 299 then
  2545. _G.SelectWeapon = "Dragon Claw"
  2546. end
  2547. 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
  2548. UnEquipWeapon("Black Leg")
  2549. wait(.1)
  2550. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectro")
  2551. end
  2552. 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
  2553. UnEquipWeapon("Black Leg")
  2554. wait(.1)
  2555. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectro")
  2556. end
  2557. 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
  2558. UnEquipWeapon("Electro")
  2559. wait(.1)
  2560. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyFishmanKarate")
  2561. end
  2562. 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
  2563. UnEquipWeapon("Electro")
  2564. wait(.1)
  2565. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyFishmanKarate")
  2566. end
  2567. 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
  2568. UnEquipWeapon("Fishman Karate")
  2569. wait(.1)
  2570. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","DragonClaw","1")
  2571. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","DragonClaw","2")
  2572. end
  2573. 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
  2574. UnEquipWeapon("Fishman Karate")
  2575. wait(.1)
  2576. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","DragonClaw","1")
  2577. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","DragonClaw","2")
  2578. end
  2579. 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
  2580. UnEquipWeapon("Dragon Claw")
  2581. wait(.1)
  2582. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySuperhuman")
  2583. end
  2584. 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
  2585. UnEquipWeapon("Dragon Claw")
  2586. wait(.1)
  2587. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySuperhuman")
  2588. end
  2589. end
  2590. end
  2591. end
  2592. end)
  2593. end)
  2594.  
  2595. Main:AddToggle("Auto DeathStep",_G.AutoDeathStep,function(value)
  2596. _G.AutoDeathStep = value
  2597. end)
  2598.  
  2599. spawn(function()
  2600. while wait() do wait()
  2601. if _G.AutoDeathStep then
  2602. 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
  2603. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Black Leg") and game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Black Leg").Level.Value >= 450 then
  2604. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDeathStep")
  2605. _G.SelectWeapon = "Death Step"
  2606. end
  2607. if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Black Leg") and game:GetService("Players").LocalPlayer.Character:FindFirstChild("Black Leg").Level.Value >= 450 then
  2608. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDeathStep")
  2609. _G.SelectWeapon = "Death Step"
  2610. end
  2611. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Black Leg") and game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Black Leg").Level.Value <= 449 then
  2612. _G.SelectWeapon = "Black Leg"
  2613. end
  2614. else
  2615. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyBlackLeg")
  2616. end
  2617. end
  2618. end
  2619. end)
  2620.  
  2621. Main:AddToggle("Auto Sharkman Karate",_G.AutoSharkman,function(value)
  2622. _G.AutoSharkman = value
  2623. end)
  2624.  
  2625. spawn(function()
  2626. pcall(function()
  2627. while wait() do
  2628. if _G.AutoSharkman then
  2629. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyFishmanKarate")
  2630. if string.find(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySharkmanKarate"), "keys") then
  2631. if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Water Key") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Water Key") then
  2632. topos(CFrame.new(-2604.6958, 239.432526, -10315.1982, 0.0425701365, 0, -0.999093413, 0, 1, 0, 0.999093413, 0, 0.0425701365))
  2633. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySharkmanKarate")
  2634. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Fishman Karate") and game:GetService("Players").LocalPlayer.Character:FindFirstChild("Fishman Karate").Level.Value >= 400 then
  2635. else
  2636. Ms = "Tide Keeper [Lv. 1475] [Boss]"
  2637. if game:GetService("Workspace").Enemies:FindFirstChild(Ms) then
  2638. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  2639. if v.Name == Ms then
  2640. OldCFrameShark = v.HumanoidRootPart.CFrame
  2641. repeat task.wait()
  2642. AutoHaki()
  2643. EquipWeapon(_G.SelectWeapon)
  2644. v.Head.CanCollide = false
  2645. v.Humanoid.WalkSpeed = 0
  2646. v.HumanoidRootPart.CanCollide = false
  2647. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  2648. v.HumanoidRootPart.CFrame = OldCFrameShark
  2649. topos(v.HumanoidRootPart.CFrame*CFrame.new(5,10,7))
  2650. game:GetService("VirtualUser"):CaptureController()
  2651. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 670))
  2652. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  2653. 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")
  2654. end
  2655. end
  2656. else
  2657. 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))
  2658. wait(3)
  2659. end
  2660. end
  2661. else
  2662. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySharkmanKarate")
  2663. end
  2664. end
  2665. end
  2666. end)
  2667. end)
  2668.  
  2669. Main:AddToggle("Auto Electric Claw",_G.AutoElectricClaw,function(value)
  2670. _G.AutoElectricClaw = value
  2671. StopTween(_G.AutoElectricClaw)
  2672. end)
  2673.  
  2674. spawn(function()
  2675. pcall(function()
  2676. while wait() do
  2677. if _G.AutoElectricClaw then
  2678. 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
  2679. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Electro") and game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Electro").Level.Value >= 400 then
  2680. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw")
  2681. _G.SelectWeapon = "Electric Claw"
  2682. end
  2683. if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Electro") and game:GetService("Players").LocalPlayer.Character:FindFirstChild("Electro").Level.Value >= 400 then
  2684. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw")
  2685. _G.SelectWeapon = "Electric Claw"
  2686. end
  2687. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Electro") and game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Electro").Level.Value <= 399 then
  2688. _G.SelectWeapon = "Electro"
  2689. end
  2690. else
  2691. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectro")
  2692. end
  2693. end
  2694. if _G.AutoElectricClaw then
  2695. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Electro") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Electro") then
  2696. 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
  2697. if _G.AutoFarm == false then
  2698. repeat task.wait()
  2699. topos(CFrame.new(-10371.4717, 330.764496, -10131.4199))
  2700. until not _G.AutoElectricClaw or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position - CFrame.new(-10371.4717, 330.764496, -10131.4199).Position).Magnitude <= 10
  2701. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw","Start")
  2702. wait(2)
  2703. repeat task.wait()
  2704. topos(CFrame.new(-12550.532226563, 336.22631835938, -7510.4233398438))
  2705. until not _G.AutoElectricClaw or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position - CFrame.new(-12550.532226563, 336.22631835938, -7510.4233398438).Position).Magnitude <= 10
  2706. wait(1)
  2707. repeat task.wait()
  2708. topos(CFrame.new(-10371.4717, 330.764496, -10131.4199))
  2709. until not _G.AutoElectricClaw or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position - CFrame.new(-10371.4717, 330.764496, -10131.4199).Position).Magnitude <= 10
  2710. wait(1)
  2711. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw")
  2712. elseif _G.AutoFarm == true then
  2713. _G.AutoFarm = false
  2714. wait(1)
  2715. repeat task.wait()
  2716. topos(CFrame.new(-10371.4717, 330.764496, -10131.4199))
  2717. until not _G.AutoElectricClaw or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position - CFrame.new(-10371.4717, 330.764496, -10131.4199).Position).Magnitude <= 10
  2718. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw","Start")
  2719. wait(2)
  2720. repeat task.wait()
  2721. topos(CFrame.new(-12550.532226563, 336.22631835938, -7510.4233398438))
  2722. until not _G.AutoElectricClaw or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position - CFrame.new(-12550.532226563, 336.22631835938, -7510.4233398438).Position).Magnitude <= 10
  2723. wait(1)
  2724. repeat task.wait()
  2725. topos(CFrame.new(-10371.4717, 330.764496, -10131.4199))
  2726. until not _G.AutoElectricClaw or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position - CFrame.new(-10371.4717, 330.764496, -10131.4199).Position).Magnitude <= 10
  2727. wait(1)
  2728. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw")
  2729. _G.SelectWeapon = "Electric Claw"
  2730. wait(.1)
  2731. _G.AutoFarm = true
  2732. end
  2733. end
  2734. end
  2735. end
  2736. end
  2737. end)
  2738. end)
  2739.  
  2740. Main:AddToggle("Auto Dragon Talon",_G.AutoDragonTalon,function(value)
  2741. _G.AutoDragonTalon = value
  2742. end)
  2743.  
  2744. spawn(function()
  2745. while wait() do
  2746. if _G.AutoDragonTalon then
  2747. 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
  2748. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Dragon Claw") and game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Dragon Claw").Level.Value >= 400 then
  2749. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDragonTalon")
  2750. _G.SelectWeapon = "Dragon Talon"
  2751. end
  2752. if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Dragon Claw") and game:GetService("Players").LocalPlayer.Character:FindFirstChild("Dragon Claw").Level.Value >= 400 then
  2753. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDragonTalon")
  2754. _G.SelectWeapon = "Dragon Talon"
  2755. end
  2756. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Dragon Claw") and game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Dragon Claw").Level.Value <= 399 then
  2757. _G.SelectWeapon = "Dragon Claw"
  2758. end
  2759. else
  2760. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","DragonClaw","2")
  2761. end
  2762. end
  2763. end
  2764. end)
  2765.  
  2766. Main:AddSeperator("Mastery")
  2767.  
  2768. Main:AddToggle("Auto Farm BF Mastery",_G.AutoFarmFruitMastery,function(value)
  2769. _G.AutoFarmFruitMastery = value
  2770. StopTween(_G.AutoFarmFruitMastery)
  2771. if _G.AutoFarmFruitMastery == false then
  2772. UseSkill = false
  2773. end
  2774. end)
  2775.  
  2776. spawn(function()
  2777. while wait() do
  2778. if _G.AutoFarmFruitMastery then
  2779. pcall(function()
  2780. local QuestTitle = game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text
  2781. if not string.find(QuestTitle, NameMon) then
  2782. Magnet = false
  2783. UseSkill = false
  2784. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
  2785. end
  2786. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false then
  2787. StartMasteryFruitMagnet = false
  2788. UseSkill = false
  2789. CheckQuest()
  2790. repeat wait()
  2791. topos(CFrameQuest)
  2792. until (CFrameQuest.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 3 or not _G.AutoFarmFruitMastery
  2793. if (CFrameQuest.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 3 then
  2794. wait(1.2)
  2795. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StartQuest",NameQuest,LevelQuest)
  2796. wait(0.5)
  2797. end
  2798. elseif game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == true then
  2799. CheckQuest()
  2800. if game:GetService("Workspace").Enemies:FindFirstChild(Mon) then
  2801. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  2802. if v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 then
  2803. if v.Name == Mon then
  2804. if string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, NameMon) then
  2805. HealthMs = v.Humanoid.MaxHealth * _G.Kill_At/100
  2806. repeat task.wait()
  2807. if v.Humanoid.Health <= HealthMs then
  2808. AutoHaki()
  2809. EquipWeapon(game:GetService("Players").LocalPlayer.Data.DevilFruit.Value)
  2810. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  2811. v.HumanoidRootPart.CanCollide = false
  2812. PosMonMasteryFruit = v.HumanoidRootPart.CFrame
  2813. v.Humanoid.WalkSpeed = 0
  2814. v.Head.CanCollide = false
  2815. UseSkill = true
  2816. else
  2817. UseSkill = false
  2818. AutoHaki()
  2819. EquipWeapon(_G.SelectWeapon)
  2820. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  2821. v.HumanoidRootPart.CanCollide = false
  2822. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  2823. PosMonMasteryFruit = v.HumanoidRootPart.CFrame
  2824. v.Humanoid.WalkSpeed = 0
  2825. v.Head.CanCollide = false
  2826. end
  2827. StartMasteryFruitMagnet = true
  2828. game:GetService'VirtualUser':CaptureController()
  2829. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  2830. until not _G.AutoFarmFruitMastery or v.Humanoid.Health <= 0 or not v.Parent or game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false
  2831. else
  2832. UseSkill = false
  2833. StartMasteryFruitMagnet = false
  2834. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
  2835. end
  2836. end
  2837. end
  2838. end
  2839. else
  2840. StartMasteryFruitMagnet = false
  2841. UseSkill = false
  2842. local Mob = game:GetService("ReplicatedStorage"):FindFirstChild(Mon)
  2843. if Mob then
  2844. topos(Mob.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  2845. else
  2846. if game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame.Y <= 1 then
  2847. game:GetService("Players").LocalPlayer.Character.Humanoid.Jump = true
  2848. task.wait()
  2849. game:GetService("Players").LocalPlayer.Character.Humanoid.Jump = false
  2850. end
  2851. end
  2852. end
  2853. end
  2854. end)
  2855. end
  2856. end
  2857. end)
  2858.  
  2859. spawn(function()
  2860. while wait() do
  2861. if UseSkill then
  2862. pcall(function()
  2863. CheckQuest()
  2864. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  2865. if game:GetService("Players").LocalPlayer.Character:FindFirstChild(game:GetService("Players").LocalPlayer.Data.DevilFruit.Value) then
  2866. MasBF = game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Data.DevilFruit.Value].Level.Value
  2867. elseif game:GetService("Players").LocalPlayer.Backpack:FindFirstChild(game:GetService("Players").LocalPlayer.Data.DevilFruit.Value) then
  2868. MasBF = game:GetService("Players").LocalPlayer.Backpack[game:GetService("Players").LocalPlayer.Data.DevilFruit.Value].Level.Value
  2869. end
  2870. if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Dragon-Dragon") then
  2871. if _G.SkillZ then
  2872. local args = {
  2873. [1] = PosMonMasteryFruit.Position
  2874. }
  2875. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2876. game:GetService("VirtualInputManager"):SendKeyEvent(true,"Z",false,game)
  2877. game:GetService("VirtualInputManager"):SendKeyEvent(false,"Z",false,game)
  2878. end
  2879. if _G.SkillX then
  2880. local args = {
  2881. [1] = PosMonMasteryFruit.Position
  2882. }
  2883. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2884. game:GetService("VirtualInputManager"):SendKeyEvent(true,"X",false,game)
  2885. game:GetService("VirtualInputManager"):SendKeyEvent(false,"X",false,game)
  2886. end
  2887. if _G.SkillC then
  2888. local args = {
  2889. [1] = PosMonMasteryFruit.Position
  2890. }
  2891. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2892. game:GetService("VirtualInputManager"):SendKeyEvent(true,"C",false,game)
  2893. wait(2)
  2894. game:GetService("VirtualInputManager"):SendKeyEvent(false,"C",false,game)
  2895. end
  2896. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Venom-Venom") then
  2897. if _G.SkillZ then
  2898. local args = {
  2899. [1] = PosMonMasteryFruit.Position
  2900. }
  2901. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2902. game:GetService("VirtualInputManager"):SendKeyEvent(true,"Z",false,game)
  2903. game:GetService("VirtualInputManager"):SendKeyEvent(false,"Z",false,game)
  2904. end
  2905. if _G.SkillX then
  2906. local args = {
  2907. [1] = PosMonMasteryFruit.Position
  2908. }
  2909. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2910. game:GetService("VirtualInputManager"):SendKeyEvent(true,"X",false,game)
  2911. game:GetService("VirtualInputManager"):SendKeyEvent(false,"X",false,game)
  2912. end
  2913. if _G.SkillC then
  2914. local args = {
  2915. [1] = PosMonMasteryFruit.Position
  2916. }
  2917. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2918. game:GetService("VirtualInputManager"):SendKeyEvent(true,"C",false,game)
  2919. wait(2)
  2920. game:GetService("VirtualInputManager"):SendKeyEvent(false,"C",false,game)
  2921. end
  2922. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Human-Human: Buddha") then
  2923. if _G.SkillZ and game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Size == Vector3.new(2, 2.0199999809265, 1) then
  2924. local args = {
  2925. [1] = PosMonMasteryFruit.Position
  2926. }
  2927. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2928. game:GetService("VirtualInputManager"):SendKeyEvent(true,"Z",false,game)
  2929. game:GetService("VirtualInputManager"):SendKeyEvent(false,"Z",false,game)
  2930. end
  2931. if _G.SkillX then
  2932. local args = {
  2933. [1] = PosMonMasteryFruit.Position
  2934. }
  2935. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2936. game:GetService("VirtualInputManager"):SendKeyEvent(true,"X",false,game)
  2937. game:GetService("VirtualInputManager"):SendKeyEvent(false,"X",false,game)
  2938. end
  2939. if _G.SkillC then
  2940. local args = {
  2941. [1] = PosMonMasteryFruit.Position
  2942. }
  2943. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2944. game:GetService("VirtualInputManager"):SendKeyEvent(true,"C",false,game)
  2945. game:GetService("VirtualInputManager"):SendKeyEvent(false,"C",false,game)
  2946. end
  2947. if _G.SkillV then
  2948. local args = {
  2949. [1] = PosMonMasteryFruit.Position
  2950. }
  2951. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2952. game:GetService("VirtualInputManager"):SendKeyEvent(true,"V",false,game)
  2953. game:GetService("VirtualInputManager"):SendKeyEvent(false,"V",false,game)
  2954. end
  2955. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild(game:GetService("Players").LocalPlayer.Data.DevilFruit.Value) then
  2956. if _G.SkillZ then
  2957. local args = {
  2958. [1] = PosMonMasteryFruit.Position
  2959. }
  2960. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2961. game:GetService("VirtualInputManager"):SendKeyEvent(true,"Z",false,game)
  2962. game:GetService("VirtualInputManager"):SendKeyEvent(false,"Z",false,game)
  2963. end
  2964. if _G.SkillX then
  2965. local args = {
  2966. [1] = PosMonMasteryFruit.Position
  2967. }
  2968. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2969. game:GetService("VirtualInputManager"):SendKeyEvent(true,"X",false,game)
  2970. game:GetService("VirtualInputManager"):SendKeyEvent(false,"X",false,game)
  2971. end
  2972. if _G.SkillC then
  2973. local args = {
  2974. [1] = PosMonMasteryFruit.Position
  2975. }
  2976. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2977. game:GetService("VirtualInputManager"):SendKeyEvent(true,"C",false,game)
  2978. game:GetService("VirtualInputManager"):SendKeyEvent(false,"C",false,game)
  2979. end
  2980. if _G.SkillV then
  2981. local args = {
  2982. [1] = PosMonMasteryFruit.Position
  2983. }
  2984. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  2985. game:GetService("VirtualInputManager"):SendKeyEvent(true,"V",false,game)
  2986. game:GetService("VirtualInputManager"):SendKeyEvent(false,"V",false,game)
  2987. end
  2988. end
  2989. end
  2990. end)
  2991. end
  2992. end
  2993. end)
  2994.  
  2995. spawn(function()
  2996. game:GetService("RunService").RenderStepped:Connect(function()
  2997. pcall(function()
  2998. if UseSkill then
  2999. for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.Notifications:GetChildren()) do
  3000. if v.Name == "NotificationTemplate" then
  3001. if string.find(v.Text,"Skill locked!") then
  3002. v:Destroy()
  3003. end
  3004. end
  3005. end
  3006. end
  3007. end)
  3008. end)
  3009. end)
  3010.  
  3011. spawn(function()
  3012. pcall(function()
  3013. game:GetService("RunService").RenderStepped:Connect(function()
  3014. if UseSkill then
  3015. local args = {
  3016. [1] = PosMonMasteryFruit.Position
  3017. }
  3018. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Data.DevilFruit.Value].RemoteEvent:FireServer(unpack(args))
  3019. end
  3020. end)
  3021. end)
  3022. end)
  3023.  
  3024. Main:AddToggle("Auto Farm Gun Mastery",_G.AutoFarmGunMastery,function(value)
  3025. _G.AutoFarmGunMastery = value
  3026. StopTween(_G.AutoFarmGunMastery)
  3027. end)
  3028.  
  3029. spawn(function()
  3030. pcall(function()
  3031. while wait() do
  3032. if _G.AutoFarmGunMastery then
  3033. local QuestTitle = game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text
  3034. if not string.find(QuestTitle, NameMon) then
  3035. Magnet = false
  3036. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
  3037. end
  3038. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false then
  3039. StartMasteryGunMagnet = false
  3040. CheckQuest()
  3041. topos(CFrameQuest)
  3042. if (CFrameQuest.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 10 then
  3043. wait(1.2)
  3044. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StartQuest", NameQuest, LevelQuest)
  3045. end
  3046. elseif game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == true then
  3047. CheckQuest()
  3048. if game:GetService("Workspace").Enemies:FindFirstChild(Mon) then
  3049. pcall(function()
  3050. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3051. if v.Name == Mon then
  3052. repeat task.wait()
  3053. if string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, NameMon) then
  3054. HealthMin = v.Humanoid.MaxHealth * _G.Kill_At/100
  3055. if v.Humanoid.Health <= HealthMin then
  3056. EquipWeapon(SelectWeaponGun)
  3057. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3058. v.Humanoid.WalkSpeed = 0
  3059. v.HumanoidRootPart.CanCollide = false
  3060. v.HumanoidRootPart.Size = Vector3.new(2,2,1)
  3061. v.Head.CanCollide = false
  3062. local args = {
  3063. [1] = v.HumanoidRootPart.Position,
  3064. [2] = v.HumanoidRootPart
  3065. }
  3066. game:GetService("Players").LocalPlayer.Character[SelectWeaponGun].RemoteFunctionShoot:InvokeServer(unpack(args))
  3067. else
  3068. AutoHaki()
  3069. EquipWeapon(_G.SelectWeapon)
  3070. v.Humanoid.WalkSpeed = 0
  3071. v.HumanoidRootPart.CanCollide = false
  3072. v.Head.CanCollide = false
  3073. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3074. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3075. game:GetService'VirtualUser':CaptureController()
  3076. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  3077. end
  3078. StartMasteryGunMagnet = true
  3079. PosMonMasteryGun = v.HumanoidRootPart.CFrame
  3080. else
  3081. StartMasteryGunMagnet = false
  3082. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
  3083. end
  3084. until v.Humanoid.Health <= 0 or _G.AutoFarmGunMastery == false or game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false
  3085. StartMasteryGunMagnet = false
  3086. end
  3087. end
  3088. end)
  3089. else
  3090. StartMasteryGunMagnet = false
  3091. local Mob = game:GetService("ReplicatedStorage"):FindFirstChild(Mon)
  3092. if Mob then
  3093. topos(Mob.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3094. else
  3095. if game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame.Y <= 1 then
  3096. game:GetService("Players").LocalPlayer.Character.Humanoid.Jump = true
  3097. task.wait()
  3098. game:GetService("Players").LocalPlayer.Character.Humanoid.Jump = false
  3099. end
  3100. end
  3101. end
  3102. end
  3103. end
  3104. end
  3105. end)
  3106. end)
  3107.  
  3108. _G.Kill_At = 25
  3109. Main:AddSlider("Kill At %",1,100,25,function(value)
  3110. _G.Kill_At = value
  3111. end)
  3112.  
  3113. Main:AddSeperator("Bosses")
  3114.  
  3115. local Boss = {}
  3116.  
  3117. for i, v in pairs(game:GetService("ReplicatedStorage"):GetChildren()) do
  3118. if string.find(v.Name, "Boss") then
  3119. if v.Name == "Ice Admiral [Lv. 700] [Boss]" then
  3120. else
  3121. table.insert(Boss, v.Name)
  3122. end
  3123. end
  3124. end
  3125.  
  3126. local BossName = Main:AddDropdown("Select Boss",Boss,function(value)
  3127. _G.SelectBoss = value
  3128. end)
  3129.  
  3130. Main:AddButton("Refresh Boss",function()
  3131. BossName:Clear()
  3132. for i, v in pairs(game:GetService("ReplicatedStorage"):GetChildren()) do
  3133. if string.find(v.Name, "Boss") then
  3134. BossName:Add(v.Name)
  3135. end
  3136. end
  3137. end)
  3138.  
  3139. Main:AddToggle("Auto Farm Boss",_G.AutoFarmBoss,function(value)
  3140. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
  3141. _G.AutoFarmBoss = value
  3142. StopTween(_G.AutoFarmBoss)
  3143. end)
  3144.  
  3145. spawn(function()
  3146. while wait() do
  3147. if _G.AutoFarmBoss then
  3148. pcall(function()
  3149. if game:GetService("Workspace").Enemies:FindFirstChild(_G.SelectBoss) then
  3150. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3151. if v.Name == _G.SelectBoss then
  3152. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  3153. repeat task.wait()
  3154. AutoHaki()
  3155. EquipWeapon(_G.SelectWeapon)
  3156. v.HumanoidRootPart.CanCollide = false
  3157. v.Humanoid.WalkSpeed = 0
  3158. v.HumanoidRootPart.Size = Vector3.new(80,80,80)
  3159. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3160. game:GetService("VirtualUser"):CaptureController()
  3161. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  3162. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  3163. until not _G.AutoFarmBoss or not v.Parent or v.Humanoid.Health <= 0
  3164. end
  3165. end
  3166. end
  3167. else
  3168. if game:GetService("ReplicatedStorage"):FindFirstChild(_G.SelectBoss) then
  3169. topos(game:GetService("ReplicatedStorage"):FindFirstChild(_G.SelectBoss).HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3170. end
  3171. end
  3172. end)
  3173. end
  3174. end
  3175. end)
  3176.  
  3177. Main:AddToggle("Auto Farm All Boss",_G.AutoAllBoss,function(value)
  3178. _G.AutoAllBoss = value
  3179. StopTween(_G.AutoAllBoss)
  3180. end)
  3181.  
  3182. Main:AddToggle("Auto Farm All Boss Hop",_G.AutoAllBossHop,function(value)
  3183. _G.AutoAllBossHop = value
  3184. end)
  3185.  
  3186. spawn(function()
  3187. while wait() do
  3188. if _G.AutoAllBoss then
  3189. pcall(function()
  3190. for i,v in pairs(game.ReplicatedStorage:GetChildren()) do
  3191. if string.find(v.Name,"Boss") then
  3192. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude < 17000 then
  3193. repeat task.wait()
  3194. AutoHaki()
  3195. EquipWeapon(_G.SelectWeapon)
  3196. v.Humanoid.WalkSpeed = 0
  3197. v.HumanoidRootPart.CanCollide = false
  3198. v.Head.CanCollide = false
  3199. v.HumanoidRootPart.Size = Vector3.new(80,80,80)
  3200. topos(v.HumanoidRootPart.CFrame*CFrame.new(5,10,7))
  3201. game:GetService'VirtualUser':CaptureController()
  3202. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  3203. sethiddenproperty(game.Players.LocalPlayer,"SimulationRadius",math.huge)
  3204. until v.Humanoid.Health <= 0 or _G.AutoAllBoss == false or not v.Parent
  3205. end
  3206. else
  3207. if _G.AutoAllBossHop then
  3208. Hop()
  3209. end
  3210. end
  3211. end
  3212. end)
  3213. end
  3214. end
  3215. end)
  3216.  
  3217. Main:AddSeperator("Dought")
  3218.  
  3219. local MobKilled = Main:AddLabel("Killed")
  3220.  
  3221. spawn(function()
  3222. while wait() do
  3223. pcall(function()
  3224. if string.len(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner")) == 88 then
  3225. MobKilled:Set("Defeat : "..string.sub(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner"),39,41))
  3226. elseif string.len(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner")) == 87 then
  3227. MobKilled:Set("Defeat : "..string.sub(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner"),39,40))
  3228. elseif string.len(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner")) == 86 then
  3229. MobKilled:Set("Defeat : "..string.sub(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner"),39,39))
  3230. else
  3231. MobKilled:Set("Boss Is Spawning")
  3232. end
  3233. end)
  3234. end
  3235. end)
  3236.  
  3237. Main:AddToggle("Auto Dought Boss",_G.AutoDoughtBoss,function(value)
  3238. _G.AutoDoughtBoss = value
  3239. StopTween(_G.AutoDoughtBoss)
  3240. end)
  3241.  
  3242. spawn(function()
  3243. while wait() do
  3244. pcall(function()
  3245. if string.len(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner")) == 88 then
  3246. KillMob = (tonumber(string.sub(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner"),39,41)) - 500)
  3247. elseif string.len(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner")) == 87 then
  3248. KillMob = (tonumber(string.sub(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner"),40,41)) - 500)
  3249. elseif string.len(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner")) == 86 then
  3250. KillMob = (tonumber(string.sub(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner"),41,41)) - 500)
  3251. end
  3252. end)
  3253. end
  3254. end)
  3255.  
  3256. spawn(function()
  3257. while wait() do
  3258. if _G.AutoDoughtBoss then
  3259. pcall(function()
  3260. if game:GetService("Workspace").Enemies:FindFirstChild("Cake Prince [Lv. 2300] [Raid Boss]") then
  3261. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3262. if v.Name == "Cake Prince [Lv. 2300] [Raid Boss]" then
  3263. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  3264. repeat task.wait()
  3265. AutoHaki()
  3266. EquipWeapon(_G.SelectWeapon)
  3267. v.HumanoidRootPart.CanCollide = false
  3268. v.Humanoid.WalkSpeed = 0
  3269. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3270. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3271. game:GetService("VirtualUser"):CaptureController()
  3272. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  3273. sethiddenproperty(game.Players.LocalPlayer,"SimulationRadius",math.huge)
  3274. until not _G.AutoDoughtBoss or not v.Parent or v.Humanoid.Health <= 0
  3275. end
  3276. end
  3277. end
  3278. else
  3279. if game:GetService("ReplicatedStorage"):FindFirstChild("Cake Prince [Lv. 2300] [Raid Boss]") then
  3280. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Cake Prince [Lv. 2300] [Raid Boss]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3281. else
  3282. if KillMob == 0 then
  3283. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner",true)
  3284. end
  3285. if game:GetService("Workspace").Map.CakeLoaf.BigMirror.Other.Transparency == 1 then
  3286. 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
  3287. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3288. 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
  3289. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  3290. repeat task.wait()
  3291. AutoHaki()
  3292. EquipWeapon(_G.SelectWeapon)
  3293. v.HumanoidRootPart.CanCollide = false
  3294. v.Humanoid.WalkSpeed = 0
  3295. v.Head.CanCollide = false
  3296. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3297. MagnetDought = true
  3298. PosMonDoughtOpenDoor = v.HumanoidRootPart.CFrame
  3299. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3300. game:GetService("VirtualUser"):CaptureController()
  3301. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  3302. 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
  3303. end
  3304. end
  3305. end
  3306. else
  3307. MagnetDought = false
  3308. if game:GetService("ReplicatedStorage"):FindFirstChild("Cookie Crafter [Lv. 2200]") then
  3309. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Cookie Crafter [Lv. 2200]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3310. else
  3311. if game:GetService("ReplicatedStorage"):FindFirstChild("Cake Guard [Lv. 2225]") then
  3312. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Cake Guard [Lv. 2225]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3313. else
  3314. if game:GetService("ReplicatedStorage"):FindFirstChild("Baking Staff [Lv. 2250]") then
  3315. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Baking Staff [Lv. 2250]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3316. else
  3317. if game:GetService("ReplicatedStorage"):FindFirstChild("Head Baker [Lv. 2275]") then
  3318. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Head Baker [Lv. 2275]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3319. end
  3320. end
  3321. end
  3322. end
  3323. end
  3324. else
  3325. if game:GetService("Workspace").Enemies:FindFirstChild("Cake Prince [Lv. 2300] [Raid Boss]") then
  3326. topos(game:GetService("Workspace").Enemies:FindFirstChild("Cake Prince [Lv. 2300] [Raid Boss]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3327. else
  3328. if game:GetService("ReplicatedStorage"):FindFirstChild("Cake Prince [Lv. 2300] [Raid Boss]") then
  3329. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Cake Prince [Lv. 2300] [Raid Boss]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3330. end
  3331. end
  3332. end
  3333. end
  3334. end
  3335. end)
  3336. end
  3337. end
  3338. end)
  3339.  
  3340. Main:AddSeperator("Advance Dungeon")
  3341.  
  3342. Main:AddToggle("Auto Advance Dungeon",_G.AutoAdvanceDungeon,function(value)
  3343. _G.AutoAdvanceDungeon = value
  3344. StopTween(_G.AutoAdvanceDungeon)
  3345. end)
  3346.  
  3347. spawn(function()
  3348. while wait() do
  3349. if _G.AutoAdvanceDungeon then
  3350. pcall(function()
  3351. if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Bird-Bird: Phoenix") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Bird-Bird: Phoenix") then
  3352. if game.Players.LocalPlayer.Backpack:FindFirstChild(game.Players.LocalPlayer.Data.DevilFruit.Value) then
  3353. if game.Players.LocalPlayer.Backpack:FindFirstChild(game.Players.LocalPlayer.Data.DevilFruit.Value).Level.Value >= 400 then
  3354. topos(CFrame.new(-2812.76708984375, 254.803466796875, -12595.560546875))
  3355. if (CFrame.new(-2812.76708984375, 254.803466796875, -12595.560546875).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 10 then
  3356. wait(1.5)
  3357. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SickScientist","Check")
  3358. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SickScientist","Heal")
  3359. end
  3360. end
  3361. elseif game.Players.LocalPlayer.Character:FindFirstChild(game.Players.LocalPlayer.Data.DevilFruit.Value) then
  3362. if game.Players.LocalPlayer.Character:FindFirstChild(game.Players.LocalPlayer.Data.DevilFruit.Value).Level.Value >= 400 then
  3363. topos(CFrame.new(-2812.76708984375, 254.803466796875, -12595.560546875))
  3364. if (CFrame.new(-2812.76708984375, 254.803466796875, -12595.560546875).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 10 then
  3365. wait(1.5)
  3366. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SickScientist","Check")
  3367. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SickScientist","Heal")
  3368. end
  3369. end
  3370. end
  3371. end
  3372. end)
  3373. end
  3374. end
  3375. end)
  3376.  
  3377. Main:AddSeperator("Buddy Sword")
  3378.  
  3379. Main:AddToggle("Auto Buddy Sword",_G.AutoBudySword,function(value)
  3380. _G.AutoBudySword = value
  3381. StopTween(_G.AutoBudySword)
  3382. end)
  3383.  
  3384. Main:AddToggle("Auto Buddy Sword Hop",_G.AutoBudySwordHop,function(value)
  3385. _G.AutoBudySwordHop = value
  3386. end)
  3387.  
  3388. spawn(function()
  3389. while wait() do
  3390. if _G.AutoBudySword then
  3391. pcall(function()
  3392. if game:GetService("Workspace").Enemies:FindFirstChild("Cake Queen [Lv. 2175] [Boss]") then
  3393. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3394. if v.Name == "Cake Queen [Lv. 2175] [Boss]" then
  3395. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  3396. repeat task.wait()
  3397. AutoHaki()
  3398. EquipWeapon(_G.SelectWeapon)
  3399. v.HumanoidRootPart.CanCollide = false
  3400. v.Humanoid.WalkSpeed = 0
  3401. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3402. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3403. game:GetService("VirtualUser"):CaptureController()
  3404. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  3405. sethiddenproperty(game.Players.LocalPlayer,"SimulationRadius",math.huge)
  3406. until not _G.AutoBudySword or not v.Parent or v.Humanoid.Health <= 0
  3407. end
  3408. end
  3409. end
  3410. else
  3411. if game:GetService("ReplicatedStorage"):FindFirstChild("Cake Queen [Lv. 2175] [Boss]") then
  3412. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Cake Queen [Lv. 2175] [Boss]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3413. else
  3414. if _G.AutoBudySwordHop then
  3415. Hop()
  3416. end
  3417. end
  3418. end
  3419. end)
  3420. end
  3421. end
  3422. end)
  3423.  
  3424. Main:AddSeperator("Elite")
  3425.  
  3426. local EliteProgress = Main:AddLabel("")
  3427.  
  3428. spawn(function()
  3429. pcall(function()
  3430. while wait() do
  3431. EliteProgress:Set("Elite Progress : "..game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("EliteHunter","Progress"))
  3432. end
  3433. end)
  3434. end)
  3435.  
  3436. Main:AddToggle("Auto Elite Hunter",_G.AutoElitehunter,function(value)
  3437. _G.AutoElitehunter = value
  3438. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
  3439. StopTween(_G.AutoElitehunter)
  3440. end)
  3441.  
  3442. spawn(function()
  3443. while wait() do
  3444. if _G.AutoElitehunter and World3 then
  3445. pcall(function()
  3446. local QuestTitle = game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text
  3447. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false then
  3448. repeat wait()
  3449. topos(CFrame.new(-5418.892578125, 313.74130249023, -2826.2260742188))
  3450. until not _G.AutoElitehunter or (Vector3.new(-5418.892578125, 313.74130249023, -2826.2260742188)-game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 3
  3451. if (Vector3.new(-5418.892578125, 313.74130249023, -2826.2260742188)-game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 3 then
  3452. wait(1.1)
  3453. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("EliteHunter")
  3454. wait(0.5)
  3455. end
  3456. elseif game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == true then
  3457. if string.find(QuestTitle,"Diablo") or string.find(QuestTitle,"Deandre") or string.find(QuestTitle,"Urban") then
  3458. 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
  3459. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3460. if v.Name == "Diablo [Lv. 1750]" or v.Name == "Deandre [Lv. 1750]" or v.Name == "Urban [Lv. 1750]" then
  3461. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  3462. repeat task.wait()
  3463. AutoHaki()
  3464. EquipWeapon(_G.SelectWeapon)
  3465. v.HumanoidRootPart.CanCollide = false
  3466. v.Humanoid.WalkSpeed = 0
  3467. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3468. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3469. game:GetService("VirtualUser"):CaptureController()
  3470. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  3471. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  3472. until _G.AutoElitehunter == false or v.Humanoid.Health <= 0 or not v.Parent
  3473. end
  3474. end
  3475. end
  3476. else
  3477. if game:GetService("ReplicatedStorage"):FindFirstChild("Diablo [Lv. 1750]") then
  3478. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Diablo [Lv. 1750]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3479. elseif game:GetService("ReplicatedStorage"):FindFirstChild("Deandre [Lv. 1750]") then
  3480. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Deandre [Lv. 1750]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3481. elseif game:GetService("ReplicatedStorage"):FindFirstChild("Urban [Lv. 1750]") then
  3482. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Urban [Lv. 1750]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3483. else
  3484. if _G.AutoEliteHunterHop then
  3485. Hop()
  3486. else
  3487. topos(CFrame.new(-5418.892578125, 313.74130249023, -2826.2260742188))
  3488. end
  3489. end
  3490. end
  3491. end
  3492. end
  3493. end)
  3494. end
  3495. end
  3496. end)
  3497.  
  3498. Main:AddToggle("Auto Elite Hunter Hop",_G.AutoEliteHunterHop,function(value)
  3499. _G.AutoEliteHunterHop = value
  3500. end)
  3501.  
  3502. Main:AddSeperator("Hallow Scythe")
  3503.  
  3504. Main:AddToggle("Auto Hallow Scythe",_G.AutoFarmBossHallow,function(value)
  3505. _G.AutoFarmBossHallow = value
  3506. StopTween(_G.AutoFarmBossHallow)
  3507. end)
  3508.  
  3509. Main:AddToggle("Auto Hallow Scythe Hop",_G.AutoFarmBossHallowHop,function(value)
  3510. _G.AutoFarmBossHallowHop = value
  3511. end)
  3512.  
  3513. spawn(function()
  3514. while wait() do
  3515. if _G.AutoFarmBossHallow then
  3516. pcall(function()
  3517. if game:GetService("Workspace").Enemies:FindFirstChild("Soul Reaper [Lv. 2100] [Raid Boss]") then
  3518. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3519. if string.find(v.Name , "Soul Reaper") then
  3520. repeat task.wait()
  3521. EquipWeapon(_G.SelectWeapon)
  3522. AutoHaki()
  3523. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3524. topos(v.HumanoidRootPart.CFrame*CFrame.new(5,10,7))
  3525. game:GetService("VirtualUser"):CaptureController()
  3526. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 670))
  3527. v.HumanoidRootPart.Transparency = 1
  3528. sethiddenproperty(game.Players.LocalPlayer,"SimulationRadius",math.huge)
  3529. until v.Humanoid.Health <= 0 or _G.AutoFarmBossHallow == false
  3530. end
  3531. end
  3532. elseif game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Hallow Essence") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Hallow Essence") then
  3533. 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
  3534. EquipWeapon("Hallow Essence")
  3535. else
  3536. if game:GetService("ReplicatedStorage"):FindFirstChild("Soul Reaper [Lv. 2100] [Raid Boss]") then
  3537. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Soul Reaper [Lv. 2100] [Raid Boss]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3538. else
  3539. if _G.AutoFarmBossHallowHop then
  3540. Hop()
  3541. end
  3542. end
  3543. end
  3544. end)
  3545. end
  3546. end
  3547. end)
  3548.  
  3549. Main:AddSeperator("Dark Dagger")
  3550.  
  3551. Main:AddToggle("Auto Dark Dagger",_G.AutoDarkDagger,function(value)
  3552. _G.AutoDarkDagger = value
  3553. StopTween(_G.AutoDarkDagger)
  3554. end)
  3555.  
  3556. spawn(function()
  3557. pcall(function()
  3558. while wait() do
  3559. if _G.AutoDarkDagger then
  3560. 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
  3561. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3562. 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
  3563. repeat task.wait()
  3564. pcall(function()
  3565. AutoHaki()
  3566. EquipWeapon(_G.SelectWeapon)
  3567. v.HumanoidRootPart.CanCollide = false
  3568. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3569. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3570. game:GetService("VirtualUser"):CaptureController()
  3571. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 670),workspace.CurrentCamera.CFrame)
  3572. end)
  3573. until _G.AutoDarkDagger == false or v.Humanoid.Health <= 0
  3574. end
  3575. end
  3576. else
  3577. topos(CFrame.new(-5344.822265625, 423.98541259766, -2725.0930175781))
  3578. end
  3579. end
  3580. end
  3581. end)
  3582. end)
  3583.  
  3584. Main:AddToggle("Auto Dark Dagger Hop",_G.AutoDarkDagger_Hop,function(value)
  3585. _G.AutoDarkDagger_Hop = value
  3586. end)
  3587.  
  3588. spawn(function()
  3589. pcall(function()
  3590. while wait() do
  3591. 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
  3592. Hop()
  3593. end
  3594. end
  3595. end)
  3596. end)
  3597.  
  3598. Main:AddSeperator("Swan Glasses")
  3599.  
  3600. Main:AddToggle("Auto Swan Glasses",_G.AutoFarmSwanGlasses,function(value)
  3601. _G.AutoFarmSwanGlasses = value
  3602. StopTween(_G.AutoFarmSwanGlasses)
  3603. end)
  3604.  
  3605. spawn(function()
  3606. pcall(function()
  3607. while wait() do
  3608. if _G.AutoFarmSwanGlasses then
  3609. if game:GetService("Workspace").Enemies:FindFirstChild("Don Swan [Lv. 1000] [Boss]") then
  3610. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3611. 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
  3612. repeat task.wait()
  3613. pcall(function()
  3614. AutoHaki()
  3615. EquipWeapon(_G.SelectWeapon)
  3616. v.HumanoidRootPart.CanCollide = false
  3617. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3618. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3619. game:GetService("VirtualUser"):CaptureController()
  3620. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 670))
  3621. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  3622. end)
  3623. until _G.AutoFarmSwanGlasses == false or v.Humanoid.Health <= 0
  3624. end
  3625. end
  3626. else
  3627. repeat task.wait()
  3628. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(2284.912109375, 15.537666320801, 905.48291015625))
  3629. until (CFrame.new(2284.912109375, 15.537666320801, 905.48291015625).Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 4 or _G.AutoFarmSwanGlasses == false
  3630. end
  3631. end
  3632. end
  3633. end)
  3634. end)
  3635.  
  3636. Main:AddToggle("Auto Swan Glasses Hop",_G.AutoFarmSwanGlasses_Hop,function(value)
  3637. _G.AutoFarmSwanGlasses_Hop = value
  3638. end)
  3639.  
  3640. spawn(function()
  3641. pcall(function()
  3642. while wait(.1) do
  3643. 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
  3644. Hop()
  3645. end
  3646. end
  3647. end)
  3648. end)
  3649.  
  3650. Main:AddSeperator("Bone")
  3651.  
  3652. local BoneFarm = Main:AddToggle("Auto Farm Bone",_G.Auto_Bone,function(value)
  3653. _G.Auto_Bone = value
  3654. StopTween(_G.Auto_Bone)
  3655. end)
  3656.  
  3657. spawn(function()
  3658. while wait() do
  3659. if _G.Auto_Bone and World3 then
  3660. pcall(function()
  3661. 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
  3662. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3663. 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
  3664. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  3665. repeat task.wait()
  3666. AutoHaki()
  3667. EquipWeapon(_G.SelectWeapon)
  3668. v.HumanoidRootPart.CanCollide = false
  3669. v.Humanoid.WalkSpeed = 0
  3670. v.Head.CanCollide = false
  3671. StartMagnetBoneMon = true
  3672. PosMonBone = v.HumanoidRootPart.CFrame
  3673. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3674. game:GetService("VirtualUser"):CaptureController()
  3675. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  3676. until not _G.Auto_Farm_Bone or not v.Parent or v.Humanoid.Health <= 0
  3677. end
  3678. end
  3679. end
  3680. else
  3681. StartMagnetBoneMon = false
  3682. for i,v in pairs(game:GetService("ReplicatedStorage"):GetChildren()) do
  3683. if v.Name == "Reborn Skeleton [Lv. 1975]" then
  3684. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3685. elseif v.Name == "Living Zombie [Lv. 2000]" then
  3686. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3687. elseif v.Name == "Demonic Soul [Lv. 2025]" then
  3688. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3689. elseif v.Name == "Posessed Mummy [Lv. 2050]" then
  3690. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3691. end
  3692. end
  3693. end
  3694. end)
  3695. end
  3696. end
  3697. end)
  3698.  
  3699. Main:AddToggle("Auto Random Surprise",_G.Auto_Random_Bone,function(value)
  3700. _G.Auto_Random_Bone = value
  3701. end)
  3702.  
  3703. spawn(function()
  3704. pcall(function()
  3705. while wait(.1) do
  3706. if _G.Auto_Random_Bone then
  3707. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Bones","Buy",1,1)
  3708. end
  3709. end
  3710. end)
  3711. end)
  3712.  
  3713. Main:AddSeperator("Observation")
  3714.  
  3715. local ObservationRange = Main:AddLabel("")
  3716.  
  3717. spawn(function()
  3718. while wait() do
  3719. pcall(function()
  3720. ObservationRange:Set("Observation Range Level : "..math.floor(game:GetService("Players").LocalPlayer.VisionRadius.Value))
  3721. end)
  3722. end
  3723. end)
  3724.  
  3725. Main:AddToggle("Auto Farm Observation",_G.AutoObservation,function(value)
  3726. _G.AutoObservation = value
  3727. StopTween(_G.AutoObservation)
  3728. end)
  3729.  
  3730. spawn(function()
  3731. while wait() do
  3732. pcall(function()
  3733. if _G.AutoObservation then
  3734. repeat task.wait()
  3735. if not game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel") then
  3736. game:GetService('VirtualUser'):CaptureController()
  3737. game:GetService('VirtualUser'):SetKeyDown('0x65')
  3738. wait(2)
  3739. game:GetService('VirtualUser'):SetKeyUp('0x65')
  3740. end
  3741. until game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel") or not _G.AutoObservation
  3742. end
  3743. end)
  3744. end
  3745. end)
  3746.  
  3747. Main:AddToggle("Auto Farm Observation Hop",_G.AutoObservation_Hop,function(value)
  3748. _G.AutoObservation_Hop = value
  3749. end)
  3750.  
  3751. spawn(function()
  3752. pcall(function()
  3753. while wait() do
  3754. if _G.AutoObservation then
  3755. if game:GetService("Players").LocalPlayer.VisionRadius.Value >= 3000 then
  3756. game:GetService("StarterGui"):SetCore("SendNotification", {
  3757. Icon = "rbxassetid://0";
  3758. Title = "Observation",
  3759. Text = "You Have Max Points"
  3760. })
  3761. wait(2)
  3762. else
  3763. if World2 then
  3764. if game:GetService("Workspace").Enemies:FindFirstChild("Lava Pirate [Lv. 1200]") then
  3765. if game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel") then
  3766. repeat task.wait()
  3767. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Enemies:FindFirstChild("Lava Pirate [Lv. 1200]").HumanoidRootPart.CFrame * CFrame.new(3,0,0)
  3768. until _G.AutoObservation == false or not game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel")
  3769. else
  3770. repeat task.wait()
  3771. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Enemies:FindFirstChild("Lava Pirate [Lv. 1200]").HumanoidRootPart.CFrame * CFrame.new(0,50,0)+
  3772. wait(1)
  3773. if not game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel") and _G.AutoObservation_Hop == true then
  3774. game:GetService("TeleportService"):Teleport(game.PlaceId,game:GetService("Players").LocalPlayer)
  3775. end
  3776. until _G.AutoObservation == false or game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel")
  3777. end
  3778. else
  3779. topos(CFrame.new(-5478.39209, 15.9775667, -5246.9126))
  3780. end
  3781. elseif World1 then
  3782. if game:GetService("Workspace").Enemies:FindFirstChild("Galley Captain [Lv. 650]") then
  3783. if game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel") then
  3784. repeat task.wait()
  3785. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Enemies:FindFirstChild("Galley Captain [Lv. 650]").HumanoidRootPart.CFrame * CFrame.new(3,0,0)
  3786. until _G.AutoObservation == false or not game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel")
  3787. else
  3788. repeat task.wait()
  3789. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Enemies:FindFirstChild("Galley Captain [Lv. 650]").HumanoidRootPart.CFrame * CFrame.new(0,50,0)
  3790. wait(1)
  3791. if not game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel") and _G.AutoObservation_Hop == true then
  3792. game:GetService("TeleportService"):Teleport(game.PlaceId,game:GetService("Players").LocalPlayer)
  3793. end
  3794. until _G.AutoObservation == false or game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel")
  3795. end
  3796. else
  3797. topos(CFrame.new(5533.29785, 88.1079102, 4852.3916))
  3798. end
  3799. elseif World3 then
  3800. if game:GetService("Workspace").Enemies:FindFirstChild("Giant Islander [Lv. 1650]") then
  3801. if game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel") then
  3802. repeat task.wait()
  3803. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Enemies:FindFirstChild("Giant Islander [Lv. 1650]").HumanoidRootPart.CFrame * CFrame.new(3,0,0)
  3804. until _G.AutoObservation == false or not game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel")
  3805. else
  3806. repeat task.wait()
  3807. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Enemies:FindFirstChild("Giant Islander [Lv. 1650]").HumanoidRootPart.CFrame * CFrame.new(0,50,0)
  3808. wait(1)
  3809. if not game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel") and _G.AutoObservation_Hop == true then
  3810. game:GetService("TeleportService"):Teleport(game.PlaceId,game:GetService("Players").LocalPlayer)
  3811. end
  3812. until _G.AutoObservation == false or game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel")
  3813. end
  3814. else
  3815. topos(CFrame.new(4530.3540039063, 656.75695800781, -131.60952758789))
  3816. end
  3817. end
  3818. end
  3819. end
  3820. end
  3821. end)
  3822. end)
  3823.  
  3824. Main:AddSeperator("Saber")
  3825.  
  3826. Main:AddToggle("Auto Saber",_G.AutoSaber,function(value)
  3827. _G.AutoSaber = value
  3828. StopTween(_G.AutoSaber)
  3829. end)
  3830.  
  3831. Main:AddToggle("Auto Saber Hop",_G.AutoSaber_Hop,function(value)
  3832. _G.AutoSaber_Hop = value
  3833. end)
  3834.  
  3835. spawn(function()
  3836. while wait() do
  3837. if _G.AutoSaber then
  3838. pcall(function()
  3839. if game:GetService("Workspace").Enemies:FindFirstChild("Saber Expert [Lv. 200] [Boss]") then
  3840. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3841. if v.Name == "Saber Expert [Lv. 200] [Boss]" then
  3842. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  3843. PosMonSaber = v.HumanoidRootPart.CFrame
  3844. repeat task.wait()
  3845. AutoHaki()
  3846. EquipWeapon(_G.SelectWeapon)
  3847. v.HumanoidRootPart.CanCollide = false
  3848. v.Humanoid.WalkSpeed = 0
  3849. v.HumanoidRootPart.CFrame = PosMonSaber
  3850. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3851. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3852. game:GetService("VirtualUser"):CaptureController()
  3853. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  3854. sethiddenproperty(game.Players.LocalPlayer,"SimulationRadius",math.huge)
  3855. until not _G.AutoSaber or not v.Parent or v.Humanoid.Health <= 0
  3856. end
  3857. end
  3858. end
  3859. else
  3860. if game:GetService("ReplicatedStorage"):FindFirstChild("Saber Expert [Lv. 200] [Boss]") then
  3861. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Saber Expert [Lv. 200] [Boss]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3862. else
  3863. if _G.AutoSaber_Hop then
  3864. Hop()
  3865. end
  3866. end
  3867. end
  3868. end)
  3869. end
  3870. end
  3871. end)
  3872.  
  3873. Main:AddSeperator("Legendary Sword")
  3874.  
  3875. Main:AddToggle("Auto Legendary Sword",_G.AutoBuyLegendarySword,function(value)
  3876. _G.AutoBuyLegendarySword = value
  3877. end)
  3878.  
  3879. spawn(function()
  3880. while wait() do
  3881. if _G.AutoBuyLegendarySword then
  3882. pcall(function()
  3883. local args = {
  3884. [1] = "LegendarySwordDealer",
  3885. [2] = "1"
  3886. }
  3887. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  3888. local args = {
  3889. [1] = "LegendarySwordDealer",
  3890. [2] = "2"
  3891. }
  3892. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  3893. local args = {
  3894. [1] = "LegendarySwordDealer",
  3895. [2] = "3"
  3896. }
  3897. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  3898. if _G.AutoBuyLegendarySword_Hop and _G.AutoBuyLegendarySword and World2 then
  3899. wait(10)
  3900. Hop()
  3901. end
  3902. end)
  3903. end
  3904. end
  3905. end)
  3906.  
  3907. Main:AddToggle("Auto Legendary Sword Hop",_G.AutoBuyLegendarySword_Hop,function(value)
  3908. _G.AutoBuyLegendarySword_Hop = value
  3909. end)
  3910.  
  3911. Main:AddSeperator("Enchancement Colour")
  3912.  
  3913. Main:AddToggle("Auto Enchancement Colour",_G.AutoBuyEnchancementColour,function(value)
  3914. _G.AutoBuyEnchancementColour = value
  3915. end)
  3916.  
  3917. Main:AddToggle("Auto Enchancement Hop",_G.AutoBuyEnchancementColour_Hop,function(value)
  3918. _G.AutoBuyEnchancementColour_Hop = value
  3919. end)
  3920.  
  3921. spawn(function()
  3922. while wait() do
  3923. if _G.AutoBuyEnchancementColour then
  3924. local args = {
  3925. [1] = "ColorsDealer",
  3926. [2] = "2"
  3927. }
  3928. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  3929. if _G.AutoBuyEnchancementColour_Hop and _G.AutoBuyEnchancementColour and not World1 then
  3930. wait(10)
  3931. Hop()
  3932. end
  3933. end
  3934. end
  3935. end)
  3936.  
  3937. Main:AddSeperator("Other")
  3938.  
  3939. Main:AddToggle("Auto Musketeer Hat",_G.AutoMusketeerHat,function(value)
  3940. _G.AutoMusketeerHat = value
  3941. StopTween(_G.AutoMusketeerHat)
  3942. end)
  3943.  
  3944. spawn(function()
  3945. pcall(function()
  3946. while wait(.1) do
  3947. if _G.AutoMusketeerHat then
  3948. if game:GetService("Players").LocalPlayer.Data.Level.Value >= 1800 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CitizenQuestProgress").KilledBandits == false then
  3949. 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
  3950. if game:GetService("Workspace").Enemies:FindFirstChild("Forest Pirate [Lv. 1825]") then
  3951. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3952. if v.Name == "Forest Pirate [Lv. 1825]" then
  3953. repeat task.wait()
  3954. pcall(function()
  3955. EquipWeapon(_G.SelectWeapon)
  3956. AutoHaki()
  3957. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3958. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3959. v.HumanoidRootPart.CanCollide = false
  3960. game:GetService'VirtualUser':CaptureController()
  3961. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  3962. MusketeerHatMon = v.HumanoidRootPart.CFrame
  3963. StartMagnetMusketeerhat = true
  3964. end)
  3965. until _G.AutoMusketeerHat == false or not v.Parent or v.Humanoid.Health <= 0 or game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false
  3966. StartMagnetMusketeerhat = false
  3967. end
  3968. end
  3969. else
  3970. StartMagnetMusketeerhat = false
  3971. topos(CFrame.new(-13206.452148438, 425.89199829102, -7964.5537109375))
  3972. end
  3973. else
  3974. topos(CFrame.new(-12443.8671875, 332.40396118164, -7675.4892578125))
  3975. if (Vector3.new(-12443.8671875, 332.40396118164, -7675.4892578125) - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 30 then
  3976. wait(1.5)
  3977. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StartQuest","CitizenQuest",1)
  3978. end
  3979. end
  3980. elseif game:GetService("Players").LocalPlayer.Data.Level.Value >= 1800 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CitizenQuestProgress").KilledBoss == false then
  3981. 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
  3982. if game:GetService("Workspace").Enemies:FindFirstChild("Captain Elephant [Lv. 1875] [Boss]") then
  3983. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3984. if v.Name == "Captain Elephant [Lv. 1875] [Boss]" then
  3985. OldCFrameElephant = v.HumanoidRootPart.CFrame
  3986. repeat task.wait()
  3987. pcall(function()
  3988. EquipWeapon(_G.SelectWeapon)
  3989. AutoHaki()
  3990. v.HumanoidRootPart.CanCollide = false
  3991. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3992. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3993. v.HumanoidRootPart.CanCollide = false
  3994. v.HumanoidRootPart.CFrame = OldCFrameElephant
  3995. game:GetService("VirtualUser"):CaptureController()
  3996. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 672))
  3997. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  3998. end)
  3999. until _G.AutoMusketeerHat == false or v.Humanoid.Health <= 0 or not v.Parent or game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false
  4000. end
  4001. end
  4002. else
  4003. topos(CFrame.new(-13374.889648438, 421.27752685547, -8225.208984375))
  4004. end
  4005. else
  4006. topos(CFrame.new(-12443.8671875, 332.40396118164, -7675.4892578125))
  4007. if (CFrame.new(-12443.8671875, 332.40396118164, -7675.4892578125).Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 4 then
  4008. wait(1.5)
  4009. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CitizenQuestProgress","Citizen")
  4010. end
  4011. end
  4012. elseif game:GetService("Players").LocalPlayer.Data.Level.Value >= 1800 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CitizenQuestProgress","Citizen") == 2 then
  4013. topos(CFrame.new(-12512.138671875, 340.39279174805, -9872.8203125))
  4014. end
  4015. end
  4016. end
  4017. end)
  4018. end)
  4019.  
  4020. Main:AddToggle("Auto Rainbow Haki",_G.Auto_Rainbow_Haki,function(value)
  4021. _G.Auto_Rainbow_Haki = value
  4022. StopTween(_G.Auto_Rainbow_Haki)
  4023. end)
  4024.  
  4025. spawn(function()
  4026. pcall(function()
  4027. while wait(.1) do
  4028. if _G.Auto_Rainbow_Haki then
  4029. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false then
  4030. topos(CFrame.new(-11892.0703125, 930.57672119141, -8760.1591796875))
  4031. if (Vector3.new(-11892.0703125, 930.57672119141, -8760.1591796875) - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 30 then
  4032. wait(1.5)
  4033. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("HornedMan","Bet")
  4034. end
  4035. 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
  4036. if game:GetService("Workspace").Enemies:FindFirstChild("Stone [Lv. 1550] [Boss]") then
  4037. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4038. if v.Name == "Stone [Lv. 1550] [Boss]" then
  4039. OldCFrameRainbow = v.HumanoidRootPart.CFrame
  4040. repeat task.wait()
  4041. EquipWeapon(_G.SelectWeapon)
  4042. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  4043. v.HumanoidRootPart.CanCollide = false
  4044. v.HumanoidRootPart.CFrame = OldCFrameRainbow
  4045. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4046. game:GetService("VirtualUser"):CaptureController()
  4047. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 672))
  4048. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  4049. 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
  4050. end
  4051. end
  4052. else
  4053. 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))
  4054. end
  4055. 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
  4056. if game:GetService("Workspace").Enemies:FindFirstChild("Island Empress [Lv. 1675] [Boss]") then
  4057. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4058. if v.Name == "Island Empress [Lv. 1675] [Boss]" then
  4059. OldCFrameRainbow = v.HumanoidRootPart.CFrame
  4060. repeat task.wait()
  4061. EquipWeapon(_G.SelectWeapon)
  4062. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  4063. v.HumanoidRootPart.CanCollide = false
  4064. v.HumanoidRootPart.CFrame = OldCFrameRainbow
  4065. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4066. game:GetService("VirtualUser"):CaptureController()
  4067. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 672))
  4068. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  4069. 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
  4070. end
  4071. end
  4072. else
  4073. topos(CFrame.new(5713.98877, 601.922974, 202.751251, -0.101080291, -0, -0.994878292, -0, 1, -0, 0.994878292, 0, -0.101080291))
  4074. end
  4075. elseif string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Kilo Admiral") then
  4076. if game:GetService("Workspace").Enemies:FindFirstChild("Kilo Admiral [Lv. 1750] [Boss]") then
  4077. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4078. if v.Name == "Kilo Admiral [Lv. 1750] [Boss]" then
  4079. OldCFrameRainbow = v.HumanoidRootPart.CFrame
  4080. repeat task.wait()
  4081. EquipWeapon(_G.SelectWeapon)
  4082. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  4083. v.HumanoidRootPart.CanCollide = false
  4084. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4085. v.HumanoidRootPart.CFrame = OldCFrameRainbow
  4086. game:GetService("VirtualUser"):CaptureController()
  4087. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 672))
  4088. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  4089. 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
  4090. end
  4091. end
  4092. else
  4093. topos(CFrame.new(2877.61743, 423.558685, -7207.31006, -0.989591599, -0, -0.143904909, -0, 1.00000012, -0, 0.143904924, 0, -0.989591479))
  4094. end
  4095. elseif string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Captain Elephant") then
  4096. if game:GetService("Workspace").Enemies:FindFirstChild("Captain Elephant [Lv. 1875] [Boss]") then
  4097. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4098. if v.Name == "Captain Elephant [Lv. 1875] [Boss]" then
  4099. OldCFrameRainbow = v.HumanoidRootPart.CFrame
  4100. repeat task.wait()
  4101. EquipWeapon(_G.SelectWeapon)
  4102. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  4103. v.HumanoidRootPart.CanCollide = false
  4104. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4105. v.HumanoidRootPart.CFrame = OldCFrameRainbow
  4106. game:GetService("VirtualUser"):CaptureController()
  4107. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 672))
  4108. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  4109. 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
  4110. end
  4111. end
  4112. else
  4113. 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))
  4114. end
  4115. elseif string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Beautiful Pirate") then
  4116. if game:GetService("Workspace").Enemies:FindFirstChild("Beautiful Pirate [Lv. 1950] [Boss]") then
  4117. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4118. if v.Name == "Beautiful Pirate [Lv. 1950] [Boss]" then
  4119. OldCFrameRainbow = v.HumanoidRootPart.CFrame
  4120. repeat task.wait()
  4121. EquipWeapon(_G.SelectWeapon)
  4122. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  4123. v.HumanoidRootPart.CanCollide = false
  4124. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4125. v.HumanoidRootPart.CFrame = OldCFrameRainbow
  4126. game:GetService("VirtualUser"):CaptureController()
  4127. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 672))
  4128. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  4129. 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
  4130. end
  4131. end
  4132. else
  4133. topos(CFrame.new(5312.3598632813, 20.141201019287, -10.158538818359))
  4134. end
  4135. else
  4136. topos(CFrame.new(-11892.0703125, 930.57672119141, -8760.1591796875))
  4137. if (Vector3.new(-11892.0703125, 930.57672119141, -8760.1591796875) - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 30 then
  4138. wait(1.5)
  4139. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("HornedMan","Bet")
  4140. end
  4141. end
  4142. end
  4143. end
  4144. end)
  4145. end)
  4146.  
  4147. Main:AddToggle("Auto Observation Haki v2",_G.AutoObservationv2,function(value)
  4148. _G.AutoObservationv2 = value
  4149. StopTween(_G.AutoObservationv2)
  4150. end)
  4151.  
  4152. spawn(function()
  4153. while wait() do
  4154. pcall(function()
  4155. if _G.AutoObservationv2 then
  4156. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CitizenQuestProgress","Citizen") == 3 then
  4157. _G.AutoMusketeerHat = false
  4158. 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
  4159. repeat
  4160. topos(CFrame.new(-12444.78515625, 332.40396118164, -7673.1806640625))
  4161. wait()
  4162. until not _G.AutoObservationv2 or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position-Vector3.new(-12444.78515625, 332.40396118164, -7673.1806640625)).Magnitude <= 10
  4163. wait(.5)
  4164. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CitizenQuestProgress","Citizen")
  4165. elseif game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Fruit Bowl") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Fruit Bowl") then
  4166. repeat
  4167. topos(CFrame.new(-10920.125, 624.20275878906, -10266.995117188))
  4168. wait()
  4169. until not _G.AutoObservationv2 or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position-Vector3.new(-10920.125, 624.20275878906, -10266.995117188)).Magnitude <= 10
  4170. wait(.5)
  4171. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("KenTalk2","Start")
  4172. wait(1)
  4173. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("KenTalk2","Buy")
  4174. else
  4175. for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
  4176. if v.Name == "Apple" or v.Name == "Banana" or v.Name == "Pineapple" then
  4177. v.Handle.CFrame = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,1,10)
  4178. wait()
  4179. firetouchinterest(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart,v.Handle,0)
  4180. wait()
  4181. end
  4182. end
  4183. end
  4184. else
  4185. _G.AutoMusketeerHat = true
  4186. end
  4187. end
  4188. end)
  4189. end
  4190. end)
  4191.  
  4192. Main:AddToggle("Auto Rengoku",_G.AutoRengoku,function(value)
  4193. _G.AutoRengoku = value
  4194. StopTween(_G.AutoRengoku)
  4195. end)
  4196.  
  4197. spawn(function()
  4198. pcall(function()
  4199. while wait() do
  4200. if _G.AutoRengoku then
  4201. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Hidden Key") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Hidden Key") then
  4202. EquipWeapon("Hidden Key")
  4203. topos(CFrame.new(6571.1201171875, 299.23028564453, -6967.841796875))
  4204. elseif game:GetService("Workspace").Enemies:FindFirstChild("Snow Lurker [Lv. 1375]") or game:GetService("Workspace").Enemies:FindFirstChild("Arctic Warrior [Lv. 1350]") then
  4205. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4206. if (v.Name == "Snow Lurker [Lv. 1375]" or v.Name == "Arctic Warrior [Lv. 1350]") and v.Humanoid.Health > 0 then
  4207. repeat task.wait()
  4208. EquipWeapon(_G.SelectWeapon)
  4209. AutoHaki()
  4210. v.HumanoidRootPart.CanCollide = false
  4211. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4212. RengokuMon = v.HumanoidRootPart.CFrame
  4213. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  4214. game:GetService'VirtualUser':CaptureController()
  4215. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  4216. StartRengokuMagnet = true
  4217. until game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Hidden Key") or _G.AutoRengoku == false or not v.Parent or v.Humanoid.Health <= 0
  4218. StartRengokuMagnet = false
  4219. end
  4220. end
  4221. else
  4222. StartRengokuMagnet = false
  4223. topos(CFrame.new(5439.716796875, 84.420944213867, -6715.1635742188))
  4224. end
  4225. end
  4226. end
  4227. end)
  4228. end)
  4229.  
  4230. Main:AddToggle("Auto Farm Ectoplasm",_G.AutoEctoplasm,function(value)
  4231. _G.AutoEctoplasm = value
  4232. StopTween(_G.AutoEctoplasm)
  4233. end)
  4234.  
  4235. spawn(function()
  4236. pcall(function()
  4237. while wait() do
  4238. if _G.AutoEctoplasm then
  4239. 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
  4240. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4241. if string.find(v.Name, "Ship") then
  4242. repeat task.wait()
  4243. EquipWeapon(_G.SelectWeapon)
  4244. AutoHaki()
  4245. if string.find(v.Name,"Ship") then
  4246. v.HumanoidRootPart.CanCollide = false
  4247. v.Head.CanCollide = false
  4248. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4249. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  4250. game:GetService'VirtualUser':CaptureController()
  4251. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  4252. EctoplasmMon = v.HumanoidRootPart.CFrame
  4253. StartEctoplasmMagnet = true
  4254. else
  4255. StartEctoplasmMagnet = false
  4256. topos(CFrame.new(911.35827636719, 125.95812988281, 33159.5390625))
  4257. end
  4258. until _G.AutoEctoplasm == false or not v.Parent or v.Humanoid.Health <= 0
  4259. end
  4260. end
  4261. else
  4262. StartEctoplasmMagnet = false
  4263. local Distance = (Vector3.new(911.35827636719, 125.95812988281, 33159.5390625) - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude
  4264. if Distance > 18000 then
  4265. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(923.21252441406, 126.9760055542, 32852.83203125))
  4266. end
  4267. topos(CFrame.new(911.35827636719, 125.95812988281, 33159.5390625))
  4268. end
  4269. end
  4270. end
  4271. end)
  4272. end)
  4273.  
  4274. Main:AddToggle("Auto Yama",_G.AutoYama,function(value)
  4275. _G.AutoYama = value
  4276. StopTween(_G.AutoYama)
  4277. end)
  4278.  
  4279. spawn(function()
  4280. while wait() do
  4281. if _G.AutoYama then
  4282. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("EliteHunter","Progress") >= 30 then
  4283. repeat wait(.1)
  4284. fireclickdetector(game:GetService("Workspace").Map.Waterfall.SealedKatana.Handle.ClickDetector)
  4285. until game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Yama") or not _G.AutoYama
  4286. end
  4287. end
  4288. end
  4289. end)
  4290.  
  4291. Main:AddToggle("Auto Evo Race",_G.Auto_EvoRace,function(value)
  4292. _G.Auto_EvoRace = value
  4293. StopTween(_G.Auto_EvoRace)
  4294. end)
  4295.  
  4296. spawn(function()
  4297. pcall(function()
  4298. while wait(.1) do
  4299. if _G.Auto_EvoRace then
  4300. if not game:GetService("Players").LocalPlayer.Data.Race:FindFirstChild("Evolved") then
  4301. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Alchemist","1") == 0 then
  4302. 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))
  4303. if (Vector3.new(-2779.83521, 72.9661407, -3574.02002) - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 4 then
  4304. wait(1.3)
  4305. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Alchemist","2")
  4306. end
  4307. elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Alchemist","1") == 1 then
  4308. pcall(function()
  4309. if not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Flower 1") and not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Flower 1") then
  4310. topos(game:GetService("Workspace").Flower1.CFrame)
  4311. elseif not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Flower 2") and not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Flower 2") then
  4312. topos(game:GetService("Workspace").Flower2.CFrame)
  4313. elseif not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Flower 3") and not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Flower 3") then
  4314. if game:GetService("Workspace").Enemies:FindFirstChild("Zombie [Lv. 950]") then
  4315. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4316. if v.Name == "Zombie [Lv. 950]" then
  4317. repeat task.wait()
  4318. AutoHaki()
  4319. EquipWeapon(_G.SelectWeapon)
  4320. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  4321. v.HumanoidRootPart.CanCollide = false
  4322. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4323. game:GetService("VirtualUser"):CaptureController()
  4324. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 672))
  4325. PosMonEvo = v.HumanoidRootPart.CFrame
  4326. StartEvoMagnet = true
  4327. until game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Flower 3") or not v.Parent or v.Humanoid.Health <= 0 or _G.Auto_EvoRace == false
  4328. StartEvoMagnet = false
  4329. end
  4330. end
  4331. else
  4332. StartEvoMagnet = false
  4333. topos(CFrame.new(-5685.9233398438, 48.480125427246, -853.23724365234))
  4334. end
  4335. end
  4336. end)
  4337. elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Alchemist","1") == 2 then
  4338. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Alchemist","3")
  4339. end
  4340. end
  4341. end
  4342. end
  4343. end)
  4344. end)
  4345.  
  4346. Main:AddToggle("Auto Bartlio Quest",_G.AutoBartilo,function(value)
  4347. _G.AutoBartilo = value
  4348. end)
  4349.  
  4350. spawn(function()
  4351. pcall(function()
  4352. while wait(.1) do
  4353. if _G.AutoBartilo then
  4354. if game:GetService("Players").LocalPlayer.Data.Level.Value >= 800 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") == 0 then
  4355. 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
  4356. if game:GetService("Workspace").Enemies:FindFirstChild("Swan Pirate [Lv. 775]") then
  4357. Ms = "Swan Pirate [Lv. 775]"
  4358. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4359. if v.Name == Ms then
  4360. pcall(function()
  4361. repeat task.wait()
  4362. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4363. EquipWeapon(_G.SelectWeapon)
  4364. AutoHaki()
  4365. v.HumanoidRootPart.Transparency = 1
  4366. v.HumanoidRootPart.CanCollide = false
  4367. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4368. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  4369. PosMonBarto = v.HumanoidRootPart.CFrame
  4370. game:GetService'VirtualUser':CaptureController()
  4371. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  4372. AutoBartiloBring = true
  4373. until not v.Parent or v.Humanoid.Health <= 0 or _G.AutoBartilo == false or game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false
  4374. AutoBartiloBring = false
  4375. end)
  4376. end
  4377. end
  4378. else
  4379. 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
  4380. end
  4381. else
  4382. 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
  4383. wait(1.1)
  4384. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StartQuest","BartiloQuest",1)
  4385. end
  4386. elseif game:GetService("Players").LocalPlayer.Data.Level.Value >= 800 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") == 1 then
  4387. if game:GetService("Workspace").Enemies:FindFirstChild("Jeremy [Lv. 850] [Boss]") then
  4388. Ms = "Jeremy [Lv. 850] [Boss]"
  4389. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4390. if v.Name == Ms then
  4391. OldCFrameBartlio = v.HumanoidRootPart.CFrame
  4392. repeat task.wait()
  4393. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4394. EquipWeapon(_G.SelectWeapon)
  4395. AutoHaki()
  4396. v.HumanoidRootPart.Transparency = 1
  4397. v.HumanoidRootPart.CanCollide = false
  4398. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4399. v.HumanoidRootPart.CFrame = OldCFrameBartlio
  4400. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  4401. game:GetService'VirtualUser':CaptureController()
  4402. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  4403. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  4404. until not v.Parent or v.Humanoid.Health <= 0 or _G.AutoBartilo == false
  4405. end
  4406. end
  4407. elseif game:GetService("ReplicatedStorage"):FindFirstChild("Jeremy [Lv. 850] [Boss]") then
  4408. 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
  4409. wait(1.1)
  4410. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo")
  4411. wait(1)
  4412. 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
  4413. wait(2)
  4414. else
  4415. 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
  4416. end
  4417. elseif game:GetService("Players").LocalPlayer.Data.Level.Value >= 800 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") == 2 then
  4418. 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
  4419. wait(1)
  4420. 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
  4421. wait(1)
  4422. 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
  4423. wait(1)
  4424. 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
  4425. wait(1)
  4426. 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
  4427. wait(1)
  4428. 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
  4429. wait(1)
  4430. 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
  4431. wait(1)
  4432. 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
  4433. end
  4434. end
  4435. end
  4436. end)
  4437. end)
  4438.  
  4439. Main:AddToggle("Auto Holy Torch",_G.AutoHolyTorch,function(value)
  4440. _G.AutoHolyTorch = value
  4441. StopTween(_G.AutoHolyTorch)
  4442. end)
  4443.  
  4444. spawn(function()
  4445. while wait() do
  4446. if _G.AutoHolyTorch then
  4447. pcall(function()
  4448. wait(1)
  4449. TP(CFrame.new(-10752, 417, -9366))
  4450. wait(1)
  4451. TP(CFrame.new(-11672, 334, -9474))
  4452. wait(1)
  4453. TP(CFrame.new(-12132, 521, -10655))
  4454. wait(1)
  4455. TP(CFrame.new(-13336, 486, -6985))
  4456. wait(1)
  4457. TP(CFrame.new(-13489, 332, -7925))
  4458. end)
  4459. end
  4460. end
  4461. end)
  4462.  
  4463. spawn(function()
  4464. while task.wait() do
  4465. pcall(function()
  4466. if _G.BringMonster then
  4467. CheckQuest()
  4468. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4469. 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
  4470. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4471. v.HumanoidRootPart.CFrame = PosMon
  4472. v.Humanoid:ChangeState(14)
  4473. v.HumanoidRootPart.CanCollide = false
  4474. v.Head.CanCollide = false
  4475. if v.Humanoid:FindFirstChild("Animator") then
  4476. v.Humanoid.Animator:Destroy()
  4477. end
  4478. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  4479. 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
  4480. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4481. v.HumanoidRootPart.CFrame = PosMon
  4482. v.Humanoid:ChangeState(14)
  4483. v.HumanoidRootPart.CanCollide = false
  4484. v.Head.CanCollide = false
  4485. if v.Humanoid:FindFirstChild("Animator") then
  4486. v.Humanoid.Animator:Destroy()
  4487. end
  4488. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  4489. end
  4490. if _G.AutoEctoplasm and StartEctoplasmMagnet then
  4491. 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
  4492. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4493. v.HumanoidRootPart.CFrame = EctoplasmMon
  4494. v.Humanoid:ChangeState(14)
  4495. v.HumanoidRootPart.CanCollide = false
  4496. v.Head.CanCollide = false
  4497. if v.Humanoid:FindFirstChild("Animator") then
  4498. v.Humanoid.Animator:Destroy()
  4499. end
  4500. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4501. end
  4502. end
  4503. if _G.AutoRengoku and StartRengokuMagnet then
  4504. 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
  4505. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4506. v.Humanoid:ChangeState(14)
  4507. v.HumanoidRootPart.CanCollide = false
  4508. v.Head.CanCollide = false
  4509. v.HumanoidRootPart.CFrame = RengokuMon
  4510. if v.Humanoid:FindFirstChild("Animator") then
  4511. v.Humanoid.Animator:Destroy()
  4512. end
  4513. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4514. end
  4515. end
  4516. if _G.AutoMusketeerHat and StartMagnetMusketeerhat then
  4517. 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
  4518. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4519. v.Humanoid:ChangeState(14)
  4520. v.HumanoidRootPart.CanCollide = false
  4521. v.Head.CanCollide = false
  4522. v.HumanoidRootPart.CFrame = MusketeerHatMon
  4523. if v.Humanoid:FindFirstChild("Animator") then
  4524. v.Humanoid.Animator:Destroy()
  4525. end
  4526. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4527. end
  4528. end
  4529. if _G.Auto_EvoRace and StartEvoMagnet then
  4530. 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
  4531. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4532. v.Humanoid:ChangeState(14)
  4533. v.HumanoidRootPart.CanCollide = false
  4534. v.Head.CanCollide = false
  4535. v.HumanoidRootPart.CFrame = PosMonEvo
  4536. if v.Humanoid:FindFirstChild("Animator") then
  4537. v.Humanoid.Animator:Destroy()
  4538. end
  4539. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4540. end
  4541. end
  4542. if _G.AutoBartilo and AutoBartiloBring then
  4543. 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
  4544. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4545. v.Humanoid:ChangeState(14)
  4546. v.HumanoidRootPart.CanCollide = false
  4547. v.Head.CanCollide = false
  4548. v.HumanoidRootPart.CFrame = PosMonBarto
  4549. if v.Humanoid:FindFirstChild("Animator") then
  4550. v.Humanoid.Animator:Destroy()
  4551. end
  4552. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4553. end
  4554. end
  4555. if _G.AutoFarmFruitMastery and StartMasteryFruitMagnet then
  4556. if v.Name == "Monkey [Lv. 14]" then
  4557. if (v.HumanoidRootPart.Position - PosMonMasteryFruit.Position).Magnitude <= 250 and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  4558. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4559. v.Humanoid:ChangeState(14)
  4560. v.HumanoidRootPart.CanCollide = false
  4561. v.Head.CanCollide = false
  4562. v.HumanoidRootPart.CFrame = PosMonMasteryFruit
  4563. if v.Humanoid:FindFirstChild("Animator") then
  4564. v.Humanoid.Animator:Destroy()
  4565. end
  4566. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4567. end
  4568. elseif v.Name == "Factory Staff [Lv. 800]" then
  4569. if (v.HumanoidRootPart.Position - PosMonMasteryFruit.Position).Magnitude <= 250 and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  4570. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4571. v.Humanoid:ChangeState(14)
  4572. v.HumanoidRootPart.CanCollide = false
  4573. v.Head.CanCollide = false
  4574. v.HumanoidRootPart.CFrame = PosMonMasteryFruit
  4575. if v.Humanoid:FindFirstChild("Animator") then
  4576. v.Humanoid.Animator:Destroy()
  4577. end
  4578. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4579. end
  4580. elseif v.Name == Mon then
  4581. if (v.HumanoidRootPart.Position - PosMonMasteryFruit.Position).Magnitude <= 250 and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  4582. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4583. v.Humanoid:ChangeState(14)
  4584. v.HumanoidRootPart.CanCollide = false
  4585. v.Head.CanCollide = false
  4586. v.HumanoidRootPart.CFrame = PosMonMasteryFruit
  4587. if v.Humanoid:FindFirstChild("Animator") then
  4588. v.Humanoid.Animator:Destroy()
  4589. end
  4590. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4591. end
  4592. end
  4593. end
  4594. if _G.AutoFarmGunMastery and StartMasteryGunMagnet then
  4595. if v.Name == "Monkey [Lv. 14]" then
  4596. if (v.HumanoidRootPart.Position - PosMonMasteryGun.Position).Magnitude <= 250 and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  4597. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4598. v.Humanoid:ChangeState(14)
  4599. v.HumanoidRootPart.CanCollide = false
  4600. v.Head.CanCollide = false
  4601. v.HumanoidRootPart.CFrame = PosMonMasteryGun
  4602. if v.Humanoid:FindFirstChild("Animator") then
  4603. v.Humanoid.Animator:Destroy()
  4604. end
  4605. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4606. end
  4607. elseif v.Name == "Factory Staff [Lv. 800]" then
  4608. if (v.HumanoidRootPart.Position - PosMonMasteryGun.Position).Magnitude <= 250 and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  4609. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4610. v.Humanoid:ChangeState(14)
  4611. v.HumanoidRootPart.CanCollide = false
  4612. v.Head.CanCollide = false
  4613. v.HumanoidRootPart.CFrame = PosMonMasteryGun
  4614. if v.Humanoid:FindFirstChild("Animator") then
  4615. v.Humanoid.Animator:Destroy()
  4616. end
  4617. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4618. end
  4619. elseif v.Name == Mon then
  4620. if (v.HumanoidRootPart.Position - PosMonMasteryGun.Position).Magnitude <= 250 and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  4621. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4622. v.Humanoid:ChangeState(14)
  4623. v.HumanoidRootPart.CanCollide = false
  4624. v.Head.CanCollide = false
  4625. v.HumanoidRootPart.CFrame = PosMonMasteryGun
  4626. if v.Humanoid:FindFirstChild("Animator") then
  4627. v.Humanoid.Animator:Destroy()
  4628. end
  4629. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4630. end
  4631. end
  4632. end
  4633. if _G.Auto_Bone and StartMagnetBoneMon then
  4634. 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
  4635. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4636. v.Humanoid:ChangeState(14)
  4637. v.HumanoidRootPart.CanCollide = false
  4638. v.Head.CanCollide = false
  4639. v.HumanoidRootPart.CFrame = PosMonBone
  4640. if v.Humanoid:FindFirstChild("Animator") then
  4641. v.Humanoid.Animator:Destroy()
  4642. end
  4643. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4644. end
  4645. end
  4646. if _G.AutoDoughtBoss and MagnetDought then
  4647. 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
  4648. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4649. v.Humanoid:ChangeState(14)
  4650. v.HumanoidRootPart.CanCollide = false
  4651. v.Head.CanCollide = false
  4652. v.HumanoidRootPart.CFrame = PosMonDoughtOpenDoor
  4653. if v.Humanoid:FindFirstChild("Animator") then
  4654. v.Humanoid.Animator:Destroy()
  4655. end
  4656. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4657. end
  4658. end
  4659. if _G.AutoCandy and StartMagnetCandy then
  4660. if (v.HumanoidRootPart.Position - PosMonCandy.Position).Magnitude <= 250 and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  4661. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4662. v.Humanoid:ChangeState(14)
  4663. v.HumanoidRootPart.CanCollide = false
  4664. v.Head.CanCollide = false
  4665. v.HumanoidRootPart.CFrame = PosMonCandy
  4666. if v.Humanoid:FindFirstChild("Animator") then
  4667. v.Humanoid.Animator:Destroy()
  4668. end
  4669. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  4670. end
  4671. end
  4672. end
  4673. end
  4674. end)
  4675. end
  4676. end)
  4677.  
  4678. local plyserv = Combat:AddLabel("Players")
  4679.  
  4680. spawn(function()
  4681. while wait() do
  4682. pcall(function()
  4683. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  4684. if i == 12 then
  4685. plyserv:Set("Players :".." "..i.." ".."/".." ".."12".." ".."(Max)")
  4686. elseif i == 1 then
  4687. plyserv:Set("Player :".." "..i.." ".."/".." ".."12")
  4688. else
  4689. plyserv:Set("Players :".." "..i.." ".."/".." ".."12")
  4690. end
  4691. end
  4692. end)
  4693. end
  4694. end)
  4695.  
  4696. Playerslist = {}
  4697.  
  4698. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  4699. table.insert(Playerslist,v.Name)
  4700. end
  4701.  
  4702. local SelectedPly = Combat:AddDropdown("Select Players",Playerslist,function(value)
  4703. _G.SelectPly = value
  4704. end)
  4705.  
  4706. Combat:AddButton("Refresh Player",function()
  4707. Playerslist = {}
  4708. SelectedPly:Clear()
  4709. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  4710. SelectedPly:Add(v.Name)
  4711. end
  4712. end)
  4713.  
  4714. Combat:AddToggle("Spectate Player",false,function(value)
  4715. SpectatePlys = value
  4716. local plr1 = game:GetService("Players").LocalPlayer.Character.Humanoid
  4717. local plr2 = game:GetService("Players"):FindFirstChild(_G.SelectPly)
  4718. repeat wait(.1)
  4719. game:GetService("Workspace").Camera.CameraSubject = game:GetService("Players"):FindFirstChild(_G.SelectPly).Character.Humanoid
  4720. until SpectatePlys == false
  4721. game:GetService("Workspace").Camera.CameraSubject = game:GetService("Players").LocalPlayer.Character.Humanoid
  4722. end)
  4723.  
  4724. Combat:AddToggle("Teleport",false,function(value)
  4725. _G.TeleportPly = value
  4726. pcall(function()
  4727. if _G.TeleportPly then
  4728. repeat topos(game:GetService("Players")[_G.SelectPly].Character.HumanoidRootPart.CFrame) wait() until _G.TeleportPly == false
  4729. end
  4730. StopTween(_G.TeleportPly)
  4731. end)
  4732. end)
  4733.  
  4734. Combat:AddToggle("Auto Farm Player",false,function(value)
  4735. _G.Auto_Kill_Ply = value
  4736. StopTween(_G.Auto_Kill_Ply)
  4737. end)
  4738.  
  4739. spawn(function()
  4740. while wait() do
  4741. if _G.Auto_Kill_Ply then
  4742. pcall(function()
  4743. if _G.SelectPly ~= nil then
  4744. if game.Players:FindFirstChild(_G.SelectPly) then
  4745. if game.Players:FindFirstChild(_G.SelectPly).Character.Humanoid.Health > 0 then
  4746. repeat task.wait()
  4747. EquipWeapon(_G.SelectWeapon)
  4748. AutoHaki()
  4749. game.Players:FindFirstChild(_G.SelectPly).Character.HumanoidRootPart.CanCollide = false
  4750. topos(game.Players:FindFirstChild(_G.SelectPly).Character.HumanoidRootPart.CFrame * CFrame.new(0,35,0))
  4751. spawn(function()
  4752. pcall(function()
  4753. if _G.SelectWeapon == SelectWeaponGun then
  4754. local args = {
  4755. [1] = game.Players:FindFirstChild(_G.SelectPly).Character.HumanoidRootPart.Position,
  4756. [2] = game.Players:FindFirstChild(_G.SelectPly).Character.HumanoidRootPart
  4757. }
  4758. game:GetService("Players").LocalPlayer.Character[SelectWeaponGun].RemoteFunctionShoot:InvokeServer(unpack(args))
  4759. else
  4760. game:GetService("VirtualUser"):CaptureController()
  4761. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  4762. end
  4763. end)
  4764. end)
  4765. until game.Players:FindFirstChild(_G.SelectPly).Character.Humanoid.Health <= 0 or not game.Players:FindFirstChild(_G.SelectPly) or not _G.Auto_Kill_Ply
  4766. end
  4767. end
  4768. end
  4769. end)
  4770. end
  4771. end
  4772. end)
  4773.  
  4774. Combat:AddSeperator("Aimbot")
  4775.  
  4776. spawn(function()
  4777. while wait() do
  4778. pcall(function()
  4779. local MaxDistance = math.huge
  4780. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  4781. if v.Name ~= game:GetService("Players").LocalPlayer.Name then
  4782. local Distance = v:DistanceFromCharacter(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position)
  4783. if Distance < MaxDistance then
  4784. MaxDistance = Distance
  4785. PlayerSelectAimbot = v.Name
  4786. end
  4787. end
  4788. end
  4789. end)
  4790. end
  4791. end)
  4792.  
  4793. Combat:AddToggle("Aimbot Gun",false,function(value)
  4794. _G.Aimbot_Gun = value
  4795. end)
  4796.  
  4797. spawn(function()
  4798. while task.wait() do
  4799. if _G.Aimbot_Gun and game:GetService("Players").LocalPlayer.Character:FindFirstChild(SelectWeaponGun) then
  4800. pcall(function()
  4801. game:GetService("Players").LocalPlayer.Character[SelectWeaponGun].Cooldown.Value = 0
  4802. local args = {
  4803. [1] = game:GetService("Players"):FindFirstChild(PlayerSelectAimbot).Character.HumanoidRootPart.Position,
  4804. [2] = game:GetService("Players"):FindFirstChild(PlayerSelectAimbot).Character.HumanoidRootPart
  4805. }
  4806. game:GetService("Players").LocalPlayer.Character[SelectWeaponGun].RemoteFunctionShoot:InvokeServer(unpack(args))
  4807. game:GetService'VirtualUser':CaptureController()
  4808. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  4809. end)
  4810. end
  4811. end
  4812. end)
  4813.  
  4814. Combat:AddToggle("Aimbot Skill",false,function(value)
  4815. _G.Aimbot_Skill = value
  4816. end)
  4817.  
  4818. spawn(function()
  4819. pcall(function()
  4820. while task.wait() do
  4821. 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
  4822. local args = {
  4823. [1] = game:GetService("Players"):FindFirstChild(PlayerSelectAimbot).Character.HumanoidRootPart.Position
  4824. }
  4825.  
  4826. game:GetService("Players").LocalPlayer.Character:FindFirstChild(game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool").Name).RemoteEvent:FireServer(unpack(args))
  4827. end
  4828. end
  4829. end)
  4830. end)
  4831.  
  4832. Combat:AddSeperator("PvP")
  4833.  
  4834. Combat:AddToggle("Enabled PvP",false,function(value)
  4835. _G.EnabledPvP = value
  4836. end)
  4837.  
  4838. spawn(function()
  4839. pcall(function()
  4840. while wait(.1) do
  4841. if _G.EnabledPvP then
  4842. if game:GetService("Players").LocalPlayer.PlayerGui.Main.PvpDisabled.Visible == true then
  4843. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("EnablePvp")
  4844. end
  4845. end
  4846. end
  4847. end)
  4848. end)
  4849.  
  4850. Combat:AddToggle("Safe Mode",false,function(value)
  4851. _G.Safe_Mode = value
  4852. StopTween(_G.Safe_Mode)
  4853. end)
  4854.  
  4855. spawn(function()
  4856. pcall(function()
  4857. while wait() do
  4858. if _G.Safe_Mode then
  4859. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame
  4860. end
  4861. end
  4862. end)
  4863. end)
  4864.  
  4865. Combat:AddButton("Respawn",function()
  4866. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetTeam","Pirates")
  4867. wait()
  4868. end)
  4869.  
  4870. Combat:AddSeperator("Bounty")
  4871.  
  4872. local Current = Combat:AddLabel("Current Bounties :")
  4873.  
  4874. local Bounty = tostring(game:GetService("Players").LocalPlayer.leaderstats["Bounty/Honor"].Value)
  4875. local sub = string.sub
  4876. local len = string.len
  4877. spawn(function()
  4878. while wait() do
  4879. pcall(function()
  4880. if len(Bounty) == 4 then
  4881. Bounty1 = sub(Bounty,1,1).."."..sub(Bounty,2,3).."K"
  4882. elseif len(Bounty) == 5 then
  4883. Bounty1 = sub(Bounty,1,2).."."..sub(Bounty,3,4).."K"
  4884. elseif len(Bounty) == 6 then
  4885. Bounty1 = sub(Bounty,1,3).."."..sub(Bounty,4,5).."K"
  4886. elseif len(Bounty) == 7 then
  4887. Bounty1 = sub(Bounty,1,1).."."..sub(Bounty,2,3).."M"
  4888. elseif len(Bounty) == 8 then
  4889. Bounty1 = sub(Bounty,1,2).."."..sub(Bounty,3,4).."M"
  4890. elseif len(Bounty) <= 3 then
  4891. Bounty1 = Bounty
  4892. end
  4893. if tonumber(Bounty) == 25000000 then
  4894. Current:Set("Current Bounties : "..Bounty1.." [ Max ]")
  4895. elseif tonumber(Bounty) < 25000000 then
  4896. Current:Set("Current Bounties : "..Bounty1)
  4897. end
  4898. end)
  4899. end
  4900. end)
  4901.  
  4902. local Earn = Combat:AddLabel("Earned")
  4903. local OldBounty = game:GetService("Players").LocalPlayer.leaderstats["Bounty/Honor"].Value
  4904. local Bounty = tostring(game:GetService("Players").LocalPlayer.leaderstats["Bounty/Honor"].Value)
  4905. local Earned = tostring(game:GetService("Players").LocalPlayer.leaderstats["Bounty/Honor"].Value - OldBounty)
  4906. local sub = string.sub
  4907. local len = string.len
  4908. spawn(function()
  4909. while wait() do
  4910. pcall(function()
  4911. if len(Earned) == 4 then
  4912. Earned1 = sub(Earned,1,1).."."..sub(Earned,2,3).."K"
  4913. elseif len(Earned) == 5 then
  4914. Earned1 = sub(Earned,1,2).."."..sub(Earned,3,4).."K"
  4915. elseif len(Earned) == 6 then
  4916. Earned1 = sub(Earned,1,3).."."..sub(Earned,4,5).."K"
  4917. elseif len(Earned) == 7 then
  4918. Earned1 = sub(Earned,1,1).."."..sub(Earned,2,3).."M"
  4919. elseif len(Earned) == 8 then
  4920. Earned1 = sub(Earned,1,2).."."..sub(Earned,3,4).."M"
  4921. elseif len(Earned) <= 3 then
  4922. Earned1 = Earned
  4923. end
  4924. Earn:Set("Earned : "..tonumber(Earned1))
  4925. end)
  4926. end
  4927. end)
  4928.  
  4929. Combat:AddToggle("Auto Farm Bounty",_G.AutoFarmBounty,function(value)
  4930. _G.AutoFarmBounty = value
  4931. StopTween(_G.AutoFarmBounty)
  4932. end)
  4933.  
  4934. spawn(function()
  4935. while wait() do
  4936. pcall(function()
  4937. if _G.AutoFarmBounty then
  4938. for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetChildren()) do
  4939. if v:IsA("Shirt") then
  4940. v:Destroy()
  4941. end
  4942. if v:IsA("Pants") then
  4943. v:Destroy()
  4944. end
  4945. if v:IsA("Accessory") then
  4946. v:Destroy()
  4947. end
  4948. end
  4949. end
  4950. end)
  4951. end
  4952. end)
  4953.  
  4954. spawn(function()
  4955. pcall(function()
  4956. if _G.AutoFarmBounty then
  4957. while wait() do
  4958. if game.Players.LocalPlayer.Character.Humanoid.Health > 0 then
  4959. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetSpawnPoint")
  4960. end
  4961. end
  4962. end
  4963. end)
  4964. end)
  4965.  
  4966. spawn(function()
  4967. while wait() do
  4968. pcall(function()
  4969. if _G.AutoFarmBounty then
  4970. if not game:GetService("Players").LocalPlayer.Character:FindFirstChild("HasBuso") then
  4971. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Buso")
  4972. end
  4973. end
  4974. end)
  4975. end
  4976. end)
  4977.  
  4978. spawn(function()
  4979. while task.wait() do
  4980. pcall(function()
  4981. if _G.AutoFarmBounty then
  4982. game:GetService("Players").LocalPlayer.Character[SelectWeaponGun].Cooldown.Value = 0
  4983. spawn(function()
  4984. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Beli.Visible = false
  4985. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.HP.Visible = false
  4986. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Energy.Visible = false
  4987. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.StatsButton.Visible = false
  4988. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.ShopButton.Visible = false
  4989. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Skills.Visible = false
  4990. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Level.Visible = false
  4991. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.MenuButton.Visible = false
  4992. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Code.Visible = false
  4993. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Settings.Visible = false
  4994. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Mute.Visible = false
  4995. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.CrewButton.Visible = false
  4996. game.Players.LocalPlayer.Character.Animate.Disabled = true
  4997. end)
  4998. end
  4999. end)
  5000. end
  5001. end)
  5002. CastlePostoMansion = CFrame.new(-5084.8447265625, 316.48101806641, -3145.3752441406)
  5003. MansiontoCastlePos = CFrame.new(-12464.596679688, 376.30590820312, -7567.2626953125)
  5004. Castletophydra = CFrame.new(-5095.33984375, 316.48101806641, -3168.3134765625)
  5005. HydratoCastle = CFrame.new(5741.869140625, 611.94750976562, -282.61154174805)
  5006. spawn(function()
  5007. while wait() do
  5008. pcall(function()
  5009. if _G.AutoFarmBounty then
  5010. for i,v in pairs(game:GetService("Workspace").Characters:GetChildren()) do
  5011. if v.Name ~= game.Players.LocalPlayer.Name then
  5012. if v:WaitForChild("Humanoid").Health > 0 and (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - v.HumanoidRootPart.Position).Magnitude <= 17000 then
  5013. plyselecthunthelpold = v.Humanoid.Health
  5014. repeat task.wait()
  5015. EquipWeapon(SelectWeaponGun)
  5016. NameTarget = v.Name
  5017. if tostring(game.Players.LocalPlayer.Team) == "Pirates" then
  5018. topos(v.HumanoidRootPart.CFrame * CFrame.new(0,60,-20))
  5019. elseif tostring(game.Players.LocalPlayer.Team) == "Marines" then
  5020. if game.Players[NameTarget].Team ~= game.Players.LocalPlayer.Team then
  5021. topos(v.HumanoidRootPart.CFrame * CFrame.new(0,60,-20))
  5022. end
  5023. end
  5024. spawn(function()
  5025. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 150 then
  5026. StartCheckTarget = true
  5027. end
  5028. end)
  5029. v.HumanoidRootPart.CanCollide = false
  5030. spawn(function()
  5031. pcall(function()
  5032. local args = {
  5033. [1] = v.HumanoidRootPart.Position,
  5034. [2] = v.HumanoidRootPart
  5035. }
  5036. game:GetService("Players").LocalPlayer.Character[SelectWeaponGun].RemoteFunctionShoot:InvokeServer(unpack(args))
  5037. end)
  5038. end)
  5039. TargetSelectHunt = v.Humanoid
  5040. 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
  5041. NextplySelect = false
  5042. StartCheckTarget = false
  5043. end
  5044. end
  5045. end
  5046. end
  5047. end)
  5048. end
  5049. end)
  5050.  
  5051. spawn(function()
  5052. pcall(function()
  5053. while task.wait() do
  5054. if _G.AutoFarmBounty then
  5055. game:GetService("Players").LocalPlayer.PlayerGui.Main.InCombat.Visible = false
  5056. game:GetService("Players").LocalPlayer.PlayerGui.Main.SafeZone.Visible = false
  5057. end
  5058. end
  5059. end)
  5060. end)
  5061.  
  5062. spawn(function()
  5063. pcall(function()
  5064. while wait() do
  5065. if _G.AutoFarmBounty then
  5066. if TargetSelectHunt ~= nil then
  5067. if StartCheckTarget then
  5068. wait(6.5)
  5069. if TargetSelectHunt.Health == TargetSelectHunt.MaxHealth or TargetSelectHunt.Health >= plyselecthunthelpold then
  5070. NextplySelect = true
  5071. TargetSelectHunt = nil
  5072. end
  5073. end
  5074. end
  5075. end
  5076. end
  5077. end)
  5078. end)
  5079.  
  5080. spawn(function()
  5081. pcall(function()
  5082. while wait(.1) do
  5083. if _G.AutoFarmBounty then
  5084. if game:GetService("Players").LocalPlayer.PlayerGui.Main.PvpDisabled.Visible == true then
  5085. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("EnablePvp")
  5086. end
  5087. end
  5088. end
  5089. end)
  5090. end)
  5091.  
  5092. Combat:AddToggle("Auto Farm Bounty Hop",_G.AutoFarmBounty_Hop,function(value)
  5093. _G.AutoFarmBounty_Hop = value
  5094. end)
  5095.  
  5096. spawn(function()
  5097. while wait() do
  5098. if _G.AutoFarmBounty then
  5099. if _G.AutoFarmBounty_Hop then
  5100. pcall(function()
  5101. wait(120)
  5102. Hop()
  5103. end)
  5104. end
  5105. end
  5106. end
  5107. end)
  5108.  
  5109. Combat:AddSeperator("Misc Bounty")
  5110.  
  5111. Combat:AddButton("Next Player",function()
  5112. NextplySelect = true
  5113. wait(.1)
  5114. NextplySelect = false
  5115. end)
  5116.  
  5117. Combat:AddSlider("Lock Bounty",1,25000000,750000,function(value)
  5118. _G.BountyLock = value
  5119. end)
  5120.  
  5121. Combat:AddToggle("Start Bounty Lock",false,function(value)
  5122. _G.StartBountyLock = value
  5123. end)
  5124.  
  5125. spawn(function()
  5126. while wait() do
  5127. if _G.StartBountyLock then
  5128. pcall(function()
  5129. if game:GetService("Players").LocalPlayer.leaderstats["Bounty/Honor"].Value >= _G.BountyLock then
  5130. game:GetService("Players").LocalPlayer:Kick("Successfully! Bounty Farm")
  5131. end
  5132. end)
  5133. end
  5134. end
  5135. end)
  5136.  
  5137. Stats:AddSeperator("Auto Stats")
  5138.  
  5139. local Pointstat = Stats:AddLabel("Stat Points")
  5140.  
  5141. spawn(function()
  5142. while wait() do
  5143. pcall(function()
  5144. Pointstat:Set("Stat Points : "..tostring(game:GetService("Players")["LocalPlayer"].Data.Points.Value))
  5145. end)
  5146. end
  5147. end)
  5148.  
  5149. Stats:AddToggle("Auto Melee",_G.Auto_Melee,function(value)
  5150. _G.Auto_Melee = value
  5151. end)
  5152.  
  5153. Stats:AddToggle("Auto Defense",_G.Auto_Defense,function(value)
  5154. _G.Auto_Defense = value
  5155. end)
  5156.  
  5157. Stats:AddToggle("Auto Sword",_G.Auto_Sword,function(value)
  5158. _G.Auto_Sword = value
  5159. end)
  5160.  
  5161. Stats:AddToggle("Auto Gun",_G.Auto_Gun,function(value)
  5162. _G.Auto_Gun = value
  5163. end)
  5164.  
  5165. Stats:AddToggle("Auto Devil Fruits",_G.Auto_DevilFruit,function(value)
  5166. _G.Auto_DevilFruit = value
  5167. end)
  5168.  
  5169. _G.PointStats = 1
  5170. Stats:AddSlider("Select Point",1,100,1,function(value)
  5171. _G.PointStats = value
  5172. end)
  5173.  
  5174. spawn(function()
  5175. while wait() do
  5176. pcall(function()
  5177. if _G.Auto_Melee then
  5178. if game:GetService("Players")["LocalPlayer"].Data.Points.Value ~= 0 then
  5179. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AddPoint","Melee",_G.PointStats)
  5180. end
  5181. end
  5182. end)
  5183. end
  5184. end)
  5185.  
  5186. spawn(function()
  5187. while wait() do
  5188. pcall(function()
  5189. if _G.Auto_Defense then
  5190. if game:GetService("Players")["LocalPlayer"].Data.Points.Value ~= 0 then
  5191. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AddPoint","Defense",_G.PointStats)
  5192. end
  5193. end
  5194. end)
  5195. end
  5196. end)
  5197.  
  5198. spawn(function()
  5199. while wait() do
  5200. pcall(function()
  5201. if _G.Auto_Sword then
  5202. if game:GetService("Players")["LocalPlayer"].Data.Points.Value ~= 0 then
  5203. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AddPoint","Sword",_G.PointStats)
  5204. end
  5205. end
  5206. end)
  5207. end
  5208. end)
  5209.  
  5210. spawn(function()
  5211. while wait() do
  5212. pcall(function()
  5213. if _G.Auto_Gun then
  5214. if game:GetService("Players")["LocalPlayer"].Data.Points.Value ~= 0 then
  5215. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AddPoint","Gun",_G.PointStats)
  5216. end
  5217. end
  5218. end)
  5219. end
  5220. end)
  5221.  
  5222. spawn(function()
  5223. while wait() do
  5224. pcall(function()
  5225. if _G.Auto_DevilFruit then
  5226. if game:GetService("Players")["LocalPlayer"].Data.Points.Value ~= 0 then
  5227. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AddPoint","Devil Fruit",_G.PointStats)
  5228. end
  5229. end
  5230. end)
  5231. end
  5232. end)
  5233.  
  5234. Stats:AddSeperator("Status")
  5235.  
  5236. local locallv = Stats:AddLabel("Level")
  5237.  
  5238. spawn(function()
  5239. while wait() do
  5240. pcall(function()
  5241. locallv:Set("Level :".." "..game:GetService("Players").LocalPlayer.Data.Level.Value)
  5242. end)
  5243. end
  5244. end)
  5245.  
  5246. local localrace = Stats:AddLabel("Race")
  5247.  
  5248. spawn(function()
  5249. while wait() do
  5250. pcall(function()
  5251. localrace:Set("Race :".." "..game:GetService("Players").LocalPlayer.Data.Race.Value)
  5252. end)
  5253. end
  5254. end)
  5255.  
  5256. local localbeli = Stats:AddLabel("Beli")
  5257.  
  5258. spawn(function()
  5259. while wait() do
  5260. pcall(function()
  5261. localbeli:Set("Beli :".." "..game:GetService("Players").LocalPlayer.Data.Beli.Value)
  5262. end)
  5263. end
  5264. end)
  5265.  
  5266. local localfrag = Stats:AddLabel("Fragment")
  5267.  
  5268. spawn(function()
  5269. while wait() do
  5270. pcall(function()
  5271. localfrag:Set("Fragments :".." "..game:GetService("Players").LocalPlayer.Data.Fragments.Value)
  5272. end)
  5273. end
  5274. end)
  5275.  
  5276.  
  5277. local localexp = Stats:AddLabel("ExP")
  5278.  
  5279. spawn(function()
  5280. while wait() do
  5281. pcall(function()
  5282. localexp:Set("ExP Points :".." "..game:GetService("Players").LocalPlayer.Data.Exp.Value)
  5283. end)
  5284. end
  5285. end)
  5286.  
  5287. local localstat = Stats:AddLabel("Stats Points")
  5288.  
  5289. spawn(function()
  5290. while wait() do
  5291. pcall(function()
  5292. localstat:Set("Stats Points :".." "..game:GetService("Players").LocalPlayer.Data.Points.Value)
  5293. end)
  5294. end
  5295. end)
  5296.  
  5297. local localbountyhornor = Stats:AddLabel("Bounty")
  5298.  
  5299. spawn(function()
  5300. while wait() do
  5301. pcall(function()
  5302. localbountyhornor:Set("Bounty / Honor :".." "..game:GetService("Players").LocalPlayer.leaderstats["Bounty/Honor"].Value)
  5303. end)
  5304. end
  5305. end)
  5306.  
  5307. local localDevil = Stats:AddLabel("Devil Fruit")
  5308.  
  5309. spawn(function()
  5310. while wait() do
  5311. pcall(function()
  5312. 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
  5313. localDevil:Set("Devil Fruit :".." "..game:GetService("Players").LocalPlayer.Data.DevilFruit.Value)
  5314. else
  5315. localDevil:Set("Not Have Devil Fruit")
  5316. end
  5317. end)
  5318. end
  5319. end)
  5320.  
  5321. Stats:AddSeperator("Fake")
  5322.  
  5323. Stats:AddToggle("Enabled Fake",_G.EnabledStat,function(value)
  5324. _G.EnabledStat = value
  5325. end)
  5326.  
  5327. Stats:AddTextbox("Level","",true,function(value)
  5328. if _G.EnabledStat then
  5329. game:GetService("Players")["LocalPlayer"].Data.Level.Value = tonumber(value)
  5330. end
  5331. end)
  5332.  
  5333. Stats:AddTextbox("Exp ","",true,function(value)
  5334. if _G.EnabledStat then
  5335. game:GetService("Players")["LocalPlayer"].Data.Exp.Value = tonumber(value)
  5336. end
  5337. end)
  5338.  
  5339. Stats:AddTextbox("Beli","",true,function(value)
  5340. if _G.EnabledStat then
  5341. game:GetService("Players")["LocalPlayer"].Data.Beli.Value = tonumber(value)
  5342. end
  5343. end)
  5344.  
  5345. Stats:AddTextbox("Fragments","",true,function(value)
  5346. if _G.EnabledStat then
  5347. game:GetService("Players")["Localplayer"].Data.Fragments.Value = tonumber(value)
  5348. end
  5349. end)
  5350.  
  5351. Stats:AddTextbox("Melee","",true,function(value)
  5352. if _G.EnabledStat then
  5353. game:GetService("Players")["LocalPlayer"].Data.Stats.Melee.Level.Value = tonumber(value)
  5354. end
  5355. end)
  5356.  
  5357. Stats:AddTextbox("Defense","",true,function(value)
  5358. if _G.EnabledStat then
  5359. game:GetService("Players")["LocalPlayer"].Data.Stats.Defense.Level.Value = tonumber(value)
  5360. end
  5361. end)
  5362.  
  5363. Stats:AddTextbox("Sword","",true,function(value)
  5364. if _G.EnabledStat then
  5365. game:GetService("Players")["LocalPlayer"].Data.Stats.Sword.Level.Value = tonumber(value)
  5366. end
  5367. end)
  5368.  
  5369. Stats:AddTextbox("Gun","",true,function(value)
  5370. if _G.EnabledStat then
  5371. game:GetService("Players")["LocalPlayer"].Data.Stats.Gun.Level.Value = tonumber(value)
  5372. end
  5373. end)
  5374. Stats:AddTextbox("Fruit","",true,function(value)
  5375. if _G.EnabledStat then
  5376. game:GetService("Players")["LocalPlayer"].Data.Stats["Demon Fruit"].Level.Value = tonumber(value)
  5377. end
  5378. end)
  5379.  
  5380. Stats:AddTextbox("Bounty","",true,function(value)
  5381. if _G.EnabledStat then
  5382. game:GetService("Players")["LocalPlayer"].leaderstats["Bounty/Honor"].Value = tonumber(value)
  5383. end
  5384. end)
  5385.  
  5386. Teleport:AddSeperator("World - Monster")
  5387.  
  5388. Teleport:AddButton("Teleport To Old World",function()
  5389. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelMain")
  5390. end)
  5391.  
  5392. Teleport:AddButton("Teleport To Second Sea",function()
  5393. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelDressrosa")
  5394. end)
  5395.  
  5396. Teleport:AddButton("Teleport To Third Sea",function()
  5397. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelZou")
  5398. end)
  5399.  
  5400. Teleport:AddButton("Teleport to Seabeast",function()
  5401. for i,v in pairs(game:GetService("Workspace").SeaBeasts:GetChildren()) do
  5402. if v:FindFirstChild("HumanoidRootPart") then
  5403. topos(v.HumanoidRootPart.CFrame*CFrame.new(0,100,0))
  5404. end
  5405. end
  5406. end)
  5407.  
  5408. Teleport:AddSeperator("Island")
  5409.  
  5410. if World1 then
  5411. Teleport:AddDropdown("Select Island",{
  5412. "WindMill",
  5413. "Marine",
  5414. "Middle Town",
  5415. "Jungle",
  5416. "Pirate Village",
  5417. "Desert",
  5418. "Snow Island",
  5419. "MarineFord",
  5420. "Colosseum",
  5421. "Sky Island 1",
  5422. "Sky Island 2",
  5423. "Sky Island 3",
  5424. "Prison",
  5425. "Magma Village",
  5426. "Under Water Island",
  5427. "Fountain City",
  5428. "Shank Room",
  5429. "Mob Island"
  5430. },function(value)
  5431. _G.SelectIsland = value
  5432. end)
  5433. end
  5434.  
  5435. if World2 then
  5436. Teleport:AddDropdown("Select Island",{
  5437. "The Cafe",
  5438. "Frist Spot",
  5439. "Dark Area",
  5440. "Flamingo Mansion",
  5441. "Flamingo Room",
  5442. "Green Zone",
  5443. "Factory",
  5444. "Colossuim",
  5445. "Zombie Island",
  5446. "Two Snow Mountain",
  5447. "Punk Hazard",
  5448. "Cursed Ship",
  5449. "Ice Castle",
  5450. "Forgotten Island",
  5451. "Ussop Island",
  5452. "Mini Sky Island"
  5453. },function(value)
  5454. _G.SelectIsland = value
  5455. end)
  5456. end
  5457.  
  5458. if World3 then
  5459. Teleport:AddDropdown("Select Island",{
  5460. "Mansion",
  5461. "Port Town",
  5462. "Great Tree",
  5463. "Castle On The Sea",
  5464. "MiniSky",
  5465. "Hydra Island",
  5466. "Floating Turtle",
  5467. "Haunted Castle",
  5468. "Ice Cream Island",
  5469. "Peanut Island",
  5470. "Cake Island"
  5471. },function(value)
  5472. _G.SelectIsland = value
  5473. end)
  5474. end
  5475.  
  5476. Teleport:AddToggle("Teleport",false,function(value)
  5477. _G.TeleportIsland = value
  5478. if _G.TeleportIsland == true then
  5479. repeat wait()
  5480. if _G.SelectIsland == "WindMill" then
  5481. topos(CFrame.new(979.79895019531, 16.516613006592, 1429.0466308594))
  5482. elseif _G.SelectIsland == "Marine" then
  5483. topos(CFrame.new(-2566.4296875, 6.8556680679321, 2045.2561035156))
  5484. elseif _G.SelectIsland == "Middle Town" then
  5485. topos(CFrame.new(-690.33081054688, 15.09425163269, 1582.2380371094))
  5486. elseif _G.SelectIsland == "Jungle" then
  5487. topos(CFrame.new(-1612.7957763672, 36.852081298828, 149.12843322754))
  5488. elseif _G.SelectIsland == "Pirate Village" then
  5489. topos(CFrame.new(-1181.3093261719, 4.7514905929565, 3803.5456542969))
  5490. elseif _G.SelectIsland == "Desert" then
  5491. topos(CFrame.new(944.15789794922, 20.919729232788, 4373.3002929688))
  5492. elseif _G.SelectIsland == "Snow Island" then
  5493. topos(CFrame.new(1347.8067626953, 104.66806030273, -1319.7370605469))
  5494. elseif _G.SelectIsland == "MarineFord" then
  5495. topos(CFrame.new(-4914.8212890625, 50.963626861572, 4281.0278320313))
  5496. elseif _G.SelectIsland == "Colosseum" then
  5497. topos( CFrame.new(-1427.6203613281, 7.2881078720093, -2792.7722167969))
  5498. elseif _G.SelectIsland == "Sky Island 1" then
  5499. topos(CFrame.new(-4869.1025390625, 733.46051025391, -2667.0180664063))
  5500. elseif _G.SelectIsland == "Sky Island 2" then
  5501. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-4607.82275, 872.54248, -1667.55688))
  5502. elseif _G.SelectIsland == "Sky Island 3" then
  5503. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-7894.6176757813, 5547.1416015625, -380.29119873047))
  5504. elseif _G.SelectIsland == "Prison" then
  5505. topos( CFrame.new(4875.330078125, 5.6519818305969, 734.85021972656))
  5506. elseif _G.SelectIsland == "Magma Village" then
  5507. topos(CFrame.new(-5247.7163085938, 12.883934020996, 8504.96875))
  5508. elseif _G.SelectIsland == "Under Water Island" then
  5509. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(61163.8515625, 11.6796875, 1819.7841796875))
  5510. elseif _G.SelectIsland == "Fountain City" then
  5511. topos(CFrame.new(5127.1284179688, 59.501365661621, 4105.4458007813))
  5512. elseif _G.SelectIsland == "Shank Room" then
  5513. topos(CFrame.new(-1442.16553, 29.8788261, -28.3547478))
  5514. elseif _G.SelectIsland == "Mob Island" then
  5515. topos(CFrame.new(-2850.20068, 7.39224768, 5354.99268))
  5516. elseif _G.SelectIsland == "The Cafe" then
  5517. topos(CFrame.new(-380.47927856445, 77.220390319824, 255.82550048828))
  5518. elseif _G.SelectIsland == "Frist Spot" then
  5519. topos(CFrame.new(-11.311455726624, 29.276733398438, 2771.5224609375))
  5520. elseif _G.SelectIsland == "Dark Area" then
  5521. topos(CFrame.new(3780.0302734375, 22.652164459229, -3498.5859375))
  5522. elseif _G.SelectIsland == "Flamingo Mansion" then
  5523. topos(CFrame.new(-483.73370361328, 332.0383605957, 595.32708740234))
  5524. elseif _G.SelectIsland == "Flamingo Room" then
  5525. topos(CFrame.new(2284.4140625, 15.152037620544, 875.72534179688))
  5526. elseif _G.SelectIsland == "Green Zone" then
  5527. topos( CFrame.new(-2448.5300292969, 73.016105651855, -3210.6306152344))
  5528. elseif _G.SelectIsland == "Factory" then
  5529. topos(CFrame.new(424.12698364258, 211.16171264648, -427.54049682617))
  5530. elseif _G.SelectIsland == "Colossuim" then
  5531. topos( CFrame.new(-1503.6224365234, 219.7956237793, 1369.3101806641))
  5532. elseif _G.SelectIsland == "Zombie Island" then
  5533. topos(CFrame.new(-5622.033203125, 492.19604492188, -781.78552246094))
  5534. elseif _G.SelectIsland == "Two Snow Mountain" then
  5535. topos(CFrame.new(753.14288330078, 408.23559570313, -5274.6147460938))
  5536. elseif _G.SelectIsland == "Punk Hazard" then
  5537. topos(CFrame.new(-6127.654296875, 15.951762199402, -5040.2861328125))
  5538. elseif _G.SelectIsland == "Cursed Ship" then
  5539. topos(CFrame.new(923.40197753906, 125.05712890625, 32885.875))
  5540. elseif _G.SelectIsland == "Ice Castle" then
  5541. topos(CFrame.new(6148.4116210938, 294.38687133789, -6741.1166992188))
  5542. elseif _G.SelectIsland == "Forgotten Island" then
  5543. topos(CFrame.new(-3032.7641601563, 317.89672851563, -10075.373046875))
  5544. elseif _G.SelectIsland == "Ussop Island" then
  5545. topos(CFrame.new(4816.8618164063, 8.4599885940552, 2863.8195800781))
  5546. elseif _G.SelectIsland == "Mini Sky Island" then
  5547. topos(CFrame.new(-288.74060058594, 49326.31640625, -35248.59375))
  5548. elseif _G.SelectIsland == "Great Tree" then
  5549. topos(CFrame.new(2681.2736816406, 1682.8092041016, -7190.9853515625))
  5550. elseif _G.SelectIsland == "Castle On The Sea" then
  5551. topos(CFrame.new(-5074.45556640625, 314.5155334472656, -2991.054443359375))
  5552. elseif _G.SelectIsland == "MiniSky" then
  5553. topos(CFrame.new(-260.65557861328, 49325.8046875, -35253.5703125))
  5554. elseif _G.SelectIsland == "Port Town" then
  5555. topos(CFrame.new(-290.7376708984375, 6.729952812194824, 5343.5537109375))
  5556. elseif _G.SelectIsland == "Hydra Island" then
  5557. topos(CFrame.new(5228.8842773438, 604.23400878906, 345.0400390625))
  5558. elseif _G.SelectIsland == "Floating Turtle" then
  5559. topos(CFrame.new(-13274.528320313, 531.82073974609, -7579.22265625))
  5560. elseif _G.SelectIsland == "Mansion" then
  5561. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-12471.169921875, 374.94024658203, -7551.677734375))
  5562. elseif _G.SelectIsland == "Haunted Castle" then
  5563. topos(CFrame.new(-9515.3720703125, 164.00624084473, 5786.0610351562))
  5564. elseif _G.SelectIsland == "Ice Cream Island" then
  5565. topos(CFrame.new(-902.56817626953, 79.93204498291, -10988.84765625))
  5566. elseif _G.SelectIsland == "Peanut Island" then
  5567. topos(CFrame.new(-2062.7475585938, 50.473892211914, -10232.568359375))
  5568. elseif _G.SelectIsland == "Cake Island" then
  5569. topos(CFrame.new(-1884.7747802734375, 19.327526092529297, -11666.8974609375))
  5570. end
  5571. until not _G.TeleportIsland
  5572. end
  5573. StopTween(_G.TeleportIsland)
  5574. end)
  5575.  
  5576. Dungeon:AddLine()
  5577.  
  5578. local TimeRaid = Dungeon:AddLabel("Wait For Dungeon")
  5579.  
  5580. spawn(function()
  5581. pcall(function()
  5582. while wait() do
  5583. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Timer.Visible == true then
  5584. TimeRaid:Set(game:GetService("Players").LocalPlayer.PlayerGui.Main.Timer.Text)
  5585. else
  5586. TimeRaid:Set("Wait For Dungeon")
  5587. end
  5588. end
  5589. end)
  5590. end)
  5591.  
  5592. Dungeon:AddToggle("Auto Farm Dungeon",_G.Auto_Dungeon,function(value)
  5593. _G.Auto_Dungeon = value
  5594. StopTween(_G.Auto_Dungeon)
  5595. end)
  5596.  
  5597. spawn(function()
  5598. pcall(function()
  5599. while wait() do
  5600. if _G.Auto_Dungeon then
  5601. if game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Timer.Visible == true then
  5602. for i,v in pairs(game:GetService("Workspace").Enemies:GetDescendants()) do
  5603. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  5604. pcall(function()
  5605. repeat wait()
  5606. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  5607. v.Humanoid.Health = 0
  5608. v.HumanoidRootPart.CanCollide = false
  5609. until not _G.Auto_Dungeon or not v.Parent or v.Humanoid.Health <= 0
  5610. end)
  5611. end
  5612. end
  5613. end
  5614. end
  5615. end
  5616. end)
  5617. end)
  5618.  
  5619. spawn(function()
  5620. pcall(function()
  5621. while wait() do
  5622. if _G.Auto_Dungeon then
  5623. if game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Timer.Visible == true then
  5624. if game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 5") then
  5625. topos(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 5").CFrame*CFrame.new(0,80,100))
  5626. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 4") then
  5627. topos(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 4").CFrame*CFrame.new(0,80,100))
  5628. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 3") then
  5629. topos(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 3").CFrame*CFrame.new(0,80,100))
  5630. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 2") then
  5631. topos(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 2").CFrame*CFrame.new(0,80,100))
  5632. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
  5633. topos(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1").CFrame*CFrame.new(0,80,100))
  5634. end
  5635. end
  5636. end
  5637. end
  5638. end)
  5639. end)
  5640.  
  5641. Dungeon:AddToggle("Auto Awakener",_G.Auto_Awakener,function(value)
  5642. _G.Auto_Awakener = value
  5643. end)
  5644.  
  5645. spawn(function()
  5646. pcall(function()
  5647. while wait(.1) do
  5648. if _G.Auto_Awakener then
  5649. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Awakener","Check")
  5650. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Awakener","Awaken")
  5651. end
  5652. end
  5653. end)
  5654. end)
  5655.  
  5656. Dungeon:AddLine()
  5657.  
  5658. Dungeon:AddDropdown("Select Chips",{"Flame","Ice","Quake","Light","Dark","String","Rumble","Magma","Human: Buddha","Sand","Bird: Phoenix"},function(value)
  5659. _G.SelectChip = value
  5660. end)
  5661.  
  5662. Dungeon:AddToggle("Auto Select Dungeon",_G.AutoSelectDungeon,function(value)
  5663. _G.AutoSelectDungeon = value
  5664. end)
  5665.  
  5666. spawn(function()
  5667. while wait() do
  5668. if _G.AutoSelectDungeon then
  5669. pcall(function()
  5670. if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Flame-Flame") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Flame-Flame") then
  5671. _G.SelectChip = "Flame"
  5672. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Ice-Ice") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Ice-Ice") then
  5673. _G.SelectChip = "Ice"
  5674. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Quake-Quake") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Quake-Quake") then
  5675. _G.SelectChip = "Quake"
  5676. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Light-Light") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Light-Light") then
  5677. _G.SelectChip = "Light"
  5678. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Dark-Dark") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Dark-Dark") then
  5679. _G.SelectChip = "Dark"
  5680. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("String-String") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("String-String") then
  5681. _G.SelectChip = "String"
  5682. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Rumble-Rumble") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Rumble-Rumble") then
  5683. _G.SelectChip = "Rumble"
  5684. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Magma-Magma") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Magma-Magma") then
  5685. _G.SelectChip = "Magma"
  5686. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Human-Human: Buddha Fruit") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Human-Human: Buddha Fruit") then
  5687. _G.SelectChip = "Human: Buddha"
  5688. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Sand-Sand") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Sand-Sand") then
  5689. _G.SelectChip = "Sand"
  5690. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Bird-Bird: Phoenix") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Bird-Bird: Phoenix") then
  5691. _G.SelectChip = "Bird: Phoenix"
  5692. else
  5693. _G.SelectChip = "Flame"
  5694. end
  5695. end)
  5696. end
  5697. end
  5698. end)
  5699.  
  5700. Dungeon:AddToggle("Auto Buy Chip",_G.AutoBuyChip,function(value)
  5701. _G.AutoBuyChip = value
  5702. end)
  5703.  
  5704. spawn(function()
  5705. pcall(function()
  5706. while wait() do
  5707. if _G.AutoBuyChip then
  5708. if not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Special Microchip") or not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Special Microchip") then
  5709. if not game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
  5710. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("RaidsNpc", "Select", _G.SelectChip)
  5711. end
  5712. end
  5713. end
  5714. end
  5715. end)
  5716. end)
  5717.  
  5718. Dungeon:AddButton("Buy Chip Select",function()
  5719. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("RaidsNpc","Select",_G.SelectChip)
  5720. end)
  5721.  
  5722. Dungeon:AddToggle("Auto Start Raid",_G.Auto_StartRaid,function(value)
  5723. _G.Auto_StartRaid = value
  5724. end)
  5725.  
  5726. spawn(function()
  5727. while wait(.1) do
  5728. pcall(function()
  5729. if _G.Auto_StartRaid then
  5730. if game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Timer.Visible == false then
  5731. 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
  5732. if World2 then
  5733. fireclickdetector(game:GetService("Workspace").Map.CircleIsland.RaidSummon2.Button.Main.ClickDetector)
  5734. elseif World3 then
  5735. fireclickdetector(game:GetService("Workspace").Map["Boat Castle"].RaidSummon2.Button.Main.ClickDetector)
  5736. end
  5737. end
  5738. end
  5739. end
  5740. end)
  5741. end
  5742. end)
  5743.  
  5744. Dungeon:AddButton("Start Raid",function()
  5745. if World2 then
  5746. fireclickdetector(game:GetService("Workspace").Map.CircleIsland.RaidSummon2.Button.Main.ClickDetector)
  5747. elseif World3 then
  5748. fireclickdetector(game:GetService("Workspace").Map["Boat Castle"].RaidSummon2.Button.Main.ClickDetector)
  5749. end
  5750. end)
  5751.  
  5752. Dungeon:AddLine()
  5753.  
  5754. Dungeon:AddButton("Next Island",function()
  5755. pcall(function()
  5756. if game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 5") then
  5757. TP(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 5").CFrame*CFrame.new(0,70,100))
  5758. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 4") then
  5759. TP(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 4").CFrame*CFrame.new(0,70,100))
  5760. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 3") then
  5761. TP(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 3").CFrame*CFrame.new(0,70,100))
  5762. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 2") then
  5763. TP(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 2").CFrame*CFrame.new(0,70,100))
  5764. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
  5765. TP(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1").CFrame*CFrame.new(0,70,100))
  5766. end
  5767. end)
  5768. end)
  5769.  
  5770. if World2 then
  5771. Dungeon:AddButton("Teleport to Lab",function()
  5772. TP(CFrame.new(-6438.73535, 250.645355, -4501.50684))
  5773. end)
  5774. elseif World3 then
  5775. Dungeon:AddButton("Teleport to Lab",function()
  5776. 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))
  5777. end)
  5778. end
  5779.  
  5780. if World2 then
  5781. Dungeon:AddButton("Awakening Room",function()
  5782. TP(CFrame.new(266.227783, 1.39509034, 1857.00732))
  5783. end)
  5784. elseif World3 then
  5785. Dungeon:AddButton("Awakening Room",function()
  5786. TP(CFrame.new(-11571.440429688, 49.172668457031, -7574.7368164062))
  5787. end)
  5788. end
  5789.  
  5790. DevilFruit:AddSeperator("Sniper")
  5791.  
  5792. FruitList = {
  5793. "Bomb-Bomb",
  5794. "Spike-Spike",
  5795. "Chop-Chop",
  5796. "Spring-Spring",
  5797. "Kilo-Kilo",
  5798. "Spin-Spin",
  5799. "Bird: Falcon",
  5800. "Smoke-Smoke",
  5801. "Flame-Flame",
  5802. "Ice-Ice",
  5803. "Sand-Sand",
  5804. "Dark-Dark",
  5805. "Revive-Revive",
  5806. "Diamond-Diamond",
  5807. "Light-Light",
  5808. "Love-Love",
  5809. "Rubber-Rubber",
  5810. "Barrier-Barrier",
  5811. "Magma-Magma",
  5812. "Door-Door",
  5813. "Quake-Quake",
  5814. "Human-Human: Buddha",
  5815. "String-String",
  5816. "Bird-Bird: Phoenix",
  5817. "Rumble-Rumble",
  5818. "Paw-Paw",
  5819. "Gravity-Gravity",
  5820. "Dough-Dough",
  5821. "Venom-Venom",
  5822. "Shadow-Shadow",
  5823. "Control-Control",
  5824. "Soul-Soul",
  5825. "Dragon-Dragon"
  5826. }
  5827.  
  5828. _G.SelectFruit = ""
  5829. DevilFruit:AddDropdown("Select Fruits Sniper",FruitList,function(value)
  5830. _G.SelectFruit = value
  5831. end)
  5832.  
  5833. DevilFruit:AddToggle("Auto Buy Fruit Sniper",_G.AutoBuyFruitSniper,function(value)
  5834. _G.AutoBuyFruitSniper = value
  5835. end)
  5836.  
  5837. DevilFruit:AddSeperator("Others")
  5838.  
  5839. DevilFruit:AddDropdown("Select Fruits Eat",FruitList,function(value)
  5840. _G.SelectFruitEat = value
  5841. end)
  5842.  
  5843. DevilFruit:AddToggle("Auto Eat Fruit",_G.AutoEatFruit,function(value)
  5844. _G.AutoEatFruit = value
  5845. end)
  5846.  
  5847. spawn(function()
  5848. pcall(function()
  5849. while wait(.1) do
  5850. if _G.AutoEatFruit then
  5851. game:GetService("Players").LocalPlayer.Character:FindFirstChild(_G.SelectFruitEat).EatRemote:InvokeServer()
  5852. end
  5853. end
  5854. end)
  5855. end)
  5856.  
  5857. DevilFruit:AddToggle("Auto Eat Fruit Hop",_G.AutoEatFruitHop,function(value)
  5858. _G.AutoEatFruitHop = value
  5859. end)
  5860.  
  5861. spawn(function()
  5862. pcall(function()
  5863. while wait(.1) do wait(10)
  5864. if _G.AutoEatFruitHop and _G.SelectFruitEat ~= nil then
  5865. if not game:GetService("Players").LocalPlayer.Character:FindFirstChild(_G.SelectFruitEat) or not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild(_G.SelectFruitEat) then
  5866. Hop()
  5867. else
  5868. game:GetService("Players").LocalPlayer.Character:FindFirstChild(_G.SelectFruitEat).EatRemote:InvokeServer()
  5869. end
  5870. end
  5871. end
  5872. end)
  5873. end)
  5874.  
  5875. spawn(function()
  5876. pcall(function()
  5877. while wait(.1) do
  5878. if _G.AutoBuyFruitSniper then
  5879. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("GetFruits")
  5880. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("PurchaseRawFruit",_G.SelectFruit)
  5881. end
  5882. end
  5883. end)
  5884. end)
  5885.  
  5886. DevilFruit:AddToggle("Auto Random Fruit",_G.Random_Auto,function(value)
  5887. _G.Random_Auto = value
  5888. end)
  5889.  
  5890. spawn(function()
  5891. pcall(function()
  5892. while wait(.1) do
  5893. if _G.Random_Auto then
  5894. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Cousin","Buy")
  5895. end
  5896. end
  5897. end)
  5898. end)
  5899.  
  5900. DevilFruit:AddButton("Random Fruit",function()
  5901. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Cousin","Buy")
  5902. end)
  5903.  
  5904.  
  5905. DevilFruit:AddToggle("Auto Drop Fruit",_G.DropFruit,function(value)
  5906. _G.DropFruit = value
  5907. end)
  5908.  
  5909. spawn(function()
  5910. while wait() do
  5911. if _G.DropFruit then
  5912. pcall(function()
  5913. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  5914. if string.find(v.Name, "Fruit") then
  5915. EquipWeapon(v.Name)
  5916. wait(.1)
  5917. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Dialogue.Visible == true then
  5918. game:GetService("Players").LocalPlayer.PlayerGui.Main.Dialogue.Visible = false
  5919. end
  5920. EquipWeapon(v.Name)
  5921. game:GetService("Players").LocalPlayer.Character:FindFirstChild(SelectFruit).EatRemote:InvokeServer("Drop")
  5922. end
  5923. end
  5924. for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetChildren()) do
  5925. if string.find(v.Name, "Fruit") then
  5926. EquipWeapon(v.Name)
  5927. wait(.1)
  5928. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Dialogue.Visible == true then
  5929. game:GetService("Players").LocalPlayer.PlayerGui.Main.Dialogue.Visible = false
  5930. end
  5931. EquipWeapon(v.Name)
  5932. game:GetService("Players").LocalPlayer.Character:FindFirstChild(SelectFruit).EatRemote:InvokeServer("Drop")
  5933. end
  5934. end
  5935. end)
  5936. end
  5937. end
  5938. end)
  5939.  
  5940. DevilFruit:AddToggle("Auto Store Fruit",_G.AutoStoreFruit,function(value)
  5941. _G.AutoStoreFruit = value
  5942. end)
  5943.  
  5944. spawn(function()
  5945. pcall(function()
  5946. while wait(.1) do
  5947. if _G.AutoStoreFruit then
  5948. for i,v in pairs(FruitList) do
  5949. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StoreFruit",v)
  5950. end
  5951. end
  5952. end
  5953. end)
  5954. end)
  5955.  
  5956.  
  5957. DevilFruit:AddToggle("Grab Fruit",_G.BringFruit,function(value)
  5958. _G.BringFruit = value
  5959. pcall(function()
  5960. while _G.BringFruit do wait(.1)
  5961. for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
  5962. if v:IsA("Tool") then
  5963. local OldCFrame = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame
  5964. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.Handle.CFrame * CFrame.new(0,0,8)
  5965. v.Handle.CFrame = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame
  5966. wait(.1)
  5967. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = OldCFrame
  5968. end
  5969. end
  5970. end
  5971. end)
  5972. end)
  5973.  
  5974. Shop:AddSeperator("Abilities")
  5975.  
  5976. Shop:AddButton("Buy Geppo",function()
  5977. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyHaki","Geppo")
  5978. end)
  5979.  
  5980. Shop:AddButton("Buy Buso Haki",function()
  5981. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyHaki","Buso")
  5982. end)
  5983.  
  5984. Shop:AddButton("Buy Soru",function()
  5985. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyHaki","Soru")
  5986. end)
  5987.  
  5988. Shop:AddButton("Buy Observation(Ken) Haki",function()
  5989. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("KenTalk","Buy")
  5990. end)
  5991.  
  5992. Shop:AddSeperator("Fighting Style")
  5993.  
  5994. Shop:AddButton("Buy Black Leg",function()
  5995. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyBlackLeg")
  5996. end)
  5997.  
  5998. Shop:AddButton("Buy Electro",function()
  5999. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectro")
  6000. end)
  6001.  
  6002. Shop:AddButton("Buy Fishman Karate",function()
  6003. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyFishmanKarate")
  6004. end)
  6005.  
  6006. Shop:AddButton("Buy Dragon Claw",function()
  6007. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","DragonClaw","1")
  6008. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","DragonClaw","2")
  6009. end)
  6010.  
  6011. Shop:AddButton("Buy Superhuman",function()
  6012. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySuperhuman")
  6013. end)
  6014.  
  6015. Shop:AddButton("Buy Death Step",function()
  6016. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDeathStep")
  6017. end)
  6018.  
  6019. Shop:AddButton("Buy Sharkman Karate",function()
  6020. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySharkmanKarate",true)
  6021. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySharkmanKarate")
  6022. end)
  6023.  
  6024. Shop:AddButton("Buy Electric Claw",function()
  6025. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw")
  6026. end)
  6027.  
  6028. Shop:AddButton("Buy Dragon Talon",function()
  6029. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDragonTalon")
  6030. end)
  6031. -----Shop----------------
  6032. Shop:AddSeperator("Accessory")
  6033.  
  6034. Shop:AddButton("Tomoe Ring",function()
  6035. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Tomoe Ring")
  6036. end)
  6037.  
  6038. Shop:AddButton("Black Cape",function()
  6039. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Black Cape")
  6040. end)
  6041.  
  6042. Shop:AddButton("Swordsman Hat",function()
  6043. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Swordsman Hat")
  6044. end)
  6045.  
  6046. Shop:AddSeperator("Sword")
  6047.  
  6048. Shop:AddButton("Cutlass",function()
  6049. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Cutlass")
  6050. end)
  6051.  
  6052. Shop:AddButton("Katana",function()
  6053. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Katana")
  6054. end)
  6055.  
  6056. Shop:AddButton("Iron Mace",function()
  6057. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Iron Mace")
  6058. end)
  6059.  
  6060. Shop:AddButton("Duel Katana",function()
  6061. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Duel Katana")
  6062. end)
  6063.  
  6064. Shop:AddButton("Triple Katana", function()
  6065. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Triple Katana")
  6066. end)
  6067.  
  6068. Shop:AddButton("Pipe",function()
  6069. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Pipe")
  6070. end)
  6071.  
  6072. Shop:AddButton("Dual Headed Blade",function()
  6073. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Dual-Headed Blade")
  6074. end)
  6075.  
  6076. Shop:AddButton("Bisento",function()
  6077. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Bisento")
  6078. end)
  6079.  
  6080. Shop:AddButton("Soul Cane",function()
  6081. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Soul Cane")
  6082. end)
  6083.  
  6084. Shop:AddSeperator("Gun")
  6085.  
  6086. Shop:AddButton("Slingshot",function()
  6087. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Slingshot")
  6088. end)
  6089.  
  6090. Shop:AddButton("Musket",function()
  6091. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Musket")
  6092. end)
  6093.  
  6094. Shop:AddButton("Flintlock",function()
  6095. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Flintlock")
  6096. end)
  6097.  
  6098. Shop:AddButton("Refined Flintlock",function()
  6099. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Refined Flintlock")
  6100. end)
  6101.  
  6102. Shop:AddButton("Cannon",function()
  6103. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Cannon")
  6104. end)
  6105.  
  6106. Shop:AddButton("Kabucha",function()
  6107. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","Slingshot","1")
  6108. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","Slingshot","2")
  6109. end)
  6110. ------------Bone------------------
  6111.  
  6112. Shop:AddSeperator("Bones")
  6113.  
  6114. Shop:AddButton("Buy Surprise",function()
  6115. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Bones","Buy",1,1)
  6116. end)
  6117.  
  6118. Shop:AddButton("Stat Refund",function()
  6119. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Bones","Buy",1,2)
  6120. end)
  6121.  
  6122. Shop:AddButton("Race Reroll",function()
  6123. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Bones","Buy",1,3)
  6124. end)
  6125.  
  6126. Misc:AddSeperator("Server")
  6127.  
  6128. Misc:AddButton("Rejoin Server",function()
  6129. game:GetService("TeleportService"):Teleport(game.PlaceId, game:GetService("Players").LocalPlayer)
  6130. end)
  6131.  
  6132. Misc:AddButton("Server Hop",function()
  6133. Hop()
  6134. end)
  6135.  
  6136. Misc:AddButton("Hop To Lower Player",function()
  6137. getgenv().AutoTeleport = true
  6138. getgenv().DontTeleportTheSameNumber = true
  6139. getgenv().CopytoClipboard = false
  6140. if not game:IsLoaded() then
  6141. print("Game is loading waiting...")
  6142. end
  6143. local maxplayers = math.huge
  6144. local serversmaxplayer;
  6145. local goodserver;
  6146. local gamelink = "https://games.roblox.com/v1/games/" .. game.PlaceId .. "/servers/Public?sortOrder=Asc&limit=100"
  6147. function serversearch()
  6148. for _, v in pairs(game:GetService("HttpService"):JSONDecode(game:HttpGetAsync(gamelink)).data) do
  6149. if type(v) == "table" and v.playing ~= nil and maxplayers > v.playing then
  6150. serversmaxplayer = v.maxPlayers
  6151. maxplayers = v.playing
  6152. goodserver = v.id
  6153. end
  6154. end
  6155. end
  6156. function getservers()
  6157. serversearch()
  6158. for i,v in pairs(game:GetService("HttpService"):JSONDecode(game:HttpGetAsync(gamelink))) do
  6159. if i == "nextPageCursor" then
  6160. if gamelink:find("&cursor=") then
  6161. local a = gamelink:find("&cursor=")
  6162. local b = gamelink:sub(a)
  6163. gamelink = gamelink:gsub(b, "")
  6164. end
  6165. gamelink = gamelink .. "&cursor=" ..v
  6166. getservers()
  6167. end
  6168. end
  6169. end
  6170. getservers()
  6171. if AutoTeleport then
  6172. if DontTeleportTheSameNumber then
  6173. if #game:GetService("Players"):GetPlayers() - 4 == maxplayers then
  6174. return warn("It has same number of players (except you)")
  6175. elseif goodserver == game.JobId then
  6176. return warn("Your current server is the most empty server atm")
  6177. end
  6178. end
  6179. game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, goodserver)
  6180. end
  6181. end)
  6182.  
  6183. Misc:AddSeperator("Ui")
  6184.  
  6185. Misc:AddButton("Open Devil Shop",function()
  6186. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("GetFruits")
  6187. game:GetService("Players").LocalPlayer.PlayerGui.Main.FruitShop.Visible = true
  6188. end)
  6189.  
  6190. Misc:AddButton("Open Inventory",function()
  6191. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getInventoryWeapons")
  6192. wait(1)
  6193. game:GetService("Players").LocalPlayer.PlayerGui.Main.Inventory.Visible = true
  6194. end)
  6195.  
  6196. Misc:AddButton("Open Inventory Fruit",function()
  6197. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getInventoryFruits")
  6198. game:GetService("Players").LocalPlayer.PlayerGui.Main.FruitInventory.Visible = true
  6199. end)
  6200.  
  6201. Misc:AddToggle("Highlight Mode",false,function(value)
  6202. if value == true then
  6203. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Beli.Visible = false
  6204. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.HP.Visible = false
  6205. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Energy.Visible = false
  6206. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.StatsButton.Visible = false
  6207. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.ShopButton.Visible = false
  6208. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Skills.Visible = false
  6209. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Level.Visible = false
  6210. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.MenuButton.Visible = false
  6211. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Code.Visible = false
  6212. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Settings.Visible = false
  6213. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Mute.Visible = false
  6214. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.CrewButton.Visible = false
  6215. else
  6216. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Beli.Visible = true
  6217. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.HP.Visible = true
  6218. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Energy.Visible = true
  6219. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.StatsButton.Visible = true
  6220. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.ShopButton.Visible = true
  6221. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Skills.Visible = true
  6222. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Level.Visible = true
  6223. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.MenuButton.Visible = true
  6224. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Code.Visible = true
  6225. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Settings.Visible = true
  6226. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Mute.Visible = true
  6227. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.CrewButton.Visible = true
  6228. end
  6229. end)
  6230.  
  6231. Misc:AddSeperator("Teams")
  6232.  
  6233. Misc:AddButton("Join Pirates Team",function()
  6234. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetTeam","Pirates")
  6235. end)
  6236.  
  6237. Misc:AddButton("Join Marines Team",function()
  6238. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetTeam","Marines")
  6239. end)
  6240.  
  6241. Misc:AddSeperator("Boost")
  6242.  
  6243. Misc:AddButton("Unlock Portal",function()
  6244. _G.UnlockPortal = true
  6245. end)
  6246.  
  6247. spawn(function()
  6248. while wait() do
  6249. pcall(function()
  6250. if _G.UnlockPortal == true then
  6251. for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.Notifications:GetChildren()) do
  6252. if v.Name == "NotificationTemplate" then
  6253. if string.find(v.Text,"cannot") then
  6254. v:Destroy()
  6255. end
  6256. end
  6257. end
  6258. end
  6259. end)
  6260. end
  6261. end)
  6262.  
  6263. spawn(function()
  6264. while wait() do
  6265. pcall(function()
  6266. if _G.UnlockPortal == true then
  6267. CastlePostoMansion = CFrame.new(-5084.8447265625, 316.48101806641, -3145.3752441406)
  6268. MansiontoCastlePos = CFrame.new(-12464.596679688, 376.30590820312, -7567.2626953125)
  6269. Castletophydra = CFrame.new(-5095.33984375, 316.48101806641, -3168.3134765625)
  6270. HydratoCastle = CFrame.new(5741.869140625, 611.94750976562, -282.61154174805)
  6271. if (CastlePostoMansion.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 8 then
  6272. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-12471.169921875, 374.94024658203, -7551.677734375))
  6273. end
  6274. if (MansiontoCastlePos.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 8 then
  6275. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-5072.08984375, 314.5412902832, -3151.1098632812))
  6276. end
  6277. if (Castletophydra.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 8 then
  6278. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(5748.7587890625, 610.44982910156, -267.81704711914))
  6279. end
  6280. if (HydratoCastle.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 8 then
  6281. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-5072.08984375, 314.5412902832, -3151.1098632812))
  6282. end
  6283. end
  6284. end)
  6285. end
  6286. end)
  6287.  
  6288. Misc:AddButton("Invisible",function()
  6289. game:GetService("Players").LocalPlayer.Character.LowerTorso:Destroy()
  6290. end)
  6291.  
  6292. Misc:AddButton("Click TP Tool",function()
  6293. local plr = game:GetService("Players").LocalPlayer
  6294. local mouse = plr:GetMouse()
  6295. local tool = Instance.new("Tool")
  6296. tool.RequiresHandle = false
  6297. tool.Name = "Teleport Tool"
  6298. tool.Activated:Connect(function()
  6299. local root = plr.Character.HumanoidRootPart
  6300. local pos = mouse.Hit.Position+Vector3.new(0,2.5,0)
  6301. local offset = pos-root.Position
  6302. root.CFrame = root.CFrame+offset
  6303. end)
  6304. tool.Parent = plr.Backpack
  6305. end)
  6306.  
  6307. Misc:AddButton("Stop All Tween",function()
  6308. topos(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame)
  6309. _G.Clip = false
  6310. end)
  6311.  
  6312. Misc:AddSeperator("Codes")
  6313.  
  6314. local x2Code = {
  6315. "3BVISITS",
  6316. "UPD16",
  6317. "FUDD10",
  6318. "BIGNEWS",
  6319. "THEGREATACE",
  6320. "SUB2GAMERROBOT_EXP1",
  6321. "StrawHatMaine",
  6322. "Sub2OfficialNoobie",
  6323. "SUB2NOOBMASTER123",
  6324. "Sub2Daigrock",
  6325. "Axiore",
  6326. "TantaiGaming",
  6327. "STRAWHATMAINE"
  6328. }
  6329.  
  6330. Misc:AddButton("Redeem All Codes",function()
  6331. function RedeemCode(value)
  6332. game:GetService("ReplicatedStorage").Remotes.Redeem:InvokeServer(value)
  6333. end
  6334. for i,v in pairs(x2Code) do
  6335. RedeemCode(v)
  6336. end
  6337. end)
  6338.  
  6339. Misc:AddDropdown("Selected Codes",{"1MLIKES_RESET","THIRDSEA","SUB2GAMERROBOT_RESET1","SUB2UNCLEKIZARU"},function(value)
  6340. _G.CodeSelect = value
  6341. end)
  6342.  
  6343. Misc:AddButton("Redeem Code",function()
  6344. game:GetService("ReplicatedStorage").Remotes.Redeem:InvokeServer(_G.CodeSelect)
  6345. end)
  6346.  
  6347. Misc:AddSeperator("State")
  6348.  
  6349. Misc:AddDropdown("Select Haki State",{"State 0","State 1","State 2","State 3","State 4","State 5"},function(value)
  6350. _G.SelectStateHaki = value
  6351. end)
  6352.  
  6353. Misc:AddButton("Change Buso Haki State",function()
  6354. if _G.SelectStateHaki == "State 0" then
  6355. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ChangeBusoStage",0)
  6356. elseif _G.SelectStateHaki == "State 1" then
  6357. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ChangeBusoStage",1)
  6358. elseif _G.SelectStateHaki == "State 2" then
  6359. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ChangeBusoStage",2)
  6360. elseif _G.SelectStateHaki == "State 3" then
  6361. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ChangeBusoStage",3)
  6362. elseif _G.SelectStateHaki == "State 4" then
  6363. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ChangeBusoStage",4)
  6364. elseif _G.SelectStateHaki == "State 5" then
  6365. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ChangeBusoStage",5)
  6366. end
  6367. end)
  6368.  
  6369. Misc:AddSeperator("Graphic")
  6370.  
  6371. local a = game.Lighting
  6372. local c = Instance.new("ColorCorrectionEffect", a)
  6373. local e = Instance.new("ColorCorrectionEffect", a)
  6374. OldAmbient = a.Ambient
  6375. OldBrightness = a.Brightness
  6376. OldColorShift_Top = a.ColorShift_Top
  6377. OldBrightnessc = c.Brightness
  6378. OldContrastc = c.Contrast
  6379. OldTintColorc = c.TintColor
  6380. OldTintColore = e.TintColor
  6381. Misc:AddToggle("RTX Mode",_G.RTXMode,function(value)
  6382. _G.RTXMode = value
  6383. if not _G.RTXMode then return end
  6384. while _G.RTXMode do wait()
  6385. a.Ambient = Color3.fromRGB(33, 33, 33)
  6386. a.Brightness = 0.3
  6387. c.Brightness = 0.176
  6388. c.Contrast = 0.39
  6389. c.TintColor = Color3.fromRGB(217, 145, 57)
  6390. game.Lighting.FogEnd = 999
  6391. if not game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("PointLight") then
  6392. local a2 = Instance.new("PointLight")
  6393. a2.Parent = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  6394. a2.Range = 15
  6395. a2.Color = Color3.fromRGB(217, 145, 57)
  6396. end
  6397. if not _G.RTXMode then
  6398. a.Ambient = OldAmbient
  6399. a.Brightness = OldBrightness
  6400. a.ColorShift_Top = OldColorShift_Top
  6401. c.Contrast = OldContrastc
  6402. c.Brightness = OldBrightnessc
  6403. c.TintColor = OldTintColorc
  6404. e.TintColor = OldTintColore
  6405. game.Lighting.FogEnd = 2500
  6406. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("PointLight"):Destroy()
  6407. end
  6408. end
  6409. end)
  6410.  
  6411. Misc:AddButton("FPS Boost",function()
  6412. pcall(function()
  6413. game:GetService("Lighting").FantasySky:Destroy()
  6414. local g = game
  6415. local w = g.Workspace
  6416. local l = g.Lighting
  6417. local t = w.Terrain
  6418. t.WaterWaveSize = 0
  6419. t.WaterWaveSpeed = 0
  6420. t.WaterReflectance = 0
  6421. t.WaterTransparency = 0
  6422. l.GlobalShadows = false
  6423. l.FogEnd = 9e9
  6424. l.Brightness = 0
  6425. settings().Rendering.QualityLevel = "Level01"
  6426. for i, v in pairs(g:GetDescendants()) do
  6427. if v:IsA("Part") or v:IsA("Union") or v:IsA("CornerWedgePart") or v:IsA("TrussPart") then
  6428. v.Material = "Plastic"
  6429. v.Reflectance = 0
  6430. elseif v:IsA("Decal") or v:IsA("Texture") then
  6431. v.Transparency = 1
  6432. elseif v:IsA("ParticleEmitter") or v:IsA("Trail") then
  6433. v.Lifetime = NumberRange.new(0)
  6434. elseif v:IsA("Explosion") then
  6435. v.BlastPressure = 1
  6436. v.BlastRadius = 1
  6437. elseif v:IsA("Fire") or v:IsA("SpotLight") or v:IsA("Smoke") or v:IsA("Sparkles") then
  6438. v.Enabled = false
  6439. elseif v:IsA("MeshPart") then
  6440. v.Material = "Plastic"
  6441. v.Reflectance = 0
  6442. v.TextureID = 10385902758728957
  6443. end
  6444. end
  6445. for i, e in pairs(l:GetChildren()) do
  6446. if e:IsA("BlurEffect") or e:IsA("SunRaysEffect") or e:IsA("ColorCorrectionEffect") or e:IsA("BloomEffect") or e:IsA("DepthOfFieldEffect") then
  6447. e.Enabled = false
  6448. end
  6449. end
  6450. for i, v in pairs(game:GetService("Workspace").Camera:GetDescendants()) do
  6451. if v.Name == ("Water;") then
  6452. v.Transparency = 1
  6453. v.Material = "Plastic"
  6454. end
  6455. end
  6456. end)
  6457. end)
  6458.  
  6459. Misc:AddToggle("Remove Fog",RemoveFog,function(value)
  6460. RemoveFog = value
  6461. if not RemoveFog then return end
  6462. while RemoveFog do wait()
  6463. game.Lighting.FogEnd = 9e9
  6464. if not RemoveFog then
  6465. game.Lighting.FogEnd = 2500
  6466. end
  6467. end
  6468. end)
  6469.  
  6470. Misc:AddButton("Unlock FPS",function()
  6471. setfpscap(100)
  6472. end)
  6473.  
  6474. Misc:AddSeperator("ESP")
  6475.  
  6476. Misc:AddToggle("ESP Player",false,function(value)
  6477. ESPPlayer = value
  6478. while ESPPlayer do wait()
  6479. UpdateEspPlayer()
  6480. end
  6481. end)
  6482.  
  6483. Misc:AddToggle("ESP Chest",false,function(value)
  6484. ChestESP = value
  6485. while ChestESP do wait()
  6486. UpdateChestEsp()
  6487. end
  6488. end)
  6489.  
  6490. Misc:AddToggle("ESP Fruit",false,function(value)
  6491. DevilFruitESP = value
  6492. while DevilFruitESP do wait()
  6493. UpdateBfEsp()
  6494. end
  6495. end)
  6496.  
  6497. Misc:AddToggle("ESP Flower",false,function(value)
  6498. FlowerESP = value
  6499. while FlowerESP do wait()
  6500. UpdateFlowerEsp()
  6501. end
  6502. end)
  6503.  
  6504. Misc:AddToggle("ESP Island",IslandESP,function(value)
  6505. IslandESP = value
  6506. while IslandESP do wait()
  6507. UpdateIslandESP()
  6508. end
  6509. end)
  6510.  
  6511. Misc:AddSeperator("Abilities")
  6512.  
  6513. Misc:AddToggle("Dodge No Cooldown",false,function(value)
  6514. nododgecool = value
  6515. NoDodgeCool()
  6516. end)
  6517.  
  6518. Misc:AddToggle("Infinite Energy",false,function(value)
  6519. InfiniteEnergy = value
  6520. originalstam = LocalPlayer.Character.Energy.Value
  6521. end)
  6522.  
  6523. Misc:AddToggle("Auto Active Race",_G.AutoAgility,function(value)
  6524. _G.AutoAgility = value
  6525. end)
  6526.  
  6527. spawn(function()
  6528. pcall(function()
  6529. while wait() do
  6530. if _G.AutoAgility then
  6531. game:GetService("ReplicatedStorage").Remotes.CommE:FireServer("ActivateAbility")
  6532. end
  6533. end
  6534. end)
  6535. end)
  6536.  
  6537. Misc:AddToggle("Infinite Ability",false,function(value)
  6538. InfAbility = value
  6539. if value == false then
  6540. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("Agility"):Destroy()
  6541. end
  6542. end)
  6543.  
  6544. spawn(function()
  6545. while wait() do
  6546. if InfAbility then
  6547. InfAb()
  6548. end
  6549. end
  6550. end)
  6551.  
  6552. Misc:AddToggle("Infinite Obversation Range",getgenv().InfiniteObRange,function(value)
  6553. getgenv().InfiniteObRange = value
  6554. local VS = game:GetService("Players").LocalPlayer.VisionRadius.Value
  6555. while getgenv().InfiniteObRange do
  6556. wait()
  6557. local player = game:GetService("Players").LocalPlayer
  6558. local char = player.Character
  6559. local VisionRadius = player.VisionRadius
  6560. if player then
  6561. if char.Humanoid.Health <= 0 then
  6562. wait(5)
  6563. end
  6564. VisionRadius.Value = math.huge
  6565. elseif getgenv().InfiniteObRange == false and player then
  6566. VisionRadius.Value = VS
  6567. end
  6568. end
  6569. end)
  6570.  
  6571. Misc:AddToggle("Infinite Geppo",getgenv().InfGeppo,function(value)
  6572. getgenv().InfGeppo = value
  6573. end)
  6574.  
  6575. spawn(function()
  6576. while wait() do
  6577. pcall(function()
  6578. if getgenv().InfGeppo then
  6579. for i,v in next, getgc() do
  6580. if game:GetService("Players").LocalPlayer.Character.Geppo then
  6581. if typeof(v) == "function" and getfenv(v).script == game:GetService("Players").LocalPlayer.Character.Geppo then
  6582. for i2,v2 in next, getupvalues(v) do
  6583. if tostring(i2) == "9" then
  6584. repeat wait(.1)
  6585. setupvalue(v,i2,0)
  6586. until not getgenv().InfGeppo or game:GetService("Players").LocalPlayer.Character.Humanoid.Health <= 0
  6587. end
  6588. end
  6589. end
  6590. end
  6591. end
  6592. end
  6593. end)
  6594. end
  6595. end)
  6596.  
  6597. Misc:AddToggle("Infinite Soru",getgenv().InfSoru,function(value)
  6598. getgenv().InfSoru = value
  6599. end)
  6600.  
  6601. spawn(function()
  6602. while wait() do
  6603. pcall(function()
  6604. if getgenv().InfSoru and game:GetService("Players").LocalPlayer.Character:FindFirstChild("HumanoidRootPart") ~= nil then
  6605. for i,v in next, getgc() do
  6606. if game:GetService("Players").LocalPlayer.Character.Soru then
  6607. if typeof(v) == "function" and getfenv(v).script == game:GetService("Players").LocalPlayer.Character.Soru then
  6608. for i2,v2 in next, getupvalues(v) do
  6609. if typeof(v2) == "table" then
  6610. repeat wait(.1)
  6611. v2.LastUse = 0
  6612. until not getgenv().InfSoru or game:GetService("Players").LocalPlayer.Character.Humanoid.Health <= 0
  6613. end
  6614. end
  6615. end
  6616. end
  6617. end
  6618. end
  6619. end)
  6620. end
  6621. end)
  6622.  
  6623. Misc:AddToggle("Walk on Water",_G.WalkWater,function(value)
  6624. _G.WalkWater = value
  6625. end)
  6626.  
  6627. spawn(function()
  6628. pcall(function()
  6629. while wait() do
  6630. if _G.WalkWater then
  6631. if game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame.Y <= 1 then
  6632. if not game:GetService("Workspace"):FindFirstChild("Water") then
  6633. local Water = Instance.new("Part", game:GetService("Workspace"))
  6634. Water.Name = "Water"
  6635. Water.Size = Vector3.new(15,0.5,15)
  6636. Water.Anchored = true
  6637. Water.Material = "Neon"
  6638. Water.Color = _G.Color
  6639. 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)
  6640. else
  6641. 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)
  6642. end
  6643. elseif game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame.Y >= 1 and game:GetService("Workspace"):FindFirstChild("Water") then
  6644. game:GetService("Workspace"):FindFirstChild("Water"):Destroy()
  6645. end
  6646. else
  6647. if game:GetService("Workspace"):FindFirstChild("Water") then
  6648. game:GetService("Workspace"):FindFirstChild("Water"):Destroy()
  6649. end
  6650. end
  6651. end
  6652. end)
  6653. end)
  6654.  
  6655. Misc:AddToggle("Fly",false,function(value)
  6656. Fly = value
  6657. end)
  6658.  
  6659. spawn(function()
  6660. while wait() do
  6661. pcall(function()
  6662. if Fly then
  6663. fly()
  6664. end
  6665. end)
  6666. end
  6667. end)
  6668. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement