getbspval
Reads a BinaryString property value from an Instance.
function getbspval(instanceinstanceInstanceThe Instance that contains the BinaryString property.: Instance, propertypropertystringThe property name to read.: string, base64base64booleanWhether to return the BinaryString value as Base64 encoded text.: boolean): stringstringThe BinaryString property value, optionally Base64 encoded.Usage
Read Terrain SmoothGrid
local result = getbspval(workspace.Terrain, "SmoothGrid", true)
print(result)