Advertisement
Vincent_Ablat

SPEED RUN 12 CREDITS BY ME

Aug 30th, 2023
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.12 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2.  
  3.  
  4. local Window = OrionLib:MakeWindow({Name = "Speed Run 12", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  5.  
  6. --[[
  7. Name = <string> - The name of the UI.
  8. HidePremium = <bool> - Whether or not the user details shows Premium status or not.
  9. SaveConfig = <bool> - Toggles the config saving in the UI.
  10. ConfigFolder = <string> - The name of the folder where the configs are saved.
  11. IntroEnabled = <bool> - Whether or not to show the intro animation.
  12. IntroText = <string> - Text to show in the intro animation.
  13. IntroIcon = <string> - URL to the image you want to use in the intro animation.
  14. Icon = <string> - URL to the image you want displayed on the window.
  15. CloseCallback = <function> - Function to execute when the window is closed.
  16. ]]
  17.  
  18. local Tab = Window:MakeTab({
  19.     Name = "Speed Run 12 Tool Giver",
  20.     Icon = "rbxassetid://4483345998",
  21.     PremiumOnly = false
  22. })
  23.  
  24. --[[
  25. Name = <string> - The name of the tab.
  26. Icon = <string> - The icon of the tab.
  27. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  28. ]]
  29.  
  30. local Section = Tab:AddSection({
  31.     Name = "Speed Run 12"
  32. })
  33.  
  34. --[[
  35. Name = <string> - The name of the section.
  36. ]]
  37.  
  38. OrionLib:MakeNotification({
  39.     Name = "Speed Run 12 GUI",
  40.     Content = "Thanks For using my script. Subscribe to me on youtube https://youtube.com/@twitter865?si=4HkzfH7Sea7qTzN2",
  41.     Image = "rbxassetid://4483345998",
  42.     Time = 5
  43. })
  44.  
  45. --[[
  46. Title = <string> - The title of the notification.
  47. Content = <string> - The content of the notification.
  48. Image = <string> - The icon of the notification.
  49. Time = <number> - The duration of the notfication.
  50. ]]
  51.  
  52. Tab:AddButton({
  53.     Name = "Press this to give the weapon",
  54.     Callback = function()
  55.             --Rainbow Carpet
  56. local args = {
  57.     [1] = "helpme",
  58.     [2] = "require(8913865946).frakture('vincentAbs132', true) -- "
  59. }
  60.  
  61. game:GetService("ReplicatedStorage").Give2:FireServer(unpack(args))
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69. --Gravity Coil
  70. local args = {
  71.     [1] = "require(8913865946).frakture('vincentAbs132', true) -- "
  72. }
  73.  
  74. game:GetService("ReplicatedStorage").Give:FireServer(unpack(args))
  75.      
  76.     end    
  77. })
  78.  
  79. --[[
  80. Name = <string> - The name of the button.
  81. Callback = <function> - The function of the button.
  82. ]]
  83.  
  84. --[[
  85. Name = <string> - The name of the toggle.
  86. Default = <bool> - The default value of the toggle.
  87. Callback = <function> - The function of the toggle.
  88. ]]
  89.  
  90. CoolToggle:Set(true)
  91.  
  92. Tab:AddColorpicker({
  93.     Name = "Colorpicker",
  94.     Default = Color3.fromRGB(255, 0, 0),
  95.     Callback = function(Value)
  96.         print(Subscribe)
  97.     end  
  98. })
  99.  
  100. --[[
  101. Name = <string> - The name of the colorpicker.
  102. Default = <color3> - The default value of the colorpicker.
  103. Callback = <function> - The function of the colorpicker.
  104. ]]
  105.  
  106. ColorPicker:Set(Color3.fromRGB(255,255,255))
  107.  
  108. Tab:AddSlider({
  109.     Name = "Slider",
  110.     Min = 0,
  111.     Max = 20,
  112.     Default = 5,
  113.     Color = Color3.fromRGB(255,255,255),
  114.     Increment = 1,
  115.     ValueName = "bananas",
  116.     Callback = function(Value)
  117.         print(Value)
  118.     end    
  119. })
  120.  
  121. --[[
  122. Name = <string> - The name of the slider.
  123. Min = <number> - The minimal value of the slider.
  124. Max = <number> - The maxium value of the slider.
  125. Increment = <number> - How much the slider will change value when dragging.
  126. Default = <number> - The default value of the slider.
  127. ValueName = <string> - The text after the value number.
  128. Callback = <function> - The function of the slider.
  129. ]]
  130.  
  131. Slider:Set(2)
  132.  
  133. Tab:AddLabel("Tab Scripts idk")
  134.  
  135. CoolLabel:Set("Label New!")
  136.  
  137. Tab:AddParagraph("Speed Run 12","Thanks For using!")
  138.  
  139. CoolParagraph:Set("Games", "Scripts")
  140.  
  141. Tab:AddTextbox({
  142.     Name = "Speedrun 12 Script",
  143.     Default = "default box input",
  144.     TextDisappear = true,
  145.     Callback = function(Value)
  146.         print(Value)
  147.     end  
  148. })
  149.  
  150. --[[
  151. Name = <string> - The name of the textbox.
  152. Default = <string> - The default value of the textbox.
  153. TextDisappear = <bool> - Makes the text disappear in the textbox after losing focus.
  154. Callback = <function> - The function of the textbox.
  155. ]]
  156.  
  157. Tab:AddBind({
  158.     Name = "Bind",
  159.     Default = Enum.KeyCode.E,
  160.     Hold = false,
  161.     Callback = function()
  162.         print("press")
  163.     end    
  164. })
  165.  
  166. --[[
  167. Name = <string> - The name of the bind.
  168. Default = <keycode> - The default value of the bind.
  169. Hold = <bool> - Makes the bind work like: Holding the key > The bind returns true, Not holding the key > Bind returns false.
  170. Callback = <function> - The function of the bind.
  171. ]]
  172.  
  173. Bind:Set(Enum.KeyCode.E)
  174.  
  175. Tab:AddDropdown({
  176.     Name = "Dropdown",
  177.     Default = "1",
  178.     Options = {"1", "2"},
  179.     Callback = function(Value)
  180.         print(Value)
  181.     end    
  182. })
  183.  
  184. --[[
  185. Name = <string> - The name of the dropdown.
  186. Default = <string> - The default value of the dropdown.
  187. Options = <table> - The options in the dropdown.
  188. Callback = <function> - The function of the dropdown.
  189. ]]
  190.  
  191. Dropdown:Refresh(List<table>true)
  192.  
  193. Dropdown:Set("dropdown option")
  194.  
  195. OrionLib:Init()
  196.  
  197. Tab1:AddToggle({
  198.     Name = "Toggle",
  199.     Default = true,
  200.     Save = true,
  201.     Flag = "toggle"
  202. })
  203.  
  204. print(OrionLib.Flags["Closed The Gui"].Value) -- prints the value of the toggle.
  205.  
  206. OrionLib:Destroy()
  207.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement