Roblox 有多個內置功能和變數在其 Lua 實現中。這些只能在 Roblox 中找到,並且預先不包含在 Lua 中。
概要
函式
函式
屬性
Enum
一個參考 Roblox 可用的所有可用的資料類輸入的引用。
plugin
一個代表此 Script 中執行的插件代表的對象。此參考只在執行程式碼作為插件時傳入 ModuleScripts 。若要在 1> Class.ModuleScript1> 中使用此參考,您必須明確將它傳入。
assert(plugin, "This script must be run as a plugin!")-- Code beyond this point will execute only if the script is run as a plugin
script
執行您正在寫代碼的脚本對象的引用。它可以是 Script ,或 LocalScript ,或 ModuleScript 。此變數在 Roblox Studio 的命令條中執行代碼時不可用。