Value.Changed is not responding

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear!
    Run a part of the script when a value is changed
  2. What is the issue? Include screenshots / videos if possible!
    it just will not print
  3. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    i tried using while true do then checking if the value is true which does work but just isn’t efficient
    After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
--the value is changed in a different script btw
local Value = script.Parent
local V4C = Value.Parent.ValueForCloning

V4C.Changed:Connect(function(NewValue)
	print(NewValue)
end)

Please do not ask people to write entire scripts or design entire systems for you. If you can’t answer the three questions above, you should probably pick a different category.

What values are Value and V4C? (what type of values)

Because for me, it worked when both work

they are both bool values (insert extra words)

Are you changing those values from server or client?