I want to run some code in the command bar to disable ALL scripts. That means modulescripts,locals,scripts.
But using:
for i,v in pairs(game:GetDescendants()) do if v:IsA("Script") then v.Disabled = true end end
runs into some Terrain.Locked kinda stuff:
The permissions are not granted. So I need help making a script that does what I want without getting shot down by some authority fail safe like this.