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

How to make an NPC Following script with radius?

Asked by 6 years ago

Its simple, and probably a LOT of people can do it, but iv never tried this before considering iv been scripting for how long now? years. So i have tried this...

(script inside NPC)

1--something that detects a player WITHING A RADIUS!!:Connect(function(c)
2script.Parent.Humanoid:MoveTo(c.HumanoidRootPart.CFrame  - radius )--i dont want NPC going directly towards player
3end)

Any help is appreciated :)

Please Help

0
just to clarify, you want the npc walking towards the player? s_iara 94 — 6y
0
lol, he specifically stated in the question for the npc to walk within a certain radius of the player, but not to the exact location of the player SerpentineKing 3885 — 6y
0
yes, but within a radius of like 10 bricks, i want NPC to stop within that radius, please answer this CommanderCaubunsia 126 — 6y
0
serpentine im sorry, i was CLARIFYING with COMMANDER tyvm s_iara 94 — 6y

3 answers

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

Omg im sooo sorry but it didnt work, i tried

01wait(1)
02follow = false
03Character = game.Workspace:FindFirstChild(game.Players.LocalPlayer.Name)
04 
05while true do
06 if game.Players.LocalPlayer.Character.HumanoidRootPart ~= nil then
07  if game.Players.LocalPlayer.Character.HumanoidRootPart.Position.X - game.Workspace.NPC.HumanoidRootPart.Position.X <= 10 then
08   follow = true
09  end
10 end
11 
12 if follow == true then
13  game.Workspace.NPC.Humanoid.WalkToPoint = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
14 end
15 wait(.5)
16end

The (unanchored) person named NPC does not follow me...

Ad
Log in to vote
0
Answered by
hellmatic 1523 Moderation Voter
6 years ago
Edited 6 years ago

You could get the nearest player by using tables and the table.sort() method:

01local SearchDistance = 10000
02 
03local NPC = script.Parent
04local HRP = NPC.HumanoidRootPart
05local Humanoid = NPC:FindFirstChildOfClass("Humanoid")
06 
07local function getNearestPlayer()
08    local playerDistances = {}
09    if HRP then
10        for i, player in pairs(game.Players:GetPlayers() do
11            -- get the distance between the player's character and the HRP's position
12            local distance = player:DistanceFromCharacter(HRP.Position)
13            -- 'table.insert(x, y, z)' has 3 arguments. x = table(array), y = number position (optional), z = variable/object/instance your adding to the table
14            table.insert(
15                playerDistances,
View all 52 lines...

Now with this you can figure out to stop the NPC from going over the radius. I have to go rn, attempt it and if you need any help leave a comment.

0
ok thx ill try, wait this looks like it should be in normal script right? nvm ill try both. CommanderCaubunsia 126 — 6y
0
so sorry it didnt work though CommanderCaubunsia 126 — 6y
Log in to vote
-1
Answered by
s_iara 94
6 years ago
Edited 6 years ago
01wait(1)
02 
03--variables
04follow = false
05Character = game.Workspace:FindFirstChild(game.Players.LocalPlayer.Name)
06 
07while true do
08 if game.Players.LocalPlayer.Character.Humanoid.RootPart ~= nil then
09  if game.Players.LocalPlayer.Character.Humanoid.RootPart.Position.X - --finds the character's position
10game.Workspace.[NPCNAME].Humanoid.RootPart.Position.X <= 10 then --determines if the npc is within the 10 radius
11   follow = true --if you're in the radius it will follow you
12  end
13 end
14 
15 if follow then
16  game.Workspace.[NPCNAME].Humanoid.WalkToPoint = game.Players.LocalPlayer.Character.Humanoid.RootPart.Position --this just tells the npc to walk towards you/ tells what 'following' will do
17 end
18 wait(.5)
19end?

--Change the "NPCNAME" to your NPC's name of course --Good luck

0
You might want to try it yourself, not too sure if it works s_iara 94 — 6y
0
ok CommanderCaubunsia 126 — 6y
0
It's also probably not what you wanted, but hopefully you have an idea s_iara 94 — 6y
0
please explain your answer rather than just giving code, and please make you code FE compatable theking48989987 2147 — 6y
0
no working!, and by the way i did not ask for follow when within radius, i want NPC to stop following me when within that radius!Follow me when im OUT the radius CommanderCaubunsia 126 — 6y

Answer this question