so the problem with this is that the for loop will run through everything in the workspace. but the right after it
1 | local human = v:WaitForChild( "Humanoid" ) |
is waiting for a instance called Humanoid but v could be some random part in the workspace. for this example v = Camera. but there is no instance called Humanoid under camera. so the loop would just stop here until a Humanoid instance pops up. to fix this you can make it so that if there is no humanoid under the instance then continue the loop and go to the next instance. i cant think of a better way someone else may but this is how i would do it.
01 | local turret = script.Parent |
03 | local bulletdamage = 15 |
04 | local bulletspeed = 150 |
07 | local bullet = game.ReplicatedStorage:WaitForChild( "Bullet" ) |
08 | local findhumanoid = function (part) |
09 | for i, v in pairs (part:GetChildren()) do |
10 | if v.Name = = "Humanoid" then |
17 | local HumanoidRootPart = function (part) |
18 | for i, v in pairs (part:GetChildren()) do |
19 | if v.Name = = "HumanoidRootPart" then |
26 | while wait(firerate) do |
28 | for i,v in pairs (game.Workspace:GetChildren()) do |
29 | local found 1 = findhumanoid(v) |
30 | if found 1. Name = = "Humanoid" then |
32 | local found 2 = HumanoidRootPart(v) |
33 | if found 2. Name = = "HumanoidRootPart" then |
35 | if human and root and human.Health > 0 then |
36 | if (root.Position - turret.Position).magnitude < aggrodist then |
46 | turret.CFrame = CFrame.new(turret.Position, root.Position) |
47 | local NewBullet = bullet:Clone() |
48 | NewBullet.Parent = workspace |
49 | NewBullet.Position = turret.Position |
51 | NewBullet.Velocity = turret.CFrame.LookVector * bulletspeed |
53 | NewBullet.Touched:Connect( function (hit) |
54 | local hum = hit.Parent:WaitForChild( "Humanoid" ) |
56 | hum:TakeDamage(bulletdamage) |
58 | elseif hit ~ = turret then |
if you have any problems comment on this response