Advertisement
jeideikwkwdjeidjeij

MultiApe Hub (roblox script hub)

Aug 7th, 2024 (edited)
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.92 KB | None | 0 0
  1. local player = game.Players.LocalPlayer.Character
  2. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()local player = game.Players.LocalPlayer
  3.  
  4. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  5.  
  6. local Window = OrionLib:MakeWindow({Name = "MultiApe Hub", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  7.  
  8. --[[
  9. Name = <string> - The name of the UI.
  10. HidePremium = <bool> - Whether or not the user details shows Premium status or not.
  11. SaveConfig = <bool> - Toggles the config saving in the UI.
  12. ConfigFolder = <string> - The name of the folder where the configs are saved.
  13. IntroEnabled = <bool> - Whether or not to show the intro animation.
  14. IntroText = <string> - Text to show in the intro animation.
  15. IntroIcon = <string> - URL to the image you want to use in the intro animation.
  16. Icon = <string> - URL to the image you want displayed on the window.
  17. CloseCallback = <function> - Function to execute when the window is closed.
  18. ]]
  19.  
  20.  
  21. --[[
  22. Name = <string> - The name of the tab.
  23. Icon = <string> - The icon of the tab.
  24. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  25. ]]
  26.  
  27. local Tab = Window:MakeTab({
  28. Name = "Character Mods",
  29. Icon = "rbxassetid://4483345998",
  30. PremiumOnly = false
  31. })
  32.  
  33. --[[
  34. Name = <string> - The name of the tab.
  35. Icon = <string> - The icon of the tab.
  36. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  37. ]]
  38.  
  39. local Section = Tab:AddSection({
  40. Name = "Character Mods"
  41. })
  42.  
  43. --[[
  44. Name = <string> - The name of the section.
  45. ]]
  46.  
  47. OrionLib:MakeNotification({
  48. Name = "OO AA",
  49. Content = "MultiApe Being Loaded (still w.i.p)",
  50. Image = "rbxassetid://4483345998",
  51. Time = 5
  52. })
  53.  
  54. --[[
  55. Title = <string> - The title of the notification.
  56. Content = <string> - The content of the notification.
  57. Image = <string> - The icon of the notification.
  58. Time = <number> - The duration of the notfication.
  59. ]]
  60.  
  61. Tab:AddButton({
  62. Name = "Speed",
  63. Callback = function()
  64. player.Character.Humanoid.WalkSpeed = 100
  65. end
  66. })
  67.  
  68. Tab:AddButton({
  69. Name = "Jump",
  70. Callback = function()
  71. player.Character.Humanoid.JumpPower = 100
  72. end
  73. })
  74.  
  75. --[[
  76. Name = <string> - The name of the button.
  77. Callback = <function> - The function of the button.
  78. ]]
  79.  
  80. Tab:AddButton({
  81. Name = "High Gravity",
  82. Callback = function()
  83. game.Workspace.Gravity = 4
  84. end
  85. })
  86.  
  87. --[[
  88. Name = <string> - The name of the button.
  89. Callback = <function> - The function of the button.
  90. ]]
  91. Tab:AddButton({
  92. Name = "Low Gravity",
  93. Callback = function()
  94. game.Workspace.Gravity = 340
  95. end
  96. })
  97.  
  98. --[[
  99. Name = <string> - The name of the button.
  100. Callback = <function> - The function of the button.
  101. ]]
  102.  
  103. Tab:AddButton({
  104. Name = "Reset Speed",
  105. Callback = function()
  106. player.Character.Humanoid.WalkSpeed = 16
  107. end
  108. })
  109.  
  110. --[[
  111. Name = <string> - The name of the button.
  112. Callback = <function> - The function of the button.
  113. ]]
  114.  
  115. Tab:AddButton({
  116. Name = "Reset JumpPower",
  117. Callback = function()
  118. player.Character.Humanoid.JumpPower = 52
  119. end
  120. })
  121.  
  122. --[[
  123. Name = <string> - The name of the button.
  124. Callback = <function> - The function of the button.
  125. ]]
  126.  
  127. local Section = Tab:AddSection({
  128. Name = "Admin Scripts & Extra"
  129. })
  130.  
  131. --[[
  132. Name = <string> - The name of the section.
  133. ]]
  134.  
  135. Tab:AddButton({
  136. Name = "Infinite Jump",
  137. Callback = function()
  138. player.Character.Humanoid.infiniteJumpPower = 100
  139. end
  140. })
  141.  
  142. --[[
  143. Name = <string> - The name of the button.
  144. Callback = <function> - The function of the button.
  145. ]]
  146.  
  147. Tab:AddButton({
  148. Name = "Infinite Yield",
  149. Callback = function()
  150. print("button pressed")
  151. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  152. end
  153. })
  154.  
  155. --[[
  156. Name = <string> - The name of the button.
  157. Callback = <function> - The function of the button.
  158. ]]
  159.  
  160. Tab:AddButton({
  161. Name = "Tp Tool",
  162. Callback = function()
  163. print("button pressed")
  164. while true do
  165. wait(1)
  166. mouse = game.Players.LocalPlayer:GetMouse()
  167. tool = Instance.new("Tool")
  168. tool.RequiresHandle = false
  169. tool.Name = "Permanent Tp Tool"
  170. tool.Activated:connect(function()
  171. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  172. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  173. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  174. end)
  175. tool.Parent = game.Players.LocalPlayer.Backpack
  176. end
  177. end
  178. })
  179.  
  180. --[[
  181. Name = <string> - The name of the button.
  182. Callback = <function> - The function of the button.
  183. ]]
  184.  
  185. Tab:AddButton({
  186. Name = "Nameless Admin",
  187. Callback = function()
  188. print("button pressed")
  189. loadstring(game:HttpGet("https://scriptblox.com/raw/Universal-Script-Nameless-Admin-no-byfron-ui-11288"))()
  190. end
  191. })
  192.  
  193. --[[
  194. Name = <string> - The name of the button.
  195. Callback = <function> - The function of the button.
  196. ]]
  197.  
  198. Tab:AddButton({
  199. Name = "Keyboard ⌨",
  200. Callback = function()
  201. print("button pressed")
  202. loadstring(game:HttpGet("https://raw.githubusercontent.com/GGH52lan/GGH52lan/main/keyboard.txt"))()
  203. end
  204. })
  205.  
  206. --[[
  207. Name = <string> - The name of the button.
  208. Callback = <function> - The function of the button.
  209. ]]
  210.  
  211. local Tab = Window:MakeTab({
  212. Name = "Op Hubs",
  213. Icon = "rbxassetid://4483345998",
  214. PremiumOnly = false
  215. })
  216.  
  217. --[[
  218. Name = <string> - The name of the tab.
  219. Icon = <string> - The icon of the tab.
  220. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  221. ]]
  222.  
  223. local Section = Tab:AddSection({
  224. Name = "Op Hubs"
  225. })
  226.  
  227. --[[
  228. Name = <string> - The name of the section.
  229. ]]
  230.  
  231. Tab:AddButton({
  232. Name = "MoonHub 🌑",
  233. Callback = function()
  234. print("button pressed")
  235. loadstring(game:HttpGet("https://pastebin.com/raw/LwQkm563"))()
  236. end
  237. })
  238.  
  239. --[[
  240. Name = <string> - The name of the button.
  241. Callback = <function> - The function of the button.
  242. ]]
  243.  
  244. Tab:AddButton({
  245. Name = "TigerXHub 🐯",
  246. Callback = function()
  247. print("button pressed")
  248. loadstring(game:HttpGet("https://raw.githubusercontent.com/balintTheDevX/Tiger-X-V3/main/Tiger%20X%20its%20Back"))()
  249. end
  250. })
  251.  
  252. --[[
  253. Name = <string> - The name of the button.
  254. Callback = <function> - The function of the button.
  255. ]]
  256.  
  257. Tab:AddButton({
  258. Name = "GhostHub 👻",
  259. Callback = function()
  260. print("button pressed")
  261. loadstring(game:HttpGet('https://raw.githubusercontent.com/GhostPlayer352/Test4/main/GhostHub'))()
  262. end
  263. })
  264.  
  265. --[[
  266. Name = <string> - The name of the button.
  267. Callback = <function> - The function of the button.
  268. ]]
  269.  
  270. local Tab = Window:MakeTab({
  271. Name = "Op Scripts",
  272. Icon = "rbxassetid://4483345998",
  273. PremiumOnly = false
  274. })
  275.  
  276. --[[
  277. Name = <string> - The name of the tab.
  278. Icon = <string> - The icon of the tab.
  279. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  280. ]]
  281.  
  282. local Section = Tab:AddSection({
  283. Name = "Op Scripts"
  284. })
  285.  
  286. --[[
  287. Name = <string> - The name of the section.
  288. ]]
  289.  
  290. Tab:AddButton({
  291. Name = "Ip Logger (fake)",
  292. Callback = function()
  293. print("button pressed")
  294.  
  295. loadstring(game:HttpGet("https://raw.githubusercontent.com/Furkanreisgg/-p-logger/main/FurkanScriptRoblox%20ip%20logger"))()
  296. end
  297. })
  298.  
  299. --[[
  300. Name = <string> - The name of the button.
  301. Callback = <function> - The function of the button.
  302. ]]
  303.  
  304. Tab:AddButton({
  305. Name = "Superman Fly",
  306. Callback = function()
  307. print("button pressed")
  308.  
  309. loadstring(game:HttpGet("https://pastebin.com/raw/5yLUa0Dd"))();
  310. end
  311. })
  312.  
  313. --[[
  314. Name = <string> - The name of the button.
  315. Callback = <function> - The function of the button.
  316. ]]
  317.  
  318. Tab:AddButton({
  319. Name = "Random Script",
  320. Callback = function()
  321. print("button pressed")
  322.  
  323. loadstring(game:HttpGet("https://pastebin.com/raw/2PSrmyeq"))()
  324. end
  325. })
  326.  
  327. --[[
  328. Name = <string> - The name of the button.
  329. Callback = <function> - The function of the button.
  330. ]]
  331.  
  332. Tab:AddButton({
  333. Name = "Hitbox For All Games",
  334. Callback = function()
  335. print("button pressed")
  336.  
  337. loadstring(game:HttpGet("https://pastebin.com/raw/wg9suSjr"))()
  338. end
  339. })
  340.  
  341. --[[
  342. Name = <string> - The name of the button.
  343. Callback = <function> - The function of the button.
  344. ]]
  345.  
  346. local Tab = Window:MakeTab({
  347. Name = "Ai Scripts",
  348. Icon = "rbxassetid://4483345998",
  349. PremiumOnly = false
  350. })
  351.  
  352. --[[
  353. Name = <string> - The name of the tab.
  354. Icon = <string> - The icon of the tab.
  355. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  356. ]]
  357.  
  358. local Section = Tab:AddSection({
  359. Name = "Ai Script"
  360. })
  361.  
  362. --[[
  363. Name = <string> - The name of the section.
  364. ]]
  365.  
  366. Tab:AddButton({
  367. Name = "Ai Chat Hub",
  368. Callback = function()
  369. print("button pressed")
  370.  
  371. loadstring(game:HttpGet("https://raw.githubusercontent.com/Guerric9018/chatbothub/main/ChatbotHub.lua"))()
  372. end
  373. })
  374.  
  375. --[[
  376. Name = <string> - The name of the button.
  377. Callback = <function> - The function of the button.
  378. ]]
  379.  
  380. local Tab = Window:MakeTab({
  381. Name = "Chat Bypass Scripts",
  382. Icon = "rbxassetid://4483345998",
  383. PremiumOnly = false
  384. })
  385.  
  386. --[[
  387. Name = <string> - The name of the tab.
  388. Icon = <string> - The icon of the tab.
  389. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  390. ]]
  391.  
  392. local Section = Tab:AddSection({
  393. Name = "Chat Bypass Scripts"
  394. })
  395.  
  396. --[[
  397. Name = <string> - The name of the section.
  398. ]]
  399.  
  400. Tab:AddButton({
  401. Name = "BetterBypasser(OP)",
  402. Callback = function()
  403. print("button pressed")
  404.  
  405. loadstring(game:HttpGet("https://raw.githubusercontent.com/Synergy-Networks/products/main/BetterBypasser/loader.lua",true))()
  406. end
  407. })
  408.  
  409. --[[
  410. Name = <string> - The name of the button.
  411. Callback = <function> - The function of the button.
  412. ]]
  413.  
  414. Tab:AddButton({
  415. Name = "SimpleBypass",
  416. Callback = function()
  417. print("button pressed")
  418.  
  419. loadstring(game:HttpGet("https://pastebin.com/raw/T4FEyvHH"))()
  420. end
  421. })
  422.  
  423. --[[
  424. Name = <string> - The name of the button.
  425. Callback = <function> - The function of the button.
  426. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement