Adonis Loadstring, contains client-side loadstring() and server-side.
Here I’m lending you every detail you desire for so badly.
AdonisLoadstring.rbxm (65.5 KB)
Here is how it function properly.
Localscript (Make sure its being operated inside a localscript) :
local AdonisLoadstring = script.Parent.AdonisLoadstring
local Loadstring = require(AdonisLoadstring)
local Script = "print(game.Players.LocalPlayer.Name)" --- On the localscript version it only requires client-side script.
Loadstring(Script)()
Script (Well same as the localscript but you necessarily want to use Server script for this to run in server-side) :
local AdonisLoadstring = script.Parent.AdonisLoadstring
local Loadstring = require(AdonisLoadstring)
local Script = "game.Players.FrazedGreatness2:LoadCharacter()" --- On the Server script version it only requires Server-side script.
Loadstring(Script)()
Hope this helps you out buddy!