Advertisement
Domadicoof-28363

Untitled

Mar 7th, 2023 (edited)
368
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 440.47 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 = "http://www.roblox.com/asset/?id=12523036534"
  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(7, 236, 240)
  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(255, 255, 255)
  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 = " Blox Fruit | Free Script "
  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 CheckQuest()
  1049. MyLevel = game:GetService("Players").LocalPlayer.Data.Level.Value
  1050. if World1 then
  1051. if MyLevel == 1 or MyLevel <= 9 then
  1052. Mon = "Bandit [Lv. 5]"
  1053. LevelQuest = 1
  1054. NameQuest = "BanditQuest1"
  1055. NameMon = "Bandit"
  1056. CFrameQuest = CFrame.new(1045.962646484375, 27.00250816345215, 1560.8203125)
  1057. elseif MyLevel == 10 or MyLevel <= 14 then
  1058. Mon = "Monkey [Lv. 14]"
  1059. LevelQuest = 1
  1060. NameQuest = "JungleQuest"
  1061. NameMon = "Monkey"
  1062. CFrameQuest = CFrame.new(-1448.51806640625, 67.85301208496094, 11.46579647064209)
  1063. elseif MyLevel == 15 or MyLevel <= 29 then
  1064. Mon = "Gorilla [Lv. 20]"
  1065. LevelQuest = 2
  1066. NameQuest = "JungleQuest"
  1067. NameMon = "Gorilla"
  1068. CFrameQuest = CFrame.new(-1129.8836669921875, 40.46354675292969, -525.4237060546875)
  1069. elseif MyLevel == 30 or MyLevel <= 39 then
  1070. Mon = "Pirate [Lv. 35]"
  1071. LevelQuest = 1
  1072. NameQuest = "BuggyQuest1"
  1073. NameMon = "Pirate"
  1074. CFrameQuest = CFrame.new(-1103.513427734375, 13.752052307128906, 3896.091064453125)
  1075. elseif MyLevel == 40 or MyLevel <= 59 then
  1076. Mon = "Brute [Lv. 45]"
  1077. LevelQuest = 2
  1078. NameQuest = "BuggyQuest1"
  1079. NameMon = "Brute"
  1080. CFrameQuest = CFrame.new(-1140.083740234375, 14.809885025024414, 4322.92138671875)
  1081. elseif MyLevel == 60 or MyLevel <= 74 then
  1082. Mon = "Desert Bandit [Lv. 60]"
  1083. LevelQuest = 1
  1084. NameQuest = "DesertQuest"
  1085. NameMon = "Desert Bandit"
  1086. CFrameQuest = CFrame.new(924.7998046875, 6.44867467880249, 4481.5859375)
  1087. elseif MyLevel == 75 or MyLevel <= 89 then
  1088. Mon = "Desert Officer [Lv. 70]"
  1089. LevelQuest = 2
  1090. NameQuest = "DesertQuest"
  1091. NameMon = "Desert Officer"
  1092. CFrameQuest = CFrame.new(1608.2822265625, 8.614224433898926, 4371.00732421875)
  1093. elseif MyLevel == 90 or MyLevel <= 99 then
  1094. Mon = "Snow Bandit [Lv. 90]"
  1095. LevelQuest = 1
  1096. NameQuest = "SnowQuest"
  1097. NameMon = "Snow Bandit"
  1098. CFrameQuest = CFrame.new(1354.347900390625, 87.27277374267578, -1393.946533203125)
  1099. elseif MyLevel == 100 or MyLevel <= 119 then
  1100. Mon = "Snowman [Lv. 100]"
  1101. LevelQuest = 2
  1102. NameQuest = "SnowQuest"
  1103. NameMon = "Snowman"
  1104. CFrameQuest = CFrame.new(1201.6412353515625, 144.57958984375, -1550.0670166015625)
  1105. elseif MyLevel == 120 or MyLevel <= 149 then
  1106. Mon = "Chief Petty Officer [Lv. 120]"
  1107. LevelQuest = 1
  1108. NameQuest = "MarineQuest2"
  1109. NameMon = "Chief Petty Officer"
  1110. CFrameQuest = CFrame.new(-4881.23095703125, 22.65204429626465, 4273.75244140625)
  1111. elseif MyLevel == 150 or MyLevel <= 174 then
  1112. Mon = "Sky Bandit [Lv. 150]"
  1113. LevelQuest = 1
  1114. NameQuest = "SkyQuest"
  1115. NameMon = "Sky Bandit"
  1116. CFrameQuest = CFrame.new(-4953.20703125, 295.74420166015625, -2899.22900390625)
  1117. elseif MyLevel == 175 or MyLevel <= 189 then
  1118. Mon = "Dark Master [Lv. 175]"
  1119. LevelQuest = 2
  1120. NameQuest = "SkyQuest"
  1121. NameMon = "Dark Master"
  1122. CFrameQuest = CFrame.new(-5259.8447265625, 391.3976745605469, -2229.035400390625)
  1123. elseif MyLevel == 190 or MyLevel <= 209 then
  1124. Mon = "Prisoner [Lv. 190]"
  1125. LevelQuest = 1
  1126. NameQuest = "PrisonerQuest"
  1127. NameMon = "Prisoner"
  1128. CFrameQuest = CFrame.new(5098.9736328125, -0.3204058110713959, 474.2373352050781)
  1129. elseif MyLevel == 210 or MyLevel <= 249 then
  1130. Mon = "Dangerous Prisoner [Lv. 210]"
  1131. LevelQuest = 2
  1132. NameQuest = "PrisonerQuest"
  1133. NameMon = "Dangerous Prisoner"
  1134. CFrameQuest = CFrame.new(5654.5634765625, 15.633401870727539, 866.2991943359375)
  1135. elseif MyLevel == 250 or MyLevel <= 274 then
  1136. Mon = "Toga Warrior [Lv. 250]"
  1137. LevelQuest = 1
  1138. NameQuest = "ColosseumQuest"
  1139. NameMon = "Toga Warrior"
  1140. CFrameQuest = CFrame.new(-1820.21484375, 51.68385696411133, -2740.6650390625)
  1141. elseif MyLevel == 275 or MyLevel <= 299 then
  1142. Mon = "Gladiator [Lv. 275]"
  1143. LevelQuest = 2
  1144. NameQuest = "ColosseumQuest"
  1145. NameMon = "Gladiator"
  1146. CFrameQuest = CFrame.new(-1292.838134765625, 56.380882263183594, -3339.031494140625)
  1147. elseif MyLevel == 300 or MyLevel <= 324 then
  1148. Mon = "Military Soldier [Lv. 300]"
  1149. LevelQuest = 1
  1150. NameQuest = "MagmaQuest"
  1151. NameMon = "Military Soldier"
  1152. CFrameQuest = CFrame.new(-5411.16455078125, 11.081554412841797, 8454.29296875)
  1153. elseif MyLevel == 325 or MyLevel <= 374 then
  1154. Mon = "Military Spy [Lv. 325]"
  1155. LevelQuest = 2
  1156. NameQuest = "MagmaQuest"
  1157. NameMon = "Military Spy"
  1158. CFrameQuest = CFrame.new(-5802.8681640625, 86.26241302490234, 8828.859375)
  1159. elseif MyLevel == 375 or MyLevel <= 399 then
  1160. Mon = "Fishman Warrior [Lv. 375]"
  1161. LevelQuest = 1
  1162. NameQuest = "FishmanQuest"
  1163. NameMon = "Fishman Warrior"
  1164. CFrameQuest = CFrame.new(60878.30078125, 18.482830047607422, 1543.7574462890625)
  1165. if _G.AutoFarm and (CFrameQuest.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 10000 then
  1166. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(61163.8515625, 11.6796875, 1819.7841796875))
  1167. end
  1168. elseif MyLevel == 400 or MyLevel <= 449 then
  1169. Mon = "Fishman Commando [Lv. 400]"
  1170. LevelQuest = 2
  1171. NameQuest = "FishmanQuest"
  1172. NameMon = "Fishman Commando"
  1173. CFrameQuest = CFrame.new(61922.6328125, 18.482830047607422, 1493.934326171875)
  1174. if _G.AutoFarm and (CFrameQuest.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 10000 then
  1175. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(61163.8515625, 11.6796875, 1819.7841796875))
  1176. end
  1177. elseif MyLevel == 450 or MyLevel <= 474 then
  1178. Mon = "God's Guard [Lv. 450]"
  1179. LevelQuest = 1
  1180. NameQuest = "SkyExp1Quest"
  1181. NameMon = "God's Guard"
  1182. CFrameQuest = CFrame.new(-4710.04296875, 845.2769775390625, -1927.3079833984375)
  1183. if _G.AutoFarm and (CFrameQuest.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 10000 then
  1184. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-4607.82275, 872.54248, -1667.55688))
  1185. end
  1186. elseif MyLevel == 475 or MyLevel <= 524 then
  1187. Mon = "Shanda [Lv. 475]"
  1188. LevelQuest = 2
  1189. NameQuest = "SkyExp1Quest"
  1190. NameMon = "Shanda"
  1191. CFrameQuest = CFrame.new(-7678.48974609375, 5566.40380859375, -497.2156066894531)
  1192. if _G.AutoFarm and (CFrameQuest.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 10000 then
  1193. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-7894.6176757813, 5547.1416015625, -380.29119873047))
  1194. end
  1195. elseif MyLevel == 525 or MyLevel <= 549 then
  1196. Mon = "Royal Squad [Lv. 525]"
  1197. LevelQuest = 1
  1198. NameQuest = "SkyExp2Quest"
  1199. NameMon = "Royal Squad"
  1200. CFrameQuest = CFrame.new(-7624.25244140625, 5658.13330078125, -1467.354248046875)
  1201. elseif MyLevel == 550 or MyLevel <= 624 then
  1202. Mon = "Royal Soldier [Lv. 550]"
  1203. LevelQuest = 2
  1204. NameQuest = "SkyExp2Quest"
  1205. NameMon = "Royal Soldier"
  1206. CFrameQuest = CFrame.new(-7836.75341796875, 5645.6640625, -1790.6236572265625)
  1207. elseif MyLevel == 625 or MyLevel <= 649 then
  1208. Mon = "Galley Pirate [Lv. 625]"
  1209. LevelQuest = 1
  1210. NameQuest = "FountainQuest"
  1211. NameMon = "Galley Pirate"
  1212. CFrameQuest = CFrame.new(5551.02197265625, 78.90135192871094, 3930.412841796875)
  1213. elseif MyLevel >= 650 then
  1214. Mon = "Galley Captain [Lv. 650]"
  1215. LevelQuest = 2
  1216. NameQuest = "FountainQuest"
  1217. NameMon = "Galley Captain"
  1218. CFrameQuest = CFrame.new(5441.95166015625, 42.50205993652344, 4950.09375)
  1219. end
  1220. elseif World2 then
  1221. if MyLevel == 700 or MyLevel <= 724 then
  1222. Mon = "Raider [Lv. 700]"
  1223. LevelQuest = 1
  1224. NameQuest = "Area1Quest"
  1225. NameMon = "Raider"
  1226. CFrameQuest = CFrame.new(-728.3267211914062, 52.779319763183594, 2345.7705078125)
  1227. elseif MyLevel == 725 or MyLevel <= 774 then
  1228. Mon = "Mercenary [Lv. 725]"
  1229. LevelQuest = 2
  1230. NameQuest = "Area1Quest"
  1231. NameMon = "Mercenary"
  1232. CFrameQuest = CFrame.new(-1004.3244018554688, 80.15886688232422, 1424.619384765625)
  1233. elseif MyLevel == 775 or MyLevel <= 799 then
  1234. Mon = "Swan Pirate [Lv. 775]"
  1235. LevelQuest = 1
  1236. NameQuest = "Area2Quest"
  1237. NameMon = "Swan Pirate"
  1238. CFrameQuest = CFrame.new(1068.664306640625, 137.61428833007812, 1322.1060791015625)
  1239. elseif MyLevel == 800 or MyLevel <= 874 then
  1240. Mon = "Factory Staff [Lv. 800]"
  1241. NameQuest = "Area2Quest"
  1242. LevelQuest = 2
  1243. NameMon = "Factory Staff"
  1244. CFrameQuest = CFrame.new(73.07867431640625, 81.86344146728516, -27.470672607421875)
  1245. elseif MyLevel == 875 or MyLevel <= 899 then
  1246. Mon = "Marine Lieutenant [Lv. 875]"
  1247. LevelQuest = 1
  1248. NameQuest = "MarineQuest3"
  1249. NameMon = "Marine Lieutenant"
  1250. CFrameQuest = CFrame.new(-2821.372314453125, 75.89727783203125, -3070.089111328125)
  1251. elseif MyLevel == 900 or MyLevel <= 949 then
  1252. Mon = "Marine Captain [Lv. 900]"
  1253. LevelQuest = 2
  1254. NameQuest = "MarineQuest3"
  1255. NameMon = "Marine Captain"
  1256. CFrameQuest = CFrame.new(-1861.2310791015625, 80.17658233642578, -3254.697509765625)
  1257. elseif MyLevel == 950 or MyLevel <= 974 then
  1258. Mon = "Zombie [Lv. 950]"
  1259. LevelQuest = 1
  1260. NameQuest = "ZombieQuest"
  1261. NameMon = "Zombie"
  1262. CFrameQuest = CFrame.new(-5657.77685546875, 78.96973419189453, -928.68701171875)
  1263. elseif MyLevel == 975 or MyLevel <= 999 then
  1264. Mon = "Vampire [Lv. 975]"
  1265. LevelQuest = 2
  1266. NameQuest = "ZombieQuest"
  1267. NameMon = "Vampire"
  1268. CFrameQuest = CFrame.new(-6037.66796875, 32.18463897705078, -1340.6597900390625)
  1269. elseif MyLevel == 1000 or MyLevel <= 1049 then
  1270. Mon = "Snow Trooper [Lv. 1000]"
  1271. LevelQuest = 1
  1272. NameQuest = "SnowMountainQuest"
  1273. NameMon = "Snow Trooper"
  1274. CFrameQuest = CFrame.new(549.1473388671875, 427.3870544433594, -5563.69873046875)
  1275. elseif MyLevel == 1050 or MyLevel <= 1099 then
  1276. Mon = "Winter Warrior [Lv. 1050]"
  1277. LevelQuest = 2
  1278. NameQuest = "SnowMountainQuest"
  1279. NameMon = "Winter Warrior"
  1280. CFrameQuest = CFrame.new(1142.7451171875, 475.6398010253906, -5199.41650390625)
  1281. elseif MyLevel == 1100 or MyLevel <= 1124 then
  1282. Mon = "Lab Subordinate [Lv. 1100]"
  1283. LevelQuest = 1
  1284. NameQuest = "IceSideQuest"
  1285. NameMon = "Lab Subordinate"
  1286. CFrameQuest = CFrame.new(-5707.4716796875, 15.951709747314453, -4513.39208984375)
  1287. elseif MyLevel == 1125 or MyLevel <= 1174 then
  1288. Mon = "Horned Warrior [Lv. 1125]"
  1289. LevelQuest = 2
  1290. NameQuest = "IceSideQuest"
  1291. NameMon = "Horned Warrior"
  1292. CFrameQuest = CFrame.new(-6341.36669921875, 15.951770782470703, -5723.162109375)
  1293. elseif MyLevel == 1175 or MyLevel <= 1199 then
  1294. Mon = "Magma Ninja [Lv. 1175]"
  1295. LevelQuest = 1
  1296. NameQuest = "FireSideQuest"
  1297. NameMon = "Magma Ninja"
  1298. CFrameQuest = CFrame.new(-5449.6728515625, 76.65874481201172, -5808.20068359375)
  1299. elseif MyLevel == 1200 or MyLevel <= 1249 then
  1300. Mon = "Lava Pirate [Lv. 1200]"
  1301. LevelQuest = 2
  1302. NameQuest = "FireSideQuest"
  1303. NameMon = "Lava Pirate"
  1304. CFrameQuest = CFrame.new(-5213.33154296875, 49.73788070678711, -4701.451171875)
  1305. elseif MyLevel == 1250 or MyLevel <= 1274 then
  1306. Mon = "Ship Deckhand [Lv. 1250]"
  1307. LevelQuest = 1
  1308. NameQuest = "ShipQuest1"
  1309. NameMon = "Ship Deckhand"
  1310. CFrameQuest = CFrame.new(1212.0111083984375, 150.79205322265625, 33059.24609375)
  1311. if _G.AutoFarm and (CFrameQuest.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 10000 then
  1312. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(923.21252441406, 126.9760055542, 32852.83203125))
  1313. end
  1314. elseif MyLevel == 1275 or MyLevel <= 1299 then
  1315. Mon = "Ship Engineer [Lv. 1275]"
  1316. LevelQuest = 2
  1317. NameQuest = "ShipQuest1"
  1318. NameMon = "Ship Engineer"
  1319. CFrameQuest = CFrame.new(919.4786376953125, 43.54401397705078, 32779.96875)
  1320. if _G.AutoFarm and (CFrameQuest.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 10000 then
  1321. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(923.21252441406, 126.9760055542, 32852.83203125))
  1322. end
  1323. elseif MyLevel == 1300 or MyLevel <= 1324 then
  1324. Mon = "Ship Steward [Lv. 1300]"
  1325. LevelQuest = 1
  1326. NameQuest = "ShipQuest2"
  1327. NameMon = "Ship Steward"
  1328. CFrameQuest = CFrame.new(919.4385375976562, 129.55599975585938, 33436.03515625)
  1329. if _G.AutoFarm and (CFrameQuest.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 10000 then
  1330. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(923.21252441406, 126.9760055542, 32852.83203125))
  1331. end
  1332. elseif MyLevel == 1325 or MyLevel <= 1349 then
  1333. Mon = "Ship Officer [Lv. 1325]"
  1334. LevelQuest = 2
  1335. NameQuest = "ShipQuest2"
  1336. NameMon = "Ship Officer"
  1337. CFrameQuest = CFrame.new(1036.0179443359375, 181.4390411376953, 33315.7265625)
  1338. if _G.AutoFarm and (CFrameQuest.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 10000 then
  1339. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(923.21252441406, 126.9760055542, 32852.83203125))
  1340. end
  1341. elseif MyLevel == 1350 or MyLevel <= 1374 then
  1342. Mon = "Arctic Warrior [Lv. 1350]"
  1343. LevelQuest = 1
  1344. NameQuest = "FrostQuest"
  1345. NameMon = "Arctic Warrior"
  1346. CFrameQuest = CFrame.new(1036.0179443359375, 181.4390411376953, 33315.7265625)
  1347. if _G.AutoFarm and (CFrameQuest.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 10000 then
  1348. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-6508.5581054688, 5000.034996032715, -132.83953857422))
  1349. end
  1350. elseif MyLevel == 1375 or MyLevel <= 1424 then
  1351. Mon = "Snow Lurker [Lv. 1375]"
  1352. LevelQuest = 2
  1353. NameQuest = "FrostQuest"
  1354. NameMon = "Snow Lurker"
  1355. CFrameQuest = CFrame.new(1036.0179443359375, 181.4390411376953, 33315.7265625)
  1356. elseif MyLevel == 1425 or MyLevel <= 1449 then
  1357. Mon = "Sea Soldier [Lv. 1425]"
  1358. LevelQuest = 1
  1359. NameQuest = "ForgottenQuest"
  1360. NameMon = "Sea Soldier"
  1361. CFrameQuest = CFrame.new(-3028.2236328125, 64.67451477050781, -9775.4267578125)
  1362. elseif MyLevel >= 1450 then
  1363. Mon = "Water Fighter [Lv. 1450]"
  1364. LevelQuest = 2
  1365. NameQuest = "ForgottenQuest"
  1366. NameMon = "Water Fighter"
  1367. CFrameQuest = CFrame.new(-3352.9013671875, 285.01556396484375, -10534.841796875)
  1368. end
  1369. elseif World3 then
  1370. if MyLevel == 1500 or MyLevel <= 1524 then
  1371. Mon = "Pirate Millionaire [Lv. 1500]"
  1372. LevelQuest = 1
  1373. NameQuest = "PiratePortQuest"
  1374. NameMon = "Pirate Millionaire"
  1375. CFrameQuest = CFrame.new(-245.9963836669922, 47.30615234375, 5584.1005859375)
  1376. elseif MyLevel == 1525 or MyLevel <= 1574 then
  1377. Mon = "Pistol Billionaire [Lv. 1525]"
  1378. LevelQuest = 2
  1379. NameQuest = "PiratePortQuest"
  1380. NameMon = "Pistol Billionaire"
  1381. CFrameQuest = CFrame.new(-187.3301544189453, 86.23987579345703, 6013.513671875)
  1382. elseif MyLevel == 1575 or MyLevel <= 1599 then
  1383. Mon = "Dragon Crew Warrior [Lv. 1575]"
  1384. LevelQuest = 1
  1385. NameQuest = "AmazonQuest"
  1386. NameMon = "Dragon Crew Warrior"
  1387. CFrameQuest = CFrame.new(6141.140625, 51.35136413574219, -1340.738525390625)
  1388. elseif MyLevel == 1600 or MyLevel <= 1624 then
  1389. Mon = "Dragon Crew Archer [Lv. 1600]"
  1390. NameQuest = "AmazonQuest"
  1391. LevelQuest = 2
  1392. NameMon = "Dragon Crew Archer"
  1393. CFrameQuest = CFrame.new(5833.1147460938, 51.60498046875, -1103.0693359375)
  1394. elseif MyLevel == 1625 or MyLevel <= 1649 then
  1395. Mon = "Female Islander [Lv. 1625]"
  1396. NameQuest = "AmazonQuest2"
  1397. LevelQuest = 1
  1398. NameMon = "Female Islander"
  1399. CFrameQuest = CFrame.new(4685.25830078125, 735.8078002929688, 815.3425903320312)
  1400. elseif MyLevel == 1650 or MyLevel <= 1699 then
  1401. Mon = "Giant Islander [Lv. 1650]"
  1402. NameQuest = "AmazonQuest2"
  1403. LevelQuest = 2
  1404. NameMon = "Giant Islander"
  1405. CFrameQuest = CFrame.new(4729.09423828125, 590.436767578125, -36.97627639770508)
  1406. elseif MyLevel == 1700 or MyLevel <= 1724 then
  1407. Mon = "Marine Commodore [Lv. 1700]"
  1408. LevelQuest = 1
  1409. NameQuest = "MarineTreeIsland"
  1410. NameMon = "Marine Commodore"
  1411. CFrameQuest = CFrame.new(2286.0078125, 73.13391876220703, -7159.80908203125)
  1412. elseif MyLevel == 1725 or MyLevel <= 1774 then
  1413. Mon = "Marine Rear Admiral [Lv. 1725]"
  1414. NameMon = "Marine Rear Admiral"
  1415. NameQuest = "MarineTreeIsland"
  1416. LevelQuest = 2
  1417. CFrameQuest = CFrame.new(3656.773681640625, 160.52406311035156, -7001.5986328125)
  1418. elseif MyLevel == 1775 or MyLevel <= 1799 then
  1419. Mon = "Fishman Raider [Lv. 1775]"
  1420. LevelQuest = 1
  1421. NameQuest = "DeepForestIsland3"
  1422. NameMon = "Fishman Raider"
  1423. CFrameQuest = CFrame.new(-10407.5263671875, 331.76263427734375, -8368.5166015625)
  1424. elseif MyLevel == 1800 or MyLevel <= 1824 then
  1425. Mon = "Fishman Captain [Lv. 1800]"
  1426. LevelQuest = 2
  1427. NameQuest = "DeepForestIsland3"
  1428. NameMon = "Fishman Captain"
  1429. CFrameQuest = CFrame.new(-10994.701171875, 352.38140869140625, -9002.1103515625)
  1430. elseif MyLevel == 1825 or MyLevel <= 1849 then
  1431. Mon = "Forest Pirate [Lv. 1825]"
  1432. LevelQuest = 1
  1433. NameQuest = "DeepForestIsland"
  1434. NameMon = "Forest Pirate"
  1435. CFrameQuest = CFrame.new(-13274.478515625, 332.3781433105469, -7769.58056640625)
  1436. elseif MyLevel == 1850 or MyLevel <= 1899 then
  1437. Mon = "Mythological Pirate [Lv. 1850]"
  1438. LevelQuest = 2
  1439. NameQuest = "DeepForestIsland"
  1440. NameMon = "Mythological Pirate"
  1441. CFrameQuest = CFrame.new(-13680.607421875, 501.08154296875, -6991.189453125)
  1442. elseif MyLevel == 1900 or MyLevel <= 1924 then
  1443. Mon = "Jungle Pirate [Lv. 1900]"
  1444. LevelQuest = 1
  1445. NameQuest = "DeepForestIsland2"
  1446. NameMon = "Jungle Pirate"
  1447. CFrameQuest = CFrame.new(-12256.16015625, 331.73828125, -10485.8369140625)
  1448. elseif MyLevel == 1925 or MyLevel <= 1974 then
  1449. Mon = "Musketeer Pirate [Lv. 1925]"
  1450. LevelQuest = 2
  1451. NameQuest = "DeepForestIsland2"
  1452. NameMon = "Musketeer Pirate"
  1453. CFrameQuest = CFrame.new(-13457.904296875, 391.545654296875, -9859.177734375)
  1454. elseif MyLevel == 1975 or MyLevel <= 1999 then
  1455. Mon = "Reborn Skeleton [Lv. 1975]"
  1456. LevelQuest = 1
  1457. NameQuest = "HauntedQuest1"
  1458. NameMon = "Reborn Skeleton"
  1459. CFrameQuest = CFrame.new(-8763.7236328125, 165.72299194335938, 6159.86181640625)
  1460. elseif MyLevel == 2000 or MyLevel <= 2024 then
  1461. Mon = "Living Zombie [Lv. 2000]"
  1462. LevelQuest = 2
  1463. NameQuest = "HauntedQuest1"
  1464. NameMon = "Living Zombie"
  1465. CFrameQuest = CFrame.new(-10144.1318359375, 138.62667846679688, 5838.0888671875)
  1466. elseif MyLevel == 2025 or MyLevel <= 2049 then
  1467. Mon = "Demonic Soul [Lv. 2025]"
  1468. LevelQuest = 1
  1469. NameQuest = "HauntedQuest2"
  1470. NameMon = "Demonic Soul"
  1471. CFrameQuest = CFrame.new(-9505.8720703125, 172.10482788085938, 6158.9931640625)
  1472. elseif MyLevel == 2050 or MyLevel <= 2074 then
  1473. Mon = "Posessed Mummy [Lv. 2050]"
  1474. LevelQuest = 2
  1475. NameQuest = "HauntedQuest2"
  1476. NameMon = "Posessed Mummy"
  1477. CFrameQuest = CFrame.new(-9582.0224609375, 6.251527309417725, 6205.478515625)
  1478. elseif MyLevel == 2075 or MyLevel <= 2099 then
  1479. Mon = "Peanut Scout [Lv. 2075]"
  1480. LevelQuest = 1
  1481. NameQuest = "NutsIslandQuest"
  1482. NameMon = "Peanut Scout"
  1483. CFrameQuest = CFrame.new(-2143.241943359375, 47.72198486328125, -10029.9951171875)
  1484. elseif MyLevel == 2100 or MyLevel <= 2124 then
  1485. Mon = "Peanut President [Lv. 2100]"
  1486. LevelQuest = 2
  1487. NameQuest = "NutsIslandQuest"
  1488. NameMon = "Peanut President"
  1489. CFrameQuest = CFrame.new(-1859.35400390625, 38.10316848754883, -10422.4296875)
  1490. elseif MyLevel == 2125 or MyLevel <= 2149 then
  1491. Mon = "Ice Cream Chef [Lv. 2125]"
  1492. LevelQuest = 1
  1493. NameQuest = "IceCreamIslandQuest"
  1494. NameMon = "Ice Cream Chef"
  1495. CFrameQuest = CFrame.new(-872.24658203125, 65.81957244873047, -10919.95703125)
  1496. elseif MyLevel == 2150 or MyLevel <= 2199 then
  1497. Mon = "Ice Cream Commander [Lv. 2150]"
  1498. LevelQuest = 2
  1499. NameQuest = "IceCreamIslandQuest"
  1500. NameMon = "Ice Cream Commander"
  1501. CFrameQuest = CFrame.new(-558.06103515625, 112.04895782470703, -11290.7744140625)
  1502. elseif MyLevel == 2200 or MyLevel <= 2224 then
  1503. Mon = "Cookie Crafter [Lv. 2200]"
  1504. LevelQuest = 1
  1505. NameQuest = "CakeQuest1"
  1506. NameMon = "Cookie Crafter"
  1507. CFrameQuest = CFrame.new(-2374.13671875, 37.79826354980469, -12125.30859375)
  1508. elseif MyLevel == 2225 or MyLevel <= 2249 then
  1509. Mon = "Cake Guard [Lv. 2225]"
  1510. LevelQuest = 2
  1511. NameQuest = "CakeQuest1"
  1512. NameMon = "Cake Guard"
  1513. CFrameQuest = CFrame.new(-1598.3070068359375, 43.773197174072266, -12244.5810546875)
  1514. elseif MyLevel == 2250 or MyLevel <= 2274 then
  1515. Mon = "Baking Staff [Lv. 2250]"
  1516. LevelQuest = 1
  1517. NameQuest = "CakeQuest2"
  1518. NameMon = "Baking Staff"
  1519. CFrameQuest = CFrame.new(-1887.8099365234375, 77.6185073852539, -12998.3505859375)
  1520. elseif MyLevel == 2275 or MyLevel <= 2299 then
  1521. Mon = "Head Baker [Lv. 2275]"
  1522. LevelQuest = 2
  1523. NameQuest = "CakeQuest2"
  1524. NameMon = "Head Baker"
  1525. CFrameQuest = CFrame.new(-2216.188232421875, 82.884521484375, -12869.2939453125)
  1526. elseif MyLevel == 2300 or MyLevel <= 2324 then
  1527. Mon = "Cocoa Warrior [Lv. 2300]"
  1528. LevelQuest = 1
  1529. NameQuest = "ChocQuest1"
  1530. NameMon = "Cocoa Warrior"
  1531. CFrameQuest = CFrame.new(-21.55328369140625, 80.57499694824219, -12352.3876953125)
  1532. elseif MyLevel == 2325 or MyLevel <= 2349 then
  1533. Mon = "Chocolate Bar Battler [Lv. 2325]"
  1534. LevelQuest = 2
  1535. NameQuest = "ChocQuest1"
  1536. NameMon = "Chocolate Bar Battler"
  1537. CFrameQuest = CFrame.new(582.590576171875, 77.18809509277344, -12463.162109375)
  1538. elseif MyLevel == 2350 or MyLevel <= 2374 then
  1539. Mon = "Sweet Thief [Lv. 2350]"
  1540. LevelQuest = 1
  1541. NameQuest = "ChocQuest2"
  1542. NameMon = "Sweet Thief"
  1543. CFrameQuest = CFrame.new(165.1884765625, 76.05885314941406, -12600.8369140625)
  1544. elseif MyLevel == 2375 or MyLevel <= 2399 then
  1545. Mon = "Candy Rebel [Lv. 2375]"
  1546. LevelQuest = 2
  1547. NameQuest = "ChocQuest2"
  1548. NameMon = "Candy Rebel"
  1549. CFrameQuest = CFrame.new(134.86563110351562, 77.2476806640625, -12876.5478515625)
  1550. elseif MyLevel == 2400 or MyLevel <= 2449 then
  1551. Mon = "Candy Pirate [Lv. 2400]"
  1552. LevelQuest = 1
  1553. NameQuest = "CandyQuest1"
  1554. NameMon = "Candy Pirate"
  1555. CFrameQuest = CFrame.new(-1310.5003662109375, 26.016523361206055, -14562.404296875)
  1556. elseif MyLevel <= 2450 then
  1557. Mon = "Snow Demon [Lv. 2425]"
  1558. LevelQuest = 2
  1559. NameQuest = "CandyQuest1"
  1560. NameMon = "Snow Demon"
  1561. CFrameQuest = CFrame.new(-899.0391235351562, 26.511367797851562, -14430.8681640625)
  1562. end
  1563. end
  1564. end
  1565.  
  1566. function Hop()
  1567. local PlaceID = game.PlaceId
  1568. local AllIDs = {}
  1569. local foundAnything = ""
  1570. local actualHour = os.date("!*t").hour
  1571. local Deleted = false
  1572. function TPReturner()
  1573. local Site;
  1574. if foundAnything == "" then
  1575. Site = game.HttpService:JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. PlaceID .. '/servers/Public?sortOrder=Asc&limit=100'))
  1576. else
  1577. Site = game.HttpService:JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. PlaceID .. '/servers/Public?sortOrder=Asc&limit=100&cursor=' .. foundAnything))
  1578. end
  1579. local ID = ""
  1580. if Site.nextPageCursor and Site.nextPageCursor ~= "null" and Site.nextPageCursor ~= nil then
  1581. foundAnything = Site.nextPageCursor
  1582. end
  1583. local num = 0;
  1584. for i,v in pairs(Site.data) do
  1585. local Possible = true
  1586. ID = tostring(v.id)
  1587. if tonumber(v.maxPlayers) > tonumber(v.playing) then
  1588. for _,Existing in pairs(AllIDs) do
  1589. if num ~= 0 then
  1590. if ID == tostring(Existing) then
  1591. Possible = false
  1592. end
  1593. else
  1594. if tonumber(actualHour) ~= tonumber(Existing) then
  1595. local delFile = pcall(function()
  1596. AllIDs = {}
  1597. table.insert(AllIDs, actualHour)
  1598. end)
  1599. end
  1600. end
  1601. num = num + 1
  1602. end
  1603. if Possible == true then
  1604. table.insert(AllIDs, ID)
  1605. wait()
  1606. pcall(function()
  1607. wait()
  1608. game:GetService("TeleportService"):TeleportToPlaceInstance(PlaceID, ID, game.Players.LocalPlayer)
  1609. end)
  1610. wait(4)
  1611. end
  1612. end
  1613. end
  1614. end
  1615. function Teleport()
  1616. while wait() do
  1617. pcall(function()
  1618. TPReturner()
  1619. if foundAnything ~= "" then
  1620. TPReturner()
  1621. end
  1622. end)
  1623. end
  1624. end
  1625. Teleport()
  1626. end
  1627.  
  1628. function isnil(thing)
  1629. return (thing == nil)
  1630. end
  1631. local function round(n)
  1632. return math.floor(tonumber(n) + 0.5)
  1633. end
  1634. Number = math.random(1, 1000000)
  1635. function UpdateEspPlayer()
  1636. for i,v in pairs(game:GetService'Players':GetChildren()) do
  1637. pcall(function()
  1638. if not isnil(v.Character) then
  1639. if ESPPlayer then
  1640. if not isnil(v.Character.Head) and not v.Character.Head:FindFirstChild('NameEsp'..Number) then
  1641. local bill = Instance.new('BillboardGui',v.Character.Head)
  1642. bill.Name = 'NameEsp'..Number
  1643. bill.ExtentsOffset = Vector3.new(0, 1, 0)
  1644. bill.Size = UDim2.new(1,200,1,30)
  1645. bill.Adornee = v.Character.Head
  1646. bill.AlwaysOnTop = true
  1647. local name = Instance.new('TextLabel',bill)
  1648. name.Font = "GothamBold"
  1649. name.FontSize = "Size14"
  1650. name.TextWrapped = true
  1651. name.Text = (v.Name ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Character.Head.Position).Magnitude/3) ..' M')
  1652. name.Size = UDim2.new(1,0,1,0)
  1653. name.TextYAlignment = 'Top'
  1654. name.BackgroundTransparency = 1
  1655. name.TextStrokeTransparency = 0.5
  1656. if v.Team == game.Players.LocalPlayer.Team then
  1657. name.TextColor3 = Color3.new(0,255,0)
  1658. else
  1659. name.TextColor3 = Color3.new(255,0,0)
  1660. end
  1661. else
  1662. 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) .. '%')
  1663. end
  1664. else
  1665. if v.Character.Head:FindFirstChild('NameEsp'..Number) then
  1666. v.Character.Head:FindFirstChild('NameEsp'..Number):Destroy()
  1667. end
  1668. end
  1669. end
  1670. end)
  1671. end
  1672. end
  1673.  
  1674. function UpdateIslandESP()
  1675. for i,v in pairs(game:GetService("Workspace")["_WorldOrigin"].Locations:GetChildren()) do
  1676. pcall(function()
  1677. if IslandESP then
  1678. if v.Name ~= "Sea" then
  1679. if not v:FindFirstChild('NameEsp') then
  1680. local bill = Instance.new('BillboardGui',v)
  1681. bill.Name = 'NameEsp'
  1682. bill.ExtentsOffset = Vector3.new(0, 1, 0)
  1683. bill.Size = UDim2.new(1,200,1,30)
  1684. bill.Adornee = v
  1685. bill.AlwaysOnTop = true
  1686. local name = Instance.new('TextLabel',bill)
  1687. name.Font = "GothamBold"
  1688. name.FontSize = "Size14"
  1689. name.TextWrapped = true
  1690. name.Size = UDim2.new(1,0,1,0)
  1691. name.TextYAlignment = 'Top'
  1692. name.BackgroundTransparency = 1
  1693. name.TextStrokeTransparency = 0.5
  1694. name.TextColor3 = Color3.fromRGB(80, 245, 245)
  1695. else
  1696. v['NameEsp'].TextLabel.Text = (v.Name ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  1697. end
  1698. end
  1699. else
  1700. if v:FindFirstChild('NameEsp') then
  1701. v:FindFirstChild('NameEsp'):Destroy()
  1702. end
  1703. end
  1704. end)
  1705. end
  1706. end
  1707.  
  1708. function UpdateChestEsp()
  1709. for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
  1710. pcall(function()
  1711. if string.find(v.Name,"Chest") then
  1712. if ChestESP then
  1713. if string.find(v.Name,"Chest") then
  1714. if not v:FindFirstChild('NameEsp'..Number) then
  1715. local bill = Instance.new('BillboardGui',v)
  1716. bill.Name = 'NameEsp'..Number
  1717. bill.ExtentsOffset = Vector3.new(0, 1, 0)
  1718. bill.Size = UDim2.new(1,200,1,30)
  1719. bill.Adornee = v
  1720. bill.AlwaysOnTop = true
  1721. local name = Instance.new('TextLabel',bill)
  1722. name.Font = "GothamBold"
  1723. name.FontSize = "Size14"
  1724. name.TextWrapped = true
  1725. name.Size = UDim2.new(1,0,1,0)
  1726. name.TextYAlignment = 'Top'
  1727. name.BackgroundTransparency = 1
  1728. name.TextStrokeTransparency = 0.5
  1729. name.TextColor3 = Color3.fromRGB(0, 255, 250)
  1730. if v.Name == "Chest1" then
  1731. name.Text = ("Chest 1" ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  1732. end
  1733. if v.Name == "Chest2" then
  1734. name.Text = ("Chest 2" ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  1735. end
  1736. if v.Name == "Chest3" then
  1737. name.Text = ("Chest 3" ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  1738. end
  1739. else
  1740. v['NameEsp'..Number].TextLabel.Text = (v.Name ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  1741. end
  1742. end
  1743. else
  1744. if v:FindFirstChild('NameEsp'..Number) then
  1745. v:FindFirstChild('NameEsp'..Number):Destroy()
  1746. end
  1747. end
  1748. end
  1749. end)
  1750. end
  1751. end
  1752.  
  1753. function UpdateBfEsp()
  1754. for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
  1755. pcall(function()
  1756. if DevilFruitESP then
  1757. if string.find(v.Name, "Fruit") then
  1758. if not v.Handle:FindFirstChild('NameEsp'..Number) then
  1759. local bill = Instance.new('BillboardGui',v.Handle)
  1760. bill.Name = 'NameEsp'..Number
  1761. bill.ExtentsOffset = Vector3.new(0, 1, 0)
  1762. bill.Size = UDim2.new(1,200,1,30)
  1763. bill.Adornee = v.Handle
  1764. bill.AlwaysOnTop = true
  1765. local name = Instance.new('TextLabel',bill)
  1766. name.Font = "GothamBold"
  1767. name.FontSize = "Size14"
  1768. name.TextWrapped = true
  1769. name.Size = UDim2.new(1,0,1,0)
  1770. name.TextYAlignment = 'Top'
  1771. name.BackgroundTransparency = 1
  1772. name.TextStrokeTransparency = 0.5
  1773. name.TextColor3 = Color3.fromRGB(255, 0, 0)
  1774. name.Text = (v.Name ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Handle.Position).Magnitude/3) ..' M')
  1775. else
  1776. v.Handle['NameEsp'..Number].TextLabel.Text = (v.Name ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Handle.Position).Magnitude/3) ..' M')
  1777. end
  1778. end
  1779. else
  1780. if v.Handle:FindFirstChild('NameEsp'..Number) then
  1781. v.Handle:FindFirstChild('NameEsp'..Number):Destroy()
  1782. end
  1783. end
  1784. end)
  1785. end
  1786. end
  1787.  
  1788. function UpdateFlowerEsp()
  1789. for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
  1790. pcall(function()
  1791. if v.Name == "Flower2" or v.Name == "Flower1" then
  1792. if FlowerESP then
  1793. if not v:FindFirstChild('NameEsp'..Number) then
  1794. local bill = Instance.new('BillboardGui',v)
  1795. bill.Name = 'NameEsp'..Number
  1796. bill.ExtentsOffset = Vector3.new(0, 1, 0)
  1797. bill.Size = UDim2.new(1,200,1,30)
  1798. bill.Adornee = v
  1799. bill.AlwaysOnTop = true
  1800. local name = Instance.new('TextLabel',bill)
  1801. name.Font = "GothamBold"
  1802. name.FontSize = "Size14"
  1803. name.TextWrapped = true
  1804. name.Size = UDim2.new(1,0,1,0)
  1805. name.TextYAlignment = 'Top'
  1806. name.BackgroundTransparency = 1
  1807. name.TextStrokeTransparency = 0.5
  1808. name.TextColor3 = Color3.fromRGB(255, 0, 0)
  1809. if v.Name == "Flower1" then
  1810. name.Text = ("Blue Flower" ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  1811. name.TextColor3 = Color3.fromRGB(255, 0, 0)
  1812. end
  1813. if v.Name == "Flower2" then
  1814. name.Text = ("Red Flower" ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  1815. name.TextColor3 = Color3.fromRGB(255, 0, 0)
  1816. end
  1817. else
  1818. v['NameEsp'..Number].TextLabel.Text = (v.Name ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  1819. end
  1820. else
  1821. if v:FindFirstChild('NameEsp'..Number) then
  1822. v:FindFirstChild('NameEsp'..Number):Destroy()
  1823. end
  1824. end
  1825. end
  1826. end)
  1827. end
  1828. end
  1829.  
  1830. function InfAb()
  1831. if InfAbility then
  1832. if not game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("Agility") then
  1833. local inf = Instance.new("ParticleEmitter")
  1834. inf.Acceleration = Vector3.new(0,0,0)
  1835. inf.Archivable = true
  1836. inf.Drag = 20
  1837. inf.EmissionDirection = Enum.NormalId.Top
  1838. inf.Enabled = true
  1839. inf.Lifetime = NumberRange.new(0,0)
  1840. inf.LightInfluence = 0
  1841. inf.LockedToPart = true
  1842. inf.Name = "Agility"
  1843. inf.Rate = 500
  1844. local numberKeypoints2 = {
  1845. NumberSequenceKeypoint.new(0, 0);
  1846. NumberSequenceKeypoint.new(1, 4);
  1847. }
  1848. inf.Size = NumberSequence.new(numberKeypoints2)
  1849. inf.RotSpeed = NumberRange.new(9999, 99999)
  1850. inf.Rotation = NumberRange.new(0, 0)
  1851. inf.Speed = NumberRange.new(30, 30)
  1852. inf.SpreadAngle = Vector2.new(0,0,0,0)
  1853. inf.Texture = ""
  1854. inf.VelocityInheritance = 0
  1855. inf.ZOffset = 2
  1856. inf.Transparency = NumberSequence.new(0)
  1857. inf.Color = ColorSequence.new(Color3.fromRGB(0,0,0),Color3.fromRGB(0,0,0))
  1858. inf.Parent = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  1859. end
  1860. else
  1861. if game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("Agility") then
  1862. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("Agility"):Destroy()
  1863. end
  1864. end
  1865. end
  1866.  
  1867. local LocalPlayer = game:GetService'Players'.LocalPlayer
  1868. local originalstam = LocalPlayer.Character.Energy.Value
  1869. function infinitestam()
  1870. LocalPlayer.Character.Energy.Changed:connect(function()
  1871. if InfiniteEnergy then
  1872. LocalPlayer.Character.Energy.Value = originalstam
  1873. end
  1874. end)
  1875. end
  1876.  
  1877. spawn(function()
  1878. pcall(function()
  1879. while wait(.1) do
  1880. if InfiniteEnergy then
  1881. wait(0.1)
  1882. originalstam = LocalPlayer.Character.Energy.Value
  1883. infinitestam()
  1884. end
  1885. end
  1886. end)
  1887. end)
  1888.  
  1889. function NoDodgeCool()
  1890. if nododgecool then
  1891. for i,v in next, getgc() do
  1892. if game:GetService("Players").LocalPlayer.Character.Dodge then
  1893. if typeof(v) == "function" and getfenv(v).script == game:GetService("Players").LocalPlayer.Character.Dodge then
  1894. for i2,v2 in next, getupvalues(v) do
  1895. if tostring(v2) == "0.1" then
  1896. repeat wait(.1)
  1897. setupvalue(v,i2,0)
  1898. until not nododgecool
  1899. end
  1900. end
  1901. end
  1902. end
  1903. end
  1904. end
  1905. end
  1906.  
  1907. function fly()
  1908. local mouse=game:GetService("Players").LocalPlayer:GetMouse''
  1909. localplayer=game:GetService("Players").LocalPlayer
  1910. game:GetService("Players").LocalPlayer.Character:WaitForChild("HumanoidRootPart")
  1911. local torso = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  1912. local speedSET=25
  1913. local keys={a=false,d=false,w=false,s=false}
  1914. local e1
  1915. local e2
  1916. local function start()
  1917. local pos = Instance.new("BodyPosition",torso)
  1918. local gyro = Instance.new("BodyGyro",torso)
  1919. pos.Name="EPIXPOS"
  1920. pos.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  1921. pos.position = torso.Position
  1922. gyro.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  1923. gyro.CFrame = torso.CFrame
  1924. repeat
  1925. wait()
  1926. localplayer.Character.Humanoid.PlatformStand=true
  1927. local new=gyro.CFrame - gyro.CFrame.p + pos.position
  1928. if not keys.w and not keys.s and not keys.a and not keys.d then
  1929. speed=1
  1930. end
  1931. if keys.w then
  1932. new = new + workspace.CurrentCamera.CoordinateFrame.lookVector * speed
  1933. speed=speed+speedSET
  1934. end
  1935. if keys.s then
  1936. new = new - workspace.CurrentCamera.CoordinateFrame.lookVector * speed
  1937. speed=speed+speedSET
  1938. end
  1939. if keys.d then
  1940. new = new * CFrame.new(speed,0,0)
  1941. speed=speed+speedSET
  1942. end
  1943. if keys.a then
  1944. new = new * CFrame.new(-speed,0,0)
  1945. speed=speed+speedSET
  1946. end
  1947. if speed>speedSET then
  1948. speed=speedSET
  1949. end
  1950. pos.position=new.p
  1951. if keys.w then
  1952. gyro.CFrame = workspace.CurrentCamera.CoordinateFrame*CFrame.Angles(-math.rad(speed*15),0,0)
  1953. elseif keys.s then
  1954. gyro.CFrame = workspace.CurrentCamera.CoordinateFrame*CFrame.Angles(math.rad(speed*15),0,0)
  1955. else
  1956. gyro.CFrame = workspace.CurrentCamera.CoordinateFrame
  1957. end
  1958. until not Fly
  1959. if gyro then
  1960. gyro:Destroy()
  1961. end
  1962. if pos then
  1963. pos:Destroy()
  1964. end
  1965. flying=false
  1966. localplayer.Character.Humanoid.PlatformStand=false
  1967. speed=0
  1968. end
  1969. e1=mouse.KeyDown:connect(function(key)
  1970. if not torso or not torso.Parent then
  1971. flying=false e1:disconnect() e2:disconnect() return
  1972. end
  1973. if key=="w" then
  1974. keys.w=true
  1975. elseif key=="s" then
  1976. keys.s=true
  1977. elseif key=="a" then
  1978. keys.a=true
  1979. elseif key=="d" then
  1980. keys.d=true
  1981. end
  1982. end)
  1983. e2=mouse.KeyUp:connect(function(key)
  1984. if key=="w" then
  1985. keys.w=false
  1986. elseif key=="s" then
  1987. keys.s=false
  1988. elseif key=="a" then
  1989. keys.a=false
  1990. elseif key=="d" then
  1991. keys.d=false
  1992. end
  1993. end)
  1994. start()
  1995. end
  1996.  
  1997. function Click()
  1998. game:GetService'VirtualUser':CaptureController()
  1999. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  2000. end
  2001.  
  2002. function AutoHaki()
  2003. if not game:GetService("Players").LocalPlayer.Character:FindFirstChild("HasBuso") then
  2004. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Buso")
  2005. end
  2006. end
  2007.  
  2008. function UnEquipWeapon(Weapon)
  2009. if game.Players.LocalPlayer.Character:FindFirstChild(Weapon) then
  2010. _G.NotAutoEquip = true
  2011. wait(.5)
  2012. game.Players.LocalPlayer.Character:FindFirstChild(Weapon).Parent = game.Players.LocalPlayer.Backpack
  2013. wait(.1)
  2014. _G.NotAutoEquip = false
  2015. end
  2016. end
  2017.  
  2018. function EquipWeapon(ToolSe)
  2019. if not _G.NotAutoEquip then
  2020. if game.Players.LocalPlayer.Backpack:FindFirstChild(ToolSe) then
  2021. Tool = game.Players.LocalPlayer.Backpack:FindFirstChild(ToolSe)
  2022. wait(.1)
  2023. game.Players.LocalPlayer.Character.Humanoid:EquipTool(Tool)
  2024. end
  2025. end
  2026. end
  2027.  
  2028. function topos(Pos)
  2029. Distance = (Pos.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude
  2030. if game.Players.LocalPlayer.Character.Humanoid.Sit == true then game.Players.LocalPlayer.Character.Humanoid.Sit = false end
  2031. pcall(function() tween = game:GetService("TweenService"):Create(game.Players.LocalPlayer.Character.HumanoidRootPart,TweenInfo.new(Distance/210, Enum.EasingStyle.Linear),{CFrame = Pos}) end)
  2032. tween:Play()
  2033. if Distance <= 250 then
  2034. tween:Cancel()
  2035. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = Pos
  2036. end
  2037. if _G.StopTween == true then
  2038. tween:Cancel()
  2039. _G.Clip = false
  2040. end
  2041. end
  2042.  
  2043. function GetDistance(target)
  2044. return math.floor((target.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude)
  2045. end
  2046.  
  2047. function TP1(Pos)
  2048. Distance = (Pos.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude
  2049. if Distance < 360 then
  2050. Speed = 1200
  2051. elseif Distance < 1000 then
  2052. Speed = 360
  2053. elseif Distance < 360 then
  2054. Speed = 1200
  2055. elseif Distance >= 1000 then
  2056. Speed = 360
  2057. end
  2058. game:GetService("TweenService"):Create(
  2059. game.Players.LocalPlayer.Character.HumanoidRootPart,
  2060. TweenInfo.new(Distance/Speed, Enum.EasingStyle.Linear),
  2061. {CFrame = Pos}
  2062. ):Play()
  2063. end
  2064.  
  2065. function TP(Pos)
  2066. Distance = (Pos.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude
  2067. if Distance < 250 then
  2068. Speed = 500
  2069. elseif Distance >= 1000 then
  2070. Speed = 200
  2071. end
  2072. game:GetService("TweenService"):Create(
  2073. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart,
  2074. TweenInfo.new(Distance/Speed, Enum.EasingStyle.Linear),
  2075. {CFrame = Pos}
  2076. ):Play()
  2077. _G.Clip = true
  2078. wait(Distance/Speed)
  2079. _G.Clip = false
  2080. end
  2081.  
  2082. spawn(function()
  2083. pcall(function()
  2084. while wait() do
  2085. 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.Autoheart or _G.Autodoughking or _G.AutoFarmMaterial or _G.AutoNevaSoulGuitar or _G.Auto_Dragon_Trident or _G.Autotushita or _G.d == true then
  2086. if not game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("BodyClip") then
  2087. local Noclip = Instance.new("BodyVelocity")
  2088. Noclip.Name = "BodyClip"
  2089. Noclip.Parent = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  2090. Noclip.MaxForce = Vector3.new(100000,100000,100000)
  2091. Noclip.Velocity = Vector3.new(0,0,0)
  2092. end
  2093. end
  2094. end
  2095. end)
  2096. end)
  2097.  
  2098. spawn(function()
  2099. pcall(function()
  2100. game:GetService("RunService").Stepped:Connect(function()
  2101. 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.Autoheart or _G.Autodoughking or _G.AutoFarmMaterial or _G.AutoNevaSoulGuitar or _G.Auto_Dragon_Trident or _G.Autotushita or _G.d == true then
  2102. for _, v in pairs(game:GetService("Players").LocalPlayer.Character:GetDescendants()) do
  2103. if v:IsA("BasePart") then
  2104. v.CanCollide = false
  2105. end
  2106. end
  2107. end
  2108. end)
  2109. end)
  2110. end)
  2111.  
  2112. spawn(function()
  2113. while wait() do
  2114. 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.Autoheart or _G.Autodoughking == true then
  2115. pcall(function()
  2116. game:GetService("ReplicatedStorage").Remotes.CommE:FireServer("Ken",true)
  2117. end)
  2118. end
  2119. end
  2120. end)
  2121.  
  2122. function StopTween(target)
  2123. if not target then
  2124. _G.StopTween = true
  2125. wait()
  2126. topos(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame)
  2127. wait()
  2128. if game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("BodyClip") then
  2129. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("BodyClip"):Destroy()
  2130. end
  2131. _G.StopTween = false
  2132. _G.Clip = false
  2133. end
  2134. end
  2135.  
  2136. spawn(function()
  2137. pcall(function()
  2138. while wait() do
  2139. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  2140. if v:IsA("Tool") then
  2141. if v:FindFirstChild("RemoteFunctionShoot") then
  2142. SelectWeaponGun = v.Name
  2143. end
  2144. end
  2145. end
  2146. end
  2147. end)
  2148. end)
  2149.  
  2150. game:GetService("Players").LocalPlayer.Idled:connect(function()
  2151. game:GetService("VirtualUser"):Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  2152. wait(1)
  2153. game:GetService("VirtualUser"):Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  2154. end)
  2155.  
  2156.  
  2157.  
  2158.  
  2159. local Library = Update:Window(" Domadic Hub","12523036534",Enum.KeyCode.RightControl);
  2160. H = Library:Tab("Home")
  2161. Main = Library:Tab("Main")
  2162. M = Library:Tab("Item & Quest")
  2163. Ss = Library:Tab("Stats")
  2164. P = Library:Tab("Player")
  2165. R = Library:Tab("Raid")
  2166. T = Library:Tab("Teleport")
  2167. S = Library:Tab("Shop")
  2168. D = Library:Tab("Devil Fruit")
  2169. Misc = Library:Tab("Miscellaneous")
  2170. Esp = Library: Tab("ESP")
  2171.  
  2172. Main:Line()
  2173.  
  2174. H:Label("YouTube Domadic OOF")
  2175.  
  2176. H:Button("Copy Link YouTube Developer",function()
  2177. setclipboard("https://youtube.com/@nomadicoof789")
  2178. end)
  2179.  
  2180. local Time = H: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
  2181.  
  2182. H:Seperator("Status")
  2183.  
  2184. local locallv = H:Label("Level")
  2185.  
  2186. spawn(function()
  2187. while wait() do
  2188. pcall(function()
  2189. locallv:Set("Level :".." "..game:GetService("Players").LocalPlayer.Data.Level.Value)
  2190. end)
  2191. end
  2192. end)
  2193.  
  2194. local localrace = H:Label("Race")
  2195.  
  2196. spawn(function()
  2197. while wait() do
  2198. pcall(function()
  2199. localrace:Set("Race :".." "..game:GetService("Players").LocalPlayer.Data.Race.Value)
  2200. end)
  2201. end
  2202. end)
  2203.  
  2204. local localbeli = H:Label("Beli")
  2205.  
  2206. spawn(function()
  2207. while wait() do
  2208. pcall(function()
  2209. localbeli:Set("Beli :".." "..game:GetService("Players").LocalPlayer.Data.Beli.Value)
  2210. end)
  2211. end
  2212. end)
  2213.  
  2214. local localfrag = H:Label("Fragment")
  2215.  
  2216. spawn(function()
  2217. while wait() do
  2218. pcall(function()
  2219. localfrag:Set("Fragments :".." "..game:GetService("Players").LocalPlayer.Data.Fragments.Value)
  2220. end)
  2221. end
  2222. end)
  2223.  
  2224.  
  2225. local localexp = H:Label("ExP")
  2226.  
  2227. spawn(function()
  2228. while wait() do
  2229. pcall(function()
  2230. localexp:Set("ExP Points :".." "..game:GetService("Players").LocalPlayer.Data.Exp.Value)
  2231. end)
  2232. end
  2233. end)
  2234.  
  2235. local localstat = H:Label("Stats Points")
  2236.  
  2237. spawn(function()
  2238. while wait() do
  2239. pcall(function()
  2240. localstat:Set("Stats Points :".." "..game:GetService("Players").LocalPlayer.Data.Points.Value)
  2241. end)
  2242. end
  2243. end)
  2244.  
  2245. local localbountyhornor = H:Label("Bounty")
  2246.  
  2247. spawn(function()
  2248. while wait() do
  2249. pcall(function()
  2250. localbountyhornor:Set("Bounty / Honor :".." "..game:GetService("Players").LocalPlayer.leaderstats["Bounty/Honor"].Value)
  2251. end)
  2252. end
  2253. end)
  2254.  
  2255. local localDevil = H:Label("Devil Fruit")
  2256.  
  2257. spawn(function()
  2258. while wait() do
  2259. pcall(function()
  2260. if game:GetService("Players").LocalPlayer.Character:FindFirstChild(game:GetService("Players").LocalPlayer.Data.DevilFruit.Value) or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild(game:GetService("Players").LocalPlayer.Data.DevilFruit.Value) then
  2261. localDevil:Set("Devil Fruit :".." "..game:GetService("Players").LocalPlayer.Data.DevilFruit.Value)
  2262. else
  2263. localDevil:Set("Not Have Devil Fruit")
  2264. end
  2265. end)
  2266. end
  2267. end)
  2268.  
  2269. H:Seperator(" Sword ")
  2270.  
  2271. local Saber = H:Label("❌: Saber")
  2272. local Rengoku = H:Label("❌: Rengoku")
  2273. local Midnight_Blade = H:Label("❌: Midnight Blade")
  2274. local Dragon_Trident = H:Label("❌: Dragon Trident")
  2275. local Yama = H:Label("❌: Yama")
  2276. local Buddy_Sword = H:Label("❌: Buddy Sword")
  2277. local Canvander = H:Label("❌: Canvander")
  2278. local Twin_Hooks = H:Label("❌: Twin Hooks")
  2279. local Spikey_Trident = H:Label("❌: Spikey Trident")
  2280. local Hallow_Scythe = H:Label("❌: Hallow Scythe")
  2281. local Dark_Dagger = H:Label("❌: Dark Dagger")
  2282. local Tushita = H:Label("❌: Tushita")
  2283.  
  2284. spawn(function()
  2285. while task.wait() do
  2286. pcall(function()
  2287. for i,v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getInventoryWeapons")) do
  2288. if v.Name == "Saber" then
  2289. Saber:Set("✅: Saber")
  2290. end
  2291. if v.Name == "Rengoku" then
  2292. Rengoku:Set("✅: Rengoku")
  2293. end
  2294. if v.Name == "Midnight Blade" then
  2295. Midnight_Blade:Set("✅: Midnight Blade")
  2296. end
  2297. if v.Name == "Dragon Trident" then
  2298. Dragon_Trident:Set("✅: Dragon Trident")
  2299. end
  2300. if v.Name == "Yama" then
  2301. Yama:Set("✅: Yama")
  2302. end
  2303. if v.Name == "Buddy Sword" then
  2304. Buddy_Sword:Set("✅: Buddy Sword")
  2305. end
  2306. if v.Name == "Canvander" then
  2307. Canvander:Set("✅: Canvander")
  2308. end
  2309. if v.Name == "Twin Hooks" then
  2310. Twin_Hooks:Set("✅: Twin Hooks")
  2311. end
  2312. if v.Name == "Spikey Trident" then
  2313. Spikey_Trident:Set("✅: Spikey Trident")
  2314. end
  2315. if v.Name == "Hallow Scythe" then
  2316. Hallow_Scythe:Set("✅: Hallow Scythe")
  2317. end
  2318. if v.Name == "Dark Dagger" then
  2319. Dark_Dagger:Set("✅: Dark Dagger")
  2320. end
  2321. if v.Name == "Tushita" then
  2322. Tushita:Set("✅: Tushita")
  2323. end
  2324. end
  2325. end)
  2326. end
  2327. end)
  2328.  
  2329. H:Seperator("Quest")
  2330.  
  2331. local Bartilo_Quest = H:Label("❌: Bartilo Quest")
  2332. local Don_Swan_Quest = H:Label("❌: Don Swan Quest")
  2333. local Kill_Don_Swan = H:Label("❌: Kill Don Swan")
  2334.  
  2335. spawn(function()
  2336. while task.wait() do
  2337. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") == 3 then
  2338. Bartilo_Quest:Set("✅: Bartilo Quest")
  2339. end
  2340.  
  2341. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("GetUnlockables").FlamingoAccess == nil then
  2342. --Nothing
  2343. else
  2344. Don_Swan_Quest:Set("✅: Don Swan Quest")
  2345. end
  2346.  
  2347. if game:GetService("ReplicatedStorage").Remotes["CommF_"]:InvokeServer("ZQuestProgress", "Check") == 1 then
  2348. Kill_Don_Swan:Set("✅: Kill Don Swan")
  2349. end
  2350. end
  2351. end)
  2352.  
  2353. H:Seperator("Sword Legendary")
  2354.  
  2355. local Shisui = H:Label("❌: Shisui")
  2356. local Saddi = H:Label("❌: Saddi")
  2357. local Wando = H:Label("❌: Wando")
  2358. local True_Triple_Katana = H:Label("❌: True Triple Katana")
  2359.  
  2360. spawn(function()
  2361. while task.wait() do
  2362. pcall(function()
  2363. for i,v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getInventoryWeapons")) do
  2364. if v.Name == "Shisui" then
  2365. Shisui:Set("✅: Shisui")
  2366. end
  2367. if v.Name == "Saddi" then
  2368. Saddi:Set("✅: Saddi")
  2369. end
  2370. if v.Name == "Wando" then
  2371. Wando:Set("✅: Wando")
  2372. end
  2373. if v.Name == "True Triple Katana" then
  2374. True_Triple_Katana:Set("✅: True Triple Katana")
  2375. end
  2376. end
  2377. end)
  2378. end
  2379. end)
  2380.  
  2381. H:Seperator("Melee")
  2382.  
  2383. local Superhuman = H:Label("❌: Superhuman")
  2384. local Death_Step = H:Label("❌: Death Step")
  2385. local Sharkman_Karate = H:Label("❌: Sharkman Karate")
  2386. local Electric_Claw = H:Label("❌: Electric Claw")
  2387. local Dragon_Talon = H:Label("❌: Dragon Talon")
  2388. local God_Human = H:Label("❌: God Human")
  2389.  
  2390. spawn(function()
  2391. while task.wait() do
  2392. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySuperhuman",true) == 1 then
  2393. Superhuman:Set("✅: Superhuman")
  2394. end
  2395. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDeathStep",true) == 1 then
  2396. Death_Step:Set("✅: Death Step")
  2397. end
  2398. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySharkmanKarate",true) == 1 then
  2399. Sharkman_Karate:Set("✅: Sharkman Karate")
  2400. end
  2401. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw",true) == 1 then
  2402. Electric_Claw:Set("✅: Electric Claw")
  2403. end
  2404. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDragonTalon",true) == 1 then
  2405. Dragon_Talon:Set("✅: Dragon Talon")
  2406. end
  2407. end
  2408. end)
  2409.  
  2410. H:Seperator("Gun")
  2411.  
  2412. local Kabu_cha = H:Label("❌: Kabucha")
  2413. local Acidum_Rifle = H:Label("❌: Acidum Rifle")
  2414. local Bizarre_Rifle = H:Label("❌: Bizarre Rifle")
  2415.  
  2416. spawn(function()
  2417. while task.wait() do
  2418. pcall(function()
  2419. for i,v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getInventoryWeapons")) do
  2420. if v.Name == "Kabucha" then
  2421. Kabu_cha:Set("✅: Kabucha")
  2422. end
  2423. if v.Name == "Acidum Rifle" then
  2424. Acidum_Rifle:Set("✅: Acidum Rifle")
  2425. end
  2426. if v.Name == "Bizarre Rifle" then
  2427. Bizarre_Rifle:Set("✅: Bizarre Rifle")
  2428. end
  2429. end
  2430. end)
  2431. end
  2432. end)
  2433.  
  2434.  
  2435.  
  2436. H:Seperator("Accessory")
  2437.  
  2438. local Dark_Coat = H:Label("❌: Dark Coat")
  2439. local Ghoul_Mask = H:Label("❌: Ghoul Mask")
  2440. local Swan_Glass = H:Label("❌: Swan Glass")
  2441. local Pale_Scarf = H:Label("❌: Pale Scarf")
  2442. local Valkyrie_Helm = H:Label("❌: Valkyrie Helm")
  2443.  
  2444.  
  2445. spawn(function()
  2446. while task.wait() do
  2447. pcall(function()
  2448. for i,v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getInventoryWeapons")) do
  2449. if v.Name == "Saber" then
  2450. Dark_Coat:Set("✅: Dark Coat")
  2451. end
  2452. if v.Name == "Ghoul Mask" then
  2453. Ghoul_Mask:Set("✅: Ghoul Mask")
  2454. end
  2455. if v.Name == "Swan Glasses" then
  2456. Swan_Glass:Set("✅: Swan Glass")
  2457. end
  2458. if v.Name == "Pale Scarf" then
  2459. Pale_Scarf:Set("✅: Pale Scarf")
  2460. end
  2461. if v.Name == "Valkyrie Helmet" then
  2462. Valkyrie_Helm:Set("✅: Valkyrie Helmet")
  2463. end
  2464. end
  2465. end)
  2466. end
  2467. end)
  2468.  
  2469. Main:Seperator("Farm")
  2470.  
  2471.  
  2472. Main:Toggle("Auto SetSpawn Point",true,function(x)
  2473. _G.Set = x
  2474. end)
  2475.  
  2476. spawn(function()
  2477. while wait() do
  2478. if _G.Set then
  2479. pcall(function()
  2480. local args = {
  2481. [1] = "SetSpawnPoint"
  2482. }
  2483. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  2484. end)
  2485. end
  2486. end
  2487. end)
  2488.  
  2489. WeaponList = {}
  2490.  
  2491. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  2492. if v:IsA("Tool") then
  2493. table.insert(WeaponList ,v.Name)
  2494. end
  2495. end
  2496.  
  2497. local SelectWeapona = Main:Dropdown("Select Weapon",WeaponList,function(value)
  2498. _G.SelectWeapon = value
  2499. end)
  2500.  
  2501. Main:Button("Refresh Weapon",function()
  2502. SelectWeapona:Clear()
  2503. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  2504. SelectWeapona:Add(v.Name)
  2505. end
  2506. end)
  2507.  
  2508.  
  2509.  
  2510. Main:Toggle("Auto Farm Level",_G.AutoFarm,function(value)
  2511. _G.AutoFarm = value
  2512. _G.Seet = value
  2513. _G.M = value
  2514. StopTween(_G.AutoFarm)
  2515. end)
  2516. spawn(function()
  2517. while wait() do
  2518. if _G.AutoFarm then
  2519. pcall(function()
  2520. local QuestTitle = game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text
  2521. if not string.find(QuestTitle, NameMon) then
  2522. StartMagnet = false
  2523. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
  2524. end
  2525. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false then
  2526. StartMagnet = false
  2527. CheckQuest()
  2528. repeat wait() TP1(CFrameQuest) until (CFrameQuest.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 3 or not _G.AutoFarm
  2529. if (CFrameQuest.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 3 then
  2530. wait(0.1)
  2531. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StartQuest",NameQuest,LevelQuest)
  2532. wait(0.5)
  2533. end
  2534. elseif game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == true then
  2535. CheckQuest()
  2536. if game:GetService("Workspace").Enemies:FindFirstChild(Mon) then
  2537. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  2538. if v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 then
  2539. if v.Name == Mon then
  2540. if string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, NameMon) then
  2541. repeat task.wait()
  2542. EquipWeapon(_G.SelectWeapon)
  2543. AutoHaki()
  2544. PosMon = v.HumanoidRootPart.CFrame
  2545. TP1(v.HumanoidRootPart.CFrame * CFrame.new(0,40,0))
  2546. v.HumanoidRootPart.CanCollide = false
  2547. v.Humanoid.WalkSpeed = 0
  2548. v.Head.CanCollide = false
  2549. v.HumanoidRootPart.Size = Vector3.new(70,70,70)
  2550. StartMagnet = true
  2551. game:GetService'VirtualUser':CaptureController()
  2552. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  2553. until not _G.AutoFarm or v.Humanoid.Health <= 0 or not v.Parent or game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false
  2554. else
  2555. StartMagnet = false
  2556. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
  2557. end
  2558. end
  2559. end
  2560. end
  2561. else
  2562. StartMagnet = false
  2563. if game:GetService("ReplicatedStorage"):FindFirstChild(Mon) then
  2564. TP1(game:GetService("ReplicatedStorage"):FindFirstChild(Mon).HumanoidRootPart.CFrame * CFrame.new(15,10,2))
  2565. else
  2566. if (CFrameQuest.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 15 then
  2567. if PosMon ~= nil then
  2568. TP1(PosMon * CFrame.new(2,10,15))
  2569. else
  2570. if OldPos ~= nil then
  2571. TP1(OldPos.Position)
  2572. end
  2573. end
  2574. end
  2575. end
  2576. end
  2577. end
  2578. end)
  2579. end
  2580. end
  2581. end)
  2582.  
  2583. Main:Toggle("Auto Kaitan",false,function(value)
  2584. _G.AutoFarm = value
  2585. _G.SelectWeapon = "Combat"
  2586. _G.Auto_Melee = value
  2587. _G.Auto_Defense = value
  2588. _G.AutoSuperhuman = value
  2589. _G.AutoSecondSea = value
  2590. _G.AutoThirdSea = value
  2591. _G.AutoBuyLegendarySword = value
  2592. StopTween(_G.AutoFarm)
  2593. end)
  2594.  
  2595. Main:Textbox("ใส่เวลมอนทีจะฟาร์มแล้วเปิด Auto Farm level",true,function(value)
  2596. game:GetService("Players").LocalPlayer.Data.Level.Value = value
  2597. end)
  2598.  
  2599. function MaterialMon()
  2600. if _G.SelectMaterial == "Radioactive Material" then
  2601. MMon = "Factory Staff [Lv. 800]"
  2602. MPos = CFrame.new(-507.7895202636719, 72.99479675292969, -126.45632934570312)
  2603. elseif _G.SelectMaterial == "Mystic Droplet" then
  2604. MMon = "Water Fighter [Lv. 1450]"
  2605. MPos = CFrame.new(-3214.218017578125, 298.69952392578125, -10543.685546875)
  2606. elseif _G.SelectMaterial == "Magma Ore" then
  2607. if game.PlaceId == 2753915549 then
  2608. MMon = "Military Spy [Lv. 325]"
  2609. MPos = CFrame.new(-5850.2802734375, 77.28675079345703, 8848.6748046875)
  2610. elseif game.PlaceId == 4442272183 then
  2611. MMon = "Lava Pirate [Lv. 1200]"
  2612. MPos = CFrame.new(-5234.60595703125, 51.953372955322266, -4732.27880859375)
  2613. end
  2614. elseif _G.SelectMaterial == "Angel Wings" then
  2615. MMon = "Royal Soldier [Lv. 550]"
  2616. MPos = CFrame.new(-7827.15625, 5606.912109375, -1705.5833740234375)
  2617. elseif _G.SelectMaterial == "Leather" then
  2618. if game.PlaceId == 2753915549 then
  2619. MMon = "Pirate [Lv. 35]"
  2620. MPos = CFrame.new(-1211.8792724609375, 4.787090301513672, 3916.83056640625)
  2621. elseif game.PlaceId == 4442272183 then
  2622. MMon = "Marine Captain [Lv. 900]"
  2623. MPos = CFrame.new(-2010.5059814453125, 73.00115966796875, -3326.620849609375)
  2624. elseif game.PlaceId == 7449423635 then
  2625. MMon = "Jungle Pirate [Lv. 1900]"
  2626. MPos = CFrame.new(-11975.78515625, 331.7734069824219, -10620.0302734375)
  2627. end
  2628. elseif _G.SelectMaterial == "Scrap Metal" then
  2629. if game.PlaceId == 2753915549 then
  2630. MMon = "Brute [Lv. 45]"
  2631. MPos = CFrame.new(-1132.4202880859375, 14.844913482666016, 4293.30517578125)
  2632. elseif game.PlaceId == 4442272183 then
  2633. MMon = "Mercenary [Lv. 725]"
  2634. MPos = CFrame.new(-972.307373046875, 73.04473876953125, 1419.2901611328125)
  2635. elseif game.PlaceId == 7449423635 then
  2636. MMon = "Pirate Millionaire [Lv. 1500]"
  2637. MPos = CFrame.new(-289.6311950683594, 43.8282470703125, 5583.66357421875)
  2638. end
  2639. elseif _G.SelectMaterial == "Demonic Wisp" then
  2640. MMon = "Demonic Soul [Lv. 2025]"
  2641. MPos = CFrame.new(-9503.388671875, 172.139892578125, 6143.0634765625)
  2642. elseif _G.SelectMaterial == "Vampire Fang" then
  2643. MMon = "Vampire [Lv. 975]"
  2644. MPos = CFrame.new(-5999.20458984375, 6.437741279602051, -1290.059326171875)
  2645. elseif _G.SelectMaterial == "Conjured Cocoa" then
  2646. MMon = "Chocolate Bar Battler [Lv. 2325]"
  2647. MPos = CFrame.new(744.7930908203125, 24.76934242248535, -12637.7255859375)
  2648. elseif _G.SelectMaterial == "Dragon Scale" then
  2649. MMon = "Dragon Crew Warrior [Lv. 1575]"
  2650. MPos = CFrame.new(5824.06982421875, 51.38640213012695, -1106.694580078125)
  2651. elseif _G.SelectMaterial == "Gunpowder" then
  2652. MMon = "Pistol Billionaire [Lv. 1525]"
  2653. MPos = CFrame.new(-379.6134338378906, 73.84449768066406, 5928.5263671875)
  2654. elseif _G.SelectMaterial == "Fish Tail" then
  2655. MMon = "Fishman Captain [Lv. 1800]"
  2656. MPos = CFrame.new(-10961.0126953125, 331.7977600097656, -8914.29296875)
  2657. elseif _G.SelectMaterial == "Mini Tusk" then
  2658. MMon = "Mythological Pirate [Lv. 1850]"
  2659. MPos = CFrame.new(-13516.0458984375, 469.8182373046875, -6899.16064453125)
  2660. end
  2661. end
  2662.  
  2663. local MaterialMethod
  2664. if World1 then
  2665. MaterialMethod = {
  2666. "Magma Ore",
  2667. "Angel Wings",
  2668. "Leather",
  2669. "Scrap Metal",
  2670. "Radioactive Material",
  2671. }
  2672. elseif World2 then
  2673. MaterialMethod = {
  2674. "Mystic Droplet",
  2675. "Magma Ore",
  2676. "Leather",
  2677. "Scrap Metal",
  2678. "Demonic Wisp",
  2679. "Vampire Fang",
  2680. "Radioactive Material",
  2681. }
  2682. elseif World3 then
  2683. MaterialMethod = {
  2684. "Leather",
  2685. "Scrap Metal",
  2686. "Vampire Fang",
  2687. "Conjured Cocoa",
  2688. "Dragon Scale",
  2689. "Gunpowder",
  2690. "Fish Tail",
  2691. "Mini Tusk",
  2692. "Radioactive Material",
  2693. }
  2694. end
  2695.  
  2696. local SelectMaterial = Main:Dropdown("Select Material",MaterialMethod,function(value)
  2697. _G.SelectMaterial = value
  2698. end)
  2699.  
  2700. Main:Toggle("Auto Farm Material",_G.AutoFarmMaterial,function(t)
  2701. _G.AutoFarmMaterial = t
  2702. StopTween(_G.AutoFarmMaterial)
  2703. end)
  2704.  
  2705. spawn(function()
  2706. while task.wait() do
  2707. pcall(function()
  2708. if _G.AutoFarmMaterial and _G.SelectMaterial then
  2709. MaterialMon()
  2710. if game.Workspace.Enemies:FindFirstChild(MMon) then
  2711. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  2712. if v.Name == MMon then
  2713. if v:FindFirstChild("HumanoidRootPart") then
  2714. repeat task.wait()
  2715. AutoHaki()
  2716. EquipWeapon(_G.SelectWeapon)
  2717. PosMon = v.HumanoidRootPart.CFrame
  2718. v.HumanoidRootPart.CanCollide = false
  2719. v.Humanoid.WalkSpeed = 0
  2720. v.Head.CanCollide = false
  2721. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  2722. StartMagnet = true
  2723. topos(v.HumanoidRootPart.CFrame(0,40,0))
  2724. game:GetService'VirtualUser':CaptureController()
  2725. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  2726. MatMon = v.Name
  2727. MatPos = v.HumanoidRootPart.CFrame
  2728. until not _G.AutoFarmMaterial or not v.Parent or v.Humanoid.Health <= 0
  2729. end
  2730. end
  2731. end
  2732. else
  2733. topos(MPos)
  2734. end
  2735. end
  2736. end)
  2737. end
  2738. end)
  2739.  
  2740. spawn(function()
  2741. while task.wait() do
  2742. if _G.BringNormal and _G.AutoFarmMaterial then
  2743. pcall(function()
  2744. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  2745. if v.Name == MatMon and (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 400 then
  2746. v.Humanoid.WalkSpeed = 0
  2747. v.HumanoidRootPart.Size = Vector3.new(60,60,60)
  2748. --v.Humanoid:ChangeState(14)
  2749. v.HumanoidRootPart.CanCollide = false
  2750. v.Head.CanCollide = false
  2751. v.HumanoidRootPart.CFrame = MatPos
  2752. if v.Humanoid:FindFirstChild("Animator") then
  2753. v.Humanoid.Animator:Destroy()
  2754. end
  2755. v.Humanoid:ChangeState(11)
  2756. v.Humanoid:ChangeState(14)
  2757. sethiddenproperty(game.Players.LocalPlayer,"SimulationRadius",math.huge)
  2758. end
  2759. end
  2760. end)
  2761. end
  2762. end
  2763. end)
  2764.  
  2765. Main:Toggle("Auto Farm Chest",false,function(t)
  2766.  
  2767. _G.d = t
  2768. local function HttpGet(url)
  2769. return game:GetService("HttpService"):JSONDecode(htgetf(url))
  2770. end
  2771. game:GetService('RunService').Stepped:connect(function()
  2772. if _G.d then
  2773. zeroGrav(game.Players.LocalPlayer.Character.HumanoidRootPart)
  2774. end
  2775. end)
  2776.  
  2777.  
  2778. function FindNearest(chests)
  2779. local lowest = math.huge -- infinity
  2780. local chest = nil
  2781. for i,v in pairs(chests) do
  2782. if v then
  2783. local distance = (v.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude
  2784. if distance < lowest then
  2785. lowest = distance
  2786. chest = v
  2787. end
  2788. end
  2789. end
  2790. return chest
  2791. end
  2792.  
  2793. game:GetService("ReplicatedStorage"):WaitForChild("Remotes")
  2794. local TeleportService = game:GetService("TeleportService")
  2795. while _G.d and wait() do
  2796. local chests = {}
  2797. for i,d in pairs(game:GetService("Workspace"):GetChildren()) do
  2798. if string.find(d.Name, "Chest") ~= nil then
  2799. table.insert(chests, d)
  2800. end
  2801. end
  2802. if #chests == 0 then
  2803. pcall(function()
  2804. local d = HttpGet("https:/www.roblox.com/games/getgameinstancesjson?placeId=" .. game.PlaceId .. "&startindex=0")
  2805. local f = HttpGet("https:/www.roblox.com/games/getgameinstancesjson?placeId=" .. game.PlaceId .. "&startindex=".. math.random(0,tonumber(d.TotalCollectionSize)))
  2806. local c = f.Collection[math.random(1,#f.Collection)]
  2807. game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, c.Guid)
  2808. end)
  2809. wait(0.5)
  2810. end
  2811. if game.Players.LocalPlayer.Team == nil then
  2812. game:GetService("ReplicatedStorage").Remotes["CommF_"]:InvokeServer("SetTeam", "Marines")
  2813. end
  2814. if game.Players.LocalPlayer.Character then
  2815. local close = FindNearest(chests)
  2816. if close == nil then
  2817. if game.VIPServerOwnerId == 0 then
  2818. pcall(function()
  2819. local d = HttpGet("https:/www.roblox.com/games/getgameinstancesjson?placeId=" .. game.PlaceId .. "&startindex=0")
  2820. local f = HttpGet("https:/www.roblox.com/games/getgameinstancesjson?placeId=" .. game.PlaceId .. "&startindex=".. math.random(0,tonumber(d.TotalCollectionSize)))
  2821. local c = f.Collection[math.random(1,#f.Collection)]
  2822. game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, c.Guid)
  2823. end)
  2824. end
  2825. wait(0.5)
  2826. else
  2827. ChestCFrame = CFrame.new(close.CFrame.X,close.CFrame.Y,close.CFrame.Z)
  2828. topos(ChestCFrame,TweenSpeedChest)
  2829. repeat wait() until d == nil or d.Parent == nil or _G.d == false
  2830. end
  2831. end
  2832. end
  2833. end)
  2834.  
  2835. Main:Toggle("Auto Farm Chest Hop",_G.AutoFarmChest_Hop,function(value)
  2836. _G.AutoFarmChest_Hop = value
  2837. end)
  2838.  
  2839. Main:Seperator("Dought Boss")
  2840.  
  2841. local MobKilled = Main:Label("Killed")
  2842.  
  2843. spawn(function()
  2844. while wait() do
  2845. pcall(function()
  2846. if string.len(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner")) == 88 then
  2847. MobKilled:Set("Defeat : "..string.sub(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner"),39,41))
  2848. elseif string.len(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner")) == 87 then
  2849. MobKilled:Set("Defeat : "..string.sub(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner"),39,40))
  2850. elseif string.len(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner")) == 86 then
  2851. MobKilled:Set("Defeat : "..string.sub(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner"),39,39))
  2852. else
  2853. MobKilled:Set("Boss Is Spawning")
  2854. end
  2855. end)
  2856. end
  2857. end)
  2858.  
  2859. spawn(function()
  2860. while wait() do
  2861. if _G.Autoheart and World3 then
  2862. pcall(function()
  2863. if game:GetService("Workspace").Enemies:FindFirstChild("Candy Pirate [Lv. 2400]") or game:GetService("Workspace").Enemies:FindFirstChild("Snow Demon [Lv. 2425]") then
  2864. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  2865. if v.Name == "Candy Pirate [Lv. 2400]" or v.Name == "Snow Demon [Lv. 2425]" then
  2866. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  2867. repeat task.wait()
  2868. AutoHaki()
  2869. EquipWeapon(_G.SelectWeapon)
  2870. v.HumanoidRootPart.CanCollide = false
  2871. v.Humanoid.WalkSpeed = 0
  2872. v.Head.CanCollide = false
  2873. StartMagnetBoneMon = true
  2874. PosMonBone = v.HumanoidRootPart.CFrame
  2875. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  2876. game:GetService("VirtualUser"):CaptureController()
  2877. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  2878. until not _G.Auto_Farm_heart or not v.Parent or v.Humanoid.Health <= 0
  2879. end
  2880. end
  2881. end
  2882. else
  2883. topos(CFrame.new(-1084.208984375, 14.640438079833984, -14471.1796875))
  2884. StartMagnetheart = false
  2885. for i,v in pairs(game:GetService("ReplicatedStorage"):GetChildren()) do
  2886. if v.Name == "Candy Pirate [Lv. 2400]" then
  2887. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  2888. elseif v.Name == "Snow Demon [Lv. 2425]" then
  2889. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  2890.  
  2891. end
  2892. end
  2893. end
  2894. end)
  2895. end
  2896. end
  2897. end)
  2898.  
  2899. Main:Toggle("Auto Dought Boss",_G.AutoDoughtBoss,function(value)
  2900. _G.AutoDoughtBoss = value
  2901. StopTween(_G.AutoDoughtBoss)
  2902. end)
  2903.  
  2904. spawn(function()
  2905. while wait() do
  2906. pcall(function()
  2907. if string.len(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner")) == 88 then
  2908. KillMob = (tonumber(string.sub(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner"),39,41)) - 500)
  2909. elseif string.len(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner")) == 87 then
  2910. KillMob = (tonumber(string.sub(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner"),40,41)) - 500)
  2911. elseif string.len(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner")) == 86 then
  2912. KillMob = (tonumber(string.sub(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner"),41,41)) - 500)
  2913. end
  2914. end)
  2915. end
  2916. end)
  2917.  
  2918. spawn(function()
  2919. while wait() do
  2920. if _G.AutoDoughtBoss then
  2921. pcall(function()
  2922. if game:GetService("Workspace").Enemies:FindFirstChild("Cake Prince [Lv. 2300] [Raid Boss]") then
  2923. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  2924. if v.Name == "Cake Prince [Lv. 2300] [Raid Boss]" then
  2925. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  2926. repeat task.wait()
  2927. AutoHaki()
  2928. EquipWeapon(_G.SelectWeapon)
  2929. v.HumanoidRootPart.CanCollide = false
  2930. v.Humanoid.WalkSpeed = 0
  2931. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  2932. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,40,2))
  2933. game:GetService("VirtualUser"):CaptureController()
  2934. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  2935. sethiddenproperty(game.Players.LocalPlayer,"SimulationRadius",math.huge)
  2936. until not _G.AutoDoughtBoss or not v.Parent or v.Humanoid.Health <= 0
  2937. end
  2938. end
  2939. end
  2940. else
  2941. if game:GetService("ReplicatedStorage"):FindFirstChild("Cake Prince [Lv. 2300] [Raid Boss]") then
  2942. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Cake Prince [Lv. 2300] [Raid Boss]").HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  2943. else
  2944. if KillMob == 0 then
  2945. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CakePrinceSpawner",true)
  2946. end
  2947. if game:GetService("Workspace").Map.CakeLoaf.BigMirror.Other.Transparency == 1 then
  2948. 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
  2949. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  2950. 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
  2951. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  2952. repeat task.wait()
  2953. AutoHaki()
  2954. EquipWeapon(_G.SelectWeapon)
  2955. v.HumanoidRootPart.CanCollide = false
  2956. v.Humanoid.WalkSpeed = 0
  2957. v.Head.CanCollide = false
  2958. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  2959. MagnetDought = true
  2960. PosMonDoughtOpenDoor = v.HumanoidRootPart.CFrame
  2961. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,40,2))
  2962. game:GetService("VirtualUser"):CaptureController()
  2963. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  2964. 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
  2965. end
  2966. end
  2967. end
  2968. else
  2969. topos(CFrame.new(-2091.911865234375, 70.00884246826172, -12142.8359375))
  2970. MagnetDought = false
  2971. if game:GetService("ReplicatedStorage"):FindFirstChild("Cookie Crafter [Lv. 2200]") then
  2972. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Cookie Crafter [Lv. 2200]").HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  2973. else
  2974. if game:GetService("ReplicatedStorage"):FindFirstChild("Cake Guard [Lv. 2225]") then
  2975. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Cake Guard [Lv. 2225]").HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  2976. else
  2977. if game:GetService("ReplicatedStorage"):FindFirstChild("Baking Staff [Lv. 2250]") then
  2978. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Baking Staff [Lv. 2250]").HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  2979. else
  2980. if game:GetService("ReplicatedStorage"):FindFirstChild("Head Baker [Lv. 2275]") then
  2981. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Head Baker [Lv. 2275]").HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  2982. end
  2983. end
  2984. end
  2985. end
  2986. end
  2987. else
  2988. if game:GetService("Workspace").Enemies:FindFirstChild("Cake Prince [Lv. 2300] [Raid Boss]") then
  2989. topos(game:GetService("Workspace").Enemies:FindFirstChild("Cake Prince [Lv. 2300] [Raid Boss]").HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  2990. else
  2991. if game:GetService("ReplicatedStorage"):FindFirstChild("Cake Prince [Lv. 2300] [Raid Boss]") then
  2992. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Cake Prince [Lv. 2300] [Raid Boss]").HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  2993. end
  2994. end
  2995. end
  2996. end
  2997. end
  2998. end)
  2999. end
  3000. end
  3001. end)
  3002.  
  3003. Main:Toggle("Auto Dough Boss v2", _G.Autodoughking,function(value)
  3004. _G.Autodoughking = value
  3005. StopTween( _G.Autodoughking)
  3006. end)
  3007.  
  3008. Main:Toggle("Auto Dough Boss v2 Hop", _G.AutodoughkingHop,function(value)
  3009. _G.AutodoughkingHop = value
  3010. end)
  3011.  
  3012. spawn(function()
  3013. while wait() do
  3014. if _G.Autodoughking and World3 then
  3015. pcall(function()
  3016. if game:GetService("Workspace").Enemies:FindFirstChild("Dough King [Lv. 2300] [Raid Boss]") then
  3017. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3018. if v.Name == "Dough King [Lv. 2300] [Raid Boss]" then
  3019. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  3020. repeat task.wait()
  3021. AutoHaki()
  3022. EquipWeapon(_G.SelectWeapon)
  3023. v.HumanoidRootPart.CanCollide = false
  3024. v.Humanoid.WalkSpeed = 0
  3025. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3026. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,40,2))
  3027. game:GetService("VirtualUser"):CaptureController()
  3028. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  3029. sethiddenproperty(game.Players.LocalPlayer,"SimulationRadius",math.huge)
  3030. until not _G.Autodoughking or not v.Parent or v.Humanoid.Health <= 0
  3031. end
  3032. end
  3033. end
  3034. else
  3035. topos(CFrame.new(-2662.818603515625, 1062.3480224609375, -11853.6953125))
  3036. if game:GetService("ReplicatedStorage"):FindFirstChild("Dough King [Lv. 2300] [Raid Boss]") then
  3037. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Dough King [Lv. 2300] [Raid Boss]").HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  3038. else
  3039. if _G.AutodoughkingHop then
  3040. Hop()
  3041. end
  3042. end
  3043. end
  3044. end)
  3045. end
  3046. end
  3047. end)
  3048.  
  3049. Main:Seperator("Bosses")
  3050.  
  3051. local Boss = {}
  3052.  
  3053. for i, v in pairs(game:GetService("ReplicatedStorage"):GetChildren()) do
  3054. if string.find(v.Name, "Boss") then
  3055. if v.Name == "Ice Admiral [Lv. 700] [Boss]" then
  3056. else
  3057. table.insert(Boss, v.Name)
  3058. end
  3059. end
  3060. end
  3061.  
  3062. local BossName = Main:Dropdown("Select Bosses",Boss,function(value)
  3063. _G.SelectBoss = value
  3064. end)
  3065.  
  3066. Main:Button("Refresh Bosses",function()
  3067. BossName:Clear()
  3068. for i, v in pairs(game:GetService("ReplicatedStorage"):GetChildren()) do
  3069. if string.find(v.Name, "Boss") then
  3070. BossName:Add(v.Name)
  3071. end
  3072. end
  3073. end)
  3074.  
  3075. Main:Toggle("Auto Farm Bosses",_G.AutoFarmBoss,function(value)
  3076. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
  3077. _G.AutoFarmBoss = value
  3078. StopTween(_G.AutoFarmBoss)
  3079. end)
  3080.  
  3081. spawn(function()
  3082. while wait() do
  3083. if _G.AutoFarmBoss then
  3084. pcall(function()
  3085. if game:GetService("Workspace").Enemies:FindFirstChild(_G.SelectBoss) then
  3086. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3087. if v.Name == _G.SelectBoss then
  3088. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  3089. repeat task.wait()
  3090. AutoHaki()
  3091. EquipWeapon(_G.SelectWeapon)
  3092. v.HumanoidRootPart.CanCollide = false
  3093. v.Humanoid.WalkSpeed = 0
  3094. v.HumanoidRootPart.Size = Vector3.new(80,80,80)
  3095. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,40,2))
  3096. game:GetService("VirtualUser"):CaptureController()
  3097. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  3098. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  3099. until not _G.AutoFarmBoss or not v.Parent or v.Humanoid.Health <= 0
  3100. end
  3101. end
  3102. end
  3103. else
  3104. if game:GetService("ReplicatedStorage"):FindFirstChild(_G.SelectBoss) then
  3105. topos(game:GetService("ReplicatedStorage"):FindFirstChild(_G.SelectBoss).HumanoidRootPart.CFrame * CFrame.new(5,10,2))
  3106. end
  3107. end
  3108. end)
  3109. end
  3110. end
  3111. end)
  3112.  
  3113. Main:Toggle("Auto Farm All Bosses",_G.AutoAllBoss,function(value)
  3114. _G.AutoAllBoss = value
  3115. StopTween(_G.AutoAllBoss)
  3116. end)
  3117.  
  3118. Main:Toggle("Auto Farm All Bosses Hop",_G.AutoAllBossHop,function(value)
  3119. _G.AutoAllBossHop = value
  3120. end)
  3121.  
  3122. spawn(function()
  3123. while wait() do
  3124. if _G.AutoAllBoss then
  3125. pcall(function()
  3126. for i,v in pairs(game.ReplicatedStorage:GetChildren()) do
  3127. if string.find(v.Name,"Boss") then
  3128. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude < 17000 then
  3129. repeat task.wait()
  3130. AutoHaki()
  3131. EquipWeapon(_G.SelectWeapon)
  3132. v.Humanoid.WalkSpeed = 0
  3133. v.HumanoidRootPart.CanCollide = false
  3134. v.Head.CanCollide = false
  3135. v.HumanoidRootPart.Size = Vector3.new(80,80,80)
  3136. topos(v.HumanoidRootPart.CFrame*CFrame.new(2,40,2))
  3137. game:GetService'VirtualUser':CaptureController()
  3138. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  3139. sethiddenproperty(game.Players.LocalPlayer,"SimulationRadius",math.huge)
  3140. until v.Humanoid.Health <= 0 or _G.AutoAllBoss == false or not v.Parent
  3141. end
  3142. else
  3143. if _G.AutoAllBossHop then
  3144. Hop()
  3145. end
  3146. end
  3147. end
  3148. end)
  3149. end
  3150. end
  3151. end)
  3152.  
  3153. Main:Seperator("Setting")
  3154.  
  3155. Main:Toggle("Bring Mob",true,function(Mag)
  3156. _G.BringMonster = Mag
  3157. end)
  3158. spawn(function()
  3159. while task.wait() do
  3160. pcall(function()
  3161. if _G.BringMonster then
  3162. CheckQuest()
  3163. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3164. 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
  3165. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3166. v.HumanoidRootPart.CFrame = PosMon
  3167. v.Humanoid:ChangeState(14)
  3168. v.HumanoidRootPart.CanCollide = false
  3169. v.Head.CanCollide = false
  3170. if v.Humanoid:FindFirstChild("Animator") then
  3171. v.Humanoid.Animator:Destroy()
  3172. end
  3173. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  3174. 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
  3175. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3176. v.HumanoidRootPart.CFrame = PosMon
  3177. v.Humanoid:ChangeState(14)
  3178. v.HumanoidRootPart.CanCollide = false
  3179. v.Head.CanCollide = false
  3180. if v.Humanoid:FindFirstChild("Animator") then
  3181. v.Humanoid.Animator:Destroy()
  3182. end
  3183. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  3184. end
  3185. end
  3186. end
  3187. end)
  3188. end
  3189. end)
  3190.  
  3191. Main:Toggle("Auto Haki",true,function(value)
  3192. _G.AUTOHAKI = value
  3193. end)
  3194. spawn(function()
  3195. while wait(.1) do
  3196. if _G.AUTOHAKI then
  3197. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  3198. local args = {
  3199. [1] = "Buso"
  3200. }
  3201. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  3202. end
  3203. end
  3204. end
  3205. end)
  3206. Main:Toggle("Magnet",true,function(vu)
  3207. _G.MagnetActive = vu
  3208. end)
  3209.  
  3210. function bring2()
  3211. local plr = game.Players.LocalPlayer
  3212. pcall(function()
  3213. for i, v in pairs(game.workspace.Enemies:GetChildren()) do
  3214. for k, x in pairs (game.workspace.Enemies:GetChildren()) do
  3215. if x.Name == Mon then
  3216. if v.Name == Mon then
  3217. x.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame
  3218. v.HumanoidRootPart.CanCollide = false
  3219. v.HumanoidRootPart.Size = Vector3.new(80,80,80)
  3220. sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
  3221. end
  3222. end
  3223. end
  3224. end
  3225. end)
  3226. end
  3227. spawn(function()
  3228. while wait(.1) do
  3229. if _G.MagnetActive then
  3230. bring2()
  3231. end
  3232. end
  3233. end)
  3234.  
  3235. Main:Toggle("Fast Attack ",true,function(value)
  3236. _G.FastAttack = value
  3237. end)
  3238.  
  3239. Main:Toggle("Very Fast Attack Not Support Fluxus And Hydrogen",false,function(value)
  3240. local SuperFastMode = value
  3241. _G.FastAttack = value
  3242.  
  3243. local plr = game.Players.LocalPlayer
  3244.  
  3245. local CbFw = debug.getupvalues(require(plr.PlayerScripts.CombatFramework))
  3246. local CbFw2 = CbFw[2]
  3247.  
  3248. function GetCurrentBlade()
  3249. local p13 = CbFw2.activeController
  3250. local ret = p13.blades[1]
  3251. if not ret then return end
  3252. while ret.Parent~=game.Players.LocalPlayer.Character do ret=ret.Parent end
  3253. return ret
  3254. end
  3255. function AttackNoCD()
  3256. local AC = CbFw2.activeController
  3257. for i = 1, 1 do
  3258. local bladehit = require(game.ReplicatedStorage.CombatFramework.RigLib).getBladeHits(
  3259. plr.Character,
  3260. {plr.Character.HumanoidRootPart},
  3261. 60
  3262. )
  3263. local cac = {}
  3264. local hash = {}
  3265. for k, v in pairs(bladehit) do
  3266. if v.Parent:FindFirstChild("HumanoidRootPart") and not hash[v.Parent] then
  3267. table.insert(cac, v.Parent.HumanoidRootPart)
  3268. hash[v.Parent] = true
  3269. end
  3270. end
  3271. bladehit = cac
  3272. if #bladehit > 0 then
  3273. local u8 = debug.getupvalue(AC.attack, 5)
  3274. local u9 = debug.getupvalue(AC.attack, 6)
  3275. local u7 = debug.getupvalue(AC.attack, 4)
  3276. local u10 = debug.getupvalue(AC.attack, 7)
  3277. local u12 = (u8 * 798405 + u7 * 727595) % u9
  3278. local u13 = u7 * 798405
  3279. (function()
  3280. u12 = (u12 * u9 + u13) % 1099511627776
  3281. u8 = math.floor(u12 / u9)
  3282. u7 = u12 - u8 * u9
  3283. end)()
  3284. u10 = u10 + 1
  3285. debug.setupvalue(AC.attack, 5, u8)
  3286. debug.setupvalue(AC.attack, 6, u9)
  3287. debug.setupvalue(AC.attack, 4, u7)
  3288. debug.setupvalue(AC.attack, 7, u10)
  3289. pcall(function()
  3290. for k, v in pairs(AC.animator.anims.basic) do
  3291. v:Play()
  3292. end
  3293. end)
  3294. if plr.Character:FindFirstChildOfClass("Tool") and AC.blades and AC.blades[1] then
  3295. game:GetService("ReplicatedStorage").RigControllerEvent:FireServer("weaponChange",tostring(GetCurrentBlade()))
  3296. game.ReplicatedStorage.Remotes.Validator:FireServer(math.floor(u12 / 1099511627776 * 16777215), u10)
  3297. game:GetService("ReplicatedStorage").RigControllerEvent:FireServer("hit", bladehit, i, "")
  3298. end
  3299. end
  3300. end
  3301. end
  3302. local cac
  3303. if SuperFastMode then
  3304. cac=task.wait
  3305. else
  3306. cac=wait
  3307. end
  3308. while cac() do
  3309. AttackNoCD()
  3310. end
  3311.  
  3312. end)
  3313. local CameraShaker = require(game.ReplicatedStorage.Util.CameraShaker)
  3314. CombatFrameworkR = require(game:GetService("Players").LocalPlayer.PlayerScripts.CombatFramework)
  3315. y = debug.getupvalues(CombatFrameworkR)[2]
  3316. spawn(function()
  3317. game:GetService("RunService").RenderStepped:Connect(function()
  3318. if _G.FastAttack then
  3319. if typeof(y) == "table" then
  3320. pcall(function()
  3321. CameraShaker:Stop()
  3322. y.activeController.timeToNextAttack = (math.huge^math.huge^math.huge)
  3323. y.activeController.timeToNextAttack = 0
  3324. y.activeController.hitboxMagnitude = 60
  3325. y.activeController.active = false
  3326. y.activeController.timeToNextBlock = 0
  3327. y.activeController.focusStart = 1655503339.0980349
  3328. y.activeController.increment = 1
  3329. y.activeController.blocking = false
  3330. y.activeController.attacking = false
  3331. y.activeController.humanoid.AutoRotate = true
  3332. end)
  3333. end
  3334. end
  3335. end)
  3336. end)
  3337.  
  3338. spawn(function()
  3339. game:GetService("RunService").RenderStepped:Connect(function()
  3340. if _G.FastAttack == true then
  3341. game.Players.LocalPlayer.Character.Stun.Value = 0
  3342. game.Players.LocalPlayer.Character.Humanoid.Sit = false
  3343. game.Players.LocalPlayer.Character.Busy.Value = false
  3344. end
  3345. end)
  3346. end)
  3347. Main:Toggle("Remove Attack",false,function(value)
  3348. getgenv().A = require(game:GetService("ReplicatedStorage").CombatFramework.RigLib).wrapAttackAnimationAsync
  3349. getgenv().B = require(game.Players.LocalPlayer.PlayerScripts.CombatFramework.Particle).play
  3350. spawn(function()
  3351.  
  3352. while wait() do
  3353. pcall(function()
  3354. require(game:GetService("ReplicatedStorage").CombatFramework.RigLib).wrapAttackAnimationAsync =function(a1,a2,a3,a4,a5)
  3355. local GetBladeHits = require(game:GetService("ReplicatedStorage").CombatFramework.RigLib).getBladeHits(a2,a3,a4)
  3356. if GetBladeHits then
  3357. require(game:GetService("ReplicatedStorage").CombatFramework.RigLib).play = function() end
  3358. a1:Play(0.2, 0.2, 0.2)
  3359. a5(GetBladeHits)
  3360. require(game:GetService("ReplicatedStorage").CombatFramework.RigLib).play = getgenv().B
  3361. wait(.5)
  3362. a1:Stop()
  3363. end
  3364. end
  3365. end)
  3366.  
  3367. end
  3368. end)
  3369. end)
  3370.  
  3371. Main:Toggle("Delete Attack FIx",false,function(d)
  3372. _G.DeleteAttackFx = d
  3373. if _G.DeleteAttackFx == true then
  3374. while _G.DeleteAttackFx do wait()
  3375. for i, v in pairs(game.Workspace["_WorldOrigin"]:GetChildren()) do
  3376. 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
  3377. v:Destroy()
  3378. end
  3379. end
  3380. end
  3381. end
  3382. end)
  3383.  
  3384. spawn(function()
  3385. while wait() do
  3386. if _G.WhiteScreen then
  3387. for i, v in pairs(game.Workspace["_WorldOrigin"]:GetChildren()) do
  3388. 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
  3389. v:Destroy()
  3390. end
  3391. end
  3392. end
  3393. end
  3394. end)
  3395.  
  3396. Main:Toggle("White Screen",_G.WhiteScreen,function(value)
  3397. _G.WhiteScreen = value
  3398. if _G.WhiteScreen == true then
  3399. game:GetService("RunService"):Set3dRenderingEnabled(false)
  3400. elseif _G.WhiteScreen == false then
  3401. game:GetService("RunService"):Set3dRenderingEnabled(true)
  3402. end
  3403. end)
  3404.  
  3405. Main:Toggle("Mob Invisble (ทําให้มอนล่องหนทำให้ฟาร์มลื่นขึน)",_G.inv,function(value)
  3406. _G.inv = value
  3407.  
  3408. while wait() do
  3409. if _G.inv then
  3410. pcall(function()
  3411. for i,v in pairs(game:GetService("Workspace").Enemies:GetDescendants()) do
  3412. if v.ClassName == "MeshPart" then
  3413. v.Transparency = 1
  3414. end
  3415. end
  3416. for i,v in pairs(game:GetService("Workspace").Enemies:GetDescendants()) do
  3417. if v.Name == "Head" then
  3418. v.Transparency = 1
  3419. end
  3420. end
  3421. for i,v in pairs(game:GetService("Workspace").Enemies:GetDescendants()) do
  3422. if v.ClassName == "Accessory" then
  3423. v.Handle.Transparency = 1
  3424. end
  3425. end
  3426. for i,v in pairs(game:GetService("Workspace").Enemies:GetDescendants()) do
  3427. if v.ClassName == "Decal" then
  3428. v.Transparency = 1
  3429. end
  3430. end
  3431. end)
  3432. end
  3433. end
  3434. end)
  3435.  
  3436. Main:Seperator("Misc Setting Mastery")
  3437.  
  3438. _G.Kill_At = 25
  3439.  
  3440. Main:Slider("Kill At %",1,100,25,function(value)
  3441.  
  3442. _G.Kill_At = value
  3443. end)
  3444.  
  3445.  
  3446. Main:Toggle("Skill Z",true,function(value)
  3447. _G.SkillZ = value
  3448. end)
  3449.  
  3450.  
  3451. Main:Toggle("Skill X",true,function(value)
  3452. _G.SkillX = value
  3453. end)
  3454.  
  3455. Main:Toggle("Skill C",true,function(value)
  3456. _G.SkillC = value
  3457. end)
  3458.  
  3459. Main:Toggle("Skill V",true,function(value)
  3460. _G.SkillV = value
  3461. end)
  3462.  
  3463. M:Seperator("World")
  3464.  
  3465. if World1 then
  3466. M:Toggle("Auto Second Sea",_G.AutoSecondSea,function(value)
  3467. _G.AutoSecondSea = value
  3468. StopTween(_G.AutoSecondSea)
  3469. end)
  3470.  
  3471. spawn(function()
  3472. while wait() do
  3473. if _G.AutoSecondSea then
  3474. pcall(function()
  3475. local MyLevel = game:GetService("Players").LocalPlayer.Data.Level.Value
  3476. if MyLevel >= 700 and World1 then
  3477. if game:GetService("Workspace").Map.Ice.Door.CanCollide == false and game:GetService("Workspace").Map.Ice.Door.Transparency == 1 then
  3478. local CFrame1 = CFrame.new(4849.29883, 5.65138149, 719.611877)
  3479. repeat topos(CFrame1) wait() until (CFrame1.Position-game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 3 or _G.AutoSecondSea == false
  3480. wait(1.1)
  3481. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("DressrosaQuestProgress","Detective")
  3482. wait(0.5)
  3483. EquipWeapon("Key")
  3484. 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
  3485. wait(0.5)
  3486. else
  3487. if game:GetService("Workspace").Map.Ice.Door.CanCollide == false and game:GetService("Workspace").Map.Ice.Door.Transparency == 1 then
  3488. if game:GetService("Workspace").Enemies:FindFirstChild("Ice Admiral [Lv. 700] [Boss]") then
  3489. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3490. if v.Name == "Ice Admiral [Lv. 700] [Boss]" then
  3491. if not v.Humanoid.Health <= 0 then
  3492. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  3493. OldCFrameSecond = v.HumanoidRootPart.CFrame
  3494. repeat task.wait()
  3495. AutoHaki()
  3496. EquipWeapon(_G.SelectWeapon)
  3497. v.HumanoidRootPart.CanCollide = false
  3498. v.Humanoid.WalkSpeed = 0
  3499. v.Head.CanCollide = false
  3500. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3501. v.HumanoidRootPart.CFrame = OldCFrameSecond
  3502. topos(v.HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3503. game:GetService("VirtualUser"):CaptureController()
  3504. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  3505. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  3506. until not _G.AutoSecondSea or not v.Parent or v.Humanoid.Health <= 0
  3507. end
  3508. else
  3509. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelDressrosa")
  3510. end
  3511. end
  3512. end
  3513. else
  3514. if game:GetService("ReplicatedStorage"):FindFirstChild("Ice Admiral [Lv. 700] [Boss]") then
  3515. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Ice Admiral [Lv. 700] [Boss]").HumanoidRootPart.CFrame * CFrame.new(5,10,7))
  3516. end
  3517. end
  3518. end
  3519. end
  3520. end
  3521. end)
  3522. end
  3523. end
  3524. end)
  3525. end
  3526.  
  3527. if World2 then
  3528.  
  3529. M:Toggle("Auto Third Sea",_G.AutoThirdSea,function(value)
  3530. _G.AutoThirdSea = value
  3531. StopTween(_G.AutoThirdSea)
  3532. end)
  3533.  
  3534. spawn(function()
  3535. while wait() do
  3536. if _G.AutoThirdSea then
  3537. pcall(function()
  3538. if game:GetService("Players").LocalPlayer.Data.Level.Value >= 1500 and World2 then
  3539. _G.AutoFarm = false
  3540. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ZQuestProgress","Check") == 0 then
  3541. topos(CFrame.new(-1926.3221435547, 12.819851875305, 1738.3092041016))
  3542. if (CFrame.new(-1926.3221435547, 12.819851875305, 1738.3092041016).Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 10 then
  3543. wait(1.5)
  3544. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ZQuestProgress","Begin")
  3545. end
  3546. wait(1.8)
  3547. if game:GetService("Workspace").Enemies:FindFirstChild("rip_indra [Lv. 1500] [Boss]") then
  3548. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3549. if v.Name == "rip_indra [Lv. 1500] [Boss]" then
  3550. OldCFrameThird = v.HumanoidRootPart.CFrame
  3551. repeat task.wait()
  3552. AutoHaki()
  3553. EquipWeapon(_G.SelectWeapon)
  3554. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  3555. v.HumanoidRootPart.CFrame = OldCFrameThird
  3556. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3557. v.HumanoidRootPart.CanCollide = false
  3558. v.Humanoid.WalkSpeed = 0
  3559. game:GetService'VirtualUser':CaptureController()
  3560. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  3561. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelZou")
  3562. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  3563. until _G.AutoThirdSea == false or v.Humanoid.Health <= 0 or not v.Parent
  3564. end
  3565. end
  3566. 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
  3567. topos(CFrame.new(-26880.93359375, 22.848554611206, 473.18951416016))
  3568. end
  3569. end
  3570. end
  3571. end)
  3572. end
  3573. end
  3574. end)
  3575. end
  3576.  
  3577. if World2 then
  3578.  
  3579. M:Toggle("Auto Farm Factory",_G.AutoFactory,function(value)
  3580. _G.AutoFactory = value
  3581. StopTween(_G.AutoFactory)
  3582. end)
  3583.  
  3584. spawn(function()
  3585. while wait() do
  3586. pcall(function()
  3587. if _G.AutoFactory then
  3588. if game:GetService("Workspace").Enemies:FindFirstChild("Core") then
  3589. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3590. if v.Name == "Core" and v.Humanoid.Health > 0 then
  3591. repeat task.wait()
  3592. AutoHaki()
  3593. EquipWeapon(_G.SelectWeapon)
  3594. topos(CFrame.new(448.46756, 199.356781, -441.389252))
  3595. game:GetService("VirtualUser"):CaptureController()
  3596. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  3597. until v.Humanoid.Health <= 0 or _G.AutoFactory == false
  3598. end
  3599. end
  3600. else
  3601. topos(CFrame.new(448.46756, 199.356781, -441.389252))
  3602. end
  3603. end
  3604. end)
  3605. end
  3606. end)
  3607. elseif World3 then
  3608. M:Toggle("Auto Mystic Island",_G.AutoMysticIsland,function(value)
  3609. _G.AutoMysticIsland = value
  3610. end)
  3611.  
  3612. spawn(function()
  3613. while wait() do
  3614. if _G.AutoMysticIsland then
  3615. pcall(function()
  3616. if game:GetService("Workspace").Map:FindFirstChild("MysticIsland") then
  3617. topos(game:GetService("Workspace").Map:FindFirstChild("MysticIsland").HumanoidRootPart.CFrame * CFrame.new(0,500,-100))
  3618. end
  3619. end)
  3620. end
  3621. end
  3622. end)
  3623. end
  3624.  
  3625. M:Seperator("Misc Weapon")
  3626. WeaponList = {}
  3627.  
  3628. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  3629. if v:IsA("Tool") then
  3630. table.insert(WeaponList ,v.Name)
  3631. end
  3632. end
  3633.  
  3634. local SelectWeapona = M:Dropdown("Select Weapon",WeaponList,function(value)
  3635. _G.SelectWeapon = value
  3636. end)
  3637.  
  3638. M:Button("Refresh Tools",function()
  3639. SelectWeapona:Clear()
  3640. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  3641. SelectWeapona:Add(v.Name)
  3642. end
  3643. end)
  3644.  
  3645.  
  3646.  
  3647. M:Seperator("Fighting Style")
  3648.  
  3649. M:Toggle("Auto Superhuman",_G.AutoSuperhuman,function(value)
  3650. _G.AutoSuperhuman = value
  3651. end)
  3652.  
  3653. spawn(function()
  3654. pcall(function()
  3655. while wait() do
  3656. if _G.AutoSuperhuman then
  3657. if game.Players.LocalPlayer.Backpack:FindFirstChild("Combat") or game.Players.LocalPlayer.Character:FindFirstChild("Combat") and game:GetService("Players")["LocalPlayer"].Data.Beli.Value >= 150000 then
  3658. UnEquipWeapon("Combat")
  3659. wait(.1)
  3660. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyBlackLeg")
  3661. end
  3662. if game.Players.LocalPlayer.Character:FindFirstChild("Superhuman") or game.Players.LocalPlayer.Backpack:FindFirstChild("Superhuman") then
  3663. _G.SelectWeapon = "Superhuman"
  3664. end
  3665. 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
  3666. if game.Players.LocalPlayer.Backpack:FindFirstChild("Black Leg") and game.Players.LocalPlayer.Backpack:FindFirstChild("Black Leg").Level.Value <= 299 then
  3667. _G.SelectWeapon = "Black Leg"
  3668. end
  3669. if game.Players.LocalPlayer.Backpack:FindFirstChild("Electro") and game.Players.LocalPlayer.Backpack:FindFirstChild("Electro").Level.Value <= 299 then
  3670. _G.SelectWeapon = "Electro"
  3671. end
  3672. if game.Players.LocalPlayer.Backpack:FindFirstChild("Fishman Karate") and game.Players.LocalPlayer.Backpack:FindFirstChild("Fishman Karate").Level.Value <= 299 then
  3673. _G.SelectWeapon = "Fishman Karate"
  3674. end
  3675. if game.Players.LocalPlayer.Backpack:FindFirstChild("Dragon Claw") and game.Players.LocalPlayer.Backpack:FindFirstChild("Dragon Claw").Level.Value <= 299 then
  3676. _G.SelectWeapon = "Dragon Claw"
  3677. end
  3678. 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
  3679. UnEquipWeapon("Black Leg")
  3680. wait(.1)
  3681. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectro")
  3682. end
  3683. 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
  3684. UnEquipWeapon("Black Leg")
  3685. wait(.1)
  3686. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectro")
  3687. end
  3688. 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
  3689. UnEquipWeapon("Electro")
  3690. wait(.1)
  3691. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyFishmanKarate")
  3692. end
  3693. 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
  3694. UnEquipWeapon("Electro")
  3695. wait(.1)
  3696. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyFishmanKarate")
  3697. end
  3698. 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
  3699. UnEquipWeapon("Fishman Karate")
  3700. wait(.1)
  3701. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","DragonClaw","1")
  3702. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","DragonClaw","2")
  3703. end
  3704. 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
  3705. UnEquipWeapon("Fishman Karate")
  3706. wait(.1)
  3707. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","DragonClaw","1")
  3708. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","DragonClaw","2")
  3709. end
  3710. 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
  3711. UnEquipWeapon("Dragon Claw")
  3712. wait(.1)
  3713. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySuperhuman")
  3714. end
  3715. 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
  3716. UnEquipWeapon("Dragon Claw")
  3717. wait(.1)
  3718. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySuperhuman")
  3719. end
  3720. end
  3721. end
  3722. end
  3723. end)
  3724. end)
  3725.  
  3726. M:Toggle("Auto DeathStep",_G.AutoDeathStep,function(value)
  3727. _G.AutoDeathStep = value
  3728. end)
  3729.  
  3730. spawn(function()
  3731. while wait() do wait()
  3732. if _G.AutoDeathStep then
  3733. 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
  3734. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Black Leg") and game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Black Leg").Level.Value >= 450 then
  3735. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDeathStep")
  3736. _G.SelectWeapon = "Death Step"
  3737. end
  3738. if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Black Leg") and game:GetService("Players").LocalPlayer.Character:FindFirstChild("Black Leg").Level.Value >= 450 then
  3739. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDeathStep")
  3740. _G.SelectWeapon = "Death Step"
  3741. end
  3742. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Black Leg") and game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Black Leg").Level.Value <= 449 then
  3743. _G.SelectWeapon = "Black Leg"
  3744. end
  3745. else
  3746. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyBlackLeg")
  3747. end
  3748. end
  3749. end
  3750. end)
  3751.  
  3752. M:Toggle("Auto Sharkman Karate",_G.AutoSharkman,function(value)
  3753. _G.AutoSharkman = value
  3754. end)
  3755.  
  3756. spawn(function()
  3757. pcall(function()
  3758. while wait() do
  3759. if _G.AutoSharkman then
  3760. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyFishmanKarate")
  3761. if string.find(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySharkmanKarate"), "keys") then
  3762. if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Water Key") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Water Key") then
  3763. topos(CFrame.new(-2604.6958, 239.432526, -10315.1982, 0.0425701365, 0, -0.999093413, 0, 1, 0, 0.999093413, 0, 0.0425701365))
  3764. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySharkmanKarate")
  3765. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Fishman Karate") and game:GetService("Players").LocalPlayer.Character:FindFirstChild("Fishman Karate").Level.Value >= 400 then
  3766. else
  3767. Ms = "Tide Keeper [Lv. 1475] [Boss]"
  3768. if game:GetService("Workspace").Enemies:FindFirstChild(Ms) then
  3769. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  3770. if v.Name == Ms then
  3771. OldCFrameShark = v.HumanoidRootPart.CFrame
  3772. repeat task.wait()
  3773. AutoHaki()
  3774. EquipWeapon(_G.SelectWeapon)
  3775. v.Head.CanCollide = false
  3776. v.Humanoid.WalkSpeed = 0
  3777. v.HumanoidRootPart.CanCollide = false
  3778. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3779. v.HumanoidRootPart.CFrame = OldCFrameShark
  3780. topos(v.HumanoidRootPart.CFrame*CFrame.new(2,20,2))
  3781. game:GetService("VirtualUser"):CaptureController()
  3782. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 670))
  3783. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  3784. 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")
  3785. end
  3786. end
  3787. else
  3788. 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))
  3789. wait(3)
  3790. end
  3791. end
  3792. else
  3793. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySharkmanKarate")
  3794. end
  3795. end
  3796. end
  3797. end)
  3798. end)
  3799.  
  3800. M:Toggle("Auto Electric Claw",_G.AutoElectricClaw,function(value)
  3801. _G.AutoElectricClaw = value
  3802. StopTween(_G.AutoElectricClaw)
  3803. end)
  3804.  
  3805. spawn(function()
  3806. pcall(function()
  3807. while wait() do
  3808. if _G.AutoElectricClaw then
  3809. 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
  3810. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Electro") and game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Electro").Level.Value >= 400 then
  3811. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw")
  3812. _G.SelectWeapon = "Electric Claw"
  3813. end
  3814. if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Electro") and game:GetService("Players").LocalPlayer.Character:FindFirstChild("Electro").Level.Value >= 400 then
  3815. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw")
  3816. _G.SelectWeapon = "Electric Claw"
  3817. end
  3818. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Electro") and game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Electro").Level.Value <= 399 then
  3819. _G.SelectWeapon = "Electro"
  3820. end
  3821. else
  3822. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectro")
  3823. end
  3824. end
  3825. if _G.AutoElectricClaw then
  3826. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Electro") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Electro") then
  3827. 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
  3828. if _G.AutoFarm == false then
  3829. repeat task.wait()
  3830. topos(CFrame.new(-10371.4717, 330.764496, -10131.4199))
  3831. until not _G.AutoElectricClaw or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position - CFrame.new(-10371.4717, 330.764496, -10131.4199).Position).Magnitude <= 10
  3832. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw","Start")
  3833. wait(2)
  3834. repeat task.wait()
  3835. topos(CFrame.new(-12550.532226563, 336.22631835938, -7510.4233398438))
  3836. until not _G.AutoElectricClaw or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position - CFrame.new(-12550.532226563, 336.22631835938, -7510.4233398438).Position).Magnitude <= 10
  3837. wait(1)
  3838. repeat task.wait()
  3839. topos(CFrame.new(-10371.4717, 330.764496, -10131.4199))
  3840. until not _G.AutoElectricClaw or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position - CFrame.new(-10371.4717, 330.764496, -10131.4199).Position).Magnitude <= 10
  3841. wait(1)
  3842. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw")
  3843. elseif _G.AutoFarm == true then
  3844. _G.AutoFarm = false
  3845. wait(1)
  3846. repeat task.wait()
  3847. topos(CFrame.new(-10371.4717, 330.764496, -10131.4199))
  3848. until not _G.AutoElectricClaw or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position - CFrame.new(-10371.4717, 330.764496, -10131.4199).Position).Magnitude <= 10
  3849. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw","Start")
  3850. wait(2)
  3851. repeat task.wait()
  3852. topos(CFrame.new(-12550.532226563, 336.22631835938, -7510.4233398438))
  3853. until not _G.AutoElectricClaw or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position - CFrame.new(-12550.532226563, 336.22631835938, -7510.4233398438).Position).Magnitude <= 10
  3854. wait(1)
  3855. repeat task.wait()
  3856. topos(CFrame.new(-10371.4717, 330.764496, -10131.4199))
  3857. until not _G.AutoElectricClaw or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position - CFrame.new(-10371.4717, 330.764496, -10131.4199).Position).Magnitude <= 10
  3858. wait(1)
  3859. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw")
  3860. _G.SelectWeapon = "Electric Claw"
  3861. wait(.1)
  3862. _G.AutoFarm = true
  3863. end
  3864. end
  3865. end
  3866. end
  3867. end
  3868. end)
  3869. end)
  3870.  
  3871. M:Toggle("Auto Dragon Talon",_G.AutoDragonTalon,function(value)
  3872. _G.AutoDragonTalon = value
  3873. end)
  3874.  
  3875. spawn(function()
  3876. while wait() do
  3877. if _G.AutoDragonTalon then
  3878. 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
  3879. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Dragon Claw") and game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Dragon Claw").Level.Value >= 400 then
  3880. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDragonTalon")
  3881. _G.SelectWeapon = "Dragon Talon"
  3882. end
  3883. if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Dragon Claw") and game:GetService("Players").LocalPlayer.Character:FindFirstChild("Dragon Claw").Level.Value >= 400 then
  3884. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDragonTalon")
  3885. _G.SelectWeapon = "Dragon Talon"
  3886. end
  3887. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Dragon Claw") and game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Dragon Claw").Level.Value <= 399 then
  3888. _G.SelectWeapon = "Dragon Claw"
  3889. end
  3890. else
  3891. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","DragonClaw","2")
  3892. end
  3893. end
  3894. end
  3895. end)
  3896.  
  3897. M:Toggle("Auto God Human",_G.Auto_God_Human,function(value)
  3898. _G.Auto_God_Human = value
  3899. end)
  3900.  
  3901. spawn(function()
  3902. while task.wait() do
  3903. if _G.Auto_God_Human then
  3904. pcall(function()
  3905. if game.Players.LocalPlayer.Character:FindFirstChild("Superhuman") or game.Players.LocalPlayer.Backpack:FindFirstChild("Superhuman") or 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") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Fishman Karate") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Fishman Karate") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Sharkman Karate") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Sharkman Karate") or game.Players.LocalPlayer.Backpack:FindFirstChild("Electro") or game.Players.LocalPlayer.Character:FindFirstChild("Electro") or game.Players.LocalPlayer.Backpack:FindFirstChild("Electric Claw") or game.Players.LocalPlayer.Character:FindFirstChild("Electric Claw") or 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") or game.Players.LocalPlayer.Character:FindFirstChild("Godhuman") or game.Players.LocalPlayer.Backpack:FindFirstChild("Godhuman") then
  3906. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySuperhuman",true) == 1 then
  3907. if game.Players.LocalPlayer.Backpack:FindFirstChild("Superhuman") and game.Players.LocalPlayer.Backpack:FindFirstChild("Superhuman").Level.Value >= 400 or game.Players.LocalPlayer.Character:FindFirstChild("Superhuman") and game.Players.LocalPlayer.Character:FindFirstChild("Superhuman").Level.Value >= 400 then
  3908. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDeathStep")
  3909. end
  3910. else
  3911. game.StarterGui:SetCore("SendNotification", {
  3912. Title = "Notification",
  3913. Text = "Not Have Superhuman" ,
  3914. Icon = "http://www.roblox.com/asset/?id=",
  3915. Duration = 2.5
  3916. })
  3917. end
  3918. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDeathStep",true) == 1 then
  3919. if game.Players.LocalPlayer.Backpack:FindFirstChild("Death Step") and game.Players.LocalPlayer.Backpack:FindFirstChild("Death Step").Level.Value >= 400 or game.Players.LocalPlayer.Character:FindFirstChild("Death Step") and game.Players.LocalPlayer.Character:FindFirstChild("Death Step").Level.Value >= 400 then
  3920. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySharkmanKarate")
  3921. end
  3922. else
  3923. game.StarterGui:SetCore("SendNotification", {
  3924. Title = "Notification",
  3925. Text = "Not Have Death Step" ,
  3926. Icon = "http://www.roblox.com/asset/?id=",
  3927. Duration = 2.5
  3928. })
  3929. end
  3930. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySharkmanKarate",true) == 1 then
  3931. if game.Players.LocalPlayer.Backpack:FindFirstChild("Sharkman Karate") and game.Players.LocalPlayer.Backpack:FindFirstChild("Sharkman Karate").Level.Value >= 400 or game.Players.LocalPlayer.Character:FindFirstChild("Sharkman Karate") and game.Players.LocalPlayer.Character:FindFirstChild("Sharkman Karate").Level.Value >= 400 then
  3932. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw")
  3933. end
  3934. else
  3935. game.StarterGui:SetCore("SendNotification", {
  3936. Title = "Notification",
  3937. Text = "Not Have SharkMan Karate" ,
  3938. Icon = "http://www.roblox.com/asset/?id=",
  3939. Duration = 2.5
  3940. })
  3941. end
  3942. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw",true) == 1 then
  3943. if game.Players.LocalPlayer.Backpack:FindFirstChild("Electric Claw") and game.Players.LocalPlayer.Backpack:FindFirstChild("Electric Claw").Level.Value >= 400 or game.Players.LocalPlayer.Character:FindFirstChild("Electric Claw") and game.Players.LocalPlayer.Character:FindFirstChild("Electric Claw").Level.Value >= 400 then
  3944. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDragonTalon")
  3945. end
  3946. else
  3947. game.StarterGui:SetCore("SendNotification", {
  3948. Title = "Notification",
  3949. Text = "Not Have Electric Claw" ,
  3950. Icon = "http://www.roblox.com/asset/?id=",
  3951. Duration = 2.5
  3952. })
  3953. end
  3954. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDragonTalon",true) == 1 then
  3955. if game.Players.LocalPlayer.Backpack:FindFirstChild("Dragon Talon") and game.Players.LocalPlayer.Backpack:FindFirstChild("Dragon Talon").Level.Value >= 400 or game.Players.LocalPlayer.Character:FindFirstChild("Dragon Talon") and game.Players.LocalPlayer.Character:FindFirstChild("Dragon Talon").Level.Value >= 400 then
  3956. if string.find(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyGodhuman",true), "Bring") then
  3957. game.StarterGui:SetCore("SendNotification", {
  3958. Title = "Notification",
  3959. Text = "Not Have Enough Material" ,
  3960. Icon = "http://www.roblox.com/asset/?id=",
  3961. Duration = 2.5
  3962. })
  3963. else
  3964. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyGodhuman")
  3965. end
  3966. end
  3967. else
  3968. game.StarterGui:SetCore("SendNotification", {
  3969. Title = "Notification",
  3970. Text = "Not Have Dragon Talon" ,
  3971. Icon = "http://www.roblox.com/asset/?id=",
  3972. Duration = 2.5
  3973. })
  3974. end
  3975. else
  3976. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySuperhuman")
  3977. end
  3978. end)
  3979. end
  3980. end
  3981. end)
  3982.  
  3983.  
  3984. M:Seperator("Misc Mastery")
  3985.  
  3986. M:Toggle("Auto Farm BF Mastery",_G.AutoFarmFruitMastery,function(value)
  3987. _G.AutoFarmFruitMastery = value
  3988. StopTween(_G.AutoFarmFruitMastery)
  3989. if _G.AutoFarmFruitMastery == false then
  3990. UseSkill = false
  3991. end
  3992. end)
  3993.  
  3994. spawn(function()
  3995. while wait() do
  3996. if _G.AutoFarmFruitMastery then
  3997. pcall(function()
  3998. local QuestTitle = game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text
  3999. if not string.find(QuestTitle, NameMon) then
  4000. Magnet = false
  4001. UseSkill = false
  4002. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
  4003. end
  4004. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false then
  4005. StartMasteryFruitMagnet = false
  4006. UseSkill = false
  4007. CheckQuest()
  4008. repeat wait()
  4009. topos(CFrameQuest)
  4010. until (CFrameQuest.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 3 or not _G.AutoFarmFruitMastery
  4011. if (CFrameQuest.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 3 then
  4012. wait(1.2)
  4013. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StartQuest",NameQuest,LevelQuest)
  4014. wait(0.5)
  4015. end
  4016. elseif game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == true then
  4017. CheckQuest()
  4018. if game:GetService("Workspace").Enemies:FindFirstChild(Mon) then
  4019. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4020. if v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 then
  4021. if v.Name == Mon then
  4022. if string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, NameMon) then
  4023. HealthMs = v.Humanoid.MaxHealth * _G.Kill_At/100
  4024. repeat task.wait()
  4025. if v.Humanoid.Health <= HealthMs then
  4026. AutoHaki()
  4027. EquipWeapon(game:GetService("Players").LocalPlayer.Data.DevilFruit.Value)
  4028. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  4029. v.HumanoidRootPart.CanCollide = false
  4030. PosMonMasteryFruit = v.HumanoidRootPart.CFrame
  4031. v.Humanoid.WalkSpeed = 0
  4032. v.Head.CanCollide = false
  4033. UseSkill = true
  4034. else
  4035. UseSkill = false
  4036. AutoHaki()
  4037. EquipWeapon(_G.SelectWeapon)
  4038. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  4039. v.HumanoidRootPart.CanCollide = false
  4040. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4041. PosMonMasteryFruit = v.HumanoidRootPart.CFrame
  4042. v.Humanoid.WalkSpeed = 0
  4043. v.Head.CanCollide = false
  4044. end
  4045. StartMasteryFruitMagnet = true
  4046. game:GetService'VirtualUser':CaptureController()
  4047. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  4048. until not _G.AutoFarmFruitMastery or v.Humanoid.Health <= 0 or not v.Parent or game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false
  4049. else
  4050. UseSkill = false
  4051. StartMasteryFruitMagnet = false
  4052. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
  4053. end
  4054. end
  4055. end
  4056. end
  4057. else
  4058. StartMasteryFruitMagnet = false
  4059. UseSkill = false
  4060. local Mob = game:GetService("ReplicatedStorage"):FindFirstChild(Mon)
  4061. if Mob then
  4062. topos(Mob.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  4063. else
  4064. if game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame.Y <= 1 then
  4065. game:GetService("Players").LocalPlayer.Character.Humanoid.Jump = true
  4066. task.wait()
  4067. game:GetService("Players").LocalPlayer.Character.Humanoid.Jump = false
  4068. end
  4069. end
  4070. end
  4071. end
  4072. end)
  4073. end
  4074. end
  4075. end)
  4076.  
  4077. spawn(function()
  4078. while wait() do
  4079. if UseSkill then
  4080. pcall(function()
  4081. CheckQuest()
  4082. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4083. if game:GetService("Players").LocalPlayer.Character:FindFirstChild(game:GetService("Players").LocalPlayer.Data.DevilFruit.Value) then
  4084. MasBF = game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Data.DevilFruit.Value].Level.Value
  4085. elseif game:GetService("Players").LocalPlayer.Backpack:FindFirstChild(game:GetService("Players").LocalPlayer.Data.DevilFruit.Value) then
  4086. MasBF = game:GetService("Players").LocalPlayer.Backpack[game:GetService("Players").LocalPlayer.Data.DevilFruit.Value].Level.Value
  4087. end
  4088. if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Dragon-Dragon") then
  4089. if _G.SkillZ then
  4090. local args = {
  4091. [1] = PosMonMasteryFruit.Position
  4092. }
  4093. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  4094. game:GetService("VirtualInputManager"):SendKeyEvent(true,"Z",false,game)
  4095. game:GetService("VirtualInputManager"):SendKeyEvent(false,"Z",false,game)
  4096. end
  4097. if _G.SkillX then
  4098. local args = {
  4099. [1] = PosMonMasteryFruit.Position
  4100. }
  4101. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  4102. game:GetService("VirtualInputManager"):SendKeyEvent(true,"X",false,game)
  4103. game:GetService("VirtualInputManager"):SendKeyEvent(false,"X",false,game)
  4104. end
  4105. if _G.SkillC then
  4106. local args = {
  4107. [1] = PosMonMasteryFruit.Position
  4108. }
  4109. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  4110. game:GetService("VirtualInputManager"):SendKeyEvent(true,"C",false,game)
  4111. wait(2)
  4112. game:GetService("VirtualInputManager"):SendKeyEvent(false,"C",false,game)
  4113. end
  4114. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Venom-Venom") then
  4115. if _G.SkillZ then
  4116. local args = {
  4117. [1] = PosMonMasteryFruit.Position
  4118. }
  4119. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  4120. game:GetService("VirtualInputManager"):SendKeyEvent(true,"Z",false,game)
  4121. game:GetService("VirtualInputManager"):SendKeyEvent(false,"Z",false,game)
  4122. end
  4123. if _G.SkillX then
  4124. local args = {
  4125. [1] = PosMonMasteryFruit.Position
  4126. }
  4127. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  4128. game:GetService("VirtualInputManager"):SendKeyEvent(true,"X",false,game)
  4129. game:GetService("VirtualInputManager"):SendKeyEvent(false,"X",false,game)
  4130. end
  4131. if _G.SkillC then
  4132. local args = {
  4133. [1] = PosMonMasteryFruit.Position
  4134. }
  4135. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  4136. game:GetService("VirtualInputManager"):SendKeyEvent(true,"C",false,game)
  4137. wait(2)
  4138. game:GetService("VirtualInputManager"):SendKeyEvent(false,"C",false,game)
  4139. end
  4140. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Human-Human: Buddha") then
  4141. if _G.SkillZ and game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Size == Vector3.new(2, 2.0199999809265, 1) then
  4142. local args = {
  4143. [1] = PosMonMasteryFruit.Position
  4144. }
  4145. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  4146. game:GetService("VirtualInputManager"):SendKeyEvent(true,"Z",false,game)
  4147. game:GetService("VirtualInputManager"):SendKeyEvent(false,"Z",false,game)
  4148. end
  4149. if _G.SkillX then
  4150. local args = {
  4151. [1] = PosMonMasteryFruit.Position
  4152. }
  4153. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  4154. game:GetService("VirtualInputManager"):SendKeyEvent(true,"X",false,game)
  4155. game:GetService("VirtualInputManager"):SendKeyEvent(false,"X",false,game)
  4156. end
  4157. if _G.SkillC then
  4158. local args = {
  4159. [1] = PosMonMasteryFruit.Position
  4160. }
  4161. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  4162. game:GetService("VirtualInputManager"):SendKeyEvent(true,"C",false,game)
  4163. game:GetService("VirtualInputManager"):SendKeyEvent(false,"C",false,game)
  4164. end
  4165. if _G.SkillV then
  4166. local args = {
  4167. [1] = PosMonMasteryFruit.Position
  4168. }
  4169. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  4170. game:GetService("VirtualInputManager"):SendKeyEvent(true,"V",false,game)
  4171. game:GetService("VirtualInputManager"):SendKeyEvent(false,"V",false,game)
  4172. end
  4173. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild(game:GetService("Players").LocalPlayer.Data.DevilFruit.Value) then
  4174. if _G.SkillZ then
  4175. local args = {
  4176. [1] = PosMonMasteryFruit.Position
  4177. }
  4178. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  4179. game:GetService("VirtualInputManager"):SendKeyEvent(true,"Z",false,game)
  4180. game:GetService("VirtualInputManager"):SendKeyEvent(false,"Z",false,game)
  4181. end
  4182. if _G.SkillX then
  4183. local args = {
  4184. [1] = PosMonMasteryFruit.Position
  4185. }
  4186. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  4187. game:GetService("VirtualInputManager"):SendKeyEvent(true,"X",false,game)
  4188. game:GetService("VirtualInputManager"):SendKeyEvent(false,"X",false,game)
  4189. end
  4190. if _G.SkillC then
  4191. local args = {
  4192. [1] = PosMonMasteryFruit.Position
  4193. }
  4194. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  4195. game:GetService("VirtualInputManager"):SendKeyEvent(true,"C",false,game)
  4196. game:GetService("VirtualInputManager"):SendKeyEvent(false,"C",false,game)
  4197. end
  4198. if _G.SkillV then
  4199. local args = {
  4200. [1] = PosMonMasteryFruit.Position
  4201. }
  4202. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name].RemoteEvent:FireServer(unpack(args))
  4203. game:GetService("VirtualInputManager"):SendKeyEvent(true,"V",false,game)
  4204. game:GetService("VirtualInputManager"):SendKeyEvent(false,"V",false,game)
  4205. end
  4206. end
  4207. end
  4208. end)
  4209. end
  4210. end
  4211. end)
  4212.  
  4213. spawn(function()
  4214. game:GetService("RunService").RenderStepped:Connect(function()
  4215. pcall(function()
  4216. if UseSkill then
  4217. for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.Notifications:GetChildren()) do
  4218. if v.Name == "NotificationTemplate" then
  4219. if string.find(v.Text,"Skill locked!") then
  4220. v:Destroy()
  4221. end
  4222. end
  4223. end
  4224. end
  4225. end)
  4226. end)
  4227. end)
  4228.  
  4229. spawn(function()
  4230. pcall(function()
  4231. game:GetService("RunService").RenderStepped:Connect(function()
  4232. if UseSkill then
  4233. local args = {
  4234. [1] = PosMonMasteryFruit.Position
  4235. }
  4236. game:GetService("Players").LocalPlayer.Character[game:GetService("Players").LocalPlayer.Data.DevilFruit.Value].RemoteEvent:FireServer(unpack(args))
  4237. end
  4238. end)
  4239. end)
  4240. end)
  4241.  
  4242. M:Toggle("Auto Farm Gun Mastery",_G.AutoFarmGunMastery,function(value)
  4243. _G.AutoFarmGunMastery = value
  4244. StopTween(_G.AutoFarmGunMastery)
  4245. end)
  4246.  
  4247. spawn(function()
  4248. pcall(function()
  4249. while wait() do
  4250. if _G.AutoFarmGunMastery then
  4251. local QuestTitle = game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text
  4252. if not string.find(QuestTitle, NameMon) then
  4253. Magnet = false
  4254. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
  4255. end
  4256. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false then
  4257. StartMasteryGunMagnet = false
  4258. CheckQuest()
  4259. topos(CFrameQuest)
  4260. if (CFrameQuest.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 10 then
  4261. wait(1.2)
  4262. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StartQuest", NameQuest, LevelQuest)
  4263. end
  4264. elseif game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == true then
  4265. CheckQuest()
  4266. if game:GetService("Workspace").Enemies:FindFirstChild(Mon) then
  4267. pcall(function()
  4268. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4269. if v.Name == Mon then
  4270. repeat task.wait()
  4271. if string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, NameMon) then
  4272. HealthMin = v.Humanoid.MaxHealth * _G.Kill_At/100
  4273. if v.Humanoid.Health <= HealthMin then
  4274. EquipWeapon(SelectWeaponGun)
  4275. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  4276. v.Humanoid.WalkSpeed = 0
  4277. v.HumanoidRootPart.CanCollide = false
  4278. v.HumanoidRootPart.Size = Vector3.new(2,2,1)
  4279. v.Head.CanCollide = false
  4280. local args = {
  4281. [1] = v.HumanoidRootPart.Position,
  4282. [2] = v.HumanoidRootPart
  4283. }
  4284. game:GetService("Players").LocalPlayer.Character[SelectWeaponGun].RemoteFunctionShoot:InvokeServer(unpack(args))
  4285. else
  4286. AutoHaki()
  4287. EquipWeapon(_G.SelectWeapon)
  4288. v.Humanoid.WalkSpeed = 0
  4289. v.HumanoidRootPart.CanCollide = false
  4290. v.Head.CanCollide = false
  4291. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4292. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  4293. game:GetService'VirtualUser':CaptureController()
  4294. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  4295. end
  4296. StartMasteryGunMagnet = true
  4297. PosMonMasteryGun = v.HumanoidRootPart.CFrame
  4298. else
  4299. StartMasteryGunMagnet = false
  4300. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
  4301. end
  4302. until v.Humanoid.Health <= 0 or _G.AutoFarmGunMastery == false or game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false
  4303. StartMasteryGunMagnet = false
  4304. end
  4305. end
  4306. end)
  4307. else
  4308. StartMasteryGunMagnet = false
  4309. local Mob = game:GetService("ReplicatedStorage"):FindFirstChild(Mon)
  4310. if Mob then
  4311. topos(Mob.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  4312. else
  4313. if game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame.Y <= 1 then
  4314. game:GetService("Players").LocalPlayer.Character.Humanoid.Jump = true
  4315. task.wait()
  4316. game:GetService("Players").LocalPlayer.Character.Humanoid.Jump = false
  4317. end
  4318. end
  4319. end
  4320. end
  4321. end
  4322. end
  4323. end)
  4324. end)
  4325.  
  4326.  
  4327. M:Seperator("Misc Buddy Sword")
  4328.  
  4329. M:Toggle("Auto Buddy Sword",_G.AutoBudySword,function(value)
  4330. _G.AutoBudySword = value
  4331. StopTween(_G.AutoBudySword)
  4332. end)
  4333.  
  4334. M:Toggle("Auto Buddy Sword Hop",_G.AutoBudySwordHop,function(value)
  4335. _G.AutoBudySwordHop = value
  4336. end)
  4337.  
  4338. spawn(function()
  4339. while wait() do
  4340. if _G.AutoBudySword and World3 then
  4341. pcall(function()
  4342. if game:GetService("Workspace").Enemies:FindFirstChild("Cake Queen [Lv. 2175] [Boss]") then
  4343. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4344. if v.Name == "Cake Queen [Lv. 2175] [Boss]" then
  4345. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  4346. repeat task.wait()
  4347. AutoHaki()
  4348. EquipWeapon(_G.SelectWeapon)
  4349. v.HumanoidRootPart.CanCollide = false
  4350. v.Humanoid.WalkSpeed = 0
  4351. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4352. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,40,2))
  4353. game:GetService("VirtualUser"):CaptureController()
  4354. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  4355. sethiddenproperty(game.Players.LocalPlayer,"SimulationRadius",math.huge)
  4356. until not _G.AutoBudySword or not v.Parent or v.Humanoid.Health <= 0
  4357. end
  4358. end
  4359. end
  4360. else
  4361. topos(CFrame.new(-731.2034301757812, 381.5658874511719, -11198.4951171875))
  4362. if game:GetService("ReplicatedStorage"):FindFirstChild("Cake Queen [Lv. 2175] [Boss]") then
  4363. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Cake Queen [Lv. 2175] [Boss]").HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  4364. else
  4365. if _G.AutoBudySwordHop then
  4366. Hop()
  4367. end
  4368. end
  4369. end
  4370. end)
  4371. end
  4372. end
  4373. end)
  4374.  
  4375. M:Seperator("Soul Guitar")
  4376.  
  4377. M:Toggle("Auto Soul Guitar",_G.AutoNevaSoulGuitar,function(value)
  4378. _G.AutoNevaSoulGuitar = value
  4379. StopTween(_G.AutoNevaSoulGuitar)
  4380. end)
  4381.  
  4382. spawn(function()
  4383. while wait() do
  4384. pcall(function()
  4385. if _G.AutoNevaSoulGuitar and World3 then
  4386. if GetWeaponInventory("Soul Guitar") == false then
  4387. if (CFrame.new(-9681.458984375, 6.139880657196045, 6341.3720703125).Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 5000 then
  4388. if game:GetService("Workspace").NPCs:FindFirstChild("Skeleton Machine") then
  4389. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("soulGuitarBuy",true)
  4390. else
  4391. if game:GetService("Workspace").Map["Haunted Castle"].Candle1.Transparency == 0 then
  4392. if game:GetService("Workspace").Map["Haunted Castle"].Placard1.Left.Part.Transparency == 0 then
  4393. Quest2 = true
  4394. repeat wait() topos(CFrame.new(-8762.69140625, 176.84783935546875, 6171.3076171875)) until (CFrame.new(-8762.69140625, 176.84783935546875, 6171.3076171875).Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 3 or not _G.AutoNevaSoulGuitar
  4395. wait(1)
  4396. fireclickdetector(game:GetService("Workspace").Map["Haunted Castle"].Placard7.Left.ClickDetector)
  4397. wait(1)
  4398. fireclickdetector(game:GetService("Workspace").Map["Haunted Castle"].Placard6.Left.ClickDetector)
  4399. wait(1)
  4400. fireclickdetector(game:GetService("Workspace").Map["Haunted Castle"].Placard5.Left.ClickDetector)
  4401. wait(1)
  4402. fireclickdetector(game:GetService("Workspace").Map["Haunted Castle"].Placard4.Right.ClickDetector)
  4403. wait(1)
  4404. fireclickdetector(game:GetService("Workspace").Map["Haunted Castle"].Placard3.Left.ClickDetector)
  4405. wait(1)
  4406. fireclickdetector(game:GetService("Workspace").Map["Haunted Castle"].Placard2.Right.ClickDetector)
  4407. wait(1)
  4408. fireclickdetector(game:GetService("Workspace").Map["Haunted Castle"].Placard1.Right.ClickDetector)
  4409. wait(1)
  4410. elseif game:GetService("Workspace").Map["Haunted Castle"].Tablet.Segment1:FindFirstChild("ClickDetector") then
  4411. if game:GetService("Workspace").Map["Haunted Castle"]["Lab Puzzle"].ColorFloor.Model.Part1:FindFirstChild("ClickDetector") then
  4412. Quest4 = true
  4413. repeat wait() topos(CFrame.new(-9553.5986328125, 65.62338256835938, 6041.58837890625)) until (CFrame.new(-9553.5986328125, 65.62338256835938, 6041.58837890625).Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 3 or not _G.AutoNevaSoulGuitar
  4414. wait(1)
  4415. topos(game:GetService("Workspace").Map["Haunted Castle"]["Lab Puzzle"].ColorFloor.Model.Part3.CFrame)
  4416. wait(1)
  4417. fireclickdetector(game:GetService("Workspace").Map["Haunted Castle"]["Lab Puzzle"].ColorFloor.Model.Part3.ClickDetector)
  4418. wait(1)
  4419. topos(game:GetService("Workspace").Map["Haunted Castle"]["Lab Puzzle"].ColorFloor.Model.Part4.CFrame)
  4420. wait(1)
  4421. fireclickdetector(game:GetService("Workspace").Map["Haunted Castle"]["Lab Puzzle"].ColorFloor.Model.Part4.ClickDetector)
  4422. wait(1)
  4423. fireclickdetector(game:GetService("Workspace").Map["Haunted Castle"]["Lab Puzzle"].ColorFloor.Model.Part4.ClickDetector)
  4424. wait(1)
  4425. fireclickdetector(game:GetService("Workspace").Map["Haunted Castle"]["Lab Puzzle"].ColorFloor.Model.Part4.ClickDetector)
  4426. wait(1)
  4427. topos(game:GetService("Workspace").Map["Haunted Castle"]["Lab Puzzle"].ColorFloor.Model.Part6.CFrame)
  4428. wait(1)
  4429. fireclickdetector(game:GetService("Workspace").Map["Haunted Castle"]["Lab Puzzle"].ColorFloor.Model.Part6.ClickDetector)
  4430. wait(1)
  4431. fireclickdetector(game:GetService("Workspace").Map["Haunted Castle"]["Lab Puzzle"].ColorFloor.Model.Part6.ClickDetector)
  4432. wait(1)
  4433. topos(game:GetService("Workspace").Map["Haunted Castle"]["Lab Puzzle"].ColorFloor.Model.Part8.CFrame)
  4434. wait(1)
  4435. fireclickdetector(game:GetService("Workspace").Map["Haunted Castle"]["Lab Puzzle"].ColorFloor.Model.Part8.ClickDetector)
  4436. wait(1)
  4437. topos(game:GetService("Workspace").Map["Haunted Castle"]["Lab Puzzle"].ColorFloor.Model.Part10.CFrame)
  4438. wait(1)
  4439. fireclickdetector(game:GetService("Workspace").Map["Haunted Castle"]["Lab Puzzle"].ColorFloor.Model.Part10.ClickDetector)
  4440. wait(1)
  4441. fireclickdetector(game:GetService("Workspace").Map["Haunted Castle"]["Lab Puzzle"].ColorFloor.Model.Part10.ClickDetector)
  4442. wait(1)
  4443. fireclickdetector(game:GetService("Workspace").Map["Haunted Castle"]["Lab Puzzle"].ColorFloor.Model.Part10.ClickDetector)
  4444. else
  4445. Quest3 = true
  4446. --Not Work Yet
  4447. end
  4448. else
  4449. if game:GetService("Workspace").NPCs:FindFirstChild("Ghost") then
  4450. local args = {
  4451. [1] = "GuitarPuzzleProgress",
  4452. [2] = "Ghost"
  4453. }
  4454.  
  4455. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4456. end
  4457. if game.Workspace.Enemies:FindFirstChild("Living Zombie [Lv. 2000]") then
  4458. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  4459. if v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 then
  4460. if v.Name == "Living Zombie [Lv. 2000]" then
  4461. EquipWeapon(_G.Select_Weapon)
  4462. v.HumanoidRootPart.Size = Vector3.new(60,60,60)
  4463. v.HumanoidRootPart.Transparency = 1
  4464. v.Humanoid.JumpPower = 0
  4465. v.Humanoid.WalkSpeed = 0
  4466. v.HumanoidRootPart.CanCollide = false
  4467. v.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,20,0)
  4468. topos(CFrame.new(-10160.787109375, 138.6616973876953, 5955.03076171875))
  4469. game:GetService'VirtualUser':CaptureController()
  4470. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  4471. end
  4472. end
  4473. end
  4474. else
  4475. topos(CFrame.new(-10160.787109375, 138.6616973876953, 5955.03076171875))
  4476. end
  4477. end
  4478. else
  4479. if string.find(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("gravestoneEvent",2), "Error") then
  4480. print("Go to Grave")
  4481. topos(CFrame.new(-8653.2060546875, 140.98487854003906, 6160.033203125))
  4482. elseif string.find(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("gravestoneEvent",2), "Nothing") then
  4483. print("Wait Next Night")
  4484. else
  4485. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("gravestoneEvent",2,true)
  4486. end
  4487. end
  4488. end
  4489. else
  4490. topos(CFrame.new(-9681.458984375, 6.139880657196045, 6341.3720703125))
  4491. end
  4492. else
  4493. if _G.soulGuitarhop then
  4494. hop()
  4495. end
  4496. end
  4497. end
  4498. end)
  4499. end
  4500. end)
  4501.  
  4502. M:Toggle("Auto Soul Guitar Hop",false,function(value)
  4503. _G.soulGuitarhop = value
  4504. end)
  4505.  
  4506. M:Seperator("Dual Curse Katana Test")
  4507.  
  4508. M:Toggle("Auto Dual Curse Katana",_G.AutoCdk,function(value)
  4509. _G.AutoCdk = value
  4510. end)
  4511.  
  4512. spawn(function()
  4513. while wait() do
  4514. pcall(function()
  4515. if _G.AutoCdk then
  4516. if GetMaterial("Alucard Fragment") == 0 then
  4517. Auto_Quest_Yama_1 = true
  4518. Auto_Quest_Yama_2 = false
  4519. Auto_Quest_Yama_3 = false
  4520. Auto_Quest_Tushita_1 = false
  4521. Auto_Quest_Tushita_2 = false
  4522. Auto_Quest_Tushita_3 = false
  4523. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CDKQuest","Progress","Evil")
  4524. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CDKQuest","StartTrial","Evil")
  4525. elseif GetMaterial("Alucard Fragment") == 1 then
  4526. Auto_Quest_Yama_1 = false
  4527. Auto_Quest_Yama_2 = true
  4528. Auto_Quest_Yama_3 = false
  4529. Auto_Quest_Tushita_1 = false
  4530. Auto_Quest_Tushita_2 = false
  4531. Auto_Quest_Tushita_3 = false
  4532. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CDKQuest","Progress","Evil")
  4533. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CDKQuest","StartTrial","Evil")
  4534. elseif GetMaterial("Alucard Fragment") == 2 then
  4535. Auto_Quest_Yama_1 = false
  4536. Auto_Quest_Yama_2 = false
  4537. Auto_Quest_Yama_3 = true
  4538. Auto_Quest_Tushita_1 = false
  4539. Auto_Quest_Tushita_2 = false
  4540. Auto_Quest_Tushita_3 = false
  4541. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CDKQuest","Progress","Evil")
  4542. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CDKQuest","StartTrial","Evil")
  4543. elseif GetMaterial("Alucard Fragment") == 3 then
  4544. Auto_Quest_Yama_1 = false
  4545. Auto_Quest_Yama_2 = false
  4546. Auto_Quest_Yama_3 = false
  4547. Auto_Quest_Tushita_1 = true
  4548. Auto_Quest_Tushita_2 = false
  4549. Auto_Quest_Tushita_3 = false
  4550. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CDKQuest","Progress","Good")
  4551. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CDKQuest","StartTrial","Good")
  4552. elseif GetMaterial("Alucard Fragment") == 4 then
  4553. Auto_Quest_Yama_1 = false
  4554. Auto_Quest_Yama_2 = false
  4555. Auto_Quest_Yama_3 = false
  4556. Auto_Quest_Tushita_1 = false
  4557. Auto_Quest_Tushita_2 = true
  4558. Auto_Quest_Tushita_3 = false
  4559. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CDKQuest","Progress","Good")
  4560. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CDKQuest","StartTrial","Good")
  4561. elseif GetMaterial("Alucard Fragment") == 5 then
  4562. Auto_Quest_Yama_1 = false
  4563. Auto_Quest_Yama_2 = false
  4564. Auto_Quest_Yama_3 = false
  4565. Auto_Quest_Tushita_1 = false
  4566. Auto_Quest_Tushita_2 = false
  4567. Auto_Quest_Tushita_3 = true
  4568. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CDKQuest","Progress","Good")
  4569. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CDKQuest","StartTrial","Good")
  4570. elseif GetMaterial("Alucard Fragment") == 6 then
  4571. if game:GetService("Workspace").Enemies:FindFirstChild("Cursed Skeleton Boss [Lv. 2025] [Boss]") or game:GetService("Workspace").ReplicatedStorage:FindFirstChild("Cursed Skeleton Boss [Lv. 2025] [Boss]") then
  4572. Auto_Quest_Yama_1 = false
  4573. Auto_Quest_Yama_2 = false
  4574. Auto_Quest_Yama_3 = false
  4575. Auto_Quest_Tushita_1 = false
  4576. Auto_Quest_Tushita_2 = false
  4577. Auto_Quest_Tushita_3 = false
  4578. if game:GetService("Workspace").Enemies:FindFirstChild("Cursed Skeleton Boss [Lv. 2025] [Boss]") or game:GetService("Workspace").Enemies:FindFirstChild("Cursed Skeleton [Lv. 2200]") then
  4579. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4580. if v.Name == "Cursed Skeleton Boss [Lv. 2025] [Boss]" or v.Name == "Cursed Skeleton [Lv. 2200]" then
  4581. if v.Humanoid.Health > 0 then
  4582. v.HumanoidRootPart.CanCollide = false
  4583. v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
  4584. topos(v.HumanoidRootPart.CFrame * CFrame.new(0,50,0))
  4585. game:GetService'VirtualUser':CaptureController()
  4586. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  4587. end
  4588. end
  4589. end
  4590. end
  4591. else
  4592. if (CFrame.new(-12361.7060546875, 603.3547973632812, -6550.5341796875).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 100 then
  4593. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CDKQuest","Progress","Good")
  4594. wait(1)
  4595. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CDKQuest","Progress","Evil")
  4596. wait(1)
  4597. topos(CFrame.new(-12361.7060546875, 603.3547973632812, -6550.5341796875))
  4598. wait(1.5)
  4599. game:GetService("VirtualInputManager"):SendKeyEvent(true, "E", false, game)
  4600. wait(1.5)
  4601. topos(CFrame.new(-12253.5419921875, 598.8999633789062, -6546.8388671875))
  4602. else
  4603. topos(CFrame.new(-12361.7060546875, 603.3547973632812, -6550.5341796875))
  4604. end
  4605. end
  4606. end
  4607. end
  4608. end)
  4609. end
  4610. end)
  4611.  
  4612. spawn(function()
  4613. while wait() do
  4614. if Auto_Quest_Yama_1 then
  4615. pcall(function()
  4616. if game:GetService("Workspace").Enemies:FindFirstChild("Mythological Pirate [Lv. 1850]") then
  4617. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4618. if v.Name == "Mythological Pirate [Lv. 1850]" then
  4619. repeat wait()
  4620. topos(v.HumanoidRootPart.CFrame * CFrame.new(0,0,-2))
  4621. until _G.AutoCdk == false or Auto_Cursed_Dual_Katana == false or Auto_Quest_Yama_1 == false
  4622. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CDKQuest","StartTrial","Evil")
  4623. end
  4624. end
  4625. else
  4626. topos(CFrame.new(-13451.46484375, 543.712890625, -6961.0029296875))
  4627. end
  4628. end)
  4629. end
  4630. end
  4631. end)
  4632.  
  4633. spawn(function()
  4634. while wait() do
  4635. pcall(function()
  4636. if Auto_Quest_Yama_2 then
  4637. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4638. if v:FindFirstChild("HazeESP") then
  4639. v.HazeESP.Size = UDim2.new(50,50,50,50)
  4640. v.HazeESP.MaxDistance = "inf"
  4641. end
  4642. end
  4643. for i,v in pairs(game:GetService("ReplicatedStorage"):GetChildren()) do
  4644. if v:FindFirstChild("HazeESP") then
  4645. v.HazeESP.Size = UDim2.new(50,50,50,50)
  4646. v.HazeESP.MaxDistance = "inf"
  4647. end
  4648. end
  4649. end
  4650. end)
  4651. end
  4652. end)
  4653.  
  4654. spawn(function()
  4655. while wait() do
  4656. pcall(function()
  4657. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4658. if Auto_Quest_Yama_2 and v:FindFirstChild("HazeESP") and (v.HumanoidRootPart.Position - PosMonsEsp.Position).magnitude <= 300 then
  4659. v.HumanoidRootPart.CFrame = PosMonsEsp
  4660. v.HumanoidRootPart.CanCollide = false
  4661. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  4662. if not v.HumanoidRootPart:FindFirstChild("BodyVelocity") then
  4663. local vc = Instance.new("BodyVelocity", v.HumanoidRootPart)
  4664. vc.MaxForce = Vector3.new(1, 1, 1) * math.huge
  4665. vc.Velocity = Vector3.new(0, 0, 0)
  4666. end
  4667. end
  4668. end
  4669. end)
  4670. end
  4671. end)
  4672.  
  4673. spawn(function()
  4674. while wait() do
  4675. if Auto_Quest_Yama_2 then
  4676. pcall(function()
  4677. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4678. if v:FindFirstChild("HazeESP") then
  4679. repeat wait()
  4680. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 2000 then
  4681. topos(y.HumanoidRootPart.CFrameMon * CFrame.new(0,20,0))
  4682. else
  4683. StartMagnet = true
  4684. FastAttack = true
  4685. if Auto_Buso then
  4686. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  4687. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Buso")
  4688. end
  4689. end
  4690. if not game.Players.LocalPlayer.Character:FindFirstChild(_G.Select_Weapon) then
  4691. wait()
  4692. EquipWeapon(_G.Select_Weapon)
  4693. end
  4694. PosMonsEsp = v.HumanoidRootPart.CFrame
  4695. if not FastAttack then
  4696. game:GetService'VirtualUser':CaptureController()
  4697. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  4698. end
  4699. v.HumanoidRootPart.Size = Vector3.new(60,60,60)
  4700. if _G.Configs["Show Hitbox"] then
  4701. v.HumanoidRootPart.Transparency = _G.Hitbox_LocalTransparency
  4702. else
  4703. v.HumanoidRootPart.Transparency = 1
  4704. end
  4705. v.Humanoid.JumpPower = 0
  4706. v.Humanoid.WalkSpeed = 0
  4707. v.HumanoidRootPart.CanCollide = false
  4708. v.Humanoid:ChangeState(11)
  4709. topos(v.HumanoidRootPart.CFrame * CFrame.new(0,20,0))
  4710. end
  4711. until Auto_Cursed_Dual_Katana == false or Auto_Quest_Yama_2 == false or not v.Parent or v.Humanoid.Health <= 0 or not v:FindFirstChild("HazeESP")
  4712. else
  4713. for x,y in pairs(game:GetService("ReplicatedStorage"):GetChildren()) do
  4714. if y:FindFirstChild("HazeESP") then
  4715. if (y.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 2000 then
  4716. topos(y.HumanoidRootPart.CFrameMon* CFrame.new(0,20,0))
  4717. else
  4718. topos(y.HumanoidRootPart.CFrame * CFrame.new(0,20,0))
  4719. end
  4720. end
  4721. end
  4722. end
  4723. end
  4724. end)
  4725. end
  4726. end
  4727. end)
  4728.  
  4729. spawn(function()
  4730. while wait() do
  4731. if Auto_Quest_Yama_3 then
  4732. pcall(function()
  4733. if game.Players.LocalPlayer.Backpack:FindFirstChild("Hallow Essence") then
  4734. _G.Main["Auto Farm Bone"] = false
  4735. topos(game:GetService("Workspace").Map["Haunted Castle"].Summoner.Detection.CFrame)
  4736. elseif game:GetService("Workspace").Map:FindFirstChild("HellDimension") then
  4737. repeat wait()
  4738. if game:GetService("Workspace").Enemies:FindFirstChild("Cursed Skeleton [Lv. 2200]") or game:GetService("Workspace").Enemies:FindFirstChild("Cursed Skeleton [Lv. 2200] [Boss]") or game:GetService("Workspace").Enemies:FindFirstChild("Hell's Messenger [Lv. 2200] [Boss]") then
  4739. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4740. if v.Name == "Cursed Skeleton [Lv. 2200]" or v.Name == "Cursed Skeleton [Lv. 2200] [Boss]" or v.Name == "Hell's Messenger [Lv. 2200] [Boss]" then
  4741. if v.Humanoid.Health > 0 then
  4742. repeat wait()
  4743. StartMagnet = true
  4744. FastAttack = true
  4745. if Auto_Buso then
  4746. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  4747. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Buso")
  4748. end
  4749. end
  4750. if not game.Players.LocalPlayer.Character:FindFirstChild(_G.Select_Weapon) then
  4751. wait()
  4752. EquipWeapon(_G.Select_Weapon)
  4753. end
  4754. PosMonsEsp = v.HumanoidRootPart.CFrame
  4755. if not FastAttack then
  4756. game:GetService'VirtualUser':CaptureController()
  4757. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  4758. end
  4759. v.HumanoidRootPart.Size = Vector3.new(60,60,60)
  4760. if _G.Configs["Show Hitbox"] then
  4761. v.HumanoidRootPart.Transparency = _G.Hitbox_LocalTransparency
  4762. else
  4763. v.HumanoidRootPart.Transparency = 1
  4764. end
  4765. v.Humanoid.JumpPower = 0
  4766. v.Humanoid.WalkSpeed = 0
  4767. v.HumanoidRootPart.CanCollide = false
  4768. v.Humanoid:ChangeState(11)
  4769. topos(v.HumanoidRootPart.CFrame * CFrame.new(0,50,0))
  4770. until v.Humanoid.Health <= 0 or not v.Parent or Auto_Quest_Yama_3 == false
  4771. end
  4772. end
  4773. end
  4774. else
  4775. wait(5)
  4776. topos(game:GetService("Workspace").Map.HellDimension.Torch1.CFrame)
  4777. wait(1.5)
  4778. game:GetService("VirtualInputManager"):SendKeyEvent(true, "E", false, game)
  4779. wait(1.5)
  4780. topos(game:GetService("Workspace").Map.HellDimension.Torch2.CFrame)
  4781. wait(1.5)
  4782. game:GetService("VirtualInputManager"):SendKeyEvent(true, "E", false, game)
  4783. wait(1.5)
  4784. topos(game:GetService("Workspace").Map.HellDimension.Torch3.CFrame)
  4785. wait(1.5)
  4786. game:GetService("VirtualInputManager"):SendKeyEvent(true, "E", false, game)
  4787. wait(1.5)
  4788. topos(game:GetService("Workspace").Map.HellDimension.Exit.CFrame)
  4789. end
  4790. until Auto_Cursed_Dual_Katana == false or Auto_Quest_Yama_3 == false or GetMaterial("Alucard Fragment") == 3
  4791. else
  4792. if game:GetService("Workspace").Enemies:FindFirstChild("Soul Reaper [Lv. 2100] [Raid Boss]") or game.ReplicatedStorage:FindFirstChild("Soul Reaper [Lv. 2100] [Raid Boss]") then
  4793. if game:GetService("Workspace").Enemies:FindFirstChild("Soul Reaper [Lv. 2100] [Raid Boss]") then
  4794. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4795. if v.Name == "Soul Reaper [Lv. 2100] [Raid Boss]" then
  4796. if v.Humanoid.Health > 0 then
  4797. repeat wait()
  4798. topos(v.HumanoidRootPart.CFrame * CFrame.new(0,0,-2))
  4799. until Auto_Cursed_Dual_Katana == false or Auto_Quest_Yama_3 == false or game:GetService("Workspace").Map:FindFirstChild("HellDimension")
  4800. end
  4801. end
  4802. end
  4803. else
  4804. topos(CFrame.new(-9570.033203125, 315.9346923828125, 6726.89306640625))
  4805. end
  4806. else
  4807. _G.Main["Auto Farm Bone"] = true
  4808. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Bones","Buy",1,1)
  4809. end
  4810. end
  4811. end)
  4812. end
  4813. end
  4814. end)
  4815.  
  4816. spawn(function()
  4817. while wait() do
  4818. if Auto_Quest_Tushita_1 then
  4819. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CDKQuest","BoatQuest",workspace.NPCs:FindFirstChild("Luxury Boat Dealer"))
  4820. end
  4821. end
  4822. end)
  4823.  
  4824. spawn(function()
  4825. while wait() do
  4826. if Auto_Quest_Tushita_1 then
  4827. topos(CFrame.new(-9546.990234375, 21.139892578125, 4686.1142578125))
  4828. wait(5)
  4829. topos(CFrame.new(-6120.0576171875, 16.455780029296875, -2250.697265625))
  4830. wait(5)
  4831. topos(CFrame.new(-9533.2392578125, 7.254445552825928, -8372.69921875))
  4832. end
  4833. end
  4834. end)
  4835.  
  4836. spawn(function()
  4837. while wait() do
  4838. if Auto_Quest_Tushita_2 then
  4839. pcall(function()
  4840. if (CFrame.new(-5539.3115234375, 313.800537109375, -2972.372314453125).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 500 then
  4841. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4842. if Auto_Quest_Tushita_2 and v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 then
  4843. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude < 2000 then
  4844. repeat wait()
  4845. v.HumanoidRootPart.CanCollide = false
  4846. v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
  4847. topos(v.HumanoidRootPart.CFrame * CFrame.new(0,50,0))
  4848. game:GetService'VirtualUser':CaptureController()
  4849. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  4850. until v.Humanoid.Health <= 0 or not v.Parent or Auto_Quest_Tushita_2 == false
  4851. end
  4852. end
  4853. end
  4854. else
  4855. topos(CFrame.new(-5545.1240234375, 313.800537109375, -2976.616455078125))
  4856. end
  4857. end)
  4858. end
  4859. end
  4860. end)
  4861.  
  4862. spawn(function()
  4863. while wait() do
  4864. if Auto_Quest_Tushita_3 then
  4865. pcall(function()
  4866. if game:GetService("Workspace").Enemies:FindFirstChild("Cake Queen [Lv. 2175] [Boss]") or game.ReplicatedStorage:FindFirstChild("Cake Queen [Lv. 2175] [Boss]") then
  4867. if game:GetService("Workspace").Enemies:FindFirstChild("Cake Queen [Lv. 2175] [Boss]") then
  4868. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4869. if v.Name == "Cake Queen [Lv. 2175] [Boss]" then
  4870. if v.Humanoid.Health > 0 then
  4871. repeat wait()
  4872. if Auto_Buso then
  4873. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  4874. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Buso")
  4875. end
  4876. end
  4877. if not game.Players.LocalPlayer.Character:FindFirstChild(_G.Select_Weapon) then
  4878. wait()
  4879. EquipWeapon(_G.Select_Weapon)
  4880. end
  4881. if not FastAttack then
  4882. game:GetService'VirtualUser':CaptureController()
  4883. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  4884. end
  4885. v.HumanoidRootPart.Size = Vector3.new(60,60,60)
  4886. if _G.Configs["Show Hitbox"] then
  4887. v.HumanoidRootPart.Transparency = _G.Hitbox_LocalTransparency
  4888. else
  4889. v.HumanoidRootPart.Transparency = 1
  4890. end
  4891. v.Humanoid.JumpPower = 0
  4892. v.Humanoid.WalkSpeed = 0
  4893. v.HumanoidRootPart.CanCollide = false
  4894. v.Humanoid:ChangeState(11)
  4895. topos(v.HumanoidRootPart.CFrame * CFrame.new(0,50,0))
  4896. until Auto_Cursed_Dual_Katana == false or Auto_Quest_Tushita_3 == false or game:GetService("Workspace").Map:FindFirstChild("HeavenlyDimension")
  4897. end
  4898. end
  4899. end
  4900. else
  4901. topos(CFrame.new(-709.3132934570312, 381.6005859375, -11011.396484375))
  4902. end
  4903. elseif game:GetService("Workspace").Map:FindFirstChild("HeavenlyDimension") then
  4904. repeat wait()
  4905. if game:GetService("Workspace").Enemies:FindFirstChild("Cursed Skeleton [Lv. 2200]") or game:GetService("Workspace").Enemies:FindFirstChild("Cursed Skeleton [Lv. 2200] [Boss]") or game:GetService("Workspace").Enemies:FindFirstChild("Heaven's Guardian [Lv. 2200] [Boss]") then
  4906. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4907. if v.Name == "Cursed Skeleton [Lv. 2200]" or v.Name == "Cursed Skeleton [Lv. 2200] [Boss]" or v.Name == "Heaven's Guardian [Lv. 2200] [Boss]" then
  4908. if v.Humanoid.Health > 0 then
  4909. repeat wait()
  4910. if Auto_Buso then
  4911. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  4912. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Buso")
  4913. end
  4914. end
  4915. if not game.Players.LocalPlayer.Character:FindFirstChild(_G.Select_Weapon) then
  4916. wait()
  4917. EquipWeapon(_G.Select_Weapon)
  4918. end
  4919. if not FastAttack then
  4920. game:GetService'VirtualUser':CaptureController()
  4921. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  4922. end
  4923. v.HumanoidRootPart.Size = Vector3.new(60,60,60)
  4924. if _G.Configs["Show Hitbox"] then
  4925. v.HumanoidRootPart.Transparency = _G.Hitbox_LocalTransparency
  4926. else
  4927. v.HumanoidRootPart.Transparency = 1
  4928. end
  4929. v.Humanoid.JumpPower = 0
  4930. v.Humanoid.WalkSpeed = 0
  4931. v.HumanoidRootPart.CanCollide = false
  4932. v.Humanoid:ChangeState(11)
  4933. until v.Humanoid.Health <= 0 or not v.Parent or Auto_Quest_Tushita_3 == false
  4934. end
  4935. end
  4936. end
  4937. else
  4938. wait(5)
  4939. topos(game:GetService("Workspace").Map.HeavenlyDimension.Torch1.CFrame)
  4940. wait(1.5)
  4941. game:GetService("VirtualInputManager"):SendKeyEvent(true, "E", false, game)
  4942. wait(1.5)
  4943. topos(game:GetService("Workspace").Map.HeavenlyDimension.Torch2.CFrame)
  4944. wait(1.5)
  4945. game:GetService("VirtualInputManager"):SendKeyEvent(true, "E", false, game)
  4946. wait(1.5)
  4947. topos(game:GetService("Workspace").Map.HeavenlyDimension.Torch3.CFrame)
  4948. wait(1.5)
  4949. game:GetService("VirtualInputManager"):SendKeyEvent(true, "E", false, game)
  4950. wait(1.5)
  4951. topos(game:GetService("Workspace").Map.HeavenlyDimension.Exit.CFrame)
  4952. end
  4953. until Auto_Cursed_Dual_Katana == false or Auto_Quest_Tushita_3 == false or GetMaterial("Alucard Fragment") == 6
  4954. else
  4955. hop()
  4956. end
  4957. end)
  4958. end
  4959. end
  4960. end)
  4961.  
  4962. M:Seperator(" Tushita ")
  4963.  
  4964. M:Toggle("Auto Tushita Sword",_G.Autotushita,function(value)
  4965. _G.Autotushita = value
  4966. end)
  4967.  
  4968.  
  4969. spawn(function()
  4970. while wait() do
  4971. if _G.Autotushita and World3 then
  4972. if game:GetService("Workspace").Enemies:FindFirstChild("Longma [Lv. 2000] [Boss]") then
  4973. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  4974. if v.Name == ("Longma [Lv. 2000] [Boss]" or v.Name == "Longma [Lv. 2000] [Boss]") and v.Humanoid.Health > 0 and v:IsA("Model") and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") then
  4975. repeat wait()
  4976. StartMagnet = true
  4977. AutoHaki()
  4978. if not game.Players.LocalPlayer.Character:FindFirstChild(_G.Select_Weapon) then
  4979. wait()
  4980. EquipWeapon(_G.Select_Weapon)
  4981. end
  4982. PosMon = v.HumanoidRootPart.CFrame
  4983. game:GetService'VirtualUser':CaptureController()
  4984. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  4985. v.HumanoidRootPart.Size = Vector3.new(60,60,60)
  4986. v.Humanoid.JumpPower = 0
  4987. v.Humanoid.WalkSpeed = 0
  4988. v.HumanoidRootPart.CanCollide = false
  4989. v.Humanoid:ChangeState(11)
  4990. topos(v.HumanoidRootPart.CFrame(2,20,2))
  4991. until not _G.Autotushita or not v.Parent or v.Humanoid.Health <= 0
  4992. StartMagnet = false
  4993. end
  4994. end
  4995. else
  4996. topos(CFrame.new(-10238.875976563, 389.7912902832, -9549.7939453125))
  4997. end
  4998. end
  4999. end
  5000. end)
  5001.  
  5002. M:Seperator("Misc Oder Sword")
  5003.  
  5004. M:Toggle("Auto Oder Sword (New !)", _G.AutoOderSword,function(value)
  5005. _G.AutoOderSword = value
  5006. StopTween( _G.AutoOderSword)
  5007. end)
  5008.  
  5009. M:Toggle("Auto Oder Sword Hop (New !)", _G.AutoOderSwordHop,function(value)
  5010. _G.AutoOderSwordHop = value
  5011. end)
  5012.  
  5013. spawn(function()
  5014. while wait() do
  5015. if _G.AutoOderSword then
  5016. pcall(function()
  5017. if game:GetService("Workspace").Enemies:FindFirstChild("Order [Lv. 1250] [Raid Boss]") then
  5018. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  5019. if v.Name == "Order [Lv. 1250] [Raid Boss]" then
  5020. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  5021. repeat task.wait()
  5022. AutoHaki()
  5023. EquipWeapon(_G.SelectWeapon)
  5024. v.HumanoidRootPart.CanCollide = false
  5025. v.Humanoid.WalkSpeed = 0
  5026. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  5027. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  5028. game:GetService("VirtualUser"):CaptureController()
  5029. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  5030. sethiddenproperty(game.Players.LocalPlayer,"SimulationRadius",math.huge)
  5031. until not _G.AutoOderSword or not v.Parent or v.Humanoid.Health <= 0
  5032. end
  5033. end
  5034. end
  5035. else
  5036. if game:GetService("ReplicatedStorage"):FindFirstChild("Order [Lv. 1250] [Raid Boss]") then
  5037. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Order [Lv. 1250] [Raid Boss]").HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  5038. else
  5039. if _G.AutoOderSwordHop then
  5040. Hop()
  5041. end
  5042. end
  5043. end
  5044. end)
  5045. end
  5046. end
  5047. end)
  5048.  
  5049. M:Button("Buy Microchip Oder Boss",function()
  5050. local args = {
  5051. [1] = "BlackbeardReward",
  5052. [2] = "Microchip",
  5053. [3] = "2"
  5054. }
  5055. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  5056. end)
  5057.  
  5058. M:Button("Start Go To Raid Oder Boss",function()
  5059. if World2 then
  5060. fireclickdetector(game:GetService("Workspace").Map.CircleIsland.RaidSummon.Button.Main.ClickDetector)
  5061. end
  5062. end)
  5063.  
  5064. M:Seperator("Misc Elite")
  5065.  
  5066. local EliteProgress = M:Label("")
  5067.  
  5068. spawn(function()
  5069. pcall(function()
  5070. while wait() do
  5071. EliteProgress:Set("Elite Progress : "..game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("EliteHunter","Progress"))
  5072. end
  5073. end)
  5074. end)
  5075.  
  5076. M:Toggle("Auto Elite Hunter",_G.AutoElitehunter,function(value)
  5077. _G.AutoElitehunter = value
  5078. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
  5079. StopTween(_G.AutoElitehunter)
  5080. end)
  5081.  
  5082. spawn(function()
  5083. while wait() do
  5084. if _G.AutoElitehunter and World3 then
  5085. pcall(function()
  5086. local QuestTitle = game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text
  5087. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false then
  5088. repeat wait()
  5089. topos(CFrame.new(-5418.892578125, 313.74130249023, -2826.2260742188))
  5090. until not _G.AutoElitehunter or (Vector3.new(-5418.892578125, 313.74130249023, -2826.2260742188)-game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 3
  5091. if (Vector3.new(-5418.892578125, 313.74130249023, -2826.2260742188)-game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 3 then
  5092. wait(1.1)
  5093. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("EliteHunter")
  5094. wait(0.5)
  5095. end
  5096. elseif game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == true then
  5097. if string.find(QuestTitle,"Diablo") or string.find(QuestTitle,"Deandre") or string.find(QuestTitle,"Urban") then
  5098. 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
  5099. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  5100. if v.Name == "Diablo [Lv. 1750]" or v.Name == "Deandre [Lv. 1750]" or v.Name == "Urban [Lv. 1750]" then
  5101. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  5102. repeat task.wait()
  5103. AutoHaki()
  5104. EquipWeapon(_G.SelectWeapon)
  5105. v.HumanoidRootPart.CanCollide = false
  5106. v.Humanoid.WalkSpeed = 0
  5107. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  5108. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  5109. game:GetService("VirtualUser"):CaptureController()
  5110. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  5111. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  5112. until _G.AutoElitehunter == false or v.Humanoid.Health <= 0 or not v.Parent
  5113. end
  5114. end
  5115. end
  5116. else
  5117. if game:GetService("ReplicatedStorage"):FindFirstChild("Diablo [Lv. 1750]") then
  5118. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Diablo [Lv. 1750]").HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  5119. elseif game:GetService("ReplicatedStorage"):FindFirstChild("Deandre [Lv. 1750]") then
  5120. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Deandre [Lv. 1750]").HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  5121. elseif game:GetService("ReplicatedStorage"):FindFirstChild("Urban [Lv. 1750]") then
  5122. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Urban [Lv. 1750]").HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  5123. else
  5124. if _G.AutoEliteHunterHop then
  5125. Hop()
  5126. else
  5127. topos(CFrame.new(-5418.892578125, 313.74130249023, -2826.2260742188))
  5128. end
  5129. end
  5130. end
  5131. end
  5132. end
  5133. end)
  5134. end
  5135. end
  5136. end)
  5137.  
  5138. M:Toggle("Auto Elite Hunter Hop",_G.AutoEliteHunterHop,function(value)
  5139. _G.AutoEliteHunterHop = value
  5140. end)
  5141.  
  5142. M:Seperator("Seperator Hallow Scythe")
  5143.  
  5144. M:Toggle("Auto Hallow Scythe",_G.AutoFarmBossHallow,function(value)
  5145. _G.AutoFarmBossHallow = value
  5146. StopTween(_G.AutoFarmBossHallow)
  5147. end)
  5148.  
  5149. M:Toggle("Auto Hallow Scythe Hop",_G.AutoFarmBossHallowHop,function(value)
  5150. _G.AutoFarmBossHallowHop = value
  5151. end)
  5152.  
  5153. spawn(function()
  5154. while wait() do
  5155. if _G.AutoFarmBossHallow then
  5156. pcall(function()
  5157. if game:GetService("Workspace").Enemies:FindFirstChild("Soul Reaper [Lv. 2100] [Raid Boss]") then
  5158. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  5159. if string.find(v.Name , "Soul Reaper") then
  5160. repeat task.wait()
  5161. EquipWeapon(_G.SelectWeapon)
  5162. AutoHaki()
  5163. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  5164. topos(v.HumanoidRootPart.CFrame*CFrame.new(2,40,2))
  5165. game:GetService("VirtualUser"):CaptureController()
  5166. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 670))
  5167. v.HumanoidRootPart.Transparency = 1
  5168. sethiddenproperty(game.Players.LocalPlayer,"SimulationRadius",math.huge)
  5169. until v.Humanoid.Health <= 0 or _G.AutoFarmBossHallow == false
  5170. end
  5171. end
  5172. elseif game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Hallow Essence") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Hallow Essence") then
  5173. 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
  5174. EquipWeapon("Hallow Essence")
  5175. else
  5176. if game:GetService("ReplicatedStorage"):FindFirstChild("Soul Reaper [Lv. 2100] [Raid Boss]") then
  5177. topos(game:GetService("ReplicatedStorage"):FindFirstChild("Soul Reaper [Lv. 2100] [Raid Boss]").HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  5178. else
  5179. if _G.AutoFarmBossHallowHop then
  5180. Hop()
  5181. end
  5182. end
  5183. end
  5184. end)
  5185. end
  5186. end
  5187. end)
  5188.  
  5189. M:Seperator("Dark Dagger")
  5190.  
  5191. M:Toggle("Auto Kill Admin Boss",_G.AutoDarkDagger,function(value)
  5192. _G.AutoDarkDagger = value
  5193. StopTween(_G.AutoDarkDagger)
  5194. end)
  5195.  
  5196. spawn(function()
  5197. pcall(function()
  5198. while wait() do
  5199. if _G.AutoDarkDagger then
  5200. 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
  5201. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  5202. 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
  5203. repeat task.wait()
  5204. pcall(function()
  5205. AutoHaki()
  5206. EquipWeapon(_G.SelectWeapon)
  5207. v.HumanoidRootPart.CanCollide = false
  5208. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  5209. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,40,2))
  5210. game:GetService("VirtualUser"):CaptureController()
  5211. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 670),workspace.CurrentCamera.CFrame)
  5212. end)
  5213. until _G.AutoDarkDagger == false or v.Humanoid.Health <= 0
  5214. end
  5215. end
  5216. else
  5217. topos(CFrame.new(-5344.822265625, 423.98541259766, -2725.0930175781))
  5218. end
  5219. end
  5220. end
  5221. end)
  5222. end)
  5223.  
  5224. M:Toggle("Auto Kill Admin Boss Hop",_G.AutoDarkDagger_Hop,function(value)
  5225. _G.AutoDarkDagger_Hop = value
  5226. end)
  5227.  
  5228. spawn(function()
  5229. pcall(function()
  5230. while wait() do
  5231. 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
  5232. Hop()
  5233. end
  5234. end
  5235. end)
  5236. end)
  5237.  
  5238. M:Seperator(" Trident ")
  5239.  
  5240. M:Toggle("Auto Dragon Trident",_G.Auto_Dragon_Trident,function(value)
  5241. _G.Auto_Dragon_Trident = value
  5242. StopTween(_G.Auto_Dragon_Trident)
  5243. end)
  5244.  
  5245.  
  5246. M:Toggle("Auto Dragon Trident Hop",_G.Auto_Dragon_Trident_Hop,function(value)
  5247. _G.Auto_Dragon_Trident_Hop = value
  5248. end)
  5249.  
  5250.  
  5251.  
  5252. spawn(function()
  5253. while wait() do
  5254. if _G.Auto_Dragon_Trident then
  5255. pcall(function()
  5256. if _G.Auto_Dragon_Trident and game.ReplicatedStorage:FindFirstChild("Tide Keeper [Lv. 1475] [Boss]") or game.Workspace.Enemies:FindFirstChild("Tide Keeper [Lv. 1475] [Boss]") then
  5257. if game.Workspace.Enemies:FindFirstChild("Tide Keeper [Lv. 1475] [Boss]") then
  5258. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  5259. if v.Name == "Tide Keeper [Lv. 1475] [Boss]" and v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 then
  5260. repeat wait()
  5261. EquipWeapon(_G.Select_Weapon)
  5262. AutoHaki()
  5263. topos(v.HumanoidRootPart.CFrame(2,20,2))
  5264. game:GetService'VirtualUser':CaptureController()
  5265. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  5266. until _G.Auto_Dragon_Trident or v.Humanoid.Health <= 0 or not v.Parent
  5267. end
  5268. end
  5269. else
  5270. topos(CFrame.new(-3914.830322265625, 123.29389190673828, -11516.8642578125))
  5271. end
  5272. else
  5273. if _G.Auto_Dragon_Trident_Hop then
  5274. hop()
  5275. end
  5276. end
  5277. end)
  5278. end
  5279. end
  5280. end)
  5281.  
  5282. M:Seperator("Misc Swan Glasses")
  5283.  
  5284. M:Toggle("Auto Swan Glasses",_G.AutoFarmSwanGlasses,function(value)
  5285. _G.AutoFarmSwanGlasses = value
  5286. StopTween(_G.AutoFarmSwanGlasses)
  5287. end)
  5288.  
  5289. spawn(function()
  5290. pcall(function()
  5291. while wait() do
  5292. if _G.AutoFarmSwanGlasses then
  5293. if game:GetService("Workspace").Enemies:FindFirstChild("Don Swan [Lv. 1000] [Boss]") then
  5294. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  5295. 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
  5296. repeat task.wait()
  5297. pcall(function()
  5298. AutoHaki()
  5299. EquipWeapon(_G.SelectWeapon)
  5300. v.HumanoidRootPart.CanCollide = false
  5301. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  5302. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,40,2))
  5303. game:GetService("VirtualUser"):CaptureController()
  5304. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 670))
  5305. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  5306. end)
  5307. until _G.AutoFarmSwanGlasses == false or v.Humanoid.Health <= 0
  5308. end
  5309. end
  5310. else
  5311. repeat task.wait()
  5312. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(2284.912109375, 15.537666320801, 905.48291015625))
  5313. until (CFrame.new(2284.912109375, 15.537666320801, 905.48291015625).Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 4 or _G.AutoFarmSwanGlasses == false
  5314. end
  5315. end
  5316. end
  5317. end)
  5318. end)
  5319.  
  5320. M:Toggle("Auto Swan Glasses Hop",_G.AutoFarmSwanGlasses_Hop,function(value)
  5321. _G.AutoFarmSwanGlasses_Hop = value
  5322. end)
  5323.  
  5324. spawn(function()
  5325. pcall(function()
  5326. while wait(.1) do
  5327. 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
  5328. Hop()
  5329. end
  5330. end
  5331. end)
  5332. end)
  5333.  
  5334. M:Seperator("Misc Bone")
  5335.  
  5336. local BoneFarm = M:Toggle("Auto Farm Bone",_G.Auto_Bone,function(value)
  5337. _G.Auto_Bone = value
  5338. StopTween(_G.Auto_Bone)
  5339. end)
  5340.  
  5341. spawn(function()
  5342. while wait() do
  5343. if _G.Auto_Bone and World3 then
  5344. pcall(function()
  5345. 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
  5346. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  5347. 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
  5348. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  5349. repeat task.wait()
  5350. AutoHaki()
  5351. EquipWeapon(_G.SelectWeapon)
  5352. v.HumanoidRootPart.CanCollide = false
  5353. v.Humanoid.WalkSpeed = 0
  5354. v.Head.CanCollide = false
  5355. StartMagnetBoneMon = true
  5356. PosMonBone = v.HumanoidRootPart.CFrame
  5357. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  5358. game:GetService("VirtualUser"):CaptureController()
  5359. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  5360. until not _G.Auto_Farm_Bone or not v.Parent or v.Humanoid.Health <= 0
  5361. end
  5362. end
  5363. end
  5364. else
  5365. topos(CFrame.new(-9506.234375, 172.130615234375, 6117.0771484375))
  5366. StartMagnetBoneMon = false
  5367. for i,v in pairs(game:GetService("ReplicatedStorage"):GetChildren()) do
  5368. if v.Name == "Reborn Skeleton [Lv. 1975]" then
  5369. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  5370. elseif v.Name == "Living Zombie [Lv. 2000]" then
  5371. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  5372. elseif v.Name == "Demonic Soul [Lv. 2025]" then
  5373. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  5374. elseif v.Name == "Posessed Mummy [Lv. 2050]" then
  5375. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  5376. end
  5377. end
  5378. end
  5379. end)
  5380. end
  5381. end
  5382. end)
  5383.  
  5384. M:Toggle("Auto Random Surprise",_G.Auto_Random_Bone,function(value)
  5385. _G.Auto_Random_Bone = value
  5386. end)
  5387.  
  5388. spawn(function()
  5389. pcall(function()
  5390. while wait(.1) do
  5391. if _G.Auto_Random_Bone then
  5392. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Bones","Buy",1,1)
  5393. end
  5394. end
  5395. end)
  5396. end)
  5397.  
  5398. M:Button("Checking Bone", function()
  5399. game.StarterGui:SetCore("SendNotification", {
  5400. Title = "Checking Bone",
  5401. Text = ("Your Bone : "..(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Bones","Check")))
  5402. })
  5403. wait(1)
  5404. end)
  5405.  
  5406.  
  5407. M:Seperator("Observation")
  5408.  
  5409. local ObservationRange = M:Label("")
  5410.  
  5411. spawn(function()
  5412. while wait() do
  5413. pcall(function()
  5414. ObservationRange:Set("Observation Range Level : "..math.floor(game:GetService("Players").LocalPlayer.VisionRadius.Value))
  5415. end)
  5416. end
  5417. end)
  5418.  
  5419. M:Toggle("Auto Farm Observation",_G.AutoObservation,function(value)
  5420. _G.AutoObservation = value
  5421. StopTween(_G.AutoObservation)
  5422. end)
  5423.  
  5424. spawn(function()
  5425. while wait() do
  5426. pcall(function()
  5427. if _G.AutoObservation then
  5428. repeat task.wait()
  5429. if not game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel") then
  5430. game:GetService('VirtualUser'):CaptureController()
  5431. game:GetService('VirtualUser'):SetKeyDown('0x65')
  5432. wait(2)
  5433. game:GetService('VirtualUser'):SetKeyUp('0x65')
  5434. end
  5435. until game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel") or not _G.AutoObservation
  5436. end
  5437. end)
  5438. end
  5439. end)
  5440.  
  5441. M:Toggle("Auto Farm Observation Hop",_G.AutoObservation_Hop,function(value)
  5442. _G.AutoObservation_Hop = value
  5443. end)
  5444.  
  5445. spawn(function()
  5446. pcall(function()
  5447. while wait() do
  5448. if _G.AutoObservation then
  5449. if game:GetService("Players").LocalPlayer.VisionRadius.Value >= 3000 then
  5450. game:GetService("StarterGui"):SetCore("SendNotification", {
  5451. Icon = "rbxassetid://0";
  5452. Title = "Observation",
  5453. Text = "You Have Max Points"
  5454. })
  5455. wait(2)
  5456. else
  5457. if World2 then
  5458. if game:GetService("Workspace").Enemies:FindFirstChild("Lava Pirate [Lv. 1200]") then
  5459. if game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel") then
  5460. repeat task.wait()
  5461. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Enemies:FindFirstChild("Lava Pirate [Lv. 1200]").HumanoidRootPart.CFrame * CFrame.new(3,0,0)
  5462. until _G.AutoObservation == false or not game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel")
  5463. else
  5464. repeat task.wait()
  5465. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Enemies:FindFirstChild("Lava Pirate [Lv. 1200]").HumanoidRootPart.CFrame * CFrame.new(0,50,0)+
  5466. wait(1)
  5467. if not game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel") and _G.AutoObservation_Hop == true then
  5468. game:GetService("TeleportService"):Teleport(game.PlaceId,game:GetService("Players").LocalPlayer)
  5469. end
  5470. until _G.AutoObservation == false or game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel")
  5471. end
  5472. else
  5473. topos(CFrame.new(-5478.39209, 15.9775667, -5246.9126))
  5474. end
  5475. elseif World1 then
  5476. if game:GetService("Workspace").Enemies:FindFirstChild("Galley Captain [Lv. 650]") then
  5477. if game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel") then
  5478. repeat task.wait()
  5479. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Enemies:FindFirstChild("Galley Captain [Lv. 650]").HumanoidRootPart.CFrame * CFrame.new(3,0,0)
  5480. until _G.AutoObservation == false or not game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel")
  5481. else
  5482. repeat task.wait()
  5483. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Enemies:FindFirstChild("Galley Captain [Lv. 650]").HumanoidRootPart.CFrame * CFrame.new(0,50,0)
  5484. wait(1)
  5485. if not game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel") and _G.AutoObservation_Hop == true then
  5486. game:GetService("TeleportService"):Teleport(game.PlaceId,game:GetService("Players").LocalPlayer)
  5487. end
  5488. until _G.AutoObservation == false or game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel")
  5489. end
  5490. else
  5491. topos(CFrame.new(5533.29785, 88.1079102, 4852.3916))
  5492. end
  5493. elseif World3 then
  5494. if game:GetService("Workspace").Enemies:FindFirstChild("Giant Islander [Lv. 1650]") then
  5495. if game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel") then
  5496. repeat task.wait()
  5497. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Enemies:FindFirstChild("Giant Islander [Lv. 1650]").HumanoidRootPart.CFrame * CFrame.new(3,0,0)
  5498. until _G.AutoObservation == false or not game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel")
  5499. else
  5500. repeat task.wait()
  5501. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Enemies:FindFirstChild("Giant Islander [Lv. 1650]").HumanoidRootPart.CFrame * CFrame.new(0,50,0)
  5502. wait(1)
  5503. if not game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel") and _G.AutoObservation_Hop == true then
  5504. game:GetService("TeleportService"):Teleport(game.PlaceId,game:GetService("Players").LocalPlayer)
  5505. end
  5506. until _G.AutoObservation == false or game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("ImageLabel")
  5507. end
  5508. else
  5509. topos(CFrame.new(4530.3540039063, 656.75695800781, -131.60952758789))
  5510. end
  5511. end
  5512. end
  5513. end
  5514. end
  5515. end)
  5516. end)
  5517.  
  5518. M:Seperator("Saber")
  5519.  
  5520. M:Toggle("Auto Saber",_G.AutoSaber,function(value)
  5521. _G.AutoSaber = value
  5522. end)
  5523.  
  5524. M:Toggle("Auto Saber Hop",_G.AutoSaberHop,function(value)
  5525. _G.AutoSaberHop = value
  5526. end)
  5527.  
  5528. spawn(function()
  5529. while wait() do
  5530. if _G.AutoSaber then
  5531. if game.Players.localPlayer.Data.Level.Value < 200 then
  5532. else
  5533. if game.Workspace.Map.Jungle.Final.Part.CanCollide == false then
  5534. if _G.AutoSaber and game.ReplicatedStorage:FindFirstChild("Saber Expert [Lv. 200] [Boss]") or game.Workspace.Enemies:FindFirstChild("Saber Expert [Lv. 200] [Boss]") then
  5535. if game.Workspace.Enemies:FindFirstChild("Saber Expert [Lv. 200] [Boss]") then
  5536. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  5537. if v.Name == "Saber Expert [Lv. 200] [Boss]" and v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 then
  5538. repeat wait()
  5539. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  5540. Farmtween = topos(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  5541. elseif (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  5542. if Farmtween then
  5543. Farmtween:Stop()
  5544. end
  5545. AutoHaki()
  5546. EquipWeapon(_G.SelectWeapon)
  5547. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 30, 0)
  5548. game:GetService'VirtualUser':CaptureController()
  5549. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  5550. end
  5551. until not _G.Auto_Saber or not v.Parent or v.Humanoid.Health <= 0
  5552. end
  5553. end
  5554. else
  5555. Questtween = topos(CFrame.new(-1405.41956, 29.8519993, 5.62435055).Position,CFrame.new(-1405.41956, 29.8519993, 5.62435055))
  5556. if (CFrame.new(-1405.41956, 29.8519993, 5.62435055).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  5557. if Questtween then
  5558. Questtween:Stop()
  5559. end
  5560. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1405.41956, 29.8519993, 5.62435055, 0.885240912, 3.52892613e-08, 0.465132833, -6.60881128e-09, 1, -6.32913171e-08, -0.465132833, 5.29540891e-08, 0.885240912)
  5561. end
  5562. end
  5563. else
  5564. if _G.AutoSaberHop then
  5565. Hop()
  5566. end
  5567. end
  5568. elseif game.Players.LocalPlayer.Backpack:FindFirstChild("Relic") or game.Players.LocalPlayer.Character:FindFirstChild("Relic") and game.Players.localPlayer.Data.Level.Value >= 200 then
  5569. EquipWeapon("Relic")
  5570. wait(0.5)
  5571. Questtween = topos(CFrame.new(-1405.41956, 29.8519993, 5.62435055).Position,CFrame.new(-1405.41956, 29.8519993, 5.62435055))
  5572. if (CFrame.new(-1405.41956, 29.8519993, 5.62435055).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  5573. if Questtween then
  5574. Questtween:Stop()
  5575. end
  5576. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1405.41956, 29.8519993, 5.62435055, 0.885240912, 3.52892613e-08, 0.465132833, -6.60881128e-09, 1, -6.32913171e-08, -0.465132833, 5.29540891e-08, 0.885240912)
  5577. end
  5578. else
  5579. if Workspace.Map.Jungle.QuestPlates.Door.CanCollide == false then
  5580. if game.Workspace.Map.Desert.Burn.Part.CanCollide == false then
  5581. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ProQuestProgress","SickMan") == 0 then
  5582. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ProQuestProgress","RichSon") == 0 then
  5583. if game.Workspace.Enemies:FindFirstChild("Mob Leader [Lv. 120] [Boss]") then
  5584. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  5585. if _G.AutoSaber and v:IsA("Model") and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 and v.Name == "Mob Leader [Lv. 120] [Boss]" then
  5586. repeat
  5587. pcall(function() wait()
  5588. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  5589. Farmtween = topos(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  5590. elseif (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  5591. if Farmtween then
  5592. Farmtween:Stop()
  5593. end
  5594. AutoHaki()
  5595. EquipWeapon(_G.SelectWeapon)
  5596. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  5597. local args = {
  5598. [1] = "Buso"
  5599. }
  5600. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  5601. end
  5602. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 30, 0)
  5603. game:GetService'VirtualUser':CaptureController()
  5604. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  5605. end
  5606. end)
  5607. until not _G.AutoSaber or not v.Parent or v.Humanoid.Health <= 0
  5608. end
  5609. end
  5610. else
  5611. Questtween = topos(CFrame.new(-2848.59399, 7.4272871, 5342.44043).Position,CFrame.new(-2848.59399, 7.4272871, 5342.44043))
  5612. if (CFrame.new(-2848.59399, 7.4272871, 5342.44043).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  5613. if Questtween then
  5614. Questtween:Stop()
  5615. end
  5616. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2848.59399, 7.4272871, 5342.44043, -0.928248107, -8.7248246e-08, 0.371961564, -7.61816636e-08, 1, 4.44474857e-08, -0.371961564, 1.29216433e-08, -0.928248107)
  5617. end
  5618. end
  5619. elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ProQuestProgress","RichSon") == 1 then
  5620. if game.Players.LocalPlayer.Backpack:FindFirstChild("Relic") or game.Players.LocalPlayer.Character:FindFirstChild("Relic") then
  5621. EquipWeapon("Relic")
  5622. wait(0.5)
  5623. Questtween = topos(CFrame.new(-1405.41956, 29.8519993, 5.62435055).Position,CFrame.new(-1405.41956, 29.8519993, 5.62435055))
  5624. if (CFrame.new(-1405.41956, 29.8519993, 5.62435055).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  5625. if Questtween then
  5626. Questtween:Stop()
  5627. end
  5628. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1405.41956, 29.8519993, 5.62435055)
  5629. end
  5630. else
  5631. Questtween = topos(CFrame.new(-910.979736, 13.7520342, 4078.14624).Position,CFrame.new(-910.979736, 13.7520342, 4078.14624))
  5632. if (CFrame.new(-910.979736, 13.7520342, 4078.14624).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  5633. if Questtween then
  5634. Questtween:Stop()
  5635. end
  5636. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-910.979736, 13.7520342, 4078.14624, 0.00685182028, -1.53155766e-09, -0.999976516, 9.15205245e-09, 1, -1.46888401e-09, 0.999976516, -9.14177267e-09, 0.00685182028)
  5637. wait(.5)
  5638. local args = {
  5639. [1] = "ProQuestProgress",
  5640. [2] = "RichSon"
  5641. }
  5642. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  5643. end
  5644. end
  5645. else
  5646. Questtween = topos(CFrame.new(-910.979736, 13.7520342, 4078.14624).Position,CFrame.new(-910.979736, 13.7520342, 4078.14624))
  5647. if (CFrame.new(-910.979736, 13.7520342, 4078.14624).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  5648. if Questtween then
  5649. Questtween:Stop()
  5650. end
  5651. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-910.979736, 13.7520342, 4078.14624)
  5652. local args = {
  5653. [1] = "ProQuestProgress",
  5654. [2] = "RichSon"
  5655. }
  5656. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  5657. end
  5658. end
  5659. else
  5660. if game.Players.LocalPlayer.Backpack:FindFirstChild("Cup") or game.Players.LocalPlayer.Character:FindFirstChild("Cup") then
  5661. EquipWeapon("Cup")
  5662. if game.Players.LocalPlayer.Character.Cup.Handle:FindFirstChild("TouchInterest") then
  5663. Questtween = topos(CFrame.new(1397.229, 37.3480148, -1320.85217).Position,CFrame.new(1397.229, 37.3480148, -1320.85217))
  5664. if (CFrame.new(1397.229, 37.3480148, -1320.85217).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  5665. if Questtween then
  5666. Questtween:Stop()
  5667. end
  5668. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1397.229, 37.3480148, -1320.85217, -0.11285457, 2.01368788e-08, 0.993611455, 1.91641178e-07, 1, 1.50028845e-09, -0.993611455, 1.90586206e-07, -0.11285457)
  5669. end
  5670. else
  5671. wait(0.5)
  5672. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ProQuestProgress","SickMan") ~= 0 then
  5673. local args = {
  5674. [1] = "ProQuestProgress",
  5675. [2] = "SickMan"
  5676. }
  5677. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  5678. end
  5679. end
  5680. else
  5681. Questtween = topos(game.Workspace.Map.Desert.Cup.Position,game.Workspace.Map.Desert.Cup.CFrame)
  5682. if (game.Workspace.Map.Desert.Cup.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  5683. if Questtween then
  5684. Questtween:Stop()
  5685. end
  5686. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Map.Desert.Cup.CFrame
  5687. end
  5688. firetouchinterest(game.Workspace.Map.Desert.Cup.TouchInterest,game.Players.LocalPlayer.Character.Head, 1)
  5689. end
  5690. end
  5691. else
  5692. if game.Players.LocalPlayer.Backpack:FindFirstChild("Torch") or game.Players.LocalPlayer.Character:FindFirstChild("Torch") then
  5693. EquipWeapon("Torch")
  5694. Questtween = topos(CFrame.new(1114.87708, 4.9214654, 4349.8501).Position,CFrame.new(1114.87708, 4.9214654, 4349.8501))
  5695. if (CFrame.new(1114.87708, 4.9214654, 4349.8501).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  5696. if Questtween then
  5697. Questtween:Stop()
  5698. end
  5699. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1114.87708, 4.9214654, 4349.8501, -0.612586915, -9.68697833e-08, 0.790403247, -1.2634203e-07, 1, 2.4638446e-08, -0.790403247, -8.47679615e-08, -0.612586915)
  5700. end
  5701. else
  5702. Questtween = topos(CFrame.new(-1610.00757, 11.5049858, 164.001587).Position,CFrame.new(-1610.00757, 11.5049858, 164.001587))
  5703. if (CFrame.new(-1610.00757, 11.5049858, 164.001587).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  5704. if Questtween then
  5705. Questtween:Stop()
  5706. end
  5707. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1610.00757, 11.5049858, 164.001587, 0.984807551, -0.167722285, -0.0449818149, 0.17364943, 0.951244235, 0.254912198, 3.42372805e-05, -0.258850515, 0.965917408)
  5708. end
  5709. end
  5710. end
  5711. else
  5712. for i,v in pairs(Workspace.Map.Jungle.QuestPlates:GetChildren()) do
  5713. if v:IsA("Model") then wait()
  5714. if v.Button.BrickColor ~= BrickColor.new("Camo") then
  5715. repeat wait()
  5716. Questtween = topos(v.Button.Position,v.Button.CFrame)
  5717. if (v.Button.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 150 then
  5718. if Questtween then
  5719. Questtween:Stop()
  5720. end
  5721. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Button.CFrame
  5722. end
  5723. until not _G.AutoSaber or v.Button.BrickColor == BrickColor.new("Camo")
  5724. end
  5725. end
  5726. end
  5727. end
  5728. end
  5729. end
  5730. end
  5731. end
  5732. end)
  5733.  
  5734. M:Seperator("Legendary Sword")
  5735.  
  5736. M:Toggle("Auto Legendary Sword",_G.AutoBuyLegendarySword,function(value)
  5737. _G.AutoBuyLegendarySword = value
  5738. end)
  5739.  
  5740. spawn(function()
  5741. while wait() do
  5742. if _G.AutoBuyLegendarySword then
  5743. pcall(function()
  5744. local args = {
  5745. [1] = "LegendarySwordDealer",
  5746. [2] = "1"
  5747. }
  5748. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  5749. local args = {
  5750. [1] = "LegendarySwordDealer",
  5751. [2] = "2"
  5752. }
  5753. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  5754. local args = {
  5755. [1] = "LegendarySwordDealer",
  5756. [2] = "3"
  5757. }
  5758. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  5759. if _G.AutoBuyLegendarySword_Hop and _G.AutoBuyLegendarySword and World2 then
  5760. wait(10)
  5761. Hop()
  5762. end
  5763. end)
  5764. end
  5765. end
  5766. end)
  5767.  
  5768. M:Toggle("Auto Legendary Sword Hop",_G.AutoBuyLegendarySword_Hop,function(value)
  5769. _G.AutoBuyLegendarySword_Hop = value
  5770. end)
  5771.  
  5772. M:Seperator("Enchancement Colour")
  5773.  
  5774. M:Toggle("Auto Enchancement Colour",_G.AutoBuyEnchancementColour,function(value)
  5775. _G.AutoBuyEnchancementColour = value
  5776. end)
  5777.  
  5778. M:Toggle("Auto Enchancement Hop",_G.AutoBuyEnchancementColour_Hop,function(value)
  5779. _G.AutoBuyEnchancementColour_Hop = value
  5780. end)
  5781.  
  5782. spawn(function()
  5783. while wait() do
  5784. if _G.AutoBuyEnchancementColour then
  5785. local args = {
  5786. [1] = "ColorsDealer",
  5787. [2] = "2"
  5788. }
  5789. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  5790. if _G.AutoBuyEnchancementColour_Hop and _G.AutoBuyEnchancementColour and not World1 then
  5791. wait(10)
  5792. Hop()
  5793. end
  5794. end
  5795. end
  5796. end)
  5797.  
  5798. M:Seperator("Other")
  5799.  
  5800. M:Toggle("Auto Musketeer Hat",_G.AutoMusketeerHat,function(value)
  5801. _G.AutoMusketeerHat = value
  5802. StopTween(_G.AutoMusketeerHat)
  5803. end)
  5804.  
  5805. spawn(function()
  5806. pcall(function()
  5807. while wait(.1) do
  5808. if _G.AutoMusketeerHat then
  5809. if game:GetService("Players").LocalPlayer.Data.Level.Value >= 1800 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CitizenQuestProgress").KilledBandits == false then
  5810. 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
  5811. if game:GetService("Workspace").Enemies:FindFirstChild("Forest Pirate [Lv. 1825]") then
  5812. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  5813. if v.Name == "Forest Pirate [Lv. 1825]" then
  5814. repeat task.wait()
  5815. pcall(function()
  5816. EquipWeapon(_G.SelectWeapon)
  5817. AutoHaki()
  5818. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  5819. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  5820. v.HumanoidRootPart.CanCollide = false
  5821. game:GetService'VirtualUser':CaptureController()
  5822. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  5823. MusketeerHatMon = v.HumanoidRootPart.CFrame
  5824. StartMagnetMusketeerhat = true
  5825. end)
  5826. until _G.AutoMusketeerHat == false or not v.Parent or v.Humanoid.Health <= 0 or game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false
  5827. StartMagnetMusketeerhat = false
  5828. end
  5829. end
  5830. else
  5831. StartMagnetMusketeerhat = false
  5832. topos(CFrame.new(-13206.452148438, 425.89199829102, -7964.5537109375))
  5833. end
  5834. else
  5835. topos(CFrame.new(-12443.8671875, 332.40396118164, -7675.4892578125))
  5836. if (Vector3.new(-12443.8671875, 332.40396118164, -7675.4892578125) - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 30 then
  5837. wait(1.5)
  5838. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StartQuest","CitizenQuest",1)
  5839. end
  5840. end
  5841. elseif game:GetService("Players").LocalPlayer.Data.Level.Value >= 1800 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CitizenQuestProgress").KilledBoss == false then
  5842. 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
  5843. if game:GetService("Workspace").Enemies:FindFirstChild("Captain Elephant [Lv. 1875] [Boss]") then
  5844. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  5845. if v.Name == "Captain Elephant [Lv. 1875] [Boss]" then
  5846. OldCFrameElephant = v.HumanoidRootPart.CFrame
  5847. repeat task.wait()
  5848. pcall(function()
  5849. EquipWeapon(_G.SelectWeapon)
  5850. AutoHaki()
  5851. v.HumanoidRootPart.CanCollide = false
  5852. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  5853. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  5854. v.HumanoidRootPart.CanCollide = false
  5855. v.HumanoidRootPart.CFrame = OldCFrameElephant
  5856. game:GetService("VirtualUser"):CaptureController()
  5857. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 672))
  5858. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  5859. end)
  5860. until _G.AutoMusketeerHat == false or v.Humanoid.Health <= 0 or not v.Parent or game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false
  5861. end
  5862. end
  5863. else
  5864. topos(CFrame.new(-13374.889648438, 421.27752685547, -8225.208984375))
  5865. end
  5866. else
  5867. topos(CFrame.new(-12443.8671875, 332.40396118164, -7675.4892578125))
  5868. if (CFrame.new(-12443.8671875, 332.40396118164, -7675.4892578125).Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 4 then
  5869. wait(1.5)
  5870. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CitizenQuestProgress","Citizen")
  5871. end
  5872. end
  5873. elseif game:GetService("Players").LocalPlayer.Data.Level.Value >= 1800 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CitizenQuestProgress","Citizen") == 2 then
  5874. topos(CFrame.new(-12512.138671875, 340.39279174805, -9872.8203125))
  5875. end
  5876. end
  5877. end
  5878. end)
  5879. end)
  5880.  
  5881. M:Toggle("Auto Rainbow Haki",_G.Auto_Rainbow_Haki,function(value)
  5882. _G.Auto_Rainbow_Haki = value
  5883. StopTween(_G.Auto_Rainbow_Haki)
  5884. end)
  5885.  
  5886. spawn(function()
  5887. pcall(function()
  5888. while wait(.1) do
  5889. if _G.Auto_Rainbow_Haki then
  5890. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false then
  5891. topos(CFrame.new(-11892.0703125, 930.57672119141, -8760.1591796875))
  5892. if (Vector3.new(-11892.0703125, 930.57672119141, -8760.1591796875) - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 30 then
  5893. wait(1.5)
  5894. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("HornedMan","Bet")
  5895. end
  5896. 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
  5897. if game:GetService("Workspace").Enemies:FindFirstChild("Stone [Lv. 1550] [Boss]") then
  5898. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  5899. if v.Name == "Stone [Lv. 1550] [Boss]" then
  5900. OldCFrameRainbow = v.HumanoidRootPart.CFrame
  5901. repeat task.wait()
  5902. EquipWeapon(_G.SelectWeapon)
  5903. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  5904. v.HumanoidRootPart.CanCollide = false
  5905. v.HumanoidRootPart.CFrame = OldCFrameRainbow
  5906. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  5907. game:GetService("VirtualUser"):CaptureController()
  5908. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 672))
  5909. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  5910. 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
  5911. end
  5912. end
  5913. else
  5914. 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))
  5915. end
  5916. 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
  5917. if game:GetService("Workspace").Enemies:FindFirstChild("Island Empress [Lv. 1675] [Boss]") then
  5918. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  5919. if v.Name == "Island Empress [Lv. 1675] [Boss]" then
  5920. OldCFrameRainbow = v.HumanoidRootPart.CFrame
  5921. repeat task.wait()
  5922. EquipWeapon(_G.SelectWeapon)
  5923. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  5924. v.HumanoidRootPart.CanCollide = false
  5925. v.HumanoidRootPart.CFrame = OldCFrameRainbow
  5926. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  5927. game:GetService("VirtualUser"):CaptureController()
  5928. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 672))
  5929. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  5930. 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
  5931. end
  5932. end
  5933. else
  5934. topos(CFrame.new(5713.98877, 601.922974, 202.751251, -0.101080291, -0, -0.994878292, -0, 1, -0, 0.994878292, 0, -0.101080291))
  5935. end
  5936. elseif string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Kilo Admiral") then
  5937. if game:GetService("Workspace").Enemies:FindFirstChild("Kilo Admiral [Lv. 1750] [Boss]") then
  5938. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  5939. if v.Name == "Kilo Admiral [Lv. 1750] [Boss]" then
  5940. OldCFrameRainbow = v.HumanoidRootPart.CFrame
  5941. repeat task.wait()
  5942. EquipWeapon(_G.SelectWeapon)
  5943. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  5944. v.HumanoidRootPart.CanCollide = false
  5945. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  5946. v.HumanoidRootPart.CFrame = OldCFrameRainbow
  5947. game:GetService("VirtualUser"):CaptureController()
  5948. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 672))
  5949. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  5950. 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
  5951. end
  5952. end
  5953. else
  5954. topos(CFrame.new(2877.61743, 423.558685, -7207.31006, -0.989591599, -0, -0.143904909, -0, 1.00000012, -0, 0.143904924, 0, -0.989591479))
  5955. end
  5956. elseif string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Captain Elephant") then
  5957. if game:GetService("Workspace").Enemies:FindFirstChild("Captain Elephant [Lv. 1875] [Boss]") then
  5958. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  5959. if v.Name == "Captain Elephant [Lv. 1875] [Boss]" then
  5960. OldCFrameRainbow = v.HumanoidRootPart.CFrame
  5961. repeat task.wait()
  5962. EquipWeapon(_G.SelectWeapon)
  5963. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  5964. v.HumanoidRootPart.CanCollide = false
  5965. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  5966. v.HumanoidRootPart.CFrame = OldCFrameRainbow
  5967. game:GetService("VirtualUser"):CaptureController()
  5968. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 672))
  5969. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  5970. 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
  5971. end
  5972. end
  5973. else
  5974. 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))
  5975. end
  5976. elseif string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Beautiful Pirate") then
  5977. if game:GetService("Workspace").Enemies:FindFirstChild("Beautiful Pirate [Lv. 1950] [Boss]") then
  5978. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  5979. if v.Name == "Beautiful Pirate [Lv. 1950] [Boss]" then
  5980. OldCFrameRainbow = v.HumanoidRootPart.CFrame
  5981. repeat task.wait()
  5982. EquipWeapon(_G.SelectWeapon)
  5983. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  5984. v.HumanoidRootPart.CanCollide = false
  5985. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  5986. v.HumanoidRootPart.CFrame = OldCFrameRainbow
  5987. game:GetService("VirtualUser"):CaptureController()
  5988. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 672))
  5989. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  5990. 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
  5991. end
  5992. end
  5993. else
  5994. topos(CFrame.new(5312.3598632813, 20.141201019287, -10.158538818359))
  5995. end
  5996. else
  5997. topos(CFrame.new(-11892.0703125, 930.57672119141, -8760.1591796875))
  5998. if (Vector3.new(-11892.0703125, 930.57672119141, -8760.1591796875) - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 30 then
  5999. wait(1.5)
  6000. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("HornedMan","Bet")
  6001. end
  6002. end
  6003. end
  6004. end
  6005. end)
  6006. end)
  6007.  
  6008. M:Toggle("Auto Observation Haki v2",_G.AutoObservationv2,function(value)
  6009. _G.AutoObservationv2 = value
  6010. StopTween(_G.AutoObservationv2)
  6011. end)
  6012.  
  6013. spawn(function()
  6014. while wait() do
  6015. pcall(function()
  6016. if _G.AutoObservationv2 then
  6017. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CitizenQuestProgress","Citizen") == 3 then
  6018. _G.AutoMusketeerHat = false
  6019. 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
  6020. repeat
  6021. topos(CFrame.new(-12444.78515625, 332.40396118164, -7673.1806640625))
  6022. wait()
  6023. until not _G.AutoObservationv2 or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position-Vector3.new(-12444.78515625, 332.40396118164, -7673.1806640625)).Magnitude <= 10
  6024. wait(.5)
  6025. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("CitizenQuestProgress","Citizen")
  6026. elseif game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Fruit Bowl") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Fruit Bowl") then
  6027. repeat
  6028. topos(CFrame.new(-10920.125, 624.20275878906, -10266.995117188))
  6029. wait()
  6030. until not _G.AutoObservationv2 or (game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position-Vector3.new(-10920.125, 624.20275878906, -10266.995117188)).Magnitude <= 10
  6031. wait(.5)
  6032. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("KenTalk2","Start")
  6033. wait(1)
  6034. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("KenTalk2","Buy")
  6035. else
  6036. for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
  6037. if v.Name == "Apple" or v.Name == "Banana" or v.Name == "Pineapple" then
  6038. v.Handle.CFrame = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,1,10)
  6039. wait()
  6040. firetouchinterest(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart,v.Handle,0)
  6041. wait()
  6042. end
  6043. end
  6044. end
  6045. else
  6046. _G.AutoMusketeerHat = true
  6047. end
  6048. end
  6049. end)
  6050. end
  6051. end)
  6052.  
  6053. M:Toggle("Auto Rengoku",_G.AutoRengoku,function(value)
  6054. _G.AutoRengoku = value
  6055. StopTween(_G.AutoRengoku)
  6056. end)
  6057.  
  6058. spawn(function()
  6059. pcall(function()
  6060. while wait() do
  6061. if _G.AutoRengoku then
  6062. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Hidden Key") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Hidden Key") then
  6063. EquipWeapon("Hidden Key")
  6064. topos(CFrame.new(6571.1201171875, 299.23028564453, -6967.841796875))
  6065. elseif game:GetService("Workspace").Enemies:FindFirstChild("Snow Lurker [Lv. 1375]") or game:GetService("Workspace").Enemies:FindFirstChild("Arctic Warrior [Lv. 1350]") then
  6066. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  6067. if (v.Name == "Snow Lurker [Lv. 1375]" or v.Name == "Arctic Warrior [Lv. 1350]") and v.Humanoid.Health > 0 then
  6068. repeat task.wait()
  6069. EquipWeapon(_G.SelectWeapon)
  6070. AutoHaki()
  6071. v.HumanoidRootPart.CanCollide = false
  6072. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  6073. RengokuMon = v.HumanoidRootPart.CFrame
  6074. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,40,2))
  6075. game:GetService'VirtualUser':CaptureController()
  6076. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  6077. StartRengokuMagnet = true
  6078. until game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Hidden Key") or _G.AutoRengoku == false or not v.Parent or v.Humanoid.Health <= 0
  6079. StartRengokuMagnet = false
  6080. end
  6081. end
  6082. else
  6083. StartRengokuMagnet = false
  6084. topos(CFrame.new(5598.06884765625))
  6085. end
  6086. end
  6087. end
  6088. end)
  6089. end)
  6090.  
  6091. M:Toggle("Auto Farm Ectoplasm",_G.AutoEctoplasm,function(value)
  6092. _G.AutoEctoplasm = value
  6093. StopTween(_G.AutoEctoplasm)
  6094. end)
  6095.  
  6096. spawn(function()
  6097. pcall(function()
  6098. while wait() do
  6099. if _G.AutoEctoplasm then
  6100. 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
  6101. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  6102. if string.find(v.Name, "Ship") then
  6103. repeat task.wait()
  6104. EquipWeapon(_G.SelectWeapon)
  6105. AutoHaki()
  6106. if string.find(v.Name,"Ship") then
  6107. v.HumanoidRootPart.CanCollide = false
  6108. v.Head.CanCollide = false
  6109. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  6110. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  6111. game:GetService'VirtualUser':CaptureController()
  6112. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  6113. EctoplasmMon = v.HumanoidRootPart.CFrame
  6114. StartEctoplasmMagnet = true
  6115. else
  6116. StartEctoplasmMagnet = false
  6117. topos(CFrame.new(911.35827636719, 125.95812988281, 33159.5390625))
  6118. end
  6119. until _G.AutoEctoplasm == false or not v.Parent or v.Humanoid.Health <= 0
  6120. end
  6121. end
  6122. else
  6123. StartEctoplasmMagnet = false
  6124. local Distance = (Vector3.new(911.35827636719, 125.95812988281, 33159.5390625) - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude
  6125. if Distance > 18000 then
  6126. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(923.21252441406, 126.9760055542, 32852.83203125))
  6127. end
  6128. topos(CFrame.new(911.35827636719, 125.95812988281, 33159.5390625))
  6129. end
  6130. end
  6131. end
  6132. end)
  6133. end)
  6134.  
  6135. M:Toggle("Auto Yama",_G.AutoYama,function(value)
  6136. _G.AutoYama = value
  6137. StopTween(_G.AutoYama)
  6138. end)
  6139.  
  6140. spawn(function()
  6141. while wait() do
  6142. if _G.AutoYama then
  6143. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("EliteHunter","Progress") >= 30 then
  6144. repeat wait(.1)
  6145. fireclickdetector(game:GetService("Workspace").Map.Waterfall.SealedKatana.Handle.ClickDetector)
  6146. until game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Yama") or not _G.AutoYama
  6147. end
  6148. end
  6149. end
  6150. end)
  6151.  
  6152. M:Toggle("Auto Evo Race (V2)",_G.Auto_EvoRace,function(value)
  6153. _G.Auto_EvoRace = value
  6154. StopTween(_G.Auto_EvoRace)
  6155. end)
  6156.  
  6157. spawn(function()
  6158. pcall(function()
  6159. while wait(.1) do
  6160. if _G.Auto_EvoRace then
  6161. if not game:GetService("Players").LocalPlayer.Data.Race:FindFirstChild("Evolved") then
  6162. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Alchemist","1") == 0 then
  6163. 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))
  6164. if (Vector3.new(-2779.83521, 72.9661407, -3574.02002) - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 4 then
  6165. wait(1.3)
  6166. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Alchemist","2")
  6167. end
  6168. elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Alchemist","1") == 1 then
  6169. pcall(function()
  6170. if not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Flower 1") and not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Flower 1") then
  6171. topos(game:GetService("Workspace").Flower1.CFrame)
  6172. elseif not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Flower 2") and not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Flower 2") then
  6173. topos(game:GetService("Workspace").Flower2.CFrame)
  6174. elseif not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Flower 3") and not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Flower 3") then
  6175. if game:GetService("Workspace").Enemies:FindFirstChild("Zombie [Lv. 950]") then
  6176. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  6177. if v.Name == "Zombie [Lv. 950]" then
  6178. repeat task.wait()
  6179. AutoHaki()
  6180. EquipWeapon(_G.SelectWeapon)
  6181. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  6182. v.HumanoidRootPart.CanCollide = false
  6183. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  6184. game:GetService("VirtualUser"):CaptureController()
  6185. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 672))
  6186. PosMonEvo = v.HumanoidRootPart.CFrame
  6187. StartEvoMagnet = true
  6188. until game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Flower 3") or not v.Parent or v.Humanoid.Health <= 0 or _G.Auto_EvoRace == false
  6189. StartEvoMagnet = false
  6190. end
  6191. end
  6192. else
  6193. StartEvoMagnet = false
  6194. topos(CFrame.new(-5685.9233398438, 48.480125427246, -853.23724365234))
  6195. end
  6196. end
  6197. end)
  6198. elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Alchemist","1") == 2 then
  6199. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Alchemist","3")
  6200. end
  6201. end
  6202. end
  6203. end
  6204. end)
  6205. end)
  6206.  
  6207. M:Toggle("Auto Bartlio Quest",_G.AutoBartilo,function(value)
  6208. _G.AutoBartilo = value
  6209. end)
  6210.  
  6211. spawn(function()
  6212. pcall(function()
  6213. while wait(.1) do
  6214. if _G.AutoBartilo then
  6215. if game:GetService("Players").LocalPlayer.Data.Level.Value >= 800 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") == 0 then
  6216. 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
  6217. if game:GetService("Workspace").Enemies:FindFirstChild("Swan Pirate [Lv. 775]") then
  6218. Ms = "Swan Pirate [Lv. 775]"
  6219. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  6220. if v.Name == Ms then
  6221. pcall(function()
  6222. repeat task.wait()
  6223. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  6224. EquipWeapon(_G.SelectWeapon)
  6225. AutoHaki()
  6226. v.HumanoidRootPart.Transparency = 1
  6227. v.HumanoidRootPart.CanCollide = false
  6228. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  6229. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  6230. PosMonBarto = v.HumanoidRootPart.CFrame
  6231. game:GetService'VirtualUser':CaptureController()
  6232. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  6233. AutoBartiloBring = true
  6234. until not v.Parent or v.Humanoid.Health <= 0 or _G.AutoBartilo == false or game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false
  6235. AutoBartiloBring = false
  6236. end)
  6237. end
  6238. end
  6239. else
  6240. 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
  6241. end
  6242. else
  6243. 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
  6244. wait(1.1)
  6245. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StartQuest","BartiloQuest",1)
  6246. end
  6247. elseif game:GetService("Players").LocalPlayer.Data.Level.Value >= 800 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") == 1 then
  6248. if game:GetService("Workspace").Enemies:FindFirstChild("Jeremy [Lv. 850] [Boss]") then
  6249. Ms = "Jeremy [Lv. 850] [Boss]"
  6250. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  6251. if v.Name == Ms then
  6252. OldCFrameBartlio = v.HumanoidRootPart.CFrame
  6253. repeat task.wait()
  6254. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  6255. EquipWeapon(_G.SelectWeapon)
  6256. AutoHaki()
  6257. v.HumanoidRootPart.Transparency = 1
  6258. v.HumanoidRootPart.CanCollide = false
  6259. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  6260. v.HumanoidRootPart.CFrame = OldCFrameBartlio
  6261. topos(v.HumanoidRootPart.CFrame * CFrame.new(2,20,2))
  6262. game:GetService'VirtualUser':CaptureController()
  6263. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  6264. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  6265. until not v.Parent or v.Humanoid.Health <= 0 or _G.AutoBartilo == false
  6266. end
  6267. end
  6268. elseif game:GetService("ReplicatedStorage"):FindFirstChild("Jeremy [Lv. 850] [Boss]") then
  6269. 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
  6270. wait(1.1)
  6271. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo")
  6272. wait(1)
  6273. 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
  6274. wait(2)
  6275. else
  6276. 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
  6277. end
  6278. elseif game:GetService("Players").LocalPlayer.Data.Level.Value >= 800 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") == 2 then
  6279. 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
  6280. wait(1)
  6281. 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
  6282. wait(1)
  6283. 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
  6284. wait(1)
  6285. 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
  6286. wait(1)
  6287. 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
  6288. wait(1)
  6289. 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
  6290. wait(1)
  6291. 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
  6292. wait(1)
  6293. 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
  6294. end
  6295. end
  6296. end
  6297. end)
  6298. end)
  6299.  
  6300. M:Toggle("Auto Holy Torch",_G.AutoHolyTorch,function(value)
  6301. _G.AutoHolyTorch = value
  6302. StopTween(_G.AutoHolyTorch)
  6303. end)
  6304.  
  6305. spawn(function()
  6306. while wait() do
  6307. if _G.AutoHolyTorch then
  6308. pcall(function()
  6309. wait(1)
  6310. TP(CFrame.new(-10752, 417, -9366))
  6311. wait(1)
  6312. TP(CFrame.new(-11672, 334, -9474))
  6313. wait(1)
  6314. TP(CFrame.new(-12132, 521, -10655))
  6315. wait(1)
  6316. TP(CFrame.new(-13336, 486, -6985))
  6317. wait(1)
  6318. TP(CFrame.new(-13489, 332, -7925))
  6319. end)
  6320. end
  6321. end
  6322. end)
  6323.  
  6324. spawn(function()
  6325. while task.wait() do
  6326. pcall(function()
  6327. if _G.BringMonster then
  6328. CheckQuest()
  6329. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  6330. 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
  6331. v.HumanoidRootPart.Size = Vector3.new(150,150,150)
  6332. v.HumanoidRootPart.CFrame = PosMon
  6333. v.Humanoid:ChangeState(14)
  6334. v.HumanoidRootPart.CanCollide = false
  6335. v.Head.CanCollide = false
  6336. if v.Humanoid:FindFirstChild("Animator") then
  6337. v.Humanoid.Animator:Destroy()
  6338. end
  6339. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  6340. 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
  6341. v.HumanoidRootPart.Size = Vector3.new(150,150,150)
  6342. v.HumanoidRootPart.CFrame = PosMon
  6343. v.Humanoid:ChangeState(14)
  6344. v.HumanoidRootPart.CanCollide = false
  6345. v.Head.CanCollide = false
  6346. if v.Humanoid:FindFirstChild("Animator") then
  6347. v.Humanoid.Animator:Destroy()
  6348. end
  6349. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  6350. end
  6351. if _G.AutoEctoplasm and StartEctoplasmMagnet then
  6352. 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
  6353. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  6354. v.HumanoidRootPart.CFrame = EctoplasmMon
  6355. v.Humanoid:ChangeState(14)
  6356. v.HumanoidRootPart.CanCollide = false
  6357. v.Head.CanCollide = false
  6358. if v.Humanoid:FindFirstChild("Animator") then
  6359. v.Humanoid.Animator:Destroy()
  6360. end
  6361. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  6362. end
  6363. end
  6364. if _G.AutoRengoku and StartRengokuMagnet then
  6365. 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
  6366. v.HumanoidRootPart.Size = Vector3.new(1500,1500,1500)
  6367. v.Humanoid:ChangeState(14)
  6368. v.HumanoidRootPart.CanCollide = false
  6369. v.Head.CanCollide = false
  6370. v.HumanoidRootPart.CFrame = RengokuMon
  6371. if v.Humanoid:FindFirstChild("Animator") then
  6372. v.Humanoid.Animator:Destroy()
  6373. end
  6374. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  6375. end
  6376. end
  6377. if _G.AutoMusketeerHat and StartMagnetMusketeerhat then
  6378. 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
  6379. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  6380. v.Humanoid:ChangeState(14)
  6381. v.HumanoidRootPart.CanCollide = false
  6382. v.Head.CanCollide = false
  6383. v.HumanoidRootPart.CFrame = MusketeerHatMon
  6384. if v.Humanoid:FindFirstChild("Animator") then
  6385. v.Humanoid.Animator:Destroy()
  6386. end
  6387. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  6388. end
  6389. end
  6390. if _G.Auto_EvoRace and StartEvoMagnet then
  6391. 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
  6392. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  6393. v.Humanoid:ChangeState(14)
  6394. v.HumanoidRootPart.CanCollide = false
  6395. v.Head.CanCollide = false
  6396. v.HumanoidRootPart.CFrame = PosMonEvo
  6397. if v.Humanoid:FindFirstChild("Animator") then
  6398. v.Humanoid.Animator:Destroy()
  6399. end
  6400. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  6401. end
  6402. end
  6403. if _G.AutoBartilo and AutoBartiloBring then
  6404. 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
  6405. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  6406. v.Humanoid:ChangeState(14)
  6407. v.HumanoidRootPart.CanCollide = false
  6408. v.Head.CanCollide = false
  6409. v.HumanoidRootPart.CFrame = PosMonBarto
  6410. if v.Humanoid:FindFirstChild("Animator") then
  6411. v.Humanoid.Animator:Destroy()
  6412. end
  6413. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  6414. end
  6415. end
  6416. if _G.AutoFarmFruitMastery and StartMasteryFruitMagnet then
  6417. if v.Name == "Monkey [Lv. 14]" then
  6418. if (v.HumanoidRootPart.Position - PosMonMasteryFruit.Position).Magnitude <= 250 and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  6419. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  6420. v.Humanoid:ChangeState(14)
  6421. v.HumanoidRootPart.CanCollide = false
  6422. v.Head.CanCollide = false
  6423. v.HumanoidRootPart.CFrame = PosMonMasteryFruit
  6424. if v.Humanoid:FindFirstChild("Animator") then
  6425. v.Humanoid.Animator:Destroy()
  6426. end
  6427. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  6428. end
  6429. elseif v.Name == "Factory Staff [Lv. 800]" then
  6430. if (v.HumanoidRootPart.Position - PosMonMasteryFruit.Position).Magnitude <= 250 and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  6431. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  6432. v.Humanoid:ChangeState(14)
  6433. v.HumanoidRootPart.CanCollide = false
  6434. v.Head.CanCollide = false
  6435. v.HumanoidRootPart.CFrame = PosMonMasteryFruit
  6436. if v.Humanoid:FindFirstChild("Animator") then
  6437. v.Humanoid.Animator:Destroy()
  6438. end
  6439. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  6440. end
  6441. elseif v.Name == Mon then
  6442. if (v.HumanoidRootPart.Position - PosMonMasteryFruit.Position).Magnitude <= 250 and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  6443. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  6444. v.Humanoid:ChangeState(14)
  6445. v.HumanoidRootPart.CanCollide = false
  6446. v.Head.CanCollide = false
  6447. v.HumanoidRootPart.CFrame = PosMonMasteryFruit
  6448. if v.Humanoid:FindFirstChild("Animator") then
  6449. v.Humanoid.Animator:Destroy()
  6450. end
  6451. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  6452. end
  6453. end
  6454. end
  6455. if _G.AutoFarmGunMastery and StartMasteryGunMagnet then
  6456. if v.Name == "Monkey [Lv. 14]" then
  6457. if (v.HumanoidRootPart.Position - PosMonMasteryGun.Position).Magnitude <= 250 and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  6458. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  6459. v.Humanoid:ChangeState(14)
  6460. v.HumanoidRootPart.CanCollide = false
  6461. v.Head.CanCollide = false
  6462. v.HumanoidRootPart.CFrame = PosMonMasteryGun
  6463. if v.Humanoid:FindFirstChild("Animator") then
  6464. v.Humanoid.Animator:Destroy()
  6465. end
  6466. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  6467. end
  6468. elseif v.Name == "Factory Staff [Lv. 800]" then
  6469. if (v.HumanoidRootPart.Position - PosMonMasteryGun.Position).Magnitude <= 250 and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  6470. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  6471. v.Humanoid:ChangeState(14)
  6472. v.HumanoidRootPart.CanCollide = false
  6473. v.Head.CanCollide = false
  6474. v.HumanoidRootPart.CFrame = PosMonMasteryGun
  6475. if v.Humanoid:FindFirstChild("Animator") then
  6476. v.Humanoid.Animator:Destroy()
  6477. end
  6478. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  6479. end
  6480. elseif v.Name == Mon then
  6481. if (v.HumanoidRootPart.Position - PosMonMasteryGun.Position).Magnitude <= 250 and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  6482. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  6483. v.Humanoid:ChangeState(14)
  6484. v.HumanoidRootPart.CanCollide = false
  6485. v.Head.CanCollide = false
  6486. v.HumanoidRootPart.CFrame = PosMonMasteryGun
  6487. if v.Humanoid:FindFirstChild("Animator") then
  6488. v.Humanoid.Animator:Destroy()
  6489. end
  6490. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  6491. end
  6492. end
  6493. end
  6494. if _G.Auto_Bone and StartMagnetBoneMon then
  6495. 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
  6496. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  6497. v.Humanoid:ChangeState(14)
  6498. v.HumanoidRootPart.CanCollide = false
  6499. v.Head.CanCollide = false
  6500. v.HumanoidRootPart.CFrame = PosMonBone
  6501. if v.Humanoid:FindFirstChild("Animator") then
  6502. v.Humanoid.Animator:Destroy()
  6503. end
  6504. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  6505. end
  6506. end
  6507. if _G.AutoFarmCandy and StartCandyMagnet then
  6508. 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
  6509. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  6510. v.Humanoid:ChangeState(14)
  6511. v.HumanoidRootPart.CanCollide = false
  6512. v.Head.CanCollide = false
  6513. v.HumanoidRootPart.CFrame = CandyMon
  6514. if v.Humanoid:FindFirstChild("Animator") then
  6515. v.Humanoid.Animator:Destroy()
  6516. end
  6517. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  6518. end
  6519. end
  6520. if _G.AutoDoughtBoss and MagnetDought then
  6521. 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
  6522. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  6523. v.Humanoid:ChangeState(14)
  6524. v.HumanoidRootPart.CanCollide = false
  6525. v.Head.CanCollide = false
  6526. v.HumanoidRootPart.CFrame = PosMonDoughtOpenDoor
  6527. if v.Humanoid:FindFirstChild("Animator") then
  6528. v.Humanoid.Animator:Destroy()
  6529. end
  6530. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  6531. end
  6532. end
  6533. if _G.AutoCandy and StartMagnetCandy then
  6534. if (v.HumanoidRootPart.Position - PosMonCandy.Position).Magnitude <= 250 and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  6535. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  6536. v.Humanoid:ChangeState(14)
  6537. v.HumanoidRootPart.CanCollide = false
  6538. v.Head.CanCollide = false
  6539. v.HumanoidRootPart.CFrame = PosMonCandy
  6540. if v.Humanoid:FindFirstChild("Animator") then
  6541. v.Humanoid.Animator:Destroy()
  6542. end
  6543. sethiddenproperty(game:GetService("Players").LocalPlayer, "SimulationRadius", math.huge)
  6544. end
  6545. end
  6546. end
  6547. end
  6548. end)
  6549. end
  6550. end)
  6551.  
  6552. Ss:Seperator("Stats")
  6553.  
  6554. local Pointstat = Ss:Label("Stat Points")
  6555.  
  6556. spawn(function()
  6557. while wait() do
  6558. pcall(function()
  6559. Pointstat:Set("Stat Points : "..tostring(game:GetService("Players")["LocalPlayer"].Data.Points.Value))
  6560. end)
  6561. end
  6562. end)
  6563.  
  6564. Ss:Toggle("Melee",false,function(Value)
  6565. melee = Value
  6566. end)
  6567. Ss:Toggle("Defense",false,function(value)
  6568. defense = value
  6569. end)
  6570. Ss:Toggle("Sword",false,function(value)
  6571. sword = value
  6572. end)
  6573. Ss:Toggle("Gun",false,function(value)
  6574. gun = value
  6575. end)
  6576. Ss:Toggle("Devil Fruit",false,function(value)
  6577. demonfruit = value
  6578. end)
  6579.  
  6580. PointStats = 1
  6581. Ss:Slider("Point",1,100,PointStats,nil,function(value)
  6582. PointStats = value
  6583. end)
  6584.  
  6585. spawn(function()
  6586. while wait() do
  6587. if game.Players.localPlayer.Data.Points.Value >= PointStats then
  6588. if melee then
  6589. local args = {
  6590. [1] = "AddPoint",
  6591. [2] = "Melee",
  6592. [3] = PointStats
  6593. }
  6594. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  6595. end
  6596. if defense then
  6597. local args = {
  6598. [1] = "AddPoint",
  6599. [2] = "Defense",
  6600. [3] = PointStats
  6601. }
  6602. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  6603. end
  6604. if sword then
  6605. local args = {
  6606. [1] = "AddPoint",
  6607. [2] = "Sword",
  6608. [3] = PointStats
  6609. }
  6610. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  6611. end
  6612. if gun then
  6613. local args = {
  6614. [1] = "AddPoint",
  6615. [2] = "Gun",
  6616. [3] = PointStats
  6617. }
  6618. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  6619. end
  6620. if demonfruit then
  6621. local args = {
  6622. [1] = "AddPoint",
  6623. [2] = "Demon Fruit",
  6624. [3] = PointStats
  6625. }
  6626. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  6627. end
  6628. end
  6629. end
  6630. end)
  6631.  
  6632. Ss:Seperator("Fake Mode")
  6633.  
  6634. Ss:Textbox("Fake Level",true,function(value)
  6635. game:GetService("Players").LocalPlayer.Data.Level.Value = value
  6636. end)
  6637. Ss:Textbox("Fake Exp",true,function(value)
  6638. game:GetService("Players").LocalPlayer.Data.Exp.Value = value
  6639. end)
  6640. Ss:Textbox("Fake Beli",true,function(value)
  6641. game:GetService("Players").LocalPlayer.Data.Beli.Value = value
  6642. end)
  6643. Ss:Textbox("Fake Points",true,function(value)
  6644. game:GetService("Players").LocalPlayer.Data.Points.Value = value
  6645. end)
  6646. Ss:Textbox("Fake Bounty",true,function(value)
  6647. game:GetService("Players").LocalPlayer.leaderstats["Bounty/Honor"].Value = value
  6648. end)
  6649.  
  6650.  
  6651. local plyserv = P:Label("Players")
  6652.  
  6653.  
  6654.  
  6655. spawn(function()
  6656. while wait() do
  6657. pcall(function()
  6658. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  6659. if i == 12 then
  6660. plyserv:Set("Players :".." "..i.." ".."/".." ".."12".." ".."(Max)")
  6661. elseif i == 1 then
  6662. plyserv:Set("Player :".." "..i.." ".."/".." ".."12")
  6663. else
  6664. plyserv:Set("Players :".." "..i.." ".."/".." ".."12")
  6665. end
  6666. end
  6667. end)
  6668. end
  6669. end)
  6670.  
  6671. Playerslist = {}
  6672.  
  6673. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  6674. table.insert(Playerslist,v.Name)
  6675. end
  6676.  
  6677. local SelectedPly = P:Dropdown("Select Players",Playerslist,function(value)
  6678. _G.SelectPly = value
  6679. end)
  6680.  
  6681. P:Button("Refresh Player",function()
  6682. Playerslist = {}
  6683. SelectedPly:Clear()
  6684. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  6685. SelectedPly:Add(v.Name)
  6686. end
  6687. end)
  6688.  
  6689. P:Toggle("Spectate Player",false,function(value)
  6690. SpectatePlys = value
  6691. local plr1 = game:GetService("Players").LocalPlayer.Character.Humanoid
  6692. local plr2 = game:GetService("Players"):FindFirstChild(_G.SelectPly)
  6693. repeat wait(.1)
  6694. game:GetService("Workspace").Camera.CameraSubject = game:GetService("Players"):FindFirstChild(_G.SelectPly).Character.Humanoid
  6695. until SpectatePlys == false
  6696. game:GetService("Workspace").Camera.CameraSubject = game:GetService("Players").LocalPlayer.Character.Humanoid
  6697. end)
  6698.  
  6699. P:Toggle("Teleport",false,function(value)
  6700. _G.TeleportPly = value
  6701. pcall(function()
  6702. if _G.TeleportPly then
  6703. repeat topos(game:GetService("Players")[_G.SelectPly].Character.HumanoidRootPart.CFrame) wait() until _G.TeleportPly == false
  6704. end
  6705. StopTween(_G.TeleportPly)
  6706. end)
  6707. end)
  6708.  
  6709. P:Toggle("Auto Farm Player",false,function(value)
  6710. _G.Auto_Kill_Ply = value
  6711. StopTween(_G.Auto_Kill_Ply)
  6712. end)
  6713.  
  6714. spawn(function()
  6715. while wait() do
  6716. if _G.Auto_Kill_Ply then
  6717. pcall(function()
  6718. if _G.SelectPly ~= nil then
  6719. if game.Players:FindFirstChild(_G.SelectPly) then
  6720. if game.Players:FindFirstChild(_G.SelectPly).Character.Humanoid.Health > 0 then
  6721. repeat task.wait()
  6722. EquipWeapon(_G.SelectWeapon)
  6723. AutoHaki()
  6724. game.Players:FindFirstChild(_G.SelectPly).Character.HumanoidRootPart.CanCollide = false
  6725. topos(game.Players:FindFirstChild(_G.SelectPly).Character.HumanoidRootPart.CFrame * CFrame.new(0,35,0))
  6726. spawn(function()
  6727. pcall(function()
  6728. if _G.SelectWeapon == SelectWeaponGun then
  6729. local args = {
  6730. [1] = game.Players:FindFirstChild(_G.SelectPly).Character.HumanoidRootPart.Position,
  6731. [2] = game.Players:FindFirstChild(_G.SelectPly).Character.HumanoidRootPart
  6732. }
  6733. game:GetService("Players").LocalPlayer.Character[SelectWeaponGun].RemoteFunctionShoot:InvokeServer(unpack(args))
  6734. else
  6735. game:GetService("VirtualUser"):CaptureController()
  6736. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280,672))
  6737. end
  6738. end)
  6739. end)
  6740. until game.Players:FindFirstChild(_G.SelectPly).Character.Humanoid.Health <= 0 or not game.Players:FindFirstChild(_G.SelectPly) or not _G.Auto_Kill_Ply
  6741. end
  6742. end
  6743. end
  6744. end)
  6745. end
  6746. end
  6747. end)
  6748.  
  6749. P:Seperator("Quest Player")
  6750.  
  6751. P:Button("Auto Quest Player",function()
  6752. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("PlayerHunter")
  6753. end)
  6754.  
  6755.  
  6756. P:Seperator("Aimbot")
  6757.  
  6758. spawn(function()
  6759. while wait() do
  6760. pcall(function()
  6761. local MaxDistance = math.huge
  6762. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  6763. if v.Name ~= game:GetService("Players").LocalPlayer.Name then
  6764. local Distance = v:DistanceFromCharacter(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position)
  6765. if Distance < MaxDistance then
  6766. MaxDistance = Distance
  6767. PlayerSelectAimbot = v.Name
  6768. end
  6769. end
  6770. end
  6771. end)
  6772. end
  6773. end)
  6774.  
  6775. P:Toggle("Aimbot Gun",false,function(value)
  6776. _G.Aimbot_Gun = value
  6777. end)
  6778.  
  6779. spawn(function()
  6780. while task.wait() do
  6781. if _G.Aimbot_Gun and game:GetService("Players").LocalPlayer.Character:FindFirstChild(SelectWeaponGun) then
  6782. pcall(function()
  6783. game:GetService("Players").LocalPlayer.Character[SelectWeaponGun].Cooldown.Value = 0
  6784. local args = {
  6785. [1] = game:GetService("Players"):FindFirstChild(PlayerSelectAimbot).Character.HumanoidRootPart.Position,
  6786. [2] = game:GetService("Players"):FindFirstChild(PlayerSelectAimbot).Character.HumanoidRootPart
  6787. }
  6788. game:GetService("Players").LocalPlayer.Character[SelectWeaponGun].RemoteFunctionShoot:InvokeServer(unpack(args))
  6789. game:GetService'VirtualUser':CaptureController()
  6790. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  6791. end)
  6792. end
  6793. end
  6794. end)
  6795.  
  6796. P:Toggle("Aimbot Skill",false,function(value)
  6797. _G.Aimbot_Skill = value
  6798. end)
  6799.  
  6800. spawn(function()
  6801. pcall(function()
  6802. while task.wait() do
  6803. 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
  6804. local args = {
  6805. [1] = game:GetService("Players"):FindFirstChild(PlayerSelectAimbot).Character.HumanoidRootPart.Position
  6806. }
  6807.  
  6808. game:GetService("Players").LocalPlayer.Character:FindFirstChild(game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool").Name).RemoteEvent:FireServer(unpack(args))
  6809. end
  6810. end
  6811. end)
  6812. end)
  6813.  
  6814. P:Seperator("PvP")
  6815.  
  6816. P:Toggle("Enabled PvP",false,function(value)
  6817. _G.EnabledPvP = value
  6818. end)
  6819.  
  6820. spawn(function()
  6821. pcall(function()
  6822. while wait(.1) do
  6823. if _G.EnabledPvP then
  6824. if game:GetService("Players").LocalPlayer.PlayerGui.Main.PvpDisabled.Visible == true then
  6825. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("EnablePvp")
  6826. end
  6827. end
  6828. end
  6829. end)
  6830. end)
  6831.  
  6832. P:Toggle("Safe Mode",false,function(value)
  6833. _G.Safe_Mode = value
  6834. StopTween(_G.Safe_Mode)
  6835. end)
  6836.  
  6837. spawn(function()
  6838. pcall(function()
  6839. while wait() do
  6840. if _G.Safe_Mode then
  6841. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame
  6842. end
  6843. end
  6844. end)
  6845. end)
  6846.  
  6847. P:Button("Respawn",function()
  6848. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetTeam","Pirates")
  6849. wait()
  6850. end)
  6851.  
  6852. P:Seperator("Bounty")
  6853.  
  6854. local Current = P:Label("Current Bounties :")
  6855.  
  6856. local Bounty = tostring(game:GetService("Players").LocalPlayer.leaderstats["Bounty/Honor"].Value)
  6857. local sub = string.sub
  6858. local len = string.len
  6859. spawn(function()
  6860. while wait() do
  6861. pcall(function()
  6862. if len(Bounty) == 4 then
  6863. Bounty1 = sub(Bounty,1,1).."."..sub(Bounty,2,3).."K"
  6864. elseif len(Bounty) == 5 then
  6865. Bounty1 = sub(Bounty,1,2).."."..sub(Bounty,3,4).."K"
  6866. elseif len(Bounty) == 6 then
  6867. Bounty1 = sub(Bounty,1,3).."."..sub(Bounty,4,5).."K"
  6868. elseif len(Bounty) == 7 then
  6869. Bounty1 = sub(Bounty,1,1).."."..sub(Bounty,2,3).."M"
  6870. elseif len(Bounty) == 8 then
  6871. Bounty1 = sub(Bounty,1,2).."."..sub(Bounty,3,4).."M"
  6872. elseif len(Bounty) <= 3 then
  6873. Bounty1 = Bounty
  6874. end
  6875. if tonumber(Bounty) == 25000000 then
  6876. Current:Set("Current Bounties : "..Bounty1.." [ Max ]")
  6877. elseif tonumber(Bounty) < 25000000 then
  6878. Current:Set("Current Bounties : "..Bounty1)
  6879. end
  6880. end)
  6881. end
  6882. end)
  6883.  
  6884. local Earn = P:Label("Earned")
  6885. local OldBounty = game:GetService("Players").LocalPlayer.leaderstats["Bounty/Honor"].Value
  6886. local Bounty = tostring(game:GetService("Players").LocalPlayer.leaderstats["Bounty/Honor"].Value)
  6887. local Earned = tostring(game:GetService("Players").LocalPlayer.leaderstats["Bounty/Honor"].Value - OldBounty)
  6888. local sub = string.sub
  6889. local len = string.len
  6890. spawn(function()
  6891. while wait() do
  6892. pcall(function()
  6893. if len(Earned) == 4 then
  6894. Earned1 = sub(Earned,1,1).."."..sub(Earned,2,3).."K"
  6895. elseif len(Earned) == 5 then
  6896. Earned1 = sub(Earned,1,2).."."..sub(Earned,3,4).."K"
  6897. elseif len(Earned) == 6 then
  6898. Earned1 = sub(Earned,1,3).."."..sub(Earned,4,5).."K"
  6899. elseif len(Earned) == 7 then
  6900. Earned1 = sub(Earned,1,1).."."..sub(Earned,2,3).."M"
  6901. elseif len(Earned) == 8 then
  6902. Earned1 = sub(Earned,1,2).."."..sub(Earned,3,4).."M"
  6903. elseif len(Earned) <= 3 then
  6904. Earned1 = Earned
  6905. end
  6906. Earn:Set("Earned : "..tonumber(Earned1))
  6907. end)
  6908. end
  6909. end)
  6910.  
  6911. P:Toggle("Auto Farm Bounty",_G.AutoFarmBounty,function(value)
  6912. _G.AutoFarmBounty = value
  6913. StopTween(_G.AutoFarmBounty)
  6914. end)
  6915.  
  6916. spawn(function()
  6917. while wait() do
  6918. pcall(function()
  6919. if _G.AutoFarmBounty then
  6920. for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetChildren()) do
  6921. if v:IsA("Shirt") then
  6922. v:Destroy()
  6923. end
  6924. if v:IsA("Pants") then
  6925. v:Destroy()
  6926. end
  6927. if v:IsA("Accessory") then
  6928. v:Destroy()
  6929. end
  6930. end
  6931. end
  6932. end)
  6933. end
  6934. end)
  6935.  
  6936. spawn(function()
  6937. pcall(function()
  6938. if _G.AutoFarmBounty then
  6939. while wait() do
  6940. if game.Players.LocalPlayer.Character.Humanoid.Health > 0 then
  6941. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetSpawnPoint")
  6942. end
  6943. end
  6944. end
  6945. end)
  6946. end)
  6947.  
  6948. spawn(function()
  6949. while wait() do
  6950. pcall(function()
  6951. if _G.AutoFarmBounty then
  6952. if not game:GetService("Players").LocalPlayer.Character:FindFirstChild("HasBuso") then
  6953. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Buso")
  6954. end
  6955. end
  6956. end)
  6957. end
  6958. end)
  6959.  
  6960. spawn(function()
  6961. while task.wait() do
  6962. pcall(function()
  6963. if _G.AutoFarmBounty then
  6964. game:GetService("Players").LocalPlayer.Character[SelectWeaponGun].Cooldown.Value = 0
  6965. spawn(function()
  6966. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Beli.Visible = false
  6967. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.HP.Visible = false
  6968. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Energy.Visible = false
  6969. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.StatsButton.Visible = false
  6970. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.ShopButton.Visible = false
  6971. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Skills.Visible = false
  6972. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Level.Visible = false
  6973. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.MenuButton.Visible = false
  6974. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Code.Visible = false
  6975. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Settings.Visible = false
  6976. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Mute.Visible = false
  6977. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.CrewButton.Visible = false
  6978. game.Players.LocalPlayer.Character.Animate.Disabled = true
  6979. end)
  6980. end
  6981. end)
  6982. end
  6983. end)
  6984. CastlePostoMansion = CFrame.new(-5084.8447265625, 316.48101806641, -3145.3752441406)
  6985. MansiontoCastlePos = CFrame.new(-12464.596679688, 376.30590820312, -7567.2626953125)
  6986. Castletophydra = CFrame.new(-5095.33984375, 316.48101806641, -3168.3134765625)
  6987. HydratoCastle = CFrame.new(5741.869140625, 611.94750976562, -282.61154174805)
  6988. spawn(function()
  6989. while wait() do
  6990. pcall(function()
  6991. if _G.AutoFarmBounty then
  6992. for i,v in pairs(game:GetService("Workspace").Characters:GetChildren()) do
  6993. if v.Name ~= game.Players.LocalPlayer.Name then
  6994. if v:WaitForChild("Humanoid").Health > 0 and (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - v.HumanoidRootPart.Position).Magnitude <= 17000 then
  6995. plyselecthunthelpold = v.Humanoid.Health
  6996. repeat task.wait()
  6997. EquipWeapon(SelectWeaponGun)
  6998. NameTarget = v.Name
  6999. if tostring(game.Players.LocalPlayer.Team) == "Pirates" then
  7000. topos(v.HumanoidRootPart.CFrame * CFrame.new(0,60,-20))
  7001. elseif tostring(game.Players.LocalPlayer.Team) == "Marines" then
  7002. if game.Players[NameTarget].Team ~= game.Players.LocalPlayer.Team then
  7003. topos(v.HumanoidRootPart.CFrame * CFrame.new(0,60,-20))
  7004. end
  7005. end
  7006. spawn(function()
  7007. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 150 then
  7008. StartCheckTarget = true
  7009. end
  7010. end)
  7011. v.HumanoidRootPart.CanCollide = false
  7012. spawn(function()
  7013. pcall(function()
  7014. local args = {
  7015. [1] = v.HumanoidRootPart.Position,
  7016. [2] = v.HumanoidRootPart
  7017. }
  7018. game:GetService("Players").LocalPlayer.Character[SelectWeaponGun].RemoteFunctionShoot:InvokeServer(unpack(args))
  7019. end)
  7020. end)
  7021. TargetSelectHunt = v.Humanoid
  7022. 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
  7023. NextplySelect = false
  7024. StartCheckTarget = false
  7025. end
  7026. end
  7027. end
  7028. end
  7029. end)
  7030. end
  7031. end)
  7032.  
  7033. spawn(function()
  7034. pcall(function()
  7035. while task.wait() do
  7036. if _G.AutoFarmBounty then
  7037. game:GetService("Players").LocalPlayer.PlayerGui.Main.InCombat.Visible = false
  7038. game:GetService("Players").LocalPlayer.PlayerGui.Main.SafeZone.Visible = false
  7039. end
  7040. end
  7041. end)
  7042. end)
  7043.  
  7044. spawn(function()
  7045. pcall(function()
  7046. while wait() do
  7047. if _G.AutoFarmBounty then
  7048. if TargetSelectHunt ~= nil then
  7049. if StartCheckTarget then
  7050. wait(6.5)
  7051. if TargetSelectHunt.Health == TargetSelectHunt.MaxHealth or TargetSelectHunt.Health >= plyselecthunthelpold then
  7052. NextplySelect = true
  7053. TargetSelectHunt = nil
  7054. end
  7055. end
  7056. end
  7057. end
  7058. end
  7059. end)
  7060. end)
  7061.  
  7062. spawn(function()
  7063. pcall(function()
  7064. while wait(.1) do
  7065. if _G.AutoFarmBounty then
  7066. if game:GetService("Players").LocalPlayer.PlayerGui.Main.PvpDisabled.Visible == true then
  7067. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("EnablePvp")
  7068. end
  7069. end
  7070. end
  7071. end)
  7072. end)
  7073.  
  7074. P:Toggle("Auto Farm Bounty Hop",_G.AutoFarmBounty_Hop,function(value)
  7075. _G.AutoFarmBounty_Hop = value
  7076. end)
  7077.  
  7078. spawn(function()
  7079. while wait() do
  7080. if _G.AutoFarmBounty then
  7081. if _G.AutoFarmBounty_Hop then
  7082. pcall(function()
  7083. wait(120)
  7084. Hop()
  7085. end)
  7086. end
  7087. end
  7088. end
  7089. end)
  7090.  
  7091. P:Seperator("Misc Bounty")
  7092.  
  7093. P:Button("Next Player",function()
  7094. NextplySelect = true
  7095. wait(.1)
  7096. NextplySelect = false
  7097. end)
  7098.  
  7099. P:Slider("Lock Bounty",1,25000000,750000,function(value)
  7100. _G.BountyLock = value
  7101. end)
  7102.  
  7103. P:Toggle("Start Bounty Lock",false,function(value)
  7104. _G.StartBountyLock = value
  7105. end)
  7106.  
  7107. spawn(function()
  7108. while wait() do
  7109. if _G.StartBountyLock then
  7110. pcall(function()
  7111. if game:GetService("Players").LocalPlayer.leaderstats["Bounty/Honor"].Value >= _G.BountyLock then
  7112. game:GetService("Players").LocalPlayer:Kick("Successfully! Bounty Farm")
  7113. end
  7114. end)
  7115. end
  7116. end
  7117. end)
  7118.  
  7119. local TimeRaid = R:Label("Wait For Dungeon")
  7120.  
  7121. spawn(function()
  7122. pcall(function()
  7123. while wait() do
  7124. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Timer.Visible == true then
  7125. TimeRaid:Set(game:GetService("Players").LocalPlayer.PlayerGui.Main.Timer.Text)
  7126. else
  7127. TimeRaid:Set("Wait For Dungeon")
  7128. end
  7129. end
  7130. end)
  7131. end)
  7132.  
  7133. R:Toggle("Auto Farm Dungeon",_G.Auto_Dungeon,function(value)
  7134. _G.Auto_Dungeon = value
  7135. StopTween(_G.Auto_Dungeon)
  7136. end)
  7137.  
  7138. spawn(function()
  7139. pcall(function()
  7140. while wait() do
  7141. if _G.Auto_Dungeon then
  7142. if game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Timer.Visible == true then
  7143. for i,v in pairs(game:GetService("Workspace").Enemies:GetDescendants()) do
  7144. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  7145. pcall(function()
  7146. repeat wait()
  7147. sethiddenproperty(game:GetService("Players").LocalPlayer,"SimulationRadius",math.huge)
  7148. v.Humanoid.Health = 0
  7149. v.HumanoidRootPart.CanCollide = false
  7150. until not _G.Auto_Dungeon or not v.Parent or v.Humanoid.Health <= 0
  7151. end)
  7152. end
  7153. end
  7154. end
  7155. end
  7156. end
  7157. end)
  7158. end)
  7159.  
  7160. spawn(function()
  7161. pcall(function()
  7162. while wait() do
  7163. if _G.Auto_Dungeon then
  7164. if game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Timer.Visible == true then
  7165. if game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 5") then
  7166. topos(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 5").CFrame*CFrame.new(0,25,0))
  7167. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 4") then
  7168. topos(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 4").CFrame*CFrame.new(0,25,0))
  7169. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 3") then
  7170. topos(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 3").CFrame*CFrame.new(0,25,0))
  7171. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 2") then
  7172. topos(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 2").CFrame*CFrame.new(0,25,0))
  7173. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
  7174. topos(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1").CFrame*CFrame.new(0,25,0))
  7175. end
  7176. end
  7177. end
  7178. end
  7179. end)
  7180. end)
  7181.  
  7182. R:Toggle("Auto Awakener",_G.Auto_Awakener,function(value)
  7183. _G.Auto_Awakener = value
  7184. end)
  7185.  
  7186. spawn(function()
  7187. pcall(function()
  7188. while wait(.1) do
  7189. if _G.Auto_Awakener then
  7190. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Awakener","Check")
  7191. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Awakener","Awaken")
  7192. end
  7193. end
  7194. end)
  7195. end)
  7196. R:Toggle("Kill Aura",nil,function(value)
  7197. Killaura = value
  7198. end)
  7199. spawn(function()
  7200. while wait() do
  7201. if Killaura or _G.AutoRaid or RaidSuperhuman then
  7202. for i,v in pairs(game.Workspace.Enemies:GetDescendants()) do
  7203. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  7204. pcall(function()
  7205. repeat wait(.1)
  7206. sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
  7207. v.Humanoid.Health = 0
  7208. v.HumanoidRootPart.CanCollide = false
  7209. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  7210. v.HumanoidRootPart.Transparency = 0.8
  7211. until not Killaura or not _G.AutoRaid or not RaidSuperhuman or not v.Parent or v.Humanoid.Health <= 0
  7212. end)
  7213. end
  7214. end
  7215. end
  7216. end
  7217. end)
  7218.  
  7219. R:Dropdown("Select Chips",{"Flame","Ice","Quake","Light","Dark","String","Rumble","Magma","Human: Buddha","Sand","Bird: Phoenix","Dough"},function(value)
  7220. _G.SelectChip = value
  7221. end)
  7222.  
  7223. R:Toggle("Auto Select Dungeon",_G.AutoSelectDungeon,function(value)
  7224. _G.AutoSelectDungeon = value
  7225. end)
  7226.  
  7227. spawn(function()
  7228. while wait() do
  7229. if _G.AutoSelectDungeon then
  7230. pcall(function()
  7231. if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Flame-Flame") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Flame-Flame") then
  7232. _G.SelectChip = "Flame"
  7233. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Ice-Ice") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Ice-Ice") then
  7234. _G.SelectChip = "Ice"
  7235. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Quake-Quake") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Quake-Quake") then
  7236. _G.SelectChip = "Quake"
  7237. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Light-Light") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Light-Light") then
  7238. _G.SelectChip = "Light"
  7239. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Dark-Dark") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Dark-Dark") then
  7240. _G.SelectChip = "Dark"
  7241. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("String-String") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("String-String") then
  7242. _G.SelectChip = "String"
  7243. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Rumble-Rumble") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Rumble-Rumble") then
  7244. _G.SelectChip = "Rumble"
  7245. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Magma-Magma") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Magma-Magma") then
  7246. _G.SelectChip = "Magma"
  7247. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Human-Human: Buddha Fruit") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Human-Human: Buddha Fruit") then
  7248. _G.SelectChip = "Human: Buddha"
  7249. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Sand-Sand") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Sand-Sand") then
  7250. _G.SelectChip = "Sand"
  7251. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Bird-Bird: Phoenix") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Bird-Bird: Phoenix") then
  7252. _G.SelectChip = "Bird: Phoenix"
  7253. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Dough") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Dough") then
  7254. _G.SelectChip = "Dough"
  7255. else
  7256. _G.SelectChip = "Flame"
  7257. end
  7258. end)
  7259. end
  7260. end
  7261. end)
  7262.  
  7263. R:Toggle("Auto Buy Chip",_G.AutoBuyChip,function(value)
  7264. _G.AutoBuyChip = value
  7265. end)
  7266.  
  7267. spawn(function()
  7268. pcall(function()
  7269. while wait() do
  7270. if _G.AutoBuyChip then
  7271. if not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Special Microchip") or not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Special Microchip") then
  7272. if not game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
  7273. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("RaidsNpc", "Select", _G.SelectChip)
  7274. end
  7275. end
  7276. end
  7277. end
  7278. end)
  7279. end)
  7280.  
  7281. R:Button("Buy Chip Select",function()
  7282. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("RaidsNpc","Select",_G.SelectChip)
  7283. end)
  7284.  
  7285. R:Toggle("Auto Start Go To Dungeon",_G.Auto_StartRaid,function(value)
  7286. _G.Auto_StartRaid = value
  7287. end)
  7288.  
  7289. spawn(function()
  7290. while wait(.1) do
  7291. pcall(function()
  7292. if _G.Auto_StartRaid then
  7293. if game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Timer.Visible == false then
  7294. 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
  7295. if World2 then
  7296. fireclickdetector(game:GetService("Workspace").Map.CircleIsland.RaidSummon2.Button.Main.ClickDetector)
  7297. elseif World3 then
  7298. fireclickdetector(game:GetService("Workspace").Map["Boat Castle"].RaidSummon2.Button.Main.ClickDetector)
  7299. end
  7300. end
  7301. end
  7302. end
  7303. end)
  7304. end
  7305. end)
  7306.  
  7307. R:Button("Start Go To Dungeon",function()
  7308. if World2 then
  7309. fireclickdetector(game:GetService("Workspace").Map.CircleIsland.RaidSummon2.Button.Main.ClickDetector)
  7310. elseif World3 then
  7311. fireclickdetector(game:GetService("Workspace").Map["Boat Castle"].RaidSummon2.Button.Main.ClickDetector)
  7312. end
  7313. end)
  7314.  
  7315. R:Button("Next Island",function()
  7316. pcall(function()
  7317. if game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 5") then
  7318. TP(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 5").CFrame*CFrame.new(0,70,100))
  7319. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 4") then
  7320. TP(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 4").CFrame*CFrame.new(0,70,100))
  7321. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 3") then
  7322. TP(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 3").CFrame*CFrame.new(0,70,100))
  7323. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 2") then
  7324. TP(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 2").CFrame*CFrame.new(0,70,100))
  7325. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
  7326. TP(game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1").CFrame*CFrame.new(0,70,100))
  7327. end
  7328. end)
  7329. end)
  7330.  
  7331. if World2 then
  7332. R:Button("Teleport to Lab",function()
  7333. TP(CFrame.new(-6438.73535, 250.645355, -4501.50684))
  7334. end)
  7335. elseif World3 then
  7336. R:Button("Teleport to Lab",function()
  7337. 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))
  7338. end)
  7339. end
  7340.  
  7341. if World2 then
  7342. R:Button("Awakening Room",function()
  7343. TP(CFrame.new(266.227783, 1.39509034, 1857.00732))
  7344. end)
  7345. elseif World3 then
  7346. R:Button("Awakening Room",function()
  7347. TP(CFrame.new(-11571.440429688, 49.172668457031, -7574.7368164062))
  7348. end)
  7349. end
  7350.  
  7351.  
  7352. T:Seperator("World")
  7353.  
  7354. T:Button("Teleport To Old World",function()
  7355. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelMain")
  7356. end)
  7357.  
  7358. T:Button("Teleport To Second Sea",function()
  7359. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelDressrosa")
  7360. end)
  7361.  
  7362. T:Button("Teleport To Third Sea",function()
  7363. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelZou")
  7364. end)
  7365.  
  7366. T:Button("Teleport to Seabeast",function()
  7367. for i,v in pairs(game:GetService("Workspace").SeaBeasts:GetChildren()) do
  7368. if v:FindFirstChild("HumanoidRootPart") then
  7369. topos(v.HumanoidRootPart.CFrame*CFrame.new(0,100,0))
  7370. end
  7371. end
  7372. end)
  7373.  
  7374. T:Seperator("Island")
  7375.  
  7376. if World1 then
  7377. T:Dropdown("Select Island",{
  7378. "WindMill",
  7379. "Marine",
  7380. "Middle Town",
  7381. "Jungle",
  7382. "Pirate Village",
  7383. "Desert",
  7384. "Snow Island",
  7385. "MarineFord",
  7386. "Colosseum",
  7387. "Sky Island 1",
  7388. "Sky Island 2",
  7389. "Sky Island 3",
  7390. "Prison",
  7391. "Magma Village",
  7392. "Under Water Island",
  7393. "Fountain City",
  7394. "Shank Room",
  7395. "Mob Island"
  7396. },function(value)
  7397. _G.SelectIsland = value
  7398. end)
  7399. end
  7400.  
  7401. if World2 then
  7402. T:Dropdown("Select Island",{
  7403. "The Cafe",
  7404. "Frist Spot",
  7405. "Dark Area",
  7406. "Flamingo Mansion",
  7407. "Flamingo Room",
  7408. "Green Zone",
  7409. "Factory",
  7410. "Colossuim",
  7411. "Zombie Island",
  7412. "Two Snow Mountain",
  7413. "Punk Hazard",
  7414. "Cursed Ship",
  7415. "Ice Castle",
  7416. "Forgotten Island",
  7417. "Ussop Island",
  7418. "Mini Sky Island"
  7419. },function(value)
  7420. _G.SelectIsland = value
  7421. end)
  7422. end
  7423.  
  7424. if World3 then
  7425. T:Dropdown("Select Island",{
  7426. "Mansion",
  7427. "Port Town",
  7428. "Great Tree",
  7429. "Castle On The Sea",
  7430. "MiniSky",
  7431. "Hydra Island",
  7432. "Floating Turtle",
  7433. "Haunted Castle",
  7434. "Ice Cream Island",
  7435. "Peanut Island",
  7436. "Cake Island",
  7437. "Cocoa Island",
  7438. "Candy Island New⛄"
  7439. },function(value)
  7440. _G.SelectIsland = value
  7441. end)
  7442. end
  7443.  
  7444. T:Toggle("Teleport",false,function(value)
  7445. _G.TeleportIsland = value
  7446. if _G.TeleportIsland == true then
  7447. repeat wait()
  7448. if _G.SelectIsland == "WindMill" then
  7449. topos(CFrame.new(979.79895019531, 16.516613006592, 1429.0466308594))
  7450. elseif _G.SelectIsland == "Marine" then
  7451. topos(CFrame.new(-2566.4296875, 6.8556680679321, 2045.2561035156))
  7452. elseif _G.SelectIsland == "Middle Town" then
  7453. topos(CFrame.new(-690.33081054688, 15.09425163269, 1582.2380371094))
  7454. elseif _G.SelectIsland == "Jungle" then
  7455. topos(CFrame.new(-1612.7957763672, 36.852081298828, 149.12843322754))
  7456. elseif _G.SelectIsland == "Pirate Village" then
  7457. topos(CFrame.new(-1181.3093261719, 4.7514905929565, 3803.5456542969))
  7458. elseif _G.SelectIsland == "Desert" then
  7459. topos(CFrame.new(944.15789794922, 20.919729232788, 4373.3002929688))
  7460. elseif _G.SelectIsland == "Snow Island" then
  7461. topos(CFrame.new(1347.8067626953, 104.66806030273, -1319.7370605469))
  7462. elseif _G.SelectIsland == "MarineFord" then
  7463. topos(CFrame.new(-4914.8212890625, 50.963626861572, 4281.0278320313))
  7464. elseif _G.SelectIsland == "Colosseum" then
  7465. topos( CFrame.new(-1427.6203613281, 7.2881078720093, -2792.7722167969))
  7466. elseif _G.SelectIsland == "Sky Island 1" then
  7467. topos(CFrame.new(-4869.1025390625, 733.46051025391, -2667.0180664063))
  7468. elseif _G.SelectIsland == "Sky Island 2" then
  7469. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-4607.82275, 872.54248, -1667.55688))
  7470. elseif _G.SelectIsland == "Sky Island 3" then
  7471. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-7894.6176757813, 5547.1416015625, -380.29119873047))
  7472. elseif _G.SelectIsland == "Prison" then
  7473. topos( CFrame.new(4875.330078125, 5.6519818305969, 734.85021972656))
  7474. elseif _G.SelectIsland == "Magma Village" then
  7475. topos(CFrame.new(-5247.7163085938, 12.883934020996, 8504.96875))
  7476. elseif _G.SelectIsland == "Under Water Island" then
  7477. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(61163.8515625, 11.6796875, 1819.7841796875))
  7478. elseif _G.SelectIsland == "Fountain City" then
  7479. topos(CFrame.new(5127.1284179688, 59.501365661621, 4105.4458007813))
  7480. elseif _G.SelectIsland == "Shank Room" then
  7481. topos(CFrame.new(-1442.16553, 29.8788261, -28.3547478))
  7482. elseif _G.SelectIsland == "Mob Island" then
  7483. topos(CFrame.new(-2850.20068, 7.39224768, 5354.99268))
  7484. elseif _G.SelectIsland == "The Cafe" then
  7485. topos(CFrame.new(-380.47927856445, 77.220390319824, 255.82550048828))
  7486. elseif _G.SelectIsland == "Frist Spot" then
  7487. topos(CFrame.new(-11.311455726624, 29.276733398438, 2771.5224609375))
  7488. elseif _G.SelectIsland == "Dark Area" then
  7489. topos(CFrame.new(3780.0302734375, 22.652164459229, -3498.5859375))
  7490. elseif _G.SelectIsland == "Flamingo Mansion" then
  7491. topos(CFrame.new(-483.73370361328, 332.0383605957, 595.32708740234))
  7492. elseif _G.SelectIsland == "Flamingo Room" then
  7493. topos(CFrame.new(2284.4140625, 15.152037620544, 875.72534179688))
  7494. elseif _G.SelectIsland == "Green Zone" then
  7495. topos( CFrame.new(-2448.5300292969, 73.016105651855, -3210.6306152344))
  7496. elseif _G.SelectIsland == "Factory" then
  7497. topos(CFrame.new(424.12698364258, 211.16171264648, -427.54049682617))
  7498. elseif _G.SelectIsland == "Colossuim" then
  7499. topos( CFrame.new(-1503.6224365234, 219.7956237793, 1369.3101806641))
  7500. elseif _G.SelectIsland == "Zombie Island" then
  7501. topos(CFrame.new(-5622.033203125, 492.19604492188, -781.78552246094))
  7502. elseif _G.SelectIsland == "Two Snow Mountain" then
  7503. topos(CFrame.new(753.14288330078, 408.23559570313, -5274.6147460938))
  7504. elseif _G.SelectIsland == "Punk Hazard" then
  7505. topos(CFrame.new(-6127.654296875, 15.951762199402, -5040.2861328125))
  7506. elseif _G.SelectIsland == "Cursed Ship" then
  7507. topos(CFrame.new(923.40197753906, 125.05712890625, 32885.875))
  7508. elseif _G.SelectIsland == "Ice Castle" then
  7509. topos(CFrame.new(6148.4116210938, 294.38687133789, -6741.1166992188))
  7510. elseif _G.SelectIsland == "Forgotten Island" then
  7511. topos(CFrame.new(-3032.7641601563, 317.89672851563, -10075.373046875))
  7512. elseif _G.SelectIsland == "Ussop Island" then
  7513. topos(CFrame.new(4816.8618164063, 8.4599885940552, 2863.8195800781))
  7514. elseif _G.SelectIsland == "Mini Sky Island" then
  7515. topos(CFrame.new(-288.74060058594, 49326.31640625, -35248.59375))
  7516. elseif _G.SelectIsland == "Great Tree" then
  7517. topos(CFrame.new(2681.2736816406, 1682.8092041016, -7190.9853515625))
  7518. elseif _G.SelectIsland == "Castle On The Sea" then
  7519. topos(CFrame.new(-5074.45556640625, 314.5155334472656, -2991.054443359375))
  7520. elseif _G.SelectIsland == "MiniSky" then
  7521. topos(CFrame.new(-260.65557861328, 49325.8046875, -35253.5703125))
  7522. elseif _G.SelectIsland == "Port Town" then
  7523. topos(CFrame.new(-290.7376708984375, 6.729952812194824, 5343.5537109375))
  7524. elseif _G.SelectIsland == "Hydra Island" then
  7525. topos(CFrame.new(5228.8842773438, 604.23400878906, 345.0400390625))
  7526. elseif _G.SelectIsland == "Floating Turtle" then
  7527. topos(CFrame.new(-13274.528320313, 531.82073974609, -7579.22265625))
  7528. elseif _G.SelectIsland == "Mansion" then
  7529. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-12471.169921875, 374.94024658203, -7551.677734375))
  7530. elseif _G.SelectIsland == "Haunted Castle" then
  7531. topos(CFrame.new(-9515.3720703125, 164.00624084473, 5786.0610351562))
  7532. elseif _G.SelectIsland == "Ice Cream Island" then
  7533. topos(CFrame.new(-902.56817626953, 79.93204498291, -10988.84765625))
  7534. elseif _G.SelectIsland == "Peanut Island" then
  7535. topos(CFrame.new(-2062.7475585938, 50.473892211914, -10232.568359375))
  7536. elseif _G.SelectIsland == "Cake Island" then
  7537. topos(CFrame.new(-1884.7747802734375, 19.327526092529297, -11666.8974609375))
  7538. elseif _G.SelectIsland == "Cocoa Island" then
  7539. topos(CFrame.new(87.94276428222656, 73.55451202392578, -12319.46484375))
  7540. elseif _G.SelectIsland == "Candy Island New⛄" then
  7541. topos(CFrame.new(-1014.4241943359375, 149.11068725585938, -14555.962890625))
  7542. end
  7543. until not _G.TeleportIsland
  7544. end
  7545. StopTween(_G.TeleportIsland)
  7546. end)
  7547.  
  7548.  
  7549. S:Seperator("Abilities")
  7550.  
  7551. S:Button("Buy Geppo",function()
  7552. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyHaki","Geppo")
  7553. end)
  7554.  
  7555. S:Button("Buy Buso Haki",function()
  7556. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyHaki","Buso")
  7557. end)
  7558.  
  7559. S:Button("Buy Soru",function()
  7560. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyHaki","Soru")
  7561. end)
  7562.  
  7563. S:Button("Buy Observation(Ken) Haki",function()
  7564. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("KenTalk","Buy")
  7565. end)
  7566.  
  7567. S:Seperator("Fighting Style")
  7568.  
  7569. S:Button("Buy Black Leg",function()
  7570. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyBlackLeg")
  7571. end)
  7572.  
  7573. S:Button("Buy Electro",function()
  7574. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectro")
  7575. end)
  7576.  
  7577. S:Button("Buy Fishman Karate",function()
  7578. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyFishmanKarate")
  7579. end)
  7580.  
  7581. S:Button("Buy Dragon Claw",function()
  7582. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","DragonClaw","1")
  7583. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","DragonClaw","2")
  7584. end)
  7585.  
  7586. S:Button("Buy Superhuman",function()
  7587. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySuperhuman")
  7588. end)
  7589.  
  7590. S:Button("Buy Death Step",function()
  7591. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDeathStep")
  7592. end)
  7593.  
  7594. S:Button("Buy Sharkman Karate",function()
  7595. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySharkmanKarate",true)
  7596. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySharkmanKarate")
  7597. end)
  7598.  
  7599. S:Button("Buy Electric Claw",function()
  7600. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw")
  7601. end)
  7602.  
  7603. S:Button("Buy Dragon Talon",function()
  7604. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDragonTalon")
  7605. end)
  7606. S:Button("Buy God Human",function()
  7607. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyGodhuman")
  7608. end)
  7609.  
  7610. -----Shop----------------
  7611.  
  7612. S:Seperator("Accessory")
  7613.  
  7614. S:Button("Tomoe Ring",function()
  7615. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Tomoe Ring")
  7616. end)
  7617.  
  7618. S:Button("Black Cape",function()
  7619. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Black Cape")
  7620. end)
  7621.  
  7622. S:Button("Swordsman Hat",function()
  7623. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Swordsman Hat")
  7624. end)
  7625.  
  7626. S:Seperator("Sword")
  7627.  
  7628. S:Button("Cutlass",function()
  7629. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Cutlass")
  7630. end)
  7631.  
  7632. S:Button("Katana",function()
  7633. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Katana")
  7634. end)
  7635.  
  7636. S:Button("Iron Mace",function()
  7637. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Iron Mace")
  7638. end)
  7639.  
  7640. S:Button("Duel Katana",function()
  7641. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Duel Katana")
  7642. end)
  7643.  
  7644. S:Button("Triple Katana", function()
  7645. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Triple Katana")
  7646. end)
  7647.  
  7648. S:Button("Pipe",function()
  7649. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Pipe")
  7650. end)
  7651.  
  7652. S:Button("Dual Headed Blade",function()
  7653. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Dual-Headed Blade")
  7654. end)
  7655.  
  7656. S:Button("Bisento",function()
  7657. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Bisento")
  7658. end)
  7659.  
  7660. S:Button("Soul Cane",function()
  7661. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Soul Cane")
  7662. end)
  7663.  
  7664. S:Seperator("Gun")
  7665.  
  7666. S:Button("Slingshot",function()
  7667. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Slingshot")
  7668. end)
  7669.  
  7670. S:Button("Musket",function()
  7671. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Musket")
  7672. end)
  7673.  
  7674. S:Button("Flintlock",function()
  7675. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Flintlock")
  7676. end)
  7677.  
  7678. S:Button("Refined Flintlock",function()
  7679. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Refined Flintlock")
  7680. end)
  7681.  
  7682. S:Button("Cannon",function()
  7683. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Cannon")
  7684. end)
  7685.  
  7686. S:Button("Kabucha",function()
  7687. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","Slingshot","1")
  7688. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","Slingshot","2")
  7689. end)
  7690.  
  7691. D:Seperator("Sniper")
  7692.  
  7693. FruitList = {
  7694. "Bomb-Bomb",
  7695. "Spike-Spike",
  7696. "Chop-Chop",
  7697. "Spring-Spring",
  7698. "Kilo-Kilo",
  7699. "Spin-Spin",
  7700. "Bird: Falcon",
  7701. "Smoke-Smoke",
  7702. "Flame-Flame",
  7703. "Ice-Ice",
  7704. "Sand-Sand",
  7705. "Dark-Dark",
  7706. "Revive-Revive",
  7707. "Diamond-Diamond",
  7708. "Light-Light",
  7709. "Love-Love",
  7710. "Rubber-Rubber",
  7711. "Barrier-Barrier",
  7712. "Magma-Magma",
  7713. "Door-Door",
  7714. "Quake-Quake",
  7715. "Human-Human: Buddha",
  7716. "String-String",
  7717. "Bird-Bird: Phoenix",
  7718. "Rumble-Rumble",
  7719. "Paw-Paw",
  7720. "Gravity-Gravity",
  7721. "Dough-Dough",
  7722. "Venom-Venom",
  7723. "Shadow-Shadow",
  7724. "Control-Control",
  7725. "Soul-Soul",
  7726. "Dragon-Dragon",
  7727. "Leopard-Leopard"
  7728. }
  7729.  
  7730. _G.SelectFruit = ""
  7731. D:Dropdown("Select Fruits Sniper",FruitList,function(value)
  7732. _G.SelectFruit = value
  7733. end)
  7734.  
  7735. D:Toggle("Auto Buy Fruit Sniper",_G.AutoBuyFruitSniper,function(value)
  7736. _G.AutoBuyFruitSniper = value
  7737. end)
  7738.  
  7739. D:Seperator("Others")
  7740.  
  7741. D:Dropdown("Select Fruits Eat",FruitList,function(value)
  7742. _G.SelectFruitEat = value
  7743. end)
  7744.  
  7745. D:Toggle("Auto Eat Fruit",_G.AutoEatFruit,function(value)
  7746. _G.AutoEatFruit = value
  7747. end)
  7748.  
  7749. spawn(function()
  7750. pcall(function()
  7751. while wait(.1) do
  7752. if _G.AutoEatFruit then
  7753. game:GetService("Players").LocalPlayer.Character:FindFirstChild(_G.SelectFruitEat).EatRemote:InvokeServer()
  7754. end
  7755. end
  7756. end)
  7757. end)
  7758.  
  7759. D:Toggle("Auto Eat Fruit Hop",_G.AutoEatFruitHop,function(value)
  7760. _G.AutoEatFruitHop = value
  7761. end)
  7762.  
  7763. spawn(function()
  7764. pcall(function()
  7765. while wait(.1) do wait(10)
  7766. if _G.AutoEatFruitHop and _G.SelectFruitEat ~= nil then
  7767. if not game:GetService("Players").LocalPlayer.Character:FindFirstChild(_G.SelectFruitEat) or not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild(_G.SelectFruitEat) then
  7768. Hop()
  7769. else
  7770. game:GetService("Players").LocalPlayer.Character:FindFirstChild(_G.SelectFruitEat).EatRemote:InvokeServer()
  7771. end
  7772. end
  7773. end
  7774. end)
  7775. end)
  7776.  
  7777. spawn(function()
  7778. pcall(function()
  7779. while wait(.1) do
  7780. if _G.AutoBuyFruitSniper then
  7781. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("GetFruits")
  7782. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("PurchaseRawFruit",_G.SelectFruit)
  7783. end
  7784. end
  7785. end)
  7786. end)
  7787.  
  7788. D:Toggle("Auto Random Fruit",_G.Random_Auto,function(value)
  7789. _G.Random_Auto = value
  7790. end)
  7791.  
  7792. spawn(function()
  7793. pcall(function()
  7794. while wait(.1) do
  7795. if _G.Random_Auto then
  7796. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Cousin","Buy")
  7797. end
  7798. end
  7799. end)
  7800. end)
  7801.  
  7802. D:Button("Random Fruit",function()
  7803. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Cousin","Buy")
  7804. end)
  7805.  
  7806. D:Button("Open Devil Shop",function()
  7807. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("GetFruits")
  7808. game:GetService("Players").LocalPlayer.PlayerGui.Main.FruitShop.Visible = true
  7809. end)
  7810.  
  7811. D:Toggle("Auto Drop Fruit",_G.DropFruit,function(value)
  7812. _G.DropFruit = value
  7813. end)
  7814.  
  7815. spawn(function()
  7816. while wait() do
  7817. if _G.DropFruit then
  7818. pcall(function()
  7819. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  7820. if string.find(v.Name, "Fruit") then
  7821. EquipWeapon(v.Name)
  7822. wait(.1)
  7823. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Dialogue.Visible == true then
  7824. game:GetService("Players").LocalPlayer.PlayerGui.Main.Dialogue.Visible = false
  7825. end
  7826. EquipWeapon(v.Name)
  7827. game:GetService("Players").LocalPlayer.Character:FindFirstChild(SelectFruit).EatRemote:InvokeServer("Drop")
  7828. end
  7829. end
  7830. for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetChildren()) do
  7831. if string.find(v.Name, "Fruit") then
  7832. EquipWeapon(v.Name)
  7833. wait(.1)
  7834. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Dialogue.Visible == true then
  7835. game:GetService("Players").LocalPlayer.PlayerGui.Main.Dialogue.Visible = false
  7836. end
  7837. EquipWeapon(v.Name)
  7838. game:GetService("Players").LocalPlayer.Character:FindFirstChild(SelectFruit).EatRemote:InvokeServer("Drop")
  7839. end
  7840. end
  7841. end)
  7842. end
  7843. end
  7844. end)
  7845.  
  7846. D:Toggle("Auto Store Fruit ",_G.AutoStoreFruit,function(value)
  7847. _G.AutoStoreFruit = value
  7848. end)
  7849.  
  7850. spawn(function()
  7851. while task.wait() do
  7852. if _G.AutoStoreFruit then
  7853. pcall(function()
  7854. for i,v in pairs(Fruit) do
  7855. for x,y in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  7856. if string.find(y.Name,"Fruit") then
  7857. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StoreFruit",v,game.Players.LocalPlayer.Backpack[y.Name])
  7858. end
  7859. end
  7860. end
  7861. end)
  7862. end
  7863. end
  7864. end)
  7865.  
  7866. D:Toggle("Grab Fruit",_G.BringFruit,function(value)
  7867. _G.BringFruit = value
  7868. pcall(function()
  7869. while _G.BringFruit do wait(.1)
  7870. for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
  7871. if v:IsA("Tool") then
  7872. local OldCFrame = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame
  7873. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.Handle.CFrame * CFrame.new(0,0,8)
  7874. v.Handle.CFrame = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame
  7875. wait(.1)
  7876. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = OldCFrame
  7877. end
  7878. end
  7879. end
  7880. end)
  7881. end)
  7882.  
  7883. D:Toggle("Bring All Fruit 75% Kick System",_G.BringFruitBF,function(value)
  7884. _G.BringFruitBF = value
  7885. end)
  7886.  
  7887. spawn(function()
  7888. while wait() do
  7889. if _G.BringFruitBF then
  7890. pcall(function()
  7891. for i,v in pairs(game.Workspace:GetChildren()) do
  7892. if v:IsA("Tool") then
  7893. v.Handle.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  7894. end
  7895. end
  7896. end)
  7897. end
  7898. end
  7899. end)
  7900.  
  7901.  
  7902. Misc:Seperator("Server")
  7903.  
  7904. Misc:Button("Rejoin Server",function()
  7905. game:GetService("TeleportService"):Teleport(game.PlaceId, game:GetService("Players").LocalPlayer)
  7906. end)
  7907.  
  7908. Misc:Button("Server Hop",function()
  7909. Hop()
  7910. end)
  7911.  
  7912. Misc:Button("Hop To Lower Player",function()
  7913. getgenv().AutoTeleport = true
  7914. getgenv().DontTeleportTheSameNumber = true
  7915. getgenv().CopytoClipboard = false
  7916. if not game:IsLoaded() then
  7917. print("Game is loading waiting...")
  7918. end
  7919. local maxplayers = math.huge
  7920. local serversmaxplayer;
  7921. local goodserver;
  7922. local gamelink = "https://games.roblox.com/v1/games/" .. game.PlaceId .. "/servers/Public?sortOrder=Asc&limit=100"
  7923. function serversearch()
  7924. for _, v in pairs(game:GetService("HttpService"):JSONDecode(game:HttpGetAsync(gamelink)).data) do
  7925. if type(v) == "table" and v.playing ~= nil and maxplayers > v.playing then
  7926. serversmaxplayer = v.maxPlayers
  7927. maxplayers = v.playing
  7928. goodserver = v.id
  7929. end
  7930. end
  7931. end
  7932. function getservers()
  7933. serversearch()
  7934. for i,v in pairs(game:GetService("HttpService"):JSONDecode(game:HttpGetAsync(gamelink))) do
  7935. if i == "nextPageCursor" then
  7936. if gamelink:find("&cursor=") then
  7937. local a = gamelink:find("&cursor=")
  7938. local b = gamelink:sub(a)
  7939. gamelink = gamelink:gsub(b, "")
  7940. end
  7941. gamelink = gamelink .. "&cursor=" ..v
  7942. getservers()
  7943. end
  7944. end
  7945. end
  7946. getservers()
  7947. if AutoTeleport then
  7948. if DontTeleportTheSameNumber then
  7949. if #game:GetService("Players"):GetPlayers() - 4 == maxplayers then
  7950. return warn("It has same number of players (except you)")
  7951. elseif goodserver == game.JobId then
  7952. return warn("Your current server is the most empty server atm")
  7953. end
  7954. end
  7955. game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, goodserver)
  7956. end
  7957. end)
  7958.  
  7959. Misc:Seperator("Misc")
  7960.  
  7961. Misc:Button("Open Devil Shop",function()
  7962. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("GetFruits")
  7963. game:GetService("Players").LocalPlayer.PlayerGui.Main.FruitShop.Visible = true
  7964. end)
  7965.  
  7966. Misc:Button("Open Inventory",function()
  7967. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getInventoryWeapons")
  7968. wait(1)
  7969. game:GetService("Players").LocalPlayer.PlayerGui.Main.Inventory.Visible = true
  7970. end)
  7971.  
  7972. Misc:Button("Open Inventory Fruit",function()
  7973. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getInventoryFruits")
  7974. game:GetService("Players").LocalPlayer.PlayerGui.Main.FruitInventory.Visible = true
  7975. end)
  7976.  
  7977. Misc:Button("Title Name",function()
  7978. local args = {
  7979. [1] = "getTitles"
  7980. }
  7981. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  7982. game.Players.localPlayer.PlayerGui.Main.Titles.Visible = true
  7983. end)
  7984.  
  7985. Misc:Button("Color Haki",function()
  7986. game.Players.localPlayer.PlayerGui.Main.Colors.Visible = true
  7987. end)
  7988.  
  7989. Misc:Toggle("Highlight Mode",false,function(value)
  7990. if value == true then
  7991. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Beli.Visible = false
  7992. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.HP.Visible = false
  7993. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Energy.Visible = false
  7994. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.StatsButton.Visible = false
  7995. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.ShopButton.Visible = false
  7996. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Skills.Visible = false
  7997. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Level.Visible = false
  7998. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.MenuButton.Visible = false
  7999. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Code.Visible = false
  8000. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Settings.Visible = false
  8001. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Mute.Visible = false
  8002. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.CrewButton.Visible = false
  8003. else
  8004. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Beli.Visible = true
  8005. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.HP.Visible = true
  8006. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Energy.Visible = true
  8007. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.StatsButton.Visible = true
  8008. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.ShopButton.Visible = true
  8009. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Skills.Visible = true
  8010. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Level.Visible = true
  8011. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.MenuButton.Visible = true
  8012. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Code.Visible = true
  8013. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Settings.Visible = true
  8014. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Mute.Visible = true
  8015. game:GetService("Players")["LocalPlayer"].PlayerGui.Main.CrewButton.Visible = true
  8016. end
  8017. end)
  8018.  
  8019. Misc:Seperator("Teams")
  8020.  
  8021. Misc:Button("Join Pirates Team",function()
  8022. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetTeam","Pirates")
  8023. end)
  8024.  
  8025. Misc:Button("Join Marines Team",function()
  8026. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetTeam","Marines")
  8027. end)
  8028.  
  8029. Misc:Seperator("Hack")
  8030.  
  8031. Misc:Button("Unlock Portal",function()
  8032. _G.UnlockPortal = true
  8033. end)
  8034.  
  8035. spawn(function()
  8036. while wait() do
  8037. pcall(function()
  8038. if _G.UnlockPortal == true then
  8039. for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.Notifications:GetChildren()) do
  8040. if v.Name == "NotificationTemplate" then
  8041. if string.find(v.Text,"cannot") then
  8042. v:Destroy()
  8043. end
  8044. end
  8045. end
  8046. end
  8047. end)
  8048. end
  8049. end)
  8050.  
  8051. spawn(function()
  8052. while wait() do
  8053. pcall(function()
  8054. if _G.UnlockPortal == true then
  8055. CastlePostoMansion = CFrame.new(-5084.8447265625, 316.48101806641, -3145.3752441406)
  8056. MansiontoCastlePos = CFrame.new(-12464.596679688, 376.30590820312, -7567.2626953125)
  8057. Castletophydra = CFrame.new(-5095.33984375, 316.48101806641, -3168.3134765625)
  8058. HydratoCastle = CFrame.new(5741.869140625, 611.94750976562, -282.61154174805)
  8059. if (CastlePostoMansion.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 8 then
  8060. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-12471.169921875, 374.94024658203, -7551.677734375))
  8061. end
  8062. if (MansiontoCastlePos.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 8 then
  8063. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-5072.08984375, 314.5412902832, -3151.1098632812))
  8064. end
  8065. if (Castletophydra.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 8 then
  8066. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(5748.7587890625, 610.44982910156, -267.81704711914))
  8067. end
  8068. if (HydratoCastle.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 8 then
  8069. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-5072.08984375, 314.5412902832, -3151.1098632812))
  8070. end
  8071. end
  8072. end)
  8073. end
  8074. end)
  8075.  
  8076. Misc:Button("Invisible",function()
  8077. game:GetService("Players").LocalPlayer.Character.LowerTorso:Destroy()
  8078. end)
  8079.  
  8080. Misc:Button("Click TP Tool",function()
  8081. local plr = game:GetService("Players").LocalPlayer
  8082. local mouse = plr:GetMouse()
  8083. local tool = Instance.new("Tool")
  8084. tool.RequiresHandle = false
  8085. tool.Name = "Teleport Tool"
  8086. tool.Activated:Connect(function()
  8087. local root = plr.Character.HumanoidRootPart
  8088. local pos = mouse.Hit.Position+Vector3.new(0,2.5,0)
  8089. local offset = pos-root.Position
  8090. root.CFrame = root.CFrame+offset
  8091. end)
  8092. tool.Parent = plr.Backpack
  8093. end)
  8094.  
  8095. Misc:Button("Stop All Tween",function()
  8096. topos(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame)
  8097. _G.Clip = false
  8098. end)
  8099.  
  8100. Misc:Seperator("Codes")
  8101.  
  8102. local x2Code = {
  8103. "KITTGAMING",
  8104. "ENYU_IS_PRO",
  8105. "FUDD10",
  8106. "BIGNEWS",
  8107. "THEGREATACE",
  8108. "SUB2GAMERROBOT_EXP1",
  8109. "STRAWHATMAIME",
  8110. "SUB2OFFICIALNOOBIE",
  8111. "SUB2NOOBMASTER123",
  8112. "SUB2DAIGROCK",
  8113. "AXIORE",
  8114. "TANTAIGAMIMG",
  8115. "STRAWHATMAINE",
  8116. "JCWK",
  8117. "FUDD10_V2",
  8118. "SUB2FER999",
  8119. "MAGICBIS",
  8120. "TY_FOR_WATCHING",
  8121. "STARCODEHEO"
  8122. }
  8123.  
  8124. Misc:Button("Redeem All Codes",function()
  8125. function RedeemCode(value)
  8126. game:GetService("ReplicatedStorage").Remotes.Redeem:InvokeServer(value)
  8127. end
  8128. for i,v in pairs(x2Code) do
  8129. RedeemCode(v)
  8130. end
  8131. end)
  8132.  
  8133. Misc:Dropdown("Selected Codes Reset stat",{"NOOB_REFUND","SUB2GAMERROBOT_RESET1","Sub2UncleKizaru"},function(value)
  8134. _G.CodeSelect = value
  8135. end)
  8136.  
  8137. Misc:Button("Redeem Code (Selected Codes)",function()
  8138. game:GetService("ReplicatedStorage").Remotes.Redeem:InvokeServer(_G.CodeSelect)
  8139. end)
  8140.  
  8141. Misc:Seperator("State")
  8142.  
  8143. Misc:Dropdown("Select Haki State",{"State 0","State 1","State 2","State 3","State 4","State 5"},function(value)
  8144. _G.SelectStateHaki = value
  8145. end)
  8146.  
  8147. Misc:Button("Change Buso Haki State",function()
  8148. if _G.SelectStateHaki == "State 0" then
  8149. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ChangeBusoStage",0)
  8150. elseif _G.SelectStateHaki == "State 1" then
  8151. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ChangeBusoStage",1)
  8152. elseif _G.SelectStateHaki == "State 2" then
  8153. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ChangeBusoStage",2)
  8154. elseif _G.SelectStateHaki == "State 3" then
  8155. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ChangeBusoStage",3)
  8156. elseif _G.SelectStateHaki == "State 4" then
  8157. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ChangeBusoStage",4)
  8158. elseif _G.SelectStateHaki == "State 5" then
  8159. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ChangeBusoStage",5)
  8160. end
  8161. end)
  8162.  
  8163. Misc:Seperator("Graphic")
  8164.  
  8165. local a = game.Lighting
  8166. local c = Instance.new("ColorCorrectionEffect", a)
  8167. local e = Instance.new("ColorCorrectionEffect", a)
  8168. OldAmbient = a.Ambient
  8169. OldBrightness = a.Brightness
  8170. OldColorShift_Top = a.ColorShift_Top
  8171. OldBrightnessc = c.Brightness
  8172. OldContrastc = c.Contrast
  8173. OldTintColorc = c.TintColor
  8174. OldTintColore = e.TintColor
  8175. Misc:Toggle("RTX Mode",_G.RTXMode,function(value)
  8176. _G.RTXMode = value
  8177. if not _G.RTXMode then return end
  8178. while _G.RTXMode do wait()
  8179. a.Ambient = Color3.fromRGB(33, 33, 33)
  8180. a.Brightness = 0.3
  8181. c.Brightness = 0.176
  8182. c.Contrast = 0.39
  8183. c.TintColor = Color3.fromRGB(217, 145, 57)
  8184. game.Lighting.FogEnd = 999
  8185. if not game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("PointLight") then
  8186. local a2 = Instance.new("PointLight")
  8187. a2.Parent = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  8188. a2.Range = 15
  8189. a2.Color = Color3.fromRGB(217, 145, 57)
  8190. end
  8191. if not _G.RTXMode then
  8192. a.Ambient = OldAmbient
  8193. a.Brightness = OldBrightness
  8194. a.ColorShift_Top = OldColorShift_Top
  8195. c.Contrast = OldContrastc
  8196. c.Brightness = OldBrightnessc
  8197. c.TintColor = OldTintColorc
  8198. e.TintColor = OldTintColore
  8199. game.Lighting.FogEnd = 2500
  8200. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("PointLight"):Destroy()
  8201. end
  8202. end
  8203. end)
  8204.  
  8205. Misc:Button("FPS Boost",function()
  8206. pcall(function()
  8207. game:GetService("Lighting").FantasySky:Destroy()
  8208. local g = game
  8209. local w = g.Workspace
  8210. local l = g.Lighting
  8211. local t = w.Terrain
  8212. t.WaterWaveSize = 0
  8213. t.WaterWaveSpeed = 0
  8214. t.WaterReflectance = 0
  8215. t.WaterTransparency = 0
  8216. l.GlobalShadows = false
  8217. l.FogEnd = 9e9
  8218. l.Brightness = 0
  8219. settings().Rendering.QualityLevel = "Level01"
  8220. for i, v in pairs(g:GetDescendants()) do
  8221. if v:IsA("Part") or v:IsA("Union") or v:IsA("CornerWedgePart") or v:IsA("TrussPart") then
  8222. v.Material = "Plastic"
  8223. v.Reflectance = 0
  8224. elseif v:IsA("Decal") or v:IsA("Texture") then
  8225. v.Transparency = 1
  8226. elseif v:IsA("ParticleEmitter") or v:IsA("Trail") then
  8227. v.Lifetime = NumberRange.new(0)
  8228. elseif v:IsA("Explosion") then
  8229. v.BlastPressure = 1
  8230. v.BlastRadius = 1
  8231. elseif v:IsA("Fire") or v:IsA("SpotLight") or v:IsA("Smoke") or v:IsA("Sparkles") then
  8232. v.Enabled = false
  8233. elseif v:IsA("MeshPart") then
  8234. v.Material = "Plastic"
  8235. v.Reflectance = 0
  8236. v.TextureID = 10385902758728957
  8237. end
  8238. end
  8239. for i, e in pairs(l:GetChildren()) do
  8240. if e:IsA("BlurEffect") or e:IsA("SunRaysEffect") or e:IsA("ColorCorrectionEffect") or e:IsA("BloomEffect") or e:IsA("DepthOfFieldEffect") then
  8241. e.Enabled = false
  8242. end
  8243. end
  8244. for i, v in pairs(game:GetService("Workspace").Camera:GetDescendants()) do
  8245. if v.Name == ("Water;") then
  8246. v.Transparency = 1
  8247. v.Material = "Plastic"
  8248. end
  8249. end
  8250. end)
  8251. end)
  8252.  
  8253. Misc:Toggle("Remove Fog",RemoveFog,function(value)
  8254. RemoveFog = value
  8255. if not RemoveFog then return end
  8256. while RemoveFog do wait()
  8257. game.Lighting.FogEnd = 9e9
  8258. if not RemoveFog then
  8259. game.Lighting.FogEnd = 99999
  8260. end
  8261. end
  8262. end)
  8263.  
  8264. Misc:Toggle("Remove Damage",function()
  8265. for i,v in pairs(game.Workspace:GetDescendants()) do
  8266. if v.Name == "DamageCounter" then
  8267. v:Destroy()
  8268. end
  8269. end
  8270. for i,v in pairs(game.ReplicatedStorage:GetDescendants()) do
  8271. if v.Name == "DamageCounter" then
  8272. v:Destroy()
  8273. end
  8274. end
  8275. end)
  8276.  
  8277. Misc:Button("Unlock FPS",function()
  8278. setfpscap(9999999)
  8279. end)
  8280.  
  8281. Misc:Button("Fake Skin MODE™",function()
  8282. spawn(function()
  8283. pcall(function()
  8284. while true do
  8285. wait(.0)
  8286. game.Players.LocalPlayer.Character.Humanoid.Health = 999999
  8287. end
  8288. end)
  8289. end)
  8290.  
  8291. for i,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  8292. if v.ClassName == "Accessory" then
  8293. v:Destroy()
  8294. end
  8295. end
  8296.  
  8297. game.Players.LocalPlayer.Character.Pants:Destroy()
  8298. game.Players.LocalPlayer.Character.Animate.Disabled = true
  8299. end)
  8300.  
  8301. Misc:Seperator("Abilities")
  8302.  
  8303. Misc:Toggle("Dodge No Cooldown",false,function(value)
  8304. nododgecool = value
  8305. NoDodgeCool()
  8306. end)
  8307.  
  8308. Misc:Toggle("Infinite Energy",false,function(value)
  8309. InfiniteEnergy = value
  8310. originalstam = LocalPlayer.Character.Energy.Value
  8311. end)
  8312.  
  8313. Misc:Toggle("Auto Active Race",_G.AutoAgility,function(value)
  8314. _G.AutoAgility = value
  8315. end)
  8316.  
  8317. spawn(function()
  8318. pcall(function()
  8319. while wait() do
  8320. if _G.AutoAgility then
  8321. game:GetService("ReplicatedStorage").Remotes.CommE:FireServer("ActivateAbility")
  8322. end
  8323. end
  8324. end)
  8325. end)
  8326.  
  8327. Misc:Toggle("Infinite Ability",true,function(value)
  8328. InfAbility = value
  8329. if value == false then
  8330. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("Agility"):Destroy()
  8331. end
  8332. end)
  8333.  
  8334. spawn(function()
  8335. while wait() do
  8336. if InfAbility then
  8337. InfAb()
  8338. end
  8339. end
  8340. end)
  8341.  
  8342. Misc:Toggle("Infinite Obversation Range",getgenv().InfiniteObRange,function(value)
  8343. getgenv().InfiniteObRange = value
  8344. local VS = game:GetService("Players").LocalPlayer.VisionRadius.Value
  8345. while getgenv().InfiniteObRange do
  8346. wait()
  8347. local player = game:GetService("Players").LocalPlayer
  8348. local char = player.Character
  8349. local VisionRadius = player.VisionRadius
  8350. if player then
  8351. if char.Humanoid.Health <= 0 then
  8352. wait(5)
  8353. end
  8354. VisionRadius.Value = math.huge
  8355. elseif getgenv().InfiniteObRange == false and player then
  8356. VisionRadius.Value = VS
  8357. end
  8358. end
  8359. end)
  8360.  
  8361. Misc:Toggle("Infinite Geppo",getgenv().InfGeppo,function(value)
  8362. getgenv().InfGeppo = value
  8363. end)
  8364.  
  8365. spawn(function()
  8366. while wait() do
  8367. pcall(function()
  8368. if getgenv().InfGeppo then
  8369. for i,v in next, getgc() do
  8370. if game:GetService("Players").LocalPlayer.Character.Geppo then
  8371. if typeof(v) == "function" and getfenv(v).script == game:GetService("Players").LocalPlayer.Character.Geppo then
  8372. for i2,v2 in next, getupvalues(v) do
  8373. if tostring(i2) == "9" then
  8374. repeat wait(.1)
  8375. setupvalue(v,i2,0)
  8376. until not getgenv().InfGeppo or game:GetService("Players").LocalPlayer.Character.Humanoid.Health <= 0
  8377. end
  8378. end
  8379. end
  8380. end
  8381. end
  8382. end
  8383. end)
  8384. end
  8385. end)
  8386.  
  8387. Misc:Toggle("Infinite Soru",getgenv().InfSoru,function(value)
  8388. getgenv().InfSoru = value
  8389. end)
  8390.  
  8391. spawn(function()
  8392. while wait() do
  8393. pcall(function()
  8394. if getgenv().InfSoru and game:GetService("Players").LocalPlayer.Character:FindFirstChild("HumanoidRootPart") ~= nil then
  8395. for i,v in next, getgc() do
  8396. if game:GetService("Players").LocalPlayer.Character.Soru then
  8397. if typeof(v) == "function" and getfenv(v).script == game:GetService("Players").LocalPlayer.Character.Soru then
  8398. for i2,v2 in next, getupvalues(v) do
  8399. if typeof(v2) == "table" then
  8400. repeat wait(0.1)
  8401. v2.LastUse = 0
  8402. until not getgenv().InfSoru or game:GetService("Players").LocalPlayer.Character.Humanoid.Health <= 0
  8403. end
  8404. end
  8405. end
  8406. end
  8407. end
  8408. end
  8409. end)
  8410. end
  8411. end)
  8412.  
  8413. Misc:Toggle("Walk on Water",true,function(value)
  8414. _G.WalkWater = value
  8415. end)
  8416.  
  8417. spawn(function()
  8418. while task.wait() do
  8419. pcall(function()
  8420. if _G.WalkWater then
  8421. game:GetService("Workspace").Map["WaterBase-Plane"].Size = Vector3.new(1000,112,1000)
  8422. else
  8423. game:GetService("Workspace").Map["WaterBase-Plane"].Size = Vector3.new(1000,80,1000)
  8424. end
  8425. end)
  8426. end
  8427. end)
  8428.  
  8429. Misc:Toggle("NoClip",_G.NOCLIP,function(value)
  8430. _G.NOCLIP = value
  8431. end)
  8432.  
  8433. spawn(function()
  8434. while wait() do
  8435. if sethiddenproperty then
  8436. sethiddenproperty(game.Players.LocalPlayer,"SimulationRadius",100)
  8437. end
  8438. if setscriptable then
  8439. setscriptable(game.Players.LocalPlayer, "SimulationRadius", true)
  8440. game.Players.LocalPlayer.SimulationRadius = math.huge * math.huge, math.huge * math.huge * 0 / 0 * 0 / 0 * 0 / 0 * 0 / 0 * 0 / 0
  8441. end
  8442. end
  8443. end)
  8444.  
  8445. _G.Remove_Effect = true
  8446.  
  8447. spawn(function()
  8448. game:GetService('RunService').Stepped:Connect(function()
  8449. if _G.Remove_Effect then
  8450. for i, v in pairs(game:GetService("ReplicatedStorage").Effect.Container:GetChildren()) do
  8451. if v.Name == "Death" then
  8452. v:Destroy()
  8453. end
  8454. end
  8455. end
  8456. end)
  8457. end)
  8458.  
  8459. Esp:Seperator("ESP MENU")
  8460.  
  8461. Esp:Toggle("ESP Player",false,function(value)
  8462. ESPPlayer = value
  8463. while ESPPlayer do wait()
  8464. UpdateEspPlayer()
  8465. end
  8466. end)
  8467.  
  8468. Esp:Toggle("ESP Chest",false,function(value)
  8469. ChestESP = value
  8470. while ChestESP do wait()
  8471. UpdateChestEsp()
  8472. end
  8473. end)
  8474.  
  8475. Esp:Toggle("ESP Fruit",false,function(value)
  8476. DevilFruitESP = value
  8477. while DevilFruitESP do wait()
  8478. UpdateBfEsp()
  8479. end
  8480. end)
  8481.  
  8482. Esp:Toggle("ESP Flower",false,function(value)
  8483. FlowerESP = value
  8484. while FlowerESP do wait()
  8485. UpdateFlowerEsp()
  8486. end
  8487. end)
  8488.  
  8489. Esp:Toggle("ESP Island",IslandESP,function(value)
  8490. IslandESP = value
  8491. while IslandESP do wait()
  8492. UpdateIslandESP()
  8493. end
  8494. end)
  8495.  
  8496. game.StarterGui:SetCore("SendNotification", {
  8497. Icon = "http://www.roblox.com/asset/?id=12523036534";
  8498. Title = "Domadic Hub",
  8499. Text = "Welcome To Script!!"
  8500. })
  8501.  
  8502. game.StarterGui:SetCore("SendNotification", {
  8503. Icon = "http://www.roblox.com/asset/?id=12523036534";
  8504. Title = "Domadic Hub",
  8505. Text = "made by มีดร้ายเเรง🔪🔪#6356"
  8506. })
  8507.  
  8508. _G.FastAttackNormalSpeed = true
  8509.  
  8510. local SeraphFrame = debug.getupvalues(require(game:GetService("Players").LocalPlayer.PlayerScripts:WaitForChild("CombatFramework")))[2]
  8511. local VirtualUser = game:GetService('VirtualUser')
  8512. local RigControllerR = debug.getupvalues(require(game:GetService("Players").LocalPlayer.PlayerScripts.CombatFramework.RigController))[2]
  8513. local Client = game:GetService("Players").LocalPlayer
  8514. local DMG = require(Client.PlayerScripts.CombatFramework.Particle.Damage)
  8515.  
  8516. function SeraphFuckWeapon()
  8517. local p13 = SeraphFrame.activeController
  8518. local wea = p13.blades[1]
  8519. if not wea then return end
  8520. while wea.Parent~=game.Players.LocalPlayer.Character do wea=wea.Parent end
  8521. return wea
  8522. end
  8523.  
  8524. function getHits(Size)
  8525. local Hits = {}
  8526. local Enemies = workspace.Enemies:GetChildren()
  8527. local Characters = workspace.Characters:GetChildren()
  8528. for i=1,#Enemies do local v = Enemies[i]
  8529. local Human = v:FindFirstChildOfClass("Humanoid")
  8530. if Human and Human.RootPart and Human.Health > 0 and game.Players.LocalPlayer:DistanceFromCharacter(Human.RootPart.Position) < Size+5 then
  8531. table.insert(Hits,Human.RootPart)
  8532. end
  8533. end
  8534. for i=1,#Characters do local v = Characters[i]
  8535. if v ~= game.Players.LocalPlayer.Character then
  8536. local Human = v:FindFirstChildOfClass("Humanoid")
  8537. if Human and Human.RootPart and Human.Health > 0 and game.Players.LocalPlayer:DistanceFromCharacter(Human.RootPart.Position) < Size+5 then
  8538. table.insert(Hits,Human.RootPart)
  8539. end
  8540. end
  8541. end
  8542. return Hits
  8543. end
  8544.  
  8545. task.spawn(
  8546. function()
  8547. while wait(0) do
  8548. if _G.FastAttackNormalSpeed then
  8549. if SeraphFrame.activeController then
  8550. -- if v.Humanoid.Health > 0 then
  8551. SeraphFrame.activeController.timeToNextAttack = 0
  8552. SeraphFrame.activeController.focusStart = 0
  8553. SeraphFrame.activeController.hitboxMagnitude = 40
  8554. SeraphFrame.activeController.humanoid.AutoRotate = true
  8555. SeraphFrame.activeController.increment = 1 + 1 / 1
  8556. -- end
  8557. end
  8558. end
  8559. end
  8560. end)
  8561.  
  8562. function Boost()
  8563. spawn(function()
  8564. game:GetService("ReplicatedStorage").RigControllerEvent:FireServer("weaponChange",tostring(SeraphFuckWeapon()))
  8565. end)
  8566. end
  8567.  
  8568. function Unboost()
  8569. spawn(function()
  8570. game:GetService("ReplicatedStorage").RigControllerEvent:FireServer("unequipWeapon",tostring(SeraphFuckWeapon()))
  8571. end)
  8572. end
  8573.  
  8574. local cdnormal = 0
  8575. local Animation = Instance.new("Animation")
  8576. local CooldownFastAttack = 0
  8577. Attack = function()
  8578. local ac = SeraphFrame.activeController
  8579. if ac and ac.equipped then
  8580. task.spawn(
  8581. function()
  8582. if tick() - cdnormal > 0.5 then
  8583. ac:attack()
  8584. cdnormal = tick()
  8585. else
  8586. Animation.AnimationId = ac.anims.basic[2]
  8587. ac.humanoid:LoadAnimation(Animation):Play(2, 2) --ท่าไม่ทำงานแก้เป็น (1,1)
  8588. game:GetService("ReplicatedStorage").RigControllerEvent:FireServer("hit", getHits(120), 2, "")
  8589. end
  8590. end)
  8591. end
  8592. end
  8593.  
  8594. b = tick()
  8595. spawn(function()
  8596. while wait(0) do
  8597. if _G.FastAttackNormalSpeed then
  8598. if b - tick() > 0.75 then
  8599. wait(.2)
  8600. b = tick()
  8601. end
  8602. pcall(function()
  8603. for i, v in pairs(game.Workspace.Enemies:GetChildren()) do
  8604. if v.Humanoid.Health > 0 then
  8605. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 40 then
  8606. Attack()
  8607. wait(0)
  8608. Boost()
  8609. end
  8610. end
  8611. end
  8612. end)
  8613. end
  8614. end
  8615. end)
  8616.  
  8617. k = tick()
  8618. spawn(function()
  8619. while wait(0) do
  8620. if _G.FastAttackNormalSpeed then
  8621. if k - tick() > 0.75 then
  8622. wait(0)
  8623. k = tick()
  8624. end
  8625. pcall(function()
  8626. for i, v in pairs(game.Workspace.Enemies:GetChildren()) do
  8627. if v.Humanoid.Health > 0 then
  8628. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 40 then
  8629. wait(0)
  8630. Unboost()
  8631. end
  8632. end
  8633. end
  8634. end)
  8635. end
  8636. end
  8637. end)
  8638.  
  8639. tjw1 = true
  8640. task.spawn(
  8641. function()
  8642. local a = game.Players.LocalPlayer
  8643. local b = require(a.PlayerScripts.CombatFramework.Particle)
  8644. local c = require(game:GetService("ReplicatedStorage").CombatFramework.RigLib)
  8645. if not shared.orl then
  8646. shared.orl = c.wrapAttackAnimationAsync
  8647. end
  8648. if not shared.cpc then
  8649. shared.cpc = b.play
  8650. end
  8651. if tjw1 then
  8652. pcall(
  8653. function()
  8654. c.wrapAttackAnimationAsync = function(d, e, f, g, h)
  8655. local i = c.getBladeHits(e, f, g)
  8656. if i then
  8657. b.play = function()
  8658. end
  8659. d:Play(15.25, 15.25, 15.25)
  8660. h(i)
  8661. b.play = shared.cpc
  8662. wait(0)
  8663. d:Stop()
  8664. end
  8665. end
  8666. end
  8667. )
  8668. end
  8669. end
  8670. )
  8671.  
  8672.  
  8673.  
  8674. local CameRa = require(game:GetService("Players").LocalPlayer.PlayerScripts.CombatFramework.CameraShaker)
  8675. CameRa.CameraShakeInstance.CameraShakeState = {FadingIn = 3,FadingOut = 2,Sustained = 0,Inactive =1}
  8676.  
  8677. local Client = game.Players.LocalPlayer
  8678. local STOP = require(Client.PlayerScripts.CombatFramework.Particle)
  8679. local STOPRL = require(game:GetService("ReplicatedStorage").CombatFramework.RigLib)
  8680. task.spawn(function()
  8681. pcall(function()
  8682. if not shared.orl then
  8683. shared.orl = STOPRL.wrapAttackAnimationAsync
  8684. end
  8685. if not shared.cpc then
  8686. shared.cpc = STOP.play
  8687. end
  8688. spawn(function()
  8689. require(game.ReplicatedStorage.Util.CameraShaker):Stop()
  8690. game:GetService("RunService").Stepped:Connect(function()
  8691. STOPRL.wrapAttackAnimationAsync = function(a,b,c,d,func)
  8692. local Hits = STOPRL.getBladeHits(b,c,d)
  8693. if Hits then
  8694. if _G.FastAttackNormalSpeed then
  8695. STOP.play = function() end
  8696. a:Play(10.1,9.1,8.1)
  8697. func(Hits)
  8698. STOP.play = shared.cpc
  8699. wait(a.length * 10.5)
  8700. a:Stop()
  8701. else
  8702. func(Hits)
  8703. STOP.play = shared.cpc
  8704. wait(a.length * 10.5)
  8705. a:Stop()
  8706. end
  8707. end
  8708. end
  8709. end)
  8710. end)
  8711. end)
  8712. end)
  8713.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement