Advertisement
BrokenScripts

MultiMenu by naughtyxz#1845

Aug 10th, 2022 (edited)
888
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.58 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 = "MultiMenu by kashtanno#1845", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  4.  
  5. local PlayerTab = Window:MakeTab({
  6.     Name = "Player",
  7.     Icon = "rbxassetid://4483345998",
  8.     PremiumOnly = false
  9. })
  10.  
  11. local PlayerSection = PlayerTab:AddSection({
  12.     Name = "Player Section"
  13. })
  14.  
  15. OrionLib:MakeNotification({
  16.     Name = "Welcome to MultiMenu!",
  17.     Content = "Thank you for using this script, made by kashtanno#1845",
  18.     Image = "rbxassetid://4483345998",
  19.     Time = 3
  20. })
  21.  
  22. PlayerTab:AddSlider({
  23.     Name = "WalkSpeed",
  24.     Min = 16,
  25.     Max = 500,
  26.     Default = 5,
  27.     Color = Color3.fromRGB(255,255,255),
  28.     Increment = 1,
  29.     ValueName = "Walkspeed",
  30.     Callback = function(Value)
  31.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
  32.     end    
  33. })
  34.  
  35. PlayerTab:AddSlider({
  36.     Name = "JumpPower",
  37.     Min = 50,
  38.     Max = 500,
  39.     Default = 5,
  40.     Color = Color3.fromRGB(255,255,255),
  41.     Increment = 1,
  42.     ValueName = "JumpPower",
  43.     Callback = function(Value)
  44.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value
  45.     end    
  46. })
  47.  
  48. PlayerTab:AddButton({
  49.     Name = "Infinity Yield",
  50.     Callback = function()
  51.         loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'),true))()
  52.     end    
  53. })
  54.  
  55.  
  56. PlayerTab:AddButton({
  57.     Name = "Toggle Night",
  58.     Callback = function()
  59.         loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/Night%20Time%20Toggle.txt"))()
  60.     end    
  61. })
  62.  
  63. PlayerTab:AddButton({
  64.     Name = "FE Animations GUI",
  65.     Callback = function()
  66.         loadstring(game:HttpGet("https://pastebin.com/raw/0MLPL32f", true))()
  67.     end    
  68. })
  69.  
  70. PlayerTab:AddButton({
  71.     Name = "Human Flashlight",
  72.     Callback = function()
  73.         loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/Human%20Flashlight.txt"))()
  74.     end    
  75. })
  76.  
  77. PlayerTab:AddButton({
  78.     Name = "Remove Legs",
  79.     Callback = function()
  80.         loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/Remove%20Legs.txt"))()
  81.     end    
  82. })
  83.  
  84. PlayerTab:AddButton({
  85.     Name = "Btools",
  86.     Callback = function()
  87.         loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/BTools.txt"))()
  88.     end    
  89. })
  90.  
  91. PlayerTab:AddButton({
  92.     Name = "InfJump",
  93.     Callback = function()
  94.         loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/Infinite%20Jump.txt"))()
  95.     end    
  96. })
  97.  
  98. PlayerTab:AddButton({
  99.     Name = "Aimbot",
  100.     Callback = function()
  101.         loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/WRD%20Aimbot.txt"))()
  102.     end    
  103. })
  104.  
  105.  
  106. PlayerTab:AddButton({
  107.     Name = "CTRL + CLICK TP",
  108.     Callback = function()
  109.         loadstring(game:HttpGet(('https://cdn.wearedevs.net/scripts/Click%20Teleport.txt'),true))()
  110.     end    
  111. })
  112.  
  113. PlayerTab:AddButton({
  114.     Name = "ESP",
  115.     Callback = function()
  116.         loadstring(game:HttpGet(('https://cdn.wearedevs.net/scripts/WRD%20ESP.txt'),true))()
  117.     end    
  118. })
  119.  
  120. PlayerTab:AddButton({
  121.     Name = "Suicide",
  122.     Callback = function()
  123.         game:GetService("Players").LocalPlayer.Character.Humanoid.Health = 0;
  124.     end    
  125. })
  126.  
  127. PlayerTab:AddButton({
  128.     Name = "DexExplorer",
  129.     Callback = function()
  130.         loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/Dex%20Explorer.txt"))()
  131.     end    
  132. })
  133.  
  134. PlayerTab:AddButton({
  135.     Name = "Fly Bypassed",
  136.     Callback = function()
  137.         loadstring(game:HttpGet("https://raw.githubusercontent.com/Nicuse/RobloxScripts/main/BypassedFly.lua"))()
  138.     end    
  139. })
  140.  
  141. local CreditsTab = Window:MakeTab({
  142.     Name = "Credits",
  143.     Icon = "rbxassetid://4483345998",
  144.     PremiumOnly = false
  145. })
  146. CreditsTab:AddParagraph("Information","MultiMenu made by naughtyx#1845, you can suggest you ideas for this or another script, just contact with me in discord")
  147.  
  148. CreditsTab:AddLabel("Thank you for using MultiMenu <3")
  149.  
  150. CreditsTab:AddTextbox({
  151.     Name = "Share your opinion about this script :3",
  152.     Default = "",
  153.     TextDisappear = true,
  154.     Callback = function(Value)
  155.         print("Your opinion:", Value)
  156.     end  
  157. })
  158.  
  159. local OtherTab = Window:MakeTab({
  160.     Name = "Other",
  161.     Icon = "rbxassetid://4483345998",
  162.     PremiumOnly = false
  163. })
  164. OtherTab:AddTextbox({
  165.     Name = "Print message to console",
  166.     Default = "I love MultiMenu <3",
  167.     TextDisappear = true,
  168.     Callback = function(Value)
  169.         print(Value)
  170.     end  
  171. })
  172.  
  173. OtherTab:AddButton({
  174.     Name = "Piggy Blueprints Collector GUI",
  175.     Callback = function()
  176.         loadstring(game:HttpGet("https://pastebin.com/raw/MX3LyiWu", true))()
  177.     end    
  178. })
  179.  
  180. OtherTab:AddButton({
  181.     Name = "MM2 Vynixu's GUI",
  182.     Callback = function()
  183.         loadstring(game:GetObjects("rbxassetid://4001118261")[1].Source)()
  184.     end    
  185. })
  186. OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement