Advertisement
ARY106_7

مفتاح ايم المهري

Dec 9th, 2024 (edited)
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2.  
  3.  
  4. -- Functions
  5. _G.Key = "المهري"
  6. _G.KeyInput = "string"
  7.  
  8. function DestroyGui()
  9. OrionLib:Destroy()
  10. end
  11.  
  12. function Menu()
  13. loadstring(game:HttpGet("https://pastebin.com/raw/sasxwwCP"))()
  14. end
  15.  
  16.  
  17. -- Creating Window
  18. local Window = OrionLib:MakeWindow({Name = "مفتاح ", HidePremium = false, IntroEnabled = false})
  19.  
  20.  
  21. -- Creating Tabs
  22. local tab1 = Window:MakeTab({
  23. Name = "مفتاح",
  24. Icon = "",
  25. PremiumOnly = false
  26. })
  27.  
  28. local tab2 = Window:MakeTab({
  29. Name = "كيف تجيب مفتاح",
  30. Icon = "",
  31. PremiumOnly = false
  32. })
  33.  
  34.  
  35. -- Config Tab1
  36. local Section1 = tab1:AddSection({
  37. Name = "Key"
  38. })
  39.  
  40. tab1:AddTextbox({
  41. Name = "ادخل مفتاح",
  42. Default = "",
  43. TextDisappear = false,
  44. Callback = function(Value)
  45. _G.KeyInput = Value
  46. end
  47. })
  48.  
  49. tab1:AddButton({
  50. Name = "تأكد من مفتاح",
  51. Callback = function()
  52. if _G.KeyInput == _G.Key then
  53. OrionLib:MakeNotification({
  54. Name = "مفتاح صحيح!",
  55. Content = "مفتاح صحيح سكربت راح يتحمل",
  56. Image = "",
  57. Time = 1.5
  58. })
  59. wait(1.5)
  60. Menu()
  61. end
  62. end
  63. })
  64.  
  65. -- Config Tab2
  66. local Section1 = tab2:AddSection({
  67. Name = "حذف سكربت"
  68. })
  69.  
  70.  
  71.  
  72.  
  73.  
  74. local Section1 = tab2:AddSection({
  75. Name = "GUI احذف"
  76. })
  77.  
  78. tab2:AddButton({
  79. Name = "احذف سكربت",
  80. Callback = function()
  81. wait(0.5)
  82. DestroyGui()
  83. end
  84. })
  85. -- Script End
  86. OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement