Why this script is not working?
Hi guys, it's since 2 weeks that I'm trying to resolve this problem, what I want to do is to "check" the corpse of a player while who's checking is the detective, this works but what I REALLY want to do is:
If the player has the mouse over my ClickDetector AND is in a distance of 6 studs between the player and the corpse AND the player pressed "E" then do....
But it works like this "if statement" is ignored...
01 | local player = game.Players.LocalPlayer |
02 | local mouse = player:GetMouse() |
03 | local pInfo = script.Parent.PlayerInfo.Wrapper |
04 | local target = script.Parent.Parent |
06 | function func_ 1637702 a() |
10 | function keyPress(par 1 ) |
12 | local td = player:FindFirstChild( "TempData" ) |
13 | local tp = td:FindFirstChild( "Type" ) |
14 | if player:DistanceFromCharacter(target.Torso.Position) < = 6 then |
15 | if tp.Value = = "Traitor" then |
16 | if pInfo.HealthStatus.Text = = "Corpse" then |
19 | print ( "The traitor tried to hide an alive player" ) |
22 | print ( "A player tried to hide a corpse while not being a traitor" ) |
28 | mouse.KeyDown:connect(keyPress) |
I want to use the method "MouseHoverEnter" but this will work only the function on mouse hover the clickdetector, and this function it's called when the player presses "e", so I need to check if the mouse is STILL on the clickdetector and I don't know how to do that, thanks for helping!