Advertisement
Ssaad1231231

Untitled

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