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

How to make NPCs walk by themselves?

Asked by 4 years ago

May I ask how could I make NPCs walk by themselves? I have seen Roblox Forums but it does not help.

0
Also, could you mark this as an answer please? I spent ages on it :D Agent_EpicNoob 71 — 4y
0
Thank you for spending so much time. I really appreciate it! SUPERMEGADANTHEMAN 33 — 4y

1 answer

Log in to vote
0
Answered by 4 years ago
Edited 4 years ago

[Before you start reading, Here's the model if you're too confused: https://web.roblox.com/library/5001846573/Walking-NPC Also, I took ages on this, please mark it as an asnwer PLZ!]

Step 1: Make a group named something like "Walking NPC"

Step 2: Insert 5 parts inside it, or as many points you would like the NPC to walk to. Then, insert a dummy into the model. Put whatever you like on it to make it look cool.

Step 3: Name the parts you inserted in, to: PointA, PointB, PointC, ect.

Step 4: Insert 2 scripts into the dummy, and name them "Animate" and "Walk"

Step 5: Insert this into the animate script:

001function waitForChild(parent, childName)
002    while true do
003        local child = parent:findFirstChild(childName)
004        if child then
005            return child
006        end
007        parent.ChildAdded:wait()
008    end
009end
010 
011 
012 
013 
014 
015local Figure = script.Parent
View all 256 lines...

Step 6: Insert this into the walk script:

01model = script.Parent.Parent
02hum = script.Parent.Humanoid
03torso = script.Parent.Torso
04while true do
05    if model.PointA ~= nil then
06        a = model.PointA
07        hum:MoveTo(a.Position, a)
08        repeat
09            wait(0.1)
10        until (a.Position - torso.Position).magnitude <= 5
11    else
12        print("No Point A.")
13    end
14wait(0.1)
15    if model.PointB ~= nil then
View all 55 lines...

Your done!

0
Thanks a lot! SUPERMEGADANTHEMAN 33 — 4y
Ad

Answer this question