preskoči na sadržaj

Osnovna škola Velika Pisanica

 > info
 
local NPC = script.Parent
local HumanoidRootPart = NPC.HumanoidRootPart
 
local MaxDistance = math.huge
local debounce = false
 
 
NPC.Humanoid.Touched:Connect(function(hit)
if hit.Parent:FindFirstChild("Humanoid") and not debounce then
debounce = true
hit.Parent.Humanoid.Health -= 20
wait(1)
debounce = false
end
end)
 
while wait() do
local Players = game.Players:GetPlayers()
local closest
 
for i, plr in pairs(Players) do
if plr.Character and plr.Character:FindFirstChild("Humanoid") and plr.Character.Humanoid.Health > 0 then
local PlayerHumanoidRootPart = plr.Character.HumanoidRootPart
local Distance = (HumanoidRootPart.Position - PlayerHumanoidRootPart.Position).Magnitude
 
if not closest then
closest = PlayerHumanoidRootPart
end
 
if (HumanoidRootPart.Position - closest.Position).Magnitude > Distance then
closest = PlayerHumanoidRootPart
end
 
 
end
end
 
if closest and (HumanoidRootPart.Position - closest.Position).Magnitude <= MaxDistance then
NPC.Humanoid:MoveTo(closest.Position)
end
 
end
Priloženi dokumenti:
skripta.docx

EU PROJEKTI

 

 

 

 
 > info
CMS za škole logo
Osnovna škola Velika Pisanica / Hrvatskih mučenika 3, HR-43270 Velika Pisanica / os-velika-pisanica.skole.hr / ured@os-velika-pisanica.skole.hr
preskoči na navigaciju