Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local oses = {
- "PotatOS",
- "ShutdownOS",
- "YomatOS",
- "TomatOS"
- }
- local function rand(list)
- return list[math.random(1, #list)]
- end
- local monitors = {peripheral.find "monitor"}
- while true do
- term.redirect(rand(monitors))
- write(rand(oses) .. " ")
- sleep(0.1)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement