#How to delete all duplicate assets in the EXACT same positions?

6 messages · Page 1 of 1 (latest)

sonic pikeBOT
#

studio** You are now Level 1! **studio

worn lotus
#

Ctrl+d

#

oh no

#

hmm

#
local original = {}

for _,v in workspace:GetDescendants() do
  if not v:IsA"BasePart" then continue end
  if not original[v.Position] then
    original[v.Position] = v
  else
    v:Destroy()
  end
end
#

run this as server NOT in command bar just to be safe cus i didnt test the script