My RPG Monster will only follow other monsters, but not me?
So I've made a RPG Mob, but I can't get it to follow me, only other monsters?
My Goblin-Monster's Humanoidname = "Human"
And the white one's Humanoidname is = "Humanoid"
https://gyazo.com/c8e06fce383a49a01ef82837de9395f1
My Goblin will only follow other "Mobs" with their Humanoid also named "Humanoid", and therefore I'm wondering why it can't follow me? If I get near it is just idling and does nothing?
Anyways here's my "MobManager" script
001 | local Module = require(Game.ServerScriptService.MobFunctions) |
003 | local larm = script.Parent:FindFirstChild( "Left Arm" ) |
004 | local rarm = script.Parent:FindFirstChild( "Right Arm" ) |
005 | local Debounce = false |
006 | local OrigPos = script.Parent.Torso.Position |
011 | script.Parent.Name = script.Parent.SETTINGS.MobName.Value .. " [" .. script.Parent.SETTINGS.Lvl.Value.. "]" |
012 | script.Parent.Human.Health = script.Parent.Human.MaxHealth |
015 | function DamagePlayer(Hit) |
016 | if Hit.Parent:FindFirstChild( "Humanoid" ) ~ = nil and script.Parent.Human.Health > 0 then |
017 | if Debounce = = false then |
019 | Module.AttackPlayer(script.Parent, Hit.Parent:FindFirstChild( "Humanoid" ), script.Parent.SETTINGS.MinDmg.Value, script.Parent.SETTINGS.MaxDmg.Value, script.Parent.SETTINGS.HitChance.Value, script.Parent.SETTINGS.CritChance.Value, script.Parent.SETTINGS.CritMagnitude.Value) |
020 | wait(script.Parent.SETTINGS.CooldownMagnitude.Value/ 100 ) |
029 | function RegisterTool(tool) |
030 | if tool:IsA( "Tool" ) then |
032 | LinkedSword.Handle.Touched:connect(DamagePlayer) |
036 | larm.Touched:connect(DamagePlayer) |
037 | rarm.Touched:connect(DamagePlayer) |
038 | script.Parent.ChildAdded:connect(RegisterTool) |
042 | local tag = script.Parent.Human:FindFirstChild( "creator" ) |
044 | if tag.Value ~ = nil then |
045 | local Leaderstats = tag.Value:FindFirstChild( "leaderstats" ) |
046 | if script.Parent.SETTINGS:FindFirstChild( "XP" ) ~ = nil and script.Parent.SETTINGS:FindFirstChild( "Gold" ) ~ = nil then |
047 | Module.AddStats(Leaderstats, script.Parent.SETTINGS.XP.Value, script.Parent.SETTINGS.Gold.Value) |
049 | print ( "Can't find XP and Gold!" ) |
053 | if script.Parent:FindFirstChild( "Model" ) ~ = nil then |
054 | if script.Parent.Model:FindFirstChild( "Part" ) ~ = nil then |
055 | script.Parent.Model:Destroy() |
060 | script.Parent.Human.Died:connect(Died) |
063 | if script.Parent:FindFirstChild( "Model" ) = = nil then |
064 | model = Instance.new( "Model" , script.Parent) |
065 | part = Instance.new( "Part" , model) |
067 | part.CanCollide = false |
068 | part.Transparency = 1 |
069 | part.Position = OrigPos |
073 | function findNearestTorso(pos) |
074 | local list = Game.Workspace:GetChildren() |
076 | local dist = script.Parent.SETTINGS.ChaseRange.Value |
082 | if (temp 2. className = = "Model" ) and (temp 2 ~ = script.Parent) then |
083 | temp = temp 2 :FindFirstChild( "Torso" ) |
084 | human = temp 2 :FindFirstChild( "Humanoid" ) |
085 | if (temp ~ = nil ) and (human ~ = nil ) and (human.Health > 0 ) and (script.Parent.Torso.Position - OrigPos).magnitude < = script.Parent.SETTINGS.ChaseDistance.Value then |
086 | if (temp.Position - pos).magnitude < dist then |
088 | dist = (temp.Position - pos).magnitude |
100 | local target = findNearestTorso(script.Parent.Torso.Position) |
101 | if target ~ = nil then |
102 | script.Parent.Human:MoveTo(target.Position, target) |
105 | if TicksUntilWander > 0 then |
106 | TicksUntilWander = TicksUntilWander - 1 |
108 | TicksUntilWander = math.random( 10 , 25 ) |
109 | if target = = nil then |
110 | if script.Parent:FindFirstChild( "Model" ) ~ = nil then |
111 | script.Parent.Human:MoveTo(Vector 3. new(OrigPos.X + math.random(-script.Parent.SETTINGS.WanderRadius.Value, script.Parent.SETTINGS.WanderRadius.Value), OrigPos.Y, OrigPos.Z + math.random(-script.Parent.SETTINGS.WanderRadius.Value, script.Parent.SETTINGS.WanderRadius.Value)), script.Parent.Model:FindFirstChild( "Part" )) |