IsPlayerHitByVehicle
Jump to navigation
Jump to search
isPlayerHitByVehicle
Syntax
bool isPlayerHitByVehicle(attacker)
Required Arguments
- attacker : The element that attacks .
Code
function isPlayerHitByVehicle (attacker) if not attacker then return end if getElementType(attacker) == 'vehicle' then cancelEvent() end end
Client
function isPlayerHitByVehicle (attacker) if not attacker then return end if getElementType(attacker) == 'vehicle' then cancelEvent() end end addEventHandler("onClientPlayerDamage", getLocalPlayer(), isPlayerHitByVehicle)
Server
function isPlayerHitByVehicle (attacker) if not attacker then return end if getElementType(attacker) == 'vehicle' then cancelEvent() end end addEventHandler("onPlayerDamage", root, isPlayerHitByVehicle)
Author
Lisek In Discord Lisek#5811