I having problems in my program.



local sFile = "LoginePass.txt"
local hRead = assert(fs.open(sFile, "r"))
local sLogin, sPass = hRead.readLine(), hRead.readLine()

I want to readit astwodifferentvariables,whichwillcompare with thelogin andpass

I'm trying to make a login system, that reads a .txt file to make a comparison, for example: Userhere Passhere


Read user and pass, and save its on two different variables.