Advertisement
HowToRoblox

CONFIGURATION

Nov 27th, 2022
2,287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.40 KB | None | 0 0
  1. local config = {}
  2.  
  3.  
  4. config.IntermissionTime = 5
  5. config.MapWaitTime = 3
  6. config.RoundTime = 180
  7. config.RoundFinishedTime = 3
  8.  
  9. config.StopOnceKillsReached = true
  10. config.KillsRequiredToStop = 15
  11.  
  12. config.MinimumPlayersRequired = 2
  13.  
  14. config.WinReward = 100
  15.  
  16. config.Team1 = game:GetService("Teams"):WaitForChild("Red")
  17. config.Team2 = game:GetService("Teams"):WaitForChild("Blue")
  18.  
  19.  
  20. return config
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement