roblox if syn code example
Example 1: roblox else if
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
Example 2: roblox if statement
local test = 1
if test > 4 then
print('Test is greater than 4')
end