Answers for "local in script lua local"

Lua
1

lua local

--locals can have two meanings:
--1
local name = Eddie
local part = script.Parent
--This is like a guide for the script, it tells the script the meanings of Eddie and the part

--2: It can also mean that its for one person as in a local script which functions on only one person
Posted by: Guest on January-28-2022
0

local in script lua local

local name = "roblock"
local tablewow = {
  "hi"
  "welcome"
  "how are you"
}
  print (name .. table.find(tablewow,"how are you")
  
  --local creates a variable that stores a value forever antil you change it it will change to that new value
Posted by: Guest on April-11-2022

Browse Popular Code Answers by Language