Как сделать рабочую машину без багов в роблокс студио?

Аватар автора
Игры и Ностальгия
бусти - boosty.to/bocka скрипт: local car = script.Parent local br = car.Wheals.BRWheal.HingeConstraint local bl = car.Wheals.BLWheal.HingeConstraint local fr = car.Wheals.FRWheal.HingeConstraint local fl = car.Wheals.FLWheal.HingeConstraint local seat = car.VehicleSeat while wait(.1) do local speed = car.Value.Value if seat.Throttle == 0 then fr.AngularVelocity = 0; fl.AngularVelocity = 0; bl.AngularVelocity = 0; br.AngularVelocity = 0; end if seat.Throttle == 1 and seat.Steer == 0 then fr.AngularVelocity = -speed; fl.AngularVelocity = speed; bl.AngularVelocity = speed; br.AngularVelocity = -speed; end if seat.Throttle == 1 and seat.Steer == 1 then fr.AngularVelocity = speed; fl.AngularVelocity = -speed; bl.AngularVelocity = speed; br.AngularVelocity = -speed; end if seat.Throttle == 1 and seat.Steer == -1 then fr.AngularVelocity = -speed; fl.AngularVelocity = speed; bl.AngularVelocity = -speed; br.AngularVelocity = speed; end if seat.Throttle == -1 and seat.Steer == 1 then fr.AngularVelocity = speed; fl.AngularVelocity = -speed; bl.AngularVelocity = speed; br.AngularVelocity = -speed; end if seat.Throttle == -1 and seat.Steer == -1 then fr.AngularVelocity = -speed; fl.AngularVelocity = speed; bl.AngularVelocity = -speed; br.AngularVelocity = speed; end if seat.Throttle == -1 and seat.Steer == 0 then fr.AngularVelocity = speed; fl.AngularVelocity = -speed; bl.AngularVelocity = -speed; br.AngularVelocity...

0/0


0/0

0/0

0/0