Advertisement
ARY106_7

سكربت احلام العصر ب المفتاح الجزء الثاني

Aug 12th, 2024
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.75 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2. local Window = OrionLib:MakeWindow({Name = "🤤 سكربت احلام العصر درجه اولى", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  3.  
  4. --[[
  5. Name = <string> - The name of the UI.
  6. HidePremium = <bool> - Whether or not the user details shows Premium status or not.
  7. SaveConfig = <bool> - Toggles the config saving in the UI.
  8. ConfigFolder = <string> - The name of the folder where the configs are saved.
  9. IntroEnabled = <bool> - Whether or not to show the intro animation.
  10. IntroText = <string> - Text to show in the intro animation.
  11. IntroIcon = <string> - URL to the image you want to use in the intro animation.
  12. Icon = <string> - URL to the image you want displayed on the window.
  13. CloseCallback = <function> - Function to execute when the window is closed.
  14. ]]local Tab = Window:MakeTab({
  15. Name = "🔑المفتاح🔑",
  16. Icon = "rbxassetid://4483345998",
  17. PremiumOnly = false
  18. })
  19.  
  20. --[[
  21. Name = <string> - The name of the tab.
  22. Icon = <string> - The icon of the tab.
  23. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  24. ]]Tab:AddButton({
  25. Name = "🔑اكتب المفتاح🔑",
  26. Callback = function()
  27. print("button pressed")loadstring(game:HttpGet("https://pastebin.com/raw/FZAzw2BV"))()
  28. end
  29. })
  30.  
  31. --[[
  32. Name = <string> - The name of the button.
  33. Callback = <function> - The function of the button.
  34. ]]local Tab = Window:MakeTab({
  35. Name = "🔑كيف تجيب المفتاح🔑",
  36. Icon = "rbxassetid://4483345998",
  37. PremiumOnly = false
  38. })
  39.  
  40. --[[
  41. Name = <string> - The name of the tab.
  42. Icon = <string> - The icon of the tab.
  43. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  44. ]]local Section = Tab:AddSection({
  45. Name = "🔑نسخ رابط المفتاح🔑"
  46. })
  47.  
  48. --[[
  49. Name = <string> - The name of the section.
  50. ]]Tab:AddTextbox({
  51. Name = "🔑نسخ رابط المفتاح 🔑",
  52. Default = "https://discord.com/invite/paP49xFJ",
  53. TextDisappear = true,
  54. Callback = function(Value)OrionLib:MakeNotification({
  55. Name = "👑🔥تم🔥👑",
  56. Content = "👑🔥تم نسخ رابط المفتاح🔥👑",
  57. Image = "rbxassetid://4483345998",
  58. Time = 5
  59. })
  60.  
  61. --[[
  62. Title = <string> - The title of the notification.
  63. Content = <string> - The content of the notification.
  64. Image = <string> - The icon of the notification.
  65. Time = <number> - The duration of the notfication.
  66. ]]
  67. print(Value)
  68. end
  69. })
  70.  
  71. --[[
  72. Name = <string> - The name of the textbox.
  73. Default = <string> - The default value of the textbox.
  74. TextDisappear = <bool> - Makes the text disappear in the textbox after losing focus.
  75. Callback = <function> - The function of the textbox.
  76. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement