#The Dead Car Bug - Help me please, the VehicleSeat of the car i'm trying to make move is not working
10 messages · Page 1 of 1 (latest)
** You are now Level 5! **
Also can we see the scripts
hell nah I don't script 😭
the scripts are all about the problem but none of them worked
like this one
local seat = script.Parent
local Players = game:GetService("Players")seat.Changed:Connect(function(prop)
if prop == "Occupant" then
local humanoid = seat.Occupant
local player = game:GetService("Players"):GetPlayerFromCharacter(humanoid.Parent)
seat:SetNetworkOwner(player) -- set network owner to the player FIRST to make sure the connection is made instead of hoping the automatic connection takes hold
wait(.5) -- added wait to make sure the connection is made
seat:SetNetworkOwner(nil)
end
end)