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
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
use the Occupant
property instead.
seat:GetPropertyChangedSignal("Occupant"):Connect(function()
print("GOGOGOGOGOGO")
end)
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.