function Riddlerdidnothingwrong()
wrong = math.random(0,1) --lets set a random value
if wrong == 1 then --if the value is 1 then he did something wrong
print("he did something wrong")
end
if wrong == 0 then --vice versa
print("he did nothing wrong, he had the wrong people")
end
end --close the function
While wait(0.1) do --loop forever while not crashing the whole damn game.
print("Let us check his illegal status")
Riddlerdidnothingwrong() --calls the above function.
end --close the loop