Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

Script isnt detecting updates via GetPropertyChangedSignal()?

Asked by 3 years ago

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:

01local Players = game:GetService("Players")
02Players.PlayerAdded:Connect(function(Player)
03 
04    Player.CharacterAdded:Connect(function(Character)
05 
06        local HumanoidRootPart = Character:WaitForChild("HumanoidRootPart")
07        HumanoidRootPart:GetPropertyChangedSignal("Position"):Connect(function()
08 
09            print(tostring((HumanoidRootPart.Position - script.Parent.Position).Magnitude))
10 
11        end)
12 
13    end)
14 
15end)

I have also noticed it detects the first 1-2 changes, then doesn't detect anymore.

Does anyone know what's wrong?

0
I thought it was GetPropertyChangedSignal with no brackets.. MrSmartyPants126 0 — 3y

Answer this question