roblox_roblox1098

سكربت بلوكس فورت

Nov 29th, 2023
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 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 = "1"
  56. _G.KeyInput = "string"
  57.  
  58. function DestroyGui()
  59. OrionLib:Destroy()
  60. end
  61.  
  62. function Menu()
  63. _G.Mode = "English"
  64. loadstring(game:HttpGet("https://raw.githubusercontent.com/Tuxoz/VectorHub/main/MBPC"))()
  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 = "مفتاح صحيح!",
  106. Content = "مفتاح صحيح سكربت راح يتحمل",
  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.  
  122.  
  123.  
  124.  
  125. local Section1 = tab2:AddSection({
  126. Name = "GUI احذف"
  127. })
  128.  
  129. tab2:AddButton({
  130. Name = "احذف سكربت",
  131. Callback = function()
  132. wait(0.5)
  133. DestroyGui()
  134. end
  135. })
  136. -- Script End
  137. OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment