Text disapearing for no reason!

For some reason when I play my game the text just disapears for no reason, but all the properties are still normal. This is the error:

Maximum event re-entrancy depth exceeded for BindableEvent.Event

and

The script:

wait(1)
script.Parent.Text = game.ReplicatedStorage.Status.Value

game.ReplicatedStorage.Status:GetPropertyChangedSignal("Value"):Connect(function()
	script.Parent.Text = game.ReplicatedStorage.Status.Value
end)