Answers for "roblox else if"

0

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
Posted by: Guest on April-05-2021
0

roblox if then

if 2 + 3 == 5 then
	print("Two plus three is five")
end
Posted by: Guest on September-15-2020
0

roblox if statement

local test = 1

if test > 4 then
  print('Test is greater than 4')
end
Posted by: Guest on June-08-2020

Browse Popular Code Answers by Language