12 lines
211 B
Lua
12 lines
211 B
Lua
|
RegisterCommand('die', function(source, args)
|
||
|
|
||
|
|
||
|
SetEntityHealth(PlayerPedId(), 0)
|
||
|
TriggerEvent('chat:addMessage', {
|
||
|
color = {255,0,0},
|
||
|
args = { 'Sydämesi petti' }
|
||
|
})
|
||
|
|
||
|
end, false)
|
||
|
|