Advertisement
Mhammed_2013

طلب 6

Mar 16th, 2024
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.19 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()local Window = OrionLib:MakeWindow({Name = "PardX", HidePremium = false, SaveConfig = true, ConfigFolder = "PardX"})
  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. ]]Tab:AddButton({
  30. Name = "( 1 )",
  31. Callback = function()
  32. print("button pressed")loadstring(game:HttpGet("https://raw.githubusercontent.com/BreApple/RobloxUI/main/SBhomerunScript"))()
  33. end
  34. })
  35.  
  36. --[[
  37. Name = <string> - The name of the button.
  38. Callback = <function> - The function of the button.
  39. ]]Tab:AddButton({
  40. Name = "( 2 )",
  41. Callback = function()
  42. print("button pressed")loadstring(game:HttpGet(("https://raw.githubusercontent.com/ionlyusegithubformcmods/1-Line-Scripts/main/Slap%20Battles")))()
  43. end
  44. })
  45.  
  46. --[[
  47. Name = <string> - The name of the button.
  48. Callback = <function> - The function of the button.
  49. ]]Tab:AddButton({
  50. Name = "( 3 )",
  51. Callback = function()
  52. print("button pressed")loadstring(game:HttpGet("https://raw.githubusercontent.com/BreApple/RobloxUI/main/SBRojoScript"))()
  53. end
  54. })
  55.  
  56. --[[
  57. Name = <string> - The name of the button.
  58. Callback = <function> - The function of the button.
  59. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement