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

Why is this Regeneration Script not working properly?

Asked by 6 years ago
Edited 6 years ago

can anyone point out the error with this code - it seems to be "grammatically" fine but when it runs i get the following error ""The Parent property of Map1 is locked, current parent: NULL, new parent Workspace""

yours - goku

01local map = game.Workspace.Map1
02map.Parent = game.ServerStorage
03local mapCopy = map:Clone()
04local mapCopy
05local function Regen()
06    wait(6)
07    mapCopy:destroy()
08    mapCopy.Parent = game.Workspace
09    wait(3)
10end
11 
12mapCopy.Parent = game.Workspace
13while true do
14    Regen()
15end
0
if you want any more information just ask and ill be happy to awnser ScriptingNubs 55 — 6y
0
Please use code blocks User#19524 175 — 6y
0
sorry just realized that -once again sorry for my insolence ill fix if up now ScriptingNubs 55 — 6y

1 answer

Log in to vote
1
Answered by
Azuc 112
6 years ago
Edited 6 years ago

It was a little hard to read what your script exactly said due to it not being in code blocks but I believe the following code will do exactly what you are trying to do:

01local StoredMap = game:GetService("ServerStorage").Map1  --//Location of stored map.
02 
03local function Regen()
04    wait(6)
05    game.Workspace:FindFirstChild("Map1"):Destroy()  --//Remove copy from Workspace.
06    wait()
07    local Copy = StoredMap:Clone() --//Clone copy from Server Storage.
08    Copy.Parent = game.Workspace --// Insert new copy.
09end
10 
11while true do
12    Regen() --//Run the regen function.
13end
Ad

Answer this question