How to fix {...} printing instead of the player names in a table

I have a script that prints all the players in a table. But for some reason its printing {…} instead of my roblox name.

Script:

	local players = game:GetService("Players")
	local PlayerChildren = players:GetPlayers()
	
	for _, player in ipairs(PlayerChildren) do
		if player.Team == game:GetService("Teams"):FindFirstChild("hunter") then
			table.insert(currentSeeker,player.Name)
		end
	end
	print(currentSeeker)

image

I’m pretty sure this is intended. If you press the arrow, it opens up the table, and you should see your name in the table.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.