Advertisement
HowToRoblox

CONFIGURATION

Dec 5th, 2022 (edited)
1,445
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.46 KB | None | 0 0
  1. local config = {}
  2.  
  3.  
  4. config.MinimumPlayersNeeded = 2
  5.  
  6. config.IntermissionTime = 3
  7. config.MapWaitTime = 3
  8. config.PreparationTime = 6
  9. config.RoundEndTime = 3
  10.  
  11. config.BombExplodeTimes = { --How long the tagged player has before they explode based on how many players are alive.
  12.     [6] = 20,
  13.     [5] = 15,
  14.     [4] = 12,
  15.     [3] = 10,
  16.     [2] = 7
  17. }
  18.  
  19. config.TagCooldown = 1
  20.  
  21. config.SurvivorSpeed = 16
  22. config.TaggedSpeed = 20
  23.  
  24. config.SurviveReward = 100
  25.  
  26.  
  27. return config
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement