Advertisement
ZX7

Untitled

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