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

Why does the Touched event not work?

Asked by 5 years ago
1seat.Touched:Connect(function(hit)
2    if hit.Parent.Humanoid then
3        print("it worked")
4    end
5end)

it never prints "it worked." This script is NOT a localscript.

And the seat is anchored and part of a model.

0
This script works just fine. Check for syntax errors. Also for better debugging, use an "else" statement to check if it didn't find the humanoid in hit.Parent. MustangHeart 67 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago

I fixed it myself:

01while wait() do
02 
03for i,v in pairs(game.Players:GetChildren()) do
04    if not v.Character then
05    print("waiting for character")
06    v.CharacterAdded:wait();
07    char = v.Character
08else
09    char = v.Character
10 
11    end
12    if char.Humanoid.Sit == true then
13        print(v.Name .. " is sitting")
14 
15    end
16end
17end

what i did do was looping through all the players in a loop, in another loop. Then i made in the for loop a script that would check if the player is sitting

0
I have no idea why the Touched event doesn't work, though BaconX112X 75 — 5y
Ad

Answer this question