如何在Lua中让模型伤害玩家

问题描述 投票:0回答:1

我想知道如何让模型对玩家造成伤害。我尝试了这个脚本,但它不起作用。我该如何解决它?

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)
lua roblox
1个回答
1
投票

script.Parent.Touched
是一个信号,您可以使用函数
Connect
连接到它,而不是
FindFirstChild
:

script.Parent.Touched:Connect(function(hit)
© www.soinside.com 2019 - 2024. All rights reserved.