

There’s no other option to join the game without making use of these main characters. Under normal circumstances, gamers enter GTA 5 as the main character. At the same time, the anti-cheat systems of GTA 5 won’t be able to catch the mod since it stays undetected. By using the mod menu, you won’t be breaking any rules. The tool assists such players by spawning their desired vehicles for them. So for players who wish to stay clear of that path but are looking for sweet rides for themselves, Kiddion’s mod menu offers such gamers a simple solution. Do whatever you wish, but you’ll have to pay for the consequence. There’s a set system of rules when it comes to the online game mode of GTA 5. But the same does not hold true for GTA 5 online multiplayer game modes. You can make use of any car on the road and take it home. OBJECT.CREATE_AMBIENT_PICKUP(GAMEPLAY.GET_HASH_KEY("PICKUP_MONEY_PAPER_BAG"), coords.x, coords.y, coords.In GTA 5 offline, you’ve got a wide variety of vehicles to choose from. Local coords = ENTITY.GET_OFFSET_FROM_ENTITY_IN_WORLD_COORDS(playerPed, 0.0, 3.5, 0.0) Īnd the amount of cash by changing the 40000 in this line You can easily change the position of the cash spawn by changing the red marked numbers in this line (XYZ coords)

This is what I've done in my Lua Trainer: function Trainer.AddCash() local playerPed = PLAYER.PLAYER_PED_ID() local player = PLAYER.GET_PLAYER_PED(playerPed) local playerExists = ENTITY.DOES_ENTITY_EXIST(playerPed) if (playerExists) then local playerPosition = ENTITY.GET_ENTITY_COORDS(PLAYER.PLAYER_PED_ID(), false) OBJECT.CREATE_AMBIENT_PICKUP(GAMEPLAY.GET_HASH_KEY("PICKUP_MONEY_MED_BAG"), playerPosition.x, playerPosition.y, playerPosition.z, 0, 500000, 1, false, true) Trainer.updateMenus("Cash Added", nil) endendĪnd spawn cash only: local cash = function cash.unload()endfunction cash.init()endfunction cash.tick()local playerPed = PLAYER.PLAYER_PED_ID() local player = PLAYER.GET_PLAYER_PED(playerPed) local playerExists = ENTITY.DOES_ENTITY_EXIST(playerPed) if (get_key_pressed(Keys.YOURFAVOURITEKEYHERE)) and (playerExists) then local coords = ENTITY.GET_OFFSET_FROM_ENTITY_IN_WORLD_COORDS(playerPed, 0.0, 3.5, 0.0) OBJECT.CREATE_AMBIENT_PICKUP(GAMEPLAY.GET_HASH_KEY("PICKUP_MONEY_PAPER_BAG"), coords.x, coords.y, coords.z, 0, 40000, 1, false, true) endendreturn cash
