Sorry, but I couldn't find anything anywhere telling me what i and v mean in scripts. Can you guys help?
for I,v in pairs(game.Players:GetPlayers()) --The Value is all the players in the game and the players property. v:remove() --Kicks all the players in your server. So preety much like a shutdown script. end
I'll add on to what has been said above.
The pairs or ipairs function calls information from a table you have already made.
For example:
t = {1,2,"a","d",c = 12, q = 20} -- your table for i,v in pairs(t) do print(i,v) end
This would output to:
1 1 2 2 3 a 4 d c 12 q 20
i and v are variables so you can change them to whichever you wish.