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
01 | local map = game.Workspace.Map 1 |
02 | map.Parent = game.ServerStorage |
03 | local mapCopy = map:Clone() |
04 | local mapCopy |
05 | local function Regen() |
06 | wait( 6 ) |
07 | mapCopy:destroy() |
08 | mapCopy.Parent = game.Workspace |
09 | wait( 3 ) |
10 | end |
11 |
12 | mapCopy.Parent = game.Workspace |
13 | while true do |
14 | Regen() |
15 | end |
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:
01 | local StoredMap = game:GetService( "ServerStorage" ).Map 1 --//Location of stored map. |
02 |
03 | local 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. |
09 | end |
10 |
11 | while true do |
12 | Regen() --//Run the regen function. |
13 | end |