Advertisement
Mhammed_2013

المفتاح

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