Jump mechanics tuning

Cooldown, timing, force, and boost settings.

Cooldown

Config.JumpCooldown = {
    enabled = true,
    duration = 3
}
  • duration is seconds between jumps.

Common presets:

-- Fast paced
{ enabled = true, duration = 1 }

-- Realistic
{ enabled = true, duration = 5 }

-- No cooldown (not recommended)
{ enabled = false, duration = 0 }

Timing

Config.JumpLockMs = 900
Config.JumpResetDelayMs = 900
  • JumpLockMs: how long jump input is locked.

  • JumpResetDelayMs: delay preventing double-jumps.

circle-exclamation

Force

Guidelines:

  • JumpForce: 2.0–5.0

  • VerticalBoost: 3.0–6.0

  • VerticalBoostSpeedGate: 80–120 km/h

Tuning examples:

Last updated