text = 'Heyy'
print(text)

if text == 'Hello' or text == 'hello' or text == 'Hi' or text == 'hi' then
    print("Hello! How are you?")
end

if text == 'Heyy' or text == 'heyy' then
    print('STFU')
end

text2 = 'WHY WOULD YOU SAY THAT!'
print(text2)

if text2 == 'Good how are you?' or text2 == 'good how are you?' then
    print('Im good too thanks!')
end

if text2 == 'WHY WOULD YOU SAY THAT!' then
    print('HAHAHAH L LOSER')
end

text3 = ':('
print(text3)

if text3 == 'Good to hear! i have to go now bye!' then
    print('Okay bye!')
end

if text3 == ':(' then
    print('AHHAHA BYE APE')
end

print('Conversation Achieved!')

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: