mind.lua
· 127 B · Lua
Неформатований
while true
do
thought = mind:getThought()
if not thought:makesSubjectSad() then
thought:Destroy()
end
wait(5)
end
1 | while true |
2 | do |
3 | thought = mind:getThought() |
4 | if not thought:makesSubjectSad() then |
5 | thought:Destroy() |
6 | end |
7 | wait(5) |
8 | end |