📜  if condition roblox studip - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:30.060000             🧑  作者: Mango

代码示例1
if 25 > 100 then
    print("25 is greater than 100")
elseif 25 > 50 then
    print("25 is greater than 50") 
elseif 25 > 10 then    
    print("25 is greater than 10") 
end