Trying to randomly tp an object to another object?
I've been working on a script, it's to teleport a tree(I'm going to add rocks as well) to a part called "ItemSpawns." It confuses me a bit because, one, I have to teleport as many trees as there are ItemSpawns left. And, two, teleporting two parts. (The trees need the 2nd part to be chopped down)
Here is the script-
01 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
02 | local Tree = ReplicatedStorage:WaitForChild( "Tree" ).Trunk |
03 | local TerrainSpawnFolder = workspace:WaitForChild( "TerrainSpawns" ) |
04 | local ItemSpawns = TerrainSpawnFolder:GetChildren() |
05 | local AvaiableItemSpawns = math.random( 1 ,#ItemSpawns) |
08 | local ClonedTree = Tree:Clone() |
09 | ClonedTree.Parent = workspace |
11 | for i, ClonedTree in pairs (AvaiableItemSpawns) do |
15 | ClonedTree.CFrame = AvaiableItemSpawns.CFrame |
16 | table.remove(AvaiableItemSpawns, i) |
It's giving me errors on line 15 like " ServerScriptService.GameManager.PlanetTerrain.TerrainSpawner:11: bad argument #1 to 'pairs' (table expected, got number)"
I understand why it's saying this, but, this is the only way I can think of doing this.
If you can help then, Thx