Advertisement
ScriptHubRoblox

Untitled

Sep 2nd, 2022 (edited)
582
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.06 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2.  
  3. local Window = OrionLib:MakeWindow({Name = "Astra Hub | Doors | V.3.2 | Mini | Tactical#5370", HidePremium = true, SaveConfig = true, ConfigFolder = "DoorsSex"})
  4.  
  5. local VisualsTab = Window:MakeTab({
  6.  
  7. Name = "Visuals",
  8.  
  9. Icon = "rbxassetid://4483345998",
  10.  
  11. PremiumOnly = false
  12.  
  13. })
  14.  
  15. local LatestRoom = game:GetService("ReplicatedStorage").GameData.LatestRoom
  16.  
  17. local ChaseStart = game:GetService("ReplicatedStorage").GameData.ChaseStart
  18.  
  19.  
  20.  
  21. local KeyChams = {}
  22.  
  23. VisualsTab:AddToggle({
  24.  
  25. Name = "Key Chams (Item) (Esp)",
  26.  
  27. Default = false,
  28.  
  29. Flag = "KeyToggle",
  30.  
  31. Callback = function(Value)
  32.  
  33. for i,v in pairs(KeyChams) do
  34.  
  35. v.Enabled = Value
  36.  
  37. end
  38.  
  39. end
  40.  
  41. })
  42.  
  43.  
  44.  
  45. local function ApplyKeyChams(inst)
  46.  
  47. wait()
  48.  
  49. local Cham = Instance.new("Highlight")
  50.  
  51. Cham.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop
  52.  
  53. Cham.FillColor = Color3.new(0.980392, 0.670588, 0)
  54.  
  55. Cham.FillTransparency = 0.5
  56.  
  57. Cham.OutlineColor = Color3.new(0.792156, 0.792156, 0.792156)
  58.  
  59. Cham.Parent = inst
  60.  
  61. Cham.Adornee = inst
  62.  
  63. Cham.Enabled = OrionLib.Flags["KeyToggle"].Value
  64.  
  65. Cham.RobloxLocked = true
  66.  
  67. return Cham
  68.  
  69. end
  70.  
  71.  
  72.  
  73. local KeyCoroutine = coroutine.create(function()
  74.  
  75. workspace.CurrentRooms.DescendantAdded:Connect(function(inst)
  76.  
  77. if inst.Name == "KeyObtain" then
  78.  
  79. table.insert(KeyChams,ApplyKeyChams(inst))
  80.  
  81. end
  82.  
  83. end)
  84.  
  85. end)
  86.  
  87. for i,v in ipairs(workspace:GetDescendants()) do
  88.  
  89. if v.Name == "KeyObtain" then
  90.  
  91. table.insert(KeyChams,ApplyKeyChams(v))
  92.  
  93. end
  94.  
  95. end
  96.  
  97. coroutine.resume(KeyCoroutine)
  98.  
  99.  
  100.  
  101. local BookChams = {}
  102.  
  103. VisualsTab:AddToggle({
  104.  
  105. Name = "Book Chams (Item) (Esp)",
  106.  
  107. Default = false,
  108.  
  109. Flag = "BookToggle",
  110.  
  111. Callback = function(Value)
  112.  
  113. for i,v in pairs(BookChams) do
  114.  
  115. v.Enabled = Value
  116.  
  117. end
  118.  
  119. end
  120.  
  121. })
  122.  
  123.  
  124.  
  125. local FigureChams = {}
  126.  
  127. VisualsTab:AddToggle({
  128.  
  129. Name = "Figure Chams (Boss) (Esp)",
  130.  
  131. Default = false,
  132.  
  133. Flag = "FigureToggle",
  134.  
  135. Callback = function(Value)
  136.  
  137. for i,v in pairs(FigureChams) do
  138.  
  139. v.Enabled = Value
  140.  
  141. end
  142.  
  143. end
  144.  
  145. })
  146.  
  147.  
  148.  
  149. local function ApplyBookChams(inst)
  150.  
  151. wait()
  152.  
  153. local Cham = Instance.new("Highlight")
  154.  
  155. Cham.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop
  156.  
  157. Cham.FillColor = Color3.new(0, 1, 0.749019)
  158.  
  159. Cham.FillTransparency = 0.5
  160.  
  161. Cham.OutlineColor = Color3.new(0.792156, 0.792156, 0.792156)
  162.  
  163. Cham.Parent = inst
  164.  
  165. Cham.Enabled = OrionLib.Flags["BookToggle"].Value
  166.  
  167. Cham.Adornee = inst
  168.  
  169. Cham.RobloxLocked = true
  170.  
  171. return Cham
  172.  
  173. end
  174.  
  175.  
  176.  
  177. local function ApplyEntityChams(inst)
  178.  
  179. wait()
  180.  
  181. local Cham = Instance.new("Highlight")
  182.  
  183. Cham.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop
  184.  
  185. Cham.FillColor = Color3.new(1, 0, 0)
  186.  
  187. Cham.FillTransparency = 0.5
  188.  
  189. Cham.OutlineColor = Color3.new(0.792156, 0.792156, 0.792156)
  190.  
  191. Cham.Parent = inst
  192.  
  193. Cham.Enabled = OrionLib.Flags["FigureToggle"].Value
  194.  
  195. Cham.Adornee = inst
  196.  
  197. Cham.RobloxLocked = true
  198.  
  199. return Cham
  200.  
  201. end
  202.  
  203.  
  204.  
  205. local BookCoroutine = coroutine.create(function()
  206.  
  207. for i,v in pairs(game:GetService("Workspace").CurrentRooms["50"].Assets:GetDescendants()) do
  208.  
  209. if v.Name == "LiveHintBook" then
  210.  
  211. table.insert(BookChams,ApplyBookChams(v))
  212.  
  213. end
  214.  
  215. end
  216.  
  217. end)
  218.  
  219. local EntityCoroutine = coroutine.create(function()
  220.  
  221. local Entity = game:GetService("Workspace").CurrentRooms["50"].FigureSetup:WaitForChild("FigureRagdoll",5)
  222.  
  223. Entity:WaitForChild("Torso",2.5)
  224.  
  225. table.insert(FigureChams,ApplyEntityChams(Entity))
  226.  
  227. end)
  228.  
  229.  
  230.  
  231.  
  232.  
  233. local GameTab = Window:MakeTab({
  234.  
  235. Name = "Game",
  236.  
  237. Icon = "rbxassetid://4483345998",
  238.  
  239. PremiumOnly = false
  240.  
  241. })
  242.  
  243.  
  244.  
  245. local TargetWalkspeed
  246.  
  247. local pcl = Instance.new("SpotLight")
  248.  
  249. pcl.Brightness = 1
  250.  
  251. pcl.Face = Enum.NormalId.Front
  252.  
  253. pcl.Range = 90
  254.  
  255. pcl.Parent = game.Players.LocalPlayer.Character.Head
  256.  
  257. pcl.Enabled = false
  258.  
  259.  
  260.  
  261.  
  262.  
  263. GameTab:AddToggle({
  264.  
  265. Name = "Headlight",
  266.  
  267. Default = false,
  268.  
  269. Callback = function(Value)
  270.  
  271. pcl.Enabled = Value
  272.  
  273. end
  274.  
  275. })
  276.  
  277.  
  278.  
  279. GameTab:AddToggle({
  280.  
  281. Name = "No seek arms/obstructions",
  282.  
  283. Default = false,
  284.  
  285. Flag = "NoSeek"
  286.  
  287. })
  288.  
  289.  
  290.  
  291. game:GetService("Workspace").CurrentRooms.DescendantAdded:Connect(function(descendant)
  292.  
  293. if OrionLib.Flags["NoSeek"].Value == true and descendant.Name == ("Seek_Arm" or "ChandelierObstruction") then
  294.  
  295. task.spawn(function()
  296.  
  297. wait(0.01)
  298.  
  299. descendant:Destroy()
  300.  
  301. end)
  302.  
  303. end
  304.  
  305. end)
  306.  
  307.  
  308.  
  309. GameTab:AddToggle({
  310.  
  311. Name = "Instant Interact",
  312.  
  313. Default = false,
  314.  
  315. Flag = "InstantToggle"
  316.  
  317. })
  318.  
  319.  
  320.  
  321. game:GetService("ProximityPromptService").PromptButtonHoldBegan:Connect(function(prompt)
  322.  
  323. if OrionLib.Flags["InstantToggle"].Value == true then
  324.  
  325. fireproximityprompt(prompt)
  326.  
  327. end
  328.  
  329. end)
  330.  
  331. GameTab:AddToggle({
  332.  
  333. Name = "Predict chases",
  334.  
  335. Default = false,
  336.  
  337. Flag = "PredictToggle"
  338.  
  339. })
  340.  
  341. GameTab:AddToggle({
  342.  
  343. Name = "Enable Mob Notify (Rush and Ambush and Events)",
  344.  
  345. Default = false,
  346.  
  347. Flag = "MobToggle"
  348.  
  349. })
  350.  
  351. GameTab:AddButton({
  352.  
  353. Name = "Complete breaker box minigame",
  354.  
  355. Callback = function()
  356.  
  357. game:GetService("ReplicatedStorage").Bricks.EBF:FireServer()
  358.  
  359. end
  360.  
  361. })
  362.  
  363.  
  364.  
  365. local NotificationCoroutine = coroutine.create(function()
  366.  
  367. LatestRoom.Changed:Connect(function()
  368.  
  369. if OrionLib.Flags["PredictToggle"].Value == true then
  370.  
  371. local n = ChaseStart.Value - LatestRoom.Value
  372.  
  373. if 0 < n and n < 4 then
  374.  
  375. OrionLib:MakeNotification({
  376.  
  377. Name = "Warning!",
  378.  
  379. Content = "Event in " .. tostring(n) .. " rooms.",
  380.  
  381. Time = 5
  382.  
  383. })
  384.  
  385. end
  386.  
  387. end
  388.  
  389. if OrionLib.Flags["BookToggle"].Value == true then
  390.  
  391. if LatestRoom.Value == 50 then
  392.  
  393. coroutine.resume(BookCoroutine)
  394.  
  395. end
  396.  
  397. end
  398.  
  399. if OrionLib.Flags["FigureToggle"].Value == true then
  400.  
  401. if LatestRoom.Value == 50 then
  402.  
  403. coroutine.resume(EntityCoroutine)
  404.  
  405. end
  406.  
  407. end
  408.  
  409. end)
  410.  
  411. workspace.ChildAdded:Connect(function(inst)
  412.  
  413. if inst.Name == "RushMoving" and OrionLib.Flags["MobToggle"].Value == true then
  414.  
  415. OrionLib:MakeNotification({
  416.  
  417. Name = "Warning!",
  418.  
  419. Content = "Rush spawned , Tobi Pizda.",
  420.  
  421. Time = 5
  422.  
  423. })
  424.  
  425. elseif inst.Name == "AmbushMoving" and OrionLib.Flags["MobToggle"].Value == true then
  426.  
  427. OrionLib:MakeNotification({
  428.  
  429. Name = "Warning!",
  430.  
  431. Content = "Ambush spawned , Tobi Pizda.",
  432.  
  433. Time = 5
  434.  
  435. })
  436.  
  437. end
  438.  
  439. end)
  440.  
  441. end)
  442.  
  443.  
  444.  
  445. coroutine.resume(NotificationCoroutine)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement