Lua Роблокс возрожден, персонаж мертв - PullRequest
1 голос
/ 24 марта 2020

Как мне заставить этот код работать? Персонаж Judoon должен восстанавливаться (возрождается), когда я нажимаю на стену, но только когда он мертв. [! [Regenerate] [1]] [1] Когда я нажимаю на стену, мой персонаж Judoon должен возрождаться, но только когда он мертв.

Также, как я могу представить сценарий Regen Button, отдельный от модели Judoon, но он должен работать. Если вы поместите скрипт Regen в рабочую область отдельно от папки Judoon, он не будет работать.

   local box = script.Parent


local debounce = false

-- DO NOT GROUP THIS WITH YOUR MODEL!

local everything = {Judoon}
local names = {Judoon}

local children = game.Workspace:children()
for i=1,#children do
    if (children[i].Name == "Judoon") then -- Replace the name with your models's name.
        table.insert(everything, children[i]:clone())
        table.insert(names, children[i].Name)
    end
end


function regen()
    for i=1,#everything do
        game.Workspace:findFirstChild(names[i]):remove() -- Dont mess with this stuff.
        new_thing = everything[i]:clone()
        new_thing.Parent = game.Workspace
        new_thing:makeJoints()
    end
end

function onClicked()  
  if Judoon:FindFirstChild("Judoon"):GetState() == Enum.HumanoidStateType.Dead then
     regen()
  end
end
        wait(15)-- This is how long it takes untill the regen button will work again.

        script.Parent.BrickColor = BrickColor.new(104)


        debounce = false
end

 script.Parent.ClickDetector.MouseClick:connect(onClicked)

--This regen button was made by andymewborn,hope you like(d) it!

  [1]: https://i.stack.imgur.com/HhLo3.png

1 Ответ

1 голос
/ 24 марта 2020

Вы можете сделать что-то подобное, если гуманоид мертв, затем регенерировать.

function onClicked()  
  if Judoon:FindFirstChild("Judoon"):GetState() == Enum.HumanoidStateType.Dead then
     regen()
  end
end

Новое редактирование:

--[[
    1. Put this script inside the button
    2. Rename the modelname
    3. The model must be a child of Workspace
--]]
button = script.Parent
modelname = "Pk" -- Model name
model = game.Workspace:FindFirstChild(modelname)
backup = model:Clone()

function Regen()
    local Old =game.Workspace:FindFirstChild(modelname)
    Old:Destroy()   
    local New = backup:Clone()
    model = New -- new changes made here
    New.Parent = workspace
    New:MakeJoints()
end

function onClicked()
    if button.BrickColor == BrickColor.new("Bright violet") then
        if model:FindFirstChild("Humanoid") ~= nil then
            if model.Humanoid:GetState() == Enum.HumanoidStateType.Dead then
                Regen()
                print("removed and added")
            end
        end
        button.Regen:Play()
        button.BrickColor = BrickColor.new("Really black")
        wait(3)
        button.BrickColor = BrickColor.new("Bright violet")
    end
end

button.ClickDetector.MouseClick:Connect(onClicked)
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...