Skip to main content

Transform.Find(string n)

Finds a child by n and returns it.

Parameters:

NameTypeDescription
nstringName of child to be found.

Returns:

typeDescription
TransformThe returned child transform or null if no child is found.

Usage

---@type Transform
local transform;

---@type string
local n;


local val0 = transform.Find(n)