I made a script. Below is the code on the script:
lol = script.Parent.Parent.Parent.Parent.hiuok.DropScript.StartValue.Value wat = script.Parent.Text wat.Text = lol.Value lol.Changed:connect(function(pro) wat.Text = lol.Value end)
then it said "attempt to index global 'lol' (a number value)" Help?
What you did was, made lol a value not a referable "Thing". To fix this mistake remove the .Value at the end of line 1!
lol = script.Parent.Parent.Parent.Parent.hiuok.DropScript.StartValue
Hope This helped this is also stated by legomasterbuilder