local player = script.Parent
local humanoid = player:FindFirstChild("Humanoid")
local deBounce = false
function lavaTouch(part)
if humanoid.FloorMaterial ~= nil and humanoid.FloorMaterial.Name == "CrackedLava" then
if not deBounce then
deBounce = true
humanoid:TakeDamage(10)
wait(1)
deBounce = false
end
end
end
humanoid.Running:Connect(lavaTouch)
강릉바다의 블로그
Since 2008. 1.
'프로그래밍 > Roblox' 카테고리의 다른 글
로블록스로 배우는 코딩 #8 - 버튼을 눌러 전등 끄고 켜기 (0) | 2022.10.06 |
---|---|
로블록스로 배우는 코딩 #7 - 용암을 밟으면 HP가 줄어들어요 (0) | 2022.10.06 |
로블록스로 배우는 코딩 #5 - 열렸다 닫히는 문 (0) | 2022.10.06 |
로블록스로 배우는 코딩 #4 - 옆으로 열리는 문 (0) | 2022.10.06 |
블록스로 배우는 코딩 #3 - 일정시간 통과하는 벽 (0) | 2022.10.06 |