AirPlane Simulator Script | SPEED INCREASER

Png-149.png

Created by crossliner

Features:

  • SPEED INCREASER
local services = setmetatable({}, {
   __index = function(t, service)
       return game:GetService(service);
   end;
})

local config_map = {};

for i, v in next, services.ReplicatedStorage.Vehicles:GetChildren() do
   if (not v:FindFirstChild("PlaneSettings")) then continue end;
   
   config_map[v.Name] = require(v.PlaneSettings);
end;

local cfg = {
   higherKnots = false;
};

local function modifyPlane(plane)
   local settings = require(plane.PlaneSettings);
   
   settings.MaxVelocity = cfg.higherKnots and 3000 or config_map[plane.Name].MaxVelocity;
end;

local spawnedVehicles = services.Workspace.SpawnedVehicles;

spawnedVehicles.ChildAdded:Connect(function(plane)
   plane:WaitForChild("PlaneSettings");
   print("how")
   modifyPlane(plane);
end);

local function syncSettings()
   for i, v in next, spawnedVehicles:GetChildren() do
       if (not v:FindFirstChild("PlaneSettings")) then continue end;
   
       modifyPlane(v);
   end;
end;



local function setSetting(name, value)
   cfg[name] = value;
   syncSettings();
end;

getgenv().setSetting = setSetting;

 

ENJOY!

 

Warning: DO NOT DOWNLOAD anything from this page, you’re only here to copy the script or Get it from Pastebin!

About Us

What is arponag.xyz? arponag.xyz is a website focused on releasing safe exploits, we only release the best and most trusted exploits on our website, guaranteed to satisfy you. Contact us [email protected]

Safety

Is this safe to use? Everything on the website has been scanned and tested by professionals and the community, we only release the best exploits for our users, so we make sure that our exploits won’t harm your devices, everything here is clean.

Copyright © 2018 – 2020 Arpon AG | All rights reserved |
Privacy Policy | Terms of Service