Advertisement
THEDEVEL2220

Devels Script

Sep 11th, 2022
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.48 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2. local Window = OrionLib:MakeWindow({Name = "Devels AutoFarm", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  3.  
  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. local Tab = Window:MakeTab({
  17. Name = "Farming",
  18. Icon = "rbxassetid://4483345998",
  19. PremiumOnly = false
  20. })
  21.  
  22. --[[
  23. Name = <string> - The name of the tab.
  24. Icon = <string> - The icon of the tab.
  25. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  26. ]]
  27. local Section = Tab:AddSection({
  28. Name = "Section"
  29. })
  30.  
  31. --[[
  32. Name = <string> - The name of the section.
  33. ]]
  34. OrionLib:MakeNotification({
  35. Name = "Welcome",
  36. Content = "Script Loaded",
  37. Image = "rbxassetid://4483345998",
  38. Time = 5
  39. })
  40.  
  41. --[[
  42. Title = <string> - The title of the notification.
  43. Content = <string> - The content of the notification.
  44. Image = <string> - The icon of the notification.
  45. Time = <number> - The duration of the notfication.
  46. ]]
  47. Tab:AddButton({
  48. Name = "STRENGTH",
  49. Callback = function() _G.kick = true while _G.kick do wait() if _G.kick == false then return end if _G.kick == true then game:GetService("ReplicatedStorage").Remotes.DoubleReg:FireServer() end end
  50. print("button pressed")
  51. end
  52. })
  53.  
  54. --[[
  55. Name = <string> - The name of the button.
  56. Callback = <function> - The function of the button.
  57. ]]
  58.  
  59.  
  60. --[[
  61. Name = <string> - The name of the toggle.
  62. Default = <bool> - The default value of the toggle.
  63. Callback = <> - The function of the toggle.
  64. ]]
  65. local Tab = Window:MakeTab({
  66. Name = "PVP",
  67. Icon = "rbxassetid://4483345998",
  68. PremiumOnly = false
  69. })
  70.  
  71. --[[
  72. Name = <string> - The name of the tab.
  73. Icon = <string> - The icon of the tab.
  74. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  75. ]]
  76. local Section = Tab:AddSection({
  77. Name = "Section"
  78. })
  79.  
  80. Tab:AddButton({
  81. Name = "INFINITE YIELD!",
  82. Callback = function()loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  83. print("button pressed")
  84. end
  85. })
  86. local Tab = Window:MakeTab({
  87. Name = "FARMING2",
  88. Icon = "rbxassetid://4483345998",
  89. PremiumOnly = false
  90. })
  91.  
  92. --[[
  93. Name = <string> - The name of the tab.
  94. Icon = <string> - The icon of the tab.
  95. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  96. ]]
  97. local Section = Tab:AddSection({
  98. Name = "Section"
  99. })
  100.  
  101. Tab:AddButton({
  102. Name = "HP!",
  103. Callback = function() _G.riotheW = true
  104. while wait() do
  105. if _G.riotheW == false then
  106. return
  107. end
  108. if _G.riotheW == true then
  109. game:GetService("ReplicatedStorage").Remotes.Bench:FireServer(3)
  110. game:GetService("ReplicatedStorage").Remotes.PushUp:FireServer(3)
  111. game:GetService("ReplicatedStorage").Remotes.Bench:FireServer(3)
  112. game:GetService("ReplicatedStorage").Remotes.PushUp:FireServer(3)
  113. game:GetService("ReplicatedStorage").Remotes.Bench:FireServer(3)
  114. end
  115. end
  116. print("button pressed")
  117. end
  118. })
  119. Tab:AddButton({
  120. Name = "AUTO PUSHUP!",
  121. Callback = function() while wait() do
  122. game:GetService("ReplicatedStorage").Remotes.PushUp:FireServer()
  123. game:GetService("ReplicatedStorage").Remotes.PushUp:FireServer()
  124. game:GetService("ReplicatedStorage").Remotes.PushUp:FireServer()
  125. end
  126. end})
  127.  
  128. local Tab = Window:MakeTab({
  129. Name = "STAT CHECKER",
  130. Icon = "rbxassetid://4483345998",
  131. PremiumOnly = false
  132. })
  133. Tab:AddButton({
  134. Name = "Tea Hub!",
  135. Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Aurelius0863/TeaHub/main/Loader.lua"))()
  136.  
  137. end})
  138. local Tab = Window:MakeTab({
  139. Name = "FUN",
  140. Icon = "rbxassetid://4483345998",
  141. PremiumOnly = false
  142.  
  143. })
  144. Tab:AddButton({
  145. Name = "Fling Script",
  146. Callback = function() loadstring(game:HttpGet('https://pastebin.com/raw/fj5VwQtC'))()
  147. end})
  148.  
  149. --[[
  150. Sources:
  151. UIS = https://developer.roblox.com/en-us/api-reference/class/UserInputService
  152. Humanoid = https://developer.roblox.com/en-us/api-reference/class/Humanoid
  153. isRunning = https://developer.roblox.com/en-us/articles/Boolean
  154. isTrueSpeed / isFalseSpeed = https://developer.roblox.com/en-us/articles/Variables
  155. defaultKey = https://developer.roblox.com/en-us/api-reference/enum/KeyCode
  156. --]]
  157. print(Value)
  158.  
  159.  
  160. --[[
  161. Name = <string> - The name of the slider.
  162. Min = <number> - The minimal value of the slider.
  163. Max = <number> - The maxium value of the slider.
  164. Increment = <number> - How much the slider will change value when dragging.
  165. Default = <number> - The default value of the slider.
  166. ValueName = <string> - The text after the value number.
  167. Callback = <function> - The function of the slider.
  168. ]]
  169.  
  170. local Tab = Window:MakeTab({
  171. Name = "Extras",
  172. Icon = "rbxassetid://4483345998",
  173. PremiumOnly = false
  174. })
  175. Tab:AddButton({
  176. Name = "Straw Hub",
  177. Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/vep1032/VepStuff/main/COBRA%20KAI%20KARATE%20%7C%20OPEN%20SOURCE%20GUI"))()
  178.  
  179.  
  180. end})
  181. Tab:AddSlider({
  182. Name = "Speed",
  183. Min =16,
  184. Max =250,
  185. Default = 5,
  186. Color = Color3.fromRGB(255,255,255),
  187. Increment = 1,
  188. ValueName = "Walkspeed",
  189. Callback = function(Value) game.Players.LocalPlayer.character.Humanoid.WalkSpeed = Value
  190.  
  191.  
  192. print(Value)
  193. end
  194. })
  195.  
  196. --[[
  197. Name = <string> - The name of the slider.
  198. Min = <number> - The minimal value of the slider.
  199. Max = <number> - The maxium value of the slider.
  200. Increment = <number> - How much the slider will change value when dragging.
  201. Default = <number> - The default value of the slider.w
  202. ValueName = <string> - The text after the value number.
  203. Callback = <function> - The function of the slider.
  204. ]]
  205. Tab:AddSlider({
  206. Name = "JumpPower",
  207. Min =16,
  208. Max =250,
  209. Default = 45,
  210. Color = Color3.fromRGB(255,255,255),
  211. Increment = 1,
  212. ValueName = "JumpPower",
  213. Callback = function(Value) game.Players.LocalPlayer.character.Humanoid.JumpPower = Value
  214.  
  215. end})
  216.  
  217.  
  218.  
  219.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement