After much blood, sweat, and tears, I have decided that I must resort to this site for answers. I have been trying to add to a numbervalue located in StarterGUI by use of a local script. However, my efforts have ended with absolutely no progress. Here is my code:
while true do wait(1) script.Parent.Value = script.Parent.Value + 1 end
I'm starting to think that values can't be changed by local scripts and FE is not enabled.
Maybe a :WaitForChild() and you can!
local val = script.Parent:WaitForChild("Value") while true do wait(3) val.Value = val.Value + 1 end
while wait(1) do script.Parent.ValueNameHere.Value + 1 end
Put the value inside the script and change ValueNameHere to the name of the value.
AHA!! I solved it myself. Apparently the script doesn't work in StarterGui but instead works in PlayerGui. Thanks for the help though guys!