Advertisement
Piyangkoon

3

Apr 5th, 2016
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --kill everyone else script
  2. --uses lua interpreter for universe system
  3. -- reverses after 20 seconds
  4. local backup = Multiverse:Clone(true)
  5. local currentuniverse = Multiverse:GetCurrentUniverse() -- get current universe this is being called from
  6. local tl=currentuniverse:GetTimeLine():Format('EarlyBcAd',2000) -- get local time zone
  7. currentuniverse:GetGalaxy(tl,'HEn','MilkywayXI') -- search time zone for galaxy by name, using HEn ( human english ), and 'MilkyWayXI' or 11th milky way.
  8. local earth=currentuniverse:GetPlanetsWithLifeByName{Name='Earth';Species={'Human',Version=1.27}}[4] -- get the 4th version of earth in found galaxy ( us ! ), using our version id.
  9. table.foreach(earth:GetLivingSpecies{Race='Human';Dieing=false},function(x,v)
  10. if v ~= self.executor then
  11. v['01-Body'].Heart:Pause()
  12.  
  13. end
  14. end)
  15. wait(20)
  16. currentuniverse:RestoreByBackup(backup,tl,true) -- the true is to slightly edit executors thought process so they decide not to do it again in backup. when false, paradoxes can be caused & time starts to go backwards, but you remember the future.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement