Как сделать так чтобы при касании с другим игроком игрок умирал в роблокс студио
Yurii Play
Ученик
(108),
на голосовании
5 месяцев назад
Как сделать так чтобы при касании с другим игроком игрок умирал в роблокс студио ``` wait(0.1) local humanoid = workspace:WaitForChild("Humanoid") function Touch(hit) humanoid = hit.Parent:FindFirstChild("Humanoid") if humanoid then if humanoid.Parent.Score.Value > script.Parent.Score.Value then script.Parent.Health = 0 elseif humanoid.Parent.Score.Value < script.Parent.Score.Value then humanoid.Health = 0 end elseif not humanoid then print("Это не игрок") end end script.Parent.Torso.Touched:Connect(Touch) ``` данный скрипт почему-то не работает
очевидно же, учи язык, ты написал ахинею полную, в роблоксе чуть иначе, посмотри гайд, пройди курс, у тебя будто базы никакой нет, напиши мне свою телегу я помогу
```
wait(0.1)
local humanoid = workspace:WaitForChild("Humanoid")
function Touch(hit)
humanoid = hit.Parent:FindFirstChild("Humanoid")
if humanoid then
if humanoid.Parent.Score.Value > script.Parent.Score.Value then
script.Parent.Health = 0
elseif humanoid.Parent.Score.Value < script.Parent.Score.Value then
humanoid.Health = 0
end
elseif not humanoid then
print("Это не игрок")
end
end
script.Parent.Torso.Touched:Connect(Touch)
```
данный скрипт почему-то не работает