Script isnt detecting updates via GetPropertyChangedSignal()?
I'm making a custom proximity prompt system and I'm trying to detect when a player moves, then to check if they're close enough to see/use the prompt.
This is a test scrip that is supposed to detect movements:
01 | local Players = game:GetService( "Players" ) |
02 | Players.PlayerAdded:Connect( function (Player) |
04 | Player.CharacterAdded:Connect( function (Character) |
06 | local HumanoidRootPart = Character:WaitForChild( "HumanoidRootPart" ) |
07 | HumanoidRootPart:GetPropertyChangedSignal( "Position" ):Connect( function () |
09 | print ( tostring ((HumanoidRootPart.Position - script.Parent.Position).Magnitude)) |
I have also noticed it detects the first 1-2 changes, then doesn't detect anymore.
Does anyone know what's wrong?