Advertisement
ZX7

Untitled

ZX7
May 24th, 2023
65
1
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 1 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. -- Booting Library
  51. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  52.  
  53.  
  54. -- Functions
  55. _G.Key = "54"
  56. _G.KeyInput = "string"
  57.  
  58. function DestroyGui()
  59. OrionLib:Destroy()
  60. end
  61.  
  62. function Menu()
  63. loadstring(game:HttpGet('https://pastebin.com/raw/NaygGzGd'))()
  64. --سكربت عربي ل كل عرب--
  65. end
  66.  
  67.  
  68. -- Creating Window
  69. local Window = OrionLib:MakeWindow({Name = "مفتاح ", HidePremium = false, IntroEnabled = false})
  70.  
  71.  
  72. -- Creating Tabs
  73. local tab1 = Window:MakeTab({
  74. Name = "مفتاح",
  75. Icon = "",
  76. PremiumOnly = false
  77. })
  78.  
  79. local tab2 = Window:MakeTab({
  80. Name = "كيف تجيب مفتاح",
  81. Icon = "",
  82. PremiumOnly = false
  83. })
  84.  
  85.  
  86. -- Config Tab1
  87. local Section1 = tab1:AddSection({
  88. Name = "Key"
  89. })
  90.  
  91. tab1:AddTextbox({
  92. Name = "ادخل مفتاح",
  93. Default = "",
  94. TextDisappear = false,
  95. Callback = function(Value)
  96. _G.KeyInput = Value
  97. end
  98. })
  99.  
  100. tab1:AddButton({
  101. Name = "تأكد من مفتاح",
  102. Callback = function()
  103. if _G.KeyInput == _G.Key then
  104. OrionLib:MakeNotification({
  105. Name = "Correct Key!",
  106. Content = "Script will now start to load!",
  107. Image = "",
  108. Time = 1.5
  109. })
  110. wait(1.5)
  111. Menu()
  112. end
  113. end
  114. })
  115.  
  116. -- Config Tab2
  117. local Section1 = tab2:AddSection({
  118. Name = "كيف تجيب مفتاح"
  119. })
  120.  
  121. local Section1 = tab2:AddSection({
  122. Name = "روح يوتيوب و اكتب حسين دنس و دور فيديو عن سكربت و هناك راح تخذ مفتاح"
  123. })
  124.  
  125.  
  126.  
  127.  
  128.  
  129. local Section1 = tab2:AddSection({
  130. Name = "GUI احذف"
  131. })
  132.  
  133. tab2:AddButton({
  134. Name = "احذف سكربت",
  135. Callback = function()
  136. wait(0.5)
  137. DestroyGui()
  138. end
  139. })
  140. -- Script End
  141. OrionLib:Init()
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement