function Begin() local num = random.math(2) print(num) end
First, it's math.random(2). Second, you need to call the function Begin().
math.random(2)
Begin()
Code:
function Begin() local num = math.random(2) print(num) end Begin()