원안에 들어가면 공중으로 띄우는법?

조건, 액션 좀 짜주세요 ㅠㅠㅠㅠ

rule(“원안에서 위로 띄우기”)
{
event
{
Ongoing - Each Player;
All;
All;
}

condition
{
	"플레이어의 위치와 (0, 0, 0)의 사이의 거리가 0보다 작거나 같다면"
	Distance Between(Position Of(Event Player), Vector(0, 0, 0)) <= 0;
}

action
{
	"해당 플레이어의 위로 향하는 움직임에 0만큼의 힘을 추가 한다."
	Apply Impulse(Event Player, Up, 0, To World, Cancel Contrary Motion);
}

}