--[[ ____ _ | __ ) ___ ___ | |_ ___ _ __ __ _ _ __ _ __ ___ _ __ | _ \ / _ \ / _ \| __/ __| '__/ _` | '_ \| '_ \ / _ \ '__| | |_) | (_) | (_) | |_\__ \ | | (_| | |_) | |_) | __/ | |____/ \___/ \___/ \__|___/_| \__,_| .__/| .__/ \___|_| |_| |_| ]] local script_url = "https://gist.githubusercontent.com/Null232323/8ab2bcb3a738df5e8629b10a9afc2823/raw/7b81ab0485f7fea8879d7575a879feaceaf12dc7/gistfile1.txt" local ok, content = pcall(game.HttpGet, game, script_url, true) if ok and content then local func, err = loadstring(content, "ProjectSurvivalHub") if func then task.spawn(func) else warn("Critical Error: 109") end else warn("Error on booting") end