local P1_URL = "https://raw.githubusercontent.com/SigmaOhio69/sigmaman/refs/heads/main/P1" local P2_URL = "https://raw.githubusercontent.com/SigmaOhio69/sigmaman/refs/heads/main/P2" local function loadScript(url, name) local success, response = pcall(function() return game:HttpGet(url) end) if not success then warn(name .. " failed to download") return false end local func, err = loadstring(response) if not func then warn(name .. " failed to load:", err) return false end print(name .. " loaded") func() return true end if loadScript(P1_URL, "P1") then task.wait(1) loadScript(P2_URL, "P2") end