Advertisement
Guest User

Dandys World Script New

a guest
Oct 14th, 2024
1,435
2
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.53 KB | None | 2 0
  1. local player = game.Players.LocalPlayer
  2.  
  3. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  4.  
  5. local Window = OrionLib:MakeWindow({Name = "Dandys World Hub", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  6.  
  7. --[[
  8. Name = <string> - The name of the UI.
  9. HidePremium = <bool> - Whether or not the user details shows Premium status or not.
  10. SaveConfig = <bool> - Toggles the config saving in the UI.
  11. ConfigFolder = <string> - The name of the folder where the configs are saved.
  12. IntroEnabled = <bool> - Whether or not to show the intro animation.
  13. IntroText = <string> - Text to show in the intro animation.
  14. IntroIcon = <string> - URL to the image you want to use in the intro animation.
  15. Icon = <string> - URL to the image you want displayed on the window.
  16. CloseCallback = <function> - Function to execute when the window is closed.
  17. ]]
  18.  
  19. local Tab = Window:MakeTab({
  20. Name = "Trinkets",
  21. Icon = "rbxassetid://4483345998",
  22. PremiumOnly = false
  23. })
  24.  
  25. --[[
  26. Name = <string> - The name of the tab.
  27. Icon = <string> - The icon of the tab.
  28. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  29. ]]
  30.  
  31. Tab:AddButton({
  32. Name = "Get Vee's Remote",
  33. Callback = function()
  34. print("button pressed")
  35. end
  36. })
  37.  
  38. Tab:AddButton({
  39. Name = "Get Pebble's Bone",
  40. Callback = function()
  41. print("button pressed")
  42. end
  43. })
  44.  
  45. local Tab = Window:MakeTab({
  46. Name = "Credits",
  47. Icon = "rbxassetid://4483345998",
  48. PremiumOnly = false
  49. })
  50.  
  51. --[[
  52. Name = <string> - The name of the tab.
  53. Icon = <string> - The icon of the tab.
  54. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  55. ]]
  56.  
  57. Tab:AddButton({
  58. Name = "Raleb: Scripting And Coding",
  59. Callback = function()
  60. print("button pressed")
  61. end
  62. })
  63.  
  64. --[[
  65. Name = <string> - The name of the button.
  66. Callback = <function> - The function of the button.
  67. ]]
  68.  
  69. --[[
  70. Name = <string> - The name of the button.
  71. Callback = <function> - The function of the button.
  72. ]]
  73.  
  74. --[[
  75. Name = <string> - The name of the button.
  76. Callback = <function> - The function of the button.
  77. ]]
  78.  
  79. OrionLib:MakeNotification({
  80. Name = "sup",
  81. Content = "THANKS FOR EXECUTING MY SCRIPT!",
  82. Image = "rbxassetid://4483345998",
  83. Time = 5
  84. })
  85.  
  86. --[[
  87. Title = <string> - The title of the notification.
  88. Content = <string> - The content of the notification.
  89. Image = <string> - The icon of the notification.
  90. Time = <number> - The duration of the notfication.
  91. ]]
  92.  
  93. OrionLib:Init()
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement