local Params = { RepoURL = "https://raw.githubusercontent.com/luau/SynSaveInstance/main/", SSI = "saveinstance" } local synsaveinstance = loadstring(game:HttpGet(Params.RepoURL .. Params.SSI .. ".luau", true))() local Options = { -- Core Settings FilePath = "FULL_GAME_DUMP_" .. game.PlaceId .. "_" .. tostring(os.time()) .. ".rbxlx", -- Auto unique name mode = "full", -- Dump FULL hierarki (game, workspace, RS, SS, player data) -- OP for Save System IsolateLocalPlayer = true, -- Isolate PlayerGui/Data folders CLEAN IsolateLocalPlayerCharacter = true, RemovePlayerCharacters = true, -- Skip characters, focus data SavePlayers = false, -- No player spam -- Decompile Hacks noscripts = true, -- DECOMPILE ALL SCRIPTS (baca source save funcs) SaveBytecode = true, -- Bonus bytecode buat advanced reverse DecompileTimeout = -1, -- No timeout, full decompile -- Stealth Mode SafeMode = true, -- Kick before save, 100% undetected AntiIdle = true, -- Anti 20min kick -- Optimize & Ignore Junk IgnoreDefaultProps = true, -- Skip default props, file lebih kecil IgnoreList = {"CoreGui", "CorePackages", "TextChatService"}, -- Skip Roblox core DecompileIgnore = {"TextChatService"}, -- Skip decompile junk ShowStatus = true -- Progress bar di console } print("=== USSI DUMPER STARTING ===") print("Target: FULL GAME + SAVE SYSTEM") print("Output: " .. Options.FilePath) synsaveinstance(Options) print("DUMP COMPLETE! Kirim file .rbxlx ke gue NOW.") setclipboard(Options.FilePath) -- Copy nama file ke clipboard