Advertisement
Mhammed_2013

S7 PERMANENT

Jun 7th, 2024 (edited)
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()local Window = OrionLib:MakeWindow({Name = "👑🔥 S7 PERMANENT 🔥👑", HidePremium = false, SaveConfig = true, ConfigFolder = "S7"})
  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. ]]Tab:AddTextbox({
  42. Name = "رابط السيرفر",
  43. Default = "https://discord.com/invite/qKtNDGMPVc",
  44. TextDisappear = true,
  45. Callback = function(Value)
  46. print(Value)
  47. end
  48. })
  49.  
  50. --[[
  51. Name = <string> - The name of the textbox.
  52. Default = <string> - The default value of the textbox.
  53. TextDisappear = <bool> - Makes the text disappear in the textbox after losing focus.
  54. Callback = <function> - The function of the textbox.
  55. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement