“Variáveis ​​globais da Lua Roblox” Respostas de código

Variáveis ​​globais da Lua Roblox

--Our variable is this
var="a"
--and we cant use it in a function it gives we an error
function abc()
	print(var)
end
abc()
--Output: Error
--We can make it a global variable with using _G. method
_G.var2="b"
function cba()
	print(_G.var2)
end
cba()
--Output: b
Hypixel Offical

Variáveis ​​globais Lua

--[[
Global variables don't need a declaration like "local." Instead, you'd just
write like this:
]]--

variable = --value

--[[ 
Note, you don't always have to even assign a value to a variable. You can
use it for the first time and get a value of "nil" which you can update later.
]]--
Concerned Civet

Respostas semelhantes a “Variáveis ​​globais da Lua Roblox”

Perguntas semelhantes a “Variáveis ​​globais da Lua Roblox”

Mais respostas relacionadas para “Variáveis ​​globais da Lua Roblox” em Lua

Procure respostas de código populares por idioma

Procurar outros idiomas de código