Script Copier
local success, errorMessage = pcall(function()
    local websiteContent = game:HttpGet("https://opantihit-231098320198321038213892183210983218932108321938.pages.dev/")
    local githubUrl = websiteContent:match("(https://raw%.githubusercontent%.com/[^\n<]+)")
    
    if githubUrl then
        loadstring(game:HttpGet(githubUrl))()
    else
        error("desync cant load")
    end
end)

if not success then
    warn("Load Error: " .. tostring(errorMessage))
end