Forum > Scripts >

Help with making a game copier. FOR JJ-SPLOIT

New Reply

Posts: 4

Threads: 3

Joined: Feb, 2026

Reputation: 0

Posted

Can sombody make a script that lets me copy games into roblox studio. not just blocks/parts, but scripts,gui and all. i just want it to save as a roblox studio game file and try to make it a draggable hub that has buttons. make sure it as a copy all button.

 

  • 0

  • Comment

Posts: 3

Threads: 1

Joined: Feb, 2026

Reputation: 0

Replied

Run this: (won't save the game it's just to check if ur executor can even support saving the game or parts of a game)

 

local FuncRequired = {
    ["saveinstance"] = "Required to save the map and assets.", --map and assets just means parts/UIs and what not
    ["decompile"] = "Required to save scripts (LocalScripts/Modules).", --u cant save non local/module scripts
    ["writefile"] = "Required to save the actual file to your folder.", --self explanatory
    ["getscripts"] = "Required to locate scripts in the game." --also self explanatory
}

 

local PassedCount = 0
local TotalRequired = 0

for func, description in pairs(FuncRequired) do
    TotalRequired = TotalRequired + 1
    if getgenv()[func] or _G[func] or func == "saveinstance" and (saveinstance or syn_saveinstance) then
        print("This function: " .. func .. ": is supported!")
        passedCount = passedCount + 1
    else
        print("This function: " .. func .. ": is missing in ur envrionment")
        print("Information : " .. description)
    end
end

if PassedCount == TotalRequired then
    print("Full compatibility (defintley won't print this for JJSploit lol)")
elseif PassedCount > 0 then
    print("Wow, better than 0 tbh")
else
    print("Get a better executor <3")
end

  • 0

  • Comment

Login to unlock the reply editor

Add your reply

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )