Advertisement
HowToRoblox

CONFIGURATION

Dec 2nd, 2022
1,416
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.IntermissionTime = 5
  5. config.MapWaitTime = 3
  6. config.RoundTime = 180
  7. config.RoundFinishedTime = 3
  8.  
  9. config.PointsPerSecond = 10
  10.  
  11. config.TimeToCapture = 5
  12.  
  13. config.StopOncePointsReached = true
  14. config.PointsRequiredToStop = 200
  15.  
  16. config.MinimumPlayersRequired = 2
  17.  
  18. config.WinReward = 100
  19.  
  20. config.Team1 = game:GetService("Teams"):WaitForChild("Red")
  21. config.Team2 = game:GetService("Teams"):WaitForChild("Blue")
  22.  
  23.  
  24. return config
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement