Advertisement
HowToRoblox

CONFIGURATION

Nov 18th, 2022 (edited)
1,650
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.64 KB | None | 1 0
  1. local config = {}
  2.  
  3.  
  4. config.MinPlayersToStart = 2
  5.  
  6. config.IntermissionTime = 10
  7. config.TimeBetweenMapAndSpawn = 5
  8. config.TimeBeforeReceivingWeapons = 8
  9. config.TimeAfterRoundEnds = 7
  10.  
  11. config.RoundTime = 180
  12.  
  13. config.Murderers = 1
  14. config.Sheriffs = 1
  15.  
  16. config.InnocentsSurviveReward = 30
  17. config.MurderersWinReward = 100
  18. config.SheriffKillReward = 70
  19.  
  20. config.SheriffWeaponCooldown = 1
  21. config.MurdererWeaponCooldown = 1
  22.  
  23. config.MurdererWeaponHoldToThrowDuration = 0.7
  24.  
  25. config.MurdererWeaponStabRange = 6
  26.  
  27. config.MurdererWeaponThrowVelocity = 300
  28. config.MurdererWeaponRotationalVelocity = 400
  29.  
  30. config.RaycastDepth = 1000
  31.  
  32.  
  33. return config
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement