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

Why does it say "Value is not a valid member of Model", etc. in out put?

Asked by 8 years ago

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?

01local debounce = false
02local player = game.Players.LocalPlayer
03 
04function onTouched(hit)
05    if not debounce then
06        debounce = true
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
12                end
13                hit.Parent.Value = true
14            end
15            wait(0.5)
View all 25 lines...

1 answer

Log in to vote
1
Answered by 8 years ago

You forgot to set the value to change! Use hit.Parent.Value.Value instead. Also in the if statement it is better practice to use findFirstChild("Value") rather than .value!

Ad

Answer this question