An open API service indexing awesome lists of open source software.

https://github.com/uncertainlyround/modulesaver

Used to convert information from a module into lua format. Utilises the require() function. Scripted by @ForleakenRBLX
https://github.com/uncertainlyround/modulesaver

decompile lua modulescript roblox save savegame saveinstance universal

Last synced: about 1 year ago
JSON representation

Used to convert information from a module into lua format. Utilises the require() function. Scripted by @ForleakenRBLX

Awesome Lists containing this project

README

          

# Module Saver
Used to convert information from a module into lua format. Utilises the require() function.

Scripted by [@ForleakenRBLX](https://www.youtube.com/@ForleakenRBLX)

You may use this script freely, but please **CREDIT ME WHEN MAKING MODIFICATIONS TO THE SOURCE CODE**

# Loadstring
```lua
-- SETTINGS --
_G.ModuleToBeSaved =
_G.SaveAsFile = true
_G.CopyToClipboard = false
-- LOADSTRING --
loadstring(game:HttpGet("https://raw.githubusercontent.com/UncertainlyRound/ModuleSaver/refs/heads/main/main.lua"))()
```