I want to make the script choose any random line of code in the while loop
while true do print ("Choice1") print ("Choice2") print ("Choice3") print ("Choice4") end
creativlyNamedVariable = math.random(1, 4) if creativlyNamedVariable == 1 then --code elseif creativlyNamedVariable == 2 then --code elseif creativlyNamedVariable == 3 then --code elseif creativlyNamedVariable == 4 then --code end