ScriptName _00E_PlayerKillOnEnter Extends ObjectReference

Event OnTriggerEnter(ObjectReference akActionRef)
	If akActionRef == Game.GetPlayer()
		Debug.SetGodMode(false)
		Game.GetPlayer().Kill()
	EndIf
EndEvent