Advertisement
Mhammed_2013

Untitled

Apr 19th, 2024
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.14 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()local Window = OrionLib:MakeWindow({Name = "ijijg", 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. ]]local Section = Tab:AddSection({
  30. Name = "رغم ان عمري 10 سنوات و لكن انا مبرمج محترف"
  31. })
  32.  
  33. --[[
  34. Name = <string> - The name of the section.
  35. ]]Tab:AddButton({
  36. Name = "اضغط هنا !",
  37. Callback = function()
  38. print("button pressed")OrionLib:MakeNotification({
  39. Name = "الفخ !!!",
  40. Content = "لقد وقعت في الفخ",
  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. ]]Tab:AddToggle({
  51. Name = "لا تضغط هنا ابداااااااً",
  52. Default = false,
  53. Callback = function(Value)
  54. print(Value)OrionLib:MakeNotification({
  55. Name = "ليش ؟؟؟!",
  56. Content = "ليش ضغطت ؟؟؟؟",
  57. Image = "rbxassetid://4483345998",
  58. Time = 5
  59. })
  60.  
  61. --[[
  62. Title = <string> - The title of the notification.
  63. Content = <string> - The content of the notification.
  64. Image = <string> - The icon of the notification.
  65. Time = <number> - The duration of the notfication.
  66. ]]
  67. end
  68. })
  69.  
  70. --[[
  71. Name = <string> - The name of the toggle.
  72. Default = <bool> - The default value of the toggle.
  73. Callback = <function> - The function of the toggle.
  74. ]]Tab:AddColorpicker({
  75. Name = "اختر لون السكربت :",
  76. Default = Color3.fromRGB(255, 0, 0),
  77. Callback = function(Value)
  78. print(Value)OrionLib:MakeNotification({
  79. Name = "معلومه!",
  80. Content = "السكربت تجريبي لذا مستحيل اني اتعب نفسي على هذا النظام",
  81. Image = "rbxassetid://4483345998",
  82. Time = 5
  83. })
  84.  
  85. --[[
  86. Title = <string> - The title of the notification.
  87. Content = <string> - The content of the notification.
  88. Image = <string> - The icon of the notification.
  89. Time = <number> - The duration of the notfication.
  90. ]]
  91. end
  92. })
  93.  
  94. --[[
  95. Name = <string> - The name of the colorpicker.
  96. Default = <color3> - The default value of the colorpicker.
  97. Callback = <function> - The function of the colorpicker.
  98. ]]Tab:AddTextbox({
  99. Name = "رابط موقع",
  100. Default = "لا يوجد موقع هنا",
  101. TextDisappear = true,
  102. Callback = function(Value)
  103. print(Value)
  104. end
  105. })
  106.  
  107. --[[
  108. Name = <string> - The name of the textbox.
  109. Default = <string> - The default value of the textbox.
  110. TextDisappear = <bool> - Makes the text disappear in the textbox after losing focus.
  111. Callback = <function> - The function of the textbox.
  112. ]]local Section = Tab:AddSection({
  113. Name = "انا مصمم سكربتات محترف"
  114. })
  115.  
  116. --[[
  117. Name = <string> - The name of the section.
  118. ]]local Section = Tab:AddSection({
  119. Name = "و اسمي محمد"
  120. })
  121.  
  122. --[[
  123. Name = <string> - The name of the section.
  124. ]]local Section = Tab:AddSection({
  125. Name = "و عمري 10 سنوات"
  126. })
  127.  
  128. --[[
  129. Name = <string> - The name of the section.
  130. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement