print("Would you like to boost the server?")
local choice1 = io.read("*line")

if choice1 == "Yes" or choice1 == "yes" then
    print("How many times would you like to boost the server")
    local choice2 = tonumber(io.read("*line"))
    if choice2 == 1 then
        local NameColor = 'Pink'
        print("Your name color is " .. NameColor)
    elseif choice2 >= 2 then
        local NameColor = 'Dark Pink'
        print("Your name color is " .. NameColor)
    elseif choice2 == nil then
        print("Please input a proper value.")
    else
        print("Please input a proper value.")
    end
elseif choice1 == "No" or choice1 == "no" then
    local NameColor = 'White'
    print("Your name color is " .. NameColor)
else
    print("No Choice Given.")
end

Embed on website

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