added new scripts and eup

This commit is contained in:
KingMcDonalds
2025-05-19 16:45:39 -07:00
parent 92357c972e
commit 5fa9cc69be
292 changed files with 10254 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
-- local menu = xMenu.New("MyMenuName")
-- local submenu = menu:BindSubMenu("SubMenuName")
-- menu:BindButton("ButtonName", function()
-- print("TRIGGERED!")
-- end)
-- menu:BindCheckbox("Checkbox", function(state)
-- print("STATE: " .. tostring(state))
-- end)
-- submenu:BindButton("ButtonName", function()
-- print("TRIGGERED!")
-- end)
-- submenu:BindList("ListHere", { "1", "2" }, function()
-- print("LIST CALLED!")
-- end)
-- Citizen.CreateThread(function()
-- while true do
-- Citizen.Wait(0)
-- if IsControlJustPressed(0, 121) then
-- if not menu:IsAnyMenuOpen() then
-- menu:OpenMenu()
-- end
-- end
-- end
-- end)