Advertisement
Mhammed_2013

Untitled

Jun 8th, 2024
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.76 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()local Window = OrionLib:MakeWindow({Name = "Shaodo", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  2.  
  3. --[[
  4. Name = <string> - The name of the UI.
  5. HidePremium = <bool> - Whether or not the user details shows Premium status or not.
  6. SaveConfig = <bool> - Toggles the config saving in the UI.
  7. ConfigFolder = <string> - The name of the folder where the configs are saved.
  8. IntroEnabled = <bool> - Whether or not to show the intro animation.
  9. IntroText = <string> - Text to show in the intro animation.
  10. IntroIcon = <string> - URL to the image you want to use in the intro animation.
  11. Icon = <string> - URL to the image you want displayed on the window.
  12. CloseCallback = <function> - Function to execute when the window is closed.
  13. ]]local Tab = Window:MakeTab({
  14. Name = "كلام مهم",
  15. Icon = "rbxassetid://4483345998",
  16. PremiumOnly = false
  17. })
  18.  
  19. --[[
  20. Name = <string> - The name of the tab.
  21. Icon = <string> - The icon of the tab.
  22. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  23. ]]local Section = Tab:AddSection({
  24. Name = "هذا السكربت ما له فائدة"
  25. })
  26.  
  27. --[[
  28. Name = <string> - The name of the section.
  29. ]]Tab:AddButton({
  30. Name = "سكربت طيران",
  31. Callback = function()
  32. print("button pressed")OrionLib:MakeNotification({
  33. Name = "معلومة",
  34. Content = "لقد وقعت بالفخ و لن يتم ازالة هذه الرسالة الى ان تطلع من الماب",
  35. Image = "rbxassetid://4483345998",
  36. Time = 99999999999999999999999999
  37. })
  38.  
  39. --[[
  40. Title = <string> - The title of the notification.
  41. Content = <string> - The content of the notification.
  42. Image = <string> - The icon of the notification.
  43. Time = <number> - The duration of the notfication.
  44. ]]
  45. end
  46. })
  47.  
  48. --[[
  49. Name = <string> - The name of the button.
  50. Callback = <function> - The function of the button.
  51. ]]OrionLib:MakeNotification({
  52. Name = ".",
  53. Content = "😂😂😂😂😂😂😂😂😂",
  54. Image = "rbxassetid://4483345998",
  55. Time = 100000000000000000000000000
  56. })
  57.  
  58. --[[
  59. Title = <string> - The title of the notification.
  60. Content = <string> - The content of the notification.
  61. Image = <string> - The icon of the notification.
  62. Time = <number> - The duration of the notfication.
  63. ]]Tab:AddColorpicker({
  64. Name = "اختار لون السكربت",
  65. Default = Color3.fromRGB(255, 0, 0),
  66. Callback = function(Value)OrionLib:MakeNotification({
  67. Name = "ملاحظة",
  68. Content = "الاعدادات ما تشتغل",
  69. Image = "rbxassetid://4483345998",
  70. Time = 3
  71. })
  72.  
  73. --[[
  74. Title = <string> - The title of the notification.
  75. Content = <string> - The content of the notification.
  76. Image = <string> - The icon of the notification.
  77. Time = <number> - The duration of the notfication.
  78. ]]
  79. print(Value)
  80. end
  81. })
  82.  
  83. --[[
  84. Name = <string> - The name of the colorpicker.
  85. Default = <color3> - The default value of the colorpicker.
  86. Callback = <function> - The function of the colorpicker.
  87. ]]Tab:AddToggle({
  88. Name = "اوتو فارم",
  89. Default = false,
  90. Callback = function(Value)OrionLib:MakeNotification({
  91. Name = "ملاحظة",
  92. Content = "ترا نص الاشياء بهذا السكربت ما تشتغل لأن هذا السكربت سكربت تجريبي",
  93. Image = "rbxassetid://4483345998",
  94. Time = 5
  95. })
  96.  
  97. --[[
  98. Title = <string> - The title of the notification.
  99. Content = <string> - The content of the notification.
  100. Image = <string> - The icon of the notification.
  101. Time = <number> - The duration of the notfication.
  102. ]]
  103. print(Value)
  104. end
  105. })
  106.  
  107. --[[
  108. Name = <string> - The name of the toggle.
  109. Default = <bool> - The default value of the toggle.
  110. Callback = <function> - The function of the toggle.
  111. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement