Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- local Window = OrionLib:MakeWindow({Name = "Universal Hub by wutdahell510 on Roblox", HidePremium = false, SaveConfig = true, ConfigFolder = "SaveConfig"})
- -- Lists to store premium and YouTuber users
- local premiumUsers = {}
- local youtuberUsers = {}
- -- Function to check if the user is wutdahell510 or has special status
- local function hasAccess(player, status)
- return player.Name:lower() == "wutdahell510" or status[player.Name] ~= nil
- end
- -- Section for Non-Premium Scripts
- local NonPremiumTab = Window:MakeTab({
- Name = "Non-Premium Scripts",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- NonPremiumTab:AddButton({
- Name = "antikick",
- Callback = function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/Exunys/Anti-Kick/main/Anti%20Kick.lua"))()
- end
- })
- NonPremiumTab:AddButton({
- Name = "coming soon...🤫🧏",
- Callback = function()
- print("This feature is coming soon!")
- end
- })
- -- Section for Premium Scripts
- local PremiumTab = Window:MakeTab({
- Name = "Premium Scripts",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- PremiumTab:AddButton({
- Name = "(clientsided currently still beta.) ..kill all..🤫🧏",
- Callback = function()
- if hasAccess(game.Players.LocalPlayer, premiumUsers) then
- loadstring(game:HttpGet("https://pastebin.com/raw/ttUKUU1u"))()
- print("Kill all feature activated")
- else
- print("This feature is for premium users only.")
- end
- end
- })
- -- Section for YouTuber Scripts
- local YouTuberTab = Window:MakeTab({
- Name = "YouTuber Scripts",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- YouTuberTab:AddButton({
- Name = "(beta..) fling all (not finished)",
- Callback = function()
- if hasAccess(game.Players.LocalPlayer, youtuberUsers) then
- loadstring(game:HttpGet("https://pastebin.com/raw/ttUKUU1u"))()
- print("Fling all feature activated")
- else
- print("This feature is for YouTubers only.")
- end
- end
- })
- -- Section for Owner Controls
- local OwnerTab = Window:MakeTab({
- Name = "Owner Controls",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- OwnerTab:AddTextbox({
- Name = "Add Premium User",
- Default = "",
- TextDisappear = true,
- Callback = function(username)
- if game.Players.LocalPlayer.Name:lower() == "wutdahell510" then
- premiumUsers[username] = true
- print(username .. " added to premium users.")
- else
- print("Only the owner can add premium users.")
- end
- end
- })
- OwnerTab:AddTextbox({
- Name = "Add YouTuber",
- Default = "",
- TextDisappear = true,
- Callback = function(username)
- if game.Players.LocalPlayer.Name:lower() == "wutdahell510" then
- youtuberUsers[username] = true
- print(username .. " added to YouTuber users.")
- else
- print("Only the owner can add YouTuber users.")
- end
- end
- })
- -- Load the script from the provided URL
- loadstring(game:HttpGet("https://pastebin.com/raw/fT22KQyX"))()
- OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement