Advertisement
Joeisaa

Auto clicker script

Jan 14th, 2023
3,366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 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 = "Auto Click Script", HidePremium = false,IntroText = false,IntroEnabled = false,SaveConfig = true, ConfigFolder = "OrionTest"})
  4.  
  5. --Notification
  6. OrionLib:MakeNotification({
  7. Name = "",
  8. Content = "Thanks for using the scipt!",
  9. Image = "rbxassetid://4483345998",
  10. Time = 5
  11. })
  12.  
  13.  
  14. --tabs
  15.  
  16. local Script = Window:MakeTab({
  17. Name = "Script",
  18. Icon = "rbxassetid://4483345998",
  19. PremiumOnly = false
  20. })
  21.  
  22. local Credits = Window:MakeTab({
  23. Name = "Credits",
  24. Icon = "rbxassetid://4483345998",
  25. PremiumOnly = false
  26. })
  27.  
  28.  
  29. Script:AddButton({
  30. Name = "Keyboard",
  31. Callback = function()
  32. loadstring(game:HttpGet("https://raw.githubusercontent.com/advxzivhsjjdhxhsidifvsh/mobkeyboard/main/main.txt", true))()
  33. end
  34. })
  35.  
  36. Script:AddButton({
  37. Name = "Auto click",
  38. Callback = function()
  39. loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/JustEzpi/ROBLOX-Scripts/main/ROBLOX_AutoClicker"))()
  40. end
  41. })
  42.  
  43. Credits:AddLabel("Credits to the owner of the Script")
  44. Credits:AddLabel("Thank you for using")
  45. Credits:AddLabel("If using give credits")
  46. OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement