attempt to index nil with 'Value' in Roblox Studio?
Good day,
I wrote a script in Roblox Studio that destroys an object when it hits another specific object. It also adds money.
However, if the object collides with the other object, the following error occurs: attempt to index nil with 'Value'
This is the code:
local values = script.Parent.Parent.Parent.Parent.Values script.Parent.Touched:Connect(function(hit) if hit.Name == "DropperPart" and hit:IsA("BasePart") then values.MoneyValue.Value += hit:FindFirstChild("CashValue").Value hit:Destroy() end end)
The error “attempt to index null with “Value” occurs when you try to access a property or a method of a zero value. In this case, it might be that “hit:FindFirstChild(“CashValue”) returns zero because there is no child named “CashValue”. However, you can fix this if you check if “CashValue” exists before you access the “Value” property.
This revised code first checks whether “CashValue” exists (i.e.,
is not zero). If “CashValue” exists, then its “Value” property is accessed.
Without knowing Roblox specifically now, I would suspect that
Nil delivers. Nil usually means in this context that no child exists with the name “CashValue”.