local HttpService = game:GetService("HttpService") local TweenService = game:GetService("TweenService") local LocalPlayer = game:GetService("Players").LocalPlayer local API_URL = "https://milkykey.onrender.com" local DISCORD_URL = "https://discord.gg/dZwE6aMnZC" local function checkWhitelist() local url = API_URL .. "/check?user=" .. HttpService:UrlEncode(LocalPlayer.Name) local success, result = pcall(function() local response = HttpService:JSONDecode(game:HttpGet(url)) return response end) if success and result then return result.allowed end return false end local function loadHub() print("✅ Access Verified for " .. LocalPlayer.Name .. "! Launching Milky Hub...") local Rayfield = loadstring(game:HttpGet("https://sirius.menu/rayfield"))() local Window = Rayfield:CreateWindow({ Name = "🥛 Milky Hub", Icon = 0, LoadingTitle = "Milky Hub", LoadingSubtitle = "by Milky", Theme = "Default", ConfigurationSaving = { Enabled = true, FolderName = "MilkyHubConfig", FileName = "Settings" }, KeySystem = false }) local ReplicatedStorage = game:GetService("ReplicatedStorage") local seasonRemote = nil local remoteExists = false local success, remote = pcall(function() return ReplicatedStorage :WaitForChild("Packages") :WaitForChild("_Index") :WaitForChild("sleitnick_knit@1.7.0") :WaitForChild("knit") :WaitForChild("Services") :WaitForChild("SeasonService") :WaitForChild("RF") :WaitForChild("RequestRankedReward") end) remoteExists = success seasonRemote = remote local automationsTab = Window:CreateTab("Automations", 4483362458) automationsTab:CreateToggle({ Name = "🎰 Lucky Spins", CurrentValue = false, Flag = "Toggle_Spins", Callback = function(state) _G.L = state task.spawn(function() while _G.L do if remoteExists and seasonRemote then pcall(function() seasonRemote:InvokeServer(1) end) end task.wait(0.5) end end) end }) automationsTab:CreateToggle({ Name = "💰 Auto Yen", CurrentValue = false, Flag = "Toggle_Yen", Callback = function(state) _G.Y = state task.spawn(function() while _G.Y do if remoteExists and seasonRemote then pcall(function() seasonRemote:InvokeServer(2) end) end task.wait(0.6) end end) end }) automationsTab:CreateToggle({ Name = "⚡ Auto Habilidades", CurrentValue = false, Flag = "Toggle_Skills", Callback = function(state) _G.H = state task.spawn(function() while _G.H do if remoteExists and seasonRemote then pcall(function() seasonRemote:InvokeServer(4) end) end task.wait(1.5) end end) end }) Rayfield:Notify({ Title = "Milky Hub Loaded", Content = "Welcome to Milky Hub! 24h Pass Active.", Duration = 5 }) end if checkWhitelist() then loadHub() else (function() local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local UICorner = Instance.new("UICorner") local UIStroke = Instance.new("UIStroke") local TitleLabel = Instance.new("TextLabel") local SubtitleLabel = Instance.new("TextLabel") local AccountFrame = Instance.new("Frame") local AccountUICorner = Instance.new("UICorner") local AccountLabel = Instance.new("TextLabel") local InstructionsLabel = Instance.new("TextLabel") local StatusLabel = Instance.new("TextLabel") local CopyButton = Instance.new("TextButton") local ButtonUICorner = Instance.new("UICorner") local ButtonUIStroke = Instance.new("UIStroke") ScreenGui.Name = "MilkyVerifyUI" ScreenGui.Parent = game:GetService("CoreGui") or LocalPlayer:WaitForChild("PlayerGui") Frame.Name = "MainFrame" Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(12, 12, 14) Frame.Position = UDim2.new(0.5, -200, 0.5, -145) Frame.Size = UDim2.new(0, 400, 0, 290) Frame.Active = true Frame.Draggable = true UICorner.CornerRadius = UDim.new(0, 12) UICorner.Parent = Frame UIStroke.Parent = Frame UIStroke.Thickness = 2 UIStroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border task.spawn(function() local hue = 0 while Frame.Parent do hue = (hue + 0.005) % 1 UIStroke.Color = Color3.fromHSV(hue, 0.8, 1) task.wait(0.03) end end) TitleLabel.Parent = Frame TitleLabel.BackgroundTransparency = 1 TitleLabel.Position = UDim2.new(0, 0, 0, 15) TitleLabel.Size = UDim2.new(1, 0, 0, 25) TitleLabel.Font = Enum.Font.GothamBold TitleLabel.Text = "🥛 MILKY HUB" TitleLabel.TextColor3 = Color3.fromRGB(255, 255, 255) TitleLabel.TextSize = 20 SubtitleLabel.Parent = Frame SubtitleLabel.BackgroundTransparency = 1 SubtitleLabel.Position = UDim2.new(0, 0, 0, 40) SubtitleLabel.Size = UDim2.new(1, 0, 0, 18) SubtitleLabel.Font = Enum.Font.GothamMedium SubtitleLabel.Text = "Verification Pass Required" SubtitleLabel.TextColor3 = Color3.fromRGB(150, 150, 160) SubtitleLabel.TextSize = 12 AccountFrame.Parent = Frame AccountFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 24) AccountFrame.Position = UDim2.new(0.08, 0, 0.28, 0) AccountFrame.Size = UDim2.new(0.84, 0, 0, 35) AccountUICorner.CornerRadius = UDim.new(0, 8) AccountUICorner.Parent = AccountFrame AccountLabel.Parent = AccountFrame AccountLabel.BackgroundTransparency = 1 AccountLabel.Size = UDim2.new(1, 0, 1, 0) AccountLabel.Font = Enum.Font.GothamBold AccountLabel.Text = "👤 Account: " .. LocalPlayer.Name AccountLabel.TextColor3 = Color3.fromRGB(0, 230, 180) AccountLabel.TextSize = 13 InstructionsLabel.Parent = Frame InstructionsLabel.BackgroundTransparency = 1 InstructionsLabel.Position = UDim2.new(0.08, 0, 0.44, 0) InstructionsLabel.Size = UDim2.new(0.84, 0, 0, 35) InstructionsLabel.Font = Enum.Font.Gotham InstructionsLabel.Text = "Join our Discord and run: /verify " .. LocalPlayer.Name .. "\nYour pass will unlock automatically!" InstructionsLabel.TextColor3 = Color3.fromRGB(200, 200, 210) InstructionsLabel.TextSize = 12 InstructionsLabel.TextWrapped = true StatusLabel.Parent = Frame StatusLabel.BackgroundTransparency = 1 StatusLabel.Position = UDim2.new(0, 0, 0.6, 0) StatusLabel.Size = UDim2.new(1, 0, 0, 20) StatusLabel.Font = Enum.Font.GothamMedium StatusLabel.Text = "🔄 Waiting for Discord verification..." StatusLabel.TextColor3 = Color3.fromRGB(255, 180, 0) StatusLabel.TextSize = 12 CopyButton.Parent = Frame CopyButton.BackgroundColor3 = Color3.fromRGB(25, 25, 32) CopyButton.Position = UDim2.new(0.08, 0, 0.74, 0) CopyButton.Size = UDim2.new(0.84, 0, 0, 42) CopyButton.Font = Enum.Font.GothamBold CopyButton.Text = "📋 COPY DISCORD LINK" CopyButton.TextColor3 = Color3.fromRGB(255, 255, 255) CopyButton.TextSize = 13 ButtonUICorner.CornerRadius = UDim.new(0, 8) ButtonUICorner.Parent = CopyButton ButtonUIStroke.Parent = CopyButton ButtonUIStroke.Thickness = 1 ButtonUIStroke.Color = Color3.fromRGB(60, 60, 80) CopyButton.MouseEnter:Connect(function() TweenService:Create(CopyButton, TweenInfo.new(0.2), { BackgroundColor3 = Color3.fromRGB(35, 35, 45) }):Play() end) CopyButton.MouseLeave:Connect(function() TweenService:Create(CopyButton, TweenInfo.new(0.2), { BackgroundColor3 = Color3.fromRGB(25, 25, 32) }):Play() end) CopyButton.MouseButton1Click:Connect(function() if setclipboard then setclipboard(DISCORD_URL) CopyButton.Text = "✅ DISCORD LINK COPIED!" CopyButton.TextColor3 = Color3.fromRGB(0, 255, 150) task.wait(2.5) CopyButton.Text = "📋 COPY DISCORD LINK" CopyButton.TextColor3 = Color3.fromRGB(255, 255, 255) return end CopyButton.Text = DISCORD_URL end) task.spawn(function() repeat task.wait(3) until checkWhitelist() StatusLabel.Text = "⚡ Verification Detected! Loading..." StatusLabel.TextColor3 = Color3.fromRGB(0, 255, 150) task.wait(1) ScreenGui:Destroy() loadHub() end) end)() end