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

How to detect if a Humanoid is near by 2 of radius to another Humanoid?

Asked by 11 years ago

Hi, since I'm making a TTT game I need to make a function that hide a player corpse in a barrel, already done that. This function is triggered if the player press E (ok) and if the player distance radius from the corpse is 2-3 but I don't know how!. This is the code in a LocalScript, which his Parent contains a ClickDetector to get the corpse, easy:

01local player= game.Players.LocalPlayer
02local mouse = player:GetMouse()
03local pInfo = script.Parent.PlayerInfo.Wrapper
04local target = script.Parent-- The corpse
05local hid = false
06 
07function func_1637702a()
08    -- hide the corpse (transparency => 0) and spawn barrel
09end
10 
11function keyPress(par1)
12    if par1 == "e" and hid == false then
13        local td = player:FindFirstChild("TempData")
14        local tp = td:FindFirstChild("Type")
15        --if player radius position <= corpse radius position by 2 then
View all 30 lines...

Thanks for helping me!

1 answer

Log in to vote
0
Answered by 11 years ago

Here you go:

01local player= game.Players.LocalPlayer
02local mouse = player:GetMouse()
03local pInfo = script.Parent.PlayerInfo.Wrapper
04local target = script.Parent-- The corpse
05local hid = false
06 
07function func_1637702a()
08    -- hide the corpse (transparency => 0) and spawn barrel
09end
10 
11function keyPress(par1)
12    if par1 == "e" and hid == false then
13        local td = player:FindFirstChild("TempData")
14        local tp = td:FindFirstChild("Type")
15        if (player.Character.Torso.Position-target.Torso.Position).magnitude <=  2 then
View all 30 lines...

I might have located objects wrongly, but that should be easy to fix.

Edit: I guess I could tell something about what I did. So to find out distance between two positions, you can use roblox's vector3 utility function magnitude. Essentially, it returns the lenght of vector. Since we have 2 positions, we can get the vector in between by subtracting one vector from other. Now the lenght of that vector equals distance.

0
Ok thanks, I understand all thanks to Phisic xD, anyway I now test that alessandro112 161 — 11y
Ad

Answer this question