[HELP] Remove coma, respawn instantly

Hello! I want to remove this “coma” phase from the server, and when you die to receive instant respawn not to wait at all … But I don’t know how to do this on vrp, can anyone help me?

I found this, if help you:

– THIS IS FOR NO DOC COMA
Citizen.CreateThread(function() – coma thread
while true do
Citizen.Wait(1000)
if vRP.isInComa({}) then
if called == 0 then
HKserver.canSkipComa({},function(skipper)
if skipper then
HKserver.docsOnline({},function(docs)
if docs == 0 then
vRP.notify({"~r~There’s nobody to revive you.\n~b~Press ~g~E~b~ to respawn."})
else
vRP.notify({"~g~EMS is online.\n~b~Press ~g~E~b~ to call an ambulance."})
end
end)
end
end)
else
called = called - 1
end
else
called = 0
end
end
end)