Advertisement
JordanScripter1337

Artificial Computer

Sep 25th, 2015
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.76 KB | None | 0 0
  1. local ChatService = game:GetService("Chat")
  2.  
  3. --ChatService:Chat(Part, "Blame John!", "Red")
  4. plr = game.Players:FindFirstChild("kingjulian1script")
  5. head = plr.Character.Head
  6. ChatService:Chat(head,"Basic os.","Blue")
  7. wait(1)
  8. ChatService:Chat(head,"Initializing components...","Blue")
  9. wait(1)
  10. for i,v in pairs(_G) do
  11.     ChatService:Chat(head,"Loaded "..tostring(v),"Blue")
  12.     wait(0.5)
  13. end
  14. ChatService:Chat(head,"Done","Green")
  15. plr.Chatted:connect(function(msg,rec)
  16.     if string.sub(msg,1,7) == "gdrive;" then
  17.         local data = string.sub(msg,8)
  18.         rawset(_G,math.random(),data)
  19.         ChatService:Chat(head,"Stored "..data.." in Drive G.","Red")
  20.     end
  21.     if msg == "dir" then
  22.         for i,v in pairs(_G) do
  23.             wait(0.5)
  24.             ChatService:Chat(head,"Found "..v,"Blue")
  25.         end
  26.     end
  27. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement