Scripting/Squirrel/Functions/Player.Angle
This wiki is using an old backup from 2020
Some information may be old/missing
Syntax
float player.Angle
Example
function onPlayerCommand( player, cmd, text )
{
if ( cmd == "angle" )
{
MessagePlayer( "Your facing angle: " + player.Angle, player );
}
}