Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

how do i make parts regenerate?

Asked by 4 years ago

so basically im a beginner scripter and i have this script

local UnAnchorer = script.Parent
local Parts = workspace.UnAnchorParts:GetChildren()

UnAnchorer.Touched:Connect(function()
  for i,v in pairs (Parts) do
    v.Anchored = false

It makes all parts in a model unanchor but now i need to make them regenerate and i dont really know how :/

0
Make a clone of the parts User#24403 69 — 4y
0
no like i mean there is a brick that if u step on it unanchors these parts and i want to make them regenerate after 3 seconds TFlanigan 86 — 4y
0
Loop through the model, unanchor, then clone the model when it is anchored and put it in workspace. Thesquid13 301 — 4y

Answer this question