Advertisement
Domadicoof-28363

Untitled

Jan 5th, 2023
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 345.76 KB | None | 0 0
  1. local DINOHUB = Instance.new("ScreenGui")
  2. local OPENCLOSE = Instance.new("TextButton")
  3.  
  4. DINOHUB.Name = "Aquatic hub"
  5. DINOHUB.Parent = game.CoreGui
  6. DINOHUB.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  7.  
  8. OPENCLOSE.Name = "OPENCLOSE"
  9. OPENCLOSE.Parent = DINOHUB
  10. OPENCLOSE.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  11. OPENCLOSE.BorderSizePixel = 0
  12. OPENCLOSE.Position = UDim2.new(0.120833337, 0, 0.0952890813, 0)
  13. OPENCLOSE.Size = UDim2.new(0.0447916649, 0, 0.0845824406, 0)
  14. OPENCLOSE.Font = Enum.Font.DenkOne
  15. OPENCLOSE.Text = "UI"
  16. OPENCLOSE.TextColor3 = Color3.fromRGB(96, 255, 16)
  17. OPENCLOSE.TextScaled = true
  18. OPENCLOSE.TextSize = 14.000
  19. OPENCLOSE.TextWrapped = true
  20. OPENCLOSE.MouseButton1Click:Connect(function()
  21. game.CoreGui:FindFirstChild("1xliiUI").Enabled = not game.CoreGui:FindFirstChild("1xliiUI").Enabled
  22. end)
  23. do
  24. if game:GetService("CoreGui"):FindFirstChild("1xliiui") then
  25. game:GetService("CoreGui").DinoUI:Destroy()
  26. end
  27. end
  28.  
  29. do local GUI = game.CoreGui:FindFirstChild("1xliiui");if GUI then GUI:Destroy();end;if _G.Color == nil then
  30. _G.Color = Color3.fromRGB(96, 255, 16)
  31. end
  32. end
  33.  
  34. local UserInputService = game:GetService("UserInputService")
  35. local TweenService = game:GetService("TweenService")
  36.  
  37. local function MakeDraggable(topbarobject, object)
  38. local Dragging = nil
  39. local DragInput = nil
  40. local DragStart = nil
  41. local StartPosition = nil
  42.  
  43. local function Update(input)
  44. local Delta = input.Position - DragStart
  45. local pos = UDim2.new(StartPosition.X.Scale, StartPosition.X.Offset + Delta.X, StartPosition.Y.Scale, StartPosition.Y.Offset + Delta.Y)
  46. local Tween = TweenService:Create(object, TweenInfo.new(0.15), {Position = pos})
  47. Tween:Play()
  48. end
  49.  
  50. topbarobject.InputBegan:Connect(
  51. function(input)
  52. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  53. Dragging = true
  54. DragStart = input.Position
  55. StartPosition = object.Position
  56.  
  57. input.Changed:Connect(
  58. function()
  59. if input.UserInputState == Enum.UserInputState.End then
  60. Dragging = false
  61. end
  62. end
  63. )
  64. end
  65. end
  66. )
  67.  
  68. topbarobject.InputChanged:Connect(
  69. function(input)
  70. if
  71. input.UserInputType == Enum.UserInputType.MouseMovement or
  72. input.UserInputType == Enum.UserInputType.Touch
  73. then
  74. DragInput = input
  75. end
  76. end
  77. )
  78.  
  79. UserInputService.InputChanged:Connect(
  80. function(input)
  81. if input == DragInput and Dragging then
  82. Update(input)
  83. end
  84. end
  85. )
  86. end
  87.  
  88. local Update = {}
  89.  
  90. function Update:Window(text,logo,keybind)
  91. local uihide = false
  92. local abc = false
  93. local logo = logo or 0
  94. local currentpage = ""
  95. local keybind = keybind or Enum.KeyCode.RightControl
  96. local yoo = string.gsub(tostring(keybind),"Enum.KeyCode.","")
  97.  
  98. local SOMEXHUB = Instance.new("ScreenGui")
  99. SOMEXHUB.Name = "Aquatic hub"
  100. SOMEXHUB.Parent = game.CoreGui
  101. SOMEXHUB.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  102.  
  103. local Main = Instance.new("Frame")
  104. Main.Name = "Main"
  105. Main.Parent = SOMEXHUB
  106. Main.ClipsDescendants = true
  107. Main.AnchorPoint = Vector2.new(0.5,0.5)
  108. Main.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  109. Main.Position = UDim2.new(0.5, 0, 0.5, 0)
  110. Main.Size = UDim2.new(0, 0, 0, 0)
  111.  
  112. Main:TweenSize(UDim2.new(0, 656, 0, 400),"Out","Quad",0.4,true)
  113.  
  114. local MCNR = Instance.new("UICorner")
  115. MCNR.Name = "MCNR"
  116. MCNR.Parent = Main
  117.  
  118. local Top = Instance.new("Frame")
  119. Top.Name = "Top"
  120. Top.Parent = Main
  121. Top.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  122. Top.Size = UDim2.new(0, 656, 0, 27)
  123.  
  124. local TCNR = Instance.new("UICorner")
  125. TCNR.Name = "TCNR"
  126. TCNR.Parent = Top
  127.  
  128. local Logo = Instance.new("ImageLabel")
  129. Logo.Name = "Logo"
  130. Logo.Parent = Top
  131. Logo.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  132. Logo.BackgroundTransparency = 1.000
  133. Logo.Position = UDim2.new(0, 10, 0, 1)
  134. Logo.Size = UDim2.new(0, 25, 0, 25)
  135. Logo.Image = "rbxassetid://"..tostring(logo)
  136.  
  137. local Name = Instance.new("TextLabel")
  138. Name.Name = "Name"
  139. Name.Parent = Top
  140. Name.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  141. Name.BackgroundTransparency = 1.000
  142. Name.Position = UDim2.new(0.0609756112, 0, 0, 0)
  143. Name.Size = UDim2.new(0, 61, 0, 27)
  144. Name.Font = Enum.Font.GothamSemibold
  145. Name.Text = text
  146. Name.TextColor3 = Color3.fromRGB(225, 225, 225)
  147. Name.TextSize = 17.000
  148.  
  149. local Hub = Instance.new("TextLabel")
  150. Hub.Name = "Hub"
  151. Hub.Parent = Top
  152. Hub.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  153. Hub.BackgroundTransparency = 1.000
  154. Hub.Position = UDim2.new(0, 110, 0, 0)
  155. Hub.Size = UDim2.new(0, 81, 0, 27)
  156. Hub.Font = Enum.Font.GothamSemibold
  157. Hub.Text = "HUB"
  158. Hub.TextColor3 = _G.Color
  159. Hub.TextSize = 17.000
  160. Hub.TextXAlignment = Enum.TextXAlignment.Left
  161.  
  162. local BindButton = Instance.new("TextButton")
  163. BindButton.Name = "BindButton"
  164. BindButton.Parent = Top
  165. BindButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  166. BindButton.BackgroundTransparency = 1.000
  167. BindButton.Position = UDim2.new(0.847561002, 0, 0, 0)
  168. BindButton.Size = UDim2.new(0, 100, 0, 27)
  169. BindButton.Font = Enum.Font.GothamSemibold
  170. BindButton.Text = "[ "..string.gsub(tostring(keybind),"Enum.KeyCode.","").." ]"
  171. BindButton.TextColor3 = Color3.fromRGB(100, 100, 100)
  172. BindButton.TextSize = 11.000
  173.  
  174. BindButton.MouseButton1Click:Connect(function ()
  175. BindButton.Text = "[ ... ]"
  176. local inputwait = game:GetService("UserInputService").InputBegan:wait()
  177. local shiba = inputwait.KeyCode == Enum.KeyCode.Unknown and inputwait.UserInputType or inputwait.KeyCode
  178.  
  179. if shiba.Name ~= "Focus" and shiba.Name ~= "MouseMovement" then
  180. BindButton.Text = "[ "..shiba.Name.." ]"
  181. yoo = shiba.Name
  182. end
  183. end)
  184.  
  185. local Tab = Instance.new("Frame")
  186. Tab.Name = "Tab"
  187. Tab.Parent = Main
  188. Tab.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  189. Tab.Position = UDim2.new(0, 5, 0, 30)
  190. Tab.Size = UDim2.new(0, 150, 0, 365)
  191.  
  192. local TCNR = Instance.new("UICorner")
  193. TCNR.Name = "TCNR"
  194. TCNR.Parent = Tab
  195.  
  196. local ScrollTab = Instance.new("ScrollingFrame")
  197. ScrollTab.Name = "ScrollTab"
  198. ScrollTab.Parent = Tab
  199. ScrollTab.Active = true
  200. ScrollTab.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  201. ScrollTab.BackgroundTransparency = 1.000
  202. ScrollTab.Size = UDim2.new(0, 150, 0, 365)
  203. ScrollTab.CanvasSize = UDim2.new(0, 0, 0, 0)
  204. ScrollTab.ScrollBarThickness = 0
  205.  
  206. local PLL = Instance.new("UIListLayout")
  207. PLL.Name = "PLL"
  208. PLL.Parent = ScrollTab
  209. PLL.SortOrder = Enum.SortOrder.LayoutOrder
  210. PLL.Padding = UDim.new(0, 15)
  211.  
  212. local PPD = Instance.new("UIPadding")
  213. PPD.Name = "PPD"
  214. PPD.Parent = ScrollTab
  215. PPD.PaddingLeft = UDim.new(0, 10)
  216. PPD.PaddingTop = UDim.new(0, 10)
  217.  
  218. local Page = Instance.new("Frame")
  219. Page.Name = "Page"
  220. Page.Parent = Main
  221. Page.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  222. Page.Position = UDim2.new(0.245426834, 0, 0.075000003, 0)
  223. Page.Size = UDim2.new(0, 490, 0, 365)
  224.  
  225. local PCNR = Instance.new("UICorner")
  226. PCNR.Name = "PCNR"
  227. PCNR.Parent = Page
  228.  
  229. local MainPage = Instance.new("Frame")
  230. MainPage.Name = "MainPage"
  231. MainPage.Parent = Page
  232. MainPage.ClipsDescendants = true
  233. MainPage.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  234. MainPage.BackgroundTransparency = 1.000
  235. MainPage.Size = UDim2.new(0, 490, 0, 365)
  236.  
  237. local PageList = Instance.new("Folder")
  238. PageList.Name = "PageList"
  239. PageList.Parent = MainPage
  240.  
  241. local UIPageLayout = Instance.new("UIPageLayout")
  242.  
  243. UIPageLayout.Parent = PageList
  244. UIPageLayout.SortOrder = Enum.SortOrder.LayoutOrder
  245. UIPageLayout.EasingDirection = Enum.EasingDirection.InOut
  246. UIPageLayout.EasingStyle = Enum.EasingStyle.Quad
  247. UIPageLayout.FillDirection = Enum.FillDirection.Vertical
  248. UIPageLayout.Padding = UDim.new(0, 15)
  249. UIPageLayout.TweenTime = 0.400
  250. UIPageLayout.GamepadInputEnabled = false
  251. UIPageLayout.ScrollWheelInputEnabled = false
  252. UIPageLayout.TouchInputEnabled = false
  253.  
  254. MakeDraggable(Top,Main)
  255.  
  256. UserInputService.InputBegan:Connect(function(input)
  257. if input.KeyCode == Enum.KeyCode[yoo] then
  258. if uihide == false then
  259. uihide = true
  260. Main:TweenSize(UDim2.new(0, 0, 0, 0),"In","Quad",0.4,true)
  261. else
  262. uihide = false
  263. Main:TweenSize(UDim2.new(0, 656, 0, 400),"Out","Quad",0.4,true)
  264. end
  265. end
  266. end)
  267.  
  268. local uitab = {}
  269.  
  270. function uitab:Tab(text)
  271. local TabButton = Instance.new("TextButton")
  272. TabButton.Parent = ScrollTab
  273. TabButton.Name = text.."Server"
  274. TabButton.Text = text
  275. TabButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  276. TabButton.BackgroundTransparency = 1.000
  277. TabButton.Size = UDim2.new(0, 130, 0, 23)
  278. TabButton.Font = Enum.Font.GothamSemibold
  279. TabButton.TextColor3 = Color3.fromRGB(225, 225, 225)
  280. TabButton.TextSize = 15.000
  281. TabButton.TextTransparency = 0.500
  282.  
  283. local MainFramePage = Instance.new("ScrollingFrame")
  284. MainFramePage.Name = text.."_Page"
  285. MainFramePage.Parent = PageList
  286. MainFramePage.Active = true
  287. MainFramePage.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  288. MainFramePage.BackgroundTransparency = 1.000
  289. MainFramePage.BorderSizePixel = 0
  290. MainFramePage.Size = UDim2.new(0, 490, 0, 365)
  291. MainFramePage.CanvasSize = UDim2.new(0, 0, 0, 0)
  292. MainFramePage.ScrollBarThickness = 0
  293.  
  294. local UIPadding = Instance.new("UIPadding")
  295. local UIListLayout = Instance.new("UIListLayout")
  296.  
  297. UIPadding.Parent = MainFramePage
  298. UIPadding.PaddingLeft = UDim.new(0, 10)
  299. UIPadding.PaddingTop = UDim.new(0, 10)
  300.  
  301. UIListLayout.Padding = UDim.new(0,15)
  302. UIListLayout.Parent = MainFramePage
  303. UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
  304.  
  305. TabButton.MouseButton1Click:Connect(function()
  306. for i,v in next, ScrollTab:GetChildren() do
  307. if v:IsA("TextButton") then
  308. TweenService:Create(
  309. v,
  310. TweenInfo.new(0.3,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  311. {TextTransparency = 0.5}
  312. ):Play()
  313. end
  314. TweenService:Create(
  315. TabButton,
  316. TweenInfo.new(0.3,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  317. {TextTransparency = 0}
  318. ):Play()
  319. end
  320. for i,v in next, PageList:GetChildren() do
  321. currentpage = string.gsub(TabButton.Name,"Server","").."_Page"
  322. if v.Name == currentpage then
  323. UIPageLayout:JumpTo(v)
  324. end
  325. end
  326. end)
  327.  
  328. if abc == false then
  329. for i,v in next, ScrollTab:GetChildren() do
  330. if v:IsA("TextButton") then
  331. TweenService:Create(
  332. v,
  333. TweenInfo.new(0.3,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  334. {TextTransparency = 0.5}
  335. ):Play()
  336. end
  337. TweenService:Create(
  338. TabButton,
  339. TweenInfo.new(0.3,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  340. {TextTransparency = 0}
  341. ):Play()
  342. end
  343. UIPageLayout:JumpToIndex(1)
  344. abc = true
  345. end
  346.  
  347. game:GetService("RunService").Stepped:Connect(function()
  348. pcall(function()
  349. MainFramePage.CanvasSize = UDim2.new(0,0,0,UIListLayout.AbsoluteContentSize.Y + 20)
  350. ScrollTab.CanvasSize = UDim2.new(0,0,0,PLL.AbsoluteContentSize.Y + 20)
  351. end)
  352. end)
  353.  
  354. local main = {}
  355. function main:Button(text,callback)
  356. local Button = Instance.new("Frame")
  357. local UICorner = Instance.new("UICorner")
  358. local TextBtn = Instance.new("TextButton")
  359. local UICorner_2 = Instance.new("UICorner")
  360. local Black = Instance.new("Frame")
  361. local UICorner_3 = Instance.new("UICorner")
  362.  
  363. Button.Name = "Button"
  364. Button.Parent = MainFramePage
  365. Button.BackgroundColor3 = _G.Color
  366. Button.Size = UDim2.new(0, 470, 0, 31)
  367.  
  368. UICorner.CornerRadius = UDim.new(0, 5)
  369. UICorner.Parent = Button
  370.  
  371. TextBtn.Name = "TextBtn"
  372. TextBtn.Parent = Button
  373. TextBtn.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  374. TextBtn.Position = UDim2.new(0, 1, 0, 1)
  375. TextBtn.Size = UDim2.new(0, 468, 0, 29)
  376. TextBtn.AutoButtonColor = false
  377. TextBtn.Font = Enum.Font.GothamSemibold
  378. TextBtn.Text = text
  379. TextBtn.TextColor3 = Color3.fromRGB(225, 225, 225)
  380. TextBtn.TextSize = 15.000
  381.  
  382. UICorner_2.CornerRadius = UDim.new(0, 5)
  383. UICorner_2.Parent = TextBtn
  384.  
  385. Black.Name = "Black"
  386. Black.Parent = Button
  387. Black.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  388. Black.BackgroundTransparency = 1.000
  389. Black.BorderSizePixel = 0
  390. Black.Position = UDim2.new(0, 1, 0, 1)
  391. Black.Size = UDim2.new(0, 468, 0, 29)
  392.  
  393. UICorner_3.CornerRadius = UDim.new(0, 5)
  394. UICorner_3.Parent = Black
  395.  
  396. TextBtn.MouseEnter:Connect(function()
  397. TweenService:Create(
  398. Black,
  399. TweenInfo.new(0.4,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  400. {BackgroundTransparency = 0.7}
  401. ):Play()
  402. end)
  403. TextBtn.MouseLeave:Connect(function()
  404. TweenService:Create(
  405. Black,
  406. TweenInfo.new(0.4,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  407. {BackgroundTransparency = 1}
  408. ):Play()
  409. end)
  410. TextBtn.MouseButton1Click:Connect(function()
  411. TextBtn.TextSize = 0
  412. TweenService:Create(
  413. TextBtn,
  414. TweenInfo.new(0.4,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  415. {TextSize = 15}
  416. ):Play()
  417. callback()
  418. end)
  419. end
  420. function main:Toggle(text,config,callback)
  421. config = config or false
  422. local toggled = config
  423. local Toggle = Instance.new("Frame")
  424. local UICorner = Instance.new("UICorner")
  425. local Button = Instance.new("TextButton")
  426. local UICorner_2 = Instance.new("UICorner")
  427. local Label = Instance.new("TextLabel")
  428. local ToggleImage = Instance.new("Frame")
  429. local UICorner_3 = Instance.new("UICorner")
  430. local Circle = Instance.new("Frame")
  431. local UICorner_4 = Instance.new("UICorner")
  432.  
  433. Toggle.Name = "Toggle"
  434. Toggle.Parent = MainFramePage
  435. Toggle.BackgroundColor3 = _G.Color
  436. Toggle.Size = UDim2.new(0, 470, 0, 31)
  437.  
  438. UICorner.CornerRadius = UDim.new(0, 5)
  439. UICorner.Parent = Toggle
  440.  
  441. Button.Name = "Button"
  442. Button.Parent = Toggle
  443. Button.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  444. Button.Position = UDim2.new(0, 1, 0, 1)
  445. Button.Size = UDim2.new(0, 468, 0, 29)
  446. Button.AutoButtonColor = false
  447. Button.Font = Enum.Font.SourceSans
  448. Button.Text = ""
  449. Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  450. Button.TextSize = 11.000
  451.  
  452. UICorner_2.CornerRadius = UDim.new(0, 5)
  453. UICorner_2.Parent = Button
  454.  
  455. Label.Name = "Label"
  456. Label.Parent = Toggle
  457. Label.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  458. Label.BackgroundTransparency = 1.000
  459. Label.Position = UDim2.new(0, 1, 0, 1)
  460. Label.Size = UDim2.new(0, 468, 0, 29)
  461. Label.Font = Enum.Font.GothamSemibold
  462. Label.Text = text
  463. Label.TextColor3 = Color3.fromRGB(225, 225, 225)
  464. Label.TextSize = 15.000
  465.  
  466. ToggleImage.Name = "ToggleImage"
  467. ToggleImage.Parent = Toggle
  468. ToggleImage.BackgroundColor3 = Color3.fromRGB(225, 225, 225)
  469. ToggleImage.Position = UDim2.new(0, 415, 0, 5)
  470. ToggleImage.Size = UDim2.new(0, 45, 0, 20)
  471.  
  472. UICorner_3.CornerRadius = UDim.new(0, 10)
  473. UICorner_3.Parent = ToggleImage
  474.  
  475. Circle.Name = "Circle"
  476. Circle.Parent = ToggleImage
  477. Circle.BackgroundColor3 = Color3.fromRGB(227, 60, 60)
  478. Circle.Position = UDim2.new(0, 2, 0, 2)
  479. Circle.Size = UDim2.new(0, 16, 0, 16)
  480.  
  481. UICorner_4.CornerRadius = UDim.new(0, 10)
  482. UICorner_4.Parent = Circle
  483.  
  484. Button.MouseButton1Click:Connect(function()
  485. if toggled == false then
  486. toggled = true
  487. Circle:TweenPosition(UDim2.new(0,27,0,2),"Out","Sine",0.2,true)
  488. TweenService:Create(
  489. Circle,
  490. TweenInfo.new(0.4,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  491. {BackgroundColor3 = _G.Color}
  492. ):Play()
  493. else
  494. toggled = false
  495. Circle:TweenPosition(UDim2.new(0,2,0,2),"Out","Sine",0.2,true)
  496. TweenService:Create(
  497. Circle,
  498. TweenInfo.new(0.4,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  499. {BackgroundColor3 = Color3.fromRGB(227, 60, 110)}
  500. ):Play()
  501. end
  502. pcall(callback,toggled)
  503. end)
  504.  
  505. if config == true then
  506. toggled = true
  507. Circle:TweenPosition(UDim2.new(0,27,0,2),"Out","Sine",0.4,true)
  508. TweenService:Create(
  509. Circle,
  510. TweenInfo.new(0.4,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  511. {BackgroundColor3 = _G.Color}
  512. ):Play()
  513. pcall(callback,toggled)
  514. end
  515. end
  516. function main:Dropdown(text,option,callback)
  517. local isdropping = false
  518. local Dropdown = Instance.new("Frame")
  519. local UICorner = Instance.new("UICorner")
  520. local DropTitle = Instance.new("TextLabel")
  521. local DropScroll = Instance.new("ScrollingFrame")
  522. local UIListLayout = Instance.new("UIListLayout")
  523. local UIPadding = Instance.new("UIPadding")
  524. local DropButton = Instance.new("TextButton")
  525. local DropImage = Instance.new("ImageLabel")
  526.  
  527. Dropdown.Name = "Dropdown"
  528. Dropdown.Parent = MainFramePage
  529. Dropdown.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  530. Dropdown.ClipsDescendants = true
  531. Dropdown.Size = UDim2.new(0, 470, 0, 31)
  532.  
  533. UICorner.CornerRadius = UDim.new(0, 5)
  534. UICorner.Parent = Dropdown
  535.  
  536. DropTitle.Name = "DropTitle"
  537. DropTitle.Parent = Dropdown
  538. DropTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  539. DropTitle.BackgroundTransparency = 1.000
  540. DropTitle.Size = UDim2.new(0, 470, 0, 31)
  541. DropTitle.Font = Enum.Font.GothamSemibold
  542. DropTitle.Text = text.. " : "
  543. DropTitle.TextColor3 = Color3.fromRGB(225, 225, 225)
  544. DropTitle.TextSize = 15.000
  545.  
  546. DropScroll.Name = "DropScroll"
  547. DropScroll.Parent = DropTitle
  548. DropScroll.Active = true
  549. DropScroll.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  550. DropScroll.BackgroundTransparency = 1.000
  551. DropScroll.BorderSizePixel = 0
  552. DropScroll.Position = UDim2.new(0, 0, 0, 31)
  553. DropScroll.Size = UDim2.new(0, 470, 0, 100)
  554. DropScroll.CanvasSize = UDim2.new(0, 0, 0, 0)
  555. DropScroll.ScrollBarThickness = 3
  556.  
  557. UIListLayout.Parent = DropScroll
  558. UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
  559. UIListLayout.Padding = UDim.new(0, 5)
  560.  
  561. UIPadding.Parent = DropScroll
  562. UIPadding.PaddingLeft = UDim.new(0, 5)
  563. UIPadding.PaddingTop = UDim.new(0, 5)
  564.  
  565. DropImage.Name = "DropImage"
  566. DropImage.Parent = Dropdown
  567. DropImage.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  568. DropImage.BackgroundTransparency = 1.000
  569. DropImage.Position = UDim2.new(0, 445, 0, 6)
  570. DropImage.Rotation = 180.000
  571. DropImage.Size = UDim2.new(0, 20, 0, 20)
  572. DropImage.Image = "rbxassetid://6031090990"
  573.  
  574. DropButton.Name = "DropButton"
  575. DropButton.Parent = Dropdown
  576. DropButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  577. DropButton.BackgroundTransparency = 1.000
  578. DropButton.Size = UDim2.new(0, 470, 0, 31)
  579. DropButton.Font = Enum.Font.SourceSans
  580. DropButton.Text = ""
  581. DropButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  582. DropButton.TextSize = 14.000
  583.  
  584. for i,v in next,option do
  585. local Item = Instance.new("TextButton")
  586.  
  587. Item.Name = "Item"
  588. Item.Parent = DropScroll
  589. Item.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  590. Item.BackgroundTransparency = 1.000
  591. Item.Size = UDim2.new(0, 460, 0, 26)
  592. Item.Font = Enum.Font.GothamSemibold
  593. Item.Text = tostring(v)
  594. Item.TextColor3 = Color3.fromRGB(225, 225, 225)
  595. Item.TextSize = 13.000
  596. Item.TextTransparency = 0.500
  597.  
  598. Item.MouseEnter:Connect(function()
  599. TweenService:Create(
  600. Item,
  601. TweenInfo.new(0.3,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  602. {TextTransparency = 0}
  603. ):Play()
  604. end)
  605.  
  606. Item.MouseLeave:Connect(function()
  607. TweenService:Create(
  608. Item,
  609. TweenInfo.new(0.3,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  610. {TextTransparency = 0.5}
  611. ):Play()
  612. end)
  613.  
  614. Item.MouseButton1Click:Connect(function()
  615. isdropping = false
  616. Dropdown:TweenSize(UDim2.new(0,470,0,31),"Out","Quad",0.3,true)
  617. TweenService:Create(
  618. DropImage,
  619. TweenInfo.new(0.3,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  620. {Rotation = 180}
  621. ):Play()
  622. callback(Item.Text)
  623. DropTitle.Text = text.." : "..Item.Text
  624. end)
  625. end
  626.  
  627. DropScroll.CanvasSize = UDim2.new(0,0,0,UIListLayout.AbsoluteContentSize.Y + 10)
  628.  
  629. DropButton.MouseButton1Click:Connect(function()
  630. if isdropping == false then
  631. isdropping = true
  632. Dropdown:TweenSize(UDim2.new(0,470,0,131),"Out","Quad",0.3,true)
  633. TweenService:Create(
  634. DropImage,
  635. TweenInfo.new(0.3,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  636. {Rotation = 0}
  637. ):Play()
  638. else
  639. isdropping = false
  640. Dropdown:TweenSize(UDim2.new(0,470,0,31),"Out","Quad",0.3,true)
  641. TweenService:Create(
  642. DropImage,
  643. TweenInfo.new(0.3,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  644. {Rotation = 180}
  645. ):Play()
  646. end
  647. end)
  648.  
  649. local dropfunc = {}
  650. function dropfunc:Add(t)
  651. local Item = Instance.new("TextButton")
  652. Item.Name = "Item"
  653. Item.Parent = DropScroll
  654. Item.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  655. Item.BackgroundTransparency = 1.000
  656. Item.Size = UDim2.new(0, 470, 0, 26)
  657. Item.Font = Enum.Font.GothamSemibold
  658. Item.Text = tostring(t)
  659. Item.TextColor3 = Color3.fromRGB(225, 225, 225)
  660. Item.TextSize = 13.000
  661. Item.TextTransparency = 0.500
  662.  
  663. Item.MouseEnter:Connect(function()
  664. TweenService:Create(
  665. Item,
  666. TweenInfo.new(0.3,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  667. {TextTransparency = 0}
  668. ):Play()
  669. end)
  670.  
  671. Item.MouseLeave:Connect(function()
  672. TweenService:Create(
  673. Item,
  674. TweenInfo.new(0.3,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  675. {TextTransparency = 0.5}
  676. ):Play()
  677. end)
  678.  
  679. Item.MouseButton1Click:Connect(function()
  680. isdropping = false
  681. Dropdown:TweenSize(UDim2.new(0,470,0,31),"Out","Quad",0.3,true)
  682. TweenService:Create(
  683. DropImage,
  684. TweenInfo.new(0.3,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  685. {Rotation = 180}
  686. ):Play()
  687. callback(Item.Text)
  688. DropTitle.Text = text.." : "..Item.Text
  689. end)
  690. end
  691. function dropfunc:Clear()
  692. DropTitle.Text = tostring(text).." : "
  693. isdropping = false
  694. Dropdown:TweenSize(UDim2.new(0,470,0,31),"Out","Quad",0.3,true)
  695. TweenService:Create(
  696. DropImage,
  697. TweenInfo.new(0.3,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),
  698. {Rotation = 180}
  699. ):Play()
  700. for i,v in next, DropScroll:GetChildren() do
  701. if v:IsA("TextButton") then
  702. v:Destroy()
  703. end
  704. end
  705. end
  706. return dropfunc
  707. end
  708.  
  709. function main:Slider(text,min,max,set,callback)
  710. local Slider = Instance.new("Frame")
  711. local slidercorner = Instance.new("UICorner")
  712. local sliderr = Instance.new("Frame")
  713. local sliderrcorner = Instance.new("UICorner")
  714. local SliderLabel = Instance.new("TextLabel")
  715. local HAHA = Instance.new("Frame")
  716. local AHEHE = Instance.new("TextButton")
  717. local bar = Instance.new("Frame")
  718. local bar1 = Instance.new("Frame")
  719. local bar1corner = Instance.new("UICorner")
  720. local barcorner = Instance.new("UICorner")
  721. local circlebar = Instance.new("Frame")
  722. local UICorner = Instance.new("UICorner")
  723. local slidervalue = Instance.new("Frame")
  724. local valuecorner = Instance.new("UICorner")
  725. local TextBox = Instance.new("TextBox")
  726. local UICorner_2 = Instance.new("UICorner")
  727.  
  728. Slider.Name = "Slider"
  729. Slider.Parent = MainFramePage
  730. Slider.BackgroundColor3 = _G.Color
  731. Slider.BackgroundTransparency = 0
  732. Slider.Size = UDim2.new(0, 470, 0, 51)
  733.  
  734. slidercorner.CornerRadius = UDim.new(0, 5)
  735. slidercorner.Name = "slidercorner"
  736. slidercorner.Parent = Slider
  737.  
  738. sliderr.Name = "sliderr"
  739. sliderr.Parent = Slider
  740. sliderr.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  741. sliderr.Position = UDim2.new(0, 1, 0, 1)
  742. sliderr.Size = UDim2.new(0, 468, 0, 49)
  743.  
  744. sliderrcorner.CornerRadius = UDim.new(0, 5)
  745. sliderrcorner.Name = "sliderrcorner"
  746. sliderrcorner.Parent = sliderr
  747.  
  748. SliderLabel.Name = "SliderLabel"
  749. SliderLabel.Parent = sliderr
  750. SliderLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  751. SliderLabel.BackgroundTransparency = 1.000
  752. SliderLabel.Position = UDim2.new(0, 15, 0, 0)
  753. SliderLabel.Size = UDim2.new(0, 180, 0, 26)
  754. SliderLabel.Font = Enum.Font.GothamSemibold
  755. SliderLabel.Text = text
  756. SliderLabel.TextColor3 = Color3.fromRGB(225, 225, 225)
  757. SliderLabel.TextSize = 16.000
  758. SliderLabel.TextTransparency = 0
  759. SliderLabel.TextXAlignment = Enum.TextXAlignment.Left
  760.  
  761. HAHA.Name = "HAHA"
  762. HAHA.Parent = sliderr
  763. HAHA.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  764. HAHA.BackgroundTransparency = 1.000
  765. HAHA.Size = UDim2.new(0, 468, 0, 29)
  766.  
  767. AHEHE.Name = "AHEHE"
  768. AHEHE.Parent = sliderr
  769. AHEHE.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  770. AHEHE.BackgroundTransparency = 1.000
  771. AHEHE.Position = UDim2.new(0, 10, 0, 35)
  772. AHEHE.Size = UDim2.new(0, 448, 0, 5)
  773. AHEHE.Font = Enum.Font.SourceSans
  774. AHEHE.Text = ""
  775. AHEHE.TextColor3 = Color3.fromRGB(0, 0, 0)
  776. AHEHE.TextSize = 14.000
  777.  
  778. bar.Name = "bar"
  779. bar.Parent = AHEHE
  780. bar.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  781. bar.Size = UDim2.new(0, 448, 0, 5)
  782.  
  783. bar1.Name = "bar1"
  784. bar1.Parent = bar
  785. bar1.BackgroundColor3 = _G.Color
  786. bar1.BackgroundTransparency = 0
  787. bar1.Size = UDim2.new(set/max, 0, 0, 5)
  788.  
  789. bar1corner.CornerRadius = UDim.new(0, 5)
  790. bar1corner.Name = "bar1corner"
  791. bar1corner.Parent = bar1
  792.  
  793. barcorner.CornerRadius = UDim.new(0, 5)
  794. barcorner.Name = "barcorner"
  795. barcorner.Parent = bar
  796.  
  797. circlebar.Name = "circlebar"
  798. circlebar.Parent = bar1
  799. circlebar.BackgroundColor3 = Color3.fromRGB(225, 225, 225)
  800. circlebar.Position = UDim2.new(1, -2, 0, -3)
  801. circlebar.Size = UDim2.new(0, 10, 0, 10)
  802.  
  803. UICorner.CornerRadius = UDim.new(0, 100)
  804. UICorner.Parent = circlebar
  805.  
  806. slidervalue.Name = "slidervalue"
  807. slidervalue.Parent = sliderr
  808. slidervalue.BackgroundColor3 = _G.Color
  809. slidervalue.BackgroundTransparency = 0
  810. slidervalue.Position = UDim2.new(0, 395, 0, 5)
  811. slidervalue.Size = UDim2.new(0, 65, 0, 18)
  812.  
  813. valuecorner.CornerRadius = UDim.new(0, 5)
  814. valuecorner.Name = "valuecorner"
  815. valuecorner.Parent = slidervalue
  816.  
  817. TextBox.Parent = slidervalue
  818. TextBox.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  819. TextBox.Position = UDim2.new(0, 1, 0, 1)
  820. TextBox.Size = UDim2.new(0, 63, 0, 16)
  821. TextBox.Font = Enum.Font.GothamSemibold
  822. TextBox.TextColor3 = Color3.fromRGB(225, 225, 225)
  823. TextBox.TextSize = 9.000
  824. TextBox.Text = set
  825. TextBox.TextTransparency = 0
  826.  
  827. UICorner_2.CornerRadius = UDim.new(0, 5)
  828. UICorner_2.Parent = TextBox
  829.  
  830. local mouse = game.Players.LocalPlayer:GetMouse()
  831. local uis = game:GetService("UserInputService")
  832.  
  833. if Value == nil then
  834. Value = set
  835. pcall(function()
  836. callback(Value)
  837. end)
  838. end
  839.  
  840. AHEHE.MouseButton1Down:Connect(function()
  841. Value = math.floor((((tonumber(max) - tonumber(min)) / 448) * bar1.AbsoluteSize.X) + tonumber(min)) or 0
  842. pcall(function()
  843. callback(Value)
  844. end)
  845. bar1.Size = UDim2.new(0, math.clamp(mouse.X - bar1.AbsolutePosition.X, 0, 448), 0, 5)
  846. circlebar.Position = UDim2.new(0, math.clamp(mouse.X - bar1.AbsolutePosition.X - 2, 0, 438), 0, -3)
  847. moveconnection = mouse.Move:Connect(function()
  848. TextBox.Text = Value
  849. Value = math.floor((((tonumber(max) - tonumber(min)) / 448) * bar1.AbsoluteSize.X) + tonumber(min))
  850. pcall(function()
  851. callback(Value)
  852. end)
  853. bar1.Size = UDim2.new(0, math.clamp(mouse.X - bar1.AbsolutePosition.X, 0, 448), 0, 5)
  854. circlebar.Position = UDim2.new(0, math.clamp(mouse.X - bar1.AbsolutePosition.X - 2, 0, 438), 0, -3)
  855. end)
  856. releaseconnection = uis.InputEnded:Connect(function(Mouse)
  857. if Mouse.UserInputType == Enum.UserInputType.MouseButton1 then
  858. Value = math.floor((((tonumber(max) - tonumber(min)) / 448) * bar1.AbsoluteSize.X) + tonumber(min))
  859. pcall(function()
  860. callback(Value)
  861. end)
  862. bar1.Size = UDim2.new(0, math.clamp(mouse.X - bar1.AbsolutePosition.X, 0, 448), 0, 5)
  863. circlebar.Position = UDim2.new(0, math.clamp(mouse.X - bar1.AbsolutePosition.X - 2, 0, 438), 0, -3)
  864. moveconnection:Disconnect()
  865. releaseconnection:Disconnect()
  866. end
  867. end)
  868. end)
  869. releaseconnection = uis.InputEnded:Connect(function(Mouse)
  870. if Mouse.UserInputType == Enum.UserInputType.MouseButton1 then
  871. Value = math.floor((((tonumber(max) - tonumber(min)) / 448) * bar1.AbsoluteSize.X) + tonumber(min))
  872. TextBox.Text = Value
  873. end
  874. end)
  875.  
  876. TextBox.FocusLost:Connect(function()
  877. if tonumber(TextBox.Text) > max then
  878. TextBox.Text = max
  879. end
  880. bar1.Size = UDim2.new((TextBox.Text or 0) / max, 0, 0, 5)
  881. circlebar.Position = UDim2.new(1, -2, 0, -3)
  882. TextBox.Text = tostring(TextBox.Text and math.floor( (TextBox.Text / max) * (max - min) + min) )
  883. pcall(callback, TextBox.Text)
  884. end)
  885. end
  886.  
  887. function main:Textbox(text,disappear,callback)
  888. local Textbox = Instance.new("Frame")
  889. local TextboxCorner = Instance.new("UICorner")
  890. local Textboxx = Instance.new("Frame")
  891. local TextboxxCorner = Instance.new("UICorner")
  892. local TextboxLabel = Instance.new("TextLabel")
  893. local txtbtn = Instance.new("TextButton")
  894. local RealTextbox = Instance.new("TextBox")
  895. local UICorner = Instance.new("UICorner")
  896.  
  897. Textbox.Name = "Textbox"
  898. Textbox.Parent = MainFramePage
  899. Textbox.BackgroundColor3 = _G.Color
  900. Textbox.BackgroundTransparency = 0
  901. Textbox.Size = UDim2.new(0, 470, 0, 31)
  902.  
  903. TextboxCorner.CornerRadius = UDim.new(0, 5)
  904. TextboxCorner.Name = "TextboxCorner"
  905. TextboxCorner.Parent = Textbox
  906.  
  907. Textboxx.Name = "Textboxx"
  908. Textboxx.Parent = Textbox
  909. Textboxx.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  910. Textboxx.Position = UDim2.new(0, 1, 0, 1)
  911. Textboxx.Size = UDim2.new(0, 468, 0, 29)
  912.  
  913. TextboxxCorner.CornerRadius = UDim.new(0, 5)
  914. TextboxxCorner.Name = "TextboxxCorner"
  915. TextboxxCorner.Parent = Textboxx
  916.  
  917. TextboxLabel.Name = "TextboxLabel"
  918. TextboxLabel.Parent = Textbox
  919. TextboxLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  920. TextboxLabel.BackgroundTransparency = 1.000
  921. TextboxLabel.Position = UDim2.new(0, 15, 0, 0)
  922. TextboxLabel.Text = text
  923. TextboxLabel.Size = UDim2.new(0, 145, 0, 31)
  924. TextboxLabel.Font = Enum.Font.GothamSemibold
  925. TextboxLabel.TextColor3 = Color3.fromRGB(225, 225, 225)
  926. TextboxLabel.TextSize = 16.000
  927. TextboxLabel.TextTransparency = 0
  928. TextboxLabel.TextXAlignment = Enum.TextXAlignment.Left
  929.  
  930. txtbtn.Name = "txtbtn"
  931. txtbtn.Parent = Textbox
  932. txtbtn.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  933. txtbtn.BackgroundTransparency = 1.000
  934. txtbtn.Position = UDim2.new(0, 1, 0, 1)
  935. txtbtn.Size = UDim2.new(0, 468, 0, 29)
  936. txtbtn.Font = Enum.Font.SourceSans
  937. txtbtn.Text = ""
  938. txtbtn.TextColor3 = Color3.fromRGB(0, 0, 0)
  939. txtbtn.TextSize = 14.000
  940.  
  941. RealTextbox.Name = "RealTextbox"
  942. RealTextbox.Parent = Textbox
  943. RealTextbox.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  944. RealTextbox.BackgroundTransparency = 0
  945. RealTextbox.Position = UDim2.new(0, 360, 0, 4)
  946. RealTextbox.Size = UDim2.new(0, 100, 0, 24)
  947. RealTextbox.Font = Enum.Font.GothamSemibold
  948. RealTextbox.Text = ""
  949. RealTextbox.TextColor3 = Color3.fromRGB(225, 225, 225)
  950. RealTextbox.TextSize = 11.000
  951. RealTextbox.TextTransparency = 0
  952.  
  953. RealTextbox.FocusLost:Connect(function()
  954. callback(RealTextbox.Text)
  955. if disappear then
  956. RealTextbox.Text = ""
  957. end
  958. end)
  959.  
  960. UICorner.CornerRadius = UDim.new(0, 5)
  961. UICorner.Parent = RealTextbox
  962. end
  963. function main:Label(text)
  964. local Label = Instance.new("TextLabel")
  965. local PaddingLabel = Instance.new("UIPadding")
  966. local labelfunc = {}
  967.  
  968. Label.Name = "Label"
  969. Label.Parent = MainFramePage
  970. Label.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  971. Label.BackgroundTransparency = 1.000
  972. Label.Size = UDim2.new(0, 470, 0, 20)
  973. Label.Font = Enum.Font.GothamSemibold
  974. Label.TextColor3 = Color3.fromRGB(225, 225, 225)
  975. Label.TextSize = 16.000
  976. Label.Text = text
  977. Label.TextXAlignment = Enum.TextXAlignment.Left
  978.  
  979. PaddingLabel.PaddingLeft = UDim.new(0,15)
  980. PaddingLabel.Parent = Label
  981. PaddingLabel.Name = "PaddingLabel"
  982.  
  983. function labelfunc:Set(newtext)
  984. Label.Text = newtext
  985. end
  986. return labelfunc
  987. end
  988.  
  989. function main:Seperator(text)
  990. local Seperator = Instance.new("Frame")
  991. local Sep1 = Instance.new("Frame")
  992. local Sep2 = Instance.new("TextLabel")
  993. local Sep3 = Instance.new("Frame")
  994.  
  995. Seperator.Name = "Seperator"
  996. Seperator.Parent = MainFramePage
  997. Seperator.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  998. Seperator.BackgroundTransparency = 1.000
  999. Seperator.Size = UDim2.new(0, 470, 0, 20)
  1000.  
  1001. Sep1.Name = "Sep1"
  1002. Sep1.Parent = Seperator
  1003. Sep1.BackgroundColor3 = _G.Color
  1004. Sep1.BorderSizePixel = 0
  1005. Sep1.Position = UDim2.new(0, 0, 0, 10)
  1006. Sep1.Size = UDim2.new(0, 80, 0, 1)
  1007.  
  1008. Sep2.Name = "Sep2"
  1009. Sep2.Parent = Seperator
  1010. Sep2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1011. Sep2.BackgroundTransparency = 1.000
  1012. Sep2.Position = UDim2.new(0, 185, 0, 0)
  1013. Sep2.Size = UDim2.new(0, 100, 0, 20)
  1014. Sep2.Font = Enum.Font.GothamSemibold
  1015. Sep2.Text = text
  1016. Sep2.TextColor3 = Color3.fromRGB(255, 255, 255)
  1017. Sep2.TextSize = 14.000
  1018.  
  1019. Sep3.Name = "Sep3"
  1020. Sep3.Parent = Seperator
  1021. Sep3.BackgroundColor3 = _G.Color
  1022. Sep3.BorderSizePixel = 0
  1023. Sep3.Position = UDim2.new(0, 390, 0, 10)
  1024. Sep3.Size = UDim2.new(0, 80, 0, 1)
  1025. end
  1026.  
  1027. function main:Line()
  1028. local Linee = Instance.new("Frame")
  1029. local Line = Instance.new("Frame")
  1030.  
  1031. Linee.Name = "Linee"
  1032. Linee.Parent = MainFramePage
  1033. Linee.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1034. Linee.BackgroundTransparency = 1.000
  1035. Linee.Position = UDim2.new(0, 0, 0.119999997, 0)
  1036. Linee.Size = UDim2.new(0, 470, 0, 20)
  1037.  
  1038. Line.Name = "Line"
  1039. Line.Parent = Linee
  1040. Line.BackgroundColor3 = _G.Color
  1041. Line.BorderSizePixel = 0
  1042. Line.Position = UDim2.new(0, 0, 0, 10)
  1043. Line.Size = UDim2.new(0, 470, 0, 1)
  1044. end
  1045. return main
  1046. end
  1047. return uitab
  1048. end
  1049.  
  1050. -- Script
  1051.  
  1052. Old_World = false
  1053. New_World = false
  1054. Three_World = false
  1055.  
  1056. local placeId = game.PlaceId
  1057. if placeId == 2753915549 then
  1058. Old_World = true
  1059. elseif placeId == 4442272183 then
  1060. New_World = true
  1061. elseif placeId == 7449423635 then
  1062. Three_World = true
  1063. end
  1064.  
  1065. local Library = Update:Window("มองทําควยไรสัส","",Enum.KeyCode.RightControl);
  1066. local AutoFarm = Library:Tab("ออโต้ฟาม")
  1067. local Auto = Library:Tab("ออโต้ทําของ")
  1068. local Stats = Library:Tab("พ้อย")
  1069. local tp = Library:Tab("Teleport")
  1070. local Dungeon = Library:Tab("ลงดัน + Esp")
  1071. local DevilFruit = Library:Tab("DevilFruit")
  1072. local Shop = Library:Tab("ซื้อของ")
  1073. local Misc = Library:Tab("อื่นอื่น")
  1074. local Setting = Library:Tab("ตั้งค่า")
  1075. local Cr = Library:Tab("Credit")
  1076.  
  1077. Wapon = {}
  1078. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  1079. if v:IsA("Tool") then
  1080. table.insert(Wapon ,v.Name)
  1081. end
  1082. end
  1083. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  1084. if v:IsA("Tool") then
  1085. table.insert(Wapon, v.Name)
  1086. end
  1087. end
  1088.  
  1089. local SelectWeapon = AutoFarm:Dropdown("เลือกอาวุธ",Wapon,function(Value)
  1090. SelectToolWeapon = Value
  1091. SelectToolWeaponOld = Value
  1092. end)
  1093.  
  1094. AutoFarm:Button("รีอาวุธ",function()
  1095. SelectWeapon:Clear()
  1096. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  1097. if v:IsA("Tool") then
  1098. SelectWeapon:Add(v.Name)
  1099. end
  1100. end
  1101. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  1102. if v:IsA("Tool") then
  1103. SelectWeapon:Add(v.Name)
  1104. end
  1105. end
  1106. end)
  1107.  
  1108. AutoFarm:Line()
  1109.  
  1110. AutoFarm:Toggle("ฟามเวล",false,function(vu)
  1111. _G.AutoFarm = vu
  1112. if _G.AutoFarm and SelectToolWeapon == "" then
  1113. ui:Notification("AutoFarm","SelectWeapon First ",2)
  1114. else
  1115. Auto_Farm = vu
  1116. Magnet = vu
  1117. SelectMonster = ""
  1118. if vu == false then
  1119. wait(1)
  1120. totarget(game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame)
  1121. end
  1122. end
  1123. end)
  1124. AutoFarm:Toggle("ฟามกระดูก",false,function(vu)
  1125. if not Three_World and vu then
  1126.  
  1127. else
  1128. _G.AutoFarmBone = vu
  1129. _G.MainAutoFarmBone = vu
  1130. end
  1131. end)
  1132. spawn(function()
  1133. while wait() do
  1134. if _G.AutoFarmBone and Three_World then
  1135. 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
  1136. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  1137. if _G.AutoFarmBone and (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:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 then
  1138. repeat wait()
  1139. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  1140. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  1141. MagnetFarmBone = false
  1142. elseif (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  1143. if Farmtween then
  1144. Farmtween:Stop()
  1145. end
  1146. PosFarmBone = v.HumanoidRootPart.CFrame
  1147. EquipWeapon(SelectToolWeapon)
  1148. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  1149. local args = {
  1150. [1] = "Buso"
  1151. }
  1152. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  1153. end
  1154. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 30, 0)
  1155. game:GetService('VirtualUser'):CaptureController()
  1156. game:GetService('VirtualUser'):Button1Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  1157. game:GetService('VirtualUser'):Button1Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  1158. MagnetFarmBone = true
  1159. end
  1160. until not _G.AutoFarmBone or not v.Parent or v.Humanoid.Health <= 0
  1161. MagnetFarmBone = false
  1162. end
  1163. end
  1164. else
  1165. MagnetFarmBone = false
  1166. Questtween = toTarget(CFrame.new(-9506.14648, 172.130661, 6101.79053).Position,CFrame.new(-9506.14648, 172.130661, 6101.79053))
  1167. if (CFrame.new(-9506.14648, 172.130661, 6101.79053).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  1168. if Questtween then
  1169. Questtween:Stop()
  1170. end
  1171. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-9506.14648, 172.130661, 6101.79053, -0.999731541, 0, -0.0231563263, 0, 1, 0, 0.0231563263, 0, -0.999731541)
  1172. end
  1173. end
  1174. end
  1175. end
  1176. end)
  1177. AutoFarm:Toggle("ออโต้ฟาม Ectoplasm",false,function(A)
  1178. if New_World then
  1179. _G.AutoFramEctoplasm = A
  1180. else
  1181.  
  1182. end
  1183. end)
  1184. spawn(function()
  1185. while wait() do
  1186. if _G.AutoFramEctoplasm and New_World then
  1187. if game.Workspace.Enemies:FindFirstChild("Ship Deckhand [Lv. 1250]") or game.Workspace.Enemies:FindFirstChild("Ship Engineer [Lv. 1275]") or game.Workspace.Enemies:FindFirstChild("Ship Steward [Lv. 1300]") or game.Workspace.Enemies:FindFirstChild("Ship Officer [Lv. 1325]") then
  1188. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  1189. if string.find(v.Name, "Ship") then
  1190. repeat wait()
  1191. Usefastattack = true
  1192. if string.find(v.Name, "Ship") then
  1193. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  1194. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  1195. StatrMagnetEctoplasm = false
  1196. elseif (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  1197. if Farmtween then
  1198. Farmtween:Stop()
  1199. end
  1200. EquipWeapon(SelectToolWeapon)
  1201. PosMonEctoplasm = v.HumanoidRootPart.CFrame
  1202. Usefastattack = true
  1203. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  1204. local args = {
  1205. [1] = "Buso"
  1206. }
  1207. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  1208. end
  1209. StatrMagnetEctoplasm = true
  1210. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 10, 10)
  1211. game:GetService'VirtualUser':CaptureController()
  1212. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  1213. end
  1214. else
  1215. StatrMagnetEctoplasm = false
  1216. if (CFrame.new(920.14447, 129.581833, 33442.168).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  1217. Farmtween = toTarget(CFrame.new(920.14447, 129.581833, 33442.168).Position,CFrame.new(920.14447, 129.581833, 33442.168))
  1218. elseif (CFrame.new(920.14447, 129.581833, 33442.168).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  1219. if Farmtween then
  1220. Farmtween:Stop()
  1221. end
  1222. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(920.14447, 129.581833, 33442.168, -0.999913812, 0, -0.0131403487, 0, 1, 0, 0.0131403487, 0, -0.999913812)
  1223. end
  1224. end
  1225. until _G.AutoFramEctoplasm == false or not v.Parent or v.Humanoid.Health <= 0
  1226. Usefastattack = false
  1227. StatrMagnetEctoplasm = false
  1228. if (CFrame.new(920.14447, 129.581833, 33442.168).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  1229. Farmtween = toTarget(CFrame.new(920.14447, 129.581833, 33442.168).Position,CFrame.new(920.14447, 129.581833, 33442.168))
  1230. elseif (CFrame.new(920.14447, 129.581833, 33442.168).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  1231. if Farmtween then
  1232. Farmtween:Stop()
  1233. end
  1234. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(920.14447, 129.581833, 33442.168, -0.999913812, 0, -0.0131403487, 0, 1, 0, 0.0131403487, 0, -0.999913812)
  1235. end
  1236. end
  1237. end
  1238. else
  1239. if (CFrame.new(920.14447, 129.581833, 33442.168).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  1240. Farmtween = toTarget(CFrame.new(920.14447, 129.581833, 33442.168).Position,CFrame.new(920.14447, 129.581833, 33442.168))
  1241. elseif (CFrame.new(920.14447, 129.581833, 33442.168).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  1242. if Farmtween then
  1243. Farmtween:Stop()
  1244. end
  1245. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(920.14447, 129.581833, 33442.168, -0.999913812, 0, -0.0131403487, 0, 1, 0, 0.0131403487, 0, -0.999913812)
  1246. end
  1247. end
  1248. end
  1249. end
  1250. end)
  1251.  
  1252. AutoFarm:Line()
  1253.  
  1254. local Bosslist = {}
  1255. for i, v in pairs(game.ReplicatedStorage:GetChildren()) do
  1256. if string.find(v.Name, "Boss") then
  1257. if v.Name ~= "Ice Admiral [Lv. 700] [Boss]" then
  1258. table.insert(Bosslist, v.Name)
  1259. end
  1260. end
  1261. end
  1262. for i, v in pairs(game.workspace.Enemies:GetChildren()) do
  1263. if string.find(v.Name, "Boss") then
  1264. if v.Name ~= "Ice Admiral [Lv. 700] [Boss]" then
  1265. table.insert(Bosslist, v.Name)
  1266. end
  1267. end
  1268. end
  1269.  
  1270. SelectBoss = ""
  1271. local BossName = AutoFarm:Dropdown("Select Boss",Bosslist,function(Value)
  1272. SelectBoss = Value
  1273. Don = false
  1274. end)
  1275.  
  1276. AutoFarm:Button("รีบอส",function()
  1277. Boss = {}
  1278. BossName:Clear()
  1279. for i, v in pairs(game.ReplicatedStorage:GetChildren()) do
  1280. if string.find(v.Name, "Boss") then
  1281. if v.Name == "Ice Admiral [Lv. 700] [Boss]" then
  1282. else
  1283. BossName:Add(v.Name)
  1284. end
  1285. end
  1286. end
  1287. for i, v in pairs(game.workspace.Enemies:GetChildren()) do
  1288. if string.find(v.Name, "Boss") then
  1289. if v.Name == "Ice Admiral [Lv. 700] [Boss]" then
  1290. else
  1291. BossName:Add(v.Name)
  1292. end
  1293. end
  1294. end
  1295. end)
  1296. AutoFarm:Toggle("ออโต้ฟามบอส",false,function(Value)
  1297. local args = {
  1298. [1] = "AbandonQuest"
  1299. }
  1300. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  1301. FramBoss = Value
  1302. end)
  1303. spawn(function()
  1304. while wait() do
  1305. if FramBoss then
  1306. AutoFramBoss()
  1307. end
  1308. end
  1309. end)
  1310. AutoFarm:Toggle("ฟามบอสทุกตัว",false,function(Value)
  1311. KillAllBoss = Value
  1312. MsBoss = ""
  1313. KillBossuseGet = false
  1314. end)
  1315. spawn(function()
  1316. while wait() do
  1317. if KillAllBoss then
  1318. AutoFramAllBoss()
  1319. end
  1320. end
  1321. end)
  1322.  
  1323. -- Auto
  1324.  
  1325. Auto:Toggle("ออโต้โลก2",false,function(value)
  1326. _G.AutoNew = value
  1327. end)
  1328.  
  1329. spawn(function()
  1330. while wait(.1) do
  1331. if _G.AutoNew then
  1332. if Old_World then
  1333. local MyLevel = game.Players.localPlayer.Data.Level.Value
  1334. if MyLevel >= 700 and OldWorld then
  1335. _G.AutoFarm = false
  1336. Auto_Farm = false
  1337. SelectWeapon = "Key"
  1338. repeat wait()
  1339. totarget(CFrame.new(4849.29883, 5.65138149, 719.611877))
  1340. until not _G.AutoNew or (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - CFrame.new(4849.29883, 5.65138149, 719.611877).Position).Magnitude <= 10
  1341. wait(0.5)
  1342. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("DressrosaQuestProgress","Detective")
  1343. wait(0.5)
  1344. if game.Players.LocalPlayer.Backpack:FindFirstChild("Key") then
  1345. local tool = game.Players.LocalPlayer.Backpack:FindFirstChild("Key")
  1346. wait(.4)
  1347. game.Players.LocalPlayer.Character.Humanoid:EquipTool(tool)
  1348. end
  1349. repeat wait()
  1350. totarget(CFrame.new(1347.7124, 37.3751602, -1325.6488))
  1351. until not _G.AutoNew or (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - CFrame.new(1347.7124, 37.3751602, -1325.6488).Position).Magnitude <= 10
  1352. wait(0.5)
  1353. Click()
  1354. if game.Workspace.Enemies:FindFirstChild("Ice Admiral [Lv. 700] [Boss]") and game.Workspace.Map.Ice.Door.CanCollide == false and game.Workspace.Map.Ice.Door.Transparency == 1 then
  1355. CheckBoss = true
  1356. EquipWeapon(SelectToolWeapon)
  1357. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  1358. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Buso")
  1359. end
  1360. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  1361. if CheckBoss and v:IsA("Model") and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 and v.Name == "Ice Admiral [Lv. 700] [Boss]" then
  1362. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  1363. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Buso")
  1364. end
  1365. repeat wait(.1)
  1366. pcall(function()
  1367. v.HumanoidRootPart.Size = Vector3.new(50, 50, 50)
  1368. v.HumanoidRootPart.BrickColor = BrickColor.new("White")
  1369. v.HumanoidRootPart.CanCollide = false
  1370. totarget(v.HumanoidRootPart.CFrame*CFrame.new(0, 10, 10))
  1371. Click()
  1372. end)
  1373. until not CheckBoss or not v.Parent or v.Humanoid.Health <= 0
  1374. end
  1375. end
  1376. CheckBoss = false
  1377. wait(0.5)
  1378. repeat wait()
  1379. totarget(CFrame.new(-1166.23743, 7.65220165, 1728.36487))
  1380. until (game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame - CFrame.new(-1166.23743, 7.65220165, 1728.36487).Position).Magnitude <= 10
  1381. wait(0.5)
  1382. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelDressrosa")
  1383. else
  1384. if game.Players.LocalPlayer.Backpack:FindFirstChild("Key") then
  1385. local tool = game.Players.LocalPlayer.Backpack:FindFirstChild("Key")
  1386. wait(.4)
  1387. game.Players.LocalPlayer.Character.Humanoid:EquipTool(tool)
  1388. end
  1389. totarget(CFrame.new(1347.7124, 37.3751602, -1325.6488))
  1390. end
  1391. end
  1392. end
  1393. end
  1394. end
  1395. end)
  1396.  
  1397. Auto:Toggle("ออโต้โลก3",false,function(vu)
  1398. _G.AutoThird = vu
  1399. end)
  1400.  
  1401. spawn(function()
  1402. pcall(function()
  1403. while wait() do
  1404. if _G.AutoThird then
  1405. if game:GetService("Players").LocalPlayer.Data.Level.Value >= 1500 and world2 then
  1406. _G.AutoFarm = false
  1407. Auto_Farm = false
  1408. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ZQuestProgress").KilledIndraBoss == false then
  1409. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") == 3 then
  1410. if game:GetService("Players").LocalPlayer.Data.SpawnPoint.Value == "Bar" then
  1411. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TalkTrevor","1") == 0 then
  1412. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ZQuestProgress","Check") == 0 then
  1413. if (CFrame.new(-1926.3221435547, 12.819851875305, 1738.3092041016).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 10 then
  1414. wait(1.1)
  1415. Usefastattack = false
  1416. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ZQuestProgress","Begin")
  1417. else
  1418. Usefastattack = false
  1419. totarget(CFrame.new(-1926.3221435547, 12.819851875305, 1738.3092041016))
  1420. end
  1421. if game:GetService("Workspace").Enemies:FindFirstChild("rip_indra [Lv. 1500] [Boss]") then
  1422. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  1423. if v.Name == "rip_indra [Lv. 1500] [Boss]" then
  1424. repeat game:GetService("RunService").Heartbeat:wait()
  1425. Usefastattack = true
  1426. pcall(function()
  1427. EquipWeapon(SelectToolWeapon)
  1428. totarget(v.HumanoidRootPart.CFrame * CFrame.new(0,25,25))
  1429. require(game:GetService("Players").LocalPlayer.PlayerScripts.CombatFramework).activeController.hitboxMagnitude = 1000
  1430. game:GetService'VirtualUser':CaptureController()
  1431. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  1432. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelZou")
  1433. sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
  1434. end)
  1435. until _G.AutoThird == false or v.Humanoid.Health <= 0 or not v.Parent
  1436. Usefastattack = false
  1437. end
  1438. end
  1439. elseif not game:GetService("Workspace").Enemies:FindFirstChild("rip_indra [Lv. 1500] [Boss]") and (CFrame.new(-26880.93359375, 22.848554611206, 473.18951416016).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 1000 then
  1440. totarget(CFrame.new(-26880.93359375, 22.848554611206, 473.18951416016))
  1441. Usefastattack = false
  1442. end
  1443. elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ZQuestProgress","Check") ~= 0 then
  1444. if game:GetService("Workspace").Enemies:FindFirstChild("Don Swan [Lv. 1000] [Boss]") or game:GetService("ReplicatedStorage"):FindFirstChild("Don Swan [Lv. 1000] [Boss]") then
  1445. if game:GetService("Workspace").Enemies:FindFirstChild("Don Swan [Lv. 1000] [Boss]") then
  1446. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  1447. if v.Name == "Don Swan [Lv. 1000] [Boss]" then
  1448. repeat game:GetService("RunService").Heartbeat:wait()
  1449. pcall(function()
  1450. Usefastattack = true
  1451. EquipWeapon(SelectToolWeapon)
  1452. totarget(v.HumanoidRootPart.CFrame * CFrame.new(0,25,25))
  1453. require(game:GetService("Players").LocalPlayer.PlayerScripts.CombatFramework).activeController.hitboxMagnitude = 1000
  1454. game:GetService'VirtualUser':CaptureController()
  1455. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  1456. sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
  1457. end)
  1458. until _G.AutoThird == false or v.Humanoid.Health <= 0 or not v.Parent
  1459. Usefastattack = false
  1460. end
  1461. end
  1462. else
  1463. if (CFrame.new(2284.912109375, 15.537666320801, 905.48291015625).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 1000 then
  1464. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(2284.912109375, 15.537666320801, 905.48291015625))
  1465. wait()
  1466. end
  1467. Usefastattack = false
  1468. totarget(CFrame.new(2284.912109375, 15.537666320801, 905.48291015625))
  1469. end
  1470. elseif _G.AutoThird and not game:GetService("Workspace").Enemies:FindFirstChild("Don Swan [Lv. 1000] [Boss]") and not game:GetService("ReplicatedStorage"):FindFirstChild("Don Swan [Lv. 1000] [Boss]") then
  1471. bithop()
  1472. elseif not _G.AutoThird and not game:GetService("Workspace").Enemies:FindFirstChild("Don Swan [Lv. 1000] [Boss]") and not game:GetService("ReplicatedStorage"):FindFirstChild("Don Swan [Lv. 1000] [Boss]") then
  1473. if (CFrame.new(2284.912109375, 15.537666320801, 905.48291015625).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 1000 then
  1474. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(2284.912109375, 15.537666320801, 905.48291015625))
  1475. wait()
  1476. end
  1477. Usefastattack = false
  1478. totarget(CFrame.new(2284.912109375, 15.537666320801, 905.48291015625))
  1479. end
  1480. end
  1481. elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TalkTrevor","1") ~= 0 then
  1482. for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
  1483. if string.find(v.Name, "Fruit") then
  1484. if v:IsA("Tool") then
  1485. if (v.Handle.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 20000 then
  1486. v.Handle.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  1487. end
  1488. end
  1489. end
  1490. end
  1491. if game.Players.LocalPlayer.Backpack:FindFirstChild("Quake Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Human: Buddha Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("String Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Bird: Phoenix Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Rumble Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Paw Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Gravity Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Dough Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Shadow Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Venom Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Control Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Dragon Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Quake Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Human: Buddha Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("String Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Bird: Phoenix Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Rumble Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Paw Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Gravity Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Dough Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Shadow Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Venom Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Control Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Dragon Fruit") then
  1492. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TalkTrevor","1")
  1493. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TalkTrevor","2")
  1494. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TalkTrevor","3")
  1495. end
  1496. end
  1497. else
  1498. totarget(CFrame.new(-379.70889282227, 73.0458984375, 304.84692382813))
  1499. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetSpawnPoint")
  1500. end
  1501. else
  1502. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") == 0 then
  1503. if string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Swan Pirates") and string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "50") and game.Players.LocalPlayer.PlayerGui.Main.Quest.Visible == true then
  1504. if game.Workspace.Enemies:FindFirstChild("Swan Pirate [Lv. 775]") then
  1505. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  1506. if v.Name == "Swan Pirate [Lv. 775]" then
  1507. PosMonBarto = v.HumanoidRootPart.CFrame
  1508. pcall(function()
  1509. repeat wait()
  1510. for k,x in pairs(game.Workspace.Enemies:GetChildren()) do
  1511. if x.Name == "Swan Pirate [Lv. 775]" then
  1512. x.Humanoid:ChangeState(11)
  1513. sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
  1514. x.HumanoidRootPart.CanCollide = false
  1515. sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
  1516. x.HumanoidRootPart.Size = Vector3.new(30, 30, 30)
  1517. sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
  1518. x.HumanoidRootPart.CFrame = PosMonBarto
  1519. sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
  1520. end
  1521. end
  1522. Usefastattack = true
  1523. EquipWeapon(SelectToolWeapon)
  1524. v.HumanoidRootPart.CanCollide = false
  1525. v.HumanoidRootPart.Size = Vector3.new(35, 35, 35)
  1526. totarget( v.HumanoidRootPart.CFrame * CFrame.new(0,15,0))
  1527. game:GetService'VirtualUser':CaptureController()
  1528. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  1529. until not v.Parent or v.Humanoid.Health <= 0 or game.Players.LocalPlayer.PlayerGui.Main.Quest.Visible == false
  1530. Usefastattack = false
  1531. end)
  1532. end
  1533. end
  1534. else
  1535. Usefastattack = false
  1536. totarget(CFrame.new(1057.92761, 137.614319, 1242.08069))
  1537. end
  1538. else
  1539. Usefastattack = false
  1540. totarget(CFrame.new(-456.28952, 73.0200958, 299.895966))
  1541. wait(1.1)
  1542. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StartQuest","BartiloQuest",1)
  1543. end
  1544. elseif game.Players.LocalPlayer.Data.Level.Value >= 800 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") == 1 then
  1545. if game.Workspace.Enemies:FindFirstChild("Jeremy [Lv. 850] [Boss]") then
  1546. Ms = "Jeremy [Lv. 850] [Boss]"
  1547. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  1548. if v.Name == Ms then
  1549. repeat wait()
  1550. Usefastattack = true
  1551. EquipWeapon(SelectToolWeapon)
  1552. v.HumanoidRootPart.CanCollide = false
  1553. v.HumanoidRootPart.Size = Vector3.new(35, 35, 35)
  1554. totarget(v.HumanoidRootPart.CFrame * CFrame.new(0,15,0))
  1555. game:GetService'VirtualUser':CaptureController()
  1556. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  1557. until not v.Parent or v.Humanoid.Health <= 0
  1558. Usefastattack = false
  1559. end
  1560. end
  1561. elseif game.ReplicatedStorage:FindFirstChild("Jeremy [Lv. 850] [Boss]") then
  1562. Usefastattack = false
  1563. totarget(CFrame.new(-456.28952, 73.0200958, 299.895966))
  1564. wait(1.1)
  1565. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo")
  1566. wait(1)
  1567. totarget(CFrame.new(2099.88159, 448.931, 648.997375))
  1568. wait(2)
  1569. else
  1570. totarget(CFrame.new(2099.88159, 448.931, 648.997375))
  1571. end
  1572. wait(15)
  1573. if not game.Workspace.Enemies:FindFirstChild("Jeremy [Lv. 850] [Boss]") then
  1574. bithop()
  1575. end
  1576. elseif game.Players.LocalPlayer.Data.Level.Value >= 800 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") == 2 then
  1577. totarget(CFrame.new(-1850.49329, 13.1789551, 1750.89685))
  1578. Usefastattack = false
  1579. wait(1.5)
  1580. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1858.87305, 19.3777466, 1712.01807)
  1581. wait(1.5)
  1582. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1803.94324, 16.5789185, 1750.89685)
  1583. wait(1.5)
  1584. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1858.55835, 16.8604317, 1724.79541)
  1585. wait(1.5)
  1586. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1869.54224, 15.987854, 1681.00659)
  1587. wait(1.5)
  1588. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1800.0979, 16.4978027, 1684.52368)
  1589. wait(1.5)
  1590. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1819.26343, 15.795166, 1717.90625)
  1591. wait(1.5)
  1592. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1813.51843, 15.8604736, 1724.79541)
  1593. wait(1.5)
  1594. end
  1595. end
  1596. else
  1597. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelZou")
  1598. end
  1599. end
  1600. end
  1601. end
  1602. end)
  1603. end)
  1604. spawn(function()
  1605. pcall(function()
  1606. while wait(.1) do wait(5)
  1607. if _G.AutoThird and New_World and game:GetService("Players").LocalPlayer.Data.Level.Value >= 1500 then
  1608. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") == 3 then
  1609. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TalkTrevor","1") ~= 0 then
  1610. if not game.Players.LocalPlayer.Backpack:FindFirstChild("Quake Fruit") and not game.Players.LocalPlayer.Backpack:FindFirstChild("Human: Buddha Fruit") and not game.Players.LocalPlayer.Backpack:FindFirstChild("String Fruit") and not game.Players.LocalPlayer.Backpack:FindFirstChild("Bird: Phoenix Fruit") and not game.Players.LocalPlayer.Backpack:FindFirstChild("Rumble Fruit") and not game.Players.LocalPlayer.Backpack:FindFirstChild("Paw Fruit") and not game.Players.LocalPlayer.Backpack:FindFirstChild("Gravity Fruit") and not game.Players.LocalPlayer.Backpack:FindFirstChild("Dough Fruit") and not game.Players.LocalPlayer.Backpack:FindFirstChild("Shadow Fruit") and not game.Players.LocalPlayer.Backpack:FindFirstChild("Venom Fruit") and not game.Players.LocalPlayer.Backpack:FindFirstChild("Control Fruit") and not game.Players.LocalPlayer.Backpack:FindFirstChild("Dragon Fruit") and not game.Players.LocalPlayer.Character:FindFirstChild("Quake Fruit") and not game.Players.LocalPlayer.Character:FindFirstChild("Human: Buddha Fruit") and not game.Players.LocalPlayer.Character:FindFirstChild("String Fruit") and not game.Players.LocalPlayer.Character:FindFirstChild("Bird: Phoenix Fruit") and not game.Players.LocalPlayer.Character:FindFirstChild("Rumble Fruit") and not game.Players.LocalPlayer.Character:FindFirstChild("Paw Fruit") and not game.Players.LocalPlayer.Character:FindFirstChild("Gravity Fruit") and not game.Players.LocalPlayer.Character:FindFirstChild("Dough Fruit") and not game.Players.LocalPlayer.Character:FindFirstChild("Shadow Fruit") and not game.Players.LocalPlayer.Character:FindFirstChild("Venom Fruit") and not game.Players.LocalPlayer.Character:FindFirstChild("Control Fruit") and not game.Players.LocalPlayer.Character:FindFirstChild("Dragon Fruit") then
  1611. bithop()
  1612. end
  1613. end
  1614. end
  1615. end
  1616. end
  1617. end)
  1618. end)
  1619.  
  1620. Auto:Line()
  1621.  
  1622. Auto:Toggle("ออโต้ซุปเปอร์หิวเเมน",nil,function(vu)
  1623. Superhuman = vu
  1624. if vu then
  1625. local args = {
  1626. [1] = "BuyElectro"
  1627. }
  1628. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  1629. end
  1630. end)
  1631. Auto:Toggle("ออโต้ทําขาซันจิv2",nil,function(vu)
  1632. DeathStep = vu
  1633. if vu then
  1634. local args = {
  1635. [1] = "BuyBlackLeg"
  1636. }
  1637. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  1638. end
  1639. end)
  1640. Auto:Toggle("ออโต้ทําหมัดมังกรv2",nil,function(vu)
  1641. DargonTalon = vu
  1642. if vu then
  1643. local args = {
  1644. [1] = "BlackbeardReward",
  1645. [2] = "DragonClaw",
  1646. [3] = "2"
  1647. }
  1648. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  1649. end
  1650. end)
  1651. Auto:Toggle("ออโต้ทําหมัดสายฟ้า",nil,function(vu)
  1652. Electricclow = vu
  1653. if vu then
  1654. local args = {
  1655. [1] = "BuyElectro"
  1656. }
  1657. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  1658. end
  1659. end)
  1660. spawn(function()
  1661. while wait(.25) do
  1662. if Superhuman and game.Players.LocalPlayer:FindFirstChild("WeaponAssetCache") then
  1663. if game.Players.LocalPlayer.Backpack:FindFirstChild("Combat") or game.Players.LocalPlayer.Character:FindFirstChild("Combat") then
  1664. local args = {
  1665. [1] = "BuyElectro"
  1666. }
  1667. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  1668. end
  1669. if game.Players.LocalPlayer.Character:FindFirstChild("Superhuman") or game.Players.LocalPlayer.Backpack:FindFirstChild("Superhuman") then
  1670. SelectToolWeapon = "Superhuman"
  1671. end
  1672. if game.Players.LocalPlayer.Backpack:FindFirstChild("Black Leg") and game.Players.LocalPlayer.Backpack:FindFirstChild("Black Leg").Level.Value <= 299 then
  1673. SelectToolWeapon = "Black Leg"
  1674. end
  1675. if game.Players.LocalPlayer.Backpack:FindFirstChild("Electro") and game.Players.LocalPlayer.Backpack:FindFirstChild("Electro").Level.Value <= 299 then
  1676. SelectToolWeapon = "Electro"
  1677. end
  1678. if game.Players.LocalPlayer.Backpack:FindFirstChild("Fishman Karate") and game.Players.LocalPlayer.Backpack:FindFirstChild("Fishman Karate").Level.Value <= 299 then
  1679. SelectToolWeapon = "Fishman Karate"
  1680. end
  1681. if game.Players.LocalPlayer.Backpack:FindFirstChild("Dragon Claw") and game.Players.LocalPlayer.Backpack:FindFirstChild("Dragon Claw").Level.Value <= 299 then
  1682. SelectToolWeapon = "Dragon Claw"
  1683. end
  1684. if game.Players.LocalPlayer.Backpack:FindFirstChild("Black Leg") and game.Players.LocalPlayer.Backpack:FindFirstChild("Black Leg").Level.Value >= 300 then
  1685. local args = {
  1686. [1] = "BuyFishmanKarate"
  1687. }
  1688. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  1689. end
  1690. if game.Players.LocalPlayer.Character:FindFirstChild("Black Leg") and game.Players.LocalPlayer.Character:FindFirstChild("Black Leg").Level.Value >= 300 then
  1691. local args = {
  1692. [1] = "BuyFishmanKarate"
  1693. }
  1694. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  1695. end
  1696. if game.Players.LocalPlayer.Backpack:FindFirstChild("Electro") and game.Players.LocalPlayer.Backpack:FindFirstChild("Electro").Level.Value >= 100 then
  1697. local args = {
  1698. [1] = "BuyBlackLeg"
  1699. }
  1700. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  1701. end
  1702. if game.Players.LocalPlayer.Character:FindFirstChild("Electro") and game.Players.LocalPlayer.Character:FindFirstChild("Electro").Level.Value >= 300 then
  1703. local args = {
  1704. [1] = "BuyBlackLeg"
  1705. }
  1706. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  1707. end
  1708. if game.Players.LocalPlayer.Backpack:FindFirstChild("Fishman Karate") and game.Players.LocalPlayer.Backpack:FindFirstChild("Fishman Karate").Level.Value >= 300 then
  1709. if SuperhumanFull and game.Players.LocalPlayer.Data.Fragments.Value < 1500 then
  1710. if game.Players.LocalPlayer.Data.Level.Value > 1100 then
  1711. RaidsSelected = "Flame"
  1712. AutoRaids = true
  1713. RaidsArua = true
  1714. end
  1715. else
  1716. AutoRaids = false
  1717. RaidsArua = false
  1718. local args = {
  1719. [1] = "BlackbeardReward",
  1720. [2] = "DragonClaw",
  1721. [3] = "2"
  1722. }
  1723. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  1724. end
  1725. end
  1726. if game.Players.LocalPlayer.Character:FindFirstChild("Fishman Karate") and game.Players.LocalPlayer.Character:FindFirstChild("Fishman Karate").Level.Value >= 300 then
  1727. if SuperhumanFull and game.Players.LocalPlayer.Data.Fragments.Value < 1500 then
  1728. if game.Players.LocalPlayer.Data.Level.Value > 1100 then
  1729. RaidsSelected = "Flame"
  1730. AutoRaids = true
  1731. RaidsArua = true
  1732. end
  1733. else
  1734. AutoRaids = false
  1735. RaidsArua = false
  1736. local args = {
  1737. [1] = "BlackbeardReward",
  1738. [2] = "DragonClaw",
  1739. [3] = "2"
  1740. }
  1741. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  1742. end
  1743. end
  1744. if game.Players.LocalPlayer.Backpack:FindFirstChild("Dragon Claw") and game.Players.LocalPlayer.Backpack:FindFirstChild("Dragon Claw").Level.Value >= 300 then
  1745. local args = {
  1746. [1] = "BuySuperhuman"
  1747. }
  1748. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  1749. end
  1750. if game.Players.LocalPlayer.Character:FindFirstChild("Dragon Claw") and game.Players.LocalPlayer.Character:FindFirstChild("Dragon Claw").Level.Value >= 300 then
  1751. local args = {
  1752. [1] = "BuySuperhuman"
  1753. }
  1754. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  1755. end
  1756. end
  1757. if DeathStep and game.Players.LocalPlayer:FindFirstChild("WeaponAssetCache") then
  1758. if game.Players.LocalPlayer.Backpack:FindFirstChild("Black Leg") and game.Players.LocalPlayer.Backpack:FindFirstChild("Black Leg").Level.Value >= 400 then
  1759. local args = {
  1760. [1] = "BuyDeathStep"
  1761. }
  1762. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  1763. SelectToolWeapon = "Death Step"
  1764. end
  1765. if game.Players.LocalPlayer.Character:FindFirstChild("Black Leg") and game.Players.LocalPlayer.Character:FindFirstChild("Black Leg").Level.Value >= 400 then
  1766. local args = {
  1767. [1] = "BuyDeathStep"
  1768. }
  1769. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  1770.  
  1771. SelectToolWeapon = "Death Step"
  1772. end
  1773. if game.Players.LocalPlayer.Backpack:FindFirstChild("Black Leg") and game.Players.LocalPlayer.Backpack:FindFirstChild("Black Leg").Level.Value < 400 then
  1774. SelectToolWeapon = "Black Leg"
  1775. end
  1776. end
  1777. if DargonTalon and game.Players.LocalPlayer:FindFirstChild("WeaponAssetCache") then
  1778. if game.Players.LocalPlayer.Backpack:FindFirstChild("Dragon Claw") and game.Players.LocalPlayer.Backpack:FindFirstChild("Dragon Claw").Level.Value <= 399 and game.Players.LocalPlayer.Character.Humanoid.Health > 0 then
  1779. SelectToolWeapon = "Dragon Claw"
  1780. end
  1781. if game.Players.LocalPlayer.Character:FindFirstChild("Dragon Claw") and game.Players.LocalPlayer.Character:FindFirstChild("Dragon Claw").Level.Value <= 399 and game.Players.LocalPlayer.Character.Humanoid.Health > 0 then
  1782. SelectToolWeapon = "Dragon Claw"
  1783. end
  1784.  
  1785. if game.Players.LocalPlayer.Character:FindFirstChild("Dragon Claw") and game.Players.LocalPlayer.Character:FindFirstChild("Dragon Claw").Level.Value >= 400 and game.Players.LocalPlayer.Character.Humanoid.Health > 0 then
  1786. SelectToolWeapon = "Dragon Claw"
  1787. if game.ReplicatedStorage.Remotes.CommF_:InvokeServer("BuyDragonTalon", true) == 3 then
  1788. local string_1 = "Bones";
  1789. local string_2 = "Buy";
  1790. local number_1 = 1;
  1791. local number_2 = 1;
  1792. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  1793. Target:InvokeServer(string_1, string_2, number_1, number_2);
  1794.  
  1795. local string_1 = "BuyDragonTalon";
  1796. local bool_1 = true;
  1797. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  1798. Target:InvokeServer(string_1, bool_1);
  1799. elseif game.ReplicatedStorage.Remotes.CommF_:InvokeServer("BuyDragonTalon", true) == 1 then
  1800. game.ReplicatedStorage.Remotes.CommF_:InvokeServer("BuyDragonTalon")
  1801. else
  1802. local string_1 = "BuyDragonTalon";
  1803. local bool_1 = true;
  1804. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  1805. Target:InvokeServer(string_1, bool_1);
  1806. local string_1 = "BuyDragonTalon";
  1807. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  1808. Target:InvokeServer(string_1);
  1809. end
  1810. end
  1811. end
  1812. if Electricclow and game.Players.LocalPlayer:FindFirstChild("WeaponAssetCache") then
  1813. if game.Players.LocalPlayer.Backpack:FindFirstChild("Electro") and game.Players.LocalPlayer.Backpack:FindFirstChild("Electro").Level.Value < 400 then
  1814. SelectToolWeapon = "Electro"
  1815. end
  1816. if game.Players.LocalPlayer.Character:FindFirstChild("Electro") and game.Players.LocalPlayer.Character:FindFirstChild("Electro").Level.Value < 400 then
  1817. SelectToolWeapon = "Electro"
  1818. end
  1819. if game.Players.LocalPlayer.Backpack:FindFirstChild("Electro") and game.Players.LocalPlayer.Backpack:FindFirstChild("Electro").Level.Value >= 400 then
  1820. local v175 = game.ReplicatedStorage.Remotes.CommF_:InvokeServer("BuyElectricClaw", true);
  1821. if v175 == 4 then
  1822. local v176 = game.ReplicatedStorage.Remotes.CommF_:InvokeServer("BuyElectricClaw", "Start");
  1823. if v176 == nil then
  1824. game.Players.localPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-12548, 337, -7481)
  1825. end
  1826. else
  1827. local string_1 = "BuyElectricClaw";
  1828. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  1829. Target:InvokeServer(string_1);
  1830. end
  1831. end
  1832. if game.Players.LocalPlayer.Character:FindFirstChild("Electro") and game.Players.LocalPlayer.Character:FindFirstChild("Electro").Level.Value >= 400 then
  1833. local v175 = game.ReplicatedStorage.Remotes.CommF_:InvokeServer("BuyElectricClaw", true);
  1834. if v175 == 4 then
  1835. local v176 = game.ReplicatedStorage.Remotes.CommF_:InvokeServer("BuyElectricClaw", "Start");
  1836. if v176 == nil then
  1837. game.Players.localPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-12548, 337, -7481)
  1838. end
  1839. else
  1840. local string_1 = "BuyElectricClaw";
  1841. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  1842. Target:InvokeServer(string_1);
  1843. end
  1844. end
  1845. end
  1846. end
  1847. end)
  1848.  
  1849. Auto:Seperator("Sea 1")
  1850.  
  1851. Auto:Toggle("ออโต้เปิดห้องเเชง",false,function(vu)
  1852. _G.AutoSaber = vu
  1853. end)
  1854. spawn(function()
  1855. while wait() do
  1856. if _G.AutoSaber and Old_World then
  1857. if game.Players.localPlayer.Data.Level.Value < 200 then
  1858. else
  1859. if game.Workspace.Map.Jungle.Final.Part.CanCollide == false then
  1860. if game.Workspace.Enemies:FindFirstChild("Saber Expert [Lv. 200] [Boss]") then
  1861. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  1862. if v.Name == "Saber Expert [Lv. 200] [Boss]" and v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 then
  1863. repeat wait()
  1864. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  1865. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  1866. elseif (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  1867. if Farmtween then
  1868. Farmtween:Stop()
  1869. end
  1870. EquipWeapon(SelectToolWeapon)
  1871. Usefastattack = true
  1872. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  1873. local args = {
  1874. [1] = "Buso"
  1875. }
  1876. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  1877. end
  1878. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 10, 10)
  1879. game:GetService'VirtualUser':CaptureController()
  1880. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  1881. end
  1882. until not _G.AutoSaber or not v.Parent or v.Humanoid.Health <= 0
  1883. Usefastattack = false
  1884. end
  1885. end
  1886. else
  1887. Questtween = toTarget(CFrame.new(-1405.41956, 29.8519993, 5.62435055).Position,CFrame.new(-1405.41956, 29.8519993, 5.62435055))
  1888. if (CFrame.new(-1405.41956, 29.8519993, 5.62435055).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  1889. if Questtween then
  1890. Questtween:Stop()
  1891. end
  1892. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1405.41956, 29.8519993, 5.62435055, 0.885240912, 3.52892613e-08, 0.465132833, -6.60881128e-09, 1, -6.32913171e-08, -0.465132833, 5.29540891e-08, 0.885240912)
  1893. end
  1894. end
  1895. elseif game.Players.LocalPlayer.Backpack:FindFirstChild("Relic") or game.Players.LocalPlayer.Character:FindFirstChild("Relic") and game.Players.localPlayer.Data.Level.Value >= 200 then
  1896. EquipWeapon("Relic")
  1897. wait(0.5)
  1898. Questtween = toTarget(CFrame.new(-1405.41956, 29.8519993, 5.62435055).Position,CFrame.new(-1405.41956, 29.8519993, 5.62435055))
  1899. if (CFrame.new(-1405.41956, 29.8519993, 5.62435055).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  1900. if Questtween then
  1901. Questtween:Stop()
  1902. end
  1903. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1405.41956, 29.8519993, 5.62435055, 0.885240912, 3.52892613e-08, 0.465132833, -6.60881128e-09, 1, -6.32913171e-08, -0.465132833, 5.29540891e-08, 0.885240912)
  1904. end
  1905. else
  1906. if Workspace.Map.Jungle.QuestPlates.Door.CanCollide == false then
  1907. if game.Workspace.Map.Desert.Burn.Part.CanCollide == false then
  1908. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ProQuestProgress","SickMan") == 0 then
  1909. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ProQuestProgress","RichSon") == 0 then
  1910. if game.Workspace.Enemies:FindFirstChild("Mob Leader [Lv. 120] [Boss]") then
  1911. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  1912. if _G.AutoSaber and v:IsA("Model") and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 and v.Name == "Mob Leader [Lv. 120] [Boss]" then
  1913. repeat
  1914. pcall(function() wait()
  1915. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  1916. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  1917. elseif (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  1918. if Farmtween then
  1919. Farmtween:Stop()
  1920. end
  1921. EquipWeapon(SelectToolWeapon)
  1922. Usefastattack = true
  1923. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  1924. local args = {
  1925. [1] = "Buso"
  1926. }
  1927. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  1928. end
  1929. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 10, 10)
  1930. game:GetService'VirtualUser':CaptureController()
  1931. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  1932. end
  1933. end)
  1934. until not _G.AutoSaber or not v.Parent or v.Humanoid.Health <= 0
  1935. Usefastattack = false
  1936. end
  1937. end
  1938. else
  1939. Questtween = toTarget(CFrame.new(-2848.59399, 7.4272871, 5342.44043).Position,CFrame.new(-2848.59399, 7.4272871, 5342.44043))
  1940. if (CFrame.new(-2848.59399, 7.4272871, 5342.44043).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  1941. if Questtween then
  1942. Questtween:Stop()
  1943. end
  1944. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2848.59399, 7.4272871, 5342.44043, -0.928248107, -8.7248246e-08, 0.371961564, -7.61816636e-08, 1, 4.44474857e-08, -0.371961564, 1.29216433e-08, -0.928248107)
  1945. end
  1946. end
  1947. elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ProQuestProgress","RichSon") == 1 then
  1948. if game.Players.LocalPlayer.Backpack:FindFirstChild("Relic") or game.Players.LocalPlayer.Character:FindFirstChild("Relic") then
  1949. EquipWeapon("Relic")
  1950. wait(0.5)
  1951. Questtween = toTarget(CFrame.new(-1405.41956, 29.8519993, 5.62435055).Position,CFrame.new(-1405.41956, 29.8519993, 5.62435055))
  1952. if (CFrame.new(-1405.41956, 29.8519993, 5.62435055).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  1953. if Questtween then
  1954. Questtween:Stop()
  1955. end
  1956. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1405.41956, 29.8519993, 5.62435055)
  1957. end
  1958. else
  1959. Questtween = toTarget(CFrame.new(-910.979736, 13.7520342, 4078.14624).Position,CFrame.new(-910.979736, 13.7520342, 4078.14624))
  1960. if (CFrame.new(-910.979736, 13.7520342, 4078.14624).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  1961. if Questtween then
  1962. Questtween:Stop()
  1963. end
  1964. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-910.979736, 13.7520342, 4078.14624, 0.00685182028, -1.53155766e-09, -0.999976516, 9.15205245e-09, 1, -1.46888401e-09, 0.999976516, -9.14177267e-09, 0.00685182028)
  1965. wait(.5)
  1966. local args = {
  1967. [1] = "ProQuestProgress",
  1968. [2] = "RichSon"
  1969. }
  1970. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  1971. end
  1972. end
  1973. else
  1974. Questtween = toTarget(CFrame.new(-910.979736, 13.7520342, 4078.14624).Position,CFrame.new(-910.979736, 13.7520342, 4078.14624))
  1975. if (CFrame.new(-910.979736, 13.7520342, 4078.14624).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  1976. if Questtween then
  1977. Questtween:Stop()
  1978. end
  1979. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-910.979736, 13.7520342, 4078.14624)
  1980. local args = {
  1981. [1] = "ProQuestProgress",
  1982. [2] = "RichSon"
  1983. }
  1984. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  1985. end
  1986. end
  1987. else
  1988. if game.Players.LocalPlayer.Backpack:FindFirstChild("Cup") or game.Players.LocalPlayer.Character:FindFirstChild("Cup") then
  1989. EquipWeapon("Cup")
  1990. if game.Players.LocalPlayer.Character.Cup.Handle:FindFirstChild("TouchInterest") then
  1991. Questtween = toTarget(CFrame.new(1397.229, 37.3480148, -1320.85217).Position,CFrame.new(1397.229, 37.3480148, -1320.85217))
  1992. if (CFrame.new(1397.229, 37.3480148, -1320.85217).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  1993. if Questtween then
  1994. Questtween:Stop()
  1995. end
  1996. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1397.229, 37.3480148, -1320.85217, -0.11285457, 2.01368788e-08, 0.993611455, 1.91641178e-07, 1, 1.50028845e-09, -0.993611455, 1.90586206e-07, -0.11285457)
  1997. end
  1998. else
  1999. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1458.54285, 88.2521744, -1390.34912, -0.00596274994, 1.13679788e-09, -0.999982238, 7.28181793e-10, 1, 1.132476e-09, 0.999982238, -7.21416205e-10, -0.00596274994)
  2000. wait(0.5)
  2001. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ProQuestProgress","SickMan") ~= 0 then
  2002. local args = {
  2003. [1] = "ProQuestProgress",
  2004. [2] = "SickMan"
  2005. }
  2006. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  2007. end
  2008. end
  2009. else
  2010. Questtween = toTarget(game.Workspace.Map.Desert.Cup.Position,game.Workspace.Map.Desert.Cup.CFrame)
  2011. if (game.Workspace.Map.Desert.Cup.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2012. if Questtween then
  2013. Questtween:Stop()
  2014. end
  2015. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Map.Desert.Cup.CFrame
  2016. end
  2017. -- firetouchinterest(game.Workspace.Map.Desert.Cup.TouchInterest,game.Players.LocalPlayer.Character.Head, 1)
  2018. end
  2019. end
  2020. else
  2021. if game.Players.LocalPlayer.Backpack:FindFirstChild("Torch") or game.Players.LocalPlayer.Character:FindFirstChild("Torch") then
  2022. EquipWeapon("Torch")
  2023. Questtween = toTarget(CFrame.new(1114.87708, 4.9214654, 4349.8501).Position,CFrame.new(1114.87708, 4.9214654, 4349.8501))
  2024. if (CFrame.new(1114.87708, 4.9214654, 4349.8501).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2025. if Questtween then
  2026. Questtween:Stop()
  2027. end
  2028. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1114.87708, 4.9214654, 4349.8501, -0.612586915, -9.68697833e-08, 0.790403247, -1.2634203e-07, 1, 2.4638446e-08, -0.790403247, -8.47679615e-08, -0.612586915)
  2029. end
  2030. else
  2031. Questtween = toTarget(CFrame.new(-1610.00757, 11.5049858, 164.001587).Position,CFrame.new(-1610.00757, 11.5049858, 164.001587))
  2032. if (CFrame.new(-1610.00757, 11.5049858, 164.001587).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2033. if Questtween then
  2034. Questtween:Stop()
  2035. end
  2036. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1610.00757, 11.5049858, 164.001587, 0.984807551, -0.167722285, -0.0449818149, 0.17364943, 0.951244235, 0.254912198, 3.42372805e-05, -0.258850515, 0.965917408)
  2037. end
  2038. end
  2039. end
  2040. else
  2041. for i,v in pairs(Workspace.Map.Jungle.QuestPlates:GetChildren()) do
  2042. if v:IsA("Model") then wait()
  2043. if v.Button.BrickColor ~= BrickColor.new("Camo") then
  2044. repeat wait()
  2045. Questtween = toTarget(v.Button.Position,v.Button.CFrame)
  2046. if (v.Button.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 150 then
  2047. if Questtween then
  2048. Questtween:Stop()
  2049. end
  2050. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Button.CFrame
  2051. end
  2052. until not _G.AutoSaber or v.Button.BrickColor == BrickColor.new("Camo")
  2053. end
  2054. end
  2055. end
  2056. end
  2057. end
  2058. end
  2059. end
  2060. end
  2061. end)
  2062. Auto:Toggle("ออโต้โพv1",false,function(v)
  2063. if Old_World then
  2064. if _G.SelectToolWeapon == "" and v then
  2065.  
  2066. else
  2067. _G.AutoPole = v
  2068. end
  2069. else
  2070.  
  2071. end
  2072. end)
  2073. spawn(function()
  2074. while wait() do
  2075. if _G.AutoPole and Old_World and game.ReplicatedStorage:FindFirstChild("Thunder God [Lv. 575] [Boss]") or game.Workspace.Enemies:FindFirstChild("Thunder God [Lv. 575] [Boss]") then
  2076. if game.Workspace.Enemies:FindFirstChild("Thunder God [Lv. 575] [Boss]") then
  2077. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  2078. if _G.AutoPole and v.Name == "Thunder God [Lv. 575] [Boss]" and v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 then
  2079. repeat wait()
  2080. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  2081. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  2082. elseif (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2083. if Farmtween then
  2084. Farmtween:Stop()
  2085. end
  2086. EquipWeapon(SelectToolWeapon)
  2087. Usefastattack = true
  2088. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  2089. local args = {
  2090. [1] = "Buso"
  2091. }
  2092. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  2093. end
  2094. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 10, 10)
  2095. game:GetService'VirtualUser':CaptureController()
  2096. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  2097. end
  2098. until not _G.AutoPole or v.Humanoid.Health <= 0 or not v.Parent
  2099. Usefastattack = false
  2100. end
  2101. end
  2102. else
  2103. Questtween = toTarget(CFrame.new(-7900.66406, 5606.90918, -2267.46436).Position,CFrame.new(-7900.66406, 5606.90918, -2267.46436))
  2104. if (CFrame.new(-7900.66406, 5606.90918, -2267.46436).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2105. if Questtween then
  2106. Questtween:Stop()
  2107. end
  2108. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-7900.66406, 5606.90918, -2267.46436)
  2109. end
  2110. end
  2111. end
  2112. end
  2113. end)
  2114. Auto:Toggle("Auto Pole V.1 HOP",false,function(v)
  2115. if Old_World then
  2116. _G.AutoPoleHOP = v
  2117. else
  2118.  
  2119. end
  2120. end)
  2121. spawn(function()
  2122. while wait() do
  2123. if _G.AutoPoleHOP and Old_World then
  2124. if game.ReplicatedStorage:FindFirstChild("Thunder God [Lv. 575] [Boss]") or game.Workspace.Enemies:FindFirstChild("Thunder God [Lv. 575] [Boss]") then
  2125. if game.Workspace.Enemies:FindFirstChild("Thunder God [Lv. 575] [Boss]") then
  2126. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  2127. if _G.AutoPoleHOP and v.Name == "Thunder God [Lv. 575] [Boss]" and v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 then
  2128. repeat wait()
  2129. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  2130. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  2131. elseif (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2132. if Farmtween then
  2133. Farmtween:Stop()
  2134. end
  2135. EquipWeapon(SelectToolWeapon)
  2136. Usefastattack = true
  2137. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  2138. local args = {
  2139. [1] = "Buso"
  2140. }
  2141. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  2142. end
  2143. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 10, 10)
  2144. game:GetService'VirtualUser':CaptureController()
  2145. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  2146. end
  2147. until not _G.AutoPoleHOP or v.Humanoid.Health <= 0 or not v.Parent
  2148. Usefastattack = false
  2149. end
  2150. end
  2151. else
  2152. Questtween = toTarget(CFrame.new(-7900.66406, 5606.90918, -2267.46436).Position,CFrame.new(-7900.66406, 5606.90918, -2267.46436))
  2153. if (CFrame.new(-7900.66406, 5606.90918, -2267.46436).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2154. if Questtween then
  2155. Questtween:Stop()
  2156. end
  2157. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-7900.66406, 5606.90918, -2267.46436)
  2158. end
  2159. end
  2160. else
  2161. local PlaceID = game.PlaceId
  2162. local AllIDs = {}
  2163. local foundAnything = ""
  2164. local actualHour = os.date("!*t").hour
  2165. local Deleted = false
  2166. function TPReturner()
  2167. local Site;
  2168. if foundAnything == "" then
  2169. Site = game.HttpService:JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. PlaceID .. '/servers/Public?sortOrder=Asc&limit=100'))
  2170. else
  2171. Site = game.HttpService:JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. PlaceID .. '/servers/Public?sortOrder=Asc&limit=100&cursor=' .. foundAnything))
  2172. end
  2173. local ID = ""
  2174. if Site.nextPageCursor and Site.nextPageCursor ~= "null" and Site.nextPageCursor ~= nil then
  2175. foundAnything = Site.nextPageCursor
  2176. end
  2177. local num = 0;
  2178. for i,v in pairs(Site.data) do
  2179. local Possible = true
  2180. ID = tostring(v.id)
  2181. if tonumber(v.maxPlayers) > tonumber(v.playing) then
  2182. for _,Existing in pairs(AllIDs) do
  2183. if num ~= 0 then
  2184. if ID == tostring(Existing) then
  2185. Possible = false
  2186. end
  2187. else
  2188. if tonumber(actualHour) ~= tonumber(Existing) then
  2189. local delFile = pcall(function()
  2190. -- delfile("NotSameServers.json")
  2191. AllIDs = {}
  2192. table.insert(AllIDs, actualHour)
  2193. end)
  2194. end
  2195. end
  2196. num = num + 1
  2197. end
  2198. if Possible == true then
  2199. table.insert(AllIDs, ID)
  2200. wait()
  2201. pcall(function()
  2202. -- writefile("NotSameServers.json", game:GetService('HttpService'):JSONEncode(AllIDs))
  2203. wait()
  2204. game:GetService("TeleportService"):TeleportToPlaceInstance(PlaceID, ID, game.Players.LocalPlayer)
  2205. end)
  2206. wait(.1)
  2207. end
  2208. end
  2209. end
  2210. end
  2211. function Teleport()
  2212. while wait() do
  2213. pcall(function()
  2214. TPReturner()
  2215. if foundAnything ~= "" then
  2216. TPReturner()
  2217. end
  2218. end)
  2219. end
  2220. end
  2221. Teleport()
  2222. end
  2223. end
  2224. end
  2225. end)
  2226. Auto:Seperator("Sea 2")
  2227. Auto:Toggle("Auto Quest Bartilo",false,function(v)
  2228. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") == 3 and v == true then
  2229.  
  2230. else
  2231. _G.AutoQuestBartilo = v
  2232. end
  2233. end)
  2234. spawn(function()
  2235. while wait() do
  2236. if _G.AutoQuestBartilo and New_World and game.Players.LocalPlayer.Data.Level.Value >= 850 then
  2237. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") == 0 then
  2238. if string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Swan Pirates") and string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "50") and game.Players.LocalPlayer.PlayerGui.Main.Quest.Visible == true then
  2239. if game.Workspace.Enemies:FindFirstChild("Swan Pirate [Lv. 775]") then
  2240. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  2241. if v.Name == "Swan Pirate [Lv. 775]" then
  2242. pcall(function()
  2243. repeat wait()
  2244. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  2245. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  2246. elseif (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2247. if Farmtween then
  2248. Farmtween:Stop()
  2249. end
  2250. EquipWeapon(SelectToolWeapon)
  2251. Usefastattack = true
  2252. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  2253. local args = {
  2254. [1] = "Buso"
  2255. }
  2256. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  2257. end
  2258. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 30, 0)
  2259. game:GetService'VirtualUser':CaptureController()
  2260. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  2261. end
  2262. until not v.Parent or v.Humanoid.Health <= 0 or _G.AutoQuestBartilo == false or game.Players.LocalPlayer.PlayerGui.Main.Quest.Visible == false
  2263. AutoBartiloBring = false
  2264. Usefastattack = false
  2265. end)
  2266. end
  2267. end
  2268. else
  2269. Questtween = toTarget(CFrame.new(1057.92761, 137.614319, 1242.08069).Position,CFrame.new(1057.92761, 137.614319, 1242.08069))
  2270. if (CFrame.new(1057.92761, 137.614319, 1242.08069).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2271. if Questtween then
  2272. Questtween:Stop()
  2273. end
  2274. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1057.92761, 137.614319, 1242.08069)
  2275. end
  2276. end
  2277. else
  2278. Bartilotween = toTarget(CFrame.new(-456.28952, 73.0200958, 299.895966).Position,CFrame.new(-456.28952, 73.0200958, 299.895966))
  2279. if ( CFrame.new(-456.28952, 73.0200958, 299.895966).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2280. if Bartilotween then
  2281. Bartilotween:Stop()
  2282. end
  2283. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-456.28952, 73.0200958, 299.895966)
  2284. local args = {
  2285. [1] = "StartQuest",
  2286. [2] = "BartiloQuest",
  2287. [3] = 1
  2288. }
  2289. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  2290. end
  2291. end
  2292. elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") == 1 then
  2293. if game.Workspace.Enemies:FindFirstChild("Jeremy [Lv. 850] [Boss]") then
  2294. Ms = "Jeremy [Lv. 850] [Boss]"
  2295. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  2296. if v.Name == Ms then
  2297. repeat wait()
  2298. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  2299. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  2300. elseif (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2301. if Farmtween then
  2302. Farmtween:Stop()
  2303. end
  2304. EquipWeapon(SelectToolWeapon)
  2305. Usefastattack = true
  2306. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  2307. local args = {
  2308. [1] = "Buso"
  2309. }
  2310. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  2311. end
  2312. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 30, 0)
  2313. game:GetService'VirtualUser':CaptureController()
  2314. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  2315. end
  2316. until not v.Parent or v.Humanoid.Health <= 0 or _G.AutoQuestBartilo == false
  2317. Usefastattack = false
  2318. end
  2319. end
  2320. else
  2321. Bartilotween = toTarget(CFrame.new(2099.88159, 448.931, 648.997375).Position,CFrame.new(2099.88159, 448.931, 648.997375))
  2322. if (CFrame.new(2099.88159, 448.931, 648.997375).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2323. if Bartilotween then
  2324. Bartilotween:Stop()
  2325. end
  2326. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(2099.88159, 448.931, 648.997375)
  2327. end
  2328. end
  2329. elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") == 2 then
  2330. if (CFrame.new(-1836, 11, 1714).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  2331. Bartilotween = toTarget(CFrame.new(-1836, 11, 1714).Position,CFrame.new(-1836, 11, 1714))
  2332. elseif (CFrame.new(-1836, 11, 1714).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2333. if Bartilotween then
  2334. Bartilotween:Stop()
  2335. end
  2336. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1836, 11, 1714)
  2337. wait(.5)
  2338. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1850.49329, 13.1789551, 1750.89685)
  2339. wait(1)
  2340. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1858.87305, 19.3777466, 1712.01807)
  2341. wait(1)
  2342. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1803.94324, 16.5789185, 1750.89685)
  2343. wait(1)
  2344. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1858.55835, 16.8604317, 1724.79541)
  2345. wait(1)
  2346. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1869.54224, 15.987854, 1681.00659)
  2347. wait(1)
  2348. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1800.0979, 16.4978027, 1684.52368)
  2349. wait(1)
  2350. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1819.26343, 14.795166, 1717.90625)
  2351. wait(1)
  2352. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1813.51843, 14.8604736, 1724.79541)
  2353. end
  2354. end
  2355. end
  2356. end
  2357. end)
  2358. Auto:Toggle("ออโต้ ทําเพ่า v2",false,function(Bool)
  2359. if game.Players.LocalPlayer.Data.Level.Value < 850 and Bool then
  2360. game:GetService("StarterGui"):SetCore("SendNotification", {
  2361. Title = "Notification",
  2362. Text = "Need Level More 850"
  2363. })
  2364. else
  2365. if _G.SelectToolWeapon == "" and Bool then
  2366. game:GetService("StarterGui"):SetCore("SendNotification", {
  2367. Title = "Notification",
  2368. Text = "เลือกอาวุธก่อนดิ"
  2369. })
  2370. elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") ~= 3 and Bool == true then
  2371. game:GetService("StarterGui"):SetCore("SendNotification", {
  2372. Title = "Notification",
  2373. Text = "Quest Bartilo Not Successfully"
  2374. })
  2375. elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Alchemist","3") == -2 and Bool == true then
  2376. game:GetService("StarterGui"):SetCore("SendNotification", {
  2377. Title = "Notification",
  2378. Text = "ทําเผ่าv2เสร็จแล้ว"
  2379. })
  2380. else
  2381. _G.AutoEvoRace2 = Bool
  2382. end
  2383. end
  2384. end)
  2385. spawn(function()
  2386. while wait() do
  2387. if _G.AutoEvoRace2 and New_World then
  2388. if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Alchemist","3") ~= -2 then
  2389. if game.Players.LocalPlayer.Backpack:FindFirstChild("Flower 1") and game.Players.LocalPlayer.Backpack:FindFirstChild("Flower 2") and game.Players.LocalPlayer.Backpack:FindFirstChild("Flower 3") then
  2390. if (CFrame.new(-2777.6001, 72.9661407, -3571.42285).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  2391. Farmtween = toTarget(CFrame.new(-2777.6001, 72.9661407, -3571.42285).Position,CFrame.new(-2777.6001, 72.9661407, -3571.42285))
  2392. elseif (CFrame.new(-2777.6001, 72.9661407, -3571.42285).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2393. if Farmtween then
  2394. Farmtween:Stop()
  2395. end
  2396. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2777.6001, 72.9661407, -3571.42285)
  2397. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Alchemist","3")
  2398. end
  2399. else
  2400. game.ReplicatedStorage.Remotes.CommF_:InvokeServer("Alchemist", "1")
  2401. game.ReplicatedStorage.Remotes.CommF_:InvokeServer("Alchemist", "2")
  2402. if not game.Players.LocalPlayer.Backpack:FindFirstChild("Flower 1") then
  2403. if workspace.Flower1.Transparency ~= 1 then
  2404. if (workspace.Flower1.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  2405. Farmtween = toTarget(workspace.Flower1.Position,workspace.Flower1.CFrame)
  2406. elseif (workspace.Flower1.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2407. if Farmtween then
  2408. Farmtween:Stop()
  2409. end
  2410. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace.Flower1.CFrame
  2411. end
  2412. end
  2413. end
  2414. if not game.Players.LocalPlayer.Backpack:FindFirstChild("Flower 2") then
  2415. if workspace.Flower2.Transparency ~= 1 then
  2416. if (workspace.Flower2.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  2417. Farmtween = toTarget(workspace.Flower2.Position,workspace.Flower2.CFrame)
  2418. elseif (workspace.Flower2.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2419. if Farmtween then
  2420. Farmtween:Stop()
  2421. end
  2422. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace.Flower2.CFrame
  2423. end
  2424. end
  2425. end
  2426. if not game.Players.LocalPlayer.Backpack:FindFirstChild("Flower 3") then
  2427. if game.Workspace.Enemies:FindFirstChild("Swan Pirate [Lv. 775]") then
  2428. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  2429. if v.Name == "Swan Pirate [Lv. 775]" and v:FindFirstChild("Humanoid") and v.Humanoid.Health >= 0 then
  2430. pcall(function()
  2431. repeat wait()
  2432. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  2433. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  2434. elseif (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2435. if Farmtween then
  2436. Farmtween:Stop()
  2437. end
  2438. EquipWeapon(SelectToolWeapon)
  2439. Usefastattack = true
  2440. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  2441. local args = {
  2442. [1] = "Buso"
  2443. }
  2444. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  2445. end
  2446. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 10, 10)
  2447. game:GetService'VirtualUser':CaptureController()
  2448. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  2449. end
  2450. until not v.Parent or v.Humanoid.Health <= 0 or _G.AutoEvoRace2 == false or LocalPlayer.Backpack:FindFirstChild("Flower 3")
  2451. AutoEvoBring = false
  2452. Usefastattack = false
  2453. end)
  2454. end
  2455. end
  2456. else
  2457. if (CFrame.new(1057.92761, 137.614319, 1242.08069).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  2458. Farmtween = toTarget(CFrame.new(1057.92761, 137.614319, 1242.08069).Position,CFrame.new(1057.92761, 137.614319, 1242.08069))
  2459. elseif (CFrame.new(1057.92761, 137.614319, 1242.08069).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2460. if Farmtween then
  2461. Farmtween:Stop()
  2462. end
  2463. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1057.92761, 137.614319, 1242.08069)
  2464. end
  2465. end
  2466. end
  2467. end
  2468. end
  2469. end
  2470. end
  2471. end)
  2472. Auto:Toggle("ออโต้ดาบเรนโกคุ",false,function(v)
  2473. if not New_World then
  2474.  
  2475. elseif _G.SelectToolWeapon == "" and v then
  2476.  
  2477. else
  2478. _G.AutoRengoku = v
  2479. end
  2480. end)
  2481. spawn(function()
  2482. while wait() do
  2483. if _G.AutoRengoku and New_World then
  2484. if game.Players.LocalPlayer.Backpack:FindFirstChild("Hidden Key") or game.Players.LocalPlayer.Character:FindFirstChild("Hidden Key") then
  2485. EquipWeapon("Hidden Key")
  2486. if (CFrame.new(6571.81885, 296.689758, -6966.76514).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  2487. Farmtween = toTarget(CFrame.new(6571.81885, 296.689758, -6966.76514).Position,CFrame.new(6571.81885, 296.689758, -6966.76514))
  2488. elseif (CFrame.new(6571.81885, 296.689758, -6966.76514).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2489. if Farmtween then
  2490. Farmtween:Stop()
  2491. end
  2492. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(6571.81885, 296.689758, -6966.76514, 0.825126112, 8.412257e-10, 0.564948559, -2.42370835e-08, 1, 3.39100339e-08, -0.564948559, -4.16727595e-08, 0.825126112)
  2493. end
  2494. elseif game.Workspace.Enemies:FindFirstChild("Snow Lurker [Lv. 1375]") then
  2495. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  2496. if _G.AutoRengoku and v.Name == "Snow Lurker [Lv. 1375]" and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  2497. repeat wait()
  2498. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  2499. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  2500. StatrMagnetRengoku = false
  2501. elseif (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2502. if Farmtween then
  2503. Farmtween:Stop()
  2504. end
  2505. PosMonRengoku = v.HumanoidRootPart.CFrame
  2506. EquipWeapon(SelectToolWeapon)
  2507. Usefastattack = true
  2508. StatrMagnetRengoku = true
  2509. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  2510. local args = {
  2511. [1] = "Buso"
  2512. }
  2513. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  2514. end
  2515. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 10, 10)
  2516. game:GetService'VirtualUser':CaptureController()
  2517. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  2518. end
  2519. until game.Players.LocalPlayer.Backpack:FindFirstChild("Hidden Key") or _G.AutoRengoku == false or not v.Parent or v.Humanoid.Health <= 0
  2520. StatrMagnetRengoku = false
  2521. Usefastattack = false
  2522. if (CFrame.new(5518.00684, 60.5559731, -6828.80518).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  2523. Farmtween = toTarget(CFrame.new(5518.00684, 60.5559731, -6828.80518).Position,CFrame.new(5518.00684, 60.5559731, -6828.80518))
  2524. elseif (CFrame.new(5518.00684, 60.5559731, -6828.80518).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2525. if Farmtween then
  2526. Farmtween:Stop()
  2527. end
  2528. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(5518.00684, 60.5559731, -6828.80518, 0.825126112, 8.412257e-10, 0.564948559, -2.42370835e-08, 1, 3.39100339e-08, -0.564948559, -4.16727595e-08, 0.825126112)
  2529. end
  2530. end
  2531. end
  2532. else
  2533. StatrMagnetRengoku = false
  2534. if (CFrame.new(5518.00684, 60.5559731, -6828.80518).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  2535. Farmtween = toTarget(CFrame.new(5518.00684, 60.5559731, -6828.80518).Position,CFrame.new(5518.00684, 60.5559731, -6828.80518))
  2536. elseif (CFrame.new(5518.00684, 60.5559731, -6828.80518).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2537. if Farmtween then
  2538. Farmtween:Stop()
  2539. end
  2540. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =CFrame.new(5518.00684, 60.5559731, -6828.80518, -0.650781393, -3.64292951e-08, 0.759265184, -4.07668654e-09, 1, 4.44854642e-08, -0.759265184, 2.58550248e-08, -0.650781393)
  2541. end
  2542. end
  2543. end
  2544. end
  2545. end)
  2546. Auto:Seperator("Sea 3")
  2547. Auto:Toggle("ออโต้เอนมะตีไห้คบ30ตัว",false,function(v)
  2548. if not Three_World then
  2549.  
  2550. else
  2551. _G.AutoYama = v
  2552. end
  2553. end)
  2554. Auto:Toggle("Auto Enma/Yama HOP",false,function(v)
  2555. if not Three_World then
  2556.  
  2557. else
  2558. _G.AutoYama = v
  2559. _G.AutoYamaHOP = v
  2560. end
  2561. end)
  2562. spawn(function()
  2563. while wait() do
  2564. if _G.AutoYama and Three_World then
  2565. if game:GetService("ReplicatedStorage").Remotes["CommF_"]:InvokeServer("EliteHunter", "Progress") < 30 then
  2566. if game.Players.LocalPlayer.PlayerGui.Main.Quest.Visible == true then
  2567. if string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Diablo") or string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Urban") or string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Deandre") then
  2568. for i,v in pairs(game.ReplicatedStorage:GetChildren()) do
  2569. if string.find(v.Name,"Diablo") then
  2570. YemaTween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  2571. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 250 then
  2572. if YemaTween then
  2573. YemaTween:Stop()
  2574. end
  2575. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame
  2576. end
  2577. end
  2578. if string.find(v.Name,"Urban") then
  2579. YemaTween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  2580. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 250 then
  2581. if YemaTween then
  2582. YemaTween:Stop()
  2583. end
  2584. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame
  2585. end
  2586. end
  2587. if string.find(v.Name,"Deandre") then
  2588. YemaTween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  2589. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 250 then
  2590. if YemaTween then
  2591. YemaTween:Stop()
  2592. end
  2593. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame
  2594. end
  2595. end
  2596. end
  2597. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  2598. if _G.AutoYama and string.find(v.Name,"Diablo") and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  2599. repeat wait()
  2600. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  2601. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2602. if Farmtween then
  2603. Farmtween:Stop()
  2604. end
  2605. EquipWeapon(SelectToolWeapon)
  2606. Usefastattack = true
  2607. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  2608. local args = {
  2609. [1] = "Buso"
  2610. }
  2611. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  2612. end
  2613. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 30, 0)
  2614. game:GetService'VirtualUser':CaptureController()
  2615. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  2616. end
  2617. until not _G.AutoYama or not v.Parent or v.Humanoid.Health <= 0
  2618. Usefastattack = false
  2619. end
  2620. if _G.AutoYama and string.find(v.Name,"Urban") and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  2621. repeat wait()
  2622. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  2623. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2624. if Farmtween then
  2625. Farmtween:Stop()
  2626. end
  2627. EquipWeapon(SelectToolWeapon)
  2628. Usefastattack = true
  2629. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  2630. local args = {
  2631. [1] = "Buso"
  2632. }
  2633. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  2634. end
  2635. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 30, 0)
  2636. game:GetService'VirtualUser':CaptureController()
  2637. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  2638. end
  2639. until not _G.AutoYama or not v.Parent or v.Humanoid.Health <= 0
  2640. Usefastattack = false
  2641. end
  2642. if _G.AutoYama and string.find(v.Name,"Deandre") and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  2643. repeat wait()
  2644. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  2645. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2646. if Farmtween then
  2647. Farmtween:Stop()
  2648. end
  2649. EquipWeapon(SelectToolWeapon)
  2650. Usefastattack = true
  2651. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  2652. local args = {
  2653. [1] = "Buso"
  2654. }
  2655. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  2656. end
  2657. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 30, 0)
  2658. game:GetService'VirtualUser':CaptureController()
  2659. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  2660. end
  2661. until not _G.AutoYama or not v.Parent or v.Humanoid.Health <= 0
  2662. Usefastattack = false
  2663. end
  2664. end
  2665. else
  2666. local string_1 = "EliteHunter";
  2667. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  2668. Target:InvokeServer(string_1);
  2669. end
  2670. else
  2671. if _G.AutoYamaHOP and game:GetService("ReplicatedStorage").Remotes["CommF_"]:InvokeServer("EliteHunter") == "I don't have anything for you right now. Come back later." then
  2672. local PlaceID = game.PlaceId
  2673. local AllIDs = {}
  2674. local foundAnything = ""
  2675. local actualHour = os.date("!*t").hour
  2676. local Deleted = false
  2677. function TPReturner()
  2678. local Site;
  2679. if foundAnything == "" then
  2680. Site = game.HttpService:JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. PlaceID .. '/servers/Public?sortOrder=Asc&limit=100'))
  2681. else
  2682. Site = game.HttpService:JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. PlaceID .. '/servers/Public?sortOrder=Asc&limit=100&cursor=' .. foundAnything))
  2683. end
  2684. local ID = ""
  2685. if Site.nextPageCursor and Site.nextPageCursor ~= "null" and Site.nextPageCursor ~= nil then
  2686. foundAnything = Site.nextPageCursor
  2687. end
  2688. local num = 0;
  2689. for i,v in pairs(Site.data) do
  2690. local Possible = true
  2691. ID = tostring(v.id)
  2692. if tonumber(v.maxPlayers) > tonumber(v.playing) then
  2693. for _,Existing in pairs(AllIDs) do
  2694. if num ~= 0 then
  2695. if ID == tostring(Existing) then
  2696. Possible = false
  2697. end
  2698. else
  2699. if tonumber(actualHour) ~= tonumber(Existing) then
  2700. local delFile = pcall(function()
  2701. -- delfile("NotSameServers.json")
  2702. AllIDs = {}
  2703. table.insert(AllIDs, actualHour)
  2704. end)
  2705. end
  2706. end
  2707. num = num + 1
  2708. end
  2709. if Possible == true then
  2710. table.insert(AllIDs, ID)
  2711. wait()
  2712. pcall(function()
  2713. -- writefile("NotSameServers.json", game:GetService('HttpService'):JSONEncode(AllIDs))
  2714. wait()
  2715. game:GetService("TeleportService"):TeleportToPlaceInstance(PlaceID, ID, game.Players.LocalPlayer)
  2716. end)
  2717. wait(1)
  2718. end
  2719. end
  2720. end
  2721. end
  2722. function Teleport()
  2723. while wait() do
  2724. pcall(function()
  2725. TPReturner()
  2726. if foundAnything ~= "" then
  2727. TPReturner()
  2728. end
  2729. end)
  2730. end
  2731. end
  2732. Teleport()
  2733. else
  2734. local string_1 = "EliteHunter";
  2735. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  2736. Target:InvokeServer(string_1);
  2737. end
  2738. end
  2739. else
  2740. TweenYema = toTarget(game.Workspace.Map.Waterfall.SealedKatana.Handle.Position,game.Workspace.Map.Waterfall.SealedKatana.Handle.CFrame)
  2741. if (game.Workspace.Map.Waterfall.SealedKatana.Handle.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2742. if TweenYema then
  2743. TweenYema:Stop()
  2744. end
  2745. if game.Workspace.Enemies:FindFirstChild("Ghost [Lv. 1500]") then
  2746. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  2747. if _G.AutoYama and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 and v.Name == "Ghost [Lv. 1500]" then
  2748. repeat wait()
  2749. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  2750. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  2751. elseif (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2752. if Farmtween then
  2753. Farmtween:Stop()
  2754. end
  2755. EquipWeapon(SelectToolWeapon)
  2756. Usefastattack = true
  2757. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  2758. local args = {
  2759. [1] = "Buso"
  2760. }
  2761. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  2762. end
  2763. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 30, 0)
  2764. game:GetService'VirtualUser':CaptureController()
  2765. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  2766. end
  2767. until not _G.AutoYama or not v.Parent or v.Humanoid.Health <= 0
  2768. Usefastattack = false
  2769. end
  2770. end
  2771. else
  2772. if TweenYema then
  2773. TweenYema:Stop()
  2774. end
  2775. fireclickdetector(game.Workspace.Map.Waterfall.SealedKatana.Handle.ClickDetector)
  2776. end
  2777. end
  2778. end
  2779. end
  2780. end
  2781. end)
  2782. Auto:Toggle("ออโต้จุดไฟทูชิตะเข้าประตูแล้วเปิด",false,function(v)
  2783. if not Three_World then
  2784.  
  2785. else
  2786. _G.HolyTorch = v
  2787. end
  2788. end)
  2789.  
  2790. spawn(function()
  2791. while wait() do
  2792. if _G.HolyTorch and Three_World then
  2793. if game.ReplicatedStorage:FindFirstChild("rip_indra True Form [Lv. 5000] [Raid Boss]") or game.Workspace.Enemies:FindFirstChild("rip_indra True Form [Lv. 5000] [Raid Boss]") and game:GetService("Workspace").Map.Turtle.TushitaGate.TushitaGate.Transparency == 1 then
  2794. if game.Players.LocalPlayer.Backpack:FindFirstChild("Holy Torch") then
  2795. EquipWeapon("Holy Torch")
  2796. elseif game.Players.LocalPlayer.Character:FindFirstChild("Holy Torch") then
  2797. if game:GetService("Workspace").Map.Turtle.QuestTorches.Torch1.Particles.Main.Enabled ~= true then
  2798. if (game:GetService("Workspace").Map.Turtle.QuestTorches.Torch1.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  2799. HolyTorchtween = toTarget(game:GetService("Workspace").Map.Turtle.QuestTorches.Torch1.Position,game:GetService("Workspace").Map.Turtle.QuestTorches.Torch1.CFrame)
  2800. elseif (game:GetService("Workspace").Map.Turtle.QuestTorches.Torch1.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2801. if HolyTorchtween then
  2802. HolyTorchtween:Stop()
  2803. end
  2804. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Map.Turtle.QuestTorches.Torch1.CFrame
  2805. end
  2806. elseif game:GetService("Workspace").Map.Turtle.QuestTorches.Torch2.Particles.Main.Enabled ~= true then
  2807. if (game:GetService("Workspace").Map.Turtle.QuestTorches.Torch2.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  2808. HolyTorchtween = toTarget(game:GetService("Workspace").Map.Turtle.QuestTorches.Torch2.Position,game:GetService("Workspace").Map.Turtle.QuestTorches.Torch2.CFrame)
  2809. elseif (game:GetService("Workspace").Map.Turtle.QuestTorches.Torch2.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2810. if HolyTorchtween then
  2811. HolyTorchtween:Stop()
  2812. end
  2813. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Map.Turtle.QuestTorches.Torch2.CFrame
  2814. end
  2815. elseif game:GetService("Workspace").Map.Turtle.QuestTorches.Torch3.Particles.Main.Enabled ~= true then
  2816. if (game:GetService("Workspace").Map.Turtle.QuestTorches.Torch3.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  2817. HolyTorchtween = toTarget(game:GetService("Workspace").Map.Turtle.QuestTorches.Torch3.Position,game:GetService("Workspace").Map.Turtle.QuestTorches.Torch3.CFrame)
  2818. elseif (game:GetService("Workspace").Map.Turtle.QuestTorches.Torch3.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2819. if HolyTorchtween then
  2820. HolyTorchtween:Stop()
  2821. end
  2822. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Map.Turtle.QuestTorches.Torch3.CFrame
  2823. end
  2824. elseif game:GetService("Workspace").Map.Turtle.QuestTorches.Torch4.Particles.Main.Enabled ~= true then
  2825. if (game:GetService("Workspace").Map.Turtle.QuestTorches.Torch4.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  2826. HolyTorchtween = toTarget(game:GetService("Workspace").Map.Turtle.QuestTorches.Torch4.Position,game:GetService("Workspace").Map.Turtle.QuestTorches.Torch4.CFrame)
  2827. elseif (game:GetService("Workspace").Map.Turtle.QuestTorches.Torch4.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2828. if HolyTorchtween then
  2829. HolyTorchtween:Stop()
  2830. end
  2831. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Map.Turtle.QuestTorches.Torch4.CFrame
  2832. end
  2833. elseif game:GetService("Workspace").Map.Turtle.QuestTorches.Torch5.Particles.Main.Enabled ~= true then
  2834. if (game:GetService("Workspace").Map.Turtle.QuestTorches.Torch5.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  2835. HolyTorchtween = toTarget(game:GetService("Workspace").Map.Turtle.QuestTorches.Torch5.Position,game:GetService("Workspace").Map.Turtle.QuestTorches.Torch5.CFrame)
  2836. elseif (game:GetService("Workspace").Map.Turtle.QuestTorches.Torch5.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2837. if HolyTorchtween then
  2838. HolyTorchtween:Stop()
  2839. end
  2840. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Map.Turtle.QuestTorches.Torch5.CFrame
  2841. end
  2842. end
  2843. else
  2844. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Map.Waterfall.SecretRoom.Room.Door.Door.Hitbox.CFrame
  2845. end
  2846. end
  2847. end
  2848. end
  2849. end)
  2850. Auto:Toggle("ตีอิหลิด",false,function(a)
  2851. if Three_World then
  2852. _G.AutoEliteHunter = a
  2853. else
  2854.  
  2855. end
  2856. end)
  2857. Auto:Toggle("ตีอิหลิดย้ายเซิฟ",false,function(a)
  2858. if Three_World then
  2859. _G.AutoEliteHunter = a
  2860. _G.AutoEliteHunterHOP = a
  2861. else
  2862.  
  2863. end
  2864. end)
  2865. spawn(function()
  2866. while wait() do
  2867. if _G.AutoEliteHunter and Three_World then
  2868. if game.Players.LocalPlayer.PlayerGui.Main.Quest.Visible == true then
  2869. if string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Diablo") or string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Urban") or string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Deandre") then
  2870. for i,v in pairs(game.ReplicatedStorage:GetChildren()) do
  2871. if string.find(v.Name,"Diablo") then
  2872. EliteHunter = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  2873. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 250 then
  2874. if EliteHunter then
  2875. EliteHunter:Stop()
  2876. end
  2877. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame
  2878. end
  2879. end
  2880. if string.find(v.Name,"Urban") then
  2881. EliteHunter = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  2882. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 250 then
  2883. if EliteHunter then
  2884. EliteHunter:Stop()
  2885. end
  2886. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame
  2887. end
  2888. end
  2889. if string.find(v.Name,"Deandre") then
  2890. EliteHunter = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  2891. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 250 then
  2892. if EliteHunter then
  2893. EliteHunter:Stop()
  2894. end
  2895. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame
  2896. end
  2897. end
  2898. end
  2899. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  2900. if _G.AutoEliteHunter and string.find(v.Name,"Diablo") and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  2901. repeat wait()
  2902. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  2903. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  2904. elseif (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2905. if Farmtween then
  2906. Farmtween:Stop()
  2907. end
  2908. EquipWeapon(SelectToolWeapon)
  2909. Usefastattack = true
  2910. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  2911. local args = {
  2912. [1] = "Buso"
  2913. }
  2914. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  2915. end
  2916. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 30, 0)
  2917. game:GetService'VirtualUser':CaptureController()
  2918. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  2919. end
  2920. until not _G.AutoEliteHunter or not v.Parent or v.Humanoid.Health <= 0
  2921. Usefastattack = false
  2922. end
  2923. if _G.AutoEliteHunter and string.find(v.Name,"Urban") and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  2924. repeat wait()
  2925. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  2926. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  2927. elseif (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2928. if Farmtween then
  2929. Farmtween:Stop()
  2930. end
  2931. EquipWeapon(SelectToolWeapon)
  2932. Usefastattack = true
  2933. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  2934. local args = {
  2935. [1] = "Buso"
  2936. }
  2937. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  2938. end
  2939. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 30, 0)
  2940. game:GetService'VirtualUser':CaptureController()
  2941. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  2942. end
  2943. until not _G.AutoEliteHunter or not v.Parent or v.Humanoid.Health <= 0
  2944. Usefastattack = false
  2945. end
  2946. if _G.AutoEliteHunter and string.find(v.Name,"Deandre") and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  2947. repeat wait()
  2948. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  2949. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  2950. if Farmtween then
  2951. Farmtween:Stop()
  2952. end
  2953. EquipWeapon(SelectToolWeapon)
  2954. Usefastattack = true
  2955. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  2956. local args = {
  2957. [1] = "Buso"
  2958. }
  2959. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  2960. end
  2961. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 30, 0)
  2962. game:GetService'VirtualUser':CaptureController()
  2963. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  2964. end
  2965. until not _G.AutoEliteHunter or not v.Parent or v.Humanoid.Health <= 0
  2966. Usefastattack = false
  2967. end
  2968. end
  2969. else
  2970. if _G.AutoEliteHunterHOP and game:GetService("ReplicatedStorage").Remotes["CommF_"]:InvokeServer("EliteHunter") == "I don't have anything for you right now. Come back later." then
  2971. local PlaceID = game.PlaceId
  2972. local AllIDs = {}
  2973. local foundAnything = ""
  2974. local actualHour = os.date("!*t").hour
  2975. local Deleted = false
  2976. function TPReturner()
  2977. local Site;
  2978. if foundAnything == "" then
  2979. Site = game.HttpService:JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. PlaceID .. '/servers/Public?sortOrder=Asc&limit=100'))
  2980. else
  2981. Site = game.HttpService:JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. PlaceID .. '/servers/Public?sortOrder=Asc&limit=100&cursor=' .. foundAnything))
  2982. end
  2983. local ID = ""
  2984. if Site.nextPageCursor and Site.nextPageCursor ~= "null" and Site.nextPageCursor ~= nil then
  2985. foundAnything = Site.nextPageCursor
  2986. end
  2987. local num = 0;
  2988. for i,v in pairs(Site.data) do
  2989. local Possible = true
  2990. ID = tostring(v.id)
  2991. if tonumber(4) > tonumber(v.playing) then
  2992. for _,Existing in pairs(AllIDs) do
  2993. if num ~= 0 then
  2994. if ID == tostring(Existing) then
  2995. Possible = false
  2996. end
  2997. else
  2998. if tonumber(actualHour) ~= tonumber(Existing) then
  2999. local delFile = pcall(function()
  3000. -- delfile("NotSameServers.json")
  3001. AllIDs = {}
  3002. table.insert(AllIDs, actualHour)
  3003. end)
  3004. end
  3005. end
  3006. num = num + 1
  3007. end
  3008. if Possible == true then
  3009. table.insert(AllIDs, ID)
  3010. wait()
  3011. pcall(function()
  3012. -- writefile("NotSameServers.json", game:GetService('HttpService'):JSONEncode(AllIDs))
  3013. wait()
  3014. game:GetService("TeleportService"):TeleportToPlaceInstance(PlaceID, ID, game.Players.LocalPlayer)
  3015. end)
  3016. wait(1)
  3017. end
  3018. end
  3019. end
  3020. end
  3021. function Teleport()
  3022. while wait() do
  3023. pcall(function()
  3024. TPReturner()
  3025. if foundAnything ~= "" then
  3026. TPReturner()
  3027. end
  3028. end)
  3029. end
  3030. end
  3031. Teleport()
  3032. else
  3033. local string_1 = "EliteHunter";
  3034. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  3035. Target:InvokeServer(string_1);
  3036. end
  3037. end
  3038. else
  3039. if _G.AutoEliteHunterHOP and game:GetService("ReplicatedStorage").Remotes["CommF_"]:InvokeServer("EliteHunter") == "I don't have anything for you right now. Come back later." then
  3040. local PlaceID = game.PlaceId
  3041. local AllIDs = {}
  3042. local foundAnything = ""
  3043. local actualHour = os.date("!*t").hour
  3044. local Deleted = false
  3045. function TPReturner()
  3046. local Site;
  3047. if foundAnything == "" then
  3048. Site = game.HttpService:JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. PlaceID .. '/servers/Public?sortOrder=Asc&limit=100'))
  3049. else
  3050. Site = game.HttpService:JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. PlaceID .. '/servers/Public?sortOrder=Asc&limit=100&cursor=' .. foundAnything))
  3051. end
  3052. local ID = ""
  3053. if Site.nextPageCursor and Site.nextPageCursor ~= "null" and Site.nextPageCursor ~= nil then
  3054. foundAnything = Site.nextPageCursor
  3055. end
  3056. local num = 0;
  3057. for i,v in pairs(Site.data) do
  3058. local Possible = true
  3059. ID = tostring(v.id)
  3060. if tonumber(4) > tonumber(v.playing) then
  3061. for _,Existing in pairs(AllIDs) do
  3062. if num ~= 0 then
  3063. if ID == tostring(Existing) then
  3064. Possible = false
  3065. end
  3066. else
  3067. if tonumber(actualHour) ~= tonumber(Existing) then
  3068. local delFile = pcall(function()
  3069. -- delfile("NotSameServers.json")
  3070. AllIDs = {}
  3071. table.insert(AllIDs, actualHour)
  3072. end)
  3073. end
  3074. end
  3075. num = num + 1
  3076. end
  3077. if Possible == true then
  3078. table.insert(AllIDs, ID)
  3079. wait()
  3080. pcall(function()
  3081. -- writefile("NotSameServers.json", game:GetService('HttpService'):JSONEncode(AllIDs))
  3082. wait()
  3083. game:GetService("TeleportService"):TeleportToPlaceInstance(PlaceID, ID, game.Players.LocalPlayer)
  3084. end)
  3085. wait(1)
  3086. end
  3087. end
  3088. end
  3089. end
  3090. function Teleport()
  3091. while wait() do
  3092. pcall(function()
  3093. TPReturner()
  3094. if foundAnything ~= "" then
  3095. TPReturner()
  3096. end
  3097. end)
  3098. end
  3099. end
  3100. Teleport()
  3101. else
  3102. local string_1 = "EliteHunter";
  3103. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  3104. Target:InvokeServer(string_1);
  3105. end
  3106. end
  3107. end
  3108. end
  3109. end)
  3110. Auto:Toggle("ออโต้ฮาคิสีรุ้ง",false,function(a)
  3111. if Three_World then
  3112. _G.AutoHakiRainbow = a
  3113. else
  3114.  
  3115. end
  3116. end)
  3117. spawn(function()
  3118. while wait() do
  3119. if _G.AutoHakiRainbow and Three_World then
  3120. if game.Players.LocalPlayer.PlayerGui.Main.Quest.Visible == true then
  3121. if string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Stone") or string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Island Empress") or string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Kilo Admiral") or string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Captain Elephant") or string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Beautiful Pirate") then
  3122. if string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Stone") then
  3123. if game.Workspace.Enemies:FindFirstChild("Stone [Lv. 1550] [Boss]") then
  3124. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  3125. if _G.AutoHakiRainbow and v.Name == "Stone [Lv. 1550] [Boss]" and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  3126. repeat
  3127. pcall(function() wait()
  3128. local string_1 = "HornedMan";
  3129. local string_2 = "Bet";
  3130. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  3131. Target:InvokeServer(string_1, string_2);
  3132. local string_1 = "HornedMan";
  3133. local string_2 = "Bet";
  3134. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  3135. Target:InvokeServer(string_1, string_2);
  3136. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  3137. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  3138. elseif (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  3139. if Farmtween then
  3140. Farmtween:Stop()
  3141. end
  3142. EquipWeapon(SelectToolWeapon)
  3143. Usefastattack = true
  3144. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  3145. local args = {
  3146. [1] = "Buso"
  3147. }
  3148. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  3149. end
  3150. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 30, 0)
  3151. game:GetService'VirtualUser':CaptureController()
  3152. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  3153. end
  3154. end)
  3155. until not _G.AutoHakiRainbow or not v.Parent or v.Humanoid.Health <= 0 or game.Players.LocalPlayer.PlayerGui.Main.Quest.Visible == false
  3156. Usefastattack = true
  3157. end
  3158. end
  3159. else
  3160. if (CFrame.new(-1134, 40, 6877).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 250 then
  3161. HakiRainbowTween = toTarget(CFrame.new(-1134, 40, 6877).Position,CFrame.new(-1134, 40, 6877))
  3162. elseif (CFrame.new(-1134, 40, 6877).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 250 then
  3163. if HakiRainbowTween then
  3164. HakiRainbowTween:Stop()
  3165. end
  3166. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1134, 40, 6877)
  3167. end
  3168. end
  3169. elseif string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Island Empress") then
  3170. if game.Workspace.Enemies:FindFirstChild("Island Empress [Lv. 1675] [Boss]") then
  3171. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  3172. if _G.AutoHakiRainbow and v.Name == "Island Empress [Lv. 1675] [Boss]" and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  3173. repeat
  3174. pcall(function() wait()
  3175. local string_1 = "HornedMan";
  3176. local string_2 = "Bet";
  3177. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  3178. Target:InvokeServer(string_1, string_2);
  3179. local string_1 = "HornedMan";
  3180. local string_2 = "Bet";
  3181. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  3182. Target:InvokeServer(string_1, string_2);
  3183. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  3184. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  3185. elseif (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  3186. if Farmtween then
  3187. Farmtween:Stop()
  3188. end
  3189. EquipWeapon(SelectToolWeapon)
  3190. Usefastattack = true
  3191. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  3192. local args = {
  3193. [1] = "Buso"
  3194. }
  3195. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  3196. end
  3197. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 30, 0)
  3198. game:GetService'VirtualUser':CaptureController()
  3199. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  3200. end
  3201. end)
  3202. until not _G.AutoHakiRainbow or not v.Parent or v.Humanoid.Health <= 0 or game.Players.LocalPlayer.PlayerGui.Main.Quest.Visible == false
  3203. Usefastattack = true
  3204. end
  3205. end
  3206. else
  3207. if (CFrame.new(5614, 603, 339).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 250 then
  3208. HakiRainbowTween = toTarget(CFrame.new(5614, 603, 339).Position,CFrame.new(5614, 603, 339))
  3209. elseif (CFrame.new(5614, 603, 339).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 250 then
  3210. if HakiRainbowTween then
  3211. HakiRainbowTween:Stop()
  3212. end
  3213. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(5614, 603, 339)
  3214. end
  3215. end
  3216. elseif string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Kilo Admiral") then
  3217. if game.Workspace.Enemies:FindFirstChild("Kilo Admiral [Lv. 1750] [Boss]") then
  3218. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  3219. if _G.AutoHakiRainbow and v.Name == "Kilo Admiral [Lv. 1750] [Boss]" and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  3220. repeat
  3221. pcall(function() wait()
  3222. local string_1 = "HornedMan";
  3223. local string_2 = "Bet";
  3224. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  3225. Target:InvokeServer(string_1, string_2);
  3226. local string_1 = "HornedMan";
  3227. local string_2 = "Bet";
  3228. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  3229. Target:InvokeServer(string_1, string_2);
  3230. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  3231. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  3232. elseif (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  3233. if Farmtween then
  3234. Farmtween:Stop()
  3235. end
  3236. EquipWeapon(SelectToolWeapon)
  3237. Usefastattack = true
  3238. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  3239. local args = {
  3240. [1] = "Buso"
  3241. }
  3242. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  3243. end
  3244. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 30, 0)
  3245. game:GetService'VirtualUser':CaptureController()
  3246. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  3247. end
  3248. end)
  3249. until not _G.AutoHakiRainbow or not v.Parent or v.Humanoid.Health <= 0 or game.Players.LocalPlayer.PlayerGui.Main.Quest.Visible == false
  3250. Usefastattack = true
  3251. end
  3252. end
  3253. else
  3254. if (CFrame.new(2879, 433, -7090).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 250 then
  3255. HakiRainbowTween = toTarget(CFrame.new(2879, 433, -7090).Position,CFrame.new(2879, 433, -7090))
  3256. elseif (CFrame.new(2879, 433, -7090).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 250 then
  3257. if HakiRainbowTween then
  3258. HakiRainbowTween:Stop()
  3259. end
  3260. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(2879, 433, -7090)
  3261. end
  3262. end
  3263. elseif string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Captain Elephant") then
  3264. if game.Workspace.Enemies:FindFirstChild("Captain Elephant [Lv. 1875] [Boss]") then
  3265. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  3266. if _G.AutoHakiRainbow and v.Name == "Captain Elephant [Lv. 1875] [Boss]" and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  3267. repeat
  3268. pcall(function() wait()
  3269. local string_1 = "HornedMan";
  3270. local string_2 = "Bet";
  3271. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  3272. Target:InvokeServer(string_1, string_2);
  3273. local string_1 = "HornedMan";
  3274. local string_2 = "Bet";
  3275. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  3276. Target:InvokeServer(string_1, string_2);
  3277. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  3278. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  3279. elseif (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  3280. if Farmtween then
  3281. Farmtween:Stop()
  3282. end
  3283. EquipWeapon(SelectToolWeapon)
  3284. Usefastattack = true
  3285. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  3286. local args = {
  3287. [1] = "Buso"
  3288. }
  3289. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  3290. end
  3291. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 30, 0)
  3292. game:GetService'VirtualUser':CaptureController()
  3293. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  3294. end
  3295. end)
  3296. until not _G.AutoHakiRainbow or not v.Parent or v.Humanoid.Health <= 0 or game.Players.LocalPlayer.PlayerGui.Main.Quest.Visible == false
  3297. Usefastattack = true
  3298. end
  3299. end
  3300. else
  3301. if (CFrame.new(-13348, 406, -8574).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 250 then
  3302. HakiRainbowTween = toTarget(CFrame.new(-13348, 406, -8574).Position,CFrame.new(-13348, 406, -8574))
  3303. elseif (CFrame.new(-13348, 406, -8574).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 250 then
  3304. if HakiRainbowTween then
  3305. HakiRainbowTween:Stop()
  3306. end
  3307. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-13348, 406, -8574)
  3308. end
  3309. end
  3310. elseif string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Beautiful Pirate") then
  3311. if game.Workspace.Enemies:FindFirstChild("Beautiful Pirate [Lv. 1950] [Boss]") then
  3312. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  3313. if _G.AutoHakiRainbow and v.Name == "Beautiful Pirate [Lv. 1950] [Boss]" and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  3314. repeat
  3315. pcall(function() wait()
  3316. local string_1 = "HornedMan";
  3317. local string_2 = "Bet";
  3318. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  3319. Target:InvokeServer(string_1, string_2);
  3320. local string_1 = "HornedMan";
  3321. local string_2 = "Bet";
  3322. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  3323. Target:InvokeServer(string_1, string_2);
  3324. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  3325. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  3326. elseif (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  3327. if Farmtween then
  3328. Farmtween:Stop()
  3329. end
  3330. EquipWeapon(SelectToolWeapon)
  3331. Usefastattack = true
  3332. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  3333. local args = {
  3334. [1] = "Buso"
  3335. }
  3336. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  3337. end
  3338. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 30, 0)
  3339. game:GetService'VirtualUser':CaptureController()
  3340. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  3341. end
  3342. end)
  3343. until not _G.AutoHakiRainbow or not v.Parent or v.Humanoid.Health <= 0 or game.Players.LocalPlayer.PlayerGui.Main.Quest.Visible == false
  3344. Usefastattack = true
  3345. end
  3346. end
  3347. else
  3348. if (CFrame.new(5206, 23, -80).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 250 then
  3349. HakiRainbowTween = toTarget(CFrame.new(5206, 23, -80).Position,CFrame.new(5206, 23, -80))
  3350. elseif (CFrame.new(5206, 23, -80).Position - game:GetService("Players").LocalPlayer.Character:WaitForChild("HumanoidRootPart").Position).magnitude > 20000 then
  3351. if HakiRainbowTween then
  3352. HakiRainbowTween:Stop()
  3353. end
  3354. local TouchInterest = game:GetService("Workspace").Map.Turtle.Entrance.Door.BossDoor.Hitbox
  3355. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = TouchInterest.CFrame
  3356. elseif (CFrame.new(5206, 23, -80).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 250 then
  3357. if HakiRainbowTween then
  3358. HakiRainbowTween:Stop()
  3359. end
  3360. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(5206, 23, -80)
  3361. end
  3362. end
  3363. end
  3364. else
  3365. local string_1 = "HornedMan";
  3366. local string_2 = "Bet";
  3367. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  3368. Target:InvokeServer(string_1, string_2);
  3369. local string_1 = "HornedMan";
  3370. local string_2 = "Bet";
  3371. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  3372. Target:InvokeServer(string_1, string_2);
  3373. end
  3374. else
  3375. local string_1 = "HornedMan";
  3376. local string_2 = "Bet";
  3377. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  3378. Target:InvokeServer(string_1, string_2);
  3379. local string_1 = "HornedMan";
  3380. local string_2 = "Bet";
  3381. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  3382. Target:InvokeServer(string_1, string_2);
  3383. end
  3384. end
  3385. end
  3386. end)
  3387. Auto:Toggle("ออโต้ทําดาบบิกมัม",false,function(v)
  3388. if not Three_World then
  3389.  
  3390. else
  3391. _G.AutoBuddySwords = v
  3392. end
  3393. end)
  3394. Auto:Toggle("ออโต้ทําดาบบิกมัมย้ายเซิฟ",false,function(v)
  3395. if not Three_World then
  3396.  
  3397. else
  3398. _G.AutoBuddySwords = v
  3399. _G.AutoBuddySwordsHOP = v
  3400. end
  3401. end)
  3402. spawn(function()
  3403. while wait() do
  3404. if _G.AutoBuddySwords and Three_World then
  3405. if game.ReplicatedStorage:FindFirstChild("Cake Queen [Lv. 2175] [Boss]") or game.Workspace.Enemies:FindFirstChild("Cake Queen [Lv. 2175] [Boss]") then
  3406. if game.Workspace.Enemies:FindFirstChild("Cake Queen [Lv. 2175] [Boss]") then
  3407. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  3408. if _G.AutoBuddySwords and v.Name == "Cake Queen [Lv. 2175] [Boss]" and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  3409. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  3410. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  3411. if Farmtween then
  3412. Farmtween:Stop()
  3413. end
  3414. EquipWeapon(SelectToolWeapon)
  3415. Usefastattack = true
  3416. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  3417. local args = {
  3418. [1] = "Buso"
  3419. }
  3420. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  3421. end
  3422. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 30, 0)
  3423. game:GetService'VirtualUser':CaptureController()
  3424. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  3425. end
  3426. end
  3427. end
  3428. else
  3429. BuddySwordsTween = toTarget(CFrame.new(-821, 66, -10965).Position,CFrame.new(-821, 66, -10965))
  3430. if (CFrame.new(-821, 66, -10965).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 250 then
  3431. if BuddySwordsTween then
  3432. BuddySwordsTween:Stop()
  3433. end
  3434. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-821, 66, -10965)
  3435. end
  3436. end
  3437. elseif _G.AutoBuddySwordsHOP then
  3438. local PlaceID = game.PlaceId
  3439. local AllIDs = {}
  3440. local foundAnything = ""
  3441. local actualHour = os.date("!*t").hour
  3442. local Deleted = false
  3443. function TPReturner()
  3444. local Site;
  3445. if foundAnything == "" then
  3446. Site = game.HttpService:JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. PlaceID .. '/servers/Public?sortOrder=Asc&limit=100'))
  3447. else
  3448. Site = game.HttpService:JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. PlaceID .. '/servers/Public?sortOrder=Asc&limit=100&cursor=' .. foundAnything))
  3449. end
  3450. local ID = ""
  3451. if Site.nextPageCursor and Site.nextPageCursor ~= "null" and Site.nextPageCursor ~= nil then
  3452. foundAnything = Site.nextPageCursor
  3453. end
  3454. local num = 0;
  3455. for i,v in pairs(Site.data) do
  3456. local Possible = true
  3457. ID = tostring(v.id)
  3458. if tonumber(v.maxPlayers) > tonumber(v.playing) then
  3459. for _,Existing in pairs(AllIDs) do
  3460. if num ~= 0 then
  3461. if ID == tostring(Existing) then
  3462. Possible = false
  3463. end
  3464. else
  3465. if tonumber(actualHour) ~= tonumber(Existing) then
  3466. local delFile = pcall(function()
  3467. -- delfile("NotSameServers.json")
  3468. AllIDs = {}
  3469. table.insert(AllIDs, actualHour)
  3470. end)
  3471. end
  3472. end
  3473. num = num + 1
  3474. end
  3475. if Possible == true then
  3476. table.insert(AllIDs, ID)
  3477. wait()
  3478. pcall(function()
  3479. -- writefile("NotSameServers.json", game:GetService('HttpService'):JSONEncode(AllIDs))
  3480. wait()
  3481. game:GetService("TeleportService"):TeleportToPlaceInstance(PlaceID, ID, game.Players.LocalPlayer)
  3482. end)
  3483. wait(1)
  3484. end
  3485. end
  3486. end
  3487. end
  3488. function Teleport()
  3489. while wait() do
  3490. pcall(function()
  3491. TPReturner()
  3492. if foundAnything ~= "" then
  3493. TPReturner()
  3494. end
  3495. end)
  3496. end
  3497. end
  3498. Teleport()
  3499. end
  3500. end
  3501. end
  3502. end)
  3503. local string_1 = "getInventoryWeapons";
  3504. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  3505. local ListInventoryWeapons = Target:InvokeServer(string_1);
  3506. Auto:Toggle("ออโต้ทําเคียว",false,function(a)
  3507. HaveHallowScythe = false
  3508. for i,v in pairs(ListInventoryWeapons) do
  3509. if v.Name == "Hallow Scythe" then
  3510. HaveHallowScythe = true
  3511. end
  3512. end
  3513. if not Three_World and a then
  3514.  
  3515. elseif HaveHallowScythe and a then
  3516.  
  3517. else
  3518. _G.AutoHallowScythe = a
  3519. end
  3520. end)
  3521. spawn(function()
  3522. while wait() do
  3523. if _G.AutoHallowScythe and Three_World then
  3524. if game.Players.LocalPlayer.Backpack:FindFirstChild("Hallow Essence") then
  3525. if _G.MainAutoFarmBone then
  3526. _G.AutoFarmBone = false
  3527. end
  3528. Questtween = toTarget(game:GetService("Workspace").Map["Haunted Castle"].Summoner.Detection.Position,game:GetService("Workspace").Map["Haunted Castle"].Summoner.Detection.CFrame)
  3529. if (game:GetService("Workspace").Map["Haunted Castle"].Summoner.Detection.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  3530. if Questtween then
  3531. Questtween:Stop()
  3532. end
  3533. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Map["Haunted Castle"].Summoner.Detection.CFrame
  3534. end
  3535. elseif game:GetService("Workspace").Enemies:FindFirstChild("Soul Reaper [Lv. 2100] [Raid Boss]") or game.ReplicatedStorage:FindFirstChild("Soul Reaper [Lv. 2100] [Raid Boss]") then
  3536. if _G.MainAutoFarmBone then
  3537. _G.AutoFarmBone = false
  3538. end
  3539. if game:GetService("Workspace").Enemies:FindFirstChild("Soul Reaper [Lv. 2100] [Raid Boss]") then
  3540. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  3541. if _G.AutoHallowScythe and v.Name == "Soul Reaper [Lv. 2100] [Raid Boss]" and v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 then
  3542. repeat wait()
  3543. if (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 300 then
  3544. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  3545. elseif (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  3546. if Farmtween then
  3547. Farmtween:Stop()
  3548. end
  3549. PosFarmBone = v.HumanoidRootPart.CFrame
  3550. EquipWeapon(SelectToolWeapon)
  3551.  
  3552. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  3553. local args = {
  3554. [1] = "Buso"
  3555. }
  3556. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  3557. end
  3558. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 30, 0)
  3559. game:GetService('VirtualUser'):CaptureController()
  3560. game:GetService('VirtualUser'):Button1Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  3561. game:GetService('VirtualUser'):Button1Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  3562. end
  3563. until not _G.AutoHallowScythe or not v.Parent or v.Humanoid.Health <= 0
  3564.  
  3565. end
  3566. end
  3567. else
  3568. Questtween = toTarget(CFrame.new(-9521, 316, 6684).Position,CFrame.new(-9521, 316, 6684))
  3569. if (CFrame.new(-9521, 316, 6684).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  3570. if Questtween then
  3571. Questtween:Stop()
  3572. end
  3573. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-9521, 316, 6684)
  3574. end
  3575. end
  3576. else
  3577. if _G.MainAutoFarmBone then
  3578. _G.AutoFarmBone = true
  3579. end
  3580. local string_1 = "Bones";
  3581. local string_2 = "Buy";
  3582. local number_1 = 1;
  3583. local number_2 = 1;
  3584. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  3585. Target:InvokeServer(string_1, string_2, number_1, number_2);
  3586. end
  3587. end
  3588. end
  3589. end)
  3590.  
  3591. -- Stats
  3592.  
  3593. Stats:Toggle("Melee",false,function(Value)
  3594. melee = Value
  3595. end)
  3596. Stats:Toggle("Defense",false,function(value)
  3597. defense = value
  3598. end)
  3599. Stats:Toggle("Sword",false,function(value)
  3600. sword = value
  3601. end)
  3602. Stats:Toggle("Gun",false,function(value)
  3603. gun = value
  3604. end)
  3605. Stats:Toggle("Devil Fruit",false,function(value)
  3606. demonfruit = value
  3607. end)
  3608.  
  3609. Stats:Line()
  3610.  
  3611. PointStats = 1
  3612. Stats:Slider("Point",1,100,PointStats,nil,function(value)
  3613. PointStats = value
  3614. end)
  3615.  
  3616. spawn(function()
  3617. while wait() do
  3618. if game.Players.localPlayer.Data.Points.Value >= PointStats then
  3619. if melee then
  3620. local args = {
  3621. [1] = "AddPoint",
  3622. [2] = "Melee",
  3623. [3] = PointStats
  3624. }
  3625. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  3626. end
  3627. if defense then
  3628. local args = {
  3629. [1] = "AddPoint",
  3630. [2] = "Defense",
  3631. [3] = PointStats
  3632. }
  3633. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  3634. end
  3635. if sword then
  3636. local args = {
  3637. [1] = "AddPoint",
  3638. [2] = "Sword",
  3639. [3] = PointStats
  3640. }
  3641. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  3642. end
  3643. if gun then
  3644. local args = {
  3645. [1] = "AddPoint",
  3646. [2] = "Gun",
  3647. [3] = PointStats
  3648. }
  3649. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  3650. end
  3651. if demonfruit then
  3652. local args = {
  3653. [1] = "AddPoint",
  3654. [2] = "Demon Fruit",
  3655. [3] = PointStats
  3656. }
  3657. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  3658. end
  3659. end
  3660. end
  3661. end)
  3662.  
  3663. -- tp
  3664.  
  3665. tp:Button("วาบไปโลก1",function()
  3666. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelMain")
  3667. end)
  3668. tp:Button("วาบไปโลก2",function()
  3669. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelDressrosa")
  3670. end)
  3671. tp:Button("วาบไปโลก3",function()
  3672. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelZou")
  3673. end)
  3674.  
  3675. tp:Line()
  3676.  
  3677. tp:Button("หยุดบิน",function()
  3678. Clip = false
  3679. totarget(game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame)
  3680. end)
  3681.  
  3682. tp:Line()
  3683.  
  3684. if Old_World then
  3685. tp:Button("เกาะกังหันลม",function()
  3686. totarget(CFrame.new(1071.2832, 16.3085976, 1426.86792))
  3687. end)
  3688. tp:Button("เกาะมารีนเริ่มต้น",function()
  3689. totarget(CFrame.new(-2573.3374, 6.88881969, 2046.99817))
  3690. end)
  3691. tp:Button("เกาะกลาง",function()
  3692. totarget(CFrame.new(-655.824158, 7.88708115, 1436.67908))
  3693. end)
  3694. tp:Button("เกาะลิง",function()
  3695. totarget(CFrame.new(-1249.77222, 11.8870859, 341.356476))
  3696. end)
  3697. tp:Button("เกาะโจรสลัด",function()
  3698. totarget(CFrame.new(-1122.34998, 4.78708982, 3855.91992))
  3699. end)
  3700. tp:Button("เกาะทะเลทราย",function()
  3701. totarget(CFrame.new(1094.14587, 6.47350502, 4192.88721))
  3702. end)
  3703. tp:Button("เกาะหีมะ",function()
  3704. totarget(CFrame.new(1198.00928, 27.0074959, -1211.73376))
  3705. end)
  3706. tp:Button("เกาะทะหารเรือ",function()
  3707. totarget(CFrame.new(-4505.375, 20.687294, 4260.55908))
  3708. end)
  3709. tp:Button("โคริเสียม",function()
  3710. totarget(CFrame.new(-1428.35474, 7.38933945, -3014.37305))
  3711. end)
  3712. tp:Button("เกาะท้องฟ้าชั้น1",function()
  3713. totarget(CFrame.new(-4970.21875, 717.707275, -2622.35449))
  3714. end)
  3715. tp:Button("เกาะท้องฟ้าชั้น2",function()
  3716. totarget(CFrame.new(-4813.0249, 903.708557, -1912.69055))
  3717. end)
  3718. tp:Button("เกาะท้องฟ้าชั้น3",function()
  3719. totarget(CFrame.new(-7952.31006, 5545.52832, -320.704956))
  3720. end)
  3721. tp:Button("เกาะท้องฟ้าชั้น4",function()
  3722. totarget(CFrame.new(-7793.43896, 5607.22168, -2016.58362))
  3723. end)
  3724. tp:Button("เกาะคุก",function()
  3725. totarget(CFrame.new(4854.16455, 5.68742752, 740.194641))
  3726. end)
  3727. tp:Button("เกาะอาคาอีตู่",function()
  3728. totarget(CFrame.new(-5231.75879, 8.61593437, 8467.87695))
  3729. end)
  3730. tp:Button("เกาะใต้นํ้า",function()
  3731. totarget(CFrame.new(61163.8516, 11.7796879, 1819.78418))
  3732. end)
  3733. tp:Button("เกาะนํ้าพุ",function()
  3734. totarget(CFrame.new(5132.7124, 4.53632832, 4037.8562))
  3735. end)
  3736. tp:Button("บ้านเเฟลงกี้",function()
  3737. totarget(CFrame.new(6262.72559, 71.3003616, 3998.23047))
  3738. end)
  3739. tp:Button("ห้องเเชงคูส",function()
  3740. totarget(CFrame.new(-1442.16553, 29.8788261, -28.3547478))
  3741. end)
  3742. tp:Button("Mob Island",function()
  3743. totarget(CFrame.new(-2850.20068, 7.39224768, 5354.99268))
  3744. end)
  3745. elseif New_World then
  3746. tp:Button("Dock",function()
  3747. totarget(CFrame.new(82.9490662, 18.0710983, 2834.98779))
  3748. end)
  3749. tp:Button("Kingdom of Rose",function()
  3750. totarget(CFrame.new(-394.983521, 118.503128, 1245.8446))
  3751. end)
  3752. tp:Button("Mansion",function()
  3753. totarget(CFrame.new(-390.096313, 331.886475, 673.464966))
  3754. end)
  3755. tp:Button("Flamingo Room",function()
  3756. totarget(CFrame.new(2302.19019, 15.1778421, 663.811035))
  3757. end)
  3758. tp:Button("Green Zone",function()
  3759. totarget(CFrame.new(-2372.14697, 72.9919434, -3166.51416))
  3760. end)
  3761. tp:Button("คาเฟ่",function()
  3762. totarget(CFrame.new(-385.250916, 73.0458984, 297.388397))
  3763. end)
  3764. tp:Button("โรงงาน",function()
  3765. totarget(CFrame.new(430.42569, 210.019623, -432.504791))
  3766. end)
  3767. tp:Button("โคริเซียม",function()
  3768. totarget(CFrame.new(-1836.58191, 44.5890656, 1360.30652))
  3769. end)
  3770. tp:Button("Grave Island",function()
  3771. totarget(CFrame.new(-5411.47607, 48.8234024, -721.272522))
  3772. end)
  3773. tp:Button("Snow Mountain",function()
  3774. totarget(CFrame.new(511.825226, 401.765198, -5380.396))
  3775. end)
  3776. tp:Button("Cold Island",function()
  3777. totarget(CFrame.new(-6026.96484, 14.7461271, -5071.96338))
  3778. end)
  3779. tp:Button("Hot Island",function()
  3780. totarget(CFrame.new(-5478.39209, 15.9775667, -5246.9126))
  3781. end)
  3782. tp:Button("Cursed Ship",function()
  3783. totarget(CFrame.new(902.059143, 124.752518, 33071.8125))
  3784. end)
  3785. tp:Button("Ice Castle",function()
  3786. totarget(CFrame.new(5400.40381, 28.21698, -6236.99219))
  3787. end)
  3788. tp:Button("Forgotten Island",function()
  3789. totarget(CFrame.new(-3043.31543, 238.881271, -10191.5791))
  3790. end)
  3791. tp:Button("Usoapp Island",function()
  3792. totarget(CFrame.new(4748.78857, 8.35370827, 2849.57959))
  3793. end)
  3794. tp:Button("Minisky Island",function()
  3795. totarget(CFrame.new(-260.358917, 49325.7031, -35259.3008))
  3796. end)
  3797. elseif Three_World then
  3798. tp:Button("Port Towen",function()
  3799. totarget(CFrame.new(-610.309692, 57.8323097, 6436.33594))
  3800. end)
  3801. tp:Button("Hydra Island",function()
  3802. totarget(CFrame.new(5229.99561, 603.916565, 345.154022))
  3803. end)
  3804. tp:Button("Great Tree",function()
  3805. totarget(CFrame.new(2174.94873, 28.7312393, -6728.83154))
  3806. end)
  3807. tp:Button("Castle on the Sea",function()
  3808. totarget(CFrame.new(-5477.62842, 313.794739, -2808.4585))
  3809. end)
  3810. tp:Button("Floating Turtle",function()
  3811. totarget(CFrame.new(-10919.2998, 331.788452, -8637.57227))
  3812. end)
  3813. tp:Button("แมนชั่น",function()
  3814. totarget(CFrame.new(-12553.8125, 332.403961, -7621.91748))
  3815. end)
  3816. tp:Button("Secret Temple",function()
  3817. totarget(CFrame.new(5217.35693, 6.56511116, 1100.88159))
  3818. end)
  3819. tp:Button("ที่pvp",function()
  3820. totarget(CFrame.new(5220.28955, 72.8193436, -1450.86304))
  3821. end)
  3822. tp:Button("Beautiful Pirate Domain",function()
  3823. totarget(CFrame.new(5310.8095703125, 21.594484329224, 129.39053344727))
  3824. end)
  3825. tp:Button("Teler Park",function()
  3826. totarget(CFrame.new(-9512.3623046875, 142.13258361816, 5548.845703125))
  3827. end)
  3828. tp:Button("Peanut Island",function()
  3829. totarget(CFrame.new(-2142, 48, -10031))
  3830. end)
  3831. tp:Button("Ice Cream Island",function()
  3832. totarget(CFrame.new(-949, 59, -10907))
  3833. end)
  3834. end
  3835.  
  3836. -- Raid
  3837.  
  3838. Dungeon:Line()
  3839.  
  3840.  
  3841. Dungeon:Line()
  3842.  
  3843. Dungeon:Dropdown("Select Chips",{"Flame","Ice","Quake","Light","Dark","String","Rumble","Magma","Human: Buddha","Sand","Bird: Phoenix"},function(value)
  3844. _G.SelectChip = value
  3845. end)
  3846.  
  3847. Dungeon:Toggle("Auto Select Dungeon",_G.AutoSelectDungeon,function(value)
  3848. _G.AutoSelectDungeon = value
  3849. end)
  3850.  
  3851. spawn(function()
  3852. while wait() do
  3853. if _G.AutoSelectDungeon then
  3854. pcall(function()
  3855. if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Flame-Flame") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Flame-Flame") then
  3856. _G.SelectChip = "Flame"
  3857. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Ice-Ice") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Ice-Ice") then
  3858. _G.SelectChip = "Ice"
  3859. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Quake-Quake") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Quake-Quake") then
  3860. _G.SelectChip = "Quake"
  3861. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Light-Light") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Light-Light") then
  3862. _G.SelectChip = "Light"
  3863. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Dark-Dark") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Dark-Dark") then
  3864. _G.SelectChip = "Dark"
  3865. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("String-String") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("String-String") then
  3866. _G.SelectChip = "String"
  3867. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Rumble-Rumble") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Rumble-Rumble") then
  3868. _G.SelectChip = "Rumble"
  3869. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Magma-Magma") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Magma-Magma") then
  3870. _G.SelectChip = "Magma"
  3871. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Human-Human: Buddha Fruit") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Human-Human: Buddha Fruit") then
  3872. _G.SelectChip = "Human: Buddha"
  3873. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Sand-Sand") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Sand-Sand") then
  3874. _G.SelectChip = "Sand"
  3875. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Bird-Bird: Phoenix") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Bird-Bird: Phoenix") then
  3876. _G.SelectChip = "Bird: Phoenix"
  3877. else
  3878. _G.SelectChip = "Flame"
  3879. end
  3880. end)
  3881. end
  3882. end
  3883. end)
  3884.  
  3885. Dungeon:Toggle("Auto Buy Chip",_G.AutoBuyChip,function(value)
  3886. _G.AutoBuyChip = value
  3887. end)
  3888.  
  3889. spawn(function()
  3890. pcall(function()
  3891. while wait() do
  3892. if _G.AutoBuyChip then
  3893. if not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Special Microchip") or not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Special Microchip") then
  3894. if not game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
  3895. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("RaidsNpc", "Select", _G.SelectChip)
  3896. end
  3897. end
  3898. end
  3899. end
  3900. end)
  3901. end)
  3902.  
  3903. Dungeon:Button("Buy Chip Select",function()
  3904. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("RaidsNpc","Select",_G.SelectChip)
  3905. end)
  3906.  
  3907. Dungeon:Toggle("Kill Auraเปิดตอนลงดันลงดันเสร็จปิด", false, function(vu)
  3908. Killaura = vu
  3909. end)
  3910.  
  3911. Dungeon:Toggle("Auto Awakenr", false, function(vu)
  3912. AutoAwakener = vu
  3913. end)
  3914.  
  3915. Dungeon:Toggle("ออโต้เปลียนเกาะลงดัน", false, function(vu)
  3916. NextIsland = vu
  3917. end)
  3918.  
  3919. spawn(function()
  3920. pcall(function()
  3921. while wait(.1) do
  3922. if AutoAwakener then
  3923. local args = {
  3924. [1] = "Awakener",
  3925. [2] = "Check"
  3926. }
  3927. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  3928. local args = {
  3929. [1] = "Awakener",
  3930. [2] = "Awaken"
  3931. }
  3932. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  3933. end
  3934. end
  3935. end)
  3936. end)
  3937.  
  3938. spawn(function()
  3939. while wait() do
  3940. if Killaura or _G.AutoRaid or RaidSuperhuman then
  3941. for i,v in pairs(game.Workspace.Enemies:GetDescendants()) do
  3942. if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
  3943. pcall(function()
  3944. repeat wait(.1)
  3945. sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
  3946. v.Humanoid.Health = 0
  3947. v.HumanoidRootPart.CanCollide = false
  3948. v.HumanoidRootPart.Size = Vector3.new(50,50,50)
  3949. v.HumanoidRootPart.Transparency = 0.8
  3950. until not Killaura or not _G.AutoRaid or not RaidSuperhuman or not v.Parent or v.Humanoid.Health <= 0
  3951. end)
  3952. end
  3953. end
  3954. end
  3955. end
  3956. end)
  3957.  
  3958. spawn(function()
  3959. pcall(function()
  3960. while game:GetService("RunService").Heartbeat:wait() do
  3961. if NextIsland or RaidSuperhuman or _G.AutoRaid then
  3962. if game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Timer.Visible == true and game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 5") or game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 4") or game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 3") or game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 2") or game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
  3963. if game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 5") then
  3964. totarget(game:GetService("Workspace")["_WorldOrigin"].Locations["Island 5"].CFrame*CFrame.new(0,80,0))
  3965. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 4") then
  3966. totarget(game:GetService("Workspace")["_WorldOrigin"].Locations["Island 4"].CFrame*CFrame.new(0,80,0))
  3967. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 3") then
  3968. totarget(game:GetService("Workspace")["_WorldOrigin"].Locations["Island 3"].CFrame*CFrame.new(0,80,0))
  3969. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 2") then
  3970. totarget(game:GetService("Workspace")["_WorldOrigin"].Locations["Island 2"].CFrame*CFrame.new(0,80,0))
  3971. elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
  3972. totarget(game:GetService("Workspace")["_WorldOrigin"].Locations["Island 1"].CFrame*CFrame.new(0,80,0))
  3973. end
  3974. elseif New_World then
  3975. totarget(CFrame.new(-6438.73535, 250.645355, -4501.50684))
  3976. elseif Three_World then
  3977. totarget(CFrame.new(-5057.146484375, 314.54132080078, -2934.7995605469))
  3978. end
  3979. end
  3980. end
  3981. end)
  3982. end)
  3983.  
  3984. Dungeon:Line()
  3985.  
  3986. Dungeon:Toggle("มองคน",espplyer,function(a)
  3987. ESPPlayer = a
  3988. UpdatePlayerChams()
  3989. end)
  3990. Dungeon:Toggle("มองกล่อง",espchest,function(a)
  3991. ChestESP = a
  3992. UpdateChestChams()
  3993. end)
  3994. Dungeon:Toggle("มองผล",espdevilfruit,function(a)
  3995. DevilFruitESP = a
  3996. UpdateDevilChams()
  3997. end)
  3998. Dungeon:Toggle("มองดอกไม้",espflower,function(a)
  3999. FlowerESP = a
  4000. UpdateFlowerChams()
  4001. end)
  4002. spawn(function()
  4003. while wait() do
  4004. if FlowerESP then
  4005. UpdateFlowerChams()
  4006. end
  4007. if DevilFruitESP then
  4008. UpdateDevilChams()
  4009. end
  4010. if ChestESP then
  4011. UpdateChestChams()
  4012. end
  4013. if ESPPlayer then
  4014. UpdatePlayerChams()
  4015. end
  4016. end
  4017. end)
  4018. function isnil(thing)
  4019. return (thing == nil)
  4020. end
  4021. local function round(n)
  4022. return math.floor(tonumber(n) + 0.5)
  4023. end
  4024. Number = math.random(1, 1000000)
  4025. function UpdatePlayerChams()
  4026. for i,v in pairs(game:GetService'Players':GetChildren()) do
  4027. pcall(function()
  4028. if not isnil(v.Character) then
  4029. if ESPPlayer then
  4030. if not isnil(v.Character.Head) and not v.Character.Head:FindFirstChild('NameEsp'..Number) then
  4031. local bill = Instance.new('BillboardGui',v.Character.Head)
  4032. bill.Name = 'NameEsp'..Number
  4033. bill.ExtentsOffset = Vector3.new(0, 1, 0)
  4034. bill.Size = UDim2.new(1,200,1,30)
  4035. bill.Adornee = v.Character.Head
  4036. bill.AlwaysOnTop = true
  4037. local name = Instance.new('TextLabel',bill)
  4038. name.Font = "GothamBold"
  4039. name.FontSize = "Size14"
  4040. name.TextWrapped = true
  4041. name.Text = (v.Name ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Character.Head.Position).Magnitude/3) ..' M')
  4042. name.Size = UDim2.new(1,0,1,0)
  4043. name.TextYAlignment = 'Top'
  4044. name.BackgroundTransparency = 1
  4045. name.TextStrokeTransparency = 0.5
  4046. if v.Team == game.Players.LocalPlayer.Team then
  4047. name.TextColor3 = Color3.new(0,255,0)
  4048. else
  4049. name.TextColor3 = Color3.new(255,0,0)
  4050. end
  4051. else
  4052. 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) .. '%')
  4053. end
  4054. else
  4055. if v.Character.Head:FindFirstChild('NameEsp'..Number) then
  4056. v.Character.Head:FindFirstChild('NameEsp'..Number):Destroy()
  4057. end
  4058. end
  4059. end
  4060. end)
  4061. end
  4062. end
  4063. function UpdateChestChams()
  4064. for i,v in pairs(game.Workspace:GetChildren()) do
  4065. pcall(function()
  4066. if string.find(v.Name,"Chest") then
  4067. if ChestESP then
  4068. if string.find(v.Name,"Chest") then
  4069. if not v:FindFirstChild('NameEsp'..Number) then
  4070. local bill = Instance.new('BillboardGui',v)
  4071. bill.Name = 'NameEsp'..Number
  4072. bill.ExtentsOffset = Vector3.new(0, 1, 0)
  4073. bill.Size = UDim2.new(1,200,1,30)
  4074. bill.Adornee = v
  4075. bill.AlwaysOnTop = true
  4076. local name = Instance.new('TextLabel',bill)
  4077. name.Font = "GothamBold"
  4078. name.FontSize = "Size14"
  4079. name.TextWrapped = true
  4080. name.Size = UDim2.new(1,0,1,0)
  4081. name.TextYAlignment = 'Top'
  4082. name.BackgroundTransparency = 1
  4083. name.TextStrokeTransparency = 0.5
  4084. if v.Name == "Chest1" then
  4085. name.TextColor3 = Color3.fromRGB(109, 109, 109)
  4086. name.Text = ("Chest 1" ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  4087. end
  4088. if v.Name == "Chest2" then
  4089. name.TextColor3 = Color3.fromRGB(173, 158, 21)
  4090. name.Text = ("Chest 2" ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  4091. end
  4092. if v.Name == "Chest3" then
  4093. name.TextColor3 = Color3.fromRGB(85, 255, 255)
  4094. name.Text = ("Chest 3" ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  4095. end
  4096. else
  4097. v['NameEsp'..Number].TextLabel.Text = (v.Name ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  4098. end
  4099. end
  4100. else
  4101. if v:FindFirstChild('NameEsp'..Number) then
  4102. v:FindFirstChild('NameEsp'..Number):Destroy()
  4103. end
  4104. end
  4105. end
  4106. end)
  4107. end
  4108. end
  4109. function UpdateDevilChams()
  4110. for i,v in pairs(game.Workspace:GetChildren()) do
  4111. pcall(function()
  4112. if DevilFruitESP then
  4113. if string.find(v.Name, "Fruit") then
  4114. if not v.Handle:FindFirstChild('NameEsp'..Number) then
  4115. local bill = Instance.new('BillboardGui',v.Handle)
  4116. bill.Name = 'NameEsp'..Number
  4117. bill.ExtentsOffset = Vector3.new(0, 1, 0)
  4118. bill.Size = UDim2.new(1,200,1,30)
  4119. bill.Adornee = v.Handle
  4120. bill.AlwaysOnTop = true
  4121. local name = Instance.new('TextLabel',bill)
  4122. name.Font = "GothamBold"
  4123. name.FontSize = "Size14"
  4124. name.TextWrapped = true
  4125. name.Size = UDim2.new(1,0,1,0)
  4126. name.TextYAlignment = 'Top'
  4127. name.BackgroundTransparency = 1
  4128. name.TextStrokeTransparency = 0.5
  4129. name.TextColor3 = Color3.fromRGB(255, 0, 0)
  4130. name.Text = (v.Name ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Handle.Position).Magnitude/3) ..' M')
  4131. else
  4132. v.Handle['NameEsp'..Number].TextLabel.Text = (v.Name ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Handle.Position).Magnitude/3) ..' M')
  4133. end
  4134. end
  4135. else
  4136. if v.Handle:FindFirstChild('NameEsp'..Number) then
  4137. v.Handle:FindFirstChild('NameEsp'..Number):Destroy()
  4138. end
  4139. end
  4140. end)
  4141. end
  4142. end
  4143. function UpdateFlowerChams()
  4144. for i,v in pairs(game.Workspace:GetChildren()) do
  4145. pcall(function()
  4146. if v.Name == "Flower2" or v.Name == "Flower1" then
  4147. if FlowerESP then
  4148. if not v:FindFirstChild('NameEsp'..Number) then
  4149. local bill = Instance.new('BillboardGui',v)
  4150. bill.Name = 'NameEsp'..Number
  4151. bill.ExtentsOffset = Vector3.new(0, 1, 0)
  4152. bill.Size = UDim2.new(1,200,1,30)
  4153. bill.Adornee = v
  4154. bill.AlwaysOnTop = true
  4155. local name = Instance.new('TextLabel',bill)
  4156. name.Font = "GothamBold"
  4157. name.FontSize = "Size14"
  4158. name.TextWrapped = true
  4159. name.Size = UDim2.new(1,0,1,0)
  4160. name.TextYAlignment = 'Top'
  4161. name.BackgroundTransparency = 1
  4162. name.TextStrokeTransparency = 0.5
  4163. name.TextColor3 = Color3.fromRGB(255, 0, 0)
  4164. if v.Name == "Flower1" then
  4165. name.Text = ("Blue Flower" ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  4166. name.TextColor3 = Color3.fromRGB(0, 0, 255)
  4167. end
  4168. if v.Name == "Flower2" then
  4169. name.Text = ("Red Flower" ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  4170. name.TextColor3 = Color3.fromRGB(255, 0, 0)
  4171. end
  4172. else
  4173. v['NameEsp'..Number].TextLabel.Text = (v.Name ..' \n'.. round((game:GetService('Players').LocalPlayer.Character.Head.Position - v.Position).Magnitude/3) ..' M')
  4174. end
  4175. else
  4176. if v:FindFirstChild('NameEsp'..Number) then
  4177. v:FindFirstChild('NameEsp'..Number):Destroy()
  4178. end
  4179. end
  4180. end
  4181. end)
  4182. end
  4183. end
  4184. --
  4185. FruitList = {
  4186. "Bomb-Bomb",
  4187. "Spike-Spike",
  4188. "Chop-Chop",
  4189. "Spring-Spring",
  4190. "Kilo-Kilo",
  4191. "Spin-Spin",
  4192. "Bird: Falcon",
  4193. "Smoke-Smoke",
  4194. "Flame-Flame",
  4195. "Ice-Ice",
  4196. "Sand-Sand",
  4197. "Dark-Dark",
  4198. "Revive-Revive",
  4199. "Diamond-Diamond",
  4200. "Light-Light",
  4201. "Love-Love",
  4202. "Rubber-Rubber",
  4203. "Barrier-Barrier",
  4204. "Magma-Magma",
  4205. "Door-Door",
  4206. "Quake-Quake",
  4207. "Human-Human: Buddha",
  4208. "String-String",
  4209. "Bird-Bird: Phoenix",
  4210. "Rumble-Rumble",
  4211. "Paw-Paw",
  4212. "Gravity-Gravity",
  4213. "Dough-Dough",
  4214. "Venom-Venom",
  4215. "Shadow-Shadow",
  4216. "Control-Control",
  4217. "Soul-Soul",
  4218. "Dragon-Dragon"
  4219. }
  4220.  
  4221. _G.SelectFruit = ""
  4222. DevilFruit:Dropdown("Select Fruits Sniper",FruitList,function(value)
  4223. _G.SelectFruit = value
  4224. end)
  4225.  
  4226. DevilFruit:Toggle("ซื้อผลออโต้",_G.AutoBuyFruitSniper,function(value)
  4227. _G.AutoBuyFruitSniper = value
  4228. end)
  4229.  
  4230.  
  4231.  
  4232. DevilFruit:Dropdown("เลือกผลที่จะกิน",FruitList,function(value)
  4233. _G.SelectFruitEat = value
  4234. end)
  4235.  
  4236. DevilFruit:Toggle("ออโต้กินผล",_G.AutoEatFruit,function(value)
  4237. _G.AutoEatFruit = value
  4238. end)
  4239.  
  4240. spawn(function()
  4241. pcall(function()
  4242. while wait(.1) do
  4243. if _G.AutoEatFruit then
  4244. game:GetService("Players").LocalPlayer.Character:FindFirstChild(_G.SelectFruitEat).EatRemote:InvokeServer()
  4245. end
  4246. end
  4247. end)
  4248. end)
  4249.  
  4250. DevilFruit:Toggle("Auto Eat Fruit Hop",_G.AutoEatFruitHop,function(value)
  4251. _G.AutoEatFruitHop = value
  4252. end)
  4253.  
  4254. spawn(function()
  4255. pcall(function()
  4256. while wait(.1) do wait(10)
  4257. if _G.AutoEatFruitHop and _G.SelectFruitEat ~= nil then
  4258. if not game:GetService("Players").LocalPlayer.Character:FindFirstChild(_G.SelectFruitEat) or not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild(_G.SelectFruitEat) then
  4259. Hop()
  4260. else
  4261. game:GetService("Players").LocalPlayer.Character:FindFirstChild(_G.SelectFruitEat).EatRemote:InvokeServer()
  4262. end
  4263. end
  4264. end
  4265. end)
  4266. end)
  4267.  
  4268. spawn(function()
  4269. pcall(function()
  4270. while wait(.1) do
  4271. if _G.AutoBuyFruitSniper then
  4272. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("GetFruits")
  4273. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("PurchaseRawFruit",_G.SelectFruit)
  4274. end
  4275. end
  4276. end)
  4277. end)
  4278.  
  4279. DevilFruit:Toggle("ออโต้สุ่มผล",_G.Random_Auto,function(value)
  4280. _G.Random_Auto = value
  4281. end)
  4282.  
  4283. spawn(function()
  4284. pcall(function()
  4285. while wait(.1) do
  4286. if _G.Random_Auto then
  4287. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Cousin","Buy")
  4288. end
  4289. end
  4290. end)
  4291. end)
  4292.  
  4293. DevilFruit:Button("สุมผล",function()
  4294. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Cousin","Buy")
  4295. end)
  4296.  
  4297.  
  4298. DevilFruit:Toggle("ที้งผลออโต้",_G.DropFruit,function(value)
  4299. _G.DropFruit = value
  4300. end)
  4301.  
  4302. spawn(function()
  4303. while wait() do
  4304. if _G.DropFruit then
  4305. pcall(function()
  4306. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  4307. if string.find(v.Name, "Fruit") then
  4308. EquipWeapon(v.Name)
  4309. wait(.1)
  4310. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Dialogue.Visible == true then
  4311. game:GetService("Players").LocalPlayer.PlayerGui.Main.Dialogue.Visible = false
  4312. end
  4313. EquipWeapon(v.Name)
  4314. game:GetService("Players").LocalPlayer.Character:FindFirstChild(SelectFruit).EatRemote:InvokeServer("Drop")
  4315. end
  4316. end
  4317. for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetChildren()) do
  4318. if string.find(v.Name, "Fruit") then
  4319. EquipWeapon(v.Name)
  4320. wait(.1)
  4321. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Dialogue.Visible == true then
  4322. game:GetService("Players").LocalPlayer.PlayerGui.Main.Dialogue.Visible = false
  4323. end
  4324. EquipWeapon(v.Name)
  4325. game:GetService("Players").LocalPlayer.Character:FindFirstChild(SelectFruit).EatRemote:InvokeServer("Drop")
  4326. end
  4327. end
  4328. end)
  4329. end
  4330. end
  4331. end)
  4332.  
  4333. DevilFruit:Toggle("ออโต้เก็บผล",_G.AutoStoreFruit,function(value)
  4334. _G.AutoStoreFruit = value
  4335. end)
  4336.  
  4337. spawn(function()
  4338. pcall(function()
  4339. while wait(.1) do
  4340. if _G.AutoStoreFruit then
  4341. for i,v in pairs(FruitList) do
  4342. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StoreFruit",v)
  4343. end
  4344. end
  4345. end
  4346. end)
  4347. end)
  4348.  
  4349.  
  4350. DevilFruit:Toggle("ดึงผล",_G.BringFruit,function(value)
  4351. _G.BringFruit = value
  4352. pcall(function()
  4353. while _G.BringFruit do wait(.1)
  4354. for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
  4355. if v:IsA("Tool") then
  4356. local OldCFrame = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame
  4357. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.Handle.CFrame * CFrame.new(0,0,8)
  4358. v.Handle.CFrame = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame
  4359. wait(.1)
  4360. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = OldCFrame
  4361. end
  4362. end
  4363. end
  4364. end)
  4365. end)
  4366.  
  4367. -- Shop
  4368.  
  4369. Shop:Button("สุ่มเผ่า(3000 เงินม่วง)",function()
  4370. local args = {
  4371. [1] = "BlackbeardReward",
  4372. [2] = "Reroll",
  4373. [3] = "2"
  4374. }
  4375. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4376. end)
  4377. Shop:Button("รีเซ็ดสเเตด (2500 เงินม่วง)",function()
  4378. local args = {
  4379. [1] = "BlackbeardReward",
  4380. [2] = "Refund",
  4381. [3] = "2"
  4382. }
  4383. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4384. end)
  4385. Shop:Line()
  4386. Shop:Button("ซื้อขาซันจิv1",function()
  4387. local args = {
  4388. [1] = "BuyBlackLeg"
  4389. }
  4390. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4391. end)
  4392. Shop:Button("ซื้อขาซันจิv2",function()
  4393. local args = {
  4394. [1] = "BuyDeathStep"
  4395. }
  4396. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4397. end)
  4398. Shop:Button("ซื้อหมัดสายฟ้า",function()
  4399. local args = {
  4400. [1] = "BuyElectro"
  4401. }
  4402. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4403. end)
  4404. Shop:Button("ซื้อหมัดสายฟ้าv2",function()
  4405. local string_1 = "BuyElectricClaw";
  4406. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  4407. Target:InvokeServer(string_1);
  4408. end)
  4409. Shop:Button("Fishman Karate",function()
  4410. local args = {
  4411. [1] = "BuyFishmanKarate"
  4412. }
  4413. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4414. end)
  4415. Shop:Button("Sharkman Karate",function()
  4416. local args = {
  4417. [1] = "BuySharkmanKarate",
  4418. [2] = true
  4419. }
  4420. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4421. local args = {
  4422. [1] = "BuySharkmanKarate"
  4423. }
  4424. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4425. end)
  4426. Shop:Button("ซื้อหมัดมังกรv1",function()
  4427. local args = {
  4428. [1] = "BlackbeardReward",
  4429. [2] = "DragonClaw",
  4430. [3] = "2"
  4431. }
  4432. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4433. end)
  4434. Shop:Button("ซื้อหมัดมังกรv2",function()
  4435. local string_1 = "BuyDragonTalon";
  4436. local bool_1 = true;
  4437. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  4438. Target:InvokeServer(string_1, bool_1);
  4439. local string_1 = "BuyDragonTalon";
  4440. local Target = game:GetService("ReplicatedStorage").Remotes["CommF_"];
  4441. Target:InvokeServer(string_1);
  4442. end)
  4443. Shop:Button("ซื้อซุปเปอร์หิวเเมน",function()
  4444. local args = {
  4445. [1] = "BuySuperhuman"
  4446. }
  4447.  
  4448. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4449. end)
  4450. Shop:Line()
  4451. Shop:Button("คาคานะ [ $1,000 Beli ]",function()
  4452. local args = {
  4453. [1] = "BuyItem",
  4454. [2] = "Katana"
  4455. }
  4456. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4457. end)
  4458. Shop:Button("Cutlass [ $1,000 Beli ]",function()
  4459. local args = {
  4460. [1] = "BuyItem",
  4461. [2] = "Cutlass"
  4462. }
  4463. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4464. end)
  4465. Shop:Button("คาตานะคู่ [ $12,000 Beli ]",function()
  4466. local args = {
  4467. [1] = "BuyItem",
  4468. [2] = "Dual Katana"
  4469. }
  4470. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4471. end)
  4472. Shop:Button("Iron Mace [ $25,000 Beli ]",function()
  4473. local args = {
  4474. [1] = "BuyItem",
  4475. [2] = "Iron Mace"
  4476. }
  4477. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4478. end)
  4479. Shop:Button("คาตานะ3อัน [ $60,000 Beli ]",function()
  4480. local args = {
  4481. [1] = "BuyItem",
  4482. [2] = "Triple Katana"
  4483. }
  4484. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4485. end)
  4486. Shop:Button("Pipe [ $100,000 Beli ]",function()
  4487. local args = {
  4488. [1] = "BuyItem",
  4489. [2] = "Pipe"
  4490. }
  4491. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4492. end)
  4493. Shop:Button("Soul Cane [ $750,000 Beli ]",function()
  4494. local args = {
  4495. [1] = "BuyItem",
  4496. [2] = "Soul Cane"
  4497. }
  4498. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4499. end)
  4500. Shop:Button("Dual-Headed Blade [ $400,000 Beli ]",function()
  4501. local args = {
  4502. [1] = "BuyItem",
  4503. [2] = "Dual-Headed Blade"
  4504. }
  4505. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4506. end)
  4507. Shop:Button("Bisento [ $1,200,000 Beli ]",function()
  4508. local args = {
  4509. [1] = "BuyItem",
  4510. [2] = "Bisento"
  4511. }
  4512. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4513. end)
  4514. Shop:Button("Pole v.2 [ 5,000 Fragments )",function()
  4515. game.ReplicatedStorage.Remotes.CommF_:InvokeServer("ThunderGodTalk")
  4516. end)
  4517. Shop:Line()
  4518. Shop:Button("Slingshot [ $5,000 Beli ]",function()
  4519. local args = {
  4520. [1] = "BuyItem",
  4521. [2] = "Slingshot"
  4522. }
  4523. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4524. end)
  4525. Shop:Button("Musket [ $8,000 Beli ]",function()
  4526. local args = {
  4527. [1] = "BuyItem",
  4528. [2] = "Musket"
  4529. }
  4530. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4531. end)
  4532. Shop:Button("Flintlock [ $10,500 Beli ]",function()
  4533. local args = {
  4534. [1] = "BuyItem",
  4535. [2] = "Flintlock"
  4536. }
  4537. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4538. end)
  4539. Shop:Button("Refined Slingshot [ $30,000 Beli ]",function()
  4540. local args = {
  4541. [1] = "BuyItem",
  4542. [2] = "Refined Slingshot"
  4543. }
  4544. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4545. end)
  4546. Shop:Button("Refined Flintlock [ $65,000 Beli ]",function()
  4547. local args = {
  4548. [1] = "BuyItem",
  4549. [2] = "Refined Flintlock"
  4550. }
  4551. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4552. end)
  4553. Shop:Button("Kabucha [ 1,500 Fragments)",function()
  4554. game.ReplicatedStorage.Remotes.CommF_:InvokeServer("BlackbeardReward", "Slingshot", "2")
  4555. end)
  4556. Shop:Line()
  4557. Shop:Button("Black Cape [ $50,000 Beli ]",function()
  4558. local args = {
  4559. [1] = "BuyItem",
  4560. [2] = "Black Cape"
  4561. }
  4562. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4563. end)
  4564. Shop:Button("Swordsman Hat [ 150k Beli ]",function()
  4565. local args = {
  4566. [1] = "BuyItem",
  4567. [2] = "Swordsman Hat"
  4568. }
  4569. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4570. end)
  4571. Shop:Button("Tomoe Ring [ $500k Beli ]",function()
  4572. local args = {
  4573. [1] = "BuyItem",
  4574. [2] = "Tomoe Ring"
  4575. }
  4576. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4577. end)
  4578. Shop:Line()
  4579. Shop:Button("Race Ghoul",function()
  4580. local args = {
  4581. [1] = "Ectoplasm",
  4582. [2] = "BuyCheck",
  4583. [3] = 4
  4584. }
  4585. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4586. local args = {
  4587. [1] = "Ectoplasm",
  4588. [2] = "Change",
  4589. [3] = 4
  4590. }
  4591. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4592. end)
  4593. Shop:Button("Race Cyborg",function()
  4594. local args = {
  4595. [1] = "CyborgTrainer",
  4596. [2] = "Buy"
  4597. }
  4598. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4599. end)
  4600.  
  4601. -- Misc
  4602.  
  4603. Misc:Button("Rejoin",function()
  4604. local ts = game:GetService("TeleportService")
  4605. local p = game:GetService("Players").LocalPlayer
  4606. ts:Teleport(game.PlaceId, p)
  4607. end)
  4608. local function HttpGet(url)
  4609. return game:GetService("HttpService"):JSONDecode(htgetf(url))
  4610. end
  4611. Misc:Button("เปลียนเซิฟ",function()
  4612. local PlaceID = game.PlaceId
  4613. local AllIDs = {}
  4614. local foundAnything = ""
  4615. local actualHour = os.date("!*t").hour
  4616. local Deleted = false
  4617. function TPReturner()
  4618. local Site;
  4619. if foundAnything == "" then
  4620. Site = game.HttpService:JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. PlaceID .. '/servers/Public?sortOrder=Asc&limit=100'))
  4621. else
  4622. Site = game.HttpService:JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. PlaceID .. '/servers/Public?sortOrder=Asc&limit=100&cursor=' .. foundAnything))
  4623. end
  4624. local ID = ""
  4625. if Site.nextPageCursor and Site.nextPageCursor ~= "null" and Site.nextPageCursor ~= nil then
  4626. foundAnything = Site.nextPageCursor
  4627. end
  4628. local num = 0;
  4629. for i,v in pairs(Site.data) do
  4630. local Possible = true
  4631. ID = tostring(v.id)
  4632. if tonumber(v.maxPlayers) > tonumber(v.playing) then
  4633. for _,Existing in pairs(AllIDs) do
  4634. if num ~= 0 then
  4635. if ID == tostring(Existing) then
  4636. Possible = false
  4637. end
  4638. else
  4639. if tonumber(actualHour) ~= tonumber(Existing) then
  4640. local delFile = pcall(function()
  4641. -- delfile("NotSameServers.json")
  4642. AllIDs = {}
  4643. table.insert(AllIDs, actualHour)
  4644. end)
  4645. end
  4646. end
  4647. num = num + 1
  4648. end
  4649. if Possible == true then
  4650. table.insert(AllIDs, ID)
  4651. wait()
  4652. pcall(function()
  4653. -- writefile("NotSameServers.json", game:GetService('HttpService'):JSONEncode(AllIDs))
  4654. wait()
  4655. game:GetService("TeleportService"):TeleportToPlaceInstance(PlaceID, ID, game.Players.LocalPlayer)
  4656. end)
  4657. wait(4)
  4658. end
  4659. end
  4660. end
  4661. end
  4662. function Teleport()
  4663. while wait() do
  4664. pcall(function()
  4665. TPReturner()
  4666. if foundAnything ~= "" then
  4667. TPReturner()
  4668. end
  4669. end)
  4670. end
  4671. end
  4672. Teleport()
  4673. end)
  4674. Misc:Line()
  4675. Misc:Button("Auto Quest Player",function()
  4676. local args = {
  4677. [1] = "PlayerHunter"
  4678. }
  4679.  
  4680. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4681. end)
  4682.  
  4683. Misc:Line()
  4684. Misc:Button("Join Pirates Team",function()
  4685. local args = {
  4686. [1] = "SetTeam",
  4687. [2] = "Pirates"
  4688. }
  4689. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4690. local args = {
  4691. [1] = "BartiloQuestProgress"
  4692. }
  4693. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4694. local args = {
  4695. [1] = "Buso"
  4696. }
  4697. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4698. end)
  4699. Misc:Button("Join Marines Team",function()
  4700. local args = {
  4701. [1] = "SetTeam",
  4702. [2] = "Marines"
  4703. }
  4704. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4705. local args = {
  4706. [1] = "BartiloQuestProgress"
  4707. }
  4708. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4709. local args = {
  4710. [1] = "Buso"
  4711. }
  4712. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4713. end)
  4714. Misc:Button("Open Devil Shop",function()
  4715. local args = {
  4716. [1] = "GetFruits"
  4717. }
  4718. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4719. game.Players.localPlayer.PlayerGui.Main.FruitShop.Visible = true
  4720. end)
  4721. Misc:Button("Open Inventory",function()
  4722. local args = {
  4723. [1] = "getInventoryWeapons"
  4724. }
  4725. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4726. game.Players.localPlayer.PlayerGui.Main.Inventory.Visible = true
  4727. end)
  4728. Misc:Button("Open Fruit Inventory",function()
  4729. game.Players.localPlayer.PlayerGui.Main.FruitInventory.Visible = true
  4730. end)
  4731. Misc:Button("Open Color Haki",function()
  4732. game.Players.localPlayer.PlayerGui.Main.Colors.Visible = true
  4733. end)
  4734. Misc:Button("Open Title Name",function()
  4735. local args = {
  4736. [1] = "getTitles"
  4737. }
  4738. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4739. game.Players.localPlayer.PlayerGui.Main.Titles.Visible = true
  4740. end)
  4741. Misc:Line()
  4742. Misc:Toggle("Auto Click",autoclick,function(value)
  4743. AuctoClick = value
  4744. end)
  4745. spawn(function()
  4746. while wait() do
  4747. if _G.AutoClick then
  4748. pcall(function()
  4749. game:GetService'VirtualUser':CaptureController()
  4750. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  4751. end)
  4752. end
  4753. end
  4754. end)
  4755. Misc:Toggle("Dodge No Cooldown",false,function(Value)
  4756. nododgecool = Value
  4757. NoDodgeCool()
  4758. end)
  4759. Misc:Toggle("Soru No Cooldown",false,function(Value)
  4760. Sorunocool = Value
  4761. NoSoruCool()
  4762. end)
  4763. Misc:Toggle("Infinits Geppo",false,function(Value)
  4764. noGeppocool = Value
  4765. NoGeppoCool()
  4766. end)
  4767. Misc:Line()
  4768. Misc:Button("Redeem All Code",function()
  4769. function UseCode(Text)
  4770. game:GetService("ReplicatedStorage").Remotes.Redeem:InvokeServer(Text)
  4771. end
  4772. UseCode("SUB2GAMERROBOT_EXP1")
  4773. UseCode("StrawHatMaine")
  4774. UseCode("Sub2OfficialNoobie")
  4775. UseCode("FUDD10")
  4776. UseCode("BIGNEWS")
  4777. UseCode("THEGREATACE")
  4778. UseCode("SUB2NOOBMASTER123")
  4779. UseCode("Sub2Daigrock")
  4780. UseCode("Axiore")
  4781. UseCode("TantaiGaming")
  4782. UseCode("STRAWHATMAINE")
  4783. end)
  4784. Misc:Button("Remove Lave",function()
  4785. for i,v in pairs(game.Workspace:GetDescendants()) do
  4786. if v.Name == "Lava" then
  4787. v:Destroy()
  4788. end
  4789. end
  4790. for i,v in pairs(game.ReplicatedStorage:GetDescendants()) do
  4791. if v.Name == "Lava" then
  4792. v:Destroy()
  4793. end
  4794. end
  4795. end)
  4796. Misc:Button("FPS Boost",function()
  4797. local decalsyeeted = true -- Leaving this on makes games look shitty but the fps goes up by at least 20.
  4798. local g = game
  4799. local w = g.Workspace
  4800. local l = g.Lighting
  4801. local t = w.Terrain
  4802. t.WaterWaveSize = 0
  4803. t.WaterWaveSpeed = 0
  4804. t.WaterReflectance = 0
  4805. t.WaterTransparency = 0
  4806. l.GlobalShadows = false
  4807. l.FogEnd = 9e9
  4808. l.Brightness = 0
  4809. settings().Rendering.QualityLevel = "Level01"
  4810. for i, v in pairs(g:GetDescendants()) do
  4811. if v:IsA("Part") or v:IsA("Union") or v:IsA("CornerWedgePart") or v:IsA("TrussPart") then
  4812. v.Material = "Plastic"
  4813. v.Reflectance = 0
  4814. elseif v:IsA("Decal") or v:IsA("Texture") and decalsyeeted then
  4815. v.Transparency = 1
  4816. elseif v:IsA("ParticleEmitter") or v:IsA("Trail") then
  4817. v.Lifetime = NumberRange.new(0)
  4818. elseif v:IsA("Explosion") then
  4819. v.BlastPressure = 1
  4820. v.BlastRadius = 1
  4821. elseif v:IsA("Fire") or v:IsA("SpotLight") or v:IsA("Smoke") or v:IsA("Sparkles") then
  4822. v.Enabled = false
  4823. elseif v:IsA("MeshPart") then
  4824. v.Material = "Plastic"
  4825. v.Reflectance = 0
  4826. v.TextureID = 10385902758728957
  4827. end
  4828. end
  4829. for i, e in pairs(l:GetChildren()) do
  4830. if e:IsA("BlurEffect") or e:IsA("SunRaysEffect") or e:IsA("ColorCorrectionEffect") or e:IsA("BloomEffect") or e:IsA("DepthOfFieldEffect") then
  4831. e.Enabled = false
  4832. end
  4833. end
  4834. end)
  4835. local LocalPlayer = game:GetService'Players'.LocalPlayer
  4836. local originalstam = LocalPlayer.Character.Energy.Value
  4837. function infinitestam()
  4838. game:GetService'Players'.LocalPlayer.Character.Energy.Changed:connect(function()
  4839. if InfinitsEnergy then
  4840. LocalPlayer.Character.Energy.Value = originalstam
  4841. end
  4842. end)
  4843. end
  4844. nododgecool = false
  4845. function NoDodgeCool()
  4846. if nododgecool then
  4847. for i,v in next, getgc() do
  4848. if game.Players.LocalPlayer.Character.Dodge then
  4849. if typeof(v) == "function" and getfenv(v).script == game.Players.LocalPlayer.Character.Dodge then
  4850. for i2,v2 in next, getupvalues(v) do
  4851. if tostring(v2) == "0.4" then
  4852. repeat wait(.1)
  4853. setupvalue(v,i2,0)
  4854. until not nododgecool
  4855. end
  4856. end
  4857. end
  4858. end
  4859. end
  4860. end
  4861. end
  4862. function NoGeppoCool()
  4863. if noGeppocool then
  4864. for i,v in next, getgc() do
  4865. if game.Players.LocalPlayer.Character.Geppo then
  4866. if typeof(v) == "function" and getfenv(v).script == game.Players.LocalPlayer.Character.Geppo then
  4867. for i2,v2 in next, getupvalues(v) do
  4868. if tostring(v2) == "0" then
  4869. repeat wait(.1)
  4870. setupvalue(v,i2,0)
  4871. until not noGeppocool
  4872. end
  4873. end
  4874. end
  4875. end
  4876. end
  4877. end
  4878. end
  4879. function NoSoruCool()
  4880. for i, v in pairs(getgc()) do
  4881. if type(v) == "function" and getfenv(v).script == game.Players.LocalPlayer.Character:WaitForChild("Soru") then
  4882. for i2,v2 in pairs(debug.getupvalues(v)) do
  4883. if type(v2) == 'table' then
  4884. if v2.LastUse then
  4885. repeat wait()
  4886. setupvalue(v, i2, {LastAfter = 0,LastUse = 0})
  4887. until not Sorunocool
  4888. end
  4889. end
  4890. end
  4891. end
  4892. end
  4893. end
  4894.  
  4895. -- Setting
  4896.  
  4897. Setting:Toggle("ตีไว",true,function(Fast)
  4898. _G.FastAttack = Fast
  4899. end)
  4900.  
  4901. local Module = require(game:GetService("Players").LocalPlayer.PlayerScripts.CombatFramework)
  4902. local CombatFramework = debug.getupvalues(Module)[2]
  4903. local CameraShakerR = require(game.ReplicatedStorage.Util.CameraShaker)
  4904.  
  4905. spawn(function()
  4906. while true do
  4907. if _G.FastAttack then
  4908. pcall(function()
  4909. CameraShakerR:Stop()
  4910. CombatFramework.activeController.attacking = false
  4911. CombatFramework.activeController.timeToNextAttack = 0
  4912. CombatFramework.activeController.increment = 3
  4913. CombatFramework.activeController.hitboxMagnitude = 100
  4914. CombatFramework.activeController.blocking = false
  4915. CombatFramework.activeController.timeToNextBlock = 0
  4916. CombatFramework.activeController.focusStart = 0
  4917. CombatFramework.activeController.humanoid.AutoRotate = true
  4918. end)
  4919. end
  4920. task.wait()
  4921. end
  4922. end)
  4923.  
  4924. Setting:Toggle("ดืงมอน",true,function(Mag)
  4925. Magnet = Mag
  4926. end)
  4927.  
  4928. Setting:Toggle("Lock Mob",false,function(d)
  4929. _G.LockMob = d
  4930. if _G.LockMob == true then
  4931. while _G.LockMob do wait()
  4932. setfflag("HumanoidParallelRemoveNoPhysics", "False")
  4933. setfflag("HumanoidParallelRemoveNoPhysicsNoSimulate2", "False")
  4934. setfflag("CrashPadUploadToBacktraceToBacktraceBaseUrl", "")
  4935. setfflag("CrashUploadToBacktracePercentage", "0")
  4936. setfflag("CrashUploadToBacktraceBlackholeToken", "")
  4937. setfflag("CrashUploadToBacktraceWindowsPlayerToken", "")
  4938. end
  4939. end
  4940. end)
  4941.  
  4942. Setting:Line()
  4943.  
  4944. Setting:Toggle("ออโต้เปิดฮาคิ",true,function(d)
  4945. _G.AUTOHAKI = d
  4946. end)
  4947. spawn(function()
  4948. while wait(.1) do
  4949. if _G.AUTOHAKI then
  4950. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  4951. local args = {
  4952. [1] = "Buso"
  4953. }
  4954. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  4955. end
  4956. end
  4957. end
  4958. end)
  4959.  
  4960. Setting:Line()
  4961.  
  4962. LockLevelValue = 2300
  4963. OldLevel = game.Players.localPlayer.Data.Level.Value
  4964. Setting:Slider("Select Level Lock",1,LockLevelValue,LockLevelValue,nil,function(value)
  4965. LockLevelValue = value
  4966. end)
  4967. Setting:Toggle("ล็อกเวล",locklevel,function(value)
  4968. LockLevel = value
  4969. end)
  4970. spawn(function()
  4971. while wait(.1) do
  4972. if LockLevel then
  4973. if game.Players.localPlayer.Data.Level.Value >= LockLevelValue then
  4974. game.Players.localPlayer:Kick("Level Lock OFF")
  4975. end
  4976. end
  4977. end
  4978. end)
  4979.  
  4980. -- Cr
  4981.  
  4982. Cr:Label("เเปลไทยโดย Domadic oof")
  4983. Cr:Line()
  4984. Cr:Label("เครดิต saxz x hub")
  4985. Cr:Line()
  4986. Cr:Label("แปลไทยเสร็จเรียบร้อย")
  4987. Cr:Line()
  4988. Cr:Button("Copy Link YouTube",function()
  4989. setclipboard("ไม่รู้ ไม่ต้องถามแปลไทย")
  4990. end)
  4991.  
  4992. ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  4993.  
  4994. function toTarget(targetPos, targetCFrame)
  4995. if FastTween then
  4996. Distance = (targetPos - game:GetService("Players").LocalPlayer.Character:WaitForChild("HumanoidRootPart").Position).Magnitude
  4997. if Distance < 1000 then
  4998. Speed = 325
  4999. elseif Distance >= 1000 then
  5000. Speed = 300
  5001. end
  5002. else
  5003. Distance = (targetPos - game:GetService("Players").LocalPlayer.Character:WaitForChild("HumanoidRootPart").Position).Magnitude
  5004. if Distance < 1000 then
  5005. Speed = 275
  5006. elseif Distance >= 1000 then
  5007. Speed = 250
  5008. end
  5009. end
  5010. local tweenfunc = {}
  5011.  
  5012. local tween_s = game:service"TweenService"
  5013. local info = TweenInfo.new((targetPos - game:GetService("Players").LocalPlayer.Character:WaitForChild("HumanoidRootPart").Position).Magnitude/Speed, Enum.EasingStyle.Linear)
  5014. local tween = tween_s:Create(game:GetService("Players").LocalPlayer.Character["HumanoidRootPart"], info, {CFrame = targetCFrame * CFrame.fromAxisAngle(Vector3.new(1,0,0), math.rad(0))})
  5015. tween:Play()
  5016.  
  5017. function tweenfunc:Stop()
  5018. tween:Cancel()
  5019. end
  5020.  
  5021. if not tween then return tween end
  5022. return tweenfunc
  5023. end
  5024.  
  5025. function SlowtoTarget(CFgo)
  5026. local tween_s = game:service"TweenService"
  5027. local info = TweenInfo.new((game:GetService("Players")["LocalPlayer"].Character.HumanoidRootPart.Position - CFgo.Position).Magnitude/250, Enum.EasingStyle.Linear)
  5028. local tween = tween_s:Create(game.Players.LocalPlayer.Character["HumanoidRootPart"], info, {CFrame = CFgo})
  5029. tween:Play()
  5030. end
  5031.  
  5032. function totarget(CFgo)
  5033. local tween_s = game:service"TweenService"
  5034. local info = TweenInfo.new((game:GetService("Players")["LocalPlayer"].Character.HumanoidRootPart.Position - CFgo.Position).Magnitude/300, Enum.EasingStyle.Linear)
  5035. local tween, err = pcall(function()
  5036. tween = tween_s:Create(game.Players.LocalPlayer.Character["HumanoidRootPart"], info, {CFrame = CFgo})
  5037. tween:Play()
  5038. end)
  5039. if not tween then return err end
  5040. end
  5041.  
  5042. spawn(function()
  5043. game:GetService("RunService").Stepped:Connect(function()
  5044. if farm or Auto_Farm or AutoFarmBone or AutoFarmChest or FramBoss or KillAllBoss or _G.AutoNew or _G.AutoThird or _G.AutoSaber or _G.AutoPoleHOP or _G.AutoPole or _G.AutoRengoku or _G.AutoEvoRace2 or _G.AutoQuestBartilo or _G.AutoHakiRainbow or _G.AutoEliteHunter or _G.AutoYama or _G.HolyTorch then
  5045. if not KRNL_LOADED and game.Players.LocalPlayer.Character:FindFirstChild("Humanoid") then
  5046. setfflag("HumanoidParallelRemoveNoPhysics", "False")
  5047. setfflag("HumanoidParallelRemoveNoPhysicsNoSimulate2", "False")
  5048. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  5049. else
  5050. if not game:GetService("Workspace"):FindFirstChild("LOL") then
  5051. local LOL = Instance.new("Part")
  5052. LOL.Name = "LOL"
  5053. LOL.Parent = game.Workspace
  5054. LOL.Anchored = true
  5055. LOL.Transparency = 0.8
  5056. LOL.Size = Vector3.new(50,0.5,50)
  5057. elseif game:GetService("Workspace"):FindFirstChild("LOL") then
  5058. game.Workspace["LOL"].CFrame = CFrame.new(game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.X,game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Y - 3.8,game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Z)
  5059. end
  5060. end
  5061. for _, v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  5062. if v:IsA("BasePart") then
  5063. v.CanCollide = false
  5064. end
  5065. end
  5066. end
  5067. end)
  5068. end)
  5069.  
  5070. function CheckLevel()
  5071. local Lv = game:GetService("Players").LocalPlayer.Data.Level.Value
  5072. if Old_World then
  5073. if Lv == 1 or Lv <= 9 or SelectMonster == "Bandit [Lv. 5]" then -- Bandit
  5074. Ms = "Bandit [Lv. 5]"
  5075. NameQuest = "BanditQuest1"
  5076. QuestLv = 1
  5077. NameMon = "Bandit"
  5078. CFrameQ = CFrame.new(1060.9383544922, 16.455066680908, 1547.7841796875)
  5079. CFrameMon = CFrame.new(1038.5533447266, 41.296249389648, 1576.5098876953)
  5080. elseif Lv == 10 or Lv <= 14 or SelectMonster == "Monkey [Lv. 14]" then -- Monkey
  5081. Ms = "Monkey [Lv. 14]"
  5082. NameQuest = "JungleQuest"
  5083. QuestLv = 1
  5084. NameMon = "Monkey"
  5085. CFrameQ = CFrame.new(-1601.6553955078, 36.85213470459, 153.38809204102)
  5086. CFrameMon = CFrame.new(-1448.1446533203, 50.851993560791, 63.60718536377)
  5087. elseif Lv == 15 or Lv <= 29 or SelectMonster == "Gorilla [Lv. 20]" then -- Gorilla
  5088. Ms = "Gorilla [Lv. 20]"
  5089. NameQuest = "JungleQuest"
  5090. QuestLv = 2
  5091. NameMon = "Gorilla"
  5092. CFrameQ = CFrame.new(-1601.6553955078, 36.85213470459, 153.38809204102)
  5093. CFrameMon = CFrame.new(-1142.6488037109, 40.462348937988, -515.39227294922)
  5094. elseif Lv == 30 or Lv <= 39 or SelectMonster == "Pirate [Lv. 35]" then -- Pirate
  5095. Ms = "Pirate [Lv. 35]"
  5096. NameQuest = "BuggyQuest1"
  5097. QuestLv = 1
  5098. NameMon = "Pirate"
  5099. CFrameQ = CFrame.new(-1140.1761474609, 4.752049446106, 3827.4057617188)
  5100. CFrameMon = CFrame.new(-1201.0881347656, 40.628940582275, 3857.5966796875)
  5101. elseif Lv == 40 or Lv <= 59 or SelectMonster == "Brute [Lv. 45]" then -- Brute
  5102. Ms = "Brute [Lv. 45]"
  5103. NameQuest = "BuggyQuest1"
  5104. QuestLv = 2
  5105. NameMon = "Brute"
  5106. CFrameQ = CFrame.new(-1140.1761474609, 4.752049446106, 3827.4057617188)
  5107. CFrameMon = CFrame.new(-1387.5324707031, 24.592035293579, 4100.9575195313)
  5108. elseif Lv == 60 or Lv <= 74 or SelectMonster == "Desert Bandit [Lv. 60]" then -- Desert Bandit
  5109. Ms = "Desert Bandit [Lv. 60]"
  5110. NameQuest = "DesertQuest"
  5111. QuestLv = 1
  5112. NameMon = "Desert Bandit"
  5113. CFrameQ = CFrame.new(896.51721191406, 6.4384617805481, 4390.1494140625)
  5114. CFrameMon = CFrame.new(984.99896240234, 16.109552383423, 4417.91015625)
  5115. elseif Lv == 75 or Lv <= 89 or SelectMonster == "Desert Officer [Lv. 70]" then -- Desert Officer
  5116. Ms = "Desert Officer [Lv. 70]"
  5117. NameQuest = "DesertQuest"
  5118. QuestLv = 2
  5119. NameMon = "Desert Officer"
  5120. CFrameQ = CFrame.new(896.51721191406, 6.4384617805481, 4390.1494140625)
  5121. CFrameMon = CFrame.new(1547.1510009766, 14.452038764954, 4381.8002929688)
  5122. elseif Lv == 90 or Lv <= 99 or SelectMonster == "Snow Bandit [Lv. 90]" then -- Snow Bandit
  5123. Ms = "Snow Bandit [Lv. 90]"
  5124. NameQuest = "SnowQuest"
  5125. QuestLv = 1
  5126. NameMon = "Snow Bandit"
  5127. CFrameQ = CFrame.new(1386.8073730469, 87.272789001465, -1298.3576660156)
  5128. CFrameMon = CFrame.new(1356.3028564453, 105.76865386963, -1328.2418212891)
  5129. elseif Lv == 100 or Lv <= 119 or SelectMonster == "Snowman [Lv. 100]" then -- Snowman
  5130. Ms = "Snowman [Lv. 100]"
  5131. NameQuest = "SnowQuest"
  5132. QuestLv = 2
  5133. NameMon = "Snowman"
  5134. CFrameQ = CFrame.new(1386.8073730469, 87.272789001465, -1298.3576660156)
  5135. CFrameMon = CFrame.new(1218.7956542969, 138.01184082031, -1488.0262451172)
  5136. elseif Lv == 120 or Lv <= 149 or SelectMonster == "Chief Petty Officer [Lv. 120]" then -- Chief Petty Officer
  5137. Ms = "Chief Petty Officer [Lv. 120]"
  5138. NameQuest = "MarineQuest2"
  5139. QuestLv = 1
  5140. NameMon = "Chief Petty Officer"
  5141. CFrameQ = CFrame.new(-5035.49609375, 28.677835464478, 4324.1840820313)
  5142. CFrameMon = CFrame.new(-4931.1552734375, 65.793113708496, 4121.8393554688)
  5143. elseif Lv == 150 or Lv <= 174 or SelectMonster == "Sky Bandit [Lv. 150]" then -- Sky Bandit
  5144. Ms = "Sky Bandit [Lv. 150]"
  5145. NameQuest = "SkyQuest"
  5146. QuestLv = 1
  5147. NameMon = "Sky Bandit"
  5148. CFrameQ = CFrame.new(-4842.1372070313, 717.69543457031, -2623.0483398438)
  5149. CFrameMon = CFrame.new(-4955.6411132813, 365.46365356445, -2908.1865234375)
  5150. elseif Lv == 175 or Lv <= 189 or SelectMonster == "Dark Master [Lv. 175]" then -- Dark Master
  5151. Ms = "Dark Master [Lv. 175]"
  5152. NameQuest = "SkyQuest"
  5153. QuestLv = 2
  5154. NameMon = "Dark Master"
  5155. CFrameQ = CFrame.new(-4842.1372070313, 717.69543457031, -2623.0483398438)
  5156. CFrameMon = CFrame.new(-5148.1650390625, 439.04571533203, -2332.9611816406)
  5157. elseif Lv == 190 or Lv <= 209 or SelectMonster == "Prisoner [Lv. 190]" then -- Prisoner
  5158. Ms = "Prisoner [Lv. 190]"
  5159. NameQuest = "JailKeeperQuest"
  5160. QuestLv = 1
  5161. NameMon = "Prisoner"
  5162. CFrameQ = CFrame.new(5310.60547, 0.350014925, 474.946594, 0.0175017118, 0, 0.999846935, 0, 1, 0, -0.999846935, 0, 0.0175017118)
  5163. CFrameMon = CFrame.new(4937.31885, 0.332031399, 649.574524, 0.694649816, 0, -0.719348073, 0, 1, 0, 0.719348073, 0, 0.694649816)
  5164. elseif Lv == 210 or Lv <= 249 or SelectMonster == "Dangerous Prisoner [Lv. 210]" then -- Dangerous Prisoner
  5165. Ms = "Dangerous Prisoner [Lv. 210]"
  5166. NameQuest = "JailKeeperQuest"
  5167. QuestLv = 2
  5168. NameMon = "Dangerous Prisoner"
  5169. CFrameQ = CFrame.new(5310.60547, 0.350014925, 474.946594, 0.0175017118, 0, 0.999846935, 0, 1, 0, -0.999846935, 0, 0.0175017118)
  5170. CFrameMon = CFrame.new(5099.6626, 0.351562679, 1055.7583, 0.898906827, 0, -0.438139856, 0, 1, 0, 0.438139856, 0, 0.898906827)
  5171. elseif Lv == 250 or Lv <= 274 or SelectMonster == "Toga Warrior [Lv. 250]" then -- Toga Warrior
  5172. Ms = "Toga Warrior [Lv. 250]"
  5173. NameQuest = "ColosseumQuest"
  5174. QuestLv = 1
  5175. NameMon = "Toga Warrior"
  5176. CFrameQ = CFrame.new(-1577.7890625, 7.4151420593262, -2984.4838867188)
  5177. CFrameMon = CFrame.new(-1872.5166015625, 49.080215454102, -2913.810546875)
  5178. elseif Lv == 275 or Lv <= 299 or SelectMonster == "Gladiator [Lv. 275]" then -- Gladiator
  5179. Ms = "Gladiator [Lv. 275]"
  5180. NameQuest = "ColosseumQuest"
  5181. QuestLv = 2
  5182. NameMon = "Gladiator"
  5183. CFrameQ = CFrame.new(-1577.7890625, 7.4151420593262, -2984.4838867188)
  5184. CFrameMon = CFrame.new(-1521.3740234375, 81.203170776367, -3066.3139648438)
  5185. elseif Lv == 300 or Lv <= 324 or SelectMonster == "Military Soldier [Lv. 300]" then -- Military Soldier
  5186. Ms = "Military Soldier [Lv. 300]"
  5187. NameQuest = "MagmaQuest"
  5188. QuestLv = 1
  5189. NameMon = "Military Soldier"
  5190. CFrameQ = CFrame.new(-5316.1157226563, 12.262831687927, 8517.00390625)
  5191. CFrameMon = CFrame.new(-5369.0004882813, 61.24352645874, 8556.4921875)
  5192. elseif Lv == 325 or Lv <= 374 or SelectMonster == "Military Spy [Lv. 325]" then -- Military Spy
  5193. Ms = "Military Spy [Lv. 325]"
  5194. NameQuest = "MagmaQuest"
  5195. QuestLv = 2
  5196. NameMon = "Military Spy"
  5197. CFrameQ = CFrame.new(-5316.1157226563, 12.262831687927, 8517.00390625)
  5198. CFrameMon = CFrame.new(-5787.00293, 75.8262634, 8651.69922, 0.838590562, 0, -0.544762194, 0, 1, 0, 0.544762194, 0, 0.838590562)
  5199. elseif Lv == 375 or Lv <= 399 or SelectMonster == "Fishman Warrior [Lv. 375]" then -- Fishman Warrior
  5200. Ms = "Fishman Warrior [Lv. 375]"
  5201. NameQuest = "FishmanQuest"
  5202. QuestLv = 1
  5203. NameMon = "Fishman Warrior"
  5204. CFrameQ = CFrame.new(61122.65234375, 18.497442245483, 1569.3997802734)
  5205. CFrameMon = CFrame.new(60844.10546875, 98.462875366211, 1298.3985595703)
  5206. if Auto_Farm and (CFrameMon.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 3000 then
  5207. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(61163.8515625, 11.6796875, 1819.7841796875))
  5208. end
  5209. elseif Lv == 400 or Lv <= 449 or SelectMonster == "Fishman Commando [Lv. 400]" then -- Fishman Commando
  5210. Ms = "Fishman Commando [Lv. 400]"
  5211. NameQuest = "FishmanQuest"
  5212. QuestLv = 2
  5213. NameMon = "Fishman Commando"
  5214. CFrameQ = CFrame.new(61122.65234375, 18.497442245483, 1569.3997802734)
  5215. CFrameMon = CFrame.new(61738.3984375, 64.207321166992, 1433.8375244141)
  5216. if Auto_Farm and (CFrameMon.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 3000 then
  5217. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(61163.8515625, 11.6796875, 1819.7841796875))
  5218. end
  5219. elseif Lv == 450 or Lv <= 474 or SelectMonster == "God's Guard [Lv. 450]" then -- God's Guard
  5220. Ms = "God's Guard [Lv. 450]"
  5221. NameQuest = "SkyExp1Quest"
  5222. QuestLv = 1
  5223. NameMon = "God's Guard"
  5224. CFrameQ = CFrame.new(-4721.8603515625, 845.30297851563, -1953.8489990234)
  5225. CFrameMon = CFrame.new(-4628.0498046875, 866.92877197266, -1931.2352294922)
  5226. if Auto_Farm and (CFrameMon.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 3000 then
  5227. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-4607.82275, 872.54248, -1667.55688))
  5228. end
  5229. elseif Lv == 475 or Lv <= 524 or SelectMonster == "Shanda [Lv. 475]" then -- Shanda
  5230. Ms = "Shanda [Lv. 475]"
  5231. NameQuest = "SkyExp1Quest"
  5232. QuestLv = 2
  5233. NameMon = "Shanda"
  5234. CFrameQ = CFrame.new(-7863.1596679688, 5545.5190429688, -378.42266845703)
  5235. CFrameMon = CFrame.new(-7685.1474609375, 5601.0751953125, -441.38876342773)
  5236. if Auto_Farm and (CFrameMon.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 3000 then
  5237. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-7894.6176757813, 5547.1416015625, -380.29119873047))
  5238. end
  5239. elseif Lv == 525 or Lv <= 549 or SelectMonster == "Royal Squad [Lv. 525]" then -- Royal Squad
  5240. Ms = "Royal Squad [Lv. 525]"
  5241. NameQuest = "SkyExp2Quest"
  5242. QuestLv = 1
  5243. NameMon = "Royal Squad"
  5244. CFrameQ = CFrame.new(-7903.3828125, 5635.9897460938, -1410.923828125)
  5245. CFrameMon = CFrame.new(-7654.2514648438, 5637.1079101563, -1407.7550048828)
  5246. elseif Lv == 550 or Lv <= 624 or SelectMonster == "Royal Soldier [Lv. 550]" then -- Royal Soldier
  5247. Ms = "Royal Soldier [Lv. 550]"
  5248. NameQuest = "SkyExp2Quest"
  5249. QuestLv = 2
  5250. NameMon = "Royal Soldier"
  5251. CFrameQ = CFrame.new(-7903.3828125, 5635.9897460938, -1410.923828125)
  5252. CFrameMon = CFrame.new(-7760.4106445313, 5679.9077148438, -1884.8112792969)
  5253. elseif Lv == 625 or Lv <= 649 or SelectMonster == "Galley Pirate [Lv. 625]" then -- Galley Pirate
  5254. Ms = "Galley Pirate [Lv. 625]"
  5255. NameQuest = "FountainQuest"
  5256. QuestLv = 1
  5257. NameMon = "Galley Pirate"
  5258. CFrameQ = CFrame.new(5258.2788085938, 38.526931762695, 4050.044921875)
  5259. CFrameMon = CFrame.new(5557.1684570313, 152.32717895508, 3998.7758789063)
  5260. elseif Lv >= 650 or SelectMonster == "Galley Captain [Lv. 650]" then -- Galley Captain
  5261. Ms = "Galley Captain [Lv. 650]"
  5262. NameQuest = "FountainQuest"
  5263. QuestLv = 2
  5264. NameMon = "Galley Captain"
  5265. CFrameQ = CFrame.new(5258.2788085938, 38.526931762695, 4050.044921875)
  5266. CFrameMon = CFrame.new(5677.6772460938, 92.786109924316, 4966.6323242188)
  5267. end
  5268. end
  5269. if New_World then
  5270. if Lv == 700 or Lv <= 724 or SelectMonster == "Raider [Lv. 700]" then -- Raider
  5271. Ms = "Raider [Lv. 700]"
  5272. NameQuest = "Area1Quest"
  5273. QuestLv = 1
  5274. NameMon = "Raider"
  5275. CFrameQ = CFrame.new(-427.72567749023, 72.99634552002, 1835.9426269531)
  5276. CFrameMon = CFrame.new(68.874565124512, 93.635643005371, 2429.6752929688)
  5277. elseif Lv == 725 or Lv <= 774 or SelectMonster == "Mercenary [Lv. 725]" then -- Mercenary
  5278. Ms = "Mercenary [Lv. 725]"
  5279. NameQuest = "Area1Quest"
  5280. QuestLv = 2
  5281. NameMon = "Mercenary"
  5282. CFrameQ = CFrame.new(-427.72567749023, 72.99634552002, 1835.9426269531)
  5283. CFrameMon = CFrame.new(-864.85009765625, 122.47104644775, 1453.1505126953)
  5284. elseif Lv == 775 or Lv <= 799 or SelectMonster == "Swan Pirate [Lv. 775]" then -- Swan Pirate
  5285. Ms = "Swan Pirate [Lv. 775]"
  5286. NameQuest = "Area2Quest"
  5287. QuestLv = 1
  5288. NameMon = "Swan Pirate"
  5289. CFrameQ = CFrame.new(635.61151123047, 73.096351623535, 917.81298828125)
  5290. CFrameMon = CFrame.new(1065.3669433594, 137.64012145996, 1324.3798828125)
  5291. elseif Lv == 800 or Lv <= 874 or SelectMonster == "Factory Staff [Lv. 800]" then -- Factory Staff
  5292. Ms = "Factory Staff [Lv. 800]"
  5293. NameQuest = "Area2Quest"
  5294. QuestLv = 2
  5295. NameMon = "Factory Staff"
  5296. CFrameQ = CFrame.new(635.61151123047, 73.096351623535, 917.81298828125)
  5297. CFrameMon = CFrame.new(533.22045898438, 128.46876525879, 355.62615966797)
  5298. elseif Lv == 875 or Lv <= 899 or SelectMonster == "Marine Lieutenant [Lv. 875]" then -- Marine Lieutenant
  5299. Ms = "Marine Lieutenant [Lv. 875]"
  5300. NameQuest = "MarineQuest3"
  5301. QuestLv = 1
  5302. NameMon = "Marine Lieutenant"
  5303. CFrameQ = CFrame.new(-2440.9934082031, 73.04190826416, -3217.7082519531)
  5304. CFrameMon = CFrame.new(-2489.2622070313, 84.613594055176, -3151.8830566406)
  5305. elseif Lv == 900 or Lv <= 949 or SelectMonster == "Marine Captain [Lv. 900]" then -- Marine Captain
  5306. Ms = "Marine Captain [Lv. 900]"
  5307. NameQuest = "MarineQuest3"
  5308. QuestLv = 2
  5309. NameMon = "Marine Captain"
  5310. CFrameQ = CFrame.new(-2440.9934082031, 73.04190826416, -3217.7082519531)
  5311. CFrameMon = CFrame.new(-2335.2026367188, 79.786659240723, -3245.8674316406)
  5312. elseif Lv == 950 or Lv <= 974 or SelectMonster == "Zombie [Lv. 950]" then -- Zombie
  5313. Ms = "Zombie [Lv. 950]"
  5314. NameQuest = "ZombieQuest"
  5315. QuestLv = 1
  5316. NameMon = "Zombie"
  5317. CFrameQ = CFrame.new(-5494.3413085938, 48.505931854248, -794.59094238281)
  5318. CFrameMon = CFrame.new(-5536.4970703125, 101.08577728271, -835.59075927734)
  5319. elseif Lv == 975 or Lv <= 999 or SelectMonster == "Vampire [Lv. 975]" then -- Vampire
  5320. Ms = "Vampire [Lv. 975]"
  5321. NameQuest = "ZombieQuest"
  5322. QuestLv = 2
  5323. NameMon = "Vampire"
  5324. CFrameQ = CFrame.new(-5494.3413085938, 48.505931854248, -794.59094238281)
  5325. CFrameMon = CFrame.new(-5806.1098632813, 16.722528457642, -1164.4384765625)
  5326. elseif Lv == 1000 or Lv <= 1049 or SelectMonster == "Snow Trooper [Lv. 1000]" then -- Snow Trooper
  5327. Ms = "Snow Trooper [Lv. 1000]"
  5328. NameQuest = "SnowMountainQuest"
  5329. QuestLv = 1
  5330. NameMon = "Snow Trooper"
  5331. CFrameQ = CFrame.new(607.05963134766, 401.44781494141, -5370.5546875)
  5332. CFrameMon = CFrame.new(535.21051025391, 432.74209594727, -5484.9165039063)
  5333. elseif Lv == 1050 or Lv <= 1099 or SelectMonster == "Winter Warrior [Lv. 1050]" then -- Winter Warrior
  5334. Ms = "Winter Warrior [Lv. 1050]"
  5335. NameQuest = "SnowMountainQuest"
  5336. QuestLv = 2
  5337. NameMon = "Winter Warrior"
  5338. CFrameQ = CFrame.new(607.05963134766, 401.44781494141, -5370.5546875)
  5339. CFrameMon = CFrame.new(1234.4449462891, 456.95419311523, -5174.130859375)
  5340. elseif Lv == 1100 or Lv <= 1124 or SelectMonster == "Lab Subordinate [Lv. 1100]" then -- Lab Subordinate
  5341. Ms = "Lab Subordinate [Lv. 1100]"
  5342. NameQuest = "IceSideQuest"
  5343. QuestLv = 1
  5344. NameMon = "Lab Subordinate"
  5345. CFrameQ = CFrame.new(-6061.841796875, 15.926671981812, -4902.0385742188)
  5346. CFrameMon = CFrame.new(-5720.5576171875, 63.309471130371, -4784.6103515625)
  5347. elseif Lv == 1125 or Lv <= 1174 or SelectMonster == "Horned Warrior [Lv. 1125]" then -- Horned Warrior
  5348. Ms = "Horned Warrior [Lv. 1125]"
  5349. NameQuest = "IceSideQuest"
  5350. QuestLv = 2
  5351. NameMon = "Horned Warrior"
  5352. CFrameQ = CFrame.new(-6061.841796875, 15.926671981812, -4902.0385742188)
  5353. CFrameMon = CFrame.new(-6292.751953125, 91.181983947754, -5502.6499023438)
  5354. elseif Lv == 1175 or Lv <= 1199 or SelectMonster == "Magma Ninja [Lv. 1175]" then -- Magma Ninja
  5355. Ms = "Magma Ninja [Lv. 1175]"
  5356. NameQuest = "FireSideQuest"
  5357. QuestLv = 1
  5358. NameMon = "Magma Ninja"
  5359. CFrameQ = CFrame.new(-5429.0473632813, 15.977565765381, -5297.9614257813)
  5360. CFrameMon = CFrame.new(-5461.8388671875, 130.36347961426, -5836.4702148438)
  5361. elseif Lv == 1200 or Lv <= 1249 or SelectMonster == "Lava Pirate [Lv. 1200]" then -- Lava Pirate
  5362. Ms = "Lava Pirate [Lv. 1200]"
  5363. NameQuest = "FireSideQuest"
  5364. QuestLv = 2
  5365. NameMon = "Lava Pirate"
  5366. CFrameQ = CFrame.new(-5429.0473632813, 15.977565765381, -5297.9614257813)
  5367. CFrameMon = CFrame.new(-5251.1889648438, 55.164535522461, -4774.4096679688)
  5368. elseif Lv == 1250 or Lv <= 1274 or SelectMonster == "Ship Deckhand [Lv. 1250]" then -- Ship Deckhand
  5369. Ms = "Ship Deckhand [Lv. 1250]"
  5370. NameQuest = "ShipQuest1"
  5371. QuestLv = 1
  5372. NameMon = "Ship Deckhand"
  5373. CFrameQ = CFrame.new(1040.2927246094, 125.08293151855, 32911.0390625)
  5374. CFrameMon = CFrame.new(921.12365722656, 125.9839553833, 33088.328125)
  5375. if Auto_Farm and (CFrameMon.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 20000 then
  5376. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(923.21252441406, 126.9760055542, 32852.83203125))
  5377. end
  5378. elseif Lv == 1275 or Lv <= 1299 or SelectMonster == "Ship Engineer [Lv. 1275]" then -- Ship Engineer
  5379. Ms = "Ship Engineer [Lv. 1275]"
  5380. NameQuest = "ShipQuest1"
  5381. QuestLv = 2
  5382. NameMon = "Ship Engineer"
  5383. CFrameQ = CFrame.new(1040.2927246094, 125.08293151855, 32911.0390625)
  5384. CFrameMon = CFrame.new(886.28179931641, 40.47790145874, 32800.83203125)
  5385. if Auto_Farm and (CFrameMon.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 20000 then
  5386. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(923.21252441406, 126.9760055542, 32852.83203125))
  5387. end
  5388. elseif Lv == 1300 or Lv <= 1324 or SelectMonster == "Ship Steward [Lv. 1300]" then -- Ship Steward
  5389. Ms = "Ship Steward [Lv. 1300]"
  5390. NameQuest = "ShipQuest2"
  5391. QuestLv = 1
  5392. NameMon = "Ship Steward"
  5393. CFrameQ = CFrame.new(971.42065429688, 125.08293151855, 33245.54296875)
  5394. CFrameMon = CFrame.new(943.85504150391, 129.58183288574, 33444.3671875)
  5395. if Auto_Farm and (CFrameMon.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 20000 then
  5396. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(923.21252441406, 126.9760055542, 32852.83203125))
  5397. end
  5398. elseif Lv == 1325 or Lv <= 1349 or SelectMonster == "Ship Officer [Lv. 1325]" then -- Ship Officer
  5399. Ms = "Ship Officer [Lv. 1325]"
  5400. NameQuest = "ShipQuest2"
  5401. QuestLv = 2
  5402. NameMon = "Ship Officer"
  5403. CFrameQ = CFrame.new(971.42065429688, 125.08293151855, 33245.54296875)
  5404. CFrameMon = CFrame.new(955.38458251953, 181.08335876465, 33331.890625)
  5405. if Auto_Farm and (CFrameMon.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 20000 then
  5406. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(923.21252441406, 126.9760055542, 32852.83203125))
  5407. end
  5408. elseif Lv == 1350 or Lv <= 1374 or SelectMonster == "Arctic Warrior [Lv. 1350]" then -- Arctic Warrior
  5409. Ms = "Arctic Warrior [Lv. 1350]"
  5410. NameQuest = "FrostQuest"
  5411. QuestLv = 1
  5412. NameMon = "Arctic Warrior"
  5413. CFrameQ = CFrame.new(5668.1372070313, 28.202531814575, -6484.6005859375)
  5414. CFrameMon = CFrame.new(5935.4541015625, 77.26016998291, -6472.7568359375)
  5415. if Auto_Farm and (CFrameMon.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 20000 then
  5416. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-6508.5581054688, 89.034996032715, -132.83953857422))
  5417. end
  5418. elseif Lv == 1375 or Lv <= 1424 or SelectMonster == "Snow Lurker [Lv. 1375]" then -- Snow Lurker
  5419. Ms = "Snow Lurker [Lv. 1375]"
  5420. NameQuest = "FrostQuest"
  5421. QuestLv = 2
  5422. NameMon = "Snow Lurker"
  5423. CFrameQ = CFrame.new(5668.1372070313, 28.202531814575, -6484.6005859375)
  5424. CFrameMon = CFrame.new(5628.482421875, 57.574996948242, -6618.3481445313)
  5425. elseif Lv == 1425 or Lv <= 1449 or SelectMonster == "Sea Soldier [Lv. 1425]" then -- Sea Soldier
  5426. Ms = "Sea Soldier [Lv. 1425]"
  5427. NameQuest = "ForgottenQuest"
  5428. QuestLv = 1
  5429. NameMon = "Sea Soldier"
  5430. CFrameQ = CFrame.new(-3054.5827636719, 236.87213134766, -10147.790039063)
  5431. CFrameMon = CFrame.new(-3185.0153808594, 58.789089202881, -9663.6064453125)
  5432. elseif Lv >= 1450 or SelectMonster == "Water Fighter [Lv. 1450]" then -- Water Fighter
  5433. Ms = "Water Fighter [Lv. 1450]"
  5434. NameQuest = "ForgottenQuest"
  5435. QuestLv = 2
  5436. NameMon = "Water Fighter"
  5437. CFrameQ = CFrame.new(-3054.5827636719, 236.87213134766, -10147.790039063)
  5438. CFrameMon = CFrame.new(-3262.9301757813, 298.69036865234, -10552.529296875)
  5439. end
  5440. end
  5441. if Three_World then
  5442. if Lv == 1500 or Lv <= 1524 or SelectMonster == "Pirate Millionaire [Lv. 1500]" then -- Pirate Millionaire
  5443. Ms = "Pirate Millionaire [Lv. 1500]"
  5444. NameQuest = "PiratePortQuest"
  5445. QuestLv = 1
  5446. NameMon = "Pirate Millionaire"
  5447. CFrameQ = CFrame.new(-289.61752319336, 43.819011688232, 5580.0903320313)
  5448. CFrameMon = CFrame.new(-435.68109130859, 189.69866943359, 5551.0756835938)
  5449. elseif Lv == 1525 or Lv <= 1574 or SelectMonster == "Pistol Billionaire [Lv. 1525]" then -- Pistol Billoonaire
  5450. Ms = "Pistol Billionaire [Lv. 1525]"
  5451. NameQuest = "PiratePortQuest"
  5452. QuestLv = 2
  5453. NameMon = "Pistol Billionaire"
  5454. CFrameQ = CFrame.new(-289.61752319336, 43.819011688232, 5580.0903320313)
  5455. CFrameMon = CFrame.new(-236.53652954102, 217.46676635742, 6006.0883789063)
  5456. elseif Lv == 1575 or Lv <= 1599 or SelectMonster == "Dragon Crew Warrior [Lv. 1575]" then -- Dragon Crew Warrior
  5457. Ms = "Dragon Crew Warrior [Lv. 1575]"
  5458. NameQuest = "AmazonQuest"
  5459. QuestLv = 1
  5460. NameMon = "Dragon Crew Warrior"
  5461. CFrameQ = CFrame.new(5833.1147460938, 51.60498046875, -1103.0693359375)
  5462. CFrameMon = CFrame.new(6301.9975585938, 104.77153015137, -1082.6075439453)
  5463. elseif Lv == 1600 or Lv <= 1624 or SelectMonster == "Dragon Crew Archer [Lv. 1600]" then -- Dragon Crew Archer
  5464. Ms = "Dragon Crew Archer [Lv. 1600]"
  5465. NameQuest = "AmazonQuest"
  5466. QuestLv = 2
  5467. NameMon = "Dragon Crew Archer"
  5468. CFrameQ = CFrame.new(5833.1147460938, 51.60498046875, -1103.0693359375)
  5469. CFrameMon = CFrame.new(6831.1171875, 441.76708984375, 446.58615112305)
  5470. elseif Lv == 1625 or Lv <= 1649 or SelectMonster == "Female Islander [Lv. 1625]" then -- Female Islander
  5471. Ms = "Female Islander [Lv. 1625]"
  5472. NameQuest = "AmazonQuest2"
  5473. QuestLv = 1
  5474. NameMon = "Female Islander"
  5475. CFrameQ = CFrame.new(5446.8793945313, 601.62945556641, 749.45672607422)
  5476. CFrameMon = CFrame.new(5792.5166015625, 848.14392089844, 1084.1818847656)
  5477. elseif Lv == 1650 or Lv <= 1699 or SelectMonster == "Giant Islander [Lv. 1650]" then -- Giant Islander
  5478. Ms = "Giant Islander [Lv. 1650]"
  5479. NameQuest = "AmazonQuest2"
  5480. QuestLv = 2
  5481. NameMon = "Giant Islander"
  5482. CFrameQ = CFrame.new(5446.8793945313, 601.62945556641, 749.45672607422)
  5483. CFrameMon = CFrame.new(5009.5068359375, 664.11071777344, -40.960144042969)
  5484. elseif Lv == 1700 or Lv <= 1724 or SelectMonster == "Marine Commodore [Lv. 1700]" then -- Marine Commodore
  5485. Ms = "Marine Commodore [Lv. 1700]"
  5486. NameQuest = "MarineTreeIsland"
  5487. QuestLv = 1
  5488. NameMon = "Marine Commodore"
  5489. CFrameQ = CFrame.new(2179.98828125, 28.731239318848, -6740.0551757813)
  5490. CFrameMon = CFrame.new(2198.0063476563, 128.71075439453, -7109.5043945313)
  5491. elseif Lv == 1725 or Lv <= 1774 or SelectMonster == "Marine Rear Admiral [Lv. 1725]" then -- Marine Rear Admiral
  5492. Ms = "Marine Rear Admiral [Lv. 1725]"
  5493. NameQuest = "MarineTreeIsland"
  5494. QuestLv = 2
  5495. NameMon = "Marine Rear Admiral"
  5496. CFrameQ = CFrame.new(2179.98828125, 28.731239318848, -6740.0551757813)
  5497. CFrameMon = CFrame.new(3294.3142089844, 385.41125488281, -7048.6342773438)
  5498. elseif Lv == 1775 or Lv <= 1799 or SelectMonster == "Fishman Raider [Lv. 1775]" then -- Fishman Raide
  5499. Ms = "Fishman Raider [Lv. 1775]"
  5500. NameQuest = "DeepForestIsland3"
  5501. QuestLv = 1
  5502. NameMon = "Fishman Raider"
  5503. CFrameQ = CFrame.new(-10582.759765625, 331.78845214844, -8757.666015625)
  5504. CFrameMon = CFrame.new(-10553.268554688, 521.38439941406, -8176.9458007813)
  5505. elseif Lv == 1800 or Lv <= 1824 or SelectMonster == "Fishman Captain [Lv. 1800]" then -- Fishman Captain
  5506. Ms = "Fishman Captain [Lv. 1800]"
  5507. NameQuest = "DeepForestIsland3"
  5508. QuestLv = 2
  5509. NameMon = "Fishman Captain"
  5510. CFrameQ = CFrame.new(-10583.099609375, 331.78845214844, -8759.4638671875)
  5511. CFrameMon = CFrame.new(-10789.401367188, 427.18637084961, -9131.4423828125)
  5512. elseif Lv == 1825 or Lv <= 1849 or SelectMonster == "Forest Pirate [Lv. 1825]" then -- Forest Pirate
  5513. Ms = "Forest Pirate [Lv. 1825]"
  5514. NameQuest = "DeepForestIsland"
  5515. QuestLv = 1
  5516. NameMon = "Forest Pirate"
  5517. CFrameQ = CFrame.new(-13232.662109375, 332.40396118164, -7626.4819335938)
  5518. CFrameMon = CFrame.new(-13489.397460938, 400.30349731445, -7770.251953125)
  5519. elseif Lv == 1850 or Lv <= 1899 or SelectMonster == "Mythological Pirate [Lv. 1850]" then -- Mythological Pirate
  5520. Ms = "Mythological Pirate [Lv. 1850]"
  5521. NameQuest = "DeepForestIsland"
  5522. QuestLv = 2
  5523. NameMon = "Mythological Pirate"
  5524. CFrameQ = CFrame.new(-13232.662109375, 332.40396118164, -7626.4819335938)
  5525. CFrameMon = CFrame.new(-13508.616210938, 582.46228027344, -6985.3037109375)
  5526. elseif Lv == 1900 or Lv <= 1924 or SelectMonster == "Jungle Pirate [Lv. 1900]" then -- Jungle Pirate
  5527. Ms = "Jungle Pirate [Lv. 1900]"
  5528. NameQuest = "DeepForestIsland2"
  5529. QuestLv = 1
  5530. NameMon = "Jungle Pirate"
  5531. CFrameQ = CFrame.new(-12682.096679688, 390.88653564453, -9902.1240234375)
  5532. CFrameMon = CFrame.new(-12267.103515625, 459.75262451172, -10277.200195313)
  5533. elseif Lv == 1925 or Lv <= 1974 or SelectMonster == "Musketeer Pirate [Lv. 1925]" then -- Musketeer Pirate
  5534. Ms = "Musketeer Pirate [Lv. 1925]"
  5535. NameQuest = "DeepForestIsland2"
  5536. QuestLv = 2
  5537. NameMon = "Musketeer Pirate"
  5538. CFrameQ = CFrame.new(-12682.096679688, 390.88653564453, -9902.1240234375)
  5539. CFrameMon = CFrame.new(-13291.5078125, 520.47338867188, -9904.638671875)
  5540. elseif Lv == 1975 or Lv <= 1999 or SelectMonster == "Reborn Skeleton [Lv. 1975]" then
  5541. Ms = "Reborn Skeleton [Lv. 1975]"
  5542. NameQuest = "HauntedQuest1"
  5543. QuestLv = 1
  5544. NameMon = "Reborn Skeleton"
  5545. CFrameQ = CFrame.new(-9480.80762, 142.130661, 5566.37305, -0.00655503059, 4.52954225e-08, -0.999978542, 2.04920472e-08, 1, 4.51620679e-08, 0.999978542, -2.01955679e-08, -0.00655503059)
  5546. CFrameMon = CFrame.new(-8761.77148, 183.431747, 6168.33301, 0.978073597, -1.3950732e-05, -0.208259016, -1.08073925e-06, 1, -7.20630269e-05, 0.208259016, 7.07080399e-05, 0.978073597)
  5547. elseif Lv == 2000 or Lv <= 2024 or SelectMonster == "Living Zombie [Lv. 2000]" then
  5548. Ms = "Living Zombie [Lv. 2000]"
  5549. NameQuest = "HauntedQuest1"
  5550. QuestLv = 2
  5551. NameMon = "Living Zombie"
  5552. CFrameQ = CFrame.new(-9480.80762, 142.130661, 5566.37305, -0.00655503059, 4.52954225e-08, -0.999978542, 2.04920472e-08, 1, 4.51620679e-08, 0.999978542, -2.01955679e-08, -0.00655503059)
  5553. CFrameMon = CFrame.new(-10103.7529, 238.565979, 6179.75977, 0.999474227, 2.77547141e-08, 0.0324240364, -2.58006327e-08, 1, -6.06848474e-08, -0.0324240364, 5.98163865e-08, 0.999474227)
  5554. elseif Lv == 2025 or Lv <= 2049 or SelectMonster == "Demonic Soul [Lv. 2025]" then
  5555. Ms = "Demonic Soul [Lv. 2025]"
  5556. NameQuest = "HauntedQuest2"
  5557. QuestLv = 1
  5558. NameMon = "Demonic Soul"
  5559. CFrameQ = CFrame.new(-9516.9931640625, 178.00651550293, 6078.4653320313)
  5560. CFrameMon = CFrame.new(-9712.03125, 204.69589233398, 6193.322265625)
  5561. elseif Lv == 2050 or Lv <= 2074 or SelectMonster == "Posessed Mummy [Lv. 2050]" then
  5562. Ms = "Posessed Mummy [Lv. 2050]"
  5563. NameQuest = "HauntedQuest2"
  5564. QuestLv = 2
  5565. NameMon = "Posessed Mummy"
  5566. CFrameQ = CFrame.new(-9516.9931640625, 178.00651550293, 6078.4653320313)
  5567. CFrameMon = CFrame.new(-9545.7763671875, 69.619895935059, 6339.5615234375)
  5568. elseif Lv == 2075 and Lv <= 2099 or SelectMonster == "Peanut Scout [Lv. 2075]" then
  5569. Ms = "Peanut Scout [Lv. 2075]"
  5570. NameQuest = "NutsIslandQuest"
  5571. QuestLv = 1
  5572. NameMon = "Peanut Scout"
  5573. CFrameQ = CFrame.new(-2105.53198, 37.2495995, -10195.5088, -0.766061664, 0, -0.642767608, 0, 1, 0, 0.642767608, 0, -0.766061664)
  5574. CFrameMon = CFrame.new(-2126.47998, 192.095154, -10204.6553, 0.0779861137, -9.29044361e-08, 0.996954441, 6.59006432e-08, 1, 8.80332109e-08, -0.996954441, 5.88345728e-08, 0.0779861137)
  5575. elseif Lv == 2100 and Lv <= 2124 or SelectMonster == "Peanut President [Lv. 2100]" then
  5576. Ms = "Peanut President [Lv. 2100]"
  5577. NameQuest = "NutsIslandQuest"
  5578. QuestLv = 2
  5579. NameMon = "Peanut President"
  5580. CFrameQ = CFrame.new(-2105.53198, 37.2495995, -10195.5088, -0.766061664, 0, -0.642767608, 0, 1, 0, 0.642767608, 0, -0.766061664)
  5581. CFrameMon = CFrame.new(-2126.47998, 192.095154, -10204.6553, 0.0779861137, -9.29044361e-08, 0.996954441, 6.59006432e-08, 1, 8.80332109e-08, -0.996954441, 5.88345728e-08, 0.0779861137)
  5582. elseif Lv == 2125 and Lv <= 2149 or SelectMonster == "Ice Cream Chef [Lv. 2125]" then
  5583. Ms = "Ice Cream Chef [Lv. 2125]"
  5584. NameQuest = "IceCreamIslandQuest"
  5585. QuestLv = 1
  5586. NameMon = "Ice Cream Chef"
  5587. CFrameQ = CFrame.new(-819.376709, 64.9259796, -10967.2832, -0.766061664, 0, 0.642767608, 0, 1, 0, -0.642767608, 0, -0.766061664)
  5588. CFrameMon = CFrame.new(-789.941528, 209.382889, -11009.9805, -0.0703101531, -0, -0.997525156, -0, 1.00000012, -0, 0.997525275, 0, -0.0703101456)
  5589. elseif Lv == 2150 or Lv <= 2199 or SelectMonster == "Ice Cream Commander [Lv. 2150]" then
  5590. Ms = "Ice Cream Commander [Lv. 2150]"
  5591. NameQuest = "IceCreamIslandQuest"
  5592. QuestLv = 2
  5593. NameMon = "Ice Cream Commander"
  5594. CFrameQ = CFrame.new(-819.376709, 64.9259796, -10967.2832, -0.766061664, 0, 0.642767608, 0, 1, 0, -0.642767608, 0, -0.766061664)
  5595. CFrameMon = CFrame.new(-789.941528, 209.382889, -11009.9805, -0.0703101531, -0, -0.997525156, -0, 1.00000012, -0, 0.997525275, 0, -0.0703101456)
  5596. elseif Lv == 2200 or Lv <= 2224 or SelectMonster == "Cookie Crafter [Lv. 2200]" then
  5597. Ms = "Cookie Crafter [Lv. 2200]"
  5598. NameQuest = "CakeQuest1"
  5599. QuestLv = 1
  5600. NameMon = "Cookie Crafter"
  5601. CFrameQ = CFrame.new(-2022.29858, 36.9275894, -12030.9766, -0.961273909, 0, -0.275594592, 0, 1, 0, 0.275594592, 0, -0.961273909)
  5602. CFrameMon = CFrame.new(-2321.71216, 36.699482, -12216.7871, -0.780074954, 0, 0.625686109, 0, 1, 0, -0.625686109, 0, -0.780074954)
  5603. elseif Lv == 2225 or Lv <= 2249 or SelectMonster == "Cake Guard [Lv. 2225]" then
  5604. Ms = "Cake Guard [Lv. 2225]"
  5605. NameQuest = "CakeQuest1"
  5606. QuestLv = 2
  5607. NameMon = "Cake Guard"
  5608. CFrameQ = CFrame.new(-2022.29858, 36.9275894, -12030.9766, -0.961273909, 0, -0.275594592, 0, 1, 0, 0.275594592, 0, -0.961273909)
  5609. CFrameMon = CFrame.new(-1418.11011, 36.6718941, -12255.7324, 0.0677844882, 0, 0.997700036, 0, 1, 0, -0.997700036, 0, 0.0677844882)
  5610. elseif Lv == 2250 or Lv <= 2274 or SelectMonster == "Baking Staff [Lv. 2250]" then
  5611. Ms = "Baking Staff [Lv. 2250]"
  5612. NameQuest = "CakeQuest2"
  5613. QuestLv = 1
  5614. NameMon = "Baking Staff"
  5615. CFrameQ = CFrame.new(-1928.31763, 37.7296638, -12840.626, 0.951068401, -0, -0.308980465, 0, 1, -0, 0.308980465, 0, 0.951068401)
  5616. CFrameMon = CFrame.new(-1980.43848, 36.6716766, -12983.8418, -0.254443765, 0, -0.967087567, 0, 1, 0, 0.967087567, 0, -0.254443765)
  5617. elseif Lv >= 2275 or SelectMonster == "Head Baker [Lv. 2275]" then
  5618. Ms = "Head Baker [Lv. 2275]"
  5619. NameQuest = "CakeQuest2"
  5620. QuestLv = 2
  5621. NameMon = "Head Baker"
  5622. CFrameQ = CFrame.new(-1928.31763, 37.7296638, -12840.626, 0.951068401, -0, -0.308980465, 0, 1, -0, 0.308980465, 0, 0.951068401)
  5623. CFrameMon = CFrame.new(-2251.5791, 52.2714615, -13033.3965, -0.991971016, 0, -0.126466095, 0, 1, 0, 0.126466095, 0, -0.991971016)
  5624. end
  5625. end
  5626. end
  5627.  
  5628. function EquipWeapon(ToolSe)
  5629. if game.Players.LocalPlayer.Backpack:FindFirstChild(ToolSe) then
  5630. local tool = game.Players.LocalPlayer.Backpack:FindFirstChild(ToolSe)
  5631. wait(.4)
  5632. game.Players.LocalPlayer.Character.Humanoid:EquipTool(tool)
  5633. end
  5634. end
  5635.  
  5636. Type = 1
  5637. spawn(function()
  5638. while wait(.1) do
  5639. if Type == 1 then
  5640. Farm_Mode = CFrame.new(0, 30, 0)
  5641. elseif Type == 2 then
  5642. Farm_Mode = CFrame.new(0, 30, 0)
  5643. end
  5644. end
  5645. end)
  5646.  
  5647. spawn(function()
  5648. while wait(.1) do
  5649. Type = 1
  5650. wait(5)
  5651. Type = 2
  5652. wait(5)
  5653. end
  5654. end)
  5655.  
  5656. pcall(function()
  5657. for i,v in pairs(game:GetService("Workspace").Map.Dressrosa.Tavern:GetDescendants()) do
  5658. if v.ClassName == "Seat" then
  5659. v:Destroy()
  5660. end
  5661. end
  5662. end)
  5663.  
  5664. spawn(function()
  5665. while wait() do
  5666. if Auto_Farm then
  5667. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false then
  5668. MagnetActive = false
  5669. CheckLevel()
  5670. totarget(CFrameQ)
  5671. if (CFrameQ.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 4 then
  5672. wait(1.1)
  5673. CheckLevel()
  5674. if (CFrameQ.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 20 then
  5675. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StartQuest", NameQuest, QuestLv)
  5676. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetSpawnPoint")
  5677. else
  5678. totarget(CFrameQ)
  5679. end
  5680. end
  5681. elseif game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == true then
  5682. pcall(function()
  5683. CheckLevel()
  5684. if game:GetService("Workspace").Enemies:FindFirstChild(Ms) then
  5685. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  5686. if v.Name == Ms and v:FindFirstChild("Humanoid") then
  5687. if v.Humanoid.Health > 0 then
  5688. repeat game:GetService("RunService").Heartbeat:wait()
  5689. if game:GetService("Workspace").Enemies:FindFirstChild(Ms) then
  5690. if string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, NameMon) then
  5691. EquipWeapon(SelectToolWeapon)
  5692. totarget(v.HumanoidRootPart.CFrame * Farm_Mode)
  5693. v.HumanoidRootPart.CanCollide = false
  5694. v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
  5695. game:GetService("VirtualUser"):CaptureController()
  5696. game:GetService("VirtualUser"):Button1Down(Vector2.new(1280, 670),workspace.CurrentCamera.CFrame)
  5697. PosMon = v.HumanoidRootPart.CFrame
  5698. MagnetActive = true
  5699. else
  5700. MagnetActive = false
  5701. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
  5702. end
  5703. else
  5704. MagnetActive = false
  5705. CheckLevel()
  5706. totarget(CFrameMon)
  5707. end
  5708. until not v.Parent or v.Humanoid.Health <= 0 or Auto_Farm == false or game.Players.LocalPlayer.PlayerGui.Main.Quest.Visible == false or not game:GetService("Workspace").Enemies:FindFirstChild(v.Name)
  5709. end
  5710. end
  5711. end
  5712. else
  5713. MagnetActive = false
  5714. CheckLevel()
  5715. totarget(CFrameMon)
  5716. end
  5717. end)
  5718. end
  5719. end
  5720. end
  5721. end)
  5722.  
  5723. function Click()
  5724. game:GetService'VirtualUser':CaptureController()
  5725. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  5726. end
  5727.  
  5728. if SelectToolWeapon then
  5729. else
  5730. SelectToolWeapon = ""
  5731. end
  5732.  
  5733. SelectBoss = ""
  5734. function CheckQuestBoss()
  5735. -- Old World
  5736. if SelectBoss == "Saber Expert [Lv. 200] [Boss]" then
  5737. MsBoss = "Saber Expert [Lv. 200] [Boss]"
  5738. NameQuestBoss = ""
  5739. LevelQuestBoss = 3
  5740. NameBoss = ""
  5741. CFrameQuestBoss = CFrame.new(-1458.89502, 29.8870335, -50.633564)
  5742. CFrameBoss = CFrame.new(-1458.89502, 29.8870335, -50.633564, 0.858821094, 1.13848939e-08, 0.512275636, -4.85649254e-09, 1, -1.40823326e-08, -0.512275636, 9.6063415e-09, 0.858821094)
  5743. elseif SelectBoss == "The Saw [Lv. 100] [Boss]" then
  5744. MsBoss = "The Saw [Lv. 100] [Boss]"
  5745. NameQuestBoss = ""
  5746. LevelQuestBoss = 3
  5747. NameBoss = ""
  5748. CFrameQuestBoss = CFrame.new(-683.519897, 13.8534927, 1610.87854)
  5749. CFrameBoss = CFrame.new(-683.519897, 13.8534927, 1610.87854, -0.290192783, 6.88365773e-08, 0.956968188, 6.98413629e-08, 1, -5.07531119e-08, -0.956968188, 5.21077759e-08, -0.290192783)
  5750. elseif SelectBoss == "Greybeard [Lv. 750] [Raid Boss]" then
  5751. MsBoss = "Greybeard [Lv. 750] [Raid Boss]"
  5752. NameQuestBoss = ""
  5753. LevelQuestBoss = 3
  5754. NameBoss = ""
  5755. CFrameQuestBoss = CFrame.new(-4955.72949, 80.8163834, 4305.82666)
  5756. CFrameBoss = CFrame.new(-4955.72949, 80.8163834, 4305.82666, -0.433646321, -1.03394289e-08, 0.901083171, -3.0443168e-08, 1, -3.17633075e-09, -0.901083171, -2.88092288e-08, -0.433646321)
  5757. elseif SelectBoss == "Mob Leader [Lv. 120] [Boss]" then
  5758. MsBoss = "Mob Leader [Lv. 120] [Boss]"
  5759. NameQuestBoss = ""
  5760. LevelQuestBoss = 3
  5761. NameBoss = ""
  5762. CFrameQuestBoss = CFrame.new(-2848.59399, 7.4272871, 5342.44043)
  5763. CFrameBoss = CFrame.new(-2848.59399, 7.4272871, 5342.44043, -0.928248107, -8.7248246e-08, 0.371961564, -7.61816636e-08, 1, 4.44474857e-08, -0.371961564, 1.29216433e-08, -0.92824)
  5764.  
  5765. elseif SelectBoss == "The Gorilla King [Lv. 25] [Boss]" then
  5766. MsBoss = "The Gorilla King [Lv. 25] [Boss]"
  5767. NameQuestBoss = "JungleQuest"
  5768. LevelQuestBoss = 3
  5769. NameBoss = "The Gorilla King"
  5770. CFrameQuestBoss = CFrame.new(-1604.12012, 36.8521118, 154.23732, 0.0648873374, -4.70858913e-06, -0.997892559, 1.41431883e-07, 1, -4.70933674e-06, 0.997892559, 1.64442184e-07, 0.0648873374)
  5771. CFrameBoss = CFrame.new(-1223.52808, 6.27936459, -502.292664, 0.310949147, -5.66602516e-08, 0.950426519, -3.37275488e-08, 1, 7.06501808e-08, -0.950426519, -5.40241736e-08, 0.310949147)
  5772. elseif SelectBoss == "Bobby [Lv. 55] [Boss]" then
  5773. MsBoss = "Bobby [Lv. 55] [Boss]"
  5774. NameQuestBoss = "BuggyQuest1"
  5775. LevelQuestBoss = 3
  5776. NameBoss = "Bobby"
  5777. CFrameQuestBoss = CFrame.new(-1139.59717, 4.75205183, 3825.16211, -0.959730506, -7.5857054e-09, 0.280922383, -4.06310328e-08, 1, -1.11807175e-07, -0.280922383, -1.18718916e-07, -0.959730506)
  5778. CFrameBoss = CFrame.new(-1147.65173, 32.5966301, 4156.02588, 0.956680477, -1.77109952e-10, -0.29113996, 5.16530874e-10, 1, 1.08897802e-09, 0.29113996, -1.19218679e-09, 0.956680477)
  5779. elseif SelectBoss == "Yeti [Lv. 110] [Boss]" then
  5780. MsBoss = "Yeti [Lv. 110] [Boss]"
  5781. NameQuestBoss = "SnowQuest"
  5782. LevelQuestBoss = 3
  5783. NameBoss = "Yeti"
  5784. CFrameQuestBoss = CFrame.new(1384.90247, 87.3078308, -1296.6825, 0.280209213, 2.72035177e-08, -0.959938943, -6.75690828e-08, 1, 8.6151708e-09, 0.959938943, 6.24481444e-08, 0.280209213)
  5785. CFrameBoss = CFrame.new(1221.7356, 138.046906, -1488.84082, 0.349343032, -9.49245944e-08, 0.936994851, 6.29478194e-08, 1, 7.7838429e-08, -0.936994851, 3.17894653e-08, 0.349343032)
  5786. elseif SelectBoss == "Vice Admiral [Lv. 130] [Boss]" then
  5787. MsBoss = "Vice Admiral [Lv. 130] [Boss]"
  5788. NameQuestBoss = "MarineQuest2"
  5789. LevelQuestBoss = 2
  5790. NameBoss = "Vice Admiral"
  5791. CFrameQuestBoss = CFrame.new(-5035.42285, 28.6520386, 4324.50293, -0.0611100644, -8.08395768e-08, 0.998130739, -1.57416586e-08, 1, 8.00271849e-08, -0.998130739, -1.08217701e-08, -0.0611100644)
  5792. CFrameBoss = CFrame.new(-5078.45898, 99.6520691, 4402.1665, -0.555574954, -9.88630566e-11, 0.831466436, -6.35508286e-08, 1, -4.23449258e-08, -0.831466436, -7.63661632e-08, -0.555574954)
  5793. elseif SelectBoss == "Warden [Lv. 175] [Boss]" then
  5794. MsBoss = "Warden [Lv. 175] [Boss]"
  5795. NameQuestBoss = "ImpelQuest"
  5796. LevelQuestBoss = 1
  5797. NameBoss = "Warden"
  5798. CFrameQuestBoss = CFrame.new(4851.35059, 5.68744135, 743.251282, -0.538484037, -6.68303741e-08, -0.842635691, 1.38001752e-08, 1, -8.81300792e-08, 0.842635691, -5.90851599e-08, -0.538484037)
  5799. CFrameBoss = CFrame.new(5232.5625, 5.26856995, 747.506897, 0.943829298, -4.5439414e-08, 0.330433697, 3.47818627e-08, 1, 3.81658154e-08, -0.330433697, -2.45289105e-08, 0.943829298)
  5800. elseif SelectBoss == "Chief Warden [Lv. 200] [Boss]" then
  5801. MsBoss = "Chief Warden [Lv. 200] [Boss]"
  5802. NameQuestBoss = "ImpelQuest"
  5803. LevelQuestBoss = 2
  5804. NameBoss = "Chief Warden"
  5805. CFrameQuestBoss = CFrame.new(4851.35059, 5.68744135, 743.251282, -0.538484037, -6.68303741e-08, -0.842635691, 1.38001752e-08, 1, -8.81300792e-08, 0.842635691, -5.90851599e-08, -0.538484037)
  5806. CFrameBoss = CFrame.new(5232.5625, 5.26856995, 747.506897, 0.943829298, -4.5439414e-08, 0.330433697, 3.47818627e-08, 1, 3.81658154e-08, -0.330433697, -2.45289105e-08, 0.943829298)
  5807. elseif SelectBoss == "Swan [Lv. 225] [Boss]" then
  5808. MsBoss = "Swan [Lv. 225] [Boss]"
  5809. NameQuestBoss = "ImpelQuest"
  5810. LevelQuestBoss = 3
  5811. NameBoss = "Swan"
  5812. CFrameQuestBoss = CFrame.new(4851.35059, 5.68744135, 743.251282, -0.538484037, -6.68303741e-08, -0.842635691, 1.38001752e-08, 1, -8.81300792e-08, 0.842635691, -5.90851599e-08, -0.538484037)
  5813. CFrameBoss = CFrame.new(5232.5625, 5.26856995, 747.506897, 0.943829298, -4.5439414e-08, 0.330433697, 3.47818627e-08, 1, 3.81658154e-08, -0.330433697, -2.45289105e-08, 0.943829298)
  5814. elseif SelectBoss == "Magma Admiral [Lv. 350] [Boss]" then
  5815. MsBoss = "Magma Admiral [Lv. 350] [Boss]"
  5816. NameQuestBoss = "MagmaQuest"
  5817. LevelQuestBoss = 3
  5818. NameBoss = "Magma Admiral"
  5819. CFrameQuestBoss = CFrame.new(-5317.07666, 12.2721891, 8517.41699, 0.51175487, -2.65508806e-08, -0.859131515, -3.91131572e-08, 1, -5.42026761e-08, 0.859131515, 6.13418294e-08, 0.51175487)
  5820. CFrameBoss = CFrame.new(-5530.12646, 22.8769703, 8859.91309, 0.857838571, 2.23414389e-08, 0.513919294, 1.53689133e-08, 1, -6.91265853e-08, -0.513919294, 6.71978384e-08, 0.857838571)
  5821. elseif SelectBoss == "Fishman Lord [Lv. 425] [Boss]" then
  5822. MsBoss = "Fishman Lord [Lv. 425] [Boss]"
  5823. NameQuestBoss = "FishmanQuest"
  5824. LevelQuestBoss = 3
  5825. NameBoss = "Fishman Lord"
  5826. CFrameQuestBoss = CFrame.new(61123.0859, 18.5066795, 1570.18018, 0.927145958, 1.0624845e-07, 0.374700129, -6.98219367e-08, 1, -1.10790765e-07, -0.374700129, 7.65569368e-08, 0.927145958)
  5827. CFrameBoss = CFrame.new(61351.7773, 31.0306778, 1113.31409, 0.999974668, 0, -0.00714713801, 0, 1.00000012, 0, 0.00714714266, 0, 0.999974549)
  5828. elseif SelectBoss == "Wysper [Lv. 500] [Boss]" then
  5829. MsBoss = "Wysper [Lv. 500] [Boss]"
  5830. NameQuestBoss = "SkyExp1Quest"
  5831. LevelQuestBoss = 3
  5832. NameBoss = "Wysper"
  5833. CFrameQuestBoss = CFrame.new(-7862.94629, 5545.52832, -379.833954, 0.462944925, 1.45838088e-08, -0.886386991, 1.0534996e-08, 1, 2.19553424e-08, 0.886386991, -1.95022007e-08, 0.462944925)
  5834. CFrameBoss = CFrame.new(-7925.48389, 5550.76074, -636.178345, 0.716468513, -1.22915289e-09, 0.697619379, 3.37381434e-09, 1, -1.70304748e-09, -0.697619379, 3.57381835e-09, 0.716468513)
  5835. elseif SelectBoss == "Thunder God [Lv. 575] [Boss]" then
  5836. MsBoss = "Thunder God [Lv. 575] [Boss]"
  5837. NameQuestBoss = "SkyExp2Quest"
  5838. LevelQuestBoss = 3
  5839. NameBoss = "Thunder God"
  5840. CFrameQuestBoss = CFrame.new(-7902.78613, 5635.99902, -1411.98706, -0.0361216255, -1.16895912e-07, 0.999347389, 1.44533963e-09, 1, 1.17024491e-07, -0.999347389, 5.6715117e-09, -0.0361216255)
  5841. CFrameBoss = CFrame.new(-7917.53613, 5616.61377, -2277.78564, 0.965189934, 4.80563429e-08, -0.261550069, -6.73089886e-08, 1, -6.46515304e-08, 0.261550069, 8.00056768e-08, 0.965189934)
  5842. elseif SelectBoss == "Cyborg [Lv. 675] [Boss]" then
  5843. MsBoss = "Cyborg [Lv. 675] [Boss]"
  5844. NameQuestBoss = "FountainQuest"
  5845. LevelQuestBoss = 3
  5846. NameBoss = "Cyborg"
  5847. CFrameQuestBoss = CFrame.new(5253.54834, 38.5361786, 4050.45166, -0.0112687312, -9.93677887e-08, -0.999936521, 2.55291371e-10, 1, -9.93769547e-08, 0.999936521, -1.37512213e-09, -0.0112687312)
  5848. CFrameBoss = CFrame.new(6041.82813, 52.7112198, 3907.45142, -0.563162148, 1.73805248e-09, -0.826346457, -5.94632716e-08, 1, 4.26280238e-08, 0.826346457, 7.31437524e-08, -0.563162148)
  5849.  
  5850. -- New World
  5851. elseif SelectBoss == "Don Swan [Lv. 1000] [Boss]" then
  5852. MsBoss = "Don Swan [Lv. 1000] [Boss]"
  5853. NameQuestBoss = ""
  5854. LevelQuestBoss = 3
  5855. NameBoss = "Don Swan"
  5856. CFrameBoss = CFrame.new(2288.802, 15.1870775, 863.034607, 0.99974072, -8.41247214e-08, -0.0227668174, 8.4774733e-08, 1, 2.75850098e-08, 0.0227668174, -2.95079072e-08, 0.99974072)
  5857.  
  5858. elseif SelectBoss == "Diamond [Lv. 750] [Boss]" then
  5859. MsBoss = "Diamond [Lv. 750] [Boss]"
  5860. NameQuestBoss = "Area1Quest"
  5861. LevelQuestBoss = 3
  5862. NameBoss = "Diamond"
  5863. CFrameQuestBoss = CFrame.new(-424.080078, 73.0055847, 1836.91589, 0.253544956, -1.42165932e-08, 0.967323601, -6.00147771e-08, 1, 3.04272909e-08, -0.967323601, -6.5768397e-08, 0.253544956)
  5864. CFrameBoss = CFrame.new(-1736.26587, 198.627731, -236.412857, -0.997808516, 0, -0.0661673471, 0, 1, 0, 0.0661673471, 0, -0.997808516)
  5865. elseif SelectBoss == "Jeremy [Lv. 850] [Boss]" then
  5866. MsBoss = "Jeremy [Lv. 850] [Boss]"
  5867. NameQuestBoss = "Area2Quest"
  5868. LevelQuestBoss = 3
  5869. NameBoss = "Jeremy"
  5870. CFrameQuestBoss = 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)
  5871. CFrameBoss = CFrame.new(2203.76953, 448.966034, 752.731079, -0.0217453763, 0, -0.999763548, 0, 1, 0, 0.999763548, 0, -0.0217453763)
  5872. elseif SelectBoss == "Fajita [Lv. 925] [Boss]" then
  5873. MsBoss = "Fajita [Lv. 925] [Boss]"
  5874. NameQuestBoss = "MarineQuest3"
  5875. LevelQuestBoss = 3
  5876. NameBoss = "Fajita"
  5877. CFrameQuestBoss = CFrame.new(-2442.65015, 73.0511475, -3219.11523, -0.873540044, 4.2329841e-08, -0.486752301, 5.64383384e-08, 1, -1.43220786e-08, 0.486752301, -3.99823996e-08, -0.873540044)
  5878. CFrameBoss = CFrame.new(-2297.40332, 115.449463, -3946.53833, 0.961227536, -1.46645796e-09, -0.275756449, -2.3212845e-09, 1, -1.34094433e-08, 0.275756449, 1.35296352e-08, 0.961227536)
  5879. elseif SelectBoss == "Smoke Admiral [Lv. 1150] [Boss]" then
  5880. MsBoss = "Smoke Admiral [Lv. 1150] [Boss]"
  5881. NameQuestBoss = "IceSideQuest"
  5882. LevelQuestBoss = 3
  5883. NameBoss = "Smoke Admiral"
  5884. CFrameQuestBoss = CFrame.new(-6059.96191, 15.9868021, -4904.7373, -0.444992423, -3.0874483e-09, 0.895534337, -3.64098796e-08, 1, -1.4644522e-08, -0.895534337, -3.91229982e-08, -0.444992423)
  5885. CFrameBoss = CFrame.new(-5115.72754, 23.7664986, -5338.2207, 0.251453817, 1.48345061e-08, -0.967869282, 4.02796978e-08, 1, 2.57916977e-08, 0.967869282, -4.54708946e-08, 0.251453817)
  5886. elseif SelectBoss == "Awakened Ice Admiral [Lv. 1400] [Boss]" then
  5887. MsBoss = "Awakened Ice Admiral [Lv. 1400] [Boss]"
  5888. NameQuestBoss = "FrostQuest"
  5889. LevelQuestBoss = 3
  5890. NameBoss = "Awakened Ice Admiral"
  5891. CFrameQuestBoss = CFrame.new(5669.33203, 28.2118053, -6481.55908, 0.921275556, -1.25320829e-08, 0.388910472, 4.72230788e-08, 1, -7.96414241e-08, -0.388910472, 9.17372489e-08, 0.921275556)
  5892. CFrameBoss = CFrame.new(6407.33936, 340.223785, -6892.521, 0.49051559, -5.25310213e-08, -0.871432424, -2.76146022e-08, 1, -7.58250565e-08, 0.871432424, 6.12576301e-08, 0.49051559)
  5893. elseif SelectBoss == "Tide Keeper [Lv. 1475] [Boss]" then
  5894. MsBoss = "Tide Keeper [Lv. 1475] [Boss]"
  5895. NameQuestBoss = "ForgottenQuest"
  5896. LevelQuestBoss = 3
  5897. NameBoss = "Tide Keeper"
  5898. CFrameQuestBoss = CFrame.new(-3053.89648, 236.881363, -10148.2324, -0.985987961, -3.58504737e-09, 0.16681771, -3.07832915e-09, 1, 3.29612559e-09, -0.16681771, 2.73641976e-09, -0.985987961)
  5899. CFrameBoss = 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)
  5900.  
  5901. elseif SelectBoss == "Cursed Captain [Lv. 1325] [Raid Boss]" then
  5902. MsBoss = "Cursed Captain [Lv. 1325] [Raid Boss]"
  5903. NameQuestBoss = ""
  5904. LevelQuestBoss = 3
  5905. NameBoss = "Cursed Captain"
  5906. CFrameQuestBoss = CFrame.new(916.928589, 181.092773, 33422)
  5907. CFrameBoss = CFrame.new(916.928589, 181.092773, 33422, -0.999505103, 9.26310495e-09, 0.0314563364, 8.42916226e-09, 1, -2.6643713e-08, -0.0314563364, -2.63653774e-08, -0.999505103)
  5908. elseif SelectBoss == "Darkbeard [Lv. 1000] [Raid Boss]" then
  5909. MsBoss = "Darkbeard [Lv. 1000] [Raid Boss]"
  5910. NameQuestBoss = ""
  5911. LevelQuestBoss = 3
  5912. NameBoss = "Darkbeard"
  5913. CFrameQuestBoss = CFrame.new(3876.00366, 24.6882591, -3820.21777)
  5914. CFrameBoss = CFrame.new(3876.00366, 24.6882591, -3820.21777, -0.976951957, 4.97356325e-08, 0.213458836, 4.57335361e-08, 1, -2.36868622e-08, -0.213458836, -1.33787044e-08, -0.976951957)
  5915. elseif SelectBoss == "Order [Lv. 1250] [Raid Boss]" then
  5916. MsBoss = "Order [Lv. 1250] [Raid Boss]"
  5917. NameQuestBoss = ""
  5918. LevelQuestBoss = 3
  5919. NameBoss = "Order"
  5920. CFrameQuestBoss = CFrame.new(-6221.15039, 16.2351036, -5045.23584)
  5921. CFrameBoss = CFrame.new(-6221.15039, 16.2351036, -5045.23584, -0.380726993, 7.41463495e-08, 0.924687505, 5.85604774e-08, 1, -5.60738549e-08, -0.924687505, 3.28013137e-08, -0.380726993)
  5922.  
  5923. -- Thire World
  5924. elseif SelectBoss == "Stone [Lv. 1550] [Boss]" then
  5925. MsBoss = "Stone [Lv. 1550] [Boss]"
  5926. NameQuestBoss = "PiratePortQuest"
  5927. LevelQuestBoss = 3
  5928. NameBoss = "Stone"
  5929. CFrameQuestBoss = CFrame.new(-290, 44, 5577)
  5930. CFrameBoss = CFrame.new(-1085, 40, 6779)
  5931. elseif SelectBoss == "Island Empress [Lv. 1675] [Boss]" then
  5932. MsBoss = "Island Empress [Lv. 1675] [Boss]"
  5933. NameQuestBoss = "AmazonQuest2"
  5934. LevelQuestBoss = 3
  5935. NameBoss = "Island Empress"
  5936. CFrameQuestBoss = CFrame.new(5443, 602, 752)
  5937. CFrameBoss = CFrame.new(5659, 602, 244)
  5938. elseif SelectBoss == "Kilo Admiral [Lv. 1750] [Boss]" then
  5939. MsBoss = "Kilo Admiral [Lv. 1750] [Boss]"
  5940. NameQuestBoss = "MarineTreeIsland"
  5941. LevelQuestBoss = 3
  5942. NameBoss = "Kilo Admiral"
  5943. CFrameQuestBoss = CFrame.new(2178, 29, -6737)
  5944. CFrameBoss =CFrame.new(2846, 433, -7100)
  5945. elseif SelectBoss == "Captain Elephant [Lv. 1875] [Boss]" then
  5946. MsBoss = "Captain Elephant [Lv. 1875] [Boss]"
  5947. NameQuestBoss = "DeepForestIsland"
  5948. LevelQuestBoss = 3
  5949. NameBoss = "Captain Elephant"
  5950. CFrameQuestBoss = CFrame.new(-13232, 333, -7631)
  5951. CFrameBoss = CFrame.new(-13221, 325, -8405)
  5952. elseif SelectBoss == "Beautiful Pirate [Lv. 1950] [Boss]" then
  5953. MsBoss = "Beautiful Pirate [Lv. 1950] [Boss]"
  5954. NameQuestBoss = "DeepForestIsland2"
  5955. LevelQuestBoss = 3
  5956. NameBoss = "Beautiful Pirate"
  5957. CFrameQuestBoss = CFrame.new(-12686, 391, -9902)
  5958. CFrameBoss = CFrame.new(5182, 23, -20)
  5959. elseif SelectBoss == "Cake Queen [Lv. 2175] [Boss]" then
  5960. MsBoss = "Cake Queen [Lv. 2175] [Boss]"
  5961. NameQuestBoss = "IceCreamIslandQuest"
  5962. LevelQuestBoss = 3
  5963. NameBoss = "Cake Queen"
  5964. CFrameQuestBoss = CFrame.new(-716, 382, -11010)
  5965. CFrameBoss = CFrame.new(-821, 66, -10965)
  5966.  
  5967. elseif SelectBoss == "rip_indra True Form [Lv. 5000] [Raid Boss]" then
  5968. MsBoss = "rip_indra True Form [Lv. 5000] [Raid Boss]"
  5969. LevelQuestBoss = 3
  5970. NameQuestBoss = ""
  5971. NameBoss = "rip_indra True Form"
  5972. CFrameQuestBoss = CFrame.new(-5359, 424, -2735)
  5973. CFrameBoss = CFrame.new(-5359, 424, -2735)
  5974. elseif SelectBoss == "Longma [Lv. 2000] [Boss]" then
  5975. MsBoss = "Longma [Lv. 2000] [Boss]"
  5976. LevelQuestBoss = 3
  5977. NameQuestBoss = ""
  5978. NameBoss = "Longma"
  5979. CFrameQuestBoss = CFrame.new(-10248.3936, 353.79129, -9306.34473)
  5980. CFrameBoss = CFrame.new(-10248.3936, 353.79129, -9306.34473)
  5981. elseif SelectBoss == "Soul Reaper [Lv. 2100] [Raid Boss]" then
  5982. MsBoss = "Soul Reaper [Lv. 2100] [Raid Boss]"
  5983. LevelQuestBoss = 3
  5984. NameQuestBoss = ""
  5985. NameBoss = "Soul Reaper"
  5986. CFrameQuestBoss = CFrame.new(-9515.62109, 315.925537, 6691.12012)
  5987. CFrameBoss = CFrame.new(-9515.62109, 315.925537, 6691.12012)
  5988. end
  5989. end
  5990. CheckQuestBoss()
  5991.  
  5992. AutoQuestBoss = true
  5993. function CheckQuestBoss()
  5994. -- Old World
  5995. if SelectBoss == "Saber Expert [Lv. 200] [Boss]" then
  5996. MsBoss = "Saber Expert [Lv. 200] [Boss]"
  5997. CFrameBoss = CFrame.new(-1458.89502, 29.8870335, -50.633564, 0.858821094, 1.13848939e-08, 0.512275636, -4.85649254e-09, 1, -1.40823326e-08, -0.512275636, 9.6063415e-09, 0.858821094)
  5998. elseif SelectBoss == "The Saw [Lv. 100] [Boss]" then
  5999. MsBoss = "The Saw [Lv. 100] [Boss]"
  6000. CFrameBoss = CFrame.new(-683.519897, 13.8534927, 1610.87854, -0.290192783, 6.88365773e-08, 0.956968188, 6.98413629e-08, 1, -5.07531119e-08, -0.956968188, 5.21077759e-08, -0.290192783)
  6001. elseif SelectBoss == "Greybeard [Lv. 750] [Raid Boss]" then
  6002. MsBoss = "Greybeard [Lv. 750] [Raid Boss]"
  6003. CFrameBoss = CFrame.new(-4955.72949, 80.8163834, 4305.82666, -0.433646321, -1.03394289e-08, 0.901083171, -3.0443168e-08, 1, -3.17633075e-09, -0.901083171, -2.88092288e-08, -0.433646321)
  6004. elseif SelectBoss == "The Gorilla King [Lv. 25] [Boss]" then
  6005. MsBoss = "The Gorilla King [Lv. 25] [Boss]"
  6006. NameQuestBoss = "JungleQuest"
  6007. LevelQuestBoss = 3
  6008. CFrameQuestBoss = CFrame.new(-1604.12012, 36.8521118, 154.23732, 0.0648873374, -4.70858913e-06, -0.997892559, 1.41431883e-07, 1, -4.70933674e-06, 0.997892559, 1.64442184e-07, 0.0648873374)
  6009. CFrameBoss = CFrame.new(-1223.52808, 6.27936459, -502.292664, 0.310949147, -5.66602516e-08, 0.950426519, -3.37275488e-08, 1, 7.06501808e-08, -0.950426519, -5.40241736e-08, 0.310949147)
  6010. elseif SelectBoss == "Bobby [Lv. 55] [Boss]" then
  6011. MsBoss = "Bobby [Lv. 55] [Boss]"
  6012. NameQuestBoss = "BuggyQuest1"
  6013. LevelQuestBoss = 3
  6014. CFrameQuestBoss = CFrame.new(-1139.59717, 4.75205183, 3825.16211, -0.959730506, -7.5857054e-09, 0.280922383, -4.06310328e-08, 1, -1.11807175e-07, -0.280922383, -1.18718916e-07, -0.959730506)
  6015. CFrameBoss = CFrame.new(-1147.65173, 32.5966301, 4156.02588, 0.956680477, -1.77109952e-10, -0.29113996, 5.16530874e-10, 1, 1.08897802e-09, 0.29113996, -1.19218679e-09, 0.956680477)
  6016. elseif SelectBoss == "Yeti [Lv. 110] [Boss]" then
  6017. MsBoss = "Yeti [Lv. 110] [Boss]"
  6018. NameQuestBoss = "SnowQuest"
  6019. LevelQuestBoss = 3
  6020. CFrameQuestBoss = CFrame.new(1384.90247, 87.3078308, -1296.6825, 0.280209213, 2.72035177e-08, -0.959938943, -6.75690828e-08, 1, 8.6151708e-09, 0.959938943, 6.24481444e-08, 0.280209213)
  6021. CFrameBoss = CFrame.new(1221.7356, 138.046906, -1488.84082, 0.349343032, -9.49245944e-08, 0.936994851, 6.29478194e-08, 1, 7.7838429e-08, -0.936994851, 3.17894653e-08, 0.349343032)
  6022. elseif SelectBoss == "Mob Leader [Lv. 120] [Boss]" then
  6023. MsBoss = "Mob Leader [Lv. 120] [Boss]"
  6024. CFrameBoss = CFrame.new(-2848.59399, 7.4272871, 5342.44043, -0.928248107, -8.7248246e-08, 0.371961564, -7.61816636e-08, 1, 4.44474857e-08, -0.371961564, 1.29216433e-08, -0.92824)
  6025. elseif SelectBoss == "Vice Admiral [Lv. 130] [Boss]" then
  6026. MsBoss = "Vice Admiral [Lv. 130] [Boss]"
  6027. NameQuestBoss = "MarineQuest2"
  6028. LevelQuestBoss = 2
  6029. CFrameQuestBoss = CFrame.new(-5035.42285, 28.6520386, 4324.50293, -0.0611100644, -8.08395768e-08, 0.998130739, -1.57416586e-08, 1, 8.00271849e-08, -0.998130739, -1.08217701e-08, -0.0611100644)
  6030. CFrameBoss = CFrame.new(-5078.45898, 99.6520691, 4402.1665, -0.555574954, -9.88630566e-11, 0.831466436, -6.35508286e-08, 1, -4.23449258e-08, -0.831466436, -7.63661632e-08, -0.555574954)
  6031. elseif SelectBoss == "Warden [Lv. 175] [Boss]" then
  6032. MsBoss = "Warden [Lv. 175] [Boss]"
  6033. NameQuestBoss = "ImpelQuest"
  6034. LevelQuestBoss = 1
  6035. CFrameQuestBoss = CFrame.new(4851.35059, 5.68744135, 743.251282, -0.538484037, -6.68303741e-08, -0.842635691, 1.38001752e-08, 1, -8.81300792e-08, 0.842635691, -5.90851599e-08, -0.538484037)
  6036. CFrameBoss = CFrame.new(5232.5625, 5.26856995, 747.506897, 0.943829298, -4.5439414e-08, 0.330433697, 3.47818627e-08, 1, 3.81658154e-08, -0.330433697, -2.45289105e-08, 0.943829298)
  6037. elseif SelectBoss == "Chief Warden [Lv. 200] [Boss]" then
  6038. MsBoss = "Chief Warden [Lv. 200] [Boss]"
  6039. NameQuestBoss = "ImpelQuest"
  6040. LevelQuestBoss = 2
  6041. CFrameQuestBoss = CFrame.new(4851.35059, 5.68744135, 743.251282, -0.538484037, -6.68303741e-08, -0.842635691, 1.38001752e-08, 1, -8.81300792e-08, 0.842635691, -5.90851599e-08, -0.538484037)
  6042. CFrameBoss = CFrame.new(5232.5625, 5.26856995, 747.506897, 0.943829298, -4.5439414e-08, 0.330433697, 3.47818627e-08, 1, 3.81658154e-08, -0.330433697, -2.45289105e-08, 0.943829298)
  6043. elseif SelectBoss == "Swan [Lv. 225] [Boss]" then
  6044. MsBoss = "Swan [Lv. 225] [Boss]"
  6045. NameQuestBoss = "ImpelQuest"
  6046. LevelQuestBoss = 3
  6047. CFrameQuestBoss = CFrame.new(4851.35059, 5.68744135, 743.251282, -0.538484037, -6.68303741e-08, -0.842635691, 1.38001752e-08, 1, -8.81300792e-08, 0.842635691, -5.90851599e-08, -0.538484037)
  6048. CFrameBoss = CFrame.new(5232.5625, 5.26856995, 747.506897, 0.943829298, -4.5439414e-08, 0.330433697, 3.47818627e-08, 1, 3.81658154e-08, -0.330433697, -2.45289105e-08, 0.943829298)
  6049. elseif SelectBoss == "Magma Admiral [Lv. 350] [Boss]" then
  6050. MsBoss = "Magma Admiral [Lv. 350] [Boss]"
  6051. NameQuestBoss = "MagmaQuest"
  6052. LevelQuestBoss = 3
  6053. CFrameQuestBoss = CFrame.new(-5317.07666, 12.2721891, 8517.41699, 0.51175487, -2.65508806e-08, -0.859131515, -3.91131572e-08, 1, -5.42026761e-08, 0.859131515, 6.13418294e-08, 0.51175487)
  6054. CFrameBoss = CFrame.new(-5530.12646, 22.8769703, 8859.91309, 0.857838571, 2.23414389e-08, 0.513919294, 1.53689133e-08, 1, -6.91265853e-08, -0.513919294, 6.71978384e-08, 0.857838571)
  6055. elseif SelectBoss == "Fishman Lord [Lv. 425] [Boss]" then
  6056. MsBoss = "Fishman Lord [Lv. 425] [Boss]"
  6057. NameQuestBoss = "FishmanQuest"
  6058. LevelQuestBoss = 3
  6059. CFrameQuestBoss = CFrame.new(61123.0859, 18.5066795, 1570.18018, 0.927145958, 1.0624845e-07, 0.374700129, -6.98219367e-08, 1, -1.10790765e-07, -0.374700129, 7.65569368e-08, 0.927145958)
  6060. CFrameBoss = CFrame.new(61351.7773, 31.0306778, 1113.31409, 0.999974668, 0, -0.00714713801, 0, 1.00000012, 0, 0.00714714266, 0, 0.999974549)
  6061. elseif SelectBoss == "Wysper [Lv. 500] [Boss]" then
  6062. MsBoss = "Wysper [Lv. 500] [Boss]"
  6063. NameQuestBoss = "SkyExp1Quest"
  6064. LevelQuestBoss = 3
  6065. CFrameQuestBoss = CFrame.new(-7862.94629, 5545.52832, -379.833954, 0.462944925, 1.45838088e-08, -0.886386991, 1.0534996e-08, 1, 2.19553424e-08, 0.886386991, -1.95022007e-08, 0.462944925)
  6066. CFrameBoss = CFrame.new(-7925.48389, 5550.76074, -636.178345, 0.716468513, -1.22915289e-09, 0.697619379, 3.37381434e-09, 1, -1.70304748e-09, -0.697619379, 3.57381835e-09, 0.716468513)
  6067. elseif SelectBoss == "Thunder God [Lv. 575] [Boss]" then
  6068. MsBoss = "Thunder God [Lv. 575] [Boss]"
  6069. NameQuestBoss = "SkyExp2Quest"
  6070. LevelQuestBoss = 3
  6071. CFrameQuestBoss = CFrame.new(-7902.78613, 5635.99902, -1411.98706, -0.0361216255, -1.16895912e-07, 0.999347389, 1.44533963e-09, 1, 1.17024491e-07, -0.999347389, 5.6715117e-09, -0.0361216255)
  6072. CFrameBoss = CFrame.new(-7917.53613, 5616.61377, -2277.78564, 0.965189934, 4.80563429e-08, -0.261550069, -6.73089886e-08, 1, -6.46515304e-08, 0.261550069, 8.00056768e-08, 0.965189934)
  6073. elseif SelectBoss == "Cyborg [Lv. 675] [Boss]" then
  6074. MsBoss = "Cyborg [Lv. 675] [Boss]"
  6075. NameQuestBoss = "FountainQuest"
  6076. LevelQuestBoss = 3
  6077. CFrameQuestBoss = CFrame.new(5253.54834, 38.5361786, 4050.45166, -0.0112687312, -9.93677887e-08, -0.999936521, 2.55291371e-10, 1, -9.93769547e-08, 0.999936521, -1.37512213e-09, -0.0112687312)
  6078. CFrameBoss = CFrame.new(6041.82813, 52.7112198, 3907.45142, -0.563162148, 1.73805248e-09, -0.826346457, -5.94632716e-08, 1, 4.26280238e-08, 0.826346457, 7.31437524e-08, -0.563162148)
  6079. -- New World
  6080. elseif SelectBoss == "Diamond [Lv. 750] [Boss]" then
  6081. MsBoss = "Diamond [Lv. 750] [Boss]"
  6082. NameQuestBoss = "Area1Quest"
  6083. LevelQuestBoss = 3
  6084. CFrameQuestBoss = CFrame.new(-424.080078, 73.0055847, 1836.91589, 0.253544956, -1.42165932e-08, 0.967323601, -6.00147771e-08, 1, 3.04272909e-08, -0.967323601, -6.5768397e-08, 0.253544956)
  6085. CFrameBoss = CFrame.new(-1736.26587, 198.627731, -236.412857, -0.997808516, 0, -0.0661673471, 0, 1, 0, 0.0661673471, 0, -0.997808516)
  6086. elseif SelectBoss == "Jeremy [Lv. 850] [Boss]" then
  6087. MsBoss = "Jeremy [Lv. 850] [Boss]"
  6088. NameQuestBoss = "Area2Quest"
  6089. LevelQuestBoss = 3
  6090. CFrameQuestBoss = 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)
  6091. CFrameBoss = CFrame.new(2203.76953, 448.966034, 752.731079, -0.0217453763, 0, -0.999763548, 0, 1, 0, 0.999763548, 0, -0.0217453763)
  6092. elseif SelectBoss == "Fajita [Lv. 925] [Boss]" then
  6093. MsBoss = "Fajita [Lv. 925] [Boss]"
  6094. NameQuestBoss = "MarineQuest3"
  6095. LevelQuestBoss = 3
  6096. CFrameQuestBoss = CFrame.new(-2442.65015, 73.0511475, -3219.11523, -0.873540044, 4.2329841e-08, -0.486752301, 5.64383384e-08, 1, -1.43220786e-08, 0.486752301, -3.99823996e-08, -0.873540044)
  6097. CFrameBoss = CFrame.new(-2297.40332, 115.449463, -3946.53833, 0.961227536, -1.46645796e-09, -0.275756449, -2.3212845e-09, 1, -1.34094433e-08, 0.275756449, 1.35296352e-08, 0.961227536)
  6098. elseif SelectBoss == "Don Swan [Lv. 1000] [Boss]" then
  6099. MsBoss = "Don Swan [Lv. 1000] [Boss]"
  6100. CFrameBoss = CFrame.new(2288.802, 15.1870775, 863.034607, 0.99974072, -8.41247214e-08, -0.0227668174, 8.4774733e-08, 1, 2.75850098e-08, 0.0227668174, -2.95079072e-08, 0.99974072)
  6101. elseif SelectBoss == "Smoke Admiral [Lv. 1150] [Boss]" then
  6102. MsBoss = "Smoke Admiral [Lv. 1150] [Boss]"
  6103. NameQuestBoss = "IceSideQuest"
  6104. LevelQuestBoss = 3
  6105. CFrameQuestBoss = CFrame.new(-6059.96191, 15.9868021, -4904.7373, -0.444992423, -3.0874483e-09, 0.895534337, -3.64098796e-08, 1, -1.4644522e-08, -0.895534337, -3.91229982e-08, -0.444992423)
  6106. CFrameBoss = CFrame.new(-5115.72754, 23.7664986, -5338.2207, 0.251453817, 1.48345061e-08, -0.967869282, 4.02796978e-08, 1, 2.57916977e-08, 0.967869282, -4.54708946e-08, 0.251453817)
  6107. elseif SelectBoss == "Cursed Captain [Lv. 1325] [Raid Boss]" then
  6108. MsBoss = "Cursed Captain [Lv. 1325] [Raid Boss]"
  6109. CFrameBoss = CFrame.new(916.928589, 181.092773, 33422, -0.999505103, 9.26310495e-09, 0.0314563364, 8.42916226e-09, 1, -2.6643713e-08, -0.0314563364, -2.63653774e-08, -0.999505103)
  6110. elseif SelectBoss == "Darkbeard [Lv. 1000] [Raid Boss]" then
  6111. MsBoss = "Darkbeard [Lv. 1000] [Raid Boss]"
  6112. CFrameBoss = CFrame.new(3876.00366, 24.6882591, -3820.21777, -0.976951957, 4.97356325e-08, 0.213458836, 4.57335361e-08, 1, -2.36868622e-08, -0.213458836, -1.33787044e-08, -0.976951957)
  6113. elseif SelectBoss == "Order [Lv. 1250] [Raid Boss]" then
  6114. MsBoss = "Order [Lv. 1250] [Raid Boss]"
  6115. CFrameBoss = CFrame.new(-6221.15039, 16.2351036, -5045.23584, -0.380726993, 7.41463495e-08, 0.924687505, 5.85604774e-08, 1, -5.60738549e-08, -0.924687505, 3.28013137e-08, -0.380726993)
  6116. elseif SelectBoss == "Awakened Ice Admiral [Lv. 1400] [Boss]" then
  6117. MsBoss = "Awakened Ice Admiral [Lv. 1400] [Boss]"
  6118. NameQuestBoss = "FrostQuest"
  6119. LevelQuestBoss = 3
  6120. CFrameQuestBoss = CFrame.new(5669.33203, 28.2118053, -6481.55908, 0.921275556, -1.25320829e-08, 0.388910472, 4.72230788e-08, 1, -7.96414241e-08, -0.388910472, 9.17372489e-08, 0.921275556)
  6121. CFrameBoss = CFrame.new(6407.33936, 340.223785, -6892.521, 0.49051559, -5.25310213e-08, -0.871432424, -2.76146022e-08, 1, -7.58250565e-08, 0.871432424, 6.12576301e-08, 0.49051559)
  6122. elseif SelectBoss == "Tide Keeper [Lv. 1475] [Boss]" then
  6123. MsBoss = "Tide Keeper [Lv. 1475] [Boss]"
  6124. NameQuestBoss = "ForgottenQuest"
  6125. LevelQuestBoss = 3
  6126. CFrameQuestBoss = CFrame.new(-3053.89648, 236.881363, -10148.2324, -0.985987961, -3.58504737e-09, 0.16681771, -3.07832915e-09, 1, 3.29612559e-09, -0.16681771, 2.73641976e-09, -0.985987961)
  6127. CFrameBoss = 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)
  6128. -- Thire World
  6129. elseif SelectBoss == "Stone [Lv. 1550] [Boss]" then
  6130. MsBoss = "Stone [Lv. 1550] [Boss]"
  6131. NameQuestBoss = "PiratePortQuest"
  6132. LevelQuestBoss = 3
  6133. CFrameQuestBoss = CFrame.new(-290, 44, 5577)
  6134. CFrameBoss = CFrame.new(-1085, 40, 6779)
  6135. elseif SelectBoss == "Island Empress [Lv. 1675] [Boss]" then
  6136. MsBoss = "Island Empress [Lv. 1675] [Boss]"
  6137. NameQuestBoss = "AmazonQuest2"
  6138. LevelQuestBoss = 3
  6139. CFrameQuestBoss = CFrame.new(5443, 602, 752)
  6140. CFrameBoss = CFrame.new(5659, 602, 244)
  6141. elseif SelectBoss == "Kilo Admiral [Lv. 1750] [Boss]" then
  6142. MsBoss = "Kilo Admiral [Lv. 1750] [Boss]"
  6143. NameQuestBoss = "MarineTreeIsland"
  6144. LevelQuestBoss = 3
  6145. CFrameQuestBoss = CFrame.new(2178, 29, -6737)
  6146. CFrameBoss =CFrame.new(2846, 433, -7100)
  6147. elseif SelectBoss == "Captain Elephant [Lv. 1875] [Boss]" then
  6148. MsBoss = "Captain Elephant [Lv. 1875] [Boss]"
  6149. NameQuestBoss = "DeepForestIsland"
  6150. LevelQuestBoss = 3
  6151. CFrameQuestBoss = CFrame.new(-13232, 333, -7631)
  6152. CFrameBoss = CFrame.new(-13221, 325, -8405)
  6153. elseif SelectBoss == "Beautiful Pirate [Lv. 1950] [Boss]" then
  6154. MsBoss = "Beautiful Pirate [Lv. 1950] [Boss]"
  6155. NameQuestBoss = "DeepForestIsland2"
  6156. LevelQuestBoss = 3
  6157. CFrameQuestBoss = CFrame.new(-12686, 391, -9902)
  6158. CFrameBoss = CFrame.new(5182, 23, -20)
  6159. elseif SelectBoss == "Cake Queen [Lv. 2175] [Boss]" then
  6160. MsBoss = "Cake Queen [Lv. 2175] [Boss]"
  6161. NameQuestBoss = "IceCreamIslandQuest"
  6162. LevelQuestBoss = 3
  6163. CFrameQuestBoss = CFrame.new(-716, 382, -11010)
  6164. CFrameBoss = CFrame.new(-821, 66, -10965)
  6165. elseif SelectBoss == "rip_indra True Form [Lv. 5000] [Raid Boss]" then
  6166. MsBoss = "rip_indra True Form [Lv. 5000] [Raid Boss]"
  6167. CFrameBoss = CFrame.new(-5359, 424, -2735)
  6168. elseif SelectBoss == "Longma [Lv. 2000] [Boss]" then
  6169. MsBoss = "Longma [Lv. 2000] [Boss]"
  6170. CFrameBoss = CFrame.new(-10248.3936, 353.79129, -9306.34473)
  6171. elseif SelectBoss == "Soul Reaper [Lv. 2100] [Raid Boss]" then
  6172. MsBoss = "Soul Reaper [Lv. 2100] [Raid Boss]"
  6173. CFrameBoss = CFrame.new(-9515.62109, 315.925537, 6691.12012)
  6174. end
  6175. end
  6176. function AutoFramBoss()
  6177. CheckQuestBoss()
  6178. if MsBoss == "rip_indra True Form [Lv. 5000] [Raid Boss]" or MsBoss == "Order [Lv. 1250] [Raid Boss]" or MsBoss == "Soul Reaper [Lv. 2100] [Raid Boss]" or MsBoss == "Longma [Lv. 2000] [Boss]" or MsBoss == "The Saw [Lv. 100] [Boss]" or MsBoss == "Greybeard [Lv. 750] [Raid Boss]" or MsBoss == "Don Swan [Lv. 1000] [Boss]" or MsBoss == "Cursed Captain [Lv. 1325] [Raid Boss]" or MsBoss == "Saber Expert [Lv. 200] [Boss]" or MsBoss == "Mob Leader [Lv. 120] [Boss]" or MsBoss == "Darkbeard [Lv. 1000] [Raid Boss]" then
  6179. if game:GetService("Workspace").Enemies:FindFirstChild(SelectBoss) then
  6180. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  6181. if FramBoss and v:IsA("Model") and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 and v.Name == MsBoss then
  6182. repeat wait()
  6183. if v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") and (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 350 then
  6184. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  6185. elseif v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") and (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 350 then
  6186. if Farmtween then
  6187. Farmtween:Stop()
  6188. end
  6189. EquipWeapon(SelectToolWeapon)
  6190. Usefastattack = true
  6191. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  6192. local args = {
  6193. [1] = "Buso"
  6194. }
  6195. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  6196. end
  6197. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 0, 30)
  6198. Click()
  6199. end
  6200. until not FramBoss or not v.Parent or v.Humanoid.Health <= 0
  6201. Usefastattack = false
  6202. end
  6203. end
  6204. else
  6205. Usefastattack = false
  6206. Questtween = toTarget(CFrameBoss.Position,CFrameBoss)
  6207. if (CFrameBoss.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 350 then
  6208. if Questtween then
  6209. Questtween:Stop()
  6210. end
  6211. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrameBoss
  6212. wait(1)
  6213. end
  6214. end
  6215. else
  6216. if game.Players.LocalPlayer.PlayerGui.Main.Quest.Visible == false then
  6217. Usefastattack = false
  6218. CheckQuestBoss()
  6219. Questtween = toTarget(CFrameQuestBoss.Position,CFrameQuestBoss)
  6220. if (CFrameQuestBoss.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 350 then
  6221. if Questtween then
  6222. Questtween:Stop()
  6223. end
  6224. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrameQuestBoss
  6225. wait(1.1)
  6226. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StartQuest", NameQuestBoss, LevelQuestBoss)
  6227. end
  6228. elseif game.Players.LocalPlayer.PlayerGui.Main.Quest.Visible == true then
  6229. if game:GetService("Workspace").Enemies:FindFirstChild(MsBoss) then print("Find")
  6230. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  6231. if FramBoss and v.Name == MsBoss and v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 then
  6232. repeat wait()
  6233. if v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") and (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 350 then
  6234. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  6235. elseif v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") and (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 350 then
  6236. EquipWeapon(SelectToolWeapon)
  6237. if Farmtween then
  6238. Farmtween:Stop()
  6239. end
  6240. if Modstween then
  6241. Modstween:Stop()
  6242. end
  6243. Usefastattack = true
  6244. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  6245. local args = {
  6246. [1] = "Buso"
  6247. }
  6248. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  6249. end
  6250. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 30, 0)
  6251. Click()
  6252. end
  6253. until not FramBoss or not v.Parent or v.Humanoid.Health <= 0 or game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false
  6254. Usefastattack = false
  6255. end
  6256. end
  6257. else
  6258. Usefastattack = false
  6259. Questtween = toTarget(CFrameBoss.Position,CFrameBoss)
  6260. if ThreeWorld and game:GetService("Players").LocalPlayer.Data.Level.Value >= 1925 and MsBoss == "Beautiful Pirate [Lv. 1950] [Boss]" and (CFrameBoss.Position - game:GetService("Players").LocalPlayer.Character:WaitForChild("HumanoidRootPart").Position).magnitude < 500 then
  6261. if Questtween then
  6262. Questtween:Stop()
  6263. end
  6264. local TouchInterest = game:GetService("Workspace").Map.Turtle.Entrance.Door.BossDoor.Hitbox
  6265. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = TouchInterest.CFrame
  6266. UseTween = false
  6267. wait(.1)
  6268. elseif (CFrameBoss.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 350 then
  6269. if Questtween then
  6270. Questtween:Stop()
  6271. end
  6272. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrameBoss
  6273. end
  6274. end
  6275. end
  6276. end
  6277. end
  6278. KillBossuseGet = false
  6279. function AutoFramAllBoss()
  6280. for i, v in pairs(game.ReplicatedStorage:GetChildren()) do
  6281. if not KillBossuseGet then
  6282. if v.Name == "Diamond [Lv. 750] [Boss]" and game.Players.localPlayer.Data.Level.Value >= 750 then
  6283. SelectBoss = "Diamond [Lv. 750] [Boss]"
  6284. elseif v.Name == "Jeremy [Lv. 850] [Boss]" and game.Players.localPlayer.Data.Level.Value >= 850 then
  6285. SelectBoss = "Jeremy [Lv. 850] [Boss]"
  6286. elseif v.Name == "Fajita [Lv. 925] [Boss]" and game.Players.localPlayer.Data.Level.Value >= 925 then
  6287. SelectBoss = "Fajita [Lv. 925] [Boss]"
  6288. elseif v.Name == "Don Swan [Lv. 1000] [Boss]" and game.Players.localPlayer.Data.Level.Value >= 1000 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TalkTrevor","1") == 0 then
  6289. SelectBoss = "Don Swan [Lv. 1000] [Boss]"
  6290. elseif v.Name == "Smoke Admiral [Lv. 1150] [Boss]" and game.Players.localPlayer.Data.Level.Value >= 1150 then
  6291. SelectBoss = "Smoke Admiral [Lv. 1150] [Boss]"
  6292. elseif v.Name == "Cursed Captain [Lv. 1325] [Raid Boss]" and game.Players.localPlayer.Data.Level.Value >= 1325 then
  6293. SelectBoss = "Cursed Captain [Lv. 1325] [Raid Boss]"
  6294. elseif v.Name == "Awakened Ice Admiral [Lv. 1400] [Boss]" and game.Players.localPlayer.Data.Level.Value >= 1400 then
  6295. SelectBoss = "Awakened Ice Admiral [Lv. 1400] [Boss]"
  6296. elseif v.Name == "Tide Keeper [Lv. 1475] [Boss]" and game.Players.localPlayer.Data.Level.Value >= 1475 then
  6297. SelectBoss = "Tide Keeper [Lv. 1475] [Boss]"
  6298. -- Old World
  6299. elseif v.Name == "The Gorilla King [Lv. 25] [Boss]" and game.Players.localPlayer.Data.Level.Value >= 20 then
  6300. SelectBoss = "The Gorilla King [Lv. 25] [Boss]"
  6301. elseif v.Name == "Bobby [Lv. 55] [Boss]" and game.Players.localPlayer.Data.Level.Value >= 55 then
  6302. SelectBoss = "Bobby [Lv. 55] [Boss]"
  6303. elseif v.Name == "Yeti [Lv. 110] [Boss]" and game.Players.localPlayer.Data.Level.Value >= 105 then
  6304. SelectBoss = "Yeti [Lv. 110] [Boss]"
  6305. elseif v.Name == "Mob Leader [Lv. 120] [Boss]" and game.Players.localPlayer.Data.Level.Value >= 120 then
  6306. SelectBoss = "Mob Leader [Lv. 120] [Boss]"
  6307. elseif v.Name == "Vice Admiral [Lv. 130] [Boss]" and game.Players.localPlayer.Data.Level.Value >= 130 then
  6308. SelectBoss = "Vice Admiral [Lv. 130] [Boss]"
  6309. elseif v.Name == "Warden [Lv. 175] [Boss]" and game.Players.localPlayer.Data.Level.Value >= 175 then
  6310. SelectBoss = "Warden [Lv. 175] [Boss]"
  6311. elseif v.Name == "Saber Expert [Lv. 200] [Boss]" and game.Workspace.Map.Jungle.Final.Part.Transparency == 1 then
  6312. SelectBoss = "Saber Expert [Lv. 200] [Boss]"
  6313. elseif v.Name == "Chief Warden [Lv. 200] [Boss]" and game.Players.localPlayer.Data.Level.Value >= 200 then
  6314. SelectBoss = "Chief Warden [Lv. 200] [Boss]"
  6315. elseif v.Name == "Swan [Lv. 225] [Boss]" and game.Players.localPlayer.Data.Level.Value >= 250 then
  6316. SelectBoss = "Swan [Lv. 225] [Boss]"
  6317. elseif v.Name == "Magma Admiral [Lv. 350] [Boss]" and game.Players.localPlayer.Data.Level.Value >= 350 then
  6318. SelectBoss = "Magma Admiral [Lv. 350] [Boss]"
  6319. elseif v.Name == "Fishman Lord [Lv. 425] [Boss]" and game.Players.localPlayer.Data.Level.Value >= 425 then
  6320. SelectBoss = "Fishman Lord [Lv. 425] [Boss]"
  6321. elseif v.Name == "Wysper [Lv. 500] [Boss]" and game.Players.localPlayer.Data.Level.Value >= 500 then
  6322. SelectBoss = "Wysper [Lv. 500] [Boss]"
  6323. elseif v.Name == "Thunder God [Lv. 575] [Boss]" and game.Players.localPlayer.Data.Level.Value >= 575 then
  6324. SelectBoss = "Thunder God [Lv. 575] [Boss]"
  6325. elseif v.Name == "Cyborg [Lv. 675] [Boss]" and game.Players.localPlayer.Data.Level.Value >= 675 then
  6326. SelectBoss = "Cyborg [Lv. 675] [Boss]"
  6327. -- Thire World
  6328. elseif v.Name == "Stone [Lv. 1550] [Boss]" and game.Players.localPlayer.Data.Level.Value >= 1550 then
  6329. SelectBoss = "Stone [Lv. 1550] [Boss]"
  6330. elseif v.Name == "Island Empress [Lv. 1675] [Boss]" and game.Players.localPlayer.Data.Level.Value >= 1675 then
  6331. SelectBoss = "Island Empress [Lv. 1675] [Boss]"
  6332. elseif v.Name == "Kilo Admiral [Lv. 1750] [Boss]" and game.Players.localPlayer.Data.Level.Value >= 1750 then
  6333. SelectBoss = "Kilo Admiral [Lv. 1750] [Boss]"
  6334. elseif v.Name == "Captain Elephant [Lv. 1875] [Boss]" and game.Players.localPlayer.Data.Level.Value >= 1875 then
  6335. SelectBoss = "Captain Elephant [Lv. 1875] [Boss]"
  6336. elseif v.Name == "Beautiful Pirate [Lv. 1950] [Boss]" and game.Players.localPlayer.Data.Level.Value >= 1950 then
  6337. SelectBoss = "Beautiful Pirate [Lv. 1950] [Boss]"
  6338. end
  6339. end
  6340. end
  6341. CheckQuestBoss()
  6342. if SelectBoss == "rip_indra True Form [Lv. 5000] [Raid Boss]" or SelectBoss == "Order [Lv. 1250] [Raid Boss]" or SelectBoss == "Soul Reaper [Lv. 2100] [Raid Boss]" or SelectBoss == "Longma [Lv. 2000] [Boss]" or SelectBoss == "The Saw [Lv. 100] [Boss]" or SelectBoss == "Greybeard [Lv. 750] [Raid Boss]" or SelectBoss == "Don Swan [Lv. 1000] [Boss]" or SelectBoss == "Cursed Captain [Lv. 1325] [Raid Boss]" or SelectBoss == "Saber Expert [Lv. 200] [Boss]" or SelectBoss == "Mob Leader [Lv. 120] [Boss]" or SelectBoss == "Darkbeard [Lv. 1000] [Raid Boss]" then
  6343. if game:GetService("Workspace").Enemies:FindFirstChild(SelectBoss) then
  6344. for i,v in pairs(game.Workspace.Enemies:GetChildren()) do
  6345. if KillAllBoss and v:IsA("Model") and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 and v.Name == MsBoss then
  6346. repeat wait()
  6347. KillBossuseGet = true
  6348. if v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") and (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 350 then
  6349. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  6350. elseif v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") and (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 350 then
  6351. if Farmtween then
  6352. Farmtween:Stop()
  6353. end
  6354. EquipWeapon(SelectToolWeapon)
  6355. Usefastattack = true
  6356. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  6357. local args = {
  6358. [1] = "Buso"
  6359. }
  6360. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  6361. end
  6362. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 0, 30)
  6363. Click()
  6364. end
  6365. until not KillAllBoss or not v.Parent or v.Humanoid.Health <= 0
  6366. Usefastattack = false
  6367. KillBossuseGet = false
  6368. end
  6369. end
  6370. else
  6371. KillBossuseGet = true
  6372. Usefastattack = false
  6373. Questtween = toTarget(CFrameBoss.Position,CFrameBoss)
  6374. if (CFrameBoss.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 350 then
  6375. if Questtween then
  6376. Questtween:Stop()
  6377. end
  6378. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrameBoss
  6379. wait(1)
  6380. end
  6381. end
  6382. else
  6383. if game.Players.LocalPlayer.PlayerGui.Main.Quest.Visible == false then
  6384. Usefastattack = false
  6385. KillBossuseGet = true
  6386. CheckQuestBoss()
  6387. Questtween = toTarget(CFrameQuestBoss.Position,CFrameQuestBoss)
  6388. if (CFrameQuestBoss.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 350 then
  6389. if Questtween then
  6390. Questtween:Stop()
  6391. end
  6392. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrameQuestBoss
  6393. wait(1.1)
  6394. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StartQuest", NameQuestBoss, LevelQuestBoss)
  6395. end
  6396. elseif game.Players.LocalPlayer.PlayerGui.Main.Quest.Visible == true then
  6397. if game:GetService("Workspace").Enemies:FindFirstChild(MsBoss) then print("Find")
  6398. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  6399. if KillAllBoss and v.Name == MsBoss and v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 then
  6400. repeat wait()
  6401. if v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") and (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 350 then
  6402. Farmtween = toTarget(v.HumanoidRootPart.Position,v.HumanoidRootPart.CFrame)
  6403. elseif v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") and (v.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 350 then
  6404. EquipWeapon(SelectToolWeapon)
  6405. if Farmtween then
  6406. Farmtween:Stop()
  6407. end
  6408. if Modstween then
  6409. Modstween:Stop()
  6410. end
  6411. Usefastattack = true
  6412. if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
  6413. local args = {
  6414. [1] = "Buso"
  6415. }
  6416. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  6417. end
  6418. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 30, 0)
  6419. Click()
  6420. end
  6421. until not KillAllBoss or not v.Parent or v.Humanoid.Health <= 0 or game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false
  6422. Usefastattack = false
  6423. KillBossuseGet = false
  6424. end
  6425. end
  6426. else
  6427. KillBossuseGet = true
  6428. Usefastattack = false
  6429. Questtween = toTarget(CFrameBoss.Position,CFrameBoss)
  6430. if ThreeWorld and game:GetService("Players").LocalPlayer.Data.Level.Value >= 1925 and MsBoss == "Beautiful Pirate [Lv. 1950] [Boss]" and (CFrameBoss.Position - game:GetService("Players").LocalPlayer.Character:WaitForChild("HumanoidRootPart").Position).magnitude > 20000 then
  6431. if Questtween then
  6432. Questtween:Stop()
  6433. end
  6434. local TouchInterest = game:GetService("Workspace").Map.Turtle.Entrance.Door.BossDoor.Hitbox
  6435. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = TouchInterest.CFrame
  6436. wait(.1)
  6437. UseTween = false
  6438. elseif (CFrameBoss.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 350 then
  6439. if Questtween then
  6440. Questtween:Stop()
  6441. end
  6442. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrameBoss
  6443. end
  6444. end
  6445. end
  6446. end
  6447. end
  6448.  
  6449. spawn(function()
  6450. while wait() do
  6451. pcall(function()
  6452. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  6453. if Auto_Farm and MagnetActive and Magnet then
  6454. if v.Name == Ms and v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 then
  6455. if v.Name == "Factory Staff [Lv. 800]" then
  6456. if (v.HumanoidRootPart.Position - PosMon.Position).Magnitude <= 250 then
  6457. v.Head.CanCollide = false
  6458. v.HumanoidRootPart.CanCollide = false
  6459. v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
  6460. v.HumanoidRootPart.CFrame = PosMon
  6461. v.Humanoid.JumpPower = 0
  6462. v.Humanoid.WalkSpeed = 0
  6463. sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
  6464. v.Humanoid:ChangeState(11)
  6465. end
  6466. elseif v.Name == Ms then
  6467. if (v.HumanoidRootPart.Position - PosMon.Position).Magnitude <= 400 then
  6468. v.Head.CanCollide = false
  6469. v.HumanoidRootPart.CanCollide = false
  6470. v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
  6471. v.HumanoidRootPart.CFrame = PosMon
  6472. v.Humanoid.JumpPower = 0
  6473. v.Humanoid.WalkSpeed = 0
  6474. sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
  6475. v.Humanoid:ChangeState(11)
  6476. end
  6477. end
  6478. end
  6479. elseif _G.AutoFarmBone and MagnetFarmBone and Magnet then
  6480. 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 - PosFarmBone.Position).Magnitude <= 500 then
  6481. if sethiddenproperty then
  6482. sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", 10000)
  6483. end
  6484. v.Head.CanCollide = false
  6485. v.HumanoidRootPart.CanCollide = false
  6486. v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
  6487. v.HumanoidRootPart.CFrame = PosFarmBone
  6488. v.Humanoid.JumpPower = 0
  6489. v.Humanoid.WalkSpeed = 0
  6490. end
  6491. elseif _G.AutoFramEctoplasm and StatrMagnetEctoplasm and Magnet then
  6492. if (v.Name == "Ship Deckhand [Lv. 1250]" or v.Name == "Ship Engineer [Lv. 1275]" or v.Name == "Ship Steward [Lv. 1300]" or v.Name == "Ship Officer [Lv. 1325]") and (v.HumanoidRootPart.Position - PosMonEctoplasm.Position).Magnitude <= 500 then
  6493. if sethiddenproperty then
  6494. sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", 10000)
  6495. end
  6496. v.Head.CanCollide = false
  6497. v.HumanoidRootPart.CanCollide = false
  6498. v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
  6499. v.HumanoidRootPart.CFrame = PosMonEctoplasm
  6500. v.Humanoid.JumpPower = 0
  6501. v.Humanoid.WalkSpeed = 0
  6502. end
  6503. end
  6504. end
  6505. end)
  6506. end
  6507. end)
  6508.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement