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.
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 = 0local 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) endend
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
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post