Security HUD
System Watchdog
×
Threads Scanned
-- / --
SYS. LOAD --%
AI SHIELD ACTIVE
DMCA Policy
×

📋 DMCA Compliance

This platform and community fully complies with the Digital Millennium Copyright Act (DMCA) and international copyright laws. We take all copyright protection seriously.

🛡️ Copyright Protection

If you believe a posted item belongs to you or violates your copyright, you may file a DMCA takedown request through our official channels. Upon receiving a valid claim, the infringing content will be removed within 24 hours.

What's new
×
Fiveguard

Script DD-NO HEAD SCRİPT

gjfzh

Member
Joined
Feb 9, 2022
Messages
2
Reaction score
0
Points
156
Location
US
다운로드 사이트가 만료되었습니다
 

thebigboy

Silver Elite
Joined
Mar 28, 2021
Messages
34
Reaction score
25
Points
166
SQL:
-- Any client.lua
-- Note: Requires "lua54 'yes'" in your fxmanifest.lua
local Ignored = { [`GROUP_UNARMED`] = true, [`GROUP_THROWN`] = true, [`GROUP_STUNGUN`] = true }
local Bones = { [31086] = "SKEL_Head", [12844] = "IK_Head", [35731] = "RB_Neck_1", [39317] = "SKEL_Neck_1", [25260] = "FB_L_Eye_000", [27474] = "FB_R_Eye_000" }

AddEventHandler("entityDamaged", function(Victim, Attacker, Weapon)
    local Ped = PlayerPedId()
    if (Victim == Ped) or not IsPedAPlayer(Victim) then
        local _, Index = GetPedLastDamageBone(Victim)
        if Bones[Index] then
            local Group = GetWeapontypeGroup(Weapon)
            if not Ignored[Group] then
                ApplyDamageToPed(Victim, GetPedMaxHealth(Victim))
            end
        end
    end
end)
 
Last edited:
Top