For AI agents: visit https://docs.paraspace.tech/llms.txt for an index of all pages formatted in Markdown and endpoints in OpenAPI. Append .md to any documentation page URL to get its markdown version.
Returns the local player controlled by the current character.
function GetLocalPlayer()
local localPlayer = CS.ParaPlayerService.GetLocalPlayer()
if localPlayer ~= nil then
print(localPlayer.playerID)
end
return localPlayer
end