Observe()
if(!ingame)
var/list/Playerz = new()
for(var/mob/Player/P in world)
var/mob/Player/P = input(src,"Chose someone to observe.") as null|mob in PlayerzPlayerz += P
if(!P)
elsereturn
src.client.eye = P
src.client.eye = P
I get the list of players an all, but when I choose one, my screen goes black. Any insights? Thanks.