local part = script.Parent
local function onTouched(hit)
local character = hit.Parent
local humanoid = character:FindFirstChild("Humanoid")
if humanoid then
humanoid.Health = 0
end
end
part.Touched:Connect(onTouched)
-Попробуй, может сраюотает.
умный шлепа (кот)Профи (845)
4 месяца назад
вот-local humanoid = script.Parent.Parent.Parent.Parent
local function onPlayerTouch(otherPlayer)
-- Здесь вы можете добавить свой код, который должен быть выполнен, когда игрок прикоснется к другому игроку. Например:
--[[
otherPlayer.Character.Health = 1
]]
-- Убить игрока, когда другой игрок коснется этого игрока
otherPlayer.Humanoid.Health = 0
end
script.On