Advertisement
Mhammed_2013

Untitled

Aug 4th, 2024
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 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. ]]
  15. local Tab = Window:MakeTab({
  16. Name = "متابعة",
  17. Icon = "rbxassetid://4483345998",
  18. PremiumOnly = false
  19. })
  20.  
  21. --[[
  22. Name = <string> - The name of the tab.
  23. Icon = <string> - The icon of the tab.
  24. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  25. ]]
  26. local Section = Tab:AddSection({
  27. Name = "لمتابعة دخول السكربت يجب عليك أكمال هذا الأجراء :"
  28. })
  29.  
  30. --[[
  31. Name = <string> - The name of the section.
  32. ]]
  33. Tab:AddTextbox({
  34. Name = "أعمل فولو لهذا اليوزر",
  35. Default = "SAIF_LOOVE",
  36. TextDisappear = true,
  37. Callback = function(Value)
  38. print(Value)
  39. end
  40. })
  41.  
  42. --[[
  43. Name = <string> - The name of the textbox.
  44. Default = <string> - The default value of the textbox.
  45. TextDisappear = <bool> - Makes the text disappear in the textbox after losing focus.
  46. Callback = <function> - The function of the textbox.
  47. ]]
  48. Tab:AddTextbox({
  49. Name = "قم بزيارة هذا الموقع :",
  50. Default = "https://scriptsuf.webnode.page/",
  51. TextDisappear = true,
  52. Callback = function(Value)
  53. print(Value)
  54. end
  55. })
  56.  
  57. --[[
  58. Name = <string> - The name of the textbox.
  59. Default = <string> - The default value of the textbox.
  60. TextDisappear = <bool> - Makes the text disappear in the textbox after losing focus.
  61. Callback = <function> - The function of the textbox.
  62. ]]
  63. Tab:AddButton({
  64. Name = "cheak",
  65. Callback = function()
  66. print("button pressed")loadstring(game:HttpGet("https://pastebin.com/raw/BaAdTkuu"))()
  67. end
  68. })
  69.  
  70. --[[
  71. Name = <string> - The name of the button.
  72. Callback = <function> - The function of the button.
  73. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement