You can write your topic however you want, but you need to answer these questions:
-
What do you want to achieve? Every part in one part collapsing
-
What is the issue? no detection
-
What solutions have you tried so far? none
After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
Why does it not work
print("Yes load")
local found = false
local v = workspace.Ring
local part = workspace.Ring
while wait() do
print"oofa"
print(found)
local region = Region3.new(v.Position - (v.Size/2), v.Position + (v.Size/2))
local FoundParts = workspace:FindPartsInRegion3WithWhiteList(region, script.Parent:GetDescendants())
print(#FoundParts)
if #FoundParts > 0 then
found = true
for i, v in pairs(FoundParts) do
if v:IsA("Part") then
v.Anchored = false
end
end
end
end
Please do not ask people to write entire scripts or design entire systems for you. If you can’t answer the three questions above, you should probably pick a different category.