From e57fffb033018c49fc51654541d5d513125325c0 Mon Sep 17 00:00:00 2001 From: edshot99 Date: Sat, 1 Jun 2024 14:45:03 -0500 Subject: [PATCH] attempt to remove 40mph/65kph speed limit --- .../lua/autorun/server/velocity_adjustments.lua | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 velocity_adjustments/lua/autorun/server/velocity_adjustments.lua diff --git a/velocity_adjustments/lua/autorun/server/velocity_adjustments.lua b/velocity_adjustments/lua/autorun/server/velocity_adjustments.lua new file mode 100644 index 0000000..12ccbb3 --- /dev/null +++ b/velocity_adjustments/lua/autorun/server/velocity_adjustments.lua @@ -0,0 +1,6 @@ + +local perf = physenv.GetPerformanceSettings() +perf.MaxVelocity = 4000 * 2 +perf.MaxAngularVelocity = 7200 * 2 +physenv.SetPerformanceSettings(perf) +