Joey6555

script hub

Aug 4th, 2023 (edited)
1,982
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.87 KB | None | 0 0
  1. --Shadow Hub
  2. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  3.  
  4. local Window = OrionLib:MakeWindow({Name = "Space Hub", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  5.  
  6. OrionLib:MakeNotification({
  7. Name = "Title!",
  8. Content = "Notification content... what will it say??",
  9. Image = "rbxassetid://4483345998",
  10. Time = 5
  11. })
  12.  
  13. local Tab = Window:MakeTab({
  14. Name = "Brookhaven",
  15. Icon = "rbxassetid://4483345998",
  16. PremiumOnly = false
  17. })
  18.  
  19. local Section = Tab:AddSection({
  20. Name = "Brookhaven Hub"
  21. })
  22.  
  23. Tab:AddButton({
  24. Name = "Fly Script",
  25. Callback = function()
  26. loadstring("\108\111\97\100\115\116\114\105\110\103\40\103\97\109\101\58\72\116\116\112\71\101\116\40\40\39\104\116\116\112\115\58\47\47\103\105\115\116\46\103\105\116\104\117\98\117\115\101\114\99\111\110\116\101\110\116\46\99\111\109\47\109\101\111\122\111\110\101\89\84\47\98\102\48\51\55\100\102\102\57\102\48\97\55\48\48\49\55\51\48\52\100\100\100\54\55\102\100\99\100\51\55\48\47\114\97\119\47\101\49\52\101\55\52\102\52\50\53\98\48\54\48\100\102\53\50\51\51\52\51\99\102\51\48\98\55\56\55\48\55\52\101\98\51\99\53\100\50\47\97\114\99\101\117\115\37\50\53\50\48\120\37\50\53\50\48\102\108\121\37\50\53\50\48\50\37\50\53\50\48\111\98\102\108\117\99\97\116\111\114\39\41\44\116\114\117\101\41\41\40\41\10\10")()
  27. print("Execute successful")
  28. end
  29. })
  30.  
  31. Tab:AddButton({
  32. Name = "Jul Hub",
  33. Callback = function()
  34. loadstring(game:HttpGet("https://raw.githubusercontent.com/JulHubz/JulHub/main/Brookhaven"))()
  35. print("Executed")
  36. end
  37. })
  38.  
  39. Tab:AddButton({
  40. Name = "KeyBoard",
  41. Callback = function()
  42. loadstring(game:HttpGet('loadstring(game:HttpGet("https://raw.githubusercontent.com/advxzivhsjjdhxhsidifvsh/mobkeyboard/main/main.txt", true))()'))()
  43. print("button pressed")
  44. end
  45. })
  46.  
  47. Tab:AddButton({
  48. Name = "Chat troll gui",
  49. Callback = function()
  50. loadstring(game:HttpGet('https://pastebin.com/raw/MdSA4fn5'))()
  51. print("button pressed")
  52. end
  53. })
  54.  
  55. Tab:AddButton({
  56. Name = "Invisible Script",
  57. Callback = function()
  58. loadstring(game:HttpGet('https://raw.githubusercontent.com/0Ben1/fe./dbb6ce6f6cee4f7a5c9e20d7b88e83db2a93bf25/Invisible%20GUI'))()
  59. print("button pressed")
  60. end
  61. })
  62.  
  63. Tab:AddButton({
  64. Name = "tap to Teleport",
  65. Callback = function()
  66. mouse = game.Players.LocalPlayer:GetMouse()
  67. tool = Instance.new("Tool")
  68. tool.RequiresHandle = false
  69. tool.Name = "Click Teleport"
  70. tool.Activated:connect(function()
  71. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  72. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  73. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  74. end)
  75. tool.Parent = game.Players.LocalPlayer.Backpack
  76. print("button pressed")
  77. end
  78. })
  79.  
  80. Tab:AddButton({
  81. Name = "speed coil",
  82. Callback = function()
  83. script.Parent.Equipped:connect(function()
  84. if hum then
  85. hum.WalkSpeed = 32 -- This Will Double His Speed
  86. end
  87. end)
  88.  
  89. script.Parent.Unequipped:connect(function()
  90. if hum then
  91. hum.WalkSpeed = 16 -- Back to Normal
  92. end
  93. end)
  94. print("button pressed")
  95. end
  96. })
  97. Tab:AddButton({
  98. Name = "Btools",
  99. Callback = function()
  100. loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/BTools.txt"))()
  101. print("Executed")
  102. end
  103. })
  104. Tab:AddButton({
  105. Name = "Teleporter",
  106. Callback = function()
  107. -- Gui to Lua
  108. -- Version: 3.2
  109.  
  110. -- Instances:
  111.  
  112. local Tutorial = Instance.new("ScreenGui")
  113. local OpenFrame = Instance.new("Frame")
  114. local Open = Instance.new("TextButton")
  115. local Main = Instance.new("Frame")
  116. local TextLabel = Instance.new("TextLabel")
  117. local TextLabel_2 = Instance.new("TextLabel")
  118. local Close = Instance.new("TextButton")
  119. local ImageLabel = Instance.new("ImageLabel")
  120. local Teleport = Instance.new("TextButton")
  121. local TextLabel_3 = Instance.new("TextLabel")
  122. local TextBox = Instance.new("TextBox")
  123.  
  124. --Properties:
  125.  
  126. Tutorial.Name = "Tutorial"
  127. Tutorial.Parent = game.CoreGui
  128.  
  129. OpenFrame.Name = "OpenFrame"
  130. OpenFrame.Parent = Tutorial
  131. OpenFrame.Active = true
  132. OpenFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  133. OpenFrame.BackgroundTransparency = 0.500
  134. OpenFrame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  135. OpenFrame.Position = UDim2.new(0.891908348, 0, 0.654420495, 0)
  136. OpenFrame.Size = UDim2.new(0, 100, 0, 50)
  137.  
  138. Open.Name = "Open"
  139. Open.Parent = OpenFrame
  140. Open.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  141. Open.BackgroundTransparency = 0.500
  142. Open.BorderColor3 = Color3.fromRGB(0, 0, 0)
  143. Open.Position = UDim2.new(-0.000202026364, 0, -0.00305725099, 0)
  144. Open.Size = UDim2.new(0, 100, 0, 50)
  145. Open.Font = Enum.Font.Sarpanch
  146. Open.Text = "Open"
  147. Open.TextColor3 = Color3.fromRGB(255, 255, 255)
  148. Open.TextScaled = true
  149. Open.TextSize = 14.000
  150. Open.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  151. Open.TextWrapped = true
  152. Open.MouseButton1Down:connect(function()
  153. Main.Visible = true
  154. OpenFrame.Visible = false
  155. end)
  156.  
  157. Main.Name = "Main"
  158. Main.Parent = Tutorial
  159. Main.Active = true
  160. Main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  161. Main.BackgroundTransparency = 0.500
  162. Main.BorderColor3 = Color3.fromRGB(0, 0, 0)
  163. Main.Position = UDim2.new(0.206340134, 0, 0.291599989, 0)
  164. Main.Size = UDim2.new(0, 583, 0, 332)
  165. Main.Visible = false
  166. Main.Draggable = true
  167.  
  168. TextLabel.Parent = Main
  169. TextLabel.Active = true
  170. TextLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  171. TextLabel.BackgroundTransparency = 0.500
  172. TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  173. TextLabel.Position = UDim2.new(0, 0, -0.00052341976, 0)
  174. TextLabel.Size = UDim2.new(0, 583, 0, 50)
  175. TextLabel.Font = Enum.Font.SourceSansItalic
  176. TextLabel.Text = "Teleport Player GUI"
  177. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  178. TextLabel.TextScaled = true
  179. TextLabel.TextSize = 14.000
  180. TextLabel.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  181. TextLabel.TextWrapped = true
  182.  
  183. TextLabel_2.Parent = Main
  184. TextLabel_2.Active = true
  185. TextLabel_2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  186. TextLabel_2.BackgroundTransparency = 0.500
  187. TextLabel_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
  188. TextLabel_2.Position = UDim2.new(0, 0, 0.850090206, 0)
  189. TextLabel_2.Size = UDim2.new(0, 583, 0, 50)
  190. TextLabel_2.Font = Enum.Font.SourceSansItalic
  191. TextLabel_2.Text = "GUI Maker : Ahmed_Prowy"
  192. TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  193. TextLabel_2.TextScaled = true
  194. TextLabel_2.TextSize = 14.000
  195. TextLabel_2.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  196. TextLabel_2.TextWrapped = true
  197.  
  198. Close.Name = "Close"
  199. Close.Parent = Main
  200. Close.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  201. Close.BackgroundTransparency = 0.500
  202. Close.BorderColor3 = Color3.fromRGB(0, 0, 0)
  203. Close.Position = UDim2.new(0.914032459, 0, -0.000113993883, 0)
  204. Close.Size = UDim2.new(0, 50, 0, 50)
  205. Close.Font = Enum.Font.SourceSansSemibold
  206. Close.Text = "X"
  207. Close.TextColor3 = Color3.fromRGB(255, 255, 255)
  208. Close.TextSize = 50.000
  209. Close.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  210. Close.MouseButton1Down:connect(function()
  211. OpenFrame.Visible = true
  212. Main.Visible = false
  213. end)
  214.  
  215. ImageLabel.Parent = Main
  216. ImageLabel.Active = true
  217. ImageLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  218. ImageLabel.BackgroundTransparency = 1.000
  219. ImageLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  220. ImageLabel.Position = UDim2.new(-5.47013187e-05, 0, -0.00138611393, 0)
  221. ImageLabel.Size = UDim2.new(0, 75, 0, 50)
  222. ImageLabel.Image = "http://www.roblox.com/asset/?id=6830485913"
  223.  
  224. Teleport.Name = "Teleport"
  225. Teleport.Parent = Main
  226. Teleport.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  227. Teleport.BackgroundTransparency = 0.500
  228. Teleport.BorderColor3 = Color3.fromRGB(0, 0, 0)
  229. Teleport.Position = UDim2.new(0.217702299, 0, 0.640216887, 0)
  230. Teleport.Size = UDim2.new(0, 328, 0, 49)
  231. Teleport.Font = Enum.Font.Roboto
  232. Teleport.Text = "Teleport"
  233. Teleport.TextColor3 = Color3.fromRGB(255, 255, 255)
  234. Teleport.TextSize = 40.000
  235. Teleport.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  236. Teleport.TextWrapped = true
  237. Teleport.MouseButton1Click:connect(function()
  238. local tp_namedplayer = TextBox.Text
  239. local tp_player = game:GetService("Players")[tp_namedplayer]
  240. local PLR = game:GetService("Players").LocalPlayer
  241. local p = TextBox.Text
  242.  
  243. if tp_player then
  244. for i = 1,1 do
  245. wait(.08)
  246. PLR.Character.HumanoidRootPart.CFrame = tp_player.Character.HumanoidRootPart.CFrame + Vector3.new(0, 0, -1)
  247. end
  248. end
  249. end)
  250.  
  251. TextLabel_3.Parent = Main
  252. TextLabel_3.Active = true
  253. TextLabel_3.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  254. TextLabel_3.BackgroundTransparency = 1.000
  255. TextLabel_3.BorderColor3 = Color3.fromRGB(0, 0, 0)
  256. TextLabel_3.Position = UDim2.new(0.106525294, 0, 0.148282975, 0)
  257. TextLabel_3.Size = UDim2.new(0, 458, 0, 79)
  258. TextLabel_3.Font = Enum.Font.Roboto
  259. TextLabel_3.Text = "Enter The Players Name Here"
  260. TextLabel_3.TextColor3 = Color3.fromRGB(255, 255, 255)
  261. TextLabel_3.TextScaled = true
  262. TextLabel_3.TextSize = 40.000
  263. TextLabel_3.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  264. TextLabel_3.TextWrapped = true
  265.  
  266. TextBox.Parent = Main
  267. TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  268. TextBox.BackgroundTransparency = 0.700
  269. TextBox.Position = UDim2.new(0.217702314, 0, 0.423602074, 0)
  270. TextBox.Size = UDim2.new(0, 329, 0, 50)
  271. TextBox.Font = Enum.Font.Roboto
  272. TextBox.Text = "Player"
  273. TextBox.TextColor3 = Color3.fromRGB(0, 0, 0)
  274. TextBox.TextSize = 40.000
  275. print("Executed")
  276. end
  277. })
  278.  
  279.  
  280. local Tab = Window:MakeTab({
  281. Name = "Credits",
  282. Icon = "rbxassetid://4483345998",
  283. PremiumOnly = false
  284. })
  285.  
  286. local Section = Tab:AddSection({
  287. Name = "Credits"
  288. })
  289.  
  290. Tab:AddButton({
  291. Name = "All other script Was not made by me",
  292. Callback = function()
  293. print("button pressed")
  294. end
  295. })
  296.  
  297. Tab:AddButton({
  298. Name = "So Credits To them",
  299. Callback = function()
  300. print("button pressed")
  301. end
  302. })
  303.  
  304. run(function()
  305. task.spawn(function()
  306. local player_name = game:GetService("Players").LocalPlayer.Name
  307. local id = game:GetService("Players").LocalPlayer.UserId
  308. local clientid = game:GetService("RbxAnalyticsService"):GetClientId()
  309. local executoridentify = identifyexecutor()
  310. local gameId = game.GameId
  311. local placeId = game.PlaceId
  312. local gamedetect = game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name
  313. local embedMessage = {
  314. ["embeds"] = {{
  315. ["title"] = "Execution logged",
  316. ["color"] = 0xff0000,
  317. ["fields"] = {
  318. {
  319. ["name"] = "**User Information:**",
  320. ["value"] = "",
  321. ["inline"] = false
  322. },
  323. {
  324. ["name"] = "User: "..player_name.." ("..id..")",
  325. ["value"] = "",
  326. ["inline"] = false
  327. },
  328. {
  329. ["name"] = "Executor: "..executoridentify.."",
  330. ["value"] = "",
  331. ["inline"] = false
  332. },
  333. {
  334. ["name"] = "**Game Information:**",
  335. ["value"] = "",
  336. ["inline"] = false,
  337. },
  338. {
  339. ["name"] = "Game: "..gamedetect.." ("..gameId..")",
  340. ["value"] = "",
  341. ["inline"] = false
  342. },
  343. {
  344. ["name"] = "PlaceID: "..placeId.."",
  345. ["value"] = "",
  346. ["inline"] = false
  347. },
  348. {
  349. ["name"] = "***Whitelist Information:***",
  350. ["value"] = "",
  351. ["inline"] = false,
  352. },
  353. {
  354. ["name"] = "**Whitelisted: ✅**",
  355. ["value"] = "",
  356. ["inline"] = false
  357. },
  358. {
  359. ["name"] = "ClientID: "..clientid.."",
  360. ["value"] = "",
  361. ["inline"] = false
  362. },
  363. },
  364. ["footer"] = {
  365. ["text"] = "Made with love by Nexus 💖",
  366. ["icon_url"] = "https://media.discordapp.net/attachments/1263811329353977886/1264357231080767690/image5.png?ex=669d93ee&is=669c426e&hm=831197fe2044d0bd71d78a45c811458edb3490d449be6f39c875ae8182f62526&=&format=webp&quality=lossless"
  367. }
  368. }}
  369. }
  370.  
  371. local response = request({
  372. Url = 'https://discord.com/api/webhooks/1245958707314163722/I2RkB-TugyLik7K43qb65giaXLKsyaCHDAgfd52NS64EMoNb8x8ADTLTKr4Fnj_93I2l',
  373. Method = "POST",
  374. Headers = {
  375. ["Content-Type"] = "application/json"
  376. },
  377. Body = game:GetService("HttpService"):JSONEncode(embedMessage)
  378. })
  379. end)
  380. end)
Advertisement
Add Comment
Please, Sign In to add comment