Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Need help with auto turret i made to test out raycasting, how should i fix this?

Asked by 4 years ago

So i wanted to make something and I have also followed a tutorial however it is not working and everything i do to it wont fix it and another thing is the while wait() do loop is only playing once and i am also not getting any errors in output.

01local turret = script.Parent
02 
03local bulletdamage = 15
04local bulletspeed = 150
05local aggrodist = 75
06local firerate = .3
07local bullet = game.ReplicatedStorage:WaitForChild("Bullet")
08 
09while wait(firerate) do
10    print("Checking")
11    local target = nil
12    for i,v in pairs(game.Workspace:GetChildren()) do
13        local human = v:WaitForChild("Humanoid")
14        local root = v:WaitForChild("HumanoidRootPart")
15        if human and root and human.Health > 0 then
View all 41 lines...
0
i think its a problem with the for i,v in pairs(game.Workspace:GetChildren()) do since after that line you have one that waits for a humanoid. what if V is some random part in the workspace? the script would stop there untill you add a humanoid into that. marsdonh 36 — 4y
0
to test this can you put a print(v.Name) right after the for i,v in pairs(game.Workspace:GetChildren()) do line. then tell me what is prints. marsdonh 36 — 4y
0
It printed 'Camera' so I should probably do something like if v.Name ~= "Camera" or something like that. munkuush 22 — 4y
0
Ok so it didnt print camera this time but it printed Baseplate so i should find a way to use something like :IsA() or something like that munkuush 22 — 4y

2 answers

Log in to vote
0
Answered by 4 years ago

Just realised that instead of doing 'WaitForChild' i could do 'FindFirstChild', so it wont have to wait for it and instead it will just search for it while also allowing it to run other things in workspace to search for.

Ad
Log in to vote
0
Answered by 4 years ago

so the problem with this is that the for loop will run through everything in the workspace. but the right after it

1local 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.

01local turret = script.Parent
02 
03local bulletdamage = 15
04local bulletspeed = 150
05local aggrodist = 75
06local firerate = .3
07local bullet = game.ReplicatedStorage:WaitForChild("Bullet")
08local findhumanoid = function(part)
09    for i, v in pairs(part:GetChildren()) do
10        if v.Name == "Humanoid" then
11            return(v)
12        else
13            return(v)
14        end
15    end
View all 63 lines...

if you have any problems comment on this response

Answer this question