Advertisement
Luidyotavio1947827

Nothing Here Again

Feb 12th, 2024
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.34 KB | None | 0 0
  1. -- Place Check
  2. if game.PlaceId ~= 13864667823 then
  3. if game.PlaceId == 14775231477 or game.PlaceId == 13864661000 then
  4.  
  5. -- Free Gamepasses (LOBBY)
  6. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/RScriptz/RobloxScripts/main/OrionLibKeybind.lua')))()
  7. local Window = OrionLib:MakeWindow({
  8. Name = "luidyotavio235 Break in 2 Hub",
  9. HidePremium = false,
  10. SaveConfig = true,
  11. ConfigFolder = "OrionTest",
  12. IntroText = "Loading Script..."
  13. })
  14. local Tab = Window:MakeTab({
  15. Name = "Free Gamepasses",
  16. Icon = "rbxassetid://4483345998",
  17. PremiumOnly = false
  18. })
  19. Tab:AddButton({
  20. Name = "Free Hacker Role",
  21. Callback = function()
  22. game:GetService("ReplicatedStorage").RemoteEvents.OutsideRole:FireServer("Phone", true, false)
  23. end
  24. })
  25. Tab:AddButton({
  26. Name = "Free Nerd Kid Role",
  27. Callback = function()
  28. game:GetService("ReplicatedStorage").RemoteEvents.OutsideRole:FireServer("Book", true, false)
  29. end
  30. })
  31. OrionLib:Init()
  32. for i, v in pairs(game:GetService("Workspace"):GetChildren()) do
  33. if v.Name == "Part" and v:FindFirstChild("TouchInterest") then
  34. firetouchinterest(v, game:GetService("Players").LocalPlayer.Character.HumanoidRootPart, 0)
  35. end
  36. end
  37. else
  38. game:GetService("Players").LocalPlayer:Kick("Error! Game Not Supported!")
  39. end
  40. else
  41. -- Floating Part
  42. local Part = Instance.new("Part")
  43. Part.Size = Vector3.new(5, 1, 5)
  44. Part.Parent = game:GetService("Workspace")
  45. Part.Anchored = true
  46. Part.Transparency = 1
  47.  
  48. -- Locals
  49. local Events = game:GetService("ReplicatedStorage"):WaitForChild("Events")
  50. local SelectedItem = "Med Kit"
  51. local Damange = 5
  52. local namecall
  53. local ScriptLoaded = false
  54. local LocalPlayer = game:GetService("Players").LocalPlayer
  55. local Lighting = game:GetService("Lighting")
  56. local OriginalWalkspeed = LocalPlayer.Character.Humanoid.WalkSpeed
  57. local OriginalJumpPower = LocalPlayer.Character.Humanoid.JumpPower
  58. local ModifiedWalkspeed = 50
  59. local ModifiedJumpPower = 100
  60. local OriginalBrightness = Lighting.Brightness
  61. local OriginalFog = Lighting.FogEnd
  62. local OriginalShadow = Lighting.GlobalShadows
  63. local HailClone = game:GetService("Workspace").Hails:Clone()
  64. getgenv().RemoveSlipping = false
  65. getgenv().SemiGodmode = false
  66.  
  67. -- Remove Slipping Handler
  68. local mt = getrawmetatable(game)
  69. local old = mt.__namecall
  70. setreadonly(mt, false)
  71. mt.__namecall = newcclosure(function(self, ...)
  72. local args = {
  73. ...
  74. }
  75. if getnamecallmethod() == 'FireServer' and self.Name == 'IceSlip' and RemoveSlipping == true then
  76. return wait(387420489)
  77. end
  78. return old(self, unpack(args))
  79. end)
  80.  
  81. -- Semi-Godmode Handler
  82. namecall = hookmetamethod(game, "__namecall", function(self, ...)
  83. local args = {
  84. ...
  85. }
  86. if getnamecallmethod() == 'FireServer' and self.Name == 'Energy' then
  87. if SemiGodmode == true then
  88. if args[1] < 0 then
  89. args[1] = 0
  90. end
  91. else
  92. args[1] = args[1]
  93. end
  94. return namecall(self, unpack(args))
  95. end
  96. return namecall(self, ...)
  97. end)
  98.  
  99. -- Tables
  100. local SecretEndingTable = {
  101. "HatCollected",
  102. "MaskCollected",
  103. "CrowbarCollected"
  104. }
  105. local ItemsTable = {
  106. "Armor",
  107. "Med Kit",
  108. "Key",
  109. "Gold Key",
  110. "Louise",
  111. "Lollipop",
  112. "Chips",
  113. "Golden Apple",
  114. "Pizza",
  115. "Gold Pizza",
  116. "Rainbow Pizza",
  117. "Rainbow Pizza Box",
  118. "Book",
  119. "Phone",
  120. "Cookie",
  121. "Apple",
  122. "Bloxy Cola",
  123. "Expired Bloxy Cola",
  124. "Bottle",
  125. "Ladder",
  126. "Battery"
  127. }
  128.  
  129. -- Functions
  130. local function UnequipAllTools()
  131. for i, v in pairs(LocalPlayer.Character:GetChildren()) do
  132. if v:IsA("Tool") then
  133. v.Parent = LocalPlayer.Backpack
  134. end
  135. end
  136. end
  137. local function EquipAllTools()
  138. for i, v in pairs(LocalPlayer.Backpack:GetChildren()) do
  139. if v:IsA("Tool") then
  140. v.Parent = LocalPlayer.Character
  141. end
  142. end
  143. end
  144. local function GiveItem(Item)
  145. if Item == "Armor" then
  146. Events:WaitForChild("Vending"):FireServer(3, "Armor2", "Armor", tostring(LocalPlayer), 1)
  147. else
  148. Events:WaitForChild("GiveTool"):FireServer(tostring(Item:gsub(" ", "")))
  149. end
  150. end
  151. local function Train(Ability)
  152. Events:WaitForChild("RainbowWhatStat"):FireServer(Ability)
  153. end
  154. local function TakeDamange(Amount)
  155. Events:WaitForChild("Energy"):FireServer(-Amount, false, false)
  156. end
  157. local function TeleportTo(CFrameArg)
  158. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrameArg
  159. end
  160. local function HealAllPlayers()
  161. UnequipAllTools()
  162. task.wait(.2)
  163. GiveItem("Golden Apple")
  164. task.wait(.5)
  165. LocalPlayer.Backpack:WaitForChild("GoldenApple").Parent = LocalPlayer.Character
  166. task.wait(.5)
  167. Events:WaitForChild("HealTheNoobs"):FireServer()
  168. end
  169. local function HealYourself()
  170. GiveItem("Pizza")
  171. Events.Energy:FireServer(25, "Pizza")
  172. end
  173. local function BreakBarricades()
  174. for i, v in pairs(game:GetService("Workspace").FallenTrees:GetChildren()) do
  175. for i = 1, 20 do
  176. if v:FindFirstChild("TreeHitPart") then
  177. Events.RoadMissionEvent:FireServer(1, v.TreeHitPart, 5)
  178. end
  179. end
  180. end
  181. end
  182. local function BreakEnemies()
  183. pcall(function()
  184. for i, v in pairs(game:GetService("Workspace").BadGuys:GetChildren()) do
  185. v:FindFirstChild("Humanoid", true).Health = 0
  186. end
  187. for i, v in pairs(game:GetService("Workspace").BadGuysBoss:GetChildren()) do
  188. v:FindFirstChild("Humanoid", true).Health = 0
  189. end
  190. for i, v in pairs(game:GetService("Workspace").BadGuysFront:GetChildren()) do
  191. v:FindFirstChild("Humanoid", true).Health = 0
  192. end
  193. end)
  194. end
  195. local function KillEnemies()
  196. pcall(function()
  197. for i, v in pairs(game:GetService("Workspace").BadGuys:GetChildren()) do
  198. Events:WaitForChild("HitBadguy"):FireServer(v, 64.8, 4)
  199. end
  200. for i, v in pairs(game:GetService("Workspace").BadGuysBoss:GetChildren()) do
  201. Events:WaitForChild("HitBadguy"):FireServer(v, 64.8, 4)
  202. end
  203. for i, v in pairs(game:GetService("Workspace").BadGuysFront:GetChildren()) do
  204. Events:WaitForChild("HitBadguy"):FireServer(v, 64.8, 4)
  205. end
  206. if game:GetService("Workspace"):FindFirstChild("BadGuyPizza", true) then
  207. Events:WaitForChild("HitBadguy"):FireServer(game:GetService("Workspace"):FindFirstChild("BadGuyPizza", true), 64.8, 4)
  208. end
  209. if game:GetService("Workspace"):FindFirstChild("BadGuyBrute") then
  210. Events:WaitForChild("HitBadguy"):FireServer(game:GetService("Workspace").BadGuyBrute, 64.8, 4)
  211. end
  212. end)
  213. end
  214.  
  215. local function GetDog()
  216. for i, v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.Assets.Note.Note.Note:GetChildren()) do
  217. if v.Name:match("Circle") and v.Visible == true then
  218. GiveItem(tostring(v.Name:gsub("Circle", "")))
  219. task.wait(.1)
  220. LocalPlayer.Backpack:WaitForChild(tostring(v.Name:gsub("Circle", ""))).Parent = LocalPlayer.Character
  221. TeleportTo(CFrame.new(-257.56839, 29.4499969, -910.452637, -0.238445505, 7.71292363e-09, 0.971155882, 1.2913591e-10, 1, -7.91029819e-09, -0.971155882, -1.76076387e-09, -0.238445505))
  222. task.wait(.5)
  223. Events:WaitForChild("CatFed"):FireServer(tostring(v.Name:gsub("Circle", "")))
  224. end
  225. end
  226. task.wait(2)
  227. for i = 1, 3 do
  228. TeleportTo(CFrame.new(-203.533081, 30.4500484, -790.901428, -0.0148558766, 8.85941187e-09, -0.999889672, 2.65695732e-08, 1, 8.46563175e-09, 0.999889672, -2.64408779e-08, -0.0148558766) + Vector3.new(0, 5, 0))
  229. task.wait(.1)
  230. end
  231. end
  232.  
  233. local function GetAgent()
  234. GiveItem("Louise")
  235. task.wait(.1)
  236. LocalPlayer.Backpack:WaitForChild("Louise").Parent = LocalPlayer.Character
  237. Events:WaitForChild("LouiseGive"):FireServer(2)
  238. end
  239.  
  240. local function GetUncle()
  241. GiveItem("Key")
  242. task.wait(.1)
  243. LocalPlayer.Backpack:WaitForChild("Key").Parent = LocalPlayer.Character
  244. wait(.5)
  245. Events.KeyEvent:FireServer()
  246. end
  247. local function ClickPete()
  248. fireclickdetector(game:GetService("Workspace").UnclePete.ClickDetector)
  249. end
  250. local function CollectCash()
  251. for i, v in pairs(game:GetService("Workspace"):GetChildren()) do
  252. if v.Name == "Part" and v:FindFirstChild("TouchInterest") and v:FindFirstChild("Weld") and v.Transparency == 1 then
  253. firetouchinterest(v, LocalPlayer.Character.HumanoidRootPart, 0)
  254. end
  255. end
  256. end
  257. local function GetAllOutsideItems()
  258. TeleportTo(CFrame.new(-199.240555, 30.0009422, -790.182739, 0.08340507, 2.48169538e-08, 0.996515751, -2.7112752e-09, 1, -2.46767993e-08, -0.996515751, -6.43658127e-10, 0.08340507))
  259. for i, v in pairs(game:GetService("Workspace").OutsideParts:GetChildren()) do
  260. fireclickdetector(v.ClickDetector)
  261. end
  262. LocalPlayer.Character.Humanoid:MoveTo(LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(-10, 0, 0))
  263. end
  264. local function BringAllEnemies()
  265. pcall(function()
  266. for i, v in pairs(game:GetService("Workspace").BadGuys:GetChildren()) do
  267. v.HumanoidRootPart.Anchored = true
  268. v.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, -4)
  269. end
  270. for i, v in pairs(game:GetService("Workspace").BadGuysBoss:GetChildren()) do
  271. v.HumanoidRootPart.Anchored = true
  272. v.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, -4)
  273. end
  274.  
  275. for i, v in pairs(game:GetService("Workspace").BadGuysFront:GetChildren()) do
  276. v.HumanoidRootPart.Anchored = true
  277. v.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, -4)
  278. end
  279. end)
  280. end
  281. local function Noclip(State)
  282. LocalPlayer.Character.HumanoidRootPart.CanCollide = State
  283. for i, v in pairs(LocalPlayer.Character:GetChildren()) do
  284. if v:IsA("MeshPart") then
  285. v.CanCollide = State
  286. end
  287. end
  288. end
  289. local function GetSecretEnding()
  290. for i, v in next, SecretEndingTable do
  291. Events.LarryEndingEvent:FireServer(v, true)
  292. end
  293. end
  294.  
  295. local function GetGAppleBadge()
  296. for i, v in pairs(game:GetService("Workspace").FallenTrees:GetChildren()) do
  297. for i = 1, 20 do
  298. if v:FindFirstChild("TreeHitPart") then
  299. Events.RoadMissionEvent:FireServer(1, v.TreeHitPart, 5)
  300. end
  301. end
  302. end
  303. task.wait(1)
  304.  
  305. TeleportTo(CFrame.new(61.8781624, 29.4499969, -534.381165, -0.584439218, -1.05103076e-07, 0.811437488, -3.12853778e-08, 1, 1.06993674e-07, -0.811437488, 3.71451705e-08, -0.584439218))
  306. task.wait(.5)
  307. fireclickdetector(game:GetService("Workspace").GoldenApple.ClickDetector)
  308. end
  309.  
  310. local function AntiMud(Touchable)
  311. for i, v in pairs(game:GetService("Workspace").BogArea.Bog:GetDescendants()) do
  312. if v.Name == "Mud" and v:IsA("Part") then
  313. if Touchable == true then
  314. v.CanTouch = false
  315. else
  316. v.CanTouch = false
  317. end
  318. end
  319. end
  320. end
  321. local function AntiWind()
  322. if game:GetService("Workspace"):FindFirstChild("WavePart") then
  323. game:GetService("Workspace").WavePart.CanTouch = false
  324. end
  325. end
  326. -- Main Script / GUI
  327. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/RScriptz/RobloxScripts/main/OrionLibKeybind.lua')))()
  328. local function Notify(name, content, image, time)
  329. OrionLib:MakeNotification({
  330. Name = name,
  331. Content = content,
  332. Image = image,
  333. Time = time
  334. })
  335. end
  336. local Window = OrionLib:MakeWindow({
  337. Name = "luidyotavio235 Break In 2 Hub",
  338. HidePremium = false,
  339. SaveConfig = true,
  340. ConfigFolder = "OrionTest",
  341. IntroText = "Loading Script..."
  342. })
  343. local Tab = Window:MakeTab({
  344. Name = "Overpowered",
  345. Icon = "rbxassetid://4483345998",
  346. PremiumOnly = false
  347. })
  348. local Section = Tab:AddSection({
  349. Name = "Item Giver"
  350. })
  351. Tab:AddParagraph("Note:", "Getting/Spamming Multiple Of 1 Type Of Items May Cause The Item To Break And Be Unuseable/Unequippable.\nIt Is Recommended To Only Grab 1 Item At Once, Especially If Its An Item Everyone Can Use.")
  352.  
  353. Tab:AddDropdown({
  354. Name = "Item",
  355. Default = "Med Kit",
  356. Options = ItemsTable,
  357. Callback = function(Value)
  358. if Value == 'Book' or Value == 'Phone' then
  359. Notify('Warning', Value .. " Wont Work Unless You Own The Corresponding Gamepass.", 'rbxassetid://4483345998', 7)
  360. end
  361. SelectedItem = Value
  362. end
  363. })
  364. Tab:AddButton({
  365. Name = "Get Item",
  366. Callback = function()
  367. GiveItem(SelectedItem)
  368. end
  369. })
  370. local Section = Tab:AddSection({
  371. Name = "Training"
  372. })
  373. Tab:AddButton({
  374. Name = "Train Strength",
  375. Callback = function()
  376. Train("Strength")
  377. end
  378. })
  379. Tab:AddButton({
  380. Name = "Train Speed",
  381. Callback = function()
  382. Train("Speed")
  383. end
  384. })
  385. local Section = Tab:AddSection({
  386. Name = "Heal Youself"
  387. })
  388. Tab:AddButton({
  389. Name = "Heal Yourself",
  390. Callback = function()
  391. for i = 1, 10 do
  392. HealYourself()
  393. end
  394. end
  395. })
  396. Tab:AddToggle({
  397. Name = "Loop Heal Yourself",
  398. Default = false,
  399. Callback = function(Value)
  400. getgenv().HealLoop = Value
  401. while HealLoop do
  402. HealYourself()
  403. task.wait(.1)
  404. end
  405. end
  406. })
  407. local Section = Tab:AddSection({
  408. Name = "Heal All"
  409. })
  410. Tab:AddButton({
  411. Name = "Heal All",
  412. Callback = function()
  413. HealAllPlayers()
  414. end
  415. })
  416. Tab:AddToggle({
  417. Name = "Loop Heal All",
  418. Default = false,
  419. Callback = function(Value)
  420. getgenv().HealAllLoop = Value
  421. while HealAllLoop do
  422. HealAllPlayers()
  423. task.wait(3)
  424. end
  425. end
  426. })
  427. local Section = Tab:AddSection({
  428. Name = "Quality Of Life"
  429. })
  430. Tab:AddToggle({
  431. Name = "Semi-Godmode",
  432. Default = false,
  433. Callback = function(Value)
  434. getgenv().SemiGodmode = Value
  435. if SemiGodmode == true then
  436. Notify('Info', "What Semi-Godmode Works On: Special Attacks (Pizza Boss's Pepper Attack, All Scarry Larry/Marry Attacks Except Monster Spawner), Hailing And Possibly Some Others\nWhat Semi-Godmode Doesnt Work On: Enemies, Ice (Use Anti Slip), Getting Locked In A Room While An Enemy Wave Comes, And Possibly Some Others.", 'rbxassetid://4483345998', 7)
  437. end
  438. end
  439. })
  440. Tab:AddToggle({
  441. Name = "Remove Slipping",
  442. Default = false,
  443. Callback = function(Value)
  444. getgenv().RemoveSlipping = Value
  445. if RemoveSlipping == true then
  446. Notify('Credits To', "Leo Dicap On V3rmillion For Making This Feature!", 'rbxassetid://4483345998', 7)
  447. end
  448. end
  449. })
  450. Tab:AddToggle({
  451. Name = "Remove Hailing",
  452. Default = false,
  453. Callback = function(Value)
  454. if Value == false then
  455. if ScriptLoaded == true then
  456. HailClone.Parent = game:GetService("Workspace")
  457. end
  458. else
  459. HailClone = game:GetService("Workspace").Hails:Clone()
  460. game:GetService("Workspace").Hails:Destroy()
  461. end
  462. end
  463. })
  464.  
  465. Tab:AddToggle({
  466. Name = "Remove Wind",
  467. Default = false,
  468. Callback = function(Value)
  469. getgenv().NoWind = Value
  470. while NoWind == true do
  471. AntiWind()
  472. task.wait(.5)
  473. end
  474. end
  475. })
  476. Tab:AddToggle({
  477. Name = "Remove Mud",
  478. Default = false,
  479. Callback = function(Value)
  480. AntiMud(Value)
  481. end
  482. })
  483.  
  484. local Section = Tab:AddSection({
  485. Name = "Others"
  486. })
  487. Tab:AddButton({
  488. Name = "Teleport To Private Lobby",
  489. Callback = function()
  490. game:GetService("TeleportService"):Teleport(14775231477, LocalPlayer)
  491. end
  492. })
  493. Tab:AddButton({
  494. Name = "Unlock Secret Ending",
  495. Callback = function()
  496. GetSecretEnding()
  497. end
  498. })
  499.  
  500. local Tab = Window:MakeTab({
  501. Name = "Teleports",
  502. Icon = "rbxassetid://4483345998",
  503. PremiumOnly = false
  504. })
  505. local Section = Tab:AddSection({
  506. Name = "Main"
  507. })
  508. Tab:AddButton({
  509. Name = "Boss Fight",
  510. Callback = function()
  511. TeleportTo(CFrame.new(-1565.78772, -368.711945, -1040.66626, 0.0929690823, -1.97564436e-08, 0.995669007, -1.53269308e-08, 1, 2.1273511e-08, -0.995669007, -1.72383299e-08, 0.0929690823))
  512. end
  513. })
  514. Tab:AddButton({
  515. Name = "Shop",
  516. Callback = function()
  517. TeleportTo(CFrame.new(-246.653229, 30.4500484, -847.319275, 0.999987781, -9.18427645e-08, -0.00494772941, 9.19905787e-08, 1, 2.96483353e-08, 0.00494772941, -3.01031164e-08, 0.999987781))
  518. end
  519. })
  520. Tab:AddButton({
  521. Name = "Kitchen",
  522. Callback = function()
  523. TeleportTo(CFrame.new(-249.753555, 30.4500484, -732.703125, -0.999205947, -1.97705017e-08, 0.0398429185, -2.00601384e-08, 1, -6.86967372e-09, -0.0398429185, -7.66347341e-09, -0.999205947))
  524. end
  525. })
  526. Tab:AddButton({
  527. Name = "Fighting Arena",
  528. Callback = function()
  529. TeleportTo(CFrame.new(-255.521988, 62.7139359, -723.436035, -0.0542500541, 4.28905356e-09, -0.998527408, 1.07862625e-08, 1, 3.70936082e-09, 0.998527408, -1.05691456e-08, -0.0542500541))
  530. end
  531. })
  532. Tab:AddButton({
  533. Name = "The Gym",
  534. Callback = function()
  535. TeleportTo(CFrame.new(-256.477448, 63.4500465, -840.825562, 0.999789953, 2.17116263e-08, 0.020495005, -2.15169358e-08, 1, -9.7199333e-09, -0.020495005, 9.27690191e-09, 0.999789953))
  536. end
  537. })
  538. Tab:AddButton({
  539. Name = "Golden Apple",
  540. Callback = function()
  541. TeleportTo(CFrame.new(61.8781624, 29.4499969, -534.381165, -0.584439218, -1.05103076e-07, 0.811437488, -3.12853778e-08, 1, 1.06993674e-07, -0.811437488, 3.71451705e-08, -0.584439218))
  542. end
  543. })
  544. Tab:AddButton({
  545. Name = "Feeding Instructions",
  546. Callback = function()
  547. TeleportTo(CFrame.new(-207.885056, 60.4500465, -830.583557, 0.118373089, 3.89876789e-08, -0.992969215, 3.47791551e-09, 1, 3.96783406e-08, 0.992969215, -8.15031065e-09, 0.118373089))
  548. end
  549. })
  550. Tab:AddButton({
  551. Name = "Middle Room",
  552. Callback = function()
  553. TeleportTo(CFrame.new(-209.951859, 30.4590473, -789.723877, -0.0485812724, 6.74905039e-08, 0.998819232, 1.19352916e-09, 1, -6.75122394e-08, -0.998819232, -2.08771045e-09, -0.0485812724))
  554. end
  555. })
  556. Tab:AddButton({
  557. Name = "Scarry Mary Pillar",
  558. Callback = function()
  559. TeleportTo(CFrame.new(-1501.49597, -325.156891, -1060.63367, -0.691015959, 7.43958628e-09, 0.722839475, -5.03345055e-09, 1, -1.51040194e-08, -0.722839475, -1.40754954e-08, -0.691015959))
  560. end
  561. })
  562. Tab:AddButton({
  563. Name = "Outside Loot",
  564. Callback = function()
  565. TeleportTo(game:GetService("Workspace").OutsideParts:FindFirstChildWhichIsA("Part", true).CFrame + Vector3.new(10, 0, 0))
  566. end
  567. })
  568. Tab:AddButton({
  569. Name = "Experiment Room",
  570. Callback = function()
  571. TeleportTo(game:GetService("Workspace").Final.Factory.RedDesk.Drawer:GetChildren()[2].CFrame + Vector3.new(20, 0, 0))
  572. end
  573. })
  574.  
  575. Tab:AddButton({
  576. Name = "Cafeteria",
  577. Callback = function()
  578. TeleportTo(game:GetService("Workspace").Final.Factory:FindFirstChild("Legs", true).CFrame)
  579. end
  580. })
  581.  
  582. Tab:AddButton({
  583. Name = "Rainbow Pizza Box",
  584. Callback = function()
  585. TeleportTo(game:GetService("Workspace").RainbowPizzaBox.CFrame)
  586. end
  587. })
  588.  
  589. local Section = Tab:AddSection({
  590. Name = "Npc's"
  591. })
  592. Tab:AddButton({
  593. Name = "Secret Agent Bradley",
  594. Callback = function()
  595. TeleportTo(CFrame.new(-281.792053, 95.4500275, -790.556946, -0.116918251, -7.95074726e-08, -0.993141532, -2.79918044e-09, 1, -7.97270019e-08, 0.993141532, -6.54155974e-09, -0.116918251))
  596. end
  597. })
  598. Tab:AddButton({
  599. Name = "Twando The Dog",
  600. Callback = function()
  601. TeleportTo(CFrame.new(-257.56839, 29.4499969, -910.452637, -0.238445505, 7.71292363e-09, 0.971155882, 1.2913591e-10, 1, -7.91029819e-09, -0.971155882, -1.76076387e-09, -0.238445505))
  602. end
  603. })
  604. Tab:AddButton({
  605. Name = "Uncle Pete",
  606. Callback = function()
  607. TeleportTo(CFrame.new(-294.208923, 63.4182587, -737.712036, -0.998669028, -7.34403613e-08, -0.05157727, -7.2258743e-08, 1, -2.47743781e-08, 0.05157727, -2.1014495e-08, -0.998669028))
  608. end
  609. })
  610. local Section = Tab:AddSection({
  611. Name = "Secret Ending"
  612. })
  613. Tab:AddButton({
  614. Name = "Golden Crowbar",
  615. Callback = function()
  616. TeleportTo(CFrame.new(-147.337204, 29.4477005, -929.365295, 0.756779075, 4.53537341e-09, -0.653670728, 5.82708326e-09, 1, 1.36845468e-08, 0.653670728, -1.4165173e-08, 0.756779075))
  617. end
  618. })
  619. Tab:AddButton({
  620. Name = "Purple Mask",
  621. Callback = function()
  622. TeleportTo(CFrame.new(102.560722, 29.2477055, -976.389954, -0.951403797, 3.76210636e-08, -0.307946175, 1.89752569e-08, 1, 6.35433466e-08, 0.307946175, 5.46120233e-08, -0.951403797))
  623. end
  624. })
  625. Tab:AddButton({
  626. Name = "Homeless Kid",
  627. Callback = function()
  628. TeleportTo(CFrame.new(-79.4871826, 29.4477024, -932.782715, -0.215949073, 3.18771427e-08, 0.976404607, -7.60385461e-08, 1, -4.94647345e-08, -0.976404607, -8.49262562e-08, -0.215949073))
  629. end
  630. })
  631. local Tab = Window:MakeTab({
  632. Name = "Humanoid",
  633. Icon = "rbxassetid://4483345998",
  634. PremiumOnly = false
  635. })
  636. local Section = Tab:AddSection({
  637. Name = "Settings"
  638. })
  639.  
  640. Tab:AddSlider({
  641. Name = "Walk Speed",
  642. Min = 0,
  643. Max = 500,
  644. Default = 50,
  645. Color = Color3.fromRGB(0, 255, 0),
  646. Increment = 1,
  647. ValueName = "Speed",
  648. Callback = function(Value)
  649. ModifiedWalkspeed = Value
  650. end
  651. })
  652. Tab:AddSlider({
  653. Name = "Jump Power",
  654. Min = 0,
  655. Max = 500,
  656. Default = 100,
  657. Color = Color3.fromRGB(0, 255, 0),
  658. Increment = 1,
  659. ValueName = "Power",
  660. Callback = function(Value)
  661. ModifiedJumpPower = Value
  662. end
  663. })
  664. local Section = Tab:AddSection({
  665. Name = "Humanoid"
  666. })
  667. Tab:AddToggle({
  668. Name = "Enable Walk Speed",
  669. Default = false,
  670. Callback = function(Value)
  671. if Value == true then
  672. OriginalWalkspeed = LocalPlayer.Character.Humanoid.WalkSpeed
  673. LocalPlayer.Character.Humanoid.WalkSpeed = ModifiedWalkspeed
  674. else
  675. LocalPlayer.Character.Humanoid.WalkSpeed = OriginalWalkspeed
  676. end
  677. end
  678. })
  679. Tab:AddToggle({
  680. Name = "Enable Jump Power",
  681. Default = false,
  682. Callback = function(Value)
  683. if Value == true then
  684. OriginalJumpPower = LocalPlayer.Character.Humanoid.JumpPower
  685. LocalPlayer.Character.Humanoid.JumpPower = ModifiedJumpPower
  686. LocalPlayer.Character.Humanoid.UseJumpPower = Value
  687. else
  688. LocalPlayer.Character.Humanoid.JumpPower = OriginalJumpPower
  689. end
  690. end
  691. })
  692. Tab:AddToggle({
  693. Name = "Enable Noclip",
  694. Default = false,
  695. Callback = function(Value)
  696. getgenv().Noclipping = Value
  697. if Noclipping == true then
  698. spawn(function()
  699. while Noclipping == true do
  700. Noclip(false)
  701. task.wait(.05)
  702. end
  703. end)
  704. end
  705. if Noclipping == false then
  706. Noclip(true)
  707. end
  708. end
  709. })
  710. Tab:AddToggle({
  711. Name = "Enable Floating",
  712. Default = false,
  713. Callback = function(Value)
  714. getgenv().Float = Value
  715. if Float == true then
  716. spawn(function()
  717. while Float == true do
  718. Part.CFrame = LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0, -4, 0)
  719. task.wait(.05)
  720. end
  721. end)
  722. end
  723. if Float == false then
  724. Part.CFrame = LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0, 999, 0)
  725. end
  726. end
  727. })
  728. local Tab = Window:MakeTab({
  729. Name = "Combat",
  730. Icon = "rbxassetid://4483345998",
  731. PremiumOnly = false
  732. })
  733. local Section = Tab:AddSection({
  734. Name = "Kill Enemies"
  735. })
  736.  
  737. Tab:AddButton({
  738. Name = "Kill All Enemies",
  739. Callback = function()
  740. for i = 1, 10 do
  741. KillEnemies()
  742. end
  743. end
  744. })
  745.  
  746. Tab:AddToggle({
  747. Name = "Loop Kill All",
  748. Default = false,
  749. Callback = function(Value)
  750. getgenv().KillAllLoop = Value
  751. while KillAllLoop do
  752. for i = 1, 3 do
  753. KillEnemies()
  754. end
  755. task.wait(.1)
  756. end
  757. end
  758. })
  759. local Section = Tab:AddSection({
  760. Name = "Break Enemies"
  761. })
  762.  
  763. Tab:AddButton({
  764. Name = "Break All Enemies",
  765. Callback = function()
  766. BreakEnemies()
  767. end
  768. })
  769.  
  770. Tab:AddToggle({
  771. Name = "Loop Break All",
  772. Default = false,
  773. Callback = function(Value)
  774. getgenv().BreakAllLoop = Value
  775. while BreakAllLoop do
  776. BreakEnemies()
  777. task.wait(1)
  778. end
  779. end
  780. })
  781. local Section = Tab:AddSection({
  782. Name = "Bring Enemies"
  783. })
  784.  
  785.  
  786. Tab:AddButton({
  787. Name = "Bring All Enemies",
  788. Callback = function()
  789. BringAllEnemies()
  790. end
  791. })
  792.  
  793. Tab:AddToggle({
  794. Name = "Loop Bring All",
  795. Default = false,
  796. Callback = function(Value)
  797. getgenv().BringAllLoop = Value
  798. while BringAllLoop do
  799. BringAllEnemies()
  800. task.wait(.1)
  801. end
  802. end
  803. })
  804. local Tab = Window:MakeTab({
  805. Name = "Misc",
  806. Icon = "rbxassetid://4483345998",
  807. PremiumOnly = false
  808. })
  809. local Section = Tab:AddSection({
  810. Name = "Harmful"
  811. })
  812. Tab:AddSlider({
  813. Name = "Damange Amount",
  814. Min = 0,
  815. Max = 200,
  816. Default = 5,
  817. Color = Color3.fromRGB(0, 255, 0),
  818. Increment = 1,
  819. ValueName = "Damange",
  820. Callback = function(Value)
  821. Damange = Value
  822. end
  823. })
  824. Tab:AddButton({
  825. Name = "Damange Yourself",
  826. Callback = function()
  827. if SemiGodmode == false then
  828. TakeDamange(Damange)
  829. else
  830. Notify('Warning', "Damanging Yourself Won't Work Due To Having 'Semi Godmode' Enabled!", 'rbxassetid://4483345998', 7)
  831. end
  832. end
  833. })
  834. Tab:AddButton({
  835. Name = "Slip",
  836. Callback = function()
  837. if RemoveSlipping == false then
  838. Events:WaitForChild("IceSlip"):FireServer(Vector3.new(0, 0, 0))
  839. else
  840. Notify('Warning', "Slipping Won't Work Due To Having 'Remove Slipping' Enabled!", 'rbxassetid://4483345998', 7)
  841. end
  842. end
  843. })
  844.  
  845. local Section = Tab:AddSection({
  846. Name = "Tools"
  847. })
  848. Tab:AddButton({
  849. Name = "Equip All",
  850. Callback = function()
  851. EquipAllTools()
  852. end
  853. })
  854. Tab:AddButton({
  855. Name = "Unequip All",
  856. Callback = function()
  857. UnequipAllTools()
  858. end
  859. })
  860. local Section = Tab:AddSection({
  861. Name = "Bosses"
  862. })
  863. Tab:AddButton({
  864. Name = "Delete Scary Mary",
  865. Callback = function()
  866. if game:GetService("Workspace"):FindFirstChild("Villainess") then
  867. game:GetService("Workspace").Villainess:Destroy()
  868. else
  869. Notify('Warning', "Scary Marry Is Already Deleted Or Boss Fight Hasnt Started!", 'rbxassetid://4483345998', 7)
  870. end
  871. end
  872. })
  873.  
  874. Tab:AddButton({
  875. Name = "Delete Scary Larry",
  876. Callback = function()
  877. if game:GetService("Workspace"):FindFirstChild("BigBoss") then
  878. game:GetService("Workspace").BigBoss:Destroy()
  879. else
  880. Notify('Warning', "Scary Larry Is Already Deleted Or Boss Fight Hasnt Started!", 'rbxassetid://4483345998', 7)
  881. end
  882. end
  883. })
  884.  
  885.  
  886. local Section = Tab:AddSection({
  887. Name = "NPC's"
  888. })
  889.  
  890. Tab:AddButton({
  891. Name = "Get All NPC's",
  892. Callback = function()
  893. GetDog()
  894. task.wait(5)
  895. GetAgent()
  896. task.wait(1)
  897. GetUncle()
  898. end
  899. })
  900.  
  901. Tab:AddButton({
  902. Name = "Get Dog",
  903. Callback = function()
  904. GetDog()
  905. end
  906. })
  907. Tab:AddButton({
  908. Name = "Get Agent Bradley",
  909. Callback = function()
  910. GetAgent()
  911. end
  912. })
  913.  
  914. Tab:AddButton({
  915. Name = "Get Uncle Pete",
  916. Callback = function()
  917. GetUncle()
  918. end
  919. })
  920. local Section = Tab:AddSection({
  921. Name = "Cash"
  922. })
  923. Tab:AddButton({
  924. Name = "Collect Cash",
  925. Callback = function()
  926. CollectCash()
  927. end
  928. })
  929.  
  930. Tab:AddToggle({
  931. Name = "Auto Collect Cash",
  932. Default = false,
  933. Callback = function(Value)
  934. getgenv().CollectAllCash = Value
  935.  
  936. while CollectAllCash do
  937. CollectCash()
  938. task.wait(1)
  939. end
  940. end
  941. })
  942.  
  943. local Section = Tab:AddSection({
  944. Name = "Others"
  945. })
  946.  
  947. Tab:AddToggle({
  948. Name = "Auto Claim Uncle Pete Quests",
  949. Default = false,
  950. Callback = function(Value)
  951. getgenv().AutoPete = Value
  952.  
  953. while AutoPete do
  954. ClickPete()
  955. task.wait(10)
  956. end
  957. end
  958. })
  959. Tab:AddButton({
  960. Name = "Get Golden Apple Badge (Note: Breaks Heal All)",
  961. Callback = function()
  962. GetGAppleBadge()
  963. end
  964. })
  965.  
  966. Tab:AddButton({
  967. Name = "Get All Items From Outside",
  968. Callback = function()
  969. GetAllOutsideItems()
  970. end
  971. })
  972. Tab:AddButton({
  973. Name = "Break Fallen Trees",
  974. Callback = function()
  975. BreakBarricades()
  976. end
  977. })
  978.  
  979.  
  980. Tab:AddToggle({
  981. Name = "Hidden Items ESP",
  982. Default = false,
  983. Callback = function(Value)
  984. if Value == true then
  985. for i, v in pairs(game:GetService("Workspace").Hidden:GetChildren()) do
  986. local highlight = Instance.new("Highlight")
  987. highlight.Parent = v
  988. highlight.FillColor = Color3.fromRGB(255, 0, 255)
  989. highlight.FillTransparency = 0
  990. highlight.OutlineTransparency = 0
  991. highlight.OutlineColor = Color3.fromRGB(0, 0, 255)
  992. end
  993. else
  994. for i, v in pairs(game:GetService("Workspace").Hidden:GetChildren()) do
  995. if v:FindFirstChild("Highlight") then
  996. v:FindFirstChild("Highlight"):Destroy()
  997. end
  998. end
  999. end
  1000. end
  1001. })
  1002.  
  1003. Tab:AddToggle({
  1004. Name = "Full Bright",
  1005. Default = false,
  1006. Callback = function(Value)
  1007. if Value == true then
  1008. Lighting.Brightness = 1
  1009. Lighting.FogEnd = 999999
  1010. Lighting.GlobalShadows = false
  1011. else
  1012. Lighting.Brightness = OriginalBrightness
  1013. Lighting.FogEnd = OriginalFog
  1014. Lighting.GlobalShadows = GlobalShadows
  1015. end
  1016. end
  1017. })
  1018.  
  1019. Notify('Loaded!', "Script Successfully Loaded!\nJoin Our Discord At (https://discord.com/invite/3r3f4RJV) For Support, Questions And Updates!\nThe Script Is Open Source So Feel Free To Look At The Code!", 'rbxassetid://4483345998', 15)
  1020. ScriptLoaded = true
  1021. OrionLib:Init()
  1022. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement