local Players = game:GetService("Players") local TweenService = game:GetService("TweenService") local LocalPlayer = Players.LocalPlayer -- GUI principal local screenGui = Instance.new("ScreenGui", game.CoreGui) screenGui.Name = "FELIPEHUB_KeySystem" screenGui.ResetOnSpawn = false local mainFrame = Instance.new("Frame", screenGui) mainFrame.Size = UDim2.new(0, 400, 0, 280) mainFrame.Position = UDim2.new(0.5, -200, 0.5, -140) mainFrame.BackgroundColor3 = Color3.fromRGB(25, 25, 25) mainFrame.BorderSizePixel = 0 mainFrame.ClipsDescendants = true mainFrame.Visible = true mainFrame.Active = true mainFrame.Draggable = true local title = Instance.new("TextLabel", mainFrame) title.Size = UDim2.new(1, 0, 0, 30) title.BackgroundTransparency = 1 title.Text = "FELIPEHUB - Key System" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.Font = Enum.Font.GothamSemibold title.TextSize = 20 local keyBox = Instance.new("TextBox", mainFrame) keyBox.Position = UDim2.new(0.5, -150, 0, 50) keyBox.Size = UDim2.new(0, 300, 0, 40) keyBox.PlaceholderText = "Digite a key aqui" keyBox.Text = "" keyBox.Font = Enum.Font.Gotham keyBox.TextSize = 18 keyBox.TextColor3 = Color3.fromRGB(0, 0, 0) keyBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255) keyBox.BorderSizePixel = 0 local keyLabel = Instance.new("TextLabel", mainFrame) keyLabel.Position = UDim2.new(0.5, -150, 0, 95) keyLabel.Size = UDim2.new(0, 300, 0, 20) keyLabel.BackgroundTransparency = 1 keyLabel.Text = "Key: subscribefelipehub1" keyLabel.TextColor3 = Color3.fromRGB(200, 200, 200) keyLabel.Font = Enum.Font.Gotham keyLabel.TextSize = 14 keyLabel.TextXAlignment = Enum.TextXAlignment.Left local verifyButton = Instance.new("TextButton", mainFrame) verifyButton.Position = UDim2.new(0.5, -150, 0, 120) verifyButton.Size = UDim2.new(0, 140, 0, 35) verifyButton.Text = "Verificar Key" verifyButton.Font = Enum.Font.GothamBold verifyButton.TextSize = 18 verifyButton.TextColor3 = Color3.new(1,1,1) verifyButton.BackgroundColor3 = Color3.fromRGB(0, 170, 0) verifyButton.BorderSizePixel = 0 local copyButton = Instance.new("TextButton", mainFrame) copyButton.Position = UDim2.new(0.5, 10, 0, 120) copyButton.Size = UDim2.new(0, 140, 0, 35) copyButton.Text = "Copiar Discord" copyButton.Font = Enum.Font.GothamBold copyButton.TextSize = 18 copyButton.TextColor3 = Color3.new(1,1,1) copyButton.BackgroundColor3 = Color3.fromRGB(30, 100, 255) copyButton.BorderSizePixel = 0 -- Frame das opções com scroll local optionsFrame = Instance.new("Frame", screenGui) optionsFrame.Size = UDim2.new(0, 300, 0, 250) optionsFrame.Position = UDim2.new(0.5, -150, 0.5, -125) optionsFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) optionsFrame.BorderSizePixel = 0 optionsFrame.Visible = false optionsFrame.Active = true optionsFrame.Draggable = true local scroll = Instance.new("ScrollingFrame", optionsFrame) scroll.Size = UDim2.new(1, 0, 1, 0) scroll.CanvasSize = UDim2.new(0, 0, 0, 0) scroll.ScrollBarThickness = 6 scroll.BackgroundTransparency = 1 scroll.BorderSizePixel = 0 local layout = Instance.new("UIListLayout", scroll) layout.Padding = UDim.new(0, 6) layout.SortOrder = Enum.SortOrder.LayoutOrder -- Função para criar botão de opção local function criarOpcao(nome, func) local botao = Instance.new("TextButton", scroll) botao.Size = UDim2.new(1, -10, 0, 40) botao.Text = nome botao.Font = Enum.Font.GothamBold botao.TextSize = 18 botao.TextColor3 = Color3.new(1,1,1) botao.BackgroundColor3 = Color3.fromRGB(45, 45, 45) botao.BorderSizePixel = 0 botao.MouseButton1Click:Connect(function() optionsFrame.Visible = false mainFrame.Visible = false func() end) task.wait() scroll.CanvasSize = UDim2.new(0, 0, 0, layout.AbsoluteContentSize.Y + 10) end -- Adicionando as opções criarOpcao("Auto Bond (No Key)", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/aceurss/AcxScripter/refs/heads/main/AutoBondsForDeadRailsPro"))() end) criarOpcao("Capric Hub", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/aceurss/AcxScripter/refs/heads/main/CapriHub-DeadRails"))() end) criarOpcao("SpiderXHub", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/SpiderScriptRB/V2.0.9/refs/heads/main/Dead Rails No key system V2.0.9.txt"))() end) criarOpcao("Auto Bond (Key System)", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/thiennrb7/Script/refs/heads/main/autobond"))() end) criarOpcao("Skull Hub", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/hungquan99/SkullHub/main/loader.lua"))() end) criarOpcao("Native Hub (Key System)", function() loadstring(game:HttpGet("https://getnative.cc/script/loader"))() end) criarOpcao("Tora Isme", function() loadstring(game:HttpGet("https://rawscripts.net/raw/Dead-Rails-Alpha-Teleport-to-end-Collect-Bonds-Gun-Aura-Countdown-and-More-36205"))() end) criarOpcao("NatHub", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/ArdyBotzz/NatHub/refs/heads/master/NatHub.lua"))() end) criarOpcao("Than Hub", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/thantzy/thanhub/refs/heads/main/thanv1"))() end) criarOpcao("m00ndiety super op", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/m00ndiety/OP-AUTO-BONDS-V3/refs/heads/main/Keyless-BONDS-v3"))() end) -- Verificação da key verifyButton.MouseButton1Click:Connect(function() local keyDigitada = keyBox.Text if keyDigitada == "subscribefelipehub1" then mainFrame.Visible = false optionsFrame.Visible = true else keyBox.Text = "" keyBox.PlaceholderText = "Key incorreta!" end end) -- Copiar Discord copyButton.MouseButton1Click:Connect(function() setclipboard("https://discord.gg/yqx7kfc3") copyButton.Text = "Copiado!" task.wait(1.5) copyButton.Text = "Copiar Discord" end)