我应该如何使这段代码起作用,当角色死亡后,当我按下按钮时,激活重生功能。此时按钮可以工作,但是没有考虑角色是否死亡,我想提出条件,仅在角色死亡时才能操作按钮。最终,我可以发布错误消息或其他内容,让该人知道为什么按钮不起作用。
model = game.Workspace.MyModelName -- Replace with your model name
messageText = "Regenerating MyModelName..."
message = Instance.new("Message")
message.Text = messageText
backup = model:clone()
enabled = true
function regenerate()
message.Parent = game.Workspace
model:remove()
wait(4) -- display regen message for 4 seconds
model = backup:clone()
model.Parent = game.Workspace
model:makeJoints()
message.Parent = nil
enabled = false
wait(30)
enabled = true
end
function onHit(hit)
if (hit.Parent:FindFirstChild("Humanoid") ~= nil) and enabled then
regenerate()
end
end
script.Parent.Touched:connect(onHit)
script.Parent.ClickDetector.MouseClick:connect(onTouched)
将以下内容添加到您的代码中。