Advertisement
HowToRoblox

Settings

Dec 12th, 2022
1,592
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.44 KB | None | 0 0
  1. local config = {}
  2.  
  3.  
  4. config.PlayersRequiredToStart = 2
  5.  
  6. config.IntermissionTime = 3
  7. config.MapWaitTime = 3
  8. config.RoundEndTime = 3
  9.  
  10. config.RoundDuration = 300
  11.  
  12. config.JuggernautHumanoidProperties = {
  13.     WalkSpeed = 10;
  14.     JumpPower = 20;
  15.     MaxHealth = 5000;
  16. }
  17.  
  18. config.SurvivorHumanoidProperties = {
  19.     WalkSpeed = 16;
  20.     JumpPower = 80;
  21.     MaxHealth = 100;
  22. }
  23.  
  24. config.SurviveReward = 100
  25. config.JuggernautWinReward = 700
  26.  
  27.  
  28. return config
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement