local leo = "OMG LEO! HAPPY BIRTHDAY"
print("Are you Oli?")
local answer = io.read("*line")
if answer == nil then
print("No answer provided")
else
print("Input = " .. answer)
end
if answer == "Yes" or answer == "yes" then
print("KYS yourself.")
elseif answer == "No" or answer == "no" then
print("What is your name then?")
local answer2 = io.read("*line")
if answer2 == nil then
print("")
elseif string.lower(answer2) == "leo" then
print(leo)
elseif string.lower(answer2) == "leon" or string.lower(answer2) == "lordmoriko" then
print("Well it's LEO, but still! " .. leo)
else
print("Ok, have a nice day! :D") -- except LucaDaGay
end
else
print("Please put in a proper value")
end
To embed this project on your website, copy the following code and paste it into your website's HTML: