Tudjewuj

Untitled

Oct 23rd, 2024
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 41.15 KB | None | 0 0
  1. local OrionLib =
  2. loadstring(
  3. game:HttpGet(
  4. ("https://raw.githubusercontent.com/ionlyusegithubformcmods/1-Line-Scripts/main/Mobile%20Friendly%20Orion")
  5. )
  6. )()
  7.  
  8. local Window =
  9. OrionLib:MakeWindow(
  10. {
  11. Name = "Budgie Hub | Universal Battlegrounds",
  12. HidePremium = true,
  13. IntroEnabled = false,
  14. SaveConfig = false,
  15. ConfigFolder = "OrionTest"
  16. }
  17. )
  18.  
  19. local Tab =
  20. Window:MakeTab(
  21. {
  22. Name = "Characters",
  23. Icon = "rbxassetid://4483345998",
  24. PremiumOnly = false
  25. }
  26. )
  27.  
  28.  
  29.  
  30. local Section =
  31. Tab:AddSection(
  32. {
  33. Name = "Mahito"
  34. }
  35. )
  36.  
  37. Tab:AddButton(
  38. {
  39. Name = "Idle Transfiguration",
  40. Callback = function()
  41. game:GetService("Players").LocalPlayer.Backpack["Idle Transfiguration"].Client.Event:FireServer()
  42. end
  43. }
  44. )
  45.  
  46. Tab:AddButton(
  47. {
  48. Name = "0.2 Second Domain",
  49. Callback = function()
  50. game:GetService("Players").LocalPlayer.Backpack["0.2 Second Domain"].LocalScript.Event:FireServer()
  51. end
  52. }
  53. )
  54.  
  55. Tab:AddButton(
  56. {
  57. Name = "Activate Ult",
  58. Callback = function()
  59. game:GetService("Players").LocalPlayer.PlayerGui["Ultimate Bar"].ImageLabel.Red["Activate Keyboard"].RemoteEvent:FireServer()
  60. end
  61. }
  62. )
  63.  
  64. Tab:AddButton(
  65. {
  66. Name = "RunIdle",
  67. Callback = function()
  68. game:GetService("ReplicatedStorage").RunIdle:FireServer()
  69. end
  70. }
  71. )
  72.  
  73. Tab:AddButton(
  74. {
  75. Name = "Clone",
  76. Callback = function()
  77. game:GetService("ReplicatedStorage").ShadowEvent:FireServer()
  78. end
  79. }
  80. )
  81.  
  82. local Section =
  83. Tab:AddSection(
  84. {
  85. Name = "Cid Kagenou"
  86. }
  87. )
  88.  
  89. Tab:AddButton(
  90. {
  91. Name = "Crazy Recovery",
  92. Callback = function()
  93. for i = 1, 10 do
  94. game:GetService("Players").LocalPlayer.Backpack["Atomic Recovery"].LocalScript.Event:FireServer()
  95. end
  96. end
  97. }
  98. )
  99.  
  100. Tab:AddButton(
  101. {
  102. Name = "Cid Ult Barrage",
  103. Callback = function()
  104. game:GetService("ReplicatedStorage").CidBarrage:FireServer()
  105. end
  106. }
  107. )
  108.  
  109. Tab:AddButton(
  110. {
  111. Name = "Blink",
  112. Callback = function()
  113. game:GetService("ReplicatedStorage").Blink:FireServer()
  114. end
  115. }
  116. )
  117. Tab:AddButton(
  118. {
  119. Name = "I AM THINK ALL RANGE THINK! ATOMIC!",
  120. Callback = function()
  121. game:GetService("ReplicatedStorage").AdminAtomic:FireServer()
  122. end
  123. }
  124. )
  125.  
  126. local Tab =
  127. Window:MakeTab(
  128. {
  129. Name = "Utilities",
  130. Icon = "rbxassetid://4483345998",
  131. PremiumOnly = false
  132. }
  133. )
  134.  
  135. Tab:AddButton(
  136. {
  137. Name = "Megumin Tool",
  138. Callback = function()
  139. local tool = Instance.new("Tool")
  140. tool.Name = "Megumin"
  141. tool.RequiresHandle = false
  142.  
  143. local lastPressTime = 0
  144. tool.Equipped:Connect(function()
  145. local currentTime = tick()
  146. if currentTime - lastPressTime >= 0.1 then
  147. lastPressTime = currentTime
  148. local mouse = game.Players.LocalPlayer:GetMouse()
  149. local hit = mouse.Hit.Position
  150. local oht = Vector3.new(hit.X, hit.Y, hit.Z)
  151. game:GetService("ReplicatedStorage").Megumin.Remote:FireServer(oht)
  152. end
  153. end)
  154.  
  155. tool.Parent = game.Players.LocalPlayer.Backpack
  156. end
  157. }
  158. )
  159.  
  160. Tab:AddButton(
  161. {
  162. Name = "Bizzcut Mochi",
  163. Callback = function()
  164. local tool1 = Instance.new("Tool")
  165. tool1.Name = "Bizzcut Mochi"
  166. tool1.RequiresHandle = false
  167.  
  168. tool1.Equipped:Connect(function()
  169. game:GetService("ReplicatedStorage").BuzzRizz:FireServer()
  170. end)
  171.  
  172. tool1.Parent = game.Players.LocalPlayer.Backpack
  173. end
  174. }
  175. )
  176.  
  177. Tab:AddButton(
  178. {
  179. Name = "Max Missle Mochi",
  180. Callback = function()
  181. local tool2 = Instance.new("Tool")
  182. tool2.Name = "Max Missle Mochi"
  183. tool2.RequiresHandle = false
  184.  
  185. tool2.Equipped:Connect(function()
  186. game:GetService("ReplicatedStorage").MaxMissileMochiBurn:FireServer()
  187. end)
  188.  
  189. tool2.Parent = game.Players.LocalPlayer.Backpack
  190. end
  191. }
  192. )
  193.  
  194. Tab:AddButton(
  195. {
  196. Name = "Poisones Run",
  197. Callback = function()
  198. local tool3 = Instance.new("Tool")
  199. tool3.Name = "Poisones Run"
  200. tool3.RequiresHandle = false
  201.  
  202. tool3.Equipped:Connect(function()
  203. game:GetService("ReplicatedStorage").RunIdle:FireServer()
  204. end)
  205.  
  206. tool3.Parent = game.Players.LocalPlayer.Backpack
  207.  
  208. end
  209. }
  210. )
  211.  
  212. Tab:AddButton(
  213. {
  214. Name = "Water Spike",
  215. Callback = function()
  216. local tool4 = Instance.new("Tool")
  217. tool4.Name = "Water Spike"
  218. tool4.RequiresHandle = false
  219.  
  220. tool4.Equipped:Connect(function()
  221. game:GetService("ReplicatedStorage").BOceanicInsanity:FireServer()
  222. end)
  223.  
  224. tool4.Parent = game.Players.LocalPlayer.Backpack
  225.  
  226. end
  227. }
  228. )
  229.  
  230. Tab:AddButton(
  231. {
  232. Name = "All Range Atomic Tool",
  233. Callback = function()
  234. local tool = Instance.new("Tool")
  235. tool.Name = "All Range Atomic"
  236. tool.RequiresHandle = false
  237.  
  238. tool.Equipped:Connect(function()
  239. game:GetService("ReplicatedStorage").AdminAtomic:FireServer()
  240. end)
  241.  
  242. tool.Parent = game.Players.LocalPlayer.Backpack
  243. end
  244. }
  245. )
  246.  
  247. Tab:AddButton(
  248. {
  249. Name = "Final Getsuga Tensho: Mugetsu",
  250. Callback = function()
  251. local tool = Instance.new("Tool")
  252. tool.Name = "Mugetsu"
  253. tool.RequiresHandle = false
  254.  
  255. tool.Equipped:Connect(function()
  256. game:GetService("ReplicatedStorage").MOONAIRUNGTHAN:FireServer()
  257. end)
  258.  
  259. tool.Parent = game.Players.LocalPlayer.Backpack
  260. end
  261. }
  262. )
  263.  
  264. Tab:AddButton(
  265. {
  266. Name = "Conqueror Haki",
  267. Callback = function()
  268. local tool = Instance.new("Tool")
  269. tool.Name = "Haki"
  270. tool.RequiresHandle = false
  271.  
  272. tool.Equipped:Connect(function()
  273. game:GetService("ReplicatedStorage").ConqHaki:FireServer()
  274. end)
  275.  
  276. tool.Parent = game.Players.LocalPlayer.Backpack
  277. end
  278. }
  279. )
  280.  
  281. Tab:AddButton(
  282. {
  283. Name = "Time Stop",
  284. Callback = function()
  285. local tool = Instance.new("Tool")
  286. tool.Name = "Za Warudo"
  287. tool.RequiresHandle = false
  288.  
  289. tool.Equipped:Connect(function()
  290. game:GetService("ReplicatedStorage").DioTSHeavenly:FireServer()
  291. end)
  292.  
  293. tool.Parent = game.Players.LocalPlayer.Backpack
  294. end
  295. }
  296. )
  297.  
  298. Tab:AddButton(
  299. {
  300. Name = "Hollow Purple",
  301. Callback = function()
  302. local tool = Instance.new("Tool")
  303. tool.Name = "Hollow Purple"
  304. tool.RequiresHandle = false
  305.  
  306. tool.Equipped:Connect(function()
  307. game:GetService("ReplicatedStorage").HollowPurple.Activate:FireServer()
  308. end)
  309.  
  310. tool.Parent = game.Players.LocalPlayer.Backpack
  311. end
  312. }
  313. )
  314.  
  315. Tab:AddButton(
  316. {
  317. Name = "Observation Haki",
  318. Callback = function()
  319. local tool = Instance.new("Tool")
  320. tool.Name = "Observation"
  321. tool.RequiresHandle = false
  322.  
  323. tool.Equipped:Connect(function()
  324. game:GetService("ReplicatedStorage").Observation:FireServer()
  325. end)
  326.  
  327. tool.Parent = game.Players.LocalPlayer.Backpack
  328. end
  329. }
  330. )
  331.  
  332. Tab:AddButton(
  333. {
  334. Name = "Super Saiyan",
  335. Callback = function()
  336. game:GetService("ReplicatedStorage").SUPASAYIN:FireServer()
  337. end
  338. }
  339. )
  340.  
  341. Tab:AddButton(
  342. {
  343. Name = "Run Idle",
  344. Callback = function()
  345. local tool = Instance.new("Tool")
  346. tool.Name = "RunIdle"
  347. tool.RequiresHandle = false
  348.  
  349. tool.Equipped:Connect(function()
  350. game:GetService("ReplicatedStorage").RunIdle:FireServer()
  351. end)
  352.  
  353. tool.Parent = game.Players.LocalPlayer.Backpack
  354. end
  355. }
  356. )
  357.  
  358. Tab:AddButton(
  359. {
  360. Name = "Clone",
  361. Callback = function()
  362. local tool = Instance.new("Tool")
  363. tool.Name = "Clone"
  364. tool.RequiresHandle = false
  365.  
  366. tool.Equipped:Connect(function()
  367. game:GetService("ReplicatedStorage").ShadowEvent:FireServer()
  368. end)
  369.  
  370. tool.Parent = game.Players.LocalPlayer.Backpack
  371. end
  372. }
  373. )
  374.  
  375.  
  376. local Tab =
  377. Window:MakeTab(
  378. {
  379. Name = "Dev",
  380. Icon = "rbxassetid://4483345998",
  381. PremiumOnly = false
  382. }
  383. )
  384.  
  385.  
  386. Tab:AddButton(
  387. {
  388. Name = "Malevolent Shrine",
  389. Callback = function()
  390. game:GetService("ReplicatedStorage").MalevolentShrineRemote:FireServer()
  391.  
  392. end
  393. }
  394. )
  395.  
  396. Tab:AddButton(
  397. {
  398. Name = "Bizzcut Mochi",
  399. Callback = function()
  400. game:GetService("ReplicatedStorage").BuzzRizz:FireServer()
  401.  
  402. end
  403. }
  404. )
  405.  
  406. Tab:AddButton(
  407. {
  408. Name = "Max Missle Mochi",
  409. Callback = function()
  410. game:GetService("ReplicatedStorage").MaxMissileMochiBurn:FireServer()
  411.  
  412. end
  413. }
  414. )
  415.  
  416. Tab:AddButton(
  417. {
  418. Name = "Poisones Run",
  419. Callback = function()
  420. game:GetService("ReplicatedStorage").RunIdle:FireServer()
  421.  
  422. end
  423. }
  424. )
  425.  
  426. Tab:AddButton(
  427. {
  428. Name = "Water Spike",
  429. Callback = function()
  430. game:GetService("ReplicatedStorage").BOceanicInsanity:FireServer()
  431.  
  432. end
  433. }
  434. )
  435.  
  436. Tab:AddButton(
  437. {
  438. Name = "Deep Water Killer",
  439. Callback = function()
  440. for i = 1, 10 do
  441. game:GetService("ReplicatedStorage").BOceanicInsanity:FireServer()
  442. end
  443.  
  444. end
  445. }
  446. )
  447.  
  448. Tab:AddButton(
  449. {
  450. Name = "Time Stop",
  451. Callback = function()
  452. game:GetService("ReplicatedStorage").DioTSHeavenly:FireServer()
  453.  
  454. end
  455. }
  456. )
  457.  
  458. Tab:AddButton(
  459. {
  460. Name = "Clone",
  461. Callback = function()
  462. game:GetService("ReplicatedStorage").ShadowEvent:FireServer()
  463.  
  464. end
  465. }
  466. )
  467.  
  468. Tab:AddButton(
  469. {
  470. Name = "RunIdle",
  471. Callback = function()
  472. game:GetService("ReplicatedStorage").RunIdle:FireServer()
  473.  
  474. end
  475. }
  476. )
  477.  
  478. Tab:AddButton(
  479. {
  480. Name = "Observation",
  481. Callback = function()
  482. game:GetService("ReplicatedStorage").Observation:FireServer()
  483.  
  484. end
  485. }
  486. )
  487.  
  488. Tab:AddButton(
  489. {
  490. Name = "Conqueror Haki",
  491. Callback = function()
  492. game:GetService("ReplicatedStorage").ConqHaki:FireServer()
  493.  
  494. end
  495. }
  496. )
  497.  
  498. Tab:AddButton(
  499. {
  500. Name = "Hollow Purple",
  501. Callback = function()
  502. game:GetService("ReplicatedStorage").HollowPurple.Activate:FireServer()
  503.  
  504. end
  505. }
  506. )
  507.  
  508. Tab:AddButton(
  509. {
  510. Name = "Normal Za Warudo",
  511. Callback = function()
  512. game:GetService("ReplicatedStorage").DioTSNormal:FireServer()
  513.  
  514. end
  515. }
  516. )
  517.  
  518. local Players = game:GetService("Players")
  519. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  520. local LocalPlayer = Players.LocalPlayer
  521. local RunService = game:GetService("RunService")
  522. local MochiAnemoneRemote = ReplicatedStorage.Remote.Mochi_Anemone
  523. local isScriptActive = false -- флаг активации
  524.  
  525. -- Функция для проверки объектов в радиусе
  526. local function isEntityNearby(radius)
  527. local character = LocalPlayer.Character
  528. if character and character.PrimaryPart then
  529. local parts = workspace:FindPartsInRegion3(
  530. Region3.new(character.PrimaryPart.Position - Vector3.new(radius, radius, radius),
  531. character.PrimaryPart.Position + Vector3.new(radius, radius, radius)),
  532. character, -- Игнорируем своего персонажа
  533. math.huge -- Нет ограничения на количество найденных объектов
  534. )
  535.  
  536. -- Проверяем, есть ли рядом части других объектов
  537. for _, part in pairs(parts) do
  538. if part.Parent and part.Parent ~= character then
  539. return true -- Если найдена любая сущность
  540. end
  541. end
  542. end
  543. return false
  544. end
  545.  
  546. -- Главный цикл работы скрипта
  547. local function startScript()
  548. local radius = 10 -- радиус для поиска сущностей
  549. while isScriptActive do
  550. -- Если рядом есть сущности
  551. if isEntityNearby(radius) then
  552. local ohString1 = "Anemone"
  553. local ohNumber2 = 30 -- изменено на 1000
  554. local ohInstance3 = LocalPlayer
  555. MochiAnemoneRemote:FireServer(ohString1, ohNumber2, ohInstance3)
  556. end
  557. RunService.Heartbeat:Wait() -- цикл обновляется каждое сердцебиение
  558. end
  559. end
  560.  
  561. -- Добавляем чекбокс в интерфейс Orion Lib
  562. Tab:AddToggle({
  563. Name = "Activate Aura",
  564. Default = false,
  565. Callback = function(value)
  566. isScriptActive = value
  567. if isScriptActive then
  568. -- Запуск скрипта при активации чекбокса
  569. startScript()
  570. end
  571. end
  572. })
  573.  
  574.  
  575.  
  576. local Tab =
  577. Window:MakeTab(
  578. {
  579. Name = "Moveset",
  580. Icon = "rbxassetid://4483345998",
  581. PremiumOnly = false
  582. }
  583. )
  584.  
  585. Tab:AddButton(
  586. {
  587. Name = "Aura's Moveset",
  588. Callback = function()
  589. local tool1 = Instance.new("Tool")
  590. tool1.Name = "Bizzcut Mochi"
  591. tool1.RequiresHandle = false
  592.  
  593. tool1.Equipped:Connect(function()
  594. game:GetService("ReplicatedStorage").BuzzRizz:FireServer()
  595. end)
  596.  
  597. tool1.Parent = game.Players.LocalPlayer.Backpack
  598.  
  599. local tool2 = Instance.new("Tool")
  600. tool2.Name = "Max Missle Mochi"
  601. tool2.RequiresHandle = false
  602.  
  603. tool2.Equipped:Connect(function()
  604. game:GetService("ReplicatedStorage").MaxMissileMochiBurn:FireServer()
  605. end)
  606.  
  607. tool2.Parent = game.Players.LocalPlayer.Backpack
  608.  
  609. local tool3 = Instance.new("Tool")
  610. tool3.Name = "Poisones Run"
  611. tool3.RequiresHandle = false
  612.  
  613. tool3.Equipped:Connect(function()
  614. game:GetService("ReplicatedStorage").RunIdle:FireServer()
  615. end)
  616.  
  617. tool3.Parent = game.Players.LocalPlayer.Backpack
  618.  
  619. local tool4 = Instance.new("Tool")
  620. tool4.Name = "Water Spike"
  621. tool4.RequiresHandle = false
  622.  
  623. tool4.Equipped:Connect(function()
  624. game:GetService("ReplicatedStorage").BOceanicInsanity:FireServer()
  625. end)
  626.  
  627. tool4.Parent = game.Players.LocalPlayer.Backpack
  628. end
  629. }
  630. )
  631.  
  632. Tab:AddButton(
  633. {
  634. Name = "Choso",
  635. Callback = function()
  636. local tool1 = Instance.new("Tool")
  637. tool1.Name = "Blood Slam"
  638. tool1.RequiresHandle = false
  639.  
  640. tool1.Equipped:Connect(function()
  641. game:GetService("ReplicatedStorage").BloodSlam:FireServer()
  642. end)
  643.  
  644. tool1.Parent = game.Players.LocalPlayer.Backpack
  645.  
  646. local tool2 = Instance.new("Tool")
  647. tool2.Name = "Blood Fist"
  648. tool2.RequiresHandle = false
  649.  
  650. tool2.Equipped:Connect(function()
  651. game:GetService("ReplicatedStorage").BloodFist:FireServer()
  652. end)
  653.  
  654. tool2.Parent = game.Players.LocalPlayer.Backpack
  655.  
  656. local tool3 = Instance.new("Tool")
  657. tool3.Name = "Convergence"
  658. tool3.RequiresHandle = false
  659.  
  660. tool3.Equipped:Connect(function()
  661. game:GetService("ReplicatedStorage").Convergence:FireServer()
  662. end)
  663.  
  664. tool3.Parent = game.Players.LocalPlayer.Backpack
  665.  
  666. local tool4 = Instance.new("Tool")
  667. tool4.Name = "Piercing Blood"
  668. tool4.RequiresHandle = false
  669.  
  670. tool4.Equipped:Connect(function()
  671. game:GetService("ReplicatedStorage").PiercingBlood:FireServer()
  672. end)
  673.  
  674. tool4.Parent = game.Players.LocalPlayer.Backpack
  675.  
  676. local tool5 = Instance.new("Tool")
  677. tool5.Name = "Blood Spears"
  678. tool5.RequiresHandle = false
  679.  
  680. tool5.Equipped:Connect(function()
  681. game:GetService("ReplicatedStorage").BloodSpears:FireServer()
  682. end)
  683.  
  684. tool5.Parent = game.Players.LocalPlayer.Backpack
  685. end
  686. }
  687. )
  688.  
  689. Tab:AddButton(
  690. {
  691. Name = "Silent Esper",
  692. Callback = function()
  693. local tool1 = Instance.new("Tool")
  694. tool1.Name = "Nail Shoot"
  695. tool1.RequiresHandle = false
  696.  
  697. tool1.Equipped:Connect(function()
  698. game:GetService("ReplicatedStorage").NailShootNExterminateAuto:FireServer()
  699. end)
  700.  
  701. tool1.Parent = game.Players.LocalPlayer.Backpack
  702.  
  703. local tool2 = Instance.new("Tool")
  704. tool2.Name = "Dismantle"
  705. tool2.RequiresHandle = false
  706.  
  707. tool2.Equipped:Connect(function()
  708. game:GetService("ReplicatedStorage").HairpinN:FireServer()
  709. end)
  710.  
  711. tool2.Parent = game.Players.LocalPlayer.Backpack
  712.  
  713. local tool3 = Instance.new("Tool")
  714. tool3.Name = "Blood Spears"
  715. tool3.RequiresHandle = false
  716.  
  717. tool3.Equipped:Connect(function()
  718. game:GetService("ReplicatedStorage").BloodSpears:FireServer()
  719. end)
  720.  
  721. tool3.Parent = game.Players.LocalPlayer.Backpack
  722.  
  723. local tool4 = Instance.new("Tool")
  724. tool4.Name = "Tsunami"
  725. tool4.RequiresHandle = false
  726.  
  727. tool4.Equipped:Connect(function()
  728. game:GetService("ReplicatedStorage").Tsunami:FireServer()
  729. end)
  730.  
  731. tool4.Parent = game.Players.LocalPlayer.Backpack
  732. end
  733. }
  734. )
  735.  
  736. Tab:AddButton(
  737. {
  738. Name = "Dio",
  739. Callback = function()
  740. local tool1 = Instance.new("Tool")
  741. tool1.Name = "Overwrite Flury"
  742. tool1.RequiresHandle = false
  743.  
  744. tool1.Equipped:Connect(function()
  745. game:GetService("ReplicatedStorage").DIoOverwriteFlury:FireServer()
  746. end)
  747.  
  748. tool1.Parent = game.Players.LocalPlayer.Backpack
  749.  
  750. local tool2 = Instance.new("Tool")
  751. tool2.Name = "Reality Overwrite"
  752. tool2.RequiresHandle = false
  753.  
  754. tool2.Equipped:Connect(function()
  755. game:GetService("ReplicatedStorage").DIoOverwriteReality:FireServer()
  756. end)
  757.  
  758. tool2.Parent = game.Players.LocalPlayer.Backpack
  759.  
  760. local tool3 = Instance.new("Tool")
  761. tool3.Name = "Greatest High"
  762. tool3.RequiresHandle = false
  763.  
  764. tool3.Equipped:Connect(function()
  765. game:GetService("ReplicatedStorage").OverwriteDioGrab:FireServer()
  766. end)
  767.  
  768. tool3.Parent = game.Players.LocalPlayer.Backpack
  769.  
  770. local tool4 = Instance.new("Tool")
  771. tool4.Name = "Za Warudo"
  772. tool4.RequiresHandle = false
  773.  
  774. tool4.Equipped:Connect(function()
  775. game:GetService("ReplicatedStorage").DioTSHeavenly:FireServer()
  776. end)
  777.  
  778. tool4.Parent = game.Players.LocalPlayer.Backpack
  779. end
  780. }
  781. )
  782.  
  783. Tab:AddButton(
  784. {
  785. Name = "Dio Ult / Base",
  786. Callback = function()
  787. local tool1 = Instance.new("Tool")
  788. tool1.Name = "Stand Barrage"
  789. tool1.RequiresHandle = false
  790.  
  791. tool1.Equipped:Connect(function()
  792. game:GetService("ReplicatedStorage").DioBarrage:FireServer()
  793. end)
  794.  
  795. tool1.Parent = game.Players.LocalPlayer.Backpack
  796.  
  797. local tool2 = Instance.new("Tool")
  798. tool2.Name = "Stingy Eyes"
  799. tool2.RequiresHandle = false
  800.  
  801. tool2.Equipped:Connect(function()
  802. game:GetService("ReplicatedStorage").DioEye:FireServer()
  803. end)
  804.  
  805. tool2.Parent = game.Players.LocalPlayer.Backpack
  806.  
  807. local tool3 = Instance.new("Tool")
  808. tool3.Name = "Brando Legacy"
  809. tool3.RequiresHandle = false
  810.  
  811. tool3.Equipped:Connect(function()
  812. game:GetService("ReplicatedStorage").DioGrab:FireServer()
  813. end)
  814.  
  815. tool3.Parent = game.Players.LocalPlayer.Backpack
  816.  
  817. local tool4 = Instance.new("Tool")
  818. tool4.Name = "Donut"
  819. tool4.RequiresHandle = false
  820.  
  821. tool4.Equipped:Connect(function()
  822. game:GetService("ReplicatedStorage").DioDonutMV:FireServer()
  823. end)
  824.  
  825. tool4.Parent = game.Players.LocalPlayer.Backpack
  826.  
  827. local tool5 = Instance.new("Tool")
  828. tool5.Name = "Overwrite Flury"
  829. tool5.RequiresHandle = false
  830.  
  831. tool5.Equipped:Connect(function()
  832. game:GetService("ReplicatedStorage").DIoOverwriteFlury:FireServer()
  833. end)
  834.  
  835. tool5.Parent = game.Players.LocalPlayer.Backpack
  836.  
  837. local tool6 = Instance.new("Tool")
  838. tool6.Name = "Reality Overwrite"
  839. tool6.RequiresHandle = false
  840.  
  841. tool6.Equipped:Connect(function()
  842. game:GetService("ReplicatedStorage").DIoOverwriteReality:FireServer()
  843. end)
  844.  
  845. tool6.Parent = game.Players.LocalPlayer.Backpack
  846.  
  847. local tool7 = Instance.new("Tool")
  848. tool7.Name = "Greatest High"
  849. tool7.RequiresHandle = false
  850.  
  851. tool7.Equipped:Connect(function()
  852. game:GetService("ReplicatedStorage").OverwriteDioGrab:FireServer()
  853. end)
  854.  
  855. tool7.Parent = game.Players.LocalPlayer.Backpack
  856.  
  857. local tool8 = Instance.new("Tool")
  858. tool8.Name = "Za Warudo"
  859. tool8.RequiresHandle = false
  860.  
  861. tool8.Equipped:Connect(function()
  862. game:GetService("ReplicatedStorage").DioTSHeavenly:FireServer()
  863. end)
  864.  
  865. tool8.Parent = game.Players.LocalPlayer.Backpack
  866.  
  867. local tool9 = Instance.new("Tool")
  868. tool9.Name = "Normal Za Warudo"
  869. tool9.RequiresHandle = false
  870.  
  871. tool9.Equipped:Connect(function()
  872. game:GetService("ReplicatedStorage").DioTSNormal:FireServer()
  873. end)
  874.  
  875. tool9.Parent = game.Players.LocalPlayer.Backpack
  876. end
  877. }
  878. )
  879.  
  880.  
  881. local Tab =
  882. Window:MakeTab(
  883. {
  884. Name = "Options",
  885. Icon = "rbxassetid://4483345998",
  886. PremiumOnly = false
  887. }
  888. )
  889.  
  890. Tab:AddButton(
  891. {
  892. Name = "Activate Ultimate",
  893. Callback = function()
  894. game:GetService("Players").LocalPlayer.PlayerGui["Ultimate Bar"].ImageLabel.Red["Activate Keyboard"].RemoteEvent:FireServer()
  895. end
  896. }
  897. )
  898.  
  899. Tab:AddButton(
  900. {
  901. Name = "Inject Infinity Yield",
  902. Callback = function()
  903. loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()
  904. end
  905. }
  906. )
  907.  
  908. Tab:AddButton(
  909. {
  910. Name = "Reset",
  911. Callback = function()
  912. game:GetService("Players").LocalPlayer.Character.Humanoid.Health = 0
  913. end
  914. }
  915. )
  916.  
  917. Tab:AddButton(
  918. {
  919. Name = "Anti purple shot",
  920. Callback = function()
  921. local player = game:GetService("Players").LocalPlayer
  922. while task.wait() do
  923. local parts =
  924. workspace:GetPartBoundsInRadius(player.Character:WaitForChild("HumanoidRootPart").Position, 10)
  925. for _, part in ipairs(parts) do
  926. part.CanTouch = fasle
  927. end
  928. end
  929. end
  930. }
  931. )
  932.  
  933. Tab:AddButton(
  934. {
  935. Name = "Anti slow",
  936. Callback = function()
  937. repeat
  938. wait()
  939. local Player = game.Players.LocalPlayer
  940. local Character = Player.Character or Player.CharacterAdded:Wait()
  941.  
  942. local initialSpeed = 16
  943. local currentSpeed = Character.Humanoid.WalkSpeed
  944.  
  945. if currentSpeed >= 0 and currentSpeed <= 10 then
  946. Character.Humanoid.WalkSpeed = initialSpeed
  947. else
  948. Character.Humanoid.WalkSpeed = currentSpeed
  949. end
  950. until game:GetService("Players").LocalPlayer.Character.Humanoid.Health == 0
  951. end
  952. }
  953. )
  954.  
  955. Tab:AddButton({
  956. Name = "Automatic Tools Active",
  957. Callback = function()
  958. local player = game.Players.LocalPlayer
  959. local character = player.Character or player.CharacterAdded:Wait()
  960.  
  961. repeat
  962. wait(0.4)
  963. if character then
  964. local tool = character:FindFirstChildOfClass("Tool")
  965. if tool then
  966. tool:Activate()
  967. end
  968. end
  969. until character.Humanoid.Health <= 0
  970. end
  971. })
  972.  
  973. Tab:AddButton(
  974. {
  975. Name = "Anti inventory lock",
  976. Callback = function()
  977. while true do
  978. task.wait()
  979. local StarterGui = game:GetService("StarterGui")
  980. StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
  981.  
  982. local sgui = game:GetService("StarterGui")
  983. sgui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, true)
  984. end
  985. end
  986. }
  987. )
  988.  
  989. Tab:AddDropdown(
  990. {
  991. Name = "Input Character",
  992. Default = "1",
  993. Options = {
  994. "Mahito",
  995. "Naruto",
  996. "Cid",
  997. },
  998. Callback = function(Value)
  999. local args = {
  1000. [1] = Value
  1001. }
  1002.  
  1003. game:GetService("Players").LocalPlayer.Character:FindFirstChild("Change Character").ChangeCharacter:FireServer(unpack(args))
  1004. end
  1005. }
  1006. )
  1007. Tab:AddButton(
  1008. {
  1009. Name = "Anti Void",
  1010. Callback = function()
  1011. local part = Instance.new("Part")
  1012. part.Name = "AntiFallPart"
  1013. part.Size = Vector3.new(50000, 5, 50000)
  1014. part.Transparency = 1
  1015. part.Anchored = true
  1016. part.Position = Vector3.new(8, -47, -92)
  1017. part.Parent = game.Workspace
  1018.  
  1019. local part = Instance.new("Part")
  1020. part.Name = "AntiFallPart2"
  1021. part.Size = Vector3.new(50000, 5, 50000)
  1022. part.Transparency = 0.5
  1023. part.Anchored = true
  1024. part.Position = Vector3.new(8, -94, -92)
  1025. part.Parent = game.Workspace
  1026. end
  1027. }
  1028. )
  1029.  
  1030. Tab:AddButton(
  1031. {
  1032. Name = "Anti Jump Block",
  1033. Callback = function()
  1034. while true do
  1035. wait()
  1036. local Player = game.Players.LocalPlayer
  1037. local Character = Player.Character or Player.CharacterAdded:Wait()
  1038. Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Jumping, true)
  1039.  
  1040. local initialJump = 50
  1041. local currentJump = Character.Humanoid.JumpPower
  1042.  
  1043. if currentJump >= 0 and currentJump <= 10 then
  1044. Character.Humanoid.JumpPower = initialJump
  1045. else
  1046. Character.Humanoid.JumpPower = currentJump
  1047. end
  1048. end
  1049. end
  1050. }
  1051. )
  1052.  
  1053. Tab:AddButton(
  1054. {
  1055. Name = "Anti Reclining",
  1056. Callback = function()
  1057. local plr = game.Players.LocalPlayer
  1058. local char = plr.Character
  1059. for _, child in pairs(char:GetChildren()) do
  1060. if child:IsA("BasePart") then
  1061. child.Massless = false
  1062. child.CustomPhysicalProperties = PhysicalProperties.new(math.huge, math.huge, math.huge)
  1063. end
  1064. end
  1065. end
  1066. }
  1067. )
  1068.  
  1069. Tab:AddButton(
  1070. {
  1071. Name = "Anti Reclining V2",
  1072. Callback = function()
  1073. while true do
  1074. task.wait()
  1075. speaker = game.Players.LocalPlayer
  1076. for i, v in pairs(speaker.Character:GetDescendants()) do
  1077. if
  1078. v:IsA("BodyVelocity") or v:IsA("BodyGyro") or v:IsA("RocketPropulsion") or v:IsA("BodyThrust") or
  1079. v:IsA("BodyAngularVelocity") or
  1080. v:IsA("AngularVelocity") or
  1081. v:IsA("BodyForce") or
  1082. v:IsA("VectorForce") or
  1083. v:IsA("LineForce")
  1084. then
  1085. v:Destroy()
  1086. end
  1087. end
  1088. end
  1089. end
  1090. }
  1091. )
  1092.  
  1093. Tab:AddButton(
  1094. {
  1095. Name = "Kill All NPC",
  1096. Callback = function()
  1097. sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", 112412400000)
  1098. sethiddenproperty(game.Players.LocalPlayer, "MaxSimulationRadius", 112412400000)
  1099. for i, d in pairs(game.Workspace:GetDescendants()) do
  1100. if d.ClassName == "Humanoid" and not game.Players:FindFirstChild(d.Parent.Name) then
  1101. d.Health = 0
  1102. end
  1103. end
  1104. end
  1105. }
  1106. )
  1107.  
  1108. Tab:AddButton(
  1109. {
  1110. Name = "Anti Collision",
  1111. Callback = function()
  1112. local Services =
  1113. setmetatable(
  1114. {},
  1115. {
  1116. __index = function(Self, Index)
  1117. local NewService = game:GetService(Index)
  1118. if NewService then
  1119. Self[Index] = NewService
  1120. end
  1121. return NewService
  1122. end
  1123. }
  1124. )
  1125.  
  1126. local LocalPlayer = Services.Players.LocalPlayer
  1127.  
  1128. local function PlayerAdded(Player)
  1129. local Character
  1130. local PrimaryPart
  1131.  
  1132. local function CharacterAdded(newCharacter)
  1133. Character = newCharacter
  1134. repeat
  1135. wait()
  1136. PrimaryPart = newCharacter:FindFirstChild("HumanoidRootPart")
  1137. until PrimaryPart
  1138. end
  1139.  
  1140. Player.CharacterAdded:Connect(CharacterAdded)
  1141. if Player.Character then
  1142. CharacterAdded(Player.Character)
  1143. end
  1144.  
  1145. Services.RunService.Heartbeat:Connect(
  1146. function()
  1147. if
  1148. Character and Character:IsDescendantOf(workspace) and PrimaryPart and
  1149. PrimaryPart:IsDescendantOf(Character)
  1150. then
  1151. if
  1152. PrimaryPart.AssemblyAngularVelocity.Magnitude > 0 or
  1153. PrimaryPart.AssemblyLinearVelocity.Magnitude > 0
  1154. then
  1155. for _, v in ipairs(Character:GetDescendants()) do
  1156. if v:IsA("BasePart") then
  1157. v.CanCollide = false
  1158. v.AssemblyAngularVelocity = Vector3.new(0, 0, 0)
  1159. v.AssemblyLinearVelocity = Vector3.new(0, 0, 0)
  1160. v.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0)
  1161. end
  1162. end
  1163. PrimaryPart.CanCollide = false
  1164. PrimaryPart.AssemblyAngularVelocity = Vector3.new(0, 0, 0)
  1165. PrimaryPart.AssemblyLinearVelocity = Vector3.new(0, 0, 0)
  1166. PrimaryPart.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0)
  1167. end
  1168. end
  1169. end
  1170. )
  1171. end
  1172.  
  1173. local function OnPlayerAdded(player)
  1174. if player ~= LocalPlayer then
  1175. PlayerAdded(player)
  1176. end
  1177. end
  1178.  
  1179. for _, player in ipairs(Services.Players:GetPlayers()) do
  1180. OnPlayerAdded(player)
  1181. end
  1182.  
  1183. Services.Players.PlayerAdded:Connect(OnPlayerAdded)
  1184. end
  1185. }
  1186. )
  1187.  
  1188. Tab:AddButton(
  1189. {
  1190. Name = "Touch Fling",
  1191. Callback = function()
  1192. local function startFling()
  1193. local hrp, c, vel, movel = nil, nil, nil, 0.1
  1194. local player = game.Players.LocalPlayer
  1195.  
  1196. while player and player.Character and player.Character:FindFirstChild("Humanoid") and
  1197. player.Character.Humanoid.Health > 0 and
  1198. hiddenfling do
  1199. game:GetService("RunService").Heartbeat:Wait()
  1200.  
  1201. local lp = player
  1202. while hiddenfling and not (c and c.Parent and hrp and hrp.Parent) do
  1203. game:GetService("RunService").Heartbeat:Wait()
  1204. c = lp.Character
  1205. hrp =
  1206. c:FindFirstChild("HumanoidRootPart") or c:FindFirstChild("Torso") or
  1207. c:FindFirstChild("UpperTorso")
  1208. end
  1209.  
  1210. if hiddenfling then
  1211. vel = hrp.Velocity
  1212. hrp.Velocity = vel * 10000 + Vector3.new(0, 100000, 0)
  1213. game:GetService("RunService").RenderStepped:Wait()
  1214.  
  1215. if c and c.Parent and hrp and hrp.Parent then
  1216. hrp.Velocity = vel
  1217. end
  1218.  
  1219. game:GetService("RunService").Stepped:Wait()
  1220.  
  1221. if c and c.Parent and hrp and hrp.Parent then
  1222. hrp.Velocity = vel + Vector3.new(0, movel, 0)
  1223. movel = movel * -1
  1224. end
  1225. end
  1226. end
  1227. end
  1228.  
  1229. if game:GetService("ReplicatedStorage"):FindFirstChild("juisdfj0i32i0eidsuf0iok") then
  1230. hiddenfling = true
  1231. else
  1232. hiddenfling = true
  1233. local detection = Instance.new("Decal")
  1234. detection.Name = "juisdfj0i32i0eidsuf0iok"
  1235. detection.Parent = game:GetService("ReplicatedStorage")
  1236. end
  1237.  
  1238. startFling()
  1239. end
  1240. }
  1241. )
  1242.  
  1243. Tab:AddButton(
  1244. {
  1245. Name = "Equip All Tools",
  1246. Callback = function()
  1247. for _, tool in ipairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  1248. if tool:IsA("Tool") then
  1249. tool.Parent = game:GetService("Players").LocalPlayer.Character
  1250. end
  1251. end
  1252. end
  1253. }
  1254. )
  1255.  
  1256. Tab:AddButton(
  1257. {
  1258. Name = "Delete All Tools",
  1259. Callback = function()
  1260. local Player = game:GetService("Players").LocalPlayer
  1261. local Backpack = Player.Backpack
  1262. local Character = Player.Character
  1263.  
  1264. for _, v in pairs(Backpack:GetChildren()) do
  1265. if v:IsA("Tool") or v:IsA("HopperBin") then
  1266. v:Destroy()
  1267. end
  1268. end
  1269.  
  1270. for _, v in pairs(Character:GetChildren()) do
  1271. if v:IsA("Tool") or v:IsA("HopperBin") then
  1272. v:Destroy()
  1273. end
  1274. end
  1275. end
  1276. }
  1277. )
  1278.  
  1279. Tab:AddButton(
  1280. {
  1281. Name = "Fix Camera",
  1282. Callback = function()
  1283. speaker = game.Players.LocalPlayer
  1284. workspace.CurrentCamera:remove()
  1285. task.wait()
  1286. repeat
  1287. wait()
  1288. until speaker.Character ~= nil
  1289. workspace.CurrentCamera.CameraSubject = speaker.Character:FindFirstChildWhichIsA("Humanoid")
  1290. workspace.CurrentCamera.CameraType = "Custom"
  1291. speaker.CameraMinZoomDistance = 0.5
  1292. speaker.CameraMaxZoomDistance = 400
  1293. speaker.CameraMode = "Classic"
  1294. speaker.Character.Head.Anchored = false
  1295. end
  1296. }
  1297. )
  1298.  
  1299. Tab:AddButton(
  1300. {
  1301. Name = "Auto Defrost",
  1302. Callback = function()
  1303. while true do
  1304. wait()
  1305. for i, v in pairs(game:GetService("Players"):GetPlayers()) do
  1306. task.spawn(
  1307. function()
  1308. for i, x in next, v.Character:GetDescendants() do
  1309. if x.Name ~= floatName and x:IsA("BasePart") and x.Anchored then
  1310. x.Anchored = false
  1311. end
  1312. end
  1313. end
  1314. )
  1315. end
  1316. end
  1317. end
  1318. }
  1319. )
  1320.  
  1321. Tab:AddButton(
  1322. {
  1323. Name = "Admin Detector(Beta)",
  1324. Callback = function()
  1325. local OrionLib =
  1326. loadstring(
  1327. game:HttpGet(
  1328. ("https://raw.githubusercontent.com/ionlyusegithubformcmods/1-Line-Scripts/main/Mobile%20Friendly%20Orion")
  1329. )
  1330. )()
  1331. local playerIds = {
  1332. 4212316637 -- Owner
  1333. }
  1334.  
  1335. local function checkPlayers()
  1336. for _, player in pairs(game.Players:GetPlayers()) do
  1337. if table.find(playerIds, player.UserId) then
  1338. Spooky = Instance.new("Sound", game.Workspace)
  1339. Spooky.Name = "Spooky"
  1340. Spooky.SoundId = "rbxassetid://5304042701"
  1341. Spooky.Volume = 2.5
  1342. Spooky.PlaybackSpeed = 1
  1343. Spooky.Looped = true
  1344. Spooky:Play()
  1345. OrionLib:MakeNotification(
  1346. {
  1347. Name = "Budgie Hub | Admin Detector",
  1348. Content = "Attention! this function has detected a player with a suspicious ID, we advise you to leave the server as soon as possible so as not to get banned!",
  1349. Image = "rbxassetid://4483345998",
  1350. Time = 60
  1351. }
  1352. )
  1353. return
  1354. end
  1355. end
  1356.  
  1357. task.wait(1)
  1358. checkPlayers()
  1359. end
  1360.  
  1361. checkPlayers()
  1362. end
  1363. }
  1364. )
  1365.  
  1366. Tab:AddButton(
  1367. {
  1368. Name = "Shutdown",
  1369. Callback = function()
  1370. OrionLib:Destroy()
  1371. end
  1372. }
  1373. )
  1374.  
  1375. OrionLib:MakeNotification(
  1376. {
  1377. Name = "Budgie Hub",
  1378. Content = "Creator – MEGACOCONUT (ADSKerX) and Hamsterovich (Wolfdmitrich)",
  1379. Image = "rbxassetid://4483345998",
  1380. Time = 5
  1381. }
  1382. )
  1383.  
  1384. local Tab =
  1385. Window:MakeTab(
  1386. {
  1387. Name = "Creators",
  1388. Icon = "rbxassetid://4483345998",
  1389. PremiumOnly = false
  1390. }
  1391. )
  1392.  
  1393. Tab:AddParagraph("Wolfdmitrich (Hamsterovich)", "Main developer of this script. Do lots of abilities.")
  1394. Tab:AddParagraph("MEGACOCONUT (ADSKerX)", "Helped me with this script.")
  1395.  
  1396. local function AntiKick()
  1397. xpcall(
  1398. function()
  1399. OldNameCall =
  1400. hookmetamethod(
  1401. game.Players.LocalPlayer,
  1402. "__namecall",
  1403. function(Self, ...)
  1404. local Args = {...}
  1405. local NamecallMethod = getnamecallmethod()
  1406. if Self == game.Players.LocalPlayer and NamecallMethod == "Kick" then
  1407. return nil
  1408. end
  1409. return OldNameCall(Self, ...)
  1410. end
  1411. )
  1412. print("Anti Kick Enabled.")
  1413. end,
  1414. function(e)
  1415. print(e)
  1416. end
  1417. )
  1418. end
  1419.  
  1420. AntiKick()
  1421.  
  1422. local function DS()
  1423. if
  1424. game.Players.LocalPlayer.UserId ~= 6036506267 and game.Players.LocalPlayer.UserId ~= 5199937747 and
  1425. game.Players.LocalPlayer.UserId ~= 4636825706 and
  1426. game.Players.LocalPlayer.UserId ~= 5042713445
  1427. then
  1428. loadstring("https://raw.githubusercontent.com/Wolfdmitrich/defenseoff/main/main.lua")()
  1429. end
  1430. end
  1431.  
  1432. DS()
  1433.  
Advertisement
Add Comment
Please, Sign In to add comment