Advertisement
DE_Speedruns

Untitled

Nov 24th, 2023
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.03 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2.  
  3. local Window = OrionLib:MakeWindow({Name = "Depth hub blox fruits", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  4.  
  5. --[[
  6. Name = <string> - The name of the UI.
  7. HidePremium = <bool> - Whether or not the user details shows Premium status or not.
  8. SaveConfig = <bool> - Toggles the config saving in the UI.
  9. ConfigFolder = <string> - The name of the folder where the configs are saved.
  10. IntroEnabled = <bool> - Whether or not to show the intro animation.
  11. IntroText = <string> - Text to show in the intro animation.
  12. IntroIcon = <string> - URL to the image you want to use in the intro animation.
  13. Icon = <string> - URL to the image you want displayed on the window.
  14. CloseCallback = <function> - Function to execute when the window is closed.
  15. ]]
  16.  
  17. local Tab = Window:MakeTab({
  18. Name = "Main",
  19. Icon = "rbxassetid://4483345998",
  20. PremiumOnly = false
  21. })
  22.  
  23. --[[
  24. Name = <string> - The name of the tab.
  25. Icon = <string> - The icon of the tab.
  26. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  27. ]]
  28.  
  29. local Section = Tab:AddSection({
  30. Name = "menu"
  31. })
  32.  
  33. --[[
  34. Name = <string> - The name of the section.
  35. ]]
  36.  
  37. OrionLib:MakeNotification({
  38. Name = "Title!",
  39. Content = "execute",
  40. Image = "rbxassetid://4483345998",
  41. Time = 5
  42. })
  43.  
  44. --[[
  45. Title = <string> - The title of the notification.
  46. Content = <string> - The content of the notification.
  47. Image = <string> - The icon of the notification.
  48. Time = <number> - The duration of the notfication.
  49. ]]
  50.  
  51. Tab:AddButton({
  52. Name = "Auto farm chest!",
  53. Callback = function()
  54. function thisCode()
  55. repeat task.wait() until game:IsLoaded()
  56. local PlaceID = game.PlaceId
  57. local AllIDs = {}
  58. local foundAnything = ""
  59. local actualHour = os.date("!*t").hour
  60. local Deleted = false
  61. local File = pcall(function()
  62. AllIDs = game:GetService('HttpService'):JSONDecode(readfile("NotSameServers.json"))
  63. end)
  64. if not File then
  65. table.insert(AllIDs, actualHour)
  66. writefile("NotSameServers.json", game:GetService('HttpService'):JSONEncode(AllIDs))
  67. end
  68. function TPReturner()
  69. local Site;
  70. if foundAnything == "" then
  71. Site = game.HttpService:JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. PlaceID .. '/servers/Public?sortOrder=Asc&limit=100'))
  72. else
  73. Site = game.HttpService:JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. PlaceID .. '/servers/Public?sortOrder=Asc&limit=100&cursor=' .. foundAnything))
  74. end
  75. local ID = ""
  76. if Site.nextPageCursor and Site.nextPageCursor ~= "null" and Site.nextPageCursor ~= nil then
  77. foundAnything = Site.nextPageCursor
  78. end
  79. local num = 0;
  80. for i,v in pairs(Site.data) do
  81. local Possible = true
  82. ID = tostring(v.id)
  83. if tonumber(v.maxPlayers) > tonumber(v.playing) then
  84. for _,Existing in pairs(AllIDs) do
  85. if num ~= 0 then
  86. if ID == tostring(Existing) then
  87. Possible = false
  88. end
  89. else
  90. if tonumber(actualHour) ~= tonumber(Existing) then
  91. local delFile = pcall(function()
  92. delfile("NotSameServers.json")
  93. AllIDs = {}
  94. table.insert(AllIDs, actualHour)
  95. end)
  96. end
  97. end
  98. num = num + 1
  99. end
  100. if Possible == true then
  101. table.insert(AllIDs, ID)
  102. wait()
  103. pcall(function()
  104. writefile("NotSameServers.json", game:GetService('HttpService'):JSONEncode(AllIDs))
  105. wait()
  106. game:GetService("TeleportService"):TeleportToPlaceInstance(PlaceID, ID, game.Players.LocalPlayer)
  107. end)
  108. wait(4)
  109. end
  110. end
  111. end
  112. end
  113.  
  114. function Teleport()
  115. while wait() do
  116. pcall(function()
  117. TPReturner()
  118. if foundAnything ~= "" then
  119. TPReturner()
  120. end
  121. end)
  122. end
  123. end
  124. local veryImportantWaitTime = 0.5
  125. task.spawn(function()
  126. while task.wait(veryImportantWaitTime) do
  127. pcall(function()
  128. for i,v in pairs(game.CoreGui:GetDescendants()) do
  129. pcall(function()
  130. if string.find(v.Name,"ErrorMessage") then
  131. if string.find(v.Text,"Security kick") then
  132. veryImportantWaitTime = 1e9
  133. Teleport()
  134. end
  135. end
  136. end)
  137. end
  138. end)
  139. end
  140. end)
  141.  
  142. local AllowRunService = true
  143. local AllowRunServiceBind = Instance.new("BindableFunction")
  144. function AllowRunServiceBind.OnInvoke(args)
  145. if args == "Enable" then
  146. AllowRunService = true
  147. elseif args == "Disable" then
  148. AllowRunService = false
  149. end
  150. local CoreGui = game:GetService("StarterGui")
  151. CoreGui:SetCore("SendNotification", {
  152. Title = "Auto farm chest test by depth",
  153. Text = "Enjoin",
  154. Duration = math.huge,
  155. Callback = AllowRunServiceBind,
  156. })
  157. end
  158.  
  159. local CoreGui = game:GetService("StarterGui")
  160. CoreGui:SetCore("SendNotification", {
  161. Title = "Auto Chest",
  162. Text = "Auto farm chest test by depth",
  163. Duration = math.huge,
  164. Callback = AllowRunServiceBind,
  165. })
  166.  
  167. task.spawn(function()
  168. while true do
  169. if AllowRunService == true then
  170. local hasChar = game.Players.LocalPlayer:FindFirstChild("Character")
  171. if not game.Players.LocalPlayer.Character then
  172.  
  173. else
  174. local hasCrewTag = game.Players.LocalPlayer.Character:FindFirstChild("CrewBBG",true)
  175. if hasCrewTag then hasCrewTag:Destroy() end
  176. local hasHumanoid = game.Players.LocalPlayer.Character:FindFirstChild("Humanoid")
  177. if hasHumanoid then
  178. local Chest = game.Workspace:FindFirstChild("Chest4") or game.Workspace:FindFirstChild("Chest3") or game.Workspace:FindFirstChild("Chest2") or game.Workspace:FindFirstChild("Chest1") or game.Workspace:FindFirstChild("Chest")
  179.  
  180. if Chest then
  181. game.Players.LocalPlayer.Character:PivotTo(Chest:GetPivot())
  182. firesignal(Chest.Touched,game.Players.LocalPlayer.Character.HumanoidRootPart)
  183. else
  184. Teleport()
  185. break
  186. end
  187. end
  188. end
  189. end
  190. task.wait()
  191. end
  192. end)
  193.  
  194. end
  195.  
  196. thisCode()
  197.  
  198. join = game.Players.localPlayer.Neutral == false
  199. if _G.Team == nil then
  200. _G.Team = "Pirates"
  201. end
  202. _G.Team = "Marines"
  203. if (_G.Team == "Pirates" or _G.Team == "Marines") and not join then
  204. repeat wait()
  205. pcall(function()
  206. join = game.Players.localPlayer.Neutral == false
  207. if _G.Team == "Pirates" then
  208. for i,v in pairs({"MouseButton1Click", "MouseButton1Down", "Activated"}) do
  209. for i,v in pairs(getconnections(game:GetService("Players").LocalPlayer.PlayerGui.Main.ChooseTeam.Container.Pirates.Frame.ViewportFrame.TextButton[v])) do
  210. v.Function()
  211. end
  212. end
  213. elseif _G.Team == "Marines" then
  214. for i,v in pairs({"MouseButton1Click", "MouseButton1Down", "Activated"}) do
  215. for i,v in pairs(getconnections(game:GetService("Players").LocalPlayer.PlayerGui.Main.ChooseTeam.Container.Marines.Frame.ViewportFrame.TextButton[v])) do
  216. v.Function()
  217. end
  218. end
  219. else
  220. for i,v in pairs({"MouseButton1Click", "MouseButton1Down", "Activated"}) do
  221. for i,v in pairs(getconnections(game:GetService("Players").LocalPlayer.PlayerGui.Main.ChooseTeam.Container.Marines.Frame.ViewportFrame.TextButton[v])) do
  222. v.Function()
  223. end
  224. end
  225. end
  226. end)
  227. until join == true
  228. game:GetService("Players").LocalPlayer.PlayerGui.Main.ChooseTeam.Visible = false
  229. end
  230. end
  231. })
  232.  
  233. --[[
  234. Name = <string> - The name of the button.
  235. Callback = <function> - The function of the button.
  236. ]]
  237.  
  238. Tab:AddButton({
  239. Name = "Auto find fruits!",
  240. Callback = function()
  241. --dont skid pweasey weasy
  242.  
  243. -- Instances: 13 | Scripts: 2 | Modules: 0
  244. local G2L = {};
  245.  
  246. -- Workspace.ScreenGui
  247. G2L["1"] = Instance.new("ScreenGui", game:GetService("Players").LocalPlayer:WaitForChild("PlayerGui"));
  248.  
  249.  
  250. -- Workspace.ScreenGui.Loader
  251. G2L["2"] = Instance.new("Frame", G2L["1"]);
  252. G2L["2"]["BorderSizePixel"] = 0;
  253. G2L["2"]["BackgroundColor3"] = Color3.fromRGB(255, 255, 255);
  254. G2L["2"]["AnchorPoint"] = Vector2.new(0.5, 0.5);
  255. G2L["2"]["BackgroundTransparency"] = 0.4000000059604645;
  256. G2L["2"]["Size"] = UDim2.new(0, 387, 0, 185);
  257. G2L["2"]["Position"] = UDim2.new(0.5, 0, 0.5, 0);
  258. G2L["2"]["Name"] = [[Loader]];
  259.  
  260. -- Workspace.ScreenGui.Loader.Buttons
  261. G2L["3"] = Instance.new("Frame", G2L["2"]);
  262. G2L["3"]["BackgroundColor3"] = Color3.fromRGB(255, 255, 255);
  263. G2L["3"]["BackgroundTransparency"] = 1;
  264. G2L["3"]["Size"] = UDim2.new(0, 379, 0, 35);
  265. G2L["3"]["Position"] = UDim2.new(0.010335917584598064, 0, 0.7675675749778748, 0);
  266. G2L["3"]["Name"] = [[Buttons]];
  267.  
  268. -- Workspace.ScreenGui.Loader.Buttons.UIListLayout
  269. G2L["4"] = Instance.new("UIListLayout", G2L["3"]);
  270. G2L["4"]["VerticalAlignment"] = Enum.VerticalAlignment.Center;
  271. G2L["4"]["FillDirection"] = Enum.FillDirection.Horizontal;
  272. G2L["4"]["HorizontalAlignment"] = Enum.HorizontalAlignment.Center;
  273. G2L["4"]["Padding"] = UDim.new(0, 10);
  274. G2L["4"]["SortOrder"] = Enum.SortOrder.LayoutOrder;
  275.  
  276. -- Workspace.ScreenGui.Loader.Buttons.Next
  277. G2L["5"] = Instance.new("TextButton", G2L["3"]);
  278. G2L["5"]["TextSize"] = 34;
  279. G2L["5"]["BackgroundColor3"] = Color3.fromRGB(31, 31, 31);
  280. G2L["5"]["TextColor3"] = Color3.fromRGB(255, 255, 255);
  281. G2L["5"]["Size"] = UDim2.new(0, 155, 0, 35);
  282. G2L["5"]["Name"] = [[Next]];
  283. G2L["5"]["Text"] = [[Next]];
  284. G2L["5"]["Font"] = Enum.Font.SourceSansLight;
  285. G2L["5"]["Position"] = UDim2.new(0.03359173238277435, 0, 0.8247104287147522, 0);
  286. G2L["5"]["BackgroundTransparency"] = 0.800000011920929;
  287.  
  288. -- Workspace.ScreenGui.Loader.Buttons.Next.UICorner
  289. G2L["6"] = Instance.new("UICorner", G2L["5"]);
  290.  
  291.  
  292. -- Workspace.ScreenGui.Loader.Buttons.Stop
  293. G2L["7"] = Instance.new("TextButton", G2L["3"]);
  294. G2L["7"]["TextSize"] = 34;
  295. G2L["7"]["BackgroundColor3"] = Color3.fromRGB(31, 31, 31);
  296. G2L["7"]["TextColor3"] = Color3.fromRGB(255, 255, 255);
  297. G2L["7"]["Visible"] = false;
  298. G2L["7"]["Size"] = UDim2.new(0, 155, 0, 35);
  299. G2L["7"]["Name"] = [[Stop]];
  300. G2L["7"]["Text"] = [[Stop]];
  301. G2L["7"]["Font"] = Enum.Font.SourceSansLight;
  302. G2L["7"]["Position"] = UDim2.new(0.03359173238277435, 0, 0.8247104287147522, 0);
  303. G2L["7"]["BackgroundTransparency"] = 0.800000011920929;
  304.  
  305. -- Workspace.ScreenGui.Loader.Buttons.Stop.UICorner
  306. G2L["8"] = Instance.new("UICorner", G2L["7"]);
  307.  
  308.  
  309. -- Workspace.ScreenGui.Loader.Text
  310. G2L["9"] = Instance.new("TextLabel", G2L["2"]);
  311. G2L["9"]["TextWrapped"] = true;
  312. G2L["9"]["TextXAlignment"] = Enum.TextXAlignment.Left;
  313. G2L["9"]["BackgroundColor3"] = Color3.fromRGB(255, 255, 255);
  314. G2L["9"]["TextSize"] = 25;
  315. G2L["9"]["TextColor3"] = Color3.fromRGB(255, 255, 255);
  316. G2L["9"]["Size"] = UDim2.new(0, 350, 0, 118);
  317. G2L["9"]["Text"] = [[]];
  318. G2L["9"]["Name"] = [[Text]];
  319. G2L["9"]["Font"] = Enum.Font.SourceSansLight;
  320. G2L["9"]["BackgroundTransparency"] = 1;
  321. G2L["9"]["Position"] = UDim2.new(0.04651162773370743, 0, 0.08648648858070374, 0);
  322.  
  323. -- Workspace.ScreenGui.Loader.UICorner
  324. G2L["a"] = Instance.new("UICorner", G2L["2"]);
  325.  
  326.  
  327. -- Workspace.ScreenGui.Loader.LocalScript
  328. G2L["b"] = Instance.new("LocalScript", G2L["2"]);
  329.  
  330.  
  331. -- Workspace.ScreenGui.Loader.UIGradient
  332. G2L["c"] = Instance.new("UIGradient", G2L["2"]);
  333. G2L["c"]["Rotation"] = 40;
  334. G2L["c"]["Color"] = ColorSequence.new{ColorSequenceKeypoint.new(0.000, Color3.fromRGB(31, 31, 31)),ColorSequenceKeypoint.new(0.469, Color3.fromRGB(81, 81, 81)),ColorSequenceKeypoint.new(1.000, Color3.fromRGB(31, 31, 31))};
  335.  
  336. -- Workspace.ScreenGui.Loader.BBR
  337. G2L["d"] = Instance.new("LocalScript", G2L["2"]);
  338. G2L["d"]["Name"] = [[BBR]];
  339.  
  340. -- Workspace.ScreenGui.Loader.LocalScript
  341. local function C_b()
  342. local script = G2L["b"];
  343. wait(1)
  344. local TextLabel = script.Parent.Text
  345. local Btn = script.Parent.Buttons
  346.  
  347. getgenv().stoped = false
  348.  
  349. text = "Would You Like To Load? [Fruit Dedicateder/Farmer]"
  350. for i = 1, #text do
  351. TextLabel.Text = string.sub(text,1,i)
  352. wait(0.05)
  353. end
  354.  
  355. Btn.Next.MouseButton1Down:Connect(function()
  356. Btn.Next.Visible = false
  357. text = "Looking/Farming Fruit, Press Right Control Do Toggle UI."
  358. for i = 1, #text do
  359. TextLabel.Text = string.sub(text,1,i)
  360. wait(0.05)
  361. end
  362. Btn.Stop.Visible = true
  363. wait(1)
  364. while stoped == false do
  365. wait(2)
  366. for i,v in pairs(game.Workspace:GetChildren()) do
  367. if v.ClassName == "Tool" then
  368. local highlite = Instance.new("Highlight")
  369. highlite.Adornee = v.Handle
  370. highlite.Parent = v.Handle
  371. end
  372. end
  373. for i,v in pairs(game.Workspace:GetChildren()) do
  374. if v.ClassName == "Tool" then
  375. local TweenService = game:GetService("TweenService")
  376. local tween = TweenService:Create(game.Players.LocalPlayer.Character.HumanoidRootPart, TweenInfo.new(13), {CFrame = v.Handle.CFrame})
  377. tween:Play()
  378. wait(14)
  379. end
  380. end
  381. end
  382. end)
  383.  
  384.  
  385. Btn.Stop.MouseButton1Down:Connect(function()
  386. Btn.Next.Visible = false
  387. Btn.Stop.Visible = false
  388. getgenv().stoped = true
  389. text = "Stoped Fruit Dedicateder/Farmer"
  390. for i = 1, #text do
  391. TextLabel.Text = string.sub(text,1,i)
  392. wait(0.05)
  393. end
  394. wait(1)
  395. script.Parent:Destroy()
  396. end)
  397.  
  398. end;
  399. task.spawn(C_b);
  400. -- Workspace.ScreenGui.Loader.BBR
  401. local function C_d()
  402. local script = G2L["d"];
  403. function onKeyPress(inputObject, gameProcessedEvent)
  404. if not gameProcessedEvent then
  405. if inputObject.KeyCode == Enum.KeyCode.RightControl then -- change 'E' to any key on the keyboard. EX: Tab
  406. script.Parent.Visible = not script.Parent.Visible
  407. end
  408. end
  409. end
  410. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  411. end;
  412. task.spawn(C_d);
  413.  
  414. return G2L["1"], require;
  415. end
  416. })
  417.  
  418. --[[
  419. Name = <string> - The name of the button.
  420. Callback = <function> - The function of the button.
  421. ]]
  422.  
  423. Tab:AddButton({
  424. Name = "Fast attack!",
  425. Callback = function()
  426. local CombatFramework = require(game:GetService("Players").LocalPlayer.PlayerScripts.CombatFramework)
  427. local Camera = require(game.ReplicatedStorage.Util.CameraShaker)
  428. Camera:Stop()
  429. coroutine.wrap(function()
  430. game:GetService("RunService").Stepped:Connect(function()
  431. if getupvalues(CombatFramework)[2]['activeController'].timeToNextAttack then
  432. getupvalues(CombatFramework)[2]['activeController'].timeToNextAttack = 0
  433. getupvalues(CombatFramework)[2]['activeController'].hitboxMagnitude = 25
  434. getupvalues(CombatFramework)[2]['activeController']:attack()
  435. end
  436. end)
  437. end)()
  438. end
  439. })
  440.  
  441. --[[
  442. Name = <string> - The name of the button.
  443. Callback = <function> - The function of the button.
  444. ]]
  445.  
  446. Tab:AddButton({
  447. Name = "Auto Farm need bring mob!",
  448. Callback = function()
  449. -- [[ Script By ]]
  450. -- 5TX4Z
  451. -- Winnable Hub
  452. -- [[ Discord vxny#2222]]
  453.  
  454. _G.Auto_Farm = true -- true / false
  455.  
  456. function totarget(p)
  457. local Distance2 = (p.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude
  458. local tween_s = game:service"TweenService"
  459. local info = TweenInfo.new(Distance2/350, Enum.EasingStyle.Linear)
  460. local tween = tween_s:Create(game:GetService("Players").LocalPlayer.Character["HumanoidRootPart"], info, {CFrame = p})
  461. tween:Play()
  462. if Distance2 <= 75 then
  463. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = p
  464. end
  465. end
  466.  
  467. function checklevel()
  468. local lv = game:GetService("Players").LocalPlayer.Data.Level.Value
  469. if lv == 1 or lv <= 9 then
  470. Mon = "Bandit [Lv. 5]"
  471. Title = "Bandit"
  472. QuestName = "BanditQuest1"
  473. QuestNumber = 1
  474. CFrameQuest = CFrame.new(1061.15271, 16.7367725, 1548.93018, -0.836085379, -3.89774577e-08, 0.548599303, -1.17575967e-08, 1, 5.31300408e-08, -0.548599303, 3.79710414e-08, -0.836085379)
  475. CFrameMon = CFrame.new(1151.11829, 16.7761021, 1599.73499, -0.999999762, 0, -0.000701809535, 0, 1, 0, 0.000701809535, 0, -0.999999762)
  476. CFramePuk = CFrame.new(1101.75903, 67.6758957, 1617.50391, -0.399259984, -5.24373327e-08, -0.916837752, -1.74068084e-08, 1, -4.96134582e-08, 0.916837752, -3.84945009e-09, -0.399259984)
  477. elseif lv == 10 or lv <= 14 then
  478. Mon = "Monkey [Lv. 14]"
  479. Title = "Monkey"
  480. QuestName = "JungleQuest"
  481. QuestNumber = 1
  482. CFrameQuest = CFrame.new(-1599.23096, 37.8653831, 153.335953, -0.0493941903, 1.29583286e-08, 0.998779356, 3.21716165e-08, 1, -1.13831318e-08, -0.998779356, 3.15700852e-08, -0.0493941903)
  483. CFrameMon = CFrame.new(-1479.76099, 23.195364, 106.327942, 0.96289885, 5.22265786e-10, -0.269862473, 6.59528099e-10, 1, 4.28857172e-09, 0.269862473, -4.30744285e-09, 0.96289885)
  484. CFramePuk = CFrame.new(-1776.32959, 61.1782455, 66.8902054, -0.912609756, -2.38546143e-08, 0.408831745, -2.14773621e-08, 1, 1.04056577e-08, -0.408831745, 7.15677129e-10, -0.912609756)
  485. elseif lv == 15 or lv <= 29 then
  486. Mon = "Gorilla [Lv. 20]"
  487. Title = "Gorilla"
  488. QuestName = "JungleQuest"
  489. QuestNumber = 2
  490. CFrameQuest = CFrame.new(-1599.23096, 37.8653831, 153.335953, -0.0493941903, 1.29583286e-08, 0.998779356, 3.21716165e-08, 1, -1.13831318e-08, -0.998779356, 3.15700852e-08, -0.0493941903)
  491. CFrameMon = CFrame.new(-1242.46655, 6.62262297, -523.166382, -0.974416733, 9.23166681e-08, -0.224748924, 9.58993027e-08, 1, -5.02435071e-09, 0.224748924, -2.64490758e-08, -0.974416733)
  492. CFramePuk = CFrame.new(-1133.4574, 40.8067436, -526.086792, 0.647179008, -2.76535794e-10, 0.762338042, 3.26674865e-08, 1, -2.73699801e-08, -0.762338042, 4.26169464e-08, 0.647179008)
  493. end
  494. end
  495.  
  496. spawn(function()
  497. while task.wait(.1) do
  498. pcall(function()
  499. if _G.Auto_Farm then
  500. checklevel()
  501. if game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == false then
  502. totarget(CFrameQuest)
  503. wait(.3)
  504. local args = {
  505. [1] = "StartQuest",
  506. [2] = QuestName,
  507. [3] = QuestNumber
  508. }
  509.  
  510. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  511. elseif game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible == true then
  512. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  513. for i,v2 in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  514. if v.Name == Mon and v2.Name == Mon then
  515. totarget(v.HumanoidRootPart.CFrame * CFrame.new(0,1,15))
  516. v.HumanoidRootPart.Size = Vector3.new(60,2.5,60)
  517. v.HumanoidRootPart.CFrame = CFrameMon
  518. game:GetService'VirtualUser':CaptureController()
  519. game:GetService'VirtualUser':Button1Down(Vector2.new(1280, 672))
  520. v2.HumanoidRootPart.CanCollide = false
  521. sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
  522. end
  523. end
  524. end
  525. end
  526. end
  527. end)
  528. end
  529. end)
  530.  
  531. spawn(function()
  532. while task.wait(.1) do
  533. pcall(function()
  534. if _G.Auto_Farm then
  535. checklevel()
  536. if not string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, Title) then
  537. local args = {
  538. [1] = "AbandonQuest"
  539. }
  540.  
  541. game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
  542. end
  543. end
  544. end)
  545. end
  546. end)
  547.  
  548. spawn(function()
  549. while task.wait(.1) do
  550. pcall(function()
  551. if _G.Auto_Farm then
  552. checklevel()
  553. if not game:GetService("Workspace").Enemies:FindFirstChild(Mon) then
  554. totarget(CFramePuk)
  555. end
  556. end
  557. end)
  558. end
  559. end)
  560.  
  561. spawn(function()
  562. while task.wait(.1) do
  563. pcall(function()
  564. if _G.Auto_Farm then
  565. checklevel()
  566. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  567. if v.Name == Mon then
  568. if v.Humanoid.Health == 0 then
  569. v:Destroy()
  570. end
  571. end
  572. end
  573. end
  574. end)
  575. end
  576. end)
  577. end
  578. })
  579.  
  580. --[[
  581. Name = <string> - The name of the button.
  582. Callback = <function> - The function of the button.
  583. ]]
  584.  
  585. Tab:AddButton({
  586. Name = "Bring mob level 5!",
  587. Callback = function()
  588. local Fast = require(game:GetService("Players").LocalPlayer.PlayerScripts.CombatFramework)
  589. local CameraShaker = require(game:GetService("Players").LocalPlayer.PlayerScripts.CombatFramework.CameraShaker)
  590. _G.Fastattack = true -- true\false
  591. game:GetService("RunService").RenderStepped:Connect(function()
  592. pcall(function()
  593. if _G.Fastattack then
  594. Fast.activeController.timeToNextAttack = 0
  595. Fast.activeController.hitboxMagnitude = 50
  596. game:GetService'VirtualUser':CaptureController()
  597. game:GetService'VirtualUser':Button1Down(Vector2.new(686, 352))
  598. CameraShaker.CameraShakeInstance.CameraShakeState = {FadingIn = 3, FadingOut = 2, Sustained = 0, Inactive = 1}
  599. end
  600. end)
  601. end)
  602.  
  603.  
  604. -- bring mob
  605. _G.bringmob = true
  606. while _G.bringmob do wait()
  607. pcall(function()
  608. for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  609. for x,y in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
  610. if v.Name == "Bandit [Lv. 5]" then
  611. if y.Name == "Bandit [Lv. 5]" then
  612. v.HumanoidRootPart.CFrame = y.HumanoidRootPart.CFrame
  613. v.HumanoidRootPart.Size = Vector3.new(60,60,60)
  614. y.HumanoidRootPart.Size = Vector3.new(60,60,60)
  615. v.HumanoidRootPart.Transparency = 1
  616. v.HumanoidRootPart.CanCollide = false
  617. y.HumanoidRootPart.CanCollide = false
  618. v.Humanoid.WalkSpeed = 0
  619. y.Humanoid.WalkSpeed = 0
  620. v.Humanoid.JumpPower = 0
  621. y.Humanoid.JumpPower = 0
  622. if sethiddenproperty then
  623. sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
  624. end
  625. end
  626. end
  627. end
  628. end
  629. end)
  630. end
  631. end
  632. })
  633.  
  634. --[[
  635. Name = <string> - The name of the button.
  636. Callback = <function> - The function of the button.
  637. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement