1. 개요
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