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

Help with detecting Character?

Asked by
NykoVania 231 Moderation Voter
2 years ago

I get 2 errors in output:

attempt to index nil with Parent - Line 6

and

Argument 1 missing or nil - Line 12

I have no idea how to troubleshoot these errors and I need assistance with them if possible.

Code:

01local Player = script.Parent.Parent.Parent
02local Char = Player.Character
03Char.Hitboxes.Part.Touched:Connect(function(inst)
04    if Char.Hitboxes.Part.Active.Value == true then
05        local player
06        if game:GetService("Players"):GetPlayerFromCharacter(inst.Parent) or inst.Parent:FindFirstChildOfClass("Humanoid").Parent.Name then
07            player = game:GetService("Players"):GetPlayerFromCharacter(inst.Parent) or inst.Parent.Name
08            else print("no")
09        end
10        --------
11        local Character
12        if player.Character or game.Workspace[player.Name] then
13            Character = player.Character or game.Workspace[player.Name]
14        else print("no")
15        end
16        print(Character)
17        print(Player.Name .. Player.Parent.Name)
18    end
19end)

2 answers

Log in to vote
1
Answered by 2 years ago
Edited 2 years ago

don't really understand what you're trying to accomplish with your script, but if theres script.Parent.Parent.Parent then it sets up a new connection every time someone joins.

also, you should pick one and do GetPlayerFromCharacter or Humanoid.Parent.Name.

Detecting the character here is unnecessary. If you get the player with any of the two above, you already know the character will be inst.Parent

1part.Touched:Connect(function(object)
2    local character = object.Parent
3    local player = Players:GetPlayerFromCharacter(character)
4    if player and character then
5        print("both player and character detected")
6    end
7end)
0
I'm aware it sets a new connection, it's a function for each player. Thank you for your help! NykoVania 231 — 2y
Ad
Log in to vote
0
Answered by 2 years ago

Change

1if Char.Hitboxes.Part.Active.Value == true then

to

1if Char.Hitboxes.Part.Active.Value == true and inst ~= nil then

Answer this question