Advertisement
Domadicoof-28363

Untitled

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