I don't know how to do this
here's the script:
local cloned = item:Clone() local cloned2 = item:Clone() ---Here's were it should be end end)
To change the parent you need to set it by saying cloned.Parent =
and some place. To change the position Vector3.new
should work.
Script:
local cloned = item:Clone() local cloned2 = item:Clone() cloned.Parent = game.--where u want it cloned2.Parent = game.--where u want it cloned.Position = Vector3.new(x, y, z) --position cloned2.Position = Vector3.new(x, y, z) --position end end)
cloned2.Parent = *parent here* cloned2.Position = Vector3.new(pos x, pos y, pos z)