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

How can I detect if a player is within a certain radius?

Asked by
zomspi 541 Moderation Voter
4 years ago

I have searched everywhere, but every tutorial says I need to use magnitude, but none of them work. This is a script that didn't work and I can't figure out why?

local UIS =  game:GetService('UserInputService')
local plr = game.Players.LocalPlayer
UIS.InputBegan:Connect(function(input) 
 if input.KeyCode == Enum.KeyCode.E then 
   if (plr.Character.HumanoidRootPart.Position - script.Parent.Back.Position).magnitude <= 20 then

print("yes")
    end
   end
end)

Thanks!

0
.Magnitude maybe idk xd greatneil80 2647 — 4y
0
that should have worked greatneil80 2647 — 4y
0
I had it in workspace zomspi 541 — 4y

1 answer

Log in to vote
1
Answered by
TrippyV 314 Donator Moderation Voter
4 years ago

Judging by your use of script.Parent.Back.Position I assume that your LocalScript is within workspace. This would be your issue as LocalScripts cannot execute in any context outside of the Backpack, Character, PlayerGui, PlayerScripts, or the ReplicatedFirst service.

To fix this issue, simply put your script in something like StarterCharacterScripts and reference the object in a different way, like so:

(Also, a magnitude check is not needed if you are getting the distance from a player's character, as you can use the DistanceFromCharacter method of the player)

local Back = -- Put the path of your object here

local UIS = game:GetService("UserInputService")
local plr = game.Players.LocalPlayer

UIS.InputBegan:Connect(function(input, GPE)
    if GPE then return end

    if input.UserInputType == Enum.UserInputType.Keyboard then
        if input.KeyCode == Enum.KeyCode.E then
            if plr:DistanceFromCharacter(Back.Position) <= 20 then
                print("yes")
            end
        end
    end
end)

As a couple pointers, I've added a GameProcessedEvent check on line 7; this is entirely optional, but recommended as the event could potentially fire while the player is chatting if this check did not exist.

I've also added a UserInputType check on line 9 to prevent any errors from appearing regarding the KeyCode being nil for other types of inputs.

0
Thank you! zomspi 541 — 4y
Ad

Answer this question