Eshaanopn

Thanks guys

Jun 21st, 2023
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | Gaming | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2. local Window = OrionLib:MakeWindow({Name = "eshaanopn first script", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  3. OrionLib:MakeNotification({
  4. Name = "this is my frist hub so nothing good ill make good scripts soon! credits to LSPLASH",
  5. Content = "i reach 300 subs thanks",
  6. Image = "rbxassetid://4483345998",
  7. Time = 5
  8. })
  9.  
  10.  
  11. --esh Tab
  12. local eshTab = Window:MakeTab({
  13. Name = "Tab 1",
  14. Icon = "rbxassetid://4483345998",
  15. PremiumOnly = false
  16. })
  17.  
  18. local Section = eshTab:AddSection({
  19. Name = "my channel is grinding so fast thanks for subs"
  20. })
  21.  
  22.  
  23. eshTab:AddButton({
  24. Name = "Button!",
  25. Callback = function()
  26. print("button pressed")
  27. end
  28. })
  29.  
  30. eshTab:AddButton({
  31. Name = "Goofy aaah!",
  32. Callback = function()
  33. print("button pressed")
  34. end
  35. })
  36.  
  37.  
  38.  
  39. eshTab:AddColorpicker({
  40. Name = "Colorpicker",
  41. Default = Color3.fromRGB(255, 0, 0),
  42. Callback = function(Value)
  43. print(Value)
  44. end
  45. })
  46.  
  47.  
  48. eshTab:AddSlider({
  49. Name = "Slider",
  50. Min = 0,
  51. Max = 20,
  52. Default = 5,
  53. Color = Color3.fromRGB(255,255,255),
  54. Increment = 1,
  55. ValueName = "bananas",
  56. Callback = function(Value)
  57. print(Value)
  58. end
  59. })
  60.  
  61. OrionLib:Init()
Tags: #thannks
Advertisement
Add Comment
Please, Sign In to add comment