I mean, I can just do this:
Or I have to do this:
(By the way everytime I do
Lua halts the entire code because it prevents something about global variables and wants me to use local variables instead, but I need that variable for the entire code, what do I do now? I have the code here just in case)
Code:
internet = 123
Code:
if internet == nil then
internet = 123
end
(By the way everytime I do
Code:
randomvariablename = 0
Last edited: