Remove all Attributes

The Plugin Archimedes did insert on all my Parts Attributes with a Id in it. Is there anything how i can remove all Attributes on the complete game? I cant do it manually, because there are 1000 Models and more on my Game.

you could probably do instance:setattribute(nil) in a for loop in the studio output window

for _,child in ipairs(game:GetDescendants()) do if child:IsA("Instance") then child:SetAttribute(nil) end end

this will remove every single attribute in your game, so watch out

Didnt know something like this works i have unnecessary run the game and copied entire thinks from the game all the time

Argument 1 missing or nil


for _,child in ipairs(workspace:GetDescendants()) do
	if typeof(child) == "Instance" then
		for a,_ in pairs(child:GetAttributes()) do
			child:SetAttribute(a, nil)
		end
	end
end

This should work.

2 Likes