-- [[ APEX SCRIPTS - SECURED LOADER ]] -- -- Created by: mhmmedMazen 👑 | Origin: Iraq 🇮🇶 local function decrypt(data) local str = "" for _, v in ipairs(data) do str = str .. string.char(v) end return str end local KeyLink = decrypt({104,116,116,112,115,58,47,47,112,97,115,116,101,102,121,46,97,112,112,47,104,52,77,49,109,55,100,57,47,114,97,119}) local ScriptLink = decrypt({104,116,116,112,115,58,47,47,112,97,115,116,101,102,121,46,97,112,112,47,74,48,80,49,111,105,88,113,47,114,97,119}) local MyLinkToGetKey = decrypt({104,116,116,112,115,58,47,47,108,105,110,107,118,101,114,116,105,115,101,46,99,111,109,47,54,52,56,52,48,56,52,47,116,118,65,55,100,74,97,107,55,112,88,97,63,111,61,115,104,97,114,105,110,103}) local cfg = loadstring(game:HttpGet(KeyLink))() local CorrectKey = cfg.Key local CoreGui = game:GetService("CoreGui"):FindFirstChild("RobloxGui") or game:GetService("Players").LocalPlayer:WaitForChild("PlayerGui") if CoreGui:FindFirstChild("ApexKeySystem") then CoreGui["ApexKeySystem"]:Destroy() end local KeyGui = Instance.new("ScreenGui") KeyGui.Name = "ApexKeySystem" KeyGui.Parent = CoreGui KeyGui.ResetOnSpawn = false KeyGui.DisplayOrder = 999999 local Blocker = Instance.new("TextButton") Blocker.Size = UDim2.new(1, 0, 1, 0) Blocker.BackgroundColor3 = Color3.fromRGB(10, 10, 10) Blocker.BackgroundTransparency = 0.3 Blocker.Text = "" Blocker.AutoButtonColor = false Blocker.Parent = KeyGui local Frame = Instance.new("Frame") Frame.Size = UDim2.new(0, 450, 0, 240) Frame.Position = UDim2.new(0.5, -225, 0.5, -120) Frame.BackgroundColor3 = Color3.fromRGB(18, 18, 18) Frame.Parent = Blocker Instance.new("UICorner", Frame).CornerRadius = UDim.new(0, 12) local Stroke = Instance.new("UIStroke", Frame) Stroke.Thickness = 2 task.spawn(function() while KeyGui.Parent do Stroke.Color = Color3.fromHSV((tick()%4)/4, 1, 1); task.wait() end end) local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, 0, 0, 45) Title.BackgroundColor3 = Color3.fromRGB(28, 28, 28) Title.Text = "🔑 APEX SCRIPTS | KEY SYSTEM" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.Font = Enum.Font.SourceSansBold Title.TextSize = 16 Title.Parent = Frame Instance.new("UICorner", Title).CornerRadius = UDim.new(0, 12) local Info = Instance.new("TextLabel") Info.Size = UDim2.new(1, -20, 0, 40) Info.Position = UDim2.new(0, 10, 0, 50) Info.BackgroundTransparency = 1 Info.Text = "اضغط على 'Get Key' لنسخ الرابط وتخطي الإعلانات للحصول على الكود." Info.TextColor3 = Color3.fromRGB(200, 200, 200) Info.Font = Enum.Font.SourceSans Info.TextSize = 13 Info.TextWrapped = true Info.Parent = Frame local Box = Instance.new("TextBox") Box.Size = UDim2.new(0, 410, 0, 40) Box.Position = UDim2.new(0.5, -205, 0, 105) Box.PlaceholderText = "Paste your key here..." Box.Text = "" Box.BackgroundColor3 = Color3.fromRGB(30, 30, 30) Box.TextColor3 = Color3.fromRGB(255, 255, 255) Box.Font = Enum.Font.Code Box.TextSize = 14 Box.Parent = Frame Instance.new("UICorner", Box).CornerRadius = UDim.new(0, 6) local GetBtn = Instance.new("TextButton") GetBtn.Size = UDim2.new(0, 195, 0, 40) GetBtn.Position = UDim2.new(0, 20, 0, 165) GetBtn.Text = "Get Key (Copy Link)" GetBtn.BackgroundColor3 = Color3.fromRGB(150, 0, 200) GetBtn.TextColor3 = Color3.fromRGB(255, 255, 255) GetBtn.Font = Enum.Font.SourceSansBold GetBtn.TextSize = 15 GetBtn.Parent = Frame Instance.new("UICorner", GetBtn).CornerRadius = UDim.new(0, 6) local SubBtn = Instance.new("TextButton") SubBtn.Size = UDim2.new(0, 195, 0, 40) SubBtn.Position = UDim2.new(1, -215, 0, 165) SubBtn.Text = "Verify & Access" SubBtn.BackgroundColor3 = Color3.fromRGB(16, 124, 65) SubBtn.TextColor3 = Color3.fromRGB(255, 255, 255) SubBtn.Font = Enum.Font.SourceSansBold SubBtn.TextSize = 15 SubBtn.Parent = Frame Instance.new("UICorner", SubBtn).CornerRadius = UDim.new(0, 6) GetBtn.MouseButton1Click:Connect(function() setclipboard(MyLinkToGetKey) GetBtn.Text = "Copied!" task.wait(2) GetBtn.Text = "Get Key (Copy Link)" end) SubBtn.MouseButton1Click:Connect(function() if string.gsub(Box.Text, "%s+", "") == CorrectKey then SubBtn.Text = "Loading..." task.wait(1) KeyGui:Destroy() loadstring(game:HttpGet(ScriptLink))() else SubBtn.Text = "Invalid Key!" task.wait(1.5) SubBtn.Text = "Verify & Access" end end)