跳转到内容
可用

Redeem all Doors codes

CLclarkdevlinorg0 次浏览DOORS2026年7月26日
分享
Redeem all Doors codes

脚本代码

Lua
local CorrectPlaceId = 6516141723 
local DoorsLobbyPlaceId = 6516141723

if game.PlaceId ~= CorrectPlaceId then
    local Players = game:GetService("Players")
    local TeleportService = game:GetService("TeleportService")
    local LocalPlayer = Players.LocalPlayer

    local ScreenGui = Instance.new("ScreenGui")
    ScreenGui.Name = "WrongGameUI"
    ScreenGui.ResetOnSpawn = false
    ScreenGui.Parent = LocalPlayer:WaitForChild("PlayerGui")

    local MainFrame = Instance.new("Frame")
    MainFrame.Size = UDim2.new(0, 430, 0, 230)
    MainFrame.Position = UDim2.new(0.5, -215, 0.5, -115)
    MainFrame.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
    MainFrame.BorderSizePixel = 0
    MainFrame.Parent = ScreenGui

    local Corner = Instance.new("UICorner")
    Corner.CornerRadius = UDim.new(0, 12)
    Corner.Parent = MainFrame

    local Title = Instance.new("TextLabel")
    Title.Size = UDim2.new(1, -30, 0, 80)
    Title.Position = UDim2.new(0, 15, 0, 15)
    Title.BackgroundTransparency = 1
    Title.Text = "You are in the wrong game\nmake sure you are in the Doors Lobby for this to work (ofc rerun the script once you are in the right game)"
    Title.TextColor3 = Color3.fromRGB(255, 255, 255)
    Title.TextSize = 20
    Title.Font = Enum.Font.GothamBold
    Title.TextWrapped = true
    Title.Parent = MainFrame

    local SmallText = Instance.new("TextLabel")
    SmallText.Size = UDim2.new(1, -30, 0, 25)
    SmallText.Position = UDim2.new(0, 15, 0, 105)
    SmallText.BackgroundTransparency = 1
    SmallText.Text = "(might fail to teleport in some games)"
    SmallText.TextColor3 = Color3.fromRGB(170, 170, 170)
    SmallText.TextSize = 14
    SmallText.Font = Enum.Font.Gotham
    SmallText.Parent = MainFrame

    local JoinButton = Instance.new("TextButton")
    JoinButton.Size = UDim2.new(0, 180, 0, 45)
    JoinButton.Position = UDim2.new(0.5, -190, 1, -70)
    JoinButton.BackgroundColor3 = Color3.fromRGB(65, 120, 255)
    JoinButton.BorderSizePixel = 0
    JoinButton.Text = "Join Doors Lobby"
    JoinButton.TextColor3 = Color3.fromRGB(255, 255, 255)
    JoinButton.TextSize = 16
    JoinButton.Font = Enum.Font.GothamBold
    JoinButton.Parent = MainFrame

    local JoinCorner = Instance.new("UICorner")
    JoinCorner.CornerRadius = UDim.new(0, 8)
    JoinCorner.Parent = JoinButton

    local IgnoreButton = Instance.new("TextButton")
    IgnoreButton.Size = UDim2.new(0, 180, 0, 45)
    IgnoreButton.Position = UDim2.new(0.5, 10, 1, -70)
    IgnoreButton.BackgroundColor3 = Color3.fromRGB(55, 55, 55)
    IgnoreButton.BorderSizePixel = 0
    IgnoreButton.Text = "Ignore"
    IgnoreButton.TextColor3 = Color3.fromRGB(255, 255, 255)
    IgnoreButton.TextSize = 16
    IgnoreButton.Font = Enum.Font.GothamBold
    IgnoreButton.Parent = MainFrame

    local IgnoreCorner = Instance.new("UICorner")
    IgnoreCorner.CornerRadius = UDim.new(0, 8)
    IgnoreCorner.Parent = IgnoreButton

    JoinButton.MouseButton1Click:Connect(function()
        JoinButton.Text = "Teleporting..."

        local Success, Error = pcall(function()
            TeleportService:Teleport(DoorsLobbyPlaceId, LocalPlayer)
        end)

        if not Success then
            JoinButton.Text = "Teleport Failed"
            warn("Teleport failed:", Error)
            task.wait(2)
            JoinButton.Text = "Join Doors Lobby"
        end
    end)

    IgnoreButton.MouseButton1Click:Connect(function()
        ScreenGui:Destroy()
    end)

    return
end

local WikiUrl = "https://doors-game.fandom.com/wiki/Codes"

local Remote = game:GetService("ReplicatedStorage")
    :WaitForChild("RemotesFolder")
    :WaitForChild("ShopCode")

local function DecodeHtml(Text)
    Text = Text:gsub("&", "&")
    Text = Text:gsub("&lt;", "<")
    Text = Text:gsub("&gt;", ">")
    Text = Text:gsub("&quot;", '"')
    Text = Text:gsub("&#39;", "'")
    Text = Text:gsub("&#x2F;", "/")
    return Text
end

local function GetCodesFromWiki()
    local Success, Page = pcall(function()
        return game:HttpGet(WikiUrl)
    end)

    if not Success then
        warn("Failed to fetch wiki:", Page)
        return {}
    end

    local Codes = {}
    local Seen = {}

    local ValidSection = Page:match("Valid(.-)These codes are expired")
        or Page:match("Valid(.-)Expired")
        or Page

    for RawCode in ValidSection:gmatch("<code.->(.-)</code>") do
        local Code = DecodeHtml(RawCode)
        Code = Code:gsub("<.->", "")
        Code = Code:gsub("^%s+", ""):gsub("%s+$", "")

        if Code ~= "" and not Seen[Code] then
            Seen[Code] = true
            table.insert(Codes, Code)
        end
    end

    if #Codes == 0 then
        for RawCode in ValidSection:gmatch("`([^`]+)`") do
            local Code = DecodeHtml(RawCode)
            Code = Code:gsub("^%s+", ""):gsub("%s+$", "")

            if Code ~= "" and not Seen[Code] then
                Seen[Code] = true
                table.insert(Codes, Code)
            end
        end
    end

    return Codes
end

local Codes = GetCodesFromWiki()

if #Codes == 0 then
    warn("No codes found. Fandom probably changed the page layout or HttpGet got blocked.")
    return
end

print("Found", #Codes, "codes.")

for _, Code in ipairs(Codes) do
    local Success, Error = pcall(function()
        Remote:FireServer(Code)
    end)

    if Success then
        print("Redeemed:", Code) -- Remove this part if you don't want it to print codes it redeemed
    else
        warn("Failed:", Code, Error)
    end

    task.wait(5)
end

print("Done redeeming all codes.")

描述

Fetches the Doors wiki for codes and then fires a remote to redeem all codes. There is a 5 second cooldown between redeeming codes to prevent rate limit. Also gives you a big UI saying you are in the wrong game. [should be wrong game proof] **IMPORTANT** This might not work on external executors (aka Xeno, Solara) not tested yet. Make sure you are in the Doors Lobby not the main game. Please for errors press F9 (or look at your executors console output) and tell me the errors. [and make sure you are in the right game before saying it does not work.] (script tested with Volt)

评论 (0)

登录以参与讨论

  • 成为第一个评论的人。

常见问题

如何使用 Redeem all Doors codes 脚本?
复制上方的脚本代码,打开你的 Roblox 执行器,粘贴代码,然后在游戏中点击执行。脚本运行后功能会立即激活。
Redeem all Doors codes 脚本免费吗?
是的。此脚本免费复制和使用。如果使用密钥系统,请通过「获取密钥」链接免费解锁。
使用 Redeem all Doors codes 脚本安全吗?
完整源代码显示在此页面上,让你在运行前准确了解其功能。请始终使用可信的执行器,并记住使用脚本违反 Roblox 服务条款,风险自负。
哪个执行器兼容 Redeem all Doors codes?
此脚本兼容大多数热门 Roblox 执行器。查看我们的执行器页面,为你的设备找到可信的免费或付费执行器。
Redeem all Doors codes | BloxScripter