Advertisement
Domadicoof-28363

Untitled

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