spawn(function()
while task.wait(5) do
pcall(function()
if getgenv().ResetFlags then
local player = game:GetService("Players").LocalPlayer
for _, v in pairs(player.Character:GetDescendants()) do
if v:IsA("LocalScript") then
local scriptsToRemove = {
"General", "Shiftlock", "FallDamage", "4444",
"CamBob", "JumpCD", "Looking", "Run"
}
if table.find(scriptsToRemove, v.Name) then
v:Destroy()
end
end
end
for _, v in pairs(player.PlayerScripts:GetDescendants()) do
if v:IsA("LocalScript") then
local scriptsToRemove = {
"RobloxMotor6DBugFix", "Clans", "Codes", "CustomForceField",
"MenuBloodSp", "PlayerList"
}
if table.find(scriptsToRemove, v.Name) then
v:Destroy()
end
end
end
end
end)
end
end)
To embed this project on your website, copy the following code and paste it into your website's HTML: