Advertisement
karobloxYT

Untitled

Aug 22nd, 2022 (edited)
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.38 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2. local Window = OrionLib:MakeWindow({Name = "Đức TẠO CODE AuT", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  3.  
  4. getgenv().Settings = {
  5. Farmitem = false,
  6. JumpPower = false,
  7. abc = false,
  8. ezqua = false,
  9. ezok= false,
  10. AutoClick = false,
  11. ClickR = false,
  12. ClickF = false,
  13. ClickJ = false,
  14. clickE = false,
  15. clickQ = false,
  16. ClickGGG = false,
  17. FarmDIOQUEST = false,
  18. block = false,
  19. farmquaiez = false;
  20. };
  21.  
  22. local HttpService = game:GetService("HttpService");
  23. local SaveFileName = "OrionTest\\abc.txt";
  24.  
  25. local function SaveSettings()
  26. local JSON
  27. local HttpService = game:service('HttpService')
  28. JSON = HttpService:JSONEncode(getgenv().Settings)
  29. writefile(SaveFileName,JSON)
  30. end
  31. local function LoadSettings()
  32. local HttpService = game:service('HttpService')
  33.  
  34.  
  35. if isfile(SaveFileName) then
  36. getgenv().Settings = HttpService:JSONDecode(readfile(SaveFileName))
  37. end
  38. end
  39. LoadSettings()
  40. local vu = game:GetService("VirtualUser")
  41. game:GetService("Players").LocalPlayer.Idled:connect(function()
  42. vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  43. wait(1)
  44. vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  45. end)
  46. local abcd = {}
  47. for bodoi,test in pairs(game:GetService("Workspace").ItemSpawns:GetChildren()) do
  48. table.insert(abcd,test.Name)
  49. end
  50. local testoke = {}
  51. for boas,easyok in pairs(game:GetService("Workspace").NPCS:GetChildren()) do
  52. table.insert(testoke,tostring(easyok))
  53. end
  54. local abcde = {}
  55. for _,bodoiqua in pairs(game.Players:GetPlayers()) do
  56. if bodoiqua.Name ~= game.Players.LocalPlayer.Name then
  57. table.insert(abcde,bodoiqua.Name)
  58. end
  59. end
  60.  
  61.  
  62. local Tab = Window:MakeTab({
  63. Name = "Auto Farm",
  64. Icon = "rbxassetid://4483345998",
  65. PremiumOnly = false
  66. })
  67. local Section = Tab:AddSection({
  68. Name = "Farm Npc"
  69. })
  70.  
  71. Tab:AddDropdown({
  72. Name = "Dropdown",
  73. Default = "1",
  74. Options = abcd,
  75. Callback = function(tavc)
  76. while getgenv().Settings.Farmitem == true and tavc == "Shards" do
  77. wait()
  78. for i,v in pairs(game:GetService("Workspace").ItemSpawns.Shards:GetChildren()) do
  79. if v.Name == "SpawnLocation" and v:FindFirstChild("Meteor") then
  80. pcall(function()
  81. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  82. fireproximityprompt(v.Meteor.ProximityAttachment.Interaction)
  83. end)
  84. end
  85.  
  86. end
  87. end
  88. while getgenv().Settings.Farmitem == true and tavc == "Chests" do
  89. wait(0)
  90. for i,v in pairs(game:GetService("Workspace").ItemSpawns.Chests:GetChildren()) do
  91. if v.Name == "SpawnLocation" and v:FindFirstChild("Chest") then
  92. pcall(function()
  93. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  94. fireproximityprompt(v.Chest.RootPart.ProximityAttachment.Interaction)
  95. end)
  96. end
  97. end
  98.  
  99.  
  100. end
  101. while getgenv().Settings.Farmitem== true and tavc == "Meteors" do
  102. wait(0)
  103. for i,v in pairs(game:GetService("Workspace").ItemSpawns.Meteors:GetChildren()) do
  104. if v.Name == "SpawnLocation" and v:FindFirstChild("Meteor") then
  105. pcall(function()
  106. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  107. fireproximityprompt(v.Meteor.ProximityAttachment.Interaction)
  108. end)
  109. end
  110.  
  111. end
  112.  
  113. end
  114. while getgenv().Settings.Farmitem == true and tavc == "Sand Debris" do
  115. wait(0)
  116. for i,v in pairs(game:GetService("Workspace").ItemSpawns["Sand Debris"]:GetChildren()) do
  117. if v.Name == "SpawnLocation" and v:FindFirstChild("SandDebris") then
  118. pcall(function()
  119. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  120. fireproximityprompt(v.SandDebris.ProximityAttachment.Interaction)
  121. end)
  122. end
  123.  
  124. end
  125.  
  126. end
  127. while getgenv().Settings.Farmitem == true and tavc == "StandardItems" do
  128. wait()
  129. for i, v in next, game:GetService("Workspace").ItemSpawns["StandardItems"]:GetDescendants() do
  130. if v:IsA("MeshPart") or v:IsA("Part") and v.Parent.Name == "SpawnLocation" then
  131. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  132. fireproximityprompt(v.ProximityAttachment.Interaction)
  133. end
  134. end
  135. end
  136. end
  137.  
  138. })
  139.  
  140. Tab:AddToggle({
  141. Name = "Auto Enable",
  142. Default = getgenv().Settings.Farmitem,
  143. Callback = function(abc)
  144.  
  145. SaveSettings()
  146. wait(1)
  147. getgenv().Settings.Farmitem = abc
  148.  
  149.  
  150. end
  151. })
  152. Tab:AddDropdown({
  153. Name = "Auto Farm",
  154. Default = "1",
  155. Options = {"Thug"},
  156. Callback = function(farmquai)
  157. if getgenv().Settings.farmquaiez == true and farmquai == "Thug" then
  158. local abc,oktestw = math.huge
  159. game:GetService("RunService"):BindToRenderStep("Famquaiokez",0,function()
  160. for i,v in pairs(game:GetService("Workspace").Living:GetChildren()) do
  161. if string.find(v.Name,"Th") and v:FindFirstChild("HumanoidRootPart") then
  162. local magv = (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - v.HumanoidRootPart.Position).magnitude
  163. if abc > magv then
  164. magv = oktestw
  165. pcall(function()
  166. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0,0,5)
  167. end)
  168.  
  169. end
  170. return oktestw
  171. end
  172. end
  173.  
  174.  
  175. end)
  176. end
  177. end
  178.  
  179. })
  180. Tab:AddToggle({
  181. Name = "Auto Enable Farm",
  182. Default = getgenv().Settings.farmquaiez,
  183. Callback = function(farmquaiok)
  184. SaveSettings()
  185. getgenv().Settings.farmquaiez = farmquaiok
  186. if getgenv().Settings.farmquaiez == false then
  187. game:GetService("RunService"):UnbindFromRenderStep("Famquaiokez")
  188. end
  189. end
  190. })
  191.  
  192. local Section = Tab:AddSection({
  193. Name = "Farm Quest"
  194. })
  195. Tab:AddToggle({
  196. Name = "Take Dame",
  197. Default = getgenv().Settings.ezqua,
  198. Callback = function(asas)
  199. SaveSettings()
  200. wait(1)
  201. getgenv().Settings.ezqua = asas
  202. if getgenv().Settings.ezqua== true then
  203. game:GetService("RunService"):BindToRenderStep("Take Dame",0,function()
  204.  
  205. for i,v in pairs(game.workspace.Living:GetChildren()) do
  206. if v.Name == "Akira_DEV Dummy" then
  207. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0,0,-5)
  208. end
  209. end
  210. end)
  211. elseif getgenv().Settings.ezqua == false then
  212. game:GetService("RunService"):UnbindFromRenderStep("Take Dame")
  213.  
  214. end
  215. end
  216. })
  217.  
  218.  
  219. Tab:AddToggle({
  220. Name = "Block Dame",
  221. Default = getgenv().Settings.block,
  222. Callback = function(blockd)
  223. SaveSettings()
  224. wait(1)
  225. getgenv().Settings.block= blockd
  226. if getgenv().Settings.block== true then
  227. game:GetService("RunService"):BindToRenderStep("Blockdame",0,function()
  228.  
  229. for i,v in pairs(game.workspace.Living:GetChildren()) do
  230. if v.Name == "Akira_DEV Dummy" then
  231. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0,0,-5)
  232. game:GetService('VirtualInputManager'):SendKeyEvent(true, "X", false, game)
  233. end
  234. end
  235. end)
  236. elseif getgenv().Settings.block == false then
  237. game:GetService("RunService"):UnbindFromRenderStep("Blockdame")
  238.  
  239. end
  240. end
  241. })
  242.  
  243. Tab:AddToggle({
  244. Name = "Deal Dame",
  245. Default = getgenv().Settings.ezok,
  246. Callback = function(Dealdame)
  247. SaveSettings()
  248. wait(1)
  249. getgenv().Settings.ezok= Dealdame
  250. if getgenv().Settings.ezok == true then
  251. game:GetService("RunService"):BindToRenderStep("Dealdame",0,function()
  252.  
  253. for i,v in pairs(game.workspace.Living:GetChildren()) do
  254. if v.Name == "Dummy" then
  255. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0,0,5)
  256. end
  257. end
  258.  
  259.  
  260.  
  261.  
  262. end)
  263. elseif getgenv().Settings.ezok == false then
  264. game:GetService("RunService"):UnbindFromRenderStep("Dealdame")
  265.  
  266. end
  267. end
  268. })
  269. local Section = Tab:AddSection({
  270. Name = "Auto Skill"
  271. })
  272. Tab:AddToggle({
  273. Name = "Auto CLick",
  274. Default = getgenv().Settings.AutoClick,
  275. Callback = function(AutoClickk)
  276. SaveSettings()
  277. wait(1)
  278. getgenv().Settings.AutoClick= AutoClickk
  279. if getgenv().Settings.AutoClick == true then
  280. game:GetService("RunService"):BindToRenderStep("AutoClickkk",0,function()
  281.  
  282. local A_1 = "LMB"
  283. local Event = game:GetService("ReplicatedStorage").Remotes.InputFunc
  284. Event:InvokeServer(A_1)
  285.  
  286.  
  287.  
  288. end)
  289. elseif getgenv().Settings.AutoClick == false then
  290. game:GetService("RunService"):UnbindFromRenderStep("AutoClickkk")
  291.  
  292. end
  293. end
  294. })
  295. Tab:AddToggle({
  296. Name = "Auto CLick R",
  297. Default = getgenv().Settings.ClickR,
  298. Callback = function(ClickRR)
  299. SaveSettings()
  300. wait(1)
  301. getgenv().Settings.ClickR= ClickRR
  302. if getgenv().Settings.ClickR == true then
  303. game:GetService("RunService"):BindToRenderStep("ClickRR",0,function()
  304.  
  305. local A_1 = "R"
  306. local Event = game:GetService("ReplicatedStorage").Remotes.InputFunc
  307. Event:InvokeServer(A_1)
  308.  
  309.  
  310.  
  311. end)
  312. elseif getgenv().Settings.ClickR == false then
  313. game:GetService("RunService"):UnbindFromRenderStep("ClickRR")
  314.  
  315. end
  316. end
  317. })
  318. Tab:AddToggle({
  319. Name = "Auto CLick F",
  320. Default = getgenv().Settings.ClickF,
  321. Callback = function(ClickFF)
  322. SaveSettings()
  323. wait(1)
  324. getgenv().Settings.ClickF= ClickFF
  325. if getgenv().Settings.ClickF == true then
  326. game:GetService("RunService"):BindToRenderStep("ClickFF",0,function()
  327.  
  328. local A_1 = "F"
  329. local Event = game:GetService("ReplicatedStorage").Remotes.InputFunc
  330. Event:InvokeServer(A_1)
  331.  
  332.  
  333.  
  334. end)
  335. elseif getgenv().Settings.ClickF== false then
  336. game:GetService("RunService"):UnbindFromRenderStep("ClickFF")
  337.  
  338. end
  339. end
  340. })
  341.  
  342. Tab:AddToggle({
  343. Name = "Auto CLick J",
  344. Default = getgenv().Settings.ClickJ,
  345. Callback = function(ClickJJ)
  346. SaveSettings()
  347. wait(1)
  348. getgenv().Settings.ClickJ= ClickJJ
  349. if getgenv().Settings.ClickJ == true then
  350. game:GetService("RunService"):BindToRenderStep("ClickJJ",0,function()
  351.  
  352. local A_1 = "J"
  353. local Event = game:GetService("ReplicatedStorage").Remotes.InputFunc
  354. Event:InvokeServer(A_1)
  355.  
  356.  
  357.  
  358. end)
  359. elseif getgenv().Settings.ClickJ== false then
  360. game:GetService("RunService"):UnbindFromRenderStep("ClickJJ")
  361.  
  362. end
  363. end
  364. })
  365.  
  366.  
  367. Tab:AddToggle({
  368. Name = "Auto CLick G",
  369. Default = getgenv().Settings.ClickGGG,
  370. Callback = function(clickGG)
  371. SaveSettings()
  372. wait(1)
  373. getgenv().Settings.ClickGGG= clickGG
  374. if getgenv().Settings.ClickGGG == true then
  375. game:GetService("RunService"):BindToRenderStep("clickRR",0,function()
  376.  
  377. local A_1 = "G"
  378. local Event = game:GetService("ReplicatedStorage").Remotes.InputFunc
  379. Event:InvokeServer(A_1)
  380.  
  381.  
  382.  
  383. end)
  384. elseif getgenv().Settings.ClickGGG == false then
  385. game:GetService("RunService"):UnbindFromRenderStep("clickRR")
  386.  
  387. end
  388. end
  389. })
  390.  
  391. Tab:AddToggle({
  392. Name = "Auto CLick E",
  393. Default = getgenv().Settings.clickE,
  394. Callback = function(clickEE)
  395. SaveSettings()
  396. wait(1)
  397. getgenv().Settings.clickE= clickEE
  398. if getgenv().Settings.clickE == true then
  399. game:GetService("RunService"):BindToRenderStep("clickEE",0,function()
  400.  
  401. local A_1 = "E"
  402. local Event = game:GetService("ReplicatedStorage").Remotes.InputFunc
  403. Event:InvokeServer(A_1)
  404.  
  405.  
  406.  
  407. end)
  408. elseif getgenv().Settings.clickE== false then
  409. game:GetService("RunService"):UnbindFromRenderStep("clickEE")
  410.  
  411. end
  412. end
  413. })
  414.  
  415. Tab:AddToggle({
  416. Name = "Auto Stand",
  417. Default = getgenv().Settings.clickQ,
  418. Callback = function(clickQQ)
  419. SaveSettings()
  420. wait(1)
  421. getgenv().Settings.clickQ= clickQQ
  422. if getgenv().Settings.clickQ == true then
  423. game:GetService("RunService"):BindToRenderStep("clickQQ",0,function()
  424.  
  425. if game.Players.LocalPlayer.Character.Stand["Stand Torso"].Transparency == 1 then
  426. local A_1 = "Q"
  427. local Event = game:GetService("ReplicatedStorage").Remotes.InputFunc
  428. Event:InvokeServer(A_1)
  429. end
  430.  
  431.  
  432.  
  433. end)
  434. elseif getgenv().Settings.clickQ == false then
  435. game:GetService("RunService"):UnbindFromRenderStep("clickQQ")
  436.  
  437. end
  438. end
  439. })
  440.  
  441. local Tab = Window:MakeTab({
  442. Name = "Farm Quest",
  443. Icon = "rbxassetid://4483345998",
  444. PremiumOnly = false
  445. })
  446. Tab:AddToggle({
  447. Name = "ShadowDio",
  448. Default = false,
  449. Callback = function(FarmQuestDIO)
  450. SaveSettings()
  451. wait(1)
  452. getgenv().Settings.FarmDIOQUEST = FarmQuestDIO
  453. if getgenv().Settings.FarmDIOQUEST == true then
  454. while getgenv().FarmDIOQUEST do
  455. wait(2)
  456. if game:GetService("Players").LocalPlayer.QuestLines["Shadow's Demands"]["Shadow Dio Quest"]["Time Stop"].Value == 0 then
  457. game:GetService("RunService"):BindToRenderStep("FarmTimesstop",0,function()
  458.  
  459. local A_1 = "F"
  460. local Event = game:GetService("ReplicatedStorage").Remotes.InputFunc
  461. Event:InvokeServer(A_1)
  462. end)
  463. end
  464. wait(1)
  465. if game:GetService("Players").LocalPlayer.QuestLines["Shadow's Demands"]["Shadow Dio Quest"]["Time Stop"].Value == 15 then
  466. game:GetService("RunService"):UnbindFromRenderStep("FarmTimesstop")
  467. end
  468. wait(1)
  469. if game:GetService("Players").LocalPlayer.QuestLines["Shadow's Demands"]["Shadow Dio Quest"]["Time Stop"].Value == 15 then
  470. game:GetService("RunService"):BindToRenderStep("FarmBlood",6,function()
  471. for i,v in pairs(game.workspace.Living:GetChildren()) do
  472. if v.Name == "Dummy" and v:FindFirstChild("HumanoidRootPart") then
  473. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0,0,3)
  474. wait(2)
  475. local A_1 = "Y"
  476. local Event = game:GetService("ReplicatedStorage").Remotes.InputFunc
  477. Event:InvokeServer(A_1)
  478. end
  479. end
  480. end)
  481.  
  482. end
  483. if game:GetService("Players").LocalPlayer.QuestLines["Shadow's Demands"]["Shadow Dio Quest"]["Drain Blood"].Value == 350 then
  484. game:GetService("RunService"):UnbindFromRenderStep("FarmBlood")
  485. end
  486.  
  487. wait(1)
  488. if game:GetService("Players").LocalPlayer.QuestLines["Shadow's Demands"]["Shadow Dio Quest"]["Drain Blood"].Value == 350 then
  489. game:GetService("RunService"):BindToRenderStep("Selfdie",0,function()
  490. for i,v in pairs(game.workspace.Living:GetChildren()) do
  491. if v.Name == "Akira_DEV Dummy" and v:FindFirstChild("HumanoidRootPart") then
  492. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0,0,-5)
  493. end
  494. end
  495. end)
  496. end
  497.  
  498.  
  499. if game:GetService("Players").LocalPlayer.QuestLines["Shadow's Demands"]["Shadow Dio Quest"]["Take DMG"].Value == 15000 then
  500. game:GetService("RunService"):UnbindFromRenderStep("Selfdie")
  501. end
  502. wait(1)
  503. if game:GetService("Players").LocalPlayer.QuestLines["Shadow's Demands"]["Shadow Dio Quest"]["Take DMG"].Value == 15000 then
  504. game:GetService("RunService"):BindToRenderStep("Deal Dameee",0,function()
  505.  
  506. for i,v in pairs(game.workspace.Living:GetChildren()) do
  507. if v.Name == "Dummy" and v:FindFirstChild("HumanoidRootPart") then
  508. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0,0,5)
  509.  
  510. end
  511. end
  512. end)
  513. end
  514. wait(1)
  515. if game:GetService("Players").LocalPlayer.QuestLines["Shadow's Demands"]["Shadow Dio Quest"]["Deal DMG"] == 15000 then
  516. game:GetService("RunService"):UnbindFromRenderStep("Deal Dameee")
  517. end
  518.  
  519. end
  520. end
  521. if getgenv().Settings.FarmDIOQUEST == false then
  522. getgenv().Settings.FarmDIOQUEST = false
  523. game:GetService("RunService"):UnbindFromRenderStep("FarmTimesstop")
  524. wait(1)
  525. game:GetService("RunService"):UnbindFromRenderStep("FarmBlood")
  526. wait(1)
  527. game:GetService("RunService"):UnbindFromRenderStep("Selfdie")
  528. wait(1)
  529. game:GetService("RunService"):UnbindFromRenderStep("Deal Dameee")
  530.  
  531. end
  532. end
  533. })
  534.  
  535. local Tab = Window:MakeTab({
  536. Name = "Hoop server",
  537. Icon = "rbxassetid://4483345998",
  538. PremiumOnly = false
  539. })
  540. local Tab = Window:MakeTab({
  541. Name = "Local Player",
  542. Icon = "rbxassetid://4483345998",
  543. PremiumOnly = false
  544. })
  545.  
  546.  
  547. Tab:AddDropdown({
  548. Name = "Teleport Npcs",
  549. Default = "1",
  550. Options = testoke,
  551. Callback = function(TpNpc)
  552.  
  553. for i,v in pairs(game.workspace.NPCS:GetChildren()) do
  554. if v.Name == TpNpc then
  555. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0,0,0)
  556. end
  557. end
  558.  
  559. end
  560.  
  561. })
  562.  
  563. Tab:AddDropdown({
  564. Name = "Choose Player",
  565. Default = "1",
  566. Options = abcde,
  567. Callback = function(ValueNameok)
  568. while getgenv().farmplayer == true do
  569. wait()
  570. for i,v in pairs(game.workspace.Living:GetChildren()) do
  571. if v.Name == ValueNameok then
  572. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0,0,5)
  573. end
  574. end
  575. end
  576. Dropdown:Refresh(ValueNameok,true)
  577. end
  578.  
  579. })
  580.  
  581.  
  582.  
  583. Tab:AddToggle({
  584. Name = "Auto Enable Farm Player",
  585. Default = false,
  586. Callback = function(abccde)
  587. getgenv().farmplayer = abccde
  588. end
  589. })
  590.  
  591.  
  592.  
  593.  
  594.  
  595. Tab:AddButton({
  596. Name = "Invisible",
  597. Callback = function()
  598.  
  599. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.RootJoint:Remove()
  600. end
  601. })
  602.  
  603. Tab:AddButton({
  604. Name = "god mode",
  605. Callback = function()
  606.  
  607. game:GetService("Players").LocalPlayer.Character.Values.Block:Destroy()
  608. end
  609. })
  610.  
  611.  
  612. --[[
  613. Name = <string> - The name of the button.
  614. Callback = <function> - The function of the button.
  615. ]]
  616. local Tab = Window:MakeTab({
  617. Name = "Setting",
  618. Icon = "rbxassetid://4483345998",
  619. PremiumOnly = false
  620. })
  621.  
  622.  
  623. Tab:AddToggle({
  624. Name = "Auto Save",
  625. Default = getgenv().Settings.abc,
  626. Callback = function(settingez)
  627. getgenv().Settings.abc = settingez
  628. if getgenv().Settings.abc == true then
  629. while getgenv().Settings.abc do
  630. wait()
  631. SaveSettings()
  632. end
  633. end
  634.  
  635. end
  636. })
  637.  
  638.  
  639.  
  640.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement