Why does it say "Value is not a valid member of Model", etc. in out put?
Why does it say in output: "17:13:42.515 - Value is not a valid member of Model", "17:13:42.515 - Script 'Workspace.Player1.StarterSword.Handle.LocalScript', Line 13", and "17:13:42.515 - Stack End". The NPC has the value inside of him. How can I fix this?
02 | local player = game.Players.LocalPlayer |
04 | function onTouched(hit) |
07 | if hit.Parent.Name:sub( 1 , 17 ) = = "AFK Noob Lv 1 HP " then |
08 | hit.Parent.Humanoid.Health = hit.Parent.Humanoid.Health - 25 |
09 | if hit.Parent.Humanoid.Health = = 0 then |
10 | if hit.Parent.Value = = false then |
11 | player.leaderstats.EXP.Value = player.leaderstats.EXP.Value + 16 |
13 | hit.Parent.Value = true |
17 | elseif hit.Parent.Name:sub( 1 , 4 ) = = "Noob" then |
18 | hit.Parent.Humanoid.Health = hit.Parent.Humanoid.Health - 25 |
25 | script.Parent.Touched:connect(onTouched) |