我想知道如何让模型对玩家造成伤害。我尝试了这个脚本,但它不起作用。我该如何解决它?
local Debounce = false
script.Parent.Touched:FindFirstChild(function(hit)
if hit.Parent:FindFirstChild("Humanoid") and Debounce == false then
Debounce = true
hit.Parent.Humanoid:TakeDamage(10)
wait(0)
Debounce = false
end
end)
script.Parent.Touched
是一个信号,您可以使用函数 Connect
连接到它,而不是 FindFirstChild
:
script.Parent.Touched:Connect(function(hit)