lua local
local name = "jojo"
print("Hello, "..name)
lua variables
local NumberVariable = 1
local StringVariable = "TextHere"
local BooleanVariable = true --// can also do false
lua variable
-- Private Variable
local name1 = "John"
-- Public Variable
name2 = "Jane"
print(name1)
print(name2)
Lua variable
-- Variables are global by default:
globalVariable = 10
-- To make a variable local:
local localVariable = 20
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us