Advertisement
TyMan

Shop Code

Aug 22nd, 2014
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. args = {...}
  2. Name = (args[1])
  3. local pos = 10
  4. mon = peripheral.wrap("back") -- Replace side with the side that the monitor is on
  5. mon.clear()
  6. color = 1
  7. mon.setBackgroundColor(16000)
  8. mon.setTextScale(4)
  9. while true do
  10.  
  11.   if pos==-26 then
  12.    pos =18
  13.    end
  14.    
  15.    mon.setCursorPos(pos,1)
  16.    mon.write("Buy your tinkers Construct Stuff Here!!!!!!")
  17.     pos = pos-1
  18.  os.sleep(0.15) -- Replace 0.15 with any number you want (In seconds)
  19.  if (color < 16000) then
  20.   color = color + color
  21.  else
  22.   color = 1
  23.  end
  24.  mon.setTextColor(color)
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement