“roblox, как сделать кирпич убийства” Ответ

Roblox Kill Brick Script

function onTouched(part)
	local h = part.Parent:findFirstChild("Humanoid")
	if h~=nil then
		h.Health = h.Health-100
	end
end
script.Parent.Touched:connect(onTouched)
-- Put this in the part you want it to work in
-- Message me for anymore help #Muppet6931
MrMuppetTheMan

roblox, как сделать кирпич убийства

local killBrick = -- index your kill brick here

local function onTouched(hit)
	local humanoid = hit.Parent:FindFirstChild("Humanoid")
	if humanoid ~= nil then
		humanoid:TakeDamage(humanoid.MaxHealth)
    	-- doesn't kill if a ForceField is guarding the Character
	end
end

killBrick.Touched:Connect(onTouched)
tomsterBG

Убить кирпичный скрипт roblox

function onTouched(Obj)
	local h = Obj.Parent:FindFirstChild("Humanoid")
	if h then
		h.Health = 0
	end
end

script.Parent.Touched:Connect(onTouched)
Motionless Manatee

Ответы похожие на “roblox, как сделать кирпич убийства”

Вопросы похожие на “roblox, как сделать кирпич убийства”

Больше похожих ответов на “roblox, как сделать кирпич убийства” по Lua

Смотреть популярные ответы по языку

Смотреть другие языки программирования