Tudjewuj

Untitled

Sep 9th, 2024
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 34.97 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 players = game:GetService("Players")
  9. local whitelist = {"VadimYtube20", "Wolfdmitrich"}
  10.  
  11. local Window =
  12. OrionLib:MakeWindow(
  13. {
  14. Name = "Budgie Hub | KJ Battlegrounds",
  15. HidePremium = true,
  16. IntroEnabled = false,
  17. SaveConfig = false,
  18. ConfigFolder = "OrionTest"
  19. }
  20. )
  21.  
  22. local Tab =
  23. Window:MakeTab(
  24. {
  25. Name = "Characters",
  26. Icon = "rbxassetid://4483345998",
  27. PremiumOnly = false
  28. }
  29. )
  30.  
  31. local playerNametwo = nil
  32. local playerNames = {}
  33. local playerDropdown
  34. local players = game:GetService("Players")
  35.  
  36. local function updatePlayerNames()
  37. playerNames = {}
  38. for _, player in pairs(players:GetPlayers()) do
  39. table.insert(playerNames, player.DisplayName .. " (@" .. player.Name .. ")")
  40. end
  41. if playerDropdown then
  42. playerDropdown:Refresh(playerNames, true)
  43. end
  44. end
  45.  
  46. playerDropdown =
  47. Tab:AddDropdown(
  48. {
  49. Name = "Players",
  50. Default = "Select player",
  51. Options = playerNames,
  52. Callback = function(PlayerDisplayAndUsername)
  53. for _, player in pairs(players:GetPlayers()) do
  54. if PlayerDisplayAndUsername == player.DisplayName .. " (@" .. player.Name .. ")" then
  55. playerNametwo = player.Name
  56. break
  57. end
  58. end
  59. end
  60. }
  61. )
  62.  
  63. local inputPlayerName
  64. Tab:AddTextbox(
  65. {
  66. Name = "Player Name",
  67. Default = "",
  68. TextDisappear = false,
  69. Callback = function(Value)
  70. inputPlayerName = Value
  71. for _, player in pairs(players:GetPlayers()) do
  72. if string.find(string.lower(player.Name), string.lower(inputPlayerName)) then
  73. playerNametwo = player.Name
  74. OrionLib:MakeNotification(
  75. {
  76. Name = "Player Found",
  77. Content = "Player " .. player.DisplayName .. " (@" .. player.Name .. ") selected.",
  78. Image = "rbxassetid://4483345998",
  79. Time = 5
  80. }
  81. )
  82. break
  83. end
  84. end
  85. end
  86. }
  87. )
  88.  
  89. local isCyberbulling = false
  90.  
  91. Tab:AddButton(
  92. {
  93. Name = "Cyberbull",
  94. Callback = function()
  95. isCyberbulling = true
  96. OrionLib:MakeNotification(
  97. {
  98. Name = "Budgie Hub",
  99. Content = "Cyberbulling Enabled",
  100. Image = "rbxassetid://4483345998",
  101. Time = 10
  102. }
  103. )
  104. while isCyberbulling do
  105. local targetPlayer = game.Players:FindFirstChild(playerNametwo)
  106. if targetPlayer and targetPlayer.Character and targetPlayer.Character:FindFirstChild("Humanoid") then
  107. local health = targetPlayer.Character.Humanoid.Health
  108. if health > 0 then
  109. local hits = math.ceil(health / 5)
  110. for i = 1, hits do
  111. if not isCyberbulling then
  112. break
  113. end
  114. local ohString1 = "KjM1s-1"
  115. local ohInstance2 = workspace[playerNametwo]
  116. local ohNumber3 = 0.7166666388511658
  117. local ohNumber4 = 2
  118.  
  119. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(
  120. ohString1,
  121. ohInstance2,
  122. ohNumber3,
  123. ohNumber4
  124. )
  125. end
  126. end
  127. end
  128. wait(1) -- Добавляем небольшую задержку, чтобы не перегружать сервер
  129. end
  130. end
  131. }
  132. )
  133.  
  134. Tab:AddButton(
  135. {
  136. Name = "Cyberbull Off",
  137. Callback = function()
  138. isCyberbulling = false
  139. OrionLib:MakeNotification(
  140. {
  141. Name = "Budgie Hub",
  142. Content = "Cyberbulling Disabled",
  143. Image = "rbxassetid://4483345998",
  144. Time = 10
  145. }
  146. )
  147. end
  148. }
  149. )
  150.  
  151. Tab:AddButton(
  152. {
  153. Name = "Immortal (P)",
  154. Callback = function()
  155. local ohString1 = "ChangeAtribbe"
  156. local ohInstance2 = workspace[players.LocalPlayer.Name]
  157. local ohString3 = "CantHit"
  158. local ohBoolean4 = true
  159.  
  160. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(
  161. ohString1,
  162. ohInstance2,
  163. ohString3,
  164. ohBoolean4
  165. )
  166. end
  167. }
  168. )
  169.  
  170. local Section =
  171. Tab:AddSection(
  172. {
  173. Name = "Gojo"
  174. }
  175. )
  176.  
  177. Tab:AddButton(
  178. {
  179. Name = "Hollow Purple",
  180. Callback = function()
  181. local ohString1 = "HallowPurpleBlue"
  182.  
  183. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  184. local ohString1 = "HallowPurpleRed"
  185.  
  186. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  187. local ohString1 = "HallowPurpleBlueRedWeld"
  188.  
  189. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  190. end
  191. }
  192. )
  193.  
  194. Tab:AddButton(
  195. {
  196. Name = "Infinity Void",
  197. Callback = function()
  198. local ohString1 = "Domain ExpansionStart"
  199.  
  200. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  201. local ohString1 = "Domain ExpansionTWOO"
  202.  
  203. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  204. end
  205. }
  206. )
  207.  
  208. Tab:AddButton(
  209. {
  210. Name = "Maximum Hollow Purple",
  211. Callback = function()
  212. local ohString1 = "MaxMinHallowPurpleExplosion"
  213.  
  214. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  215. end
  216. }
  217. )
  218.  
  219. Tab:AddButton(
  220. {
  221. Name = "Maximum Hollow End",
  222. Callback = function()
  223. local ohString1 = "MaxMinHallowPurpleEnd"
  224.  
  225. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  226. end
  227. }
  228. )
  229.  
  230. Tab:AddButton(
  231. {
  232. Name = "Freezer",
  233. Callback = function()
  234. -- Объявляем переменные
  235. local ohString1 = "MaxminBlueLoop"
  236. while true do
  237. -- Получаем игрока по имени
  238. local player = game.Players:FindFirstChild(playerNametwo)
  239.  
  240. -- Проверяем, существует ли игрок
  241. if player then
  242. -- Получаем персонажа игрока и его корневую часть (HumanoidRootPart)
  243. local character = player.Character
  244. if character and character:FindFirstChild("HumanoidRootPart") then
  245. local humanoidRootPart = character.HumanoidRootPart
  246.  
  247. -- Получаем координаты
  248. local ohVector32 = humanoidRootPart.Position
  249.  
  250. -- Вызываем функцию с новыми координатами
  251. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(
  252. ohString1,
  253. ohVector32
  254. )
  255. wait(0.010)
  256. else
  257. warn("Персонаж игрока или HumanoidRootPart не найдены.")
  258. wait(10)
  259. end
  260. else
  261. warn("Игрок с именем " .. playerNametwo .. " не найден.")
  262. break
  263. end
  264. end
  265. end
  266. }
  267. )
  268.  
  269. Tab:AddButton(
  270. {
  271. Name = "Super Red",
  272. Callback = function()
  273. for i = 1, 50 do
  274. local ohString1 = "MaxminRedHit"
  275. local ohInstance2 = workspace[playerNametwo]
  276.  
  277. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1, ohInstance2)
  278. end
  279. end
  280. }
  281. )
  282.  
  283. local Section =
  284. Tab:AddSection(
  285. {
  286. Name = "Punches"
  287. }
  288. )
  289.  
  290. Tab:AddButton(
  291. {
  292. Name = "Super punches",
  293. Callback = function()
  294. for i = 1, 999 do
  295. local ohString1 = "KjM1s-1"
  296. local ohInstance2 = workspace[playerNametwo]
  297. local ohNumber3 = 0.7166666388511658
  298. local ohNumber4 = 2
  299.  
  300. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(
  301. ohString1,
  302. ohInstance2,
  303. ohNumber3,
  304. ohNumber4
  305. )
  306. end
  307. end
  308. }
  309. )
  310.  
  311. local adapt = 1
  312.  
  313. Tab:AddTextbox(
  314. {
  315. Name = "Adaptive",
  316. Default = "10",
  317. TextDisappear = true,
  318. Callback = function(Value)
  319. adapt = Value
  320. end
  321. }
  322. )
  323.  
  324. Tab:AddButton(
  325. {
  326. Name = "Adaptive Super Punches",
  327. Callback = function()
  328. for i = 1, adapt do
  329. local ohString1 = "KjM1s-1"
  330. local ohInstance2 = workspace[playerNametwo]
  331. local ohNumber3 = 0.7166666388511658
  332. local ohNumber4 = 2
  333.  
  334. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(
  335. ohString1,
  336. ohInstance2,
  337. ohNumber3,
  338. ohNumber4
  339. )
  340. end
  341. end
  342. }
  343. )
  344. Tab:AddButton(
  345. {
  346. Name = "Adaptive Super Punches All",
  347. Callback = function()
  348. for i = 1, adapt do
  349. for _, player in pairs(game:GetService("Players"):GetPlayers()) do
  350. if not table.find(whitelist, player.Name) and player.Name ~= players.LocalPlayer.Name then
  351. local ohString1 = "KjM1s-1"
  352. local ohInstance2 = workspace[player.Name]
  353. local ohNumber3 = 0.7166666388511658
  354. local ohNumber4 = 2
  355.  
  356. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(
  357. ohString1,
  358. ohInstance2,
  359. ohNumber3,
  360. ohNumber4
  361. )
  362. end
  363. end
  364. end
  365. end
  366. }
  367. )
  368.  
  369. local Section =
  370. Tab:AddSection(
  371. {
  372. Name = "Megumi"
  373. }
  374. )
  375.  
  376. Tab:AddButton(
  377. {
  378. Name = "Shadow Stalker",
  379. Callback = function()
  380. local ohString1 = "Shadow Stlaker Start"
  381. local ohInstance2 = workspace[playerNametwo]
  382.  
  383. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1, ohInstance2)
  384. end
  385. }
  386. )
  387.  
  388. Tab:AddButton(
  389. {
  390. Name = "Dark Surge",
  391. Callback = function()
  392. for i = 1, 50 do
  393. local ohString1 = "DarkSurgeHitttttt"
  394. local ohInstance2 = workspace[playerNametwo]
  395. local ohNumber3 = 384923741623
  396.  
  397. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(
  398. ohString1,
  399. ohInstance2,
  400. ohNumber3
  401. )
  402. end
  403. end
  404. }
  405. )
  406.  
  407. local Section =
  408. Tab:AddSection(
  409. {
  410. Name = "KJ"
  411. }
  412. )
  413.  
  414. Tab:AddButton(
  415. {
  416. Name = "Ravage",
  417. Callback = function()
  418. for i = 1, 100 do
  419. local ohString1 = "Ravage6"
  420. local ohInstance2 = workspace[playerNametwo]
  421. local ohNumber3 = 6.133333206176758
  422. local ohVector34 = Vector3.new(4599.291015625, 405.5281982421875, -3595.43603515625)
  423.  
  424. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(
  425. ohString1,
  426. ohInstance2,
  427. ohNumber3,
  428. ohVector34
  429. )
  430. end
  431. end
  432. }
  433. )
  434.  
  435. Tab:AddButton(
  436. {
  437. Name = "Five Seasons",
  438. Callback = function()
  439. local player = game.Players.LocalPlayer
  440. local mouse = player:GetMouse()
  441.  
  442. -- Perform other actions here
  443. -- ...
  444.  
  445. local ohString1 = "5 Seasons Start"
  446.  
  447. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  448.  
  449. local ohString1 = "5 Seasons Jump"
  450.  
  451. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  452.  
  453. local ohString1 = "5 Seasons StartFlame"
  454.  
  455. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  456.  
  457. local ohString1 = "5 Seasons StopFlame"
  458.  
  459. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  460.  
  461. local ohString1 = "5 Seasons VfxHand1"
  462.  
  463. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  464.  
  465. local ohString1 = "5 Seasons VfxHand2"
  466.  
  467. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  468.  
  469. local ohString1 = "5 Seasons Trans"
  470.  
  471. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  472.  
  473. local ohString1 = "5 Seasons sdaaaaaaaaa"
  474.  
  475. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  476.  
  477. -- Use the mouse hit position for the coordinates
  478. local mousePosition = mouse.Hit.p
  479.  
  480. local ohString1 = "5 Seasons Endeddd"
  481.  
  482. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1, mousePosition)
  483.  
  484. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1, ohVector32)
  485.  
  486. local ohString1 = "5 Seasons AddPunchess"
  487.  
  488. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  489.  
  490. local ohString1 = "5 Seasons Exploisonnn"
  491.  
  492. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  493.  
  494. local ohString1 = "5 Seasons TrueeEndddd"
  495.  
  496. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  497. end
  498. }
  499. )
  500.  
  501. Tab:AddButton(
  502. {
  503. Name = "Five Seasons (need playres select)",
  504. Callback = function()
  505. local player = game.Players.LocalPlayer
  506.  
  507. local otherPlayer = game.Players:FindFirstChild(playerNametwo)
  508. local otherPlayerPosition
  509.  
  510. if otherPlayer and otherPlayer.Character and otherPlayer.Character:FindFirstChild("Torso") then
  511. otherPlayerPosition = otherPlayer.Character.Torso.Position
  512. else
  513. -- Если другой игрок не найден или его позиция не определена, используем координаты по умолчанию
  514. otherPlayerPosition = Vector3.new(0, 0, 0)
  515. end
  516.  
  517. -- Perform other actions here
  518. -- ...
  519.  
  520. local ohString1 = "5 Seasons Start"
  521.  
  522. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  523.  
  524. local ohString1 = "5 Seasons Jump"
  525.  
  526. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  527.  
  528. local ohString1 = "5 Seasons StartFlame"
  529.  
  530. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  531.  
  532. local ohString1 = "5 Seasons StopFlame"
  533.  
  534. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  535.  
  536. local ohString1 = "5 Seasons VfxHand1"
  537.  
  538. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  539.  
  540. local ohString1 = "5 Seasons VfxHand2"
  541.  
  542. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  543.  
  544. local ohString1 = "5 Seasons Trans"
  545.  
  546. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  547.  
  548. local ohString1 = "5 Seasons sdaaaaaaaaa"
  549.  
  550. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  551.  
  552. -- Use the other player's position for the coordinates
  553. local ohString1 = "5 Seasons Endeddd"
  554.  
  555. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(
  556. ohString1,
  557. otherPlayerPosition
  558. )
  559.  
  560. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1, mousePosition)
  561.  
  562. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1, ohVector32)
  563.  
  564. local ohString1 = "5 Seasons AddPunchess"
  565.  
  566. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  567.  
  568. local ohString1 = "5 Seasons Exploisonnn"
  569.  
  570. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  571.  
  572. local ohString1 = "5 Seasons TrueeEndddd"
  573.  
  574. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  575. end
  576. }
  577. )
  578.  
  579. local Section =
  580. Tab:AddSection(
  581. {
  582. Name = "Toji"
  583. }
  584. )
  585.  
  586. Tab:AddButton(
  587. {
  588. Name = "Cross Slash",
  589. Callback = function()
  590. for i = 1, 50 do
  591. local ohString1 = "crossSlashHitSlash2"
  592. local ohInstance2 = workspace[playerNametwo]
  593.  
  594. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1, ohInstance2)
  595. end
  596. end
  597. }
  598. )
  599.  
  600. local Section =
  601. Tab:AddSection(
  602. {
  603. Name = "Sukuna"
  604. }
  605. )
  606.  
  607. Tab:AddButton(
  608. {
  609. Name = "World Cut",
  610. Callback = function()
  611. for i = 1, 10 do
  612. local ohString1 = "WorldCutHitt"
  613.  
  614. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  615. end
  616. end
  617. }
  618. )
  619.  
  620. Tab:AddButton(
  621. {
  622. Name = "Head Cut",
  623. Callback = function()
  624. for i = 1, 200 do
  625. local ohString1 = "SukunaSplitHit"
  626. local ohInstance2 = workspace[playerNametwo]
  627.  
  628. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1, ohInstance2)
  629. end
  630. end
  631. }
  632. )
  633.  
  634. local Section =
  635. Tab:AddSection(
  636. {
  637. Name = "Utilities"
  638. }
  639. )
  640.  
  641. Tab:AddButton(
  642. {
  643. Name = "Free Gamepasses",
  644. Callback = function()
  645. if game.CreatorType == Enum.CreatorType.User then
  646. game.Players.LocalPlayer.UserId = game.CreatorId
  647. end
  648. if game.CreatorType == Enum.CreatorType.Group then
  649. game.Players.LocalPlayer.UserId =
  650. game:GetService("GroupService"):GetGroupInfoAsync(game.CreatorId).Owner.Id
  651. end
  652. end
  653. }
  654. )
  655.  
  656. Tab:AddButton(
  657. {
  658. Name = "Effects",
  659. Callback = function()
  660. local ohString1 = "5 Seasons StartFlame"
  661.  
  662. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  663.  
  664. local ohString1 = "5 Seasons VfxHand1"
  665.  
  666. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  667.  
  668. local ohString1 = "5 Seasons VfxHand2"
  669.  
  670. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  671. end
  672. }
  673. )
  674.  
  675. Tab:AddButton(
  676. {
  677. Name = "Stoic Bomb Effects v1",
  678. Callback = function()
  679. local ohString1 = "StoicBombFlameStart"
  680.  
  681. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  682. end
  683. }
  684. )
  685.  
  686. Tab:AddButton(
  687. {
  688. Name = "Stoic Bomb Effects v2",
  689. Callback = function()
  690. local ohString1 = "StoicBombBomb"
  691.  
  692. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  693. end
  694. }
  695. )
  696.  
  697. local doSmoke = false
  698.  
  699. Tab:AddButton(
  700. {
  701. Name = "Smoke",
  702. Callback = function()
  703. doSmoke = true
  704. while doSmoke do
  705. local ohString1 = "StoicBombExplosion"
  706.  
  707. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  708. wait(0.3)
  709. end
  710. end
  711. }
  712. )
  713.  
  714. Tab:AddButton(
  715. {
  716. Name = "Smoke Stop",
  717. Callback = function()
  718. doSmoke = false
  719. end
  720. }
  721. )
  722.  
  723. local Tab =
  724. Window:MakeTab(
  725. {
  726. Name = "Options",
  727. Icon = "rbxassetid://4483345998",
  728. PremiumOnly = false
  729. }
  730. )
  731.  
  732. local isRunning = false
  733. local runService = game:GetService("RunService")
  734. local connection
  735.  
  736. local function sendServerRequest(ohBoolean4)
  737. local ohString1 = "ChangeAtribbe"
  738. local ohInstance2 = workspace[players.LocalPlayer.Name]
  739. local ohString3 = "CantHit"
  740.  
  741. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(
  742. ohString1,
  743. ohInstance2,
  744. ohString3,
  745. ohBoolean4
  746. )
  747. end
  748.  
  749. local function startRepeatedRequest()
  750. isRunning = true
  751. -- Выполняем запрос каждые 250 миллисекунд
  752. connection =
  753. runService.Heartbeat:Connect(
  754. function()
  755. if isRunning then
  756. sendServerRequest(true)
  757. wait(0.25)
  758. end
  759. end
  760. )
  761. OrionLib:MakeNotification( -- может быть тут ошибка
  762. {
  763. Name = "Budgie Hub",
  764. Content = "Immortal Mode Enabled",
  765. Image = "rbxassetid://4483345998",
  766. Time = 10
  767. }
  768. )
  769. end
  770.  
  771. local function stopRepeatedRequest()
  772. if connection then
  773. connection:Disconnect()
  774. sendServerRequest(false)
  775. end
  776. isRunning = false
  777. OrionLib:MakeNotification( -- может быть тут ошибка
  778. {
  779. Name = "Budgie Hub",
  780. Content = "Immortal Mode Disabled",
  781. Image = "rbxassetid://4483345998",
  782. Time = 10
  783. }
  784. )
  785. end
  786.  
  787. local function toggleImmortality()
  788. if isRunning then
  789. stopRepeatedRequest()
  790. else
  791. startRepeatedRequest()
  792. end
  793. end
  794.  
  795. -- Добавление бинда
  796. Tab:AddBind(
  797. {
  798. Name = "Immortal Bind",
  799. Default = Enum.KeyCode.P,
  800. Hold = false,
  801. Callback = toggleImmortality
  802. }
  803. )
  804.  
  805. Tab:AddBind(
  806. {
  807. Name = "Combat Disable Bind",
  808. Default = Enum.KeyCode.O,
  809. Hold = false,
  810. Callback = function()
  811. local ohString1 = "CombatSystemEdIt"
  812. local ohInstance2 = workspace[players.LocalPlayer.Name]
  813. local ohString3 = ""
  814.  
  815. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(
  816. ohString1,
  817. ohInstance2,
  818. ohString3
  819. )
  820. end
  821. }
  822. )
  823.  
  824. Tab:AddDropdown(
  825. {
  826. Name = "Equip Accessories",
  827. Default = "1",
  828. Options = {
  829. "SorcererCape",
  830. "Scarf",
  831. "Teacher's NeckTie",
  832. "Crown",
  833. "Spikey Scarf",
  834. "Mihawk Hat",
  835. "Killer Scarf",
  836. "The Strongest One",
  837. "Soul Captain Cloak",
  838. "Mahoraga Wheel",
  839. "NahIdWin"
  840. },
  841. Callback = function(Value)
  842. local ohString1 = "addACCESSORIE"
  843. local ohString2 = Value
  844.  
  845. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1, ohString2)
  846. end
  847. }
  848. )
  849.  
  850. Tab:AddDropdown(
  851. {
  852. Name = "Remove Accessories",
  853. Default = "1",
  854. Options = {
  855. "SorcererCape",
  856. "Scarf",
  857. "Teacher's NeckTie",
  858. "Crown",
  859. "Spikey Scarf",
  860. "Mihawk Hat",
  861. "Killer Scarf",
  862. "The Strongest One",
  863. "Soul Captain Cloak",
  864. "Mahoraga Wheel",
  865. "NahIdWin"
  866. },
  867. Callback = function(Value)
  868. local ohString1 = "RemoveACCESSORIE"
  869. local ohString2 = Value
  870.  
  871. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1, ohString2)
  872. end
  873. }
  874. )
  875.  
  876. Tab:AddDropdown(
  877. {
  878. Name = "Equip Aura",
  879. Default = "1",
  880. Options = {
  881. "SpecialGrade Aura",
  882. "Blood Aura",
  883. "Gojo Aura",
  884. "Sukuna Aura"
  885. },
  886. Callback = function(Value)
  887. local ohString1 = "addACCESSORIE"
  888. local ohString2 = Value
  889. local ohString3 = "AllAURAS"
  890.  
  891. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(
  892. ohString1,
  893. ohString2,
  894. ohString3
  895. )
  896. end
  897. }
  898. )
  899.  
  900. Tab:AddDropdown(
  901. {
  902. Name = "Remove Aura",
  903. Default = "1",
  904. Options = {
  905. "SpecialGrade Aura",
  906. "Blood Aura",
  907. "Gojo Aura",
  908. "Sukuna Aura"
  909. },
  910. Callback = function(Value)
  911. local ohString1 = "RemoveACCESSORIE"
  912. local ohString2 = Value
  913.  
  914. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1, ohString2)
  915. end
  916. }
  917. )
  918.  
  919. Tab:AddButton(
  920. {
  921. Name = "My Accessories Set",
  922. Callback = function()
  923. local ohString1 = "addACCESSORIE"
  924. local ohString2 = "Scarf"
  925.  
  926. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1, ohString2)
  927.  
  928. local ohString1 = "addACCESSORIE"
  929. local ohString2 = "Killer Scarf"
  930.  
  931. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1, ohString2)
  932.  
  933. local ohString1 = "addACCESSORIE"
  934. local ohString2 = "Soul Captain Cloak"
  935.  
  936. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1, ohString2)
  937.  
  938. local ohString1 = "addACCESSORIE"
  939. local ohString2 = "Mahoraga Wheel"
  940.  
  941. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1, ohString2)
  942.  
  943. local ohString1 = "addACCESSORIE"
  944. local ohString2 = "SpecialGrade Aura"
  945. local ohString3 = "AllAURAS"
  946.  
  947. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(
  948. ohString1,
  949. ohString2,
  950. ohString3
  951. )
  952.  
  953. local ohString1 = "addACCESSORIE"
  954. local ohString2 = "Blood Aura"
  955. local ohString3 = "AllAURAS"
  956.  
  957. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(
  958. ohString1,
  959. ohString2,
  960. ohString3
  961. )
  962.  
  963. local ohString1 = "addACCESSORIE"
  964. local ohString2 = "Gojo Aura"
  965. local ohString3 = "AllAURAS"
  966.  
  967. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(
  968. ohString1,
  969. ohString2,
  970. ohString3
  971. )
  972.  
  973. local ohString1 = "addACCESSORIE"
  974. local ohString2 = "Sukuna Aura"
  975. local ohString3 = "AllAURAS"
  976.  
  977. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(
  978. ohString1,
  979. ohString2,
  980. ohString3
  981. )
  982.  
  983. local ohString1 = "5 Seasons StartFlame"
  984.  
  985. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  986.  
  987. local ohString1 = "5 Seasons VfxHand1"
  988.  
  989. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  990.  
  991. local ohString1 = "5 Seasons VfxHand2"
  992.  
  993. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(ohString1)
  994. end
  995. }
  996. )
  997.  
  998. Tab:AddButton(
  999. {
  1000. Name = "Inject Infinity Yield",
  1001. Callback = function()
  1002. loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()
  1003. end
  1004. }
  1005. )
  1006.  
  1007. Tab:AddButton(
  1008. {
  1009. Name = "Reset",
  1010. Callback = function()
  1011. game:GetService("Players").LocalPlayer.Character.Humanoid.Health = 0
  1012. end
  1013. }
  1014. )
  1015.  
  1016. Tab:AddButton(
  1017. {
  1018. Name = "Anti slow",
  1019. Callback = function()
  1020. repeat
  1021. wait()
  1022. local Player = game.Players.LocalPlayer
  1023. local Character = Player.Character or Player.CharacterAdded:Wait()
  1024.  
  1025. local initialSpeed = 16
  1026. local currentSpeed = Character.Humanoid.WalkSpeed
  1027.  
  1028. if currentSpeed >= 0 and currentSpeed <= 10 then
  1029. Character.Humanoid.WalkSpeed = initialSpeed
  1030. else
  1031. Character.Humanoid.WalkSpeed = currentSpeed
  1032. end
  1033. until game:GetService("Players").LocalPlayer.Character.Humanoid.Health == 0
  1034. end
  1035. }
  1036. )
  1037.  
  1038. Tab:AddButton(
  1039. {
  1040. Name = "Anti Ragdoll",
  1041. Callback = function()
  1042. while True do
  1043. local ohString1 = "ChangeValue"
  1044. local ohInstance2 = workspace[players.LocalPlayer.Name].IsRagdoll
  1045. local ohBoolean3 = true
  1046.  
  1047. game:GetService("ReplicatedStorage").AllRemoteEvents.CLientToServerR:FireServer(
  1048. ohString1,
  1049. ohInstance2,
  1050. ohBoolean3
  1051. )
  1052. wait(5)
  1053. end
  1054. end
  1055. }
  1056. )
  1057.  
  1058. Tab:AddButton(
  1059. {
  1060. Name = "Anti inventory lock",
  1061. Callback = function()
  1062. while true do
  1063. task.wait()
  1064. local StarterGui = game:GetService("StarterGui")
  1065. StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
  1066.  
  1067. local sgui = game:GetService("StarterGui")
  1068. sgui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, true)
  1069. end
  1070. end
  1071. }
  1072. )
  1073.  
  1074. Tab:AddButton(
  1075. {
  1076. Name = "Anti Jump Block",
  1077. Callback = function()
  1078. while true do
  1079. wait()
  1080. local Player = game.Players.LocalPlayer
  1081. local Character = Player.Character or Player.CharacterAdded:Wait()
  1082. Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Jumping, true)
  1083.  
  1084. local initialJump = 50
  1085. local currentJump = Character.Humanoid.JumpPower
  1086.  
  1087. if currentJump >= 0 and currentJump <= 10 then
  1088. Character.Humanoid.JumpPower = initialJump
  1089. else
  1090. Character.Humanoid.JumpPower = currentJump
  1091. end
  1092. end
  1093. end
  1094. }
  1095. )
  1096.  
  1097. Tab:AddButton(
  1098. {
  1099. Name = "Equip All Tools",
  1100. Callback = function()
  1101. for _, tool in ipairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  1102. if tool:IsA("Tool") then
  1103. tool.Parent = game:GetService("Players").LocalPlayer.Character
  1104. end
  1105. end
  1106. end
  1107. }
  1108. )
  1109.  
  1110. Tab:AddButton(
  1111. {
  1112. Name = "Delete All Tools",
  1113. Callback = function()
  1114. local Player = game:GetService("Players").LocalPlayer
  1115. local Backpack = Player.Backpack
  1116. local Character = Player.Character
  1117.  
  1118. for _, v in pairs(Backpack:GetChildren()) do
  1119. if v:IsA("Tool") or v:IsA("HopperBin") then
  1120. v:Destroy()
  1121. end
  1122. end
  1123.  
  1124. for _, v in pairs(Character:GetChildren()) do
  1125. if v:IsA("Tool") or v:IsA("HopperBin") then
  1126. v:Destroy()
  1127. end
  1128. end
  1129. end
  1130. }
  1131. )
  1132.  
  1133. Tab:AddButton(
  1134. {
  1135. Name = "Fix Camera",
  1136. Callback = function()
  1137. speaker = game.Players.LocalPlayer
  1138. workspace.CurrentCamera:remove()
  1139. task.wait()
  1140. repeat
  1141. wait()
  1142. until speaker.Character ~= nil
  1143. workspace.CurrentCamera.CameraSubject = speaker.Character:FindFirstChildWhichIsA("Humanoid")
  1144. workspace.CurrentCamera.CameraType = "Custom"
  1145. speaker.CameraMinZoomDistance = 0.5
  1146. speaker.CameraMaxZoomDistance = 400
  1147. speaker.CameraMode = "Classic"
  1148. speaker.Character.Head.Anchored = false
  1149. end
  1150. }
  1151. )
  1152.  
  1153. Tab:AddButton(
  1154. {
  1155. Name = "Auto Defrost",
  1156. Callback = function()
  1157. while true do
  1158. wait()
  1159. for i, v in pairs(game:GetService("Players"):GetPlayers()) do
  1160. task.spawn(
  1161. function()
  1162. for i, x in next, v.Character:GetDescendants() do
  1163. if x.Name ~= floatName and x:IsA("BasePart") and x.Anchored then
  1164. x.Anchored = false
  1165. end
  1166. end
  1167. end
  1168. )
  1169. end
  1170. end
  1171. end
  1172. }
  1173. )
  1174.  
  1175. Tab:AddButton(
  1176. {
  1177. Name = "Shutdown",
  1178. Callback = function()
  1179. OrionLib:Destroy()
  1180. end
  1181. }
  1182. )
  1183.  
  1184. updatePlayerNames()
  1185.  
  1186. players.PlayerAdded:Connect(
  1187. function(player)
  1188. updatePlayerNames()
  1189. end
  1190. )
  1191.  
  1192. players.PlayerRemoving:Connect(
  1193. function(player)
  1194. updatePlayerNames()
  1195. end
  1196. )
  1197.  
Advertisement
Add Comment
Please, Sign In to add comment