Welcome to FiveM Scripts, MLOs & Server Files – Toxic FiveM

Toxic QB V3.2 Server Files

Premium members can download it for free.

Toxic PVP V4 Server Files

Premium members can download it for free.

400+ Unbranded Vehicles 2025

Premium members can download it for free.

FiveMCode FiveM - Disable Bunny Hopping Script (Prevent Rapid Jump Exploits)

Random threads

Framework
  1. ESX
  2. QBCORE
  3. VRP
  4. STANDALONE
Prevent bunny hopping on your FiveM server with our free script. Copy the code, paste it into your client.lua, and restart the script to force characters to fall after two or three jumps.

bunyhopping.webp
Code:
Citizen.CreateThread(function()

    while true do

        Citizen.Wait(100)

        local ped = PlayerPedId()

        if IsPedOnFoot(ped) and not IsPedSwimming(ped) and (IsPedRunning(ped) or IsPedSprinting(ped)) and not IsPedClimbing(ped) and IsPedJumping(ped) and not IsPedRagdoll(ped) then

            local chance_result = math.random()

            if chance_result < 0.50 then

                Citizen.Wait(600)

                SetPedToRagdoll(ped, 5000, 1, 2)

            else

                Citizen.Wait(2000)

            end

        end

    end

end)
 
Last edited by a moderator:
shape1
shape2
shape3
shape4
shape5
shape6
Back
Top