Advertisement
Zuklim65

Easy

Dec 14th, 2024
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2.  
  3. local Window = OrionLib:MakeWindow({Name = "Title of the library", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  4.  
  5. --[[
  6. Name = <string> - The name of the UI.
  7. HidePremium = <bool> - Whether or not the user details shows Premium status or not.
  8. SaveConfig = <bool> - Toggles the config saving in the UI.
  9. ConfigFolder = <string> - The name of the folder where the configs are saved.
  10. IntroEnabled = <bool> - Whether or not to show the intro animation.
  11. IntroText = <string> - Text to show in the intro animation.
  12. IntroIcon = <string> - URL to the image you want to use in the intro animation.
  13. Icon = <string> - URL to the image you want displayed on the window.
  14. CloseCallback = <function> - Function to execute when the window is closed.
  15. ]]
  16.  
  17. local Tab = Window:MakeTab({
  18. Name = "test ",
  19. Icon = "rbxassetid://4483345998",
  20. PremiumOnly = false
  21. })
  22.  
  23. --[[
  24. Name = <string> - The name of the tab.
  25. Icon = <string> - The icon of the tab.
  26. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  27. ]]
  28.  
  29. local Section = Tab:AddSection({
  30. Name = "Test"
  31. })
  32.  
  33. --[[
  34. Name = <string> - The name of the section.
  35. ]]
  36.  
  37. OrionLib:MakeNotification({
  38. Name = "yoo",
  39. Content = "Notification content... free robux ",
  40. Image = "rbxassetid://4483345998",
  41. Time = 5
  42. })
  43.  
  44. --[[
  45. Title = <string> - The title of the notification.
  46. Content = <string> - The content of the notification.
  47. Image = <string> - The icon of the notification.
  48. Time = <number> - The duration of the notfication.
  49. ]]
  50.  
  51. Tab:AddButton({
  52. Name = "Gojo",
  53. Callback = function(getgenv().morph = true -- turn false to true if you want custom accessories
  54. loadstring(game:HttpGet("https://raw.githubusercontent.com/skibiditoiletfan2007/BaldyToSorcerer/refs/heads/main/LatestV2.lua"))())
  55. print("button pressed")
  56. end
  57. })
  58.  
  59. --[[
  60. Name = <string> - The name of the button.
  61. Callback = <function> - The function of the button.
  62. ]]
  63.  
  64. OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement