How do i insert 24 random players in a single table? Make the table like this
tributes = {}
local Players=game.Players:GetChildren() local Tributes={} for i=1,24 do local Num=math.random(1,#Players) local P=Players[Num] if P then table.insert(Tributes,P) table.remove(Players,Num) end end