Advertisement
Mhammed_2013

طلب 4

Nov 18th, 2023 (edited)
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()local Window = OrionLib:MakeWindow({Name = "💸 Money collection script 💸", 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 = "Assembly",
  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:AddToggle({
  30. Name = "Collecting money",
  31. Default = false,
  32. Callback = function(Value)loadstring(game:HttpGet("https://raw.githubusercontent.com/ThunderZ-05/HUB/main/Main/Chest/AllDevice.lua"))()
  33. print(Value)
  34. end
  35. })
  36.  
  37. --[[
  38. Name = <string> - The name of the toggle.
  39. Default = <bool> - The default value of the toggle.
  40. Callback = <function> - The function of the toggle.
  41. ]]OrionLib:MakeNotification({
  42. Name = "تم صنع السكربت",
  43. Content = "عليك أن تدفع و اذا لم تدفع سوف تتم تعطيل السكربت",
  44. Image = "rbxassetid://4483345998",
  45. Time = 2.5
  46. })
  47.  
  48. --[[
  49. Title = <string> - The title of the notification.
  50. Content = <string> - The content of the notification.
  51. Image = <string> - The icon of the notification.
  52. Time = <number> - The duration of the notfication.
  53. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement