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:
001 | function waitForChild(parent, childName) |
003 | local child = parent:findFirstChild(childName) |
007 | parent.ChildAdded:wait() |
015 | local Figure = script.Parent |
016 | local Torso = waitForChild(Figure, "Torso" ) |
017 | local RightShoulder = waitForChild(Torso, "Right Shoulder" ) |
018 | local LeftShoulder = waitForChild(Torso, "Left Shoulder" ) |
019 | local RightHip = waitForChild(Torso, "Right Hip" ) |
020 | local LeftHip = waitForChild(Torso, "Left Hip" ) |
021 | local Neck = waitForChild(Torso, "Neck" ) |
022 | local Humanoid = waitForChild(Figure, "Humanoid" ) |
023 | local pose = "Standing" |
025 | local toolAnim = "None" |
026 | local toolAnimTime = 0 |
028 | local isSeated = false |
032 | function onRunning(speed) |
033 | if isSeated then return end |
055 | function onGettingUp() |
063 | function onFallingDown() |
076 | RightShoulder.MaxVelocity = 0.5 |
077 | LeftShoulder.MaxVelocity = 0.5 |
078 | RightShoulder.DesiredAngle = 3.14 |
079 | LeftShoulder.DesiredAngle = - 3.14 |
080 | RightHip.DesiredAngle = 0 |
081 | LeftHip.DesiredAngle = 0 |
084 | function moveFreeFall() |
085 | RightShoulder.MaxVelocity = 0.5 |
086 | LeftShoulder.MaxVelocity = 0.5 |
087 | RightShoulder.DesiredAngle = 1 |
088 | LeftShoulder.DesiredAngle = - 1 |
089 | RightHip.DesiredAngle = 0 |
090 | LeftHip.DesiredAngle = 0 |
095 | RightShoulder.MaxVelocity = 0.5 |
096 | LeftShoulder.MaxVelocity = 0.5 |
097 | RightShoulder.DesiredAngle = - 3.14 |
098 | LeftShoulder.DesiredAngle = 3.14 |
099 | RightHip.DesiredAngle = 0 |
100 | LeftHip.DesiredAngle = 0 |
105 | RightShoulder.MaxVelocity = 0.15 |
106 | LeftShoulder.MaxVelocity = 0.15 |
107 | RightShoulder.DesiredAngle = 3.14 / 2 |
108 | LeftShoulder.DesiredAngle = - 3.14 / 2 |
109 | RightHip.DesiredAngle = 3.14 / 2 |
110 | LeftHip.DesiredAngle = - 3.14 / 2 |
115 | kidTable = Figure:children() |
116 | if (kidTable ~ = nil ) then |
119 | if (kidTable [ i ] .className = = "Tool" ) then return kidTable [ i ] end |
126 | function getToolAnim(tool) |
130 | if (c [ i ] .Name = = "toolanim" and c [ i ] .className = = "StringValue" ) then |
137 | function animateTool() |
139 | if (toolAnim = = "None" ) then |
140 | RightShoulder.DesiredAngle = 1.57 |
144 | if (toolAnim = = "Slash" ) then |
145 | RightShoulder.MaxVelocity = 0.5 |
146 | RightShoulder.DesiredAngle = 0 |
150 | if (toolAnim = = "Lunge" ) then |
151 | RightShoulder.MaxVelocity = 0.5 |
152 | LeftShoulder.MaxVelocity = 0.5 |
153 | RightHip.MaxVelocity = 0.5 |
154 | LeftHip.MaxVelocity = 0.5 |
155 | RightShoulder.DesiredAngle = 1.57 |
156 | LeftShoulder.DesiredAngle = 1.0 |
157 | RightHip.DesiredAngle = 1.57 |
158 | LeftHip.DesiredAngle = 1.0 |
167 | if (pose = = "Jumping" ) then |
172 | if (pose = = "FreeFall" ) then |
177 | if (pose = = "Climbing" ) then |
182 | if (pose = = "Seated" ) then |
188 | RightShoulder.MaxVelocity = 0.15 |
189 | LeftShoulder.MaxVelocity = 0.15 |
190 | if (pose = = "Running" ) then |
198 | desiredAngle = amplitude * math.sin(time*frequency) |
200 | RightShoulder.DesiredAngle = desiredAngle |
201 | LeftShoulder.DesiredAngle = desiredAngle |
202 | RightHip.DesiredAngle = -desiredAngle |
203 | LeftHip.DesiredAngle = -desiredAngle |
206 | local tool = getTool() |
210 | animStringValueObject = getToolAnim(tool) |
212 | if animStringValueObject ~ = nil then |
213 | toolAnim = animStringValueObject.Value |
215 | animStringValueObject.Parent = nil |
216 | toolAnimTime = time + . 3 |
219 | if time > toolAnimTime then |
236 | Humanoid.Died:connect(onDied) |
237 | Humanoid.Running:connect(onRunning) |
238 | Humanoid.Jumping:connect(onJumping) |
239 | Humanoid.Climbing:connect(onClimbing) |
240 | Humanoid.GettingUp:connect(onGettingUp) |
241 | Humanoid.FreeFalling:connect(onFreeFall) |
242 | Humanoid.FallingDown:connect(onFallingDown) |
243 | Humanoid.Seated:connect(onSeated) |
248 | local runService = game:service( "RunService" ); |
250 | while Figure.Parent~ = nil do |
251 | time = runService.Stepped:wait() |
252 | if time > nextTime then |
254 | nextTime = time + 0.1 |
Step 6: Insert this into the walk script:
01 | model = script.Parent.Parent |
02 | hum = script.Parent.Humanoid |
03 | torso = script.Parent.Torso |
05 | if model.PointA ~ = nil then |
07 | hum:MoveTo(a.Position, a) |
10 | until (a.Position - torso.Position).magnitude < = 5 |
15 | if model.PointB ~ = nil then |
17 | hum:MoveTo(b.Position, b) |
20 | until (b.Position - torso.Position).magnitude < = 5 |
25 | if model.PointC ~ = nil then |
27 | hum:MoveTo(c.Position, c) |
30 | until (c.Position - torso.Position).magnitude < = 5 |
35 | if model.PointD ~ = nil then |
37 | hum:MoveTo(d.Position, d) |
40 | until (d.Position - torso.Position).magnitude < = 5 |
45 | if model.PointE ~ = nil then |
47 | hum:MoveTo(e.Position, e) |
50 | until (e.Position - torso.Position).magnitude < = 5 |
Your done!