Detecting player on seat

local seat = script.Parent
while true do
	local plr = seat:FindFirstChild("SeatWeld")
	if plr == true then
		print("GOGOGOGOGOGO")
	break
	end
	wait(1)
	
end

why this is not working

1 Like

use the Occupant property instead.

seat:GetPropertyChangedSignal("Occupant"):Connect(function()
    print("GOGOGOGOGOGO")
end)
2 Likes

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