How to use setfenv to add custom requirements to global functions?
I need to sandbox my scriptbuilder so the players can't disconnect players, I have found out how to insert custom values like so:
07 | Workspace = workspace, |
13 | print = [ function (text) |
14 | game.ReplicatedStorage.PrintEvent:FireServer( tostring (text)) |
19 | link 2 string = HttpService:GetAsync( URL ) |
However, I have no idea how to do the above on global functions like ":Destroy()" or ":FindFirstChild()"
Without that, I cant keep players from disconnecting other players using the global destroy function.
So you can see, I need to know how to edit or disable those global functions otherwise it would be chaos.
So thats where I ask for your help, I have searched around the web and found no clear answer to this question.
A clear, easy to understand answer would make my day.