Advertisement
DE_Speedruns

Untitled

Nov 25th, 2023 (edited)
1,453
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.63 KB | None | 0 0
  1. loadstring(game:HttpGet("https://pastebin.com/raw/rysGLM7U"))()
  2.  
  3. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  4.  
  5. local Window = OrionLib:MakeWindow({Name = "Depth hub doors Update", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  6.  
  7. --[[
  8. Name = <string> - The name of the UI.
  9. HidePremium = <bool> - Whether or not the user details shows Premium status or not.
  10. SaveConfig = <bool> - Toggles the config saving in the UI.
  11. ConfigFolder = <string> - The name of the folder where the configs are saved.
  12. IntroEnabled = <bool> - Whether or not to show the intro animation.
  13. IntroText = <string> - Text to show in the intro animation.
  14. IntroIcon = <string> - URL to the image you want to use in the intro animation.
  15. Icon = <string> - URL to the image you want displayed on the window.
  16. CloseCallback = <function> - Function to execute when the window is closed.
  17. ]]
  18.  
  19. local Tab = Window:MakeTab({
  20. Name = "Main",
  21. Icon = "rbxassetid://4483345998",
  22. PremiumOnly = false
  23. })
  24.  
  25. --[[
  26. Name = <string> - The name of the tab.
  27. Icon = <string> - The icon of the tab.
  28. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  29. ]]
  30.  
  31. local Section = Tab:AddSection({
  32. Name = "Main menu"
  33. })
  34.  
  35. --[[
  36. Name = <string> - The name of the section.
  37. ]]
  38.  
  39. Tab:AddButton({
  40. Name = "Esp Doors color Green",
  41. Callback = function()
  42. local function findKey(model)
  43. for _, child in pairs(model:GetChildren()) do
  44. if child.Name == "Door" then
  45. local a = Instance.new("BillboardGui",child)
  46. a.Name = "A"
  47. a.Size = UDim2.new(1,0,1,0)
  48. a.AlwaysOnTop = true
  49. local b = Instance.new("TextLabel",a)
  50. b.Text = "Door"
  51. b.BackgroundTransparency = 1
  52. b.BorderSizePixel = 0
  53. b.Size = UDim2.new(1,0,1,0)
  54. b.TextColor3 = Color3.new(0,255,0)
  55. b.TextSize = 10
  56. end
  57. findKey(child)
  58. end
  59. end
  60.  
  61. while true do
  62. findKey(game:GetService("Workspace"))
  63. wait(5)
  64. end
  65. end
  66. })
  67.  
  68. --[[
  69. Name = <string> - The name of the button.
  70. Callback = <function> - The function of the button.
  71. ]]
  72.  
  73. Tab:AddButton({
  74. Name = "Esp Fake Door Green Red!",
  75. Callback = function()
  76. local function findKey(model)
  77. for _, child in pairs(model:GetChildren()) do
  78. if child.Name == "DoorFake" then
  79. local a = Instance.new("BillboardGui",child)
  80. a.Name = "A"
  81. a.Size = UDim2.new(1,0,1,0)
  82. a.AlwaysOnTop = true
  83. local b = Instance.new("TextLabel",a)
  84. b.Text = "DoorFake"
  85. b.BackgroundTransparency = 1
  86. b.BorderSizePixel = 0
  87. b.Size = UDim2.new(1,0,1,0)
  88. b.TextColor3 = Color3.new(255,255,255)
  89. b.TextSize = 10
  90. end
  91. findKey(child)
  92. end
  93. end
  94.  
  95. while true do
  96. findKey(game:GetService("Workspace"))
  97. wait(5)
  98. end
  99. end
  100. })
  101.  
  102. --[[
  103. Name = <string> - The name of the button.
  104. Callback = <function> - The function of the button.
  105. ]]
  106.  
  107. Tab:AddButton({
  108. Name = "Esp Key!",
  109. Callback = function()
  110. local function findKey(model)
  111. for _, child in pairs(model:GetChildren()) do
  112. if child.Name == "Key" then
  113. local a = Instance.new("BillboardGui",child)
  114. a.Name = "A"
  115. a.Size = UDim2.new(1,0,1,0)
  116. a.AlwaysOnTop = true
  117. local b = Instance.new("TextLabel",a)
  118. b.Text = "Key"
  119. b.BackgroundTransparency = 1
  120. b.BorderSizePixel = 0
  121. b.Size = UDim2.new(1,0,1,0)
  122. b.TextColor3 = Color3.new(0,0,255)
  123. b.TextSize = 10
  124. end
  125. findKey(child)
  126. end
  127. end
  128.  
  129. while true do
  130. findKey(game:GetService("Workspace"))
  131. wait(5)
  132. end
  133. end
  134. })
  135.  
  136. --[[
  137. Name = <string> - The name of the button.
  138. Callback = <function> - The function of the button.
  139. ]]
  140.  
  141. Tab:AddButton({
  142. Name = "Auto Farm need key H to Door 50 Need bypass and reset!",
  143. Callback = function()
  144. loadstring(game:HttpGet("https://pastebin.com/raw/NFM18dnd"))()
  145. end
  146. })
  147.  
  148. --[[
  149. Name = <string> - The name of the button.
  150. Callback = <function> - The function of the button.
  151. ]]
  152.  
  153. Tab:AddButton({
  154. Name = "Bypass!",
  155. Callback = function()
  156. loadstring(game:HttpGet("https://raw.githubusercontent.com/ChronoAccelerator/Public-Scripts/main/DoorsBypasses/DoorsAntiAntiBetterCheatBypass.lua"))()
  157. end
  158. })
  159.  
  160. --[[
  161. Name = <string> - The name of the button.
  162. Callback = <function> - The function of the button.
  163. ]]
  164.  
  165. Tab:AddButton({
  166. Name = "Keyboard!",
  167. Callback = function()
  168. loadstring(game:HttpGet("https://raw.githubusercontent.com/advxzivhsjjdhxhsidifvsh/mobkeyboard/main/main.txt", true))()
  169. end
  170. })
  171.  
  172. --[[
  173. Name = <string> - The name of the button.
  174. Callback = <function> - The function of the button.
  175. ]]
  176.  
  177. Tab:AddButton({
  178. Name = "Reset",
  179. Callback = function()
  180. game.Players.LocalPlayer.Character.Humanoid.Health = 0
  181. end
  182. })
  183.  
  184. --[[
  185. Name = <string> - The name of the button.
  186. Callback = <function> - The function of the button.
  187. ]]
  188.  
  189. Tab:AddButton({
  190. Name = "FullBright!",
  191. Callback = function()
  192. local Light = game:GetService("Lighting")
  193.  
  194. function dofullbright()
  195. Light.Ambient = Color3.new(1, 1, 1)
  196. Light.ColorShift_Bottom = Color3.new(1, 1, 1)
  197. Light.ColorShift_Top = Color3.new(1, 1, 1)
  198. end
  199.  
  200. dofullbright()
  201.  
  202. Light.LightingChanged:Connect(dofullbright)
  203. end
  204. })
  205.  
  206. --[[
  207. Name = <string> - The name of the button.
  208. Callback = <function> - The function of the button.
  209. ]]
  210.  
  211. Tab:AddButton({
  212. Name = "Fov 120!",
  213. Callback = function()
  214. game:GetService("RunService").RenderStepped:Connect(function()
  215. workspace.Camera.FieldOfView = 120
  216. end)
  217. end
  218. })
  219.  
  220. --[[
  221. Name = <string> - The name of the button.
  222. Callback = <function> - The function of the button.
  223. ]]
  224.  
  225. Tab:AddToggle({
  226. Name = "Head light learn from YouTube!",
  227. Default = false,
  228. Callback = function(Value)
  229. local pcl = Instance.new("SpotLight")
  230. pcl.Brightness = 1
  231. pcl.Face = Enum.NormalId.Front
  232. pcl.Range = 90
  233. pcl.Parent = game.Players.LocalPlayer.Character.Head
  234. pcl.Enabled = false
  235. end
  236. })
  237.  
  238. --[[
  239. Name = <string> - The name of the toggle.
  240. Default = <bool> - The default value of the toggle.
  241. Callback = <function> - The function of the toggle.
  242. ]]
  243.  
  244. Tab:AddButton({
  245. Name = "E fast!",
  246. Callback = function()
  247. game:GetService("ProximityPromptService").PromptButtonHoldBegan:Connect(function(p)
  248. fireproximityprompt(p)
  249. end)
  250. end
  251. })
  252.  
  253. --[[
  254. Name = <string> - The name of the button.
  255. Callback = <function> - The function of the button.
  256. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement