1 | seat.Touched:Connect( function (hit) |
2 | if hit.Parent.Humanoid then |
3 | print ( "it worked" ) |
4 | end |
5 | end ) |
it never prints "it worked." This script is NOT a localscript.
And the seat is anchored and part of a model.
I fixed it myself:
01 | while wait() do |
02 |
03 | for 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 |
08 | else |
09 | char = v.Character |
10 |
11 | end |
12 | if char.Humanoid.Sit = = true then |
13 | print (v.Name .. " is sitting" ) |
14 |
15 | end |
16 | end |
17 | end |
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