Scripting/Squirrel/Functions/Player.SpectateTarget
This wiki is using an old backup from 2020
Some information may be old/missing
Example
function onPlayerCommand( player, cmd, text )
{
if ( cmd == "spectate" )
{
local plr = FindPlayer( text );
if ( !plr ) MessagePlayer( "Error: Player '" + text + "' is not online.", player );
else player.SpectateTarget = plr;
}
}