Lua Globals

แสดงที่เลิกใช้งานแล้ว

*เนื้อหานี้จะพร้อมใช้งานในภาษาที่คุณเลือกในเร็วๆ นี้

The following is a list of functions and variables that are native to Lua. These functions can be used in a standard installation of Lua 5.1.4, though there are some differences in how some of these work on Roblox.

สรุป

ฟังก์ชัน

คุณสมบัติ

  • A table that is shared between all scripts of the same context level.

  • A global variable that holds a string containing the current interpreter version.

ฟังก์ชัน

assert

Variant

พารามิเตอร์

value: Variant
errorMessage: string
ค่าเริ่มต้น: assertion failed!

ส่งค่ากลับ

Variant

error

void

พารามิเตอร์

message: string
level: number
ค่าเริ่มต้น: 1

ส่งค่ากลับ

void

gcinfo

ส่งค่ากลับ

getmetatable

Variant

พารามิเตอร์

t: Variant

ส่งค่ากลับ

Variant

ipairs

พารามิเตอร์

ส่งค่ากลับ

loadstring

Variant

พารามิเตอร์

contents: string
chunkname: string

ส่งค่ากลับ

Variant

newproxy

พารามิเตอร์

addMetatable: bool
ค่าเริ่มต้น: false

ส่งค่ากลับ

พารามิเตอร์

ส่งค่ากลับ

pcall

พารามิเตอร์

func: function
args: Tuple

ส่งค่ากลับ

Variant

print

void

พารามิเตอร์

params: Tuple

ส่งค่ากลับ

void

rawequal

พารามิเตอร์

v1: Variant
v2: Variant

ส่งค่ากลับ

rawget

Variant

พารามิเตอร์

index: Variant

ส่งค่ากลับ

Variant

rawlen

พารามิเตอร์

ส่งค่ากลับ

rawset

พารามิเตอร์

index: Variant
value: Variant

ส่งค่ากลับ

require

Variant

พารามิเตอร์

module: ModuleScript

ส่งค่ากลับ

Variant

select

พารามิเตอร์

index: Variant
args: Tuple

ส่งค่ากลับ

setmetatable

พารามิเตอร์

newMeta: Variant

ส่งค่ากลับ

tonumber

Variant

พารามิเตอร์

arg: Variant
base: number
ค่าเริ่มต้น: 10

ส่งค่ากลับ

Variant

tostring

พารามิเตอร์

e: Variant

ส่งค่ากลับ

type

พารามิเตอร์

v: Variant

ส่งค่ากลับ

unpack

Variant

พารามิเตอร์

list: table
ค่าเริ่มต้น: 1
ค่าเริ่มต้น: #list

ส่งค่ากลับ

Variant

xpcall

พารามิเตอร์

args: Tuple

ส่งค่ากลับ

Variant

คุณสมบัติ

A table that is shared between all scripts of the same context level.

_VERSION

A global variable (not a function) that holds a string containing the current interpreter version.