Advertisement
Mhammed_2013

طلب 1

Sep 15th, 2023 (edited)
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.01 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()local Window = OrionLib:MakeWindow({Name = ".", 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")loadstring(game:HttpGet('https://github.com/HUBSXOBOX/HUBSXOBOX/raw/main/Hussin%20Danis'))()
  33. end
  34. })
  35.  
  36. --[[
  37. Name = <string> - The name of the button.
  38. Callback = <function> - The function of the button.
  39. ]]Tab:AddButton({
  40. Name = "سكربت طيران السيارة",
  41. Callback = function()
  42. print("button pressed")loadstring(game:HttpGet("https://raw.githubusercontent.com/hasan08122020108181818/HASA/759cc1030d8a4f4c23b32e8cb8550b47f567d1b9/carflyronald"))()
  43. end
  44. })
  45.  
  46. --[[
  47. Name = <string> - The name of the button.
  48. Callback = <function> - The function of the button.
  49. ]]Tab:AddButton({
  50. Name = "سكربت التخريب",
  51. Callback = function()
  52. print("button pressed")loadstring("\108\111\97\100\115\116\114\105\110\103\40\103\97\109\101\58\72\116\116\112\71\101\116\40\34\104\116\116\112\115\58\47\47\114\97\119\46\103\105\116\104\117\98\117\115\101\114\99\111\110\116\101\110\116\46\99\111\109\47\65\99\117\114\97\88\48\52\57\47\111\98\102\117\115\99\97\116\101\100\83\99\114\105\112\116\115\47\109\97\105\110\47\75\105\108\108\71\117\105\34\41\41\40\41\10")()
  53. end
  54. })
  55.  
  56. --[[
  57. Name = <string> - The name of the button.
  58. Callback = <function> - The function of the button.
  59. ]]local Tab = Window:MakeTab({
  60. Name = "كلام",
  61. Icon = "rbxassetid://4483345998",
  62. PremiumOnly = false
  63. })
  64.  
  65. --[[
  66. Name = <string> - The name of the tab.
  67. Icon = <string> - The icon of the tab.
  68. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  69. ]]local Section = Tab:AddSection({
  70. Name = "احتاج مساعدتك 😢 أنا محتاج مساعدة"
  71. })
  72.  
  73. --[[
  74. Name = <string> - The name of the section.
  75. ]]local Section = Tab:AddSection({
  76. Name = "خذ اليوزر نيم مال الديسكورد و تواصل معي"
  77. })
  78.  
  79. --[[
  80. Name = <string> - The name of the section.
  81. ]]Tab:AddTextbox({
  82. Name = "اليوزر نيم مالتي",
  83. Default = "mohammed2013_",
  84. TextDisappear = true,
  85. Callback = function(Value)OrionLib:MakeNotification({
  86. Name = "تم النسخ",
  87. Content = "لا تنسى تتواصل معي على الديسكورد ارجوووك 😢",
  88. Image = "rbxassetid://4483345998",
  89. Time = 5
  90. })
  91.  
  92. --[[
  93. Title = <string> - The title of the notification.
  94. Content = <string> - The content of the notification.
  95. Image = <string> - The icon of the notification.
  96. Time = <number> - The duration of the notfication.
  97. ]]
  98. print(Value)
  99. end
  100. })
  101.  
  102. --[[
  103. Name = <string> - The name of the textbox.
  104. Default = <string> - The default value of the textbox.
  105. TextDisappear = <bool> - Makes the text disappear in the textbox after losing focus.
  106. Callback = <function> - The function of the textbox.
  107. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement