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

My script won't detect the Humanoid.SeatPart?

Asked by
zomspi 541 Moderation Voter
5 years ago
Edited 5 years ago

I saw the SeatPart property of the Humanoid as I needed it for my game, I'd never used it before so I experimented but it doesn't work. My local script won't print (warn) 2.

01script.Parent.MouseButton1Click:Connect(function()
02    local plr = game.Players.LocalPlayer
03    local char = plr.Character
04    if char.Humanoid.Sit == true then
05        warn("1")
06        if char.Humanoid.SeatPart == game.Workspace.Plots.University.Chair.University then
07            warn("2")
08            local study = script.Parent.Parent.Study.Text
09            while char.Humanoid.SeatPart == "University" do
10                wait(5)
11                warn("3")
12                game.ReplicatedStorage.Studies:FireServer(study)
13 
14            end
15    end
16 
17    end
18end)
1
The Humaniod.SeatPart return the SeatPart itself not the Name of the SeatPart. So you should do SeatPart.Name https://developer.roblox.com/en-us/api-reference/property/Humanoid/SeatPart Block_manvn 395 — 5y
0
Zomspi make sure you do more research than asking. JesseSong 3916 — 5y
0
@JesseSong I will next time, but I looked on our profile and you have 3 questions that are: "Are serverscriptservice and serverstorage the same thing" - Easily re-searchable "Can someone give me a full list of all the services" - Easily re-searchable "Can someone define the script Touched:Wait() for me" - Easily re-searchable -=- I am sorry but please don't complain when you do the same zomspi 541 — 5y

1 answer

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

Hello! This might help you:

1if char.Humanoid.SeatPart.Name -- I added a Name, as that object has a Name.

Hope It helps :). EDIT: There is one more part you have to switch up, right here:

1while char.Humanoid.SeatPart.Name == "University" -- I changed this to name.
Ad

Answer this question