how can i make a math.random pick a random number again if it picks a certain number?
example:
local Robbery = math.Random(1,2)
if Robbery == 1 then
--some function
elseif Robbery == 2 then
--wait(30), and pick a math.random again,
end
but how would i make it do the same function again?
(sorry if it didnt made any sense, im in a rush rn)