Hey, I am making a plugin for increasing development speed and adding some QOL features to the roblox studio working environment.
For the plugin I still got few things left:
1: The possibility to run a stringed code block.
Here’s an example for what I mean:
Local TemplateScript = game.ServerScriptService:WaitForChild("TemplateScript")
Function run(block)
--do something to make it work
end
run(TemplateScript.Source)
This code will run a script same as the TemplateScript, if the code in the script TemplateScript is
print("hello")
then the function will run the code
print("hello")
and will print
hello
2: Create, write and read a .txt or a .lua file to save the stringed code on. DataStoreService isn’t good for my need as it has to be possible to move data between places and games I am in on studio. This is in continuation to the first thing I mentioned I need.
Another option instead of creating, writing and reading files, is to be able to copy text to the clipboard like ctrl+c without selecting the text, by just pressing a button.
If anybody has an idea or knows how to do it, please comment it.