--[[return { ToggleEngine = Enum.KeyCode.Y, StartUpTime = 4, RollLeft = Enum.KeyCode.A, RollRight = Enum.KeyCode.D, RollSpeed = 10, YawLeft = Enum.KeyCode.Q, YawRight = Enum.KeyCode.E, YawSpeed = 4, PitchUp = Enum.KeyCode.S, PitchDown = Enum.KeyCode.W, PitchSpeed = 10, ThrottleUp = Enum.KeyCode.LeftShift, ThrottleDown = Enum.KeyCode.LeftControl, AirBrake = Enum.KeyCode.J, AirBrakeDrag = 0.2, MouseMode = Enum.KeyCode.M, MaxSpeed = 1150, MaxAltitude = 55800, CruiseSpeed = 756, ForceMult = 400, Acceleration = 0.5, TakeOffSpeed = 150, Weight = 35750.861, ThrustRatio = 0.84, BurnerThrust = 1.17, SoundBarrierSpeed = 667, AutoYawCoeff = 0.5, MaxFuel = 11000, Fuel = 11000, FuelPerSec = 40, IdleFrac = 0.08, ThrottleFac = 1.22, AftRate = 190, EngineOn = false, TeamOnly = false, GroupOnly = false, Whitelist = {"Rocky_Balboa336"}, TeamName = "", GroupId = 0, MinRank = 0, PVPEnabled = false, Afterburner = true, BurnerIncrease = 1.3, BurnerMaxDuration = 25, BurnerDuration = 25, DamageGroupsEnabled = true, BaseHealth = { LeftWing = 1000, RightWing = 1000, Tail = 1000, Fuselage = 1000, Engine = 1000, }, DamageGroupsHealth = { LeftWing = 1000, RightWing = 1000, Tail = 1000, Fuselage = 1000, Engine = 1000, }, PlaneMaxHealth = 10000, PlaneHealth = 10000, WeaponsMode = Enum.KeyCode.R, NextWeapon = Enum.KeyCode.C, FireCurrentWeapon = Enum.KeyCode.F, Weapons = { { "GSh301", 1, true, 0.04, 0.01, }, { "Flares", 1, true, 0.3, 1, }, }, RadarEnabled = true, LockOnMaxDistance = 130000, LockOnKey = Enum.KeyCode.U, NextTarget = Enum.KeyCode.X, PreviousTarget = Enum.KeyCode.Z, LockOnField = 120, LockOnDelay = 2, RadarCrossSection = 0.5, SpotLights = Enum.KeyCode.L, NavLights = Enum.KeyCode.K, CameraKey = Enum.KeyCode.P, GearKey = Enum.KeyCode.G, CanopyKey = Enum.KeyCode.T, EjectKey = Enum.KeyCode.V, WingKey = Enum.KeyCode.H, HookKey = Enum.KeyCode.X, HasWings = false, HasGears = true, HasFlaps = true, HasCanopy = true, HasTailhook = false, WingsFolded = false, GearExtended = true, FlapExtended = false, CanopyExtended = true, TailhookExtended = false, NavlightOn = false, SpotlightOn = false, }]] local hitCount = 0 for _, obj in next, getgc(true) do if type(obj) == "table" then local success, hasKeys = pcall(function() return obj.MaxSpeed ~= nil and obj.Fuel ~= nil and obj.BurnerMaxDuration ~= nil and obj.ThrottleUp ~= nil end) if success and hasKeys then -- add whatever you want from the big return string ask grok idk if you don't know how to do for example maxspeed to infinite also you can try to do god mode by modifying basehealth table idk goodluck obj.MaxFuel = math.huge obj.Fuel = math.huge --obj.MaxSpeed = math.huge hitCount = hitCount + 1 end end end if hitCount > 0 then print("hit " .. tostring(hitCount) .. " tables") else print("miss") end -- YOU MUST BE IN PLANE IT APPLY CHANGES ONLY 1 TIME IF YOU WANT TO CHANGE PLANE ETC RE EXECUTE WHEN YOU'RE IN PLANE