Hi, I'm trying to COLLIDE the Handle part of Accessories, but it doesn't let me
elseif object.ClassName == "Accessory" then while not object.Handle.CanCollide do object.Handle.CanCollide = true wait() end else --...
Am I doing something wrong? I wrote most of this code way long ago so it's possible.
EDIT: Fixed
Every part has an option called "Anchored" in the properties, so if you replace "CanCollide" with "Anchored" it should work
elseif object.ClassName == "Accessory" then while not object.Handle.Anchored do ----- in this you can leave it CanCollide but it depends on what you are trying to do object.Handle.Anchored = true wait() end else --...