RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a script that unanchors all parts in workspace excluding terrain and Base"
-- This mode only specializes in Module scripts, we recommend using another appropriate mode for getting better responses for this query -- local script (Workspace) for _, part in ipairs(workspace:GetDescendants()) do if part:IsA("BasePart") and part.Name ~= "Terrain" and part.Name ~= "Base" then part.Anchored = false end end