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

How Can I Make A Part Teleport From ServerStorarge To The Workspace every 10 sec?

Asked by 9 years ago

here is my code

1while true do
2local Part = game.ServerStorage.Part:Clone
3Part.Parent = game.Workspace
4wait (10)

the error is this The Parent property of Part is locked, current parent: NULL, new parent RoundMap

1 answer

Log in to vote
-1
Answered by 9 years ago
1while true do
2local Part = game.ServerStorage.Part:Clone()
3Part.Parent = game.Workspace
4wait(10)
5end

Or you can do

1while true do
2local Part = game.ServerStorage.Part:Clone().Parent = game.Workspace
3wait(10)
4end
0
Please explain what you're doing. Just supplying code doesn't help anyone learn. Elaborate on your answer. Goulstem 8144 — 9y
0
ok thanks so much for your help zangdragonoid 0 — 9y
Ad

Answer this question