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) |
2 | script.Parent.Humanoid:MoveTo(c.HumanoidRootPart.CFrame - radius ) --i dont want NPC going directly towards player |
3 | end ) |
Any help is appreciated :)
Please Help
Omg im sooo sorry but it didnt work, i tried
01 | wait( 1 ) |
02 | follow = false |
03 | Character = game.Workspace:FindFirstChild(game.Players.LocalPlayer.Name) |
04 |
05 | while 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 ) |
16 | end |
The (unanchored) person named NPC does not follow me...
You could get the nearest player by using tables and the table.sort()
method:
01 | local SearchDistance = 10000 |
02 |
03 | local NPC = script.Parent |
04 | local HRP = NPC.HumanoidRootPart |
05 | local Humanoid = NPC:FindFirstChildOfClass( "Humanoid" ) |
06 |
07 | local 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, |
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.
01 | wait( 1 ) |
02 |
03 | --variables |
04 | follow = false |
05 | Character = game.Workspace:FindFirstChild(game.Players.LocalPlayer.Name) |
06 |
07 | while 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 |
10 | game.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 ) |
19 | end ? |
--Change the "NPCNAME" to your NPC's name of course --Good luck