Advertisement
ZX7

Untitled

ZX7
May 20th, 2023 (edited)
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56. -- Booting Library
  57. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  58.  
  59.  
  60. -- Functions
  61. _G.Key = "ARAB_SCRIPT32"
  62. _G.KeyInput = "string"
  63.  
  64. function DestroyGui()
  65. OrionLib:Destroy()
  66. end
  67.  
  68. function Menu()
  69. loadstring(game:HttpGet('https://pastebin.com/NaygGzGd'))()
  70. end
  71.  
  72.  
  73. -- Creating Window
  74. local Window = OrionLib:MakeWindow({Name = "مفتاح ", HidePremium = false, IntroEnabled = false})
  75.  
  76.  
  77. -- Creating Tabs
  78. local tab1 = Window:MakeTab({
  79. Name = "مفتاح",
  80. Icon = "",
  81. PremiumOnly = false
  82. })
  83.  
  84. local tab2 = Window:MakeTab({
  85. Name = "كيف تجيب مفتاح",
  86. Icon = "",
  87. PremiumOnly = false
  88. })
  89.  
  90.  
  91. -- Config Tab1
  92. local Section1 = tab1:AddSection({
  93. Name = "Key"
  94. })
  95.  
  96. tab1:AddTextbox({
  97. Name = "ادخل مفتاح",
  98. Default = "",
  99. TextDisappear = false,
  100. Callback = function(Value)
  101. _G.KeyInput = Value
  102. end
  103. })
  104.  
  105. tab1:AddButton({
  106. Name = "تأكد من مفتاح",
  107. Callback = function()
  108. if _G.KeyInput == _G.Key then
  109. OrionLib:MakeNotification({
  110. Name = "Correct Key!",
  111. Content = "Script will now start to load!",
  112. Image = "",
  113. Time = 1.5
  114. })
  115. wait(1.5)
  116. Menu()
  117. end
  118. end
  119. })
  120.  
  121. -- Config Tab2
  122. local Section1 = tab2:AddSection({
  123. Name = "كيف تجيب مفتاح"
  124. })
  125.  
  126. local Section1 = tab2:AddSection({
  127. Name = "نسخ ال تحت و حطه ب قوقل و خذ مفتاح"
  128. })
  129.  
  130.  
  131.  
  132. tab2:AddButton({
  133. Name = "نسخ موقع مفتاح",
  134. Callback = function()
  135. setclipboard("https://pastebin.com/raw/9GPVa5Zu")
  136. OrionLib:MakeNotification({
  137. Name = "تم نسخ",
  138. Content = "ادخل قوقل و حط رابط",
  139. Image = "",
  140. Time = 1.5
  141. })
  142. end
  143. })
  144.  
  145.  
  146.  
  147.  
  148.  
  149. local Section1 = tab2:AddSection({
  150. Name = "GUI احذف"
  151. })
  152.  
  153. tab2:AddButton({
  154. Name = "احذف سكربت",
  155. Callback = function()
  156. wait(0.5)
  157. DestroyGui()
  158. end
  159. })
  160. -- Script End
  161. OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement