Advertisement
Thecodeeasar

Untitled

Oct 14th, 2024
9
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.32 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2. local Window = OrionLib:MakeWindow({Name = "Universal Hub by wutdahell510 on Roblox", HidePremium = false, SaveConfig = true, ConfigFolder = "SaveConfig"})
  3.  
  4. -- Lists to store premium and YouTuber users
  5. local premiumUsers = {}
  6. local youtuberUsers = {}
  7.  
  8. -- Function to check if the user is wutdahell510 or has special status
  9. local function hasAccess(player, status)
  10. return player.Name:lower() == "wutdahell510" or status[player.Name] ~= nil
  11. end
  12.  
  13. -- Section for Non-Premium Scripts
  14. local NonPremiumTab = Window:MakeTab({
  15. Name = "Non-Premium Scripts",
  16. Icon = "rbxassetid://4483345998",
  17. PremiumOnly = false
  18. })
  19.  
  20. NonPremiumTab:AddButton({
  21. Name = "antikick",
  22. Callback = function()
  23. loadstring(game:HttpGet("https://raw.githubusercontent.com/Exunys/Anti-Kick/main/Anti%20Kick.lua"))()
  24. end
  25. })
  26.  
  27. NonPremiumTab:AddButton({
  28. Name = "coming soon...🤫🧏",
  29. Callback = function()
  30. print("This feature is coming soon!")
  31. end
  32. })
  33.  
  34. -- Section for Premium Scripts
  35. local PremiumTab = Window:MakeTab({
  36. Name = "Premium Scripts",
  37. Icon = "rbxassetid://4483345998",
  38. PremiumOnly = false
  39. })
  40.  
  41. PremiumTab:AddButton({
  42. Name = "(clientsided currently still beta.) ..kill all..🤫🧏",
  43. Callback = function()
  44. if hasAccess(game.Players.LocalPlayer, premiumUsers) then
  45. loadstring(game:HttpGet("https://pastebin.com/raw/ttUKUU1u"))()
  46. print("Kill all feature activated")
  47. else
  48. print("This feature is for premium users only.")
  49. end
  50. end
  51. })
  52.  
  53. -- Section for YouTuber Scripts
  54. local YouTuberTab = Window:MakeTab({
  55. Name = "YouTuber Scripts",
  56. Icon = "rbxassetid://4483345998",
  57. PremiumOnly = false
  58. })
  59.  
  60. YouTuberTab:AddButton({
  61. Name = "(beta..) fling all (not finished)",
  62. Callback = function()
  63. if hasAccess(game.Players.LocalPlayer, youtuberUsers) then
  64. loadstring(game:HttpGet("https://pastebin.com/raw/ttUKUU1u"))()
  65. print("Fling all feature activated")
  66. else
  67. print("This feature is for YouTubers only.")
  68. end
  69. end
  70. })
  71.  
  72. -- Section for Owner Controls
  73. local OwnerTab = Window:MakeTab({
  74. Name = "Owner Controls",
  75. Icon = "rbxassetid://4483345998",
  76. PremiumOnly = false
  77. })
  78.  
  79. OwnerTab:AddTextbox({
  80. Name = "Add Premium User",
  81. Default = "",
  82. TextDisappear = true,
  83. Callback = function(username)
  84. if game.Players.LocalPlayer.Name:lower() == "wutdahell510" then
  85. premiumUsers[username] = true
  86. print(username .. " added to premium users.")
  87. else
  88. print("Only the owner can add premium users.")
  89. end
  90. end
  91. })
  92.  
  93. OwnerTab:AddTextbox({
  94. Name = "Add YouTuber",
  95. Default = "",
  96. TextDisappear = true,
  97. Callback = function(username)
  98. if game.Players.LocalPlayer.Name:lower() == "wutdahell510" then
  99. youtuberUsers[username] = true
  100. print(username .. " added to YouTuber users.")
  101. else
  102. print("Only the owner can add YouTuber users.")
  103. end
  104. end
  105. })
  106.  
  107. -- Load the script from the provided URL
  108. loadstring(game:HttpGet("https://pastebin.com/raw/fT22KQyX"))()
  109.  
  110. OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement