Post: I'm creating a GSC Menu and cant find the problem...
07-24-2015, 06:18 AM #1
mebn2
Keeper
(adsbygoogle = window.adsbygoogle || []).push({}); Hello guys! I'm creating a GSC Menu, i took a Menu Base and it only had 4 Sub Menus, but i decided to add more and when i inject it to the PS3, it freezes in the "Map Loading Screen" and i have to turn off the PS3. I checked the Syntax and everything is alright. Can you guys help me? :(

Here's how it looks:

CreateMenu()
{
self add_menu("Main Menu", undefined, "Verified");
self add_option("Main Menu", "Main Mods", ::submenu, "SubMenu1", "Main Mods");
self add_option("Main Menu", "Aimbot Menu", ::submenu, "SubMenu2", "Aimbot Menu");
self add_option("Main Menu", "Fun Menu", ::submenu, "SubMenu3", "Fun Menu");
self add_option("Main Menu", "Lobby Menu", ::submenu, "SubMenu4", "Lobby Menu");
self add_option("Main Menu", "Spawn Bots Menu", ::submenu, "SubMenu5", "Spawn Bots Menu");
self add_option("Main Menu", "Killstreaks Menu", ::submenu, "SubMenu6", "Killstreaks Menu");
self add_option("Main Menu", "Killstreaks Menu 2", ::submenu, "SubMenu7", "Killstreaks Menu 2");
self add_option("Main Menu", "Message Menu", ::submenu, "SubMenu8", "Message Menu");
self add_option("Main Menu", "Host Menu", ::submenu, "SubMenu9", "Host Menu");
self add_option("Main Menu", "Players Menu", ::submenu, "PlayersMenu", "PlayersMenu");

self add_menu("SubMenu1", "Main Menu", "VIP");
self add_option("SubMenu1", "God Mode", ::Toggle_God);
self add_option("SubMenu1", "Unlimited Ammo", ::unlimited_ammo);
self add_option("SubMenu1", "Force Host", ::forceHost);
self add_option("SubMenu1", "Give All Killstreaks", ::doKillstreaks);

self add_menu("SubMenu2", "Main Menu", "Co-Host");
self add_option("SubMenu2", "Unfair Aimbot", ::UnfairAimbot);
self add_option("SubMenu2", "FFA/Team Based Auto-Aim", ::doAimbots2);

self add_menu("SubMenu3", "Main Menu", "Admin");
self add_option("SubMenu3", "Teleport to +", ::teleToCrosshairs);
self add_option("SubMenu3", "No Clip", ::noClip);
self add_option("SubMenu3", "Forge Mode", ::ForgeON);
self add_option("SubMenu3", "Jetpack", ::doJetPack);

self add_menu("SubMenu4", "Main Menu", "Co-Host");
self add_option("SubMenu4", "Remove Death Barrier", ::deathBarrier);
self add_option("SubMenu4", "Hear Everyone", ::hearallplayers);
self add_option("SubMenu4", "Anti-Quit", ::doAntiQuit);
self add_option("SubMenu4", "Unlimited Game", ::Inf_Game);
self add_option("SubMenu4", "Multi-Jump", ::Toggle_Multijump);
self add_option("SubMenu4", "Speed 2x", ::Toggle_SpeedX2);
self add_option("SubMenu4", "End Game", ::doEndGame);

self add_menu("SubMenu5", "Main Menu", "Co-Host");
self add_option("SubMenu5", "Spawn 1 Bot", ::spawn1);
self add_option("SubMenu5", "Spawn 3 Bots", ::spawn3);
self add_option("SubMenu5", "Spawn 16 Bots", ::spawn1Cool Man (aka Tustin);

self add_menu("SubMenu6", "Main Menu", "Admin");
self add_option("SubMenu6", "Give Spyplane", ::GiveUAV);
self add_option("SubMenu6", "Give RC-XD", ::GiveRC);
self add_option("SubMenu6", "Give Hunter Killer", ::GiveHunt);
self add_option("SubMenu6", "Give Care Package", ::GiveCare);
self add_option("SubMenu6", "Give Counter UAV", ::GiveCUAV);
self add_option("SubMenu6", "Give Guardian", ::GiveGaurd);
self add_option("SubMenu6", "Give Hellstorm", ::GiveHell);
self add_option("SubMenu6", "Give Lighting Strike", ::GiveLS);
self add_option("SubMenu6", "Give Sentry Gun", ::GiveSG);
self add_option("SubMenu6", "Give A.G.R", ::GiveAG);
self add_option("SubMenu6", "Give Stealth Chopper", ::GiveSC);

self add_menu("SubMenu7", "Main Menu", "Admin");
self add_option("SubMenu7", "Give VSAT", ::GiveVSAT);
self add_option("SubMenu7", "Give Escort Drone", ::GiveED);
self add_option("SubMenu7", "Give EMP", ::GiveEMP);
self add_option("SubMenu7", "Give Warthog", ::GiveWH);
self add_option("SubMenu7", "Give Lodestar", ::GiveLST);
self add_option("SubMenu7", "Give VTOL Warship", ::GiveVW);
self add_option("SubMenu7", "Give Swarm", ::GiveSwarm);

self add_menu("SubMenu8", "Main Menu", "Admin");
self add_option("SubMenu8", "Welcome", ::typewritter, "^1Welcome To Project Ghost v1!");
self add_option("SubMenu8", "Creator Name", ::typewritter, "^2Created By: mebn2-co");
self add_option("SubMenu8", "Youtube", ::typewritter, "^6www.Youtube.com/VoltiDubstep");
self add_option("SubMenu8", "Trickshots", ::typewritter, "^7Trickshots Only");
self add_option("SubMenu8", "Instagram", ::typewritter, "^1Instagram: mebn2");
self add_option("SubMenu8", "Service", ::typewritter, "^2Do you want a modded account?");
self add_option("SubMenu8", "Payment", ::typewritter, "^2$10 PSN or $5 Paypal Smile");

self add_menu("SubMenu9", "Main Menu", "Co-Host");
self add_option("SubMenu9", "DoHeart", ::doHeart);
self add_option("SubMenu9", "Teleport Everyone To Me", ::doallplayerstome);

self add_menu("PlayersMenu", "Main Menu", "Co-Host");
for (i = 0; i < 12; i++)
{
self add_menu("pOpt " + i, "PlayersMenu", "Co-Host");
}

}
(adsbygoogle = window.adsbygoogle || []).push({});
07-24-2015, 06:24 AM #2
FRINZ
I’m too L33T
check ur functions
07-24-2015, 06:47 AM #3
mebn2
Keeper
Just checked, didnt find any errors :(
07-24-2015, 06:48 AM #4
mebn2
Keeper
Originally posted by FRlNZ View Post
check ur functions


Just checked, didnt find any errors :(
07-24-2015, 07:14 AM #5
Vondy Supreme
< ^ > < ^ >
Originally posted by mebn2 View Post
Just checked, didnt find any errors :(

This is why you should only add one function at a time. Because then if it freezes you know what causes it.
07-24-2015, 07:29 AM #6
mebn2
Keeper
Originally posted by EliteGamer01031 View Post
This is why you should only add one function at a time. Because then if it freezes you know what causes it.


Yeah :/
07-24-2015, 08:18 AM #7
mebn2
Keeper
Originally posted by EliteGamer01031 View Post
This is why you should only add one function at a time. Because then if it freezes you know what causes it.


Thank god i saved a backup, i have the original mod menu there, like the edited menu base 100% working! I'll do it one by one! Thanks for the help!

The following user thanked mebn2 for this useful post:

Vondy Supreme
07-24-2015, 01:50 PM #8
Im_YouViolateMe
NextGenUpdate Elite
Originally posted by mebn2 View Post
Hello guys! I'm creating a GSC Menu, i took a Menu Base and it only had 4 Sub Menus, but i decided to add more and when i inject it to the PS3, it freezes in the "Map Loading Screen" and i have to turn off the PS3. I checked the Syntax and everything is alright. Can you guys help me? :(

Here's how it looks:

CreateMenu()
{
self add_menu("Main Menu", undefined, "Verified");
self add_option("Main Menu", "Main Mods", ::submenu, "SubMenu1", "Main Mods");
self add_option("Main Menu", "Aimbot Menu", ::submenu, "SubMenu2", "Aimbot Menu");
self add_option("Main Menu", "Fun Menu", ::submenu, "SubMenu3", "Fun Menu");
self add_option("Main Menu", "Lobby Menu", ::submenu, "SubMenu4", "Lobby Menu");
self add_option("Main Menu", "Spawn Bots Menu", ::submenu, "SubMenu5", "Spawn Bots Menu");
self add_option("Main Menu", "Killstreaks Menu", ::submenu, "SubMenu6", "Killstreaks Menu");
self add_option("Main Menu", "Killstreaks Menu 2", ::submenu, "SubMenu7", "Killstreaks Menu 2");
self add_option("Main Menu", "Message Menu", ::submenu, "SubMenu8", "Message Menu");
self add_option("Main Menu", "Host Menu", ::submenu, "SubMenu9", "Host Menu");
self add_option("Main Menu", "Players Menu", ::submenu, "PlayersMenu", "PlayersMenu");

self add_menu("SubMenu1", "Main Menu", "VIP");
self add_option("SubMenu1", "God Mode", ::Toggle_God);
self add_option("SubMenu1", "Unlimited Ammo", ::unlimited_ammo);
self add_option("SubMenu1", "Force Host", ::forceHost);
self add_option("SubMenu1", "Give All Killstreaks", ::doKillstreaks);

self add_menu("SubMenu2", "Main Menu", "Co-Host");
self add_option("SubMenu2", "Unfair Aimbot", ::UnfairAimbot);
self add_option("SubMenu2", "FFA/Team Based Auto-Aim", ::doAimbots2);

self add_menu("SubMenu3", "Main Menu", "Admin");
self add_option("SubMenu3", "Teleport to +", ::teleToCrosshairs);
self add_option("SubMenu3", "No Clip", ::noClip);
self add_option("SubMenu3", "Forge Mode", ::ForgeON);
self add_option("SubMenu3", "Jetpack", ::doJetPack);

self add_menu("SubMenu4", "Main Menu", "Co-Host");
self add_option("SubMenu4", "Remove Death Barrier", ::deathBarrier);
self add_option("SubMenu4", "Hear Everyone", ::hearallplayers);
self add_option("SubMenu4", "Anti-Quit", ::doAntiQuit);
self add_option("SubMenu4", "Unlimited Game", ::Inf_Game);
self add_option("SubMenu4", "Multi-Jump", ::Toggle_Multijump);
self add_option("SubMenu4", "Speed 2x", ::Toggle_SpeedX2);
self add_option("SubMenu4", "End Game", ::doEndGame);

self add_menu("SubMenu5", "Main Menu", "Co-Host");
self add_option("SubMenu5", "Spawn 1 Bot", ::spawn1);
self add_option("SubMenu5", "Spawn 3 Bots", ::spawn3);
self add_option("SubMenu5", "Spawn 16 Bots", ::spawn1Cool Man (aka Tustin);

self add_menu("SubMenu6", "Main Menu", "Admin");
self add_option("SubMenu6", "Give Spyplane", ::GiveUAV);
self add_option("SubMenu6", "Give RC-XD", ::GiveRC);
self add_option("SubMenu6", "Give Hunter Killer", ::GiveHunt);
self add_option("SubMenu6", "Give Care Package", ::GiveCare);
self add_option("SubMenu6", "Give Counter UAV", ::GiveCUAV);
self add_option("SubMenu6", "Give Guardian", ::GiveGaurd);
self add_option("SubMenu6", "Give Hellstorm", ::GiveHell);
self add_option("SubMenu6", "Give Lighting Strike", ::GiveLS);
self add_option("SubMenu6", "Give Sentry Gun", ::GiveSG);
self add_option("SubMenu6", "Give A.G.R", ::GiveAG);
self add_option("SubMenu6", "Give Stealth Chopper", ::GiveSC);

self add_menu("SubMenu7", "Main Menu", "Admin");
self add_option("SubMenu7", "Give VSAT", ::GiveVSAT);
self add_option("SubMenu7", "Give Escort Drone", ::GiveED);
self add_option("SubMenu7", "Give EMP", ::GiveEMP);
self add_option("SubMenu7", "Give Warthog", ::GiveWH);
self add_option("SubMenu7", "Give Lodestar", ::GiveLST);
self add_option("SubMenu7", "Give VTOL Warship", ::GiveVW);
self add_option("SubMenu7", "Give Swarm", ::GiveSwarm);

self add_menu("SubMenu8", "Main Menu", "Admin");
self add_option("SubMenu8", "Welcome", ::typewritter, "^1Welcome To Project Ghost v1!");
self add_option("SubMenu8", "Creator Name", ::typewritter, "^2Created By: mebn2-co");
self add_option("SubMenu8", "Youtube", ::typewritter, "^6www.Youtube.com/VoltiDubstep");
self add_option("SubMenu8", "Trickshots", ::typewritter, "^7Trickshots Only");
self add_option("SubMenu8", "Instagram", ::typewritter, "^1Instagram: mebn2");
self add_option("SubMenu8", "Service", ::typewritter, "^2Do you want a modded account?");
self add_option("SubMenu8", "Payment", ::typewritter, "^2$10 PSN or $5 Paypal Smile");

self add_menu("SubMenu9", "Main Menu", "Co-Host");
self add_option("SubMenu9", "DoHeart", ::doHeart);
self add_option("SubMenu9", "Teleport Everyone To Me", ::doallplayerstome);

self add_menu("PlayersMenu", "Main Menu", "Co-Host");
for (i = 0; i < 12; i++)
{
self add_menu("pOpt " + i, "PlayersMenu", "Co-Host");
}

}


It it's not a syntax error, it's an unknown function. Like FR|NZ said, check to make sure you didn't accidentally spell a function wrong.

The following user thanked Im_YouViolateMe for this useful post:

mebn2

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo