.Sit doesn't work

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear!
    I would like to be able to make the dummy sit on the chair, not on the floor

  2. What is the issue? Include screenshots / videos if possible!
    The script should make the humanoid sit. But all it does is make the humanoid sit on the floor.

Humanoid.Sit = Tables[i].Chair1.Seat

Screenshot (1230)

  1. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    I’ve tried searching around the internet for a solution, found nothing

The Sit property of Humanoid is a boolean, so you cannot set a Seat for it. Try doing Tables[i].Chair1.Seat:Sit(Humanoid) instead.

2 Likes

@Vlado_RBLX Thank you, it works

Humanoid.Sit

is a boolean variable, essentially just making a humanoid sit down; but not sit down on an object, I’m afraid.

1 Like

oooooh i understand now. thanks

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.