Vehicle Simulator script

This script was created by killerboy34
Script:
veh = nil
for i,v in pairs(game.Workspace.Vehicles:GetChildren()) do
if v:IsA("Model") then
if v.owner.Value == game.Players.LocalPlayer.Name then
veh = v
end
end
end

if veh then
han = veh.Handling
han.MaxSpeed.Value = 10000
han.Torque.Value = 20000
han.SteeringRadiusConstant.Value = 12000
han.FrictionOffroad.Value = 200
han.FrictionRoad.Value = 200
else
print("Unable to find your vehicle!")
end

No comments:

Post a Comment