local turkey = 420 local monkey = 69 function question() print("Does turkey = monkey") end if turkey = monkey then print(yes) else print(no) end
use == instead of = because = is just to set stuff like
local monkey = 123 local turkey = 31
monkey = turkey will set monkey to 31 == in the other hand is an math operation(not quite) and is used to compare, there are others like ~= for checking if 2 values is different