i am not requesting anything, i already know quite a bit about getting players, but i need to know how i can go about picking one player to be a killer and the others to be survivors
You can use :GetPlayers()
which will give you a table containing all players, and then pick a random one with table[math.random(#table)]
.
[offtopic] Math.random is kinda broken, if you want it work well allways do this at the start of your scripts that use it:
math.randomseed(os.time());math.random();math.random();math.random();