You could clone a script with a load string and then define the loadstring with a string value inside said script.
ie inside your first script:
x=script.Script:clone()
x.Parent=workspace
x.Code.Value="code here"
inside the cloned script:
loadstring(script.Code.Value)
You'd also have to turn on the LoadStringEnabled property in ServerScriptStorage
(╯°□°)╯︵ ┻━┻ |