I am trying to make an IntValue the text of the textlabel. I inserted this simple normal script into the IntValue which is a child of the textlabel. I'm actually having the same output for every script in this screen Gui, I am confused with this output:::: attempt to index global 'script' (a nil value)
while true do script.Parent.Parent.Text = ""..script.Parent.Value end
I think the script looks fine but the output is what really makes me wonder... I'm also sorry for my recent spam of the overlapping parts question. I still haven't figured it out but thanks for all the help from people that actually tried. :)
while wait() do -- You forgot to add a wait. script.Parent.Parent.Text = ""..tostring(script.Parent.Value) -- This is the tostring function. It makes any value a string. end