Advertisement
zn4v_

Untitled

Jun 13th, 2025
384
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.84 KB | Software | 0 0
  1. (function()
  2.  
  3. local OrionLib = loadstring(game:HttpGet("\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\106\101\110\115\111\110\104\105\114\115\116\47\79\114\105\111\110\47\109\97\105\110\47\115\111\117\114\99\101"))()
  4. local Players = game:GetService("\80\108\97\121\101\114\115")
  5. local player = Players.LocalPlayer
  6.  
  7. -- مفتاح التفعيل الصحيح
  8. local correctKey = "\88\108\67\79\119\45\53\109\99\106\51\113\51\121\111\45\50\84\101\102\102\48\98\51\52"
  9.  
  10. -- نافذة طلب مفتاح التفعيل
  11. local KeyWindow = OrionLib:MakeWindow({
  12.     Name = "\70\108\116\114\32\72\117\98\32\45\32\65\99\116\105\118\97\116\105\111\110",
  13.     HidePremium = true,
  14.     SaveConfig = false,
  15.     IntroEnabled = false,
  16.     NoClose = true,
  17. })
  18.  
  19. local keyValid = false
  20.  
  21. KeyWindow:MakeTab({
  22.     Name = "\65\99\116\105\118\97\116\105\111\110",
  23. }):AddTextbox({
  24.     Name = "\69\110\116\101\114\32\75\101\121",
  25.     PlaceholderText = "ادخل مفتاح التفعيل هنا",
  26.     Callback = function(inputKey)
  27.         if inputKey == correctKey then
  28.             keyValid = true
  29.             OrionLib:MakeNotification({
  30.                 Name = "\83\117\99\99\101\115\115",
  31.                 Content = "تم التفعيل بنجاح! جاري فتح الواجهة...",
  32.                 Image = "rbxassetid://4483345998",
  33.                 Time = 3
  34.             })
  35.             KeyWindow:Destroy()
  36.         else
  37.             OrionLib:MakeNotification({
  38.                 Name = "\69\114\114\111\114",
  39.                 Content = "المفتاح غير صحيح، حاول مرة أخرى.",
  40.                 Image = "rbxassetid://4483345998",
  41.                 Time = 3
  42.             })
  43.         end
  44.     end,
  45. })
  46.  
  47. repeat wait() until keyValid
  48.  
  49. print("Fltr Hub Activated by Majid!")
  50.  
  51. end)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement