Advertisement
Bacon_Script

Untitled

Jun 6th, 2024
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.64 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 = "Vlorp Script | Murder Mystery 2", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  4.  
  5. --[[
  6. Name = <string> - The name of the UI.
  7. HidePremium = <bool> - Whether or not the user details shows Premium status or not.
  8. SaveConfig = <bool> - Toggles the config saving in the UI.
  9. ConfigFolder = <string> - The name of the folder where the configs are saved.
  10. IntroEnabled = <bool> - Whether or not to show the intro animation.
  11. IntroText = <string> - Text to show in the intro animation.
  12. IntroIcon = <string> - URL to the image you want to use in the intro animation.
  13. Icon = <string> - URL to the image you want displayed on the window.
  14. CloseCallback = <function> - Function to execute when the window is closed.
  15. ]]
  16.  
  17. local Tab = Window:MakeTab({
  18. Name = "ESP",
  19. Icon = "rbxassetid://4483345998",
  20. PremiumOnly = false
  21. })
  22.  
  23. --[[
  24. Name = <string> - The name of the tab.
  25. Icon = <string> - The icon of the tab.
  26. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  27. ]]
  28.  
  29. Tab:AddButton({
  30. Name = "ESP ROLES",
  31. Callback = function()
  32. loadstring(game:HttpGet("https://raw.githubusercontent.com/Ihaveash0rtnamefordiscord/Releases/main/MurderMystery2HighlightESP"))(' Watermelon ?')
  33. end
  34. })
  35.  
  36. --[[
  37. Name = <string> - The name of the button.
  38. Callback = <function> - The function of the button.
  39. ]]
  40.  
  41. Tab:AddParagraph("ACTIVATEDâť—","Script Activated Timer 0:00")
  42.  
  43. local Tab = Window:MakeTab({
  44. Name = "Trade Scam",
  45. Icon = "rbxassetid://4483345998",
  46. PremiumOnly = false
  47. })
  48.  
  49. --[[
  50. Name = <string> - The name of the tab.
  51. Icon = <string> - The icon of the tab.
  52. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  53. ]]
  54.  
  55. Tab:AddTextbox({
  56. Name = "Username",
  57. Default = "Player",
  58. TextDisappear = false,
  59. Callback = function(Value)
  60.  
  61. end
  62. })
  63.  
  64. --[[
  65. Name = <string> - The name of the textbox.
  66. Default = <string> - The default value of the textbox.
  67. TextDisappear = <bool> - Makes the text disappear in the textbox after losing focus.
  68. Callback = <function> - The function of the textbox.
  69. ]]
  70.  
  71. Tab:AddToggle({
  72. Name = "đź§ŠFreeze Trade",
  73. Default = false,
  74. Callback = function(Value)
  75. OrionLib:MakeNotification({
  76. Name = "Freeze Trade Enabled!",
  77. Content = "your items is now safe... remove all your items now!",
  78. Image = "rbxassetid://4483345998",
  79. Time = 5
  80. })
  81.  
  82. --[[
  83. Title = <string> - The title of the notification.
  84. Content = <string> - The content of the notification.
  85. Image = <string> - The icon of the notification.
  86. Time = <number> - The duration of the notfication.
  87. ]]
  88. end
  89. })
  90.  
  91. --[[
  92. Name = <string> - The name of the toggle.
  93. Default = <bool> - The default value of the toggle.
  94. Callback = <function> - The function of the toggle.
  95. ]]
  96.  
  97. Tab:AddParagraph("ACTIVATEDâť—","Script Activated Timer 0:00")
  98.  
  99. local Tab = Window:MakeTab({
  100. Name = "AutoFarm",
  101. Icon = "rbxassetid://4483345998",
  102. PremiumOnly = false
  103. })
  104.  
  105. --[[
  106. Name = <string> - The name of the tab.
  107. Icon = <string> - The icon of the tab.
  108. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  109. ]]
  110.  
  111. Tab:AddButton({
  112. Name = "Get AutoFarm Source",
  113. Callback = function()
  114. loadstring(game:HttpGet("https://raw.githubusercontent.com/GamerScripter/Game-Hub/main/loader"))()
  115. end
  116. })
  117.  
  118. --[[
  119. Name = <string> - The name of the button.
  120. Callback = <function> - The function of the button.
  121. ]]
  122.  
  123. Tab:AddParagraph("ACTIVATEDâť—","Script Activated Timer 0:00")
  124.  
  125. local Tab = Window:MakeTab({
  126. Name = "Misc",
  127. Icon = "rbxassetid://4483345998",
  128. PremiumOnly = false
  129. })
  130.  
  131. --[[
  132. Name = <string> - The name of the tab.
  133. Icon = <string> - The icon of the tab.
  134. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  135. ]]
  136.  
  137.  
  138. Tab:AddButton({
  139. Name = "infiniteyield",
  140. Callback = function()
  141. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  142. end
  143. })
  144.  
  145. --[[
  146. Name = <string> - The name of the button.
  147. Callback = <function> - The function of the button.
  148. ]]
  149.  
  150. local Tab = Window:MakeTab({
  151. Name = "Credits | Discord",
  152. Icon = "rbxassetid://4483345998",
  153. PremiumOnly = false
  154. })
  155.  
  156. --[[
  157. Name = <string> - The name of the tab.
  158. Icon = <string> - The icon of the tab.
  159. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  160. ]]
  161.  
  162. Tab:AddParagraph("CREDITSâť—","Made By Bacon_Script")
  163. Tab:AddParagraph("ACTIVATEDâť—","Script Activated Timer 0:00")
  164.  
  165.  
  166.  
  167.  
  168.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement