So i am working on a system where i put every single enemy in a table. But the enemies have the same name. How can i get both enemies?
Note: there will be other names in the table as well.
local Enemytable = {
ememy = Vector3.new() -- basicly the position of the enemy, its irrelevant
ememy = Vector3.new()
ememy = Vector3.new()
Enemy2 = Vector3.new
}
As you can see, i have 3 “enemy” + Enemy2. How can i seperate them from eachother?
So: How can i print both Positions?