Summer 2026 Music Kit Competition is now here! - Create a summer themed electronic music kit and submit it by - Enter Now!

Scripting
Core API

Core exposes project build information. Import it from lambda_script/point_script:

import { Core, Instance } from "lambda_script/point_script";

Instance.Msg(`${Core.GetCodename()} ${Core.GetVersion()} (${Core.GetBuild()})`);

Core is runtime-provided and may not exist in an environment that does not load the Lambda project integration. Use Instance.IsAvailable("Core") when a script may run elsewhere; see optional APIs.

Functions

Function Returns Description
Core.GetVersion() number Current project version.
Core.GetCodename() string Current release codename.
Core.GetBuild() number Current numeric build identifier.