Here you go:
01 | local player = game.Players.LocalPlayer |
02 | local mouse = player:GetMouse() |
03 | local pInfo = script.Parent.PlayerInfo.Wrapper |
04 | local target = script.Parent |
07 | function func_ 1637702 a() |
11 | function keyPress(par 1 ) |
12 | if par 1 = = "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 |
16 | if type .Value = = "Traitor" then |
17 | if pInfo.HealthStatus.Text = = "Corpse" then |
21 | print ( "The traitor tried to hide an alive player" ) |
24 | print ( "A player tried to hide a corpse while not being a traitor" ) |
30 | mouse.KeyDown:connect(keyPress) |
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.