wait(1) while 1 == 1 do script.Parent.Bob.Value = script.Parent.Bob.Value + 1 wait(1) end
So this isn't working like I remember (I haven't scripted for months). I haven't been able to change any values for anything including booleans. I must be screwing up something but I don't know what.
Try doing this, it should owrk
wait(1) while wait(.5) do script.Parent.Bob.Value = script.Parent.Bob.Value + 1 end
Maybe it's not finding that it exists try a :WaitForChidl()
local value = script.Parent:WaitForChild("Bob") while true do wait(3) -- How long you want it to wait before adding 1 to the value value.Value = value.Value + 1 end