Advertisement
KINGOFCOOL

Untitled

Jan 9th, 2015
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. -- For the final demo [step 7]
  2. -- We make 4 bots with lots of cool features and let 'em duke it out!
  3. local botScriptPrototype = game.Workspace.Script_7_FINAL
  4.  
  5. -- give them all different names
  6. local botNames = {"Chaos bot test", "Secundus", "Tertius", "Quaternus"}
  7.  
  8. for i = 1, 4 do
  9. local newBotScript = botScriptPrototype:Clone()
  10. newBotScript.Name = botNames[i]
  11. newBotScript.Parent = game.Workspace
  12. newBotScript.Disabled = false
  13.  
  14. -- give each bot a 5 second headstart over the next one
  15. wait(5)
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement