“Como fazer um script de dano no estúdio Roblox” Respostas de código

Como fazer um script de dano no estúdio Roblox

local rarm = script.Parent:FindFirstChild("head")
local rarm = script.parent:FindFirstChild("torso)
Wide-eyed Whale

Como fazer um script de dano no estúdio Roblox

local rarm = script.Parent:FindFirstChild("Right Arm")
local larm = script.Parent:FindFirstChild("Left Arm")

function dmg(hit)
	if hit.Parent ~= nil then
		local hum = hit.Parent:findFirstChild("Humanoid")
		if hum ~= nil then
			hum.Health = hum.Health -10
		end
	end
end

rarm.Touched:connect(dmg)
larm.Touched:connect(dmg)
Gorgeous Gharial

Como fazer um script de dano no estúdio Roblox

local rarm = script.Parent:FindFirstChild("head")
local larm = script.Parent:FindFirstChild("torso")

function dmg(hit)
	if hit.Parent ~= nil then
		local hum = hit.Parent:findFirstChild("Humanoid")
		if hum ~= nil then
			hum.Health = hum.Health -10
		end
	end
end

rarm.Touched:connect(dmg)
larm.Touched:connect(dmg)
Wide-eyed Whale

Respostas semelhantes a “Como fazer um script de dano no estúdio Roblox”

Perguntas semelhantes a “Como fazer um script de dano no estúdio Roblox”

Procure respostas de código populares por idioma

Procurar outros idiomas de código