RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"create a serverscript that removes all parts called Part every 0.1 secs"
Here's a server script that will remove all parts named "Part" from the workspace every 0.1 seconds. Please note that this script will continuously run and delete parts named "Part," which may affect your game's performance if not used carefully. ```lua while wait(0.1) do for _, part in pairs(workspace:GetChildren()) do if part:IsA("Part") and part.Name == "Part" then part:Destroy() end end end ``` To use this script: 1. Create a Script object in ServerScriptService. 2. Copy and paste the code above into the script. 3. Run the game. Remember that this script will remove every part named "Part" in the workspace, so be sure this is what you want before implementing it. If you want to target a specific folder or area, you can adjust the script to search within that scope instead of the entire workspace.