i am wondering if there is a way to spawn in things from a point with a delay sorry if this is odd question i been up for like 48 hours i am tired scripts would be helpful thanks
local delay = 15000
function spawn_when_dead_init(e)
end
function spawn_when_dead_main(e)
if GetPlayerDistance(e) < 150 and g_PlayerHealth > 0 and g_PlayerThirdPerson==0 and key_pressed == 0 then
if GetTimer(e) > delay then
ActivateIfUsed(e)
end
if GetTimer(e) < delay then
ActivateIfUsed(e)
end
end
end