mir.pe (일반/밝은 화면)
최근 수정 시각 : 2024-05-06 18:40:36

킬파트


1. 개요2. 사용 상황3. 스크립트

1. 개요

파일:킬블럭.png
Roblox 점프맵 게임들에 주로 쓰이는 파트로, 닿으면 대미지를 받거나 즉사하게 된다.

2. 사용 상황

빠지면 죽는 용암이나, 점프맵의 닿으면 죽게 되는 파트를 만들 때 쓰며, 대부분의 킬파트들은 Really Red[1] 색이나[2] 빛나는 색을 띠고 있어 누가 봐도 킬파트라는 것을 알려 주는 경우가 많으나, 투명해서 보이지 않는 경우도 있다.

3. 스크립트

주로 킬파트의 스크립트는 이러하다.
#!syntax lua
script.Parent.Touched:Connect(function(plr)
 local humanoid = plr.Parent:FindFirstChild("Humanoid")
 if humanoid then
  humanoid.Health = 0
 end
end)


만약 파일이나 모델로 묶어놓고 사전(딕셔너리) 형식을 쓴다면 이러하다.
#!syntax lua
for _,Part in ipairs(킬파트 묶음 테이블) do
 Part.Touched:Connect(function(chr)
  local humanoid = chr.Parent:FindFirshChild("Humanoid")
  if humanoid then
   humanoid.Health = 0
  end
 end)
end



[1] 로블록스 제공 팔레트에 있는 진한 붉은색의 이름. [2] 주로 모티브가 용암이기 때문이다.

분류