This repository has been archived on 2025-12-11. You can view files and clone it, but cannot push or open issues or pull requests.

18 lines
349 B
Lua
Raw Normal View History

2025-03-17 16:12:58 +00:00
if not Radial.IsOX() then return end
function Radial.Add(title, event)
lib.addRadialItem({
id = Radial.MenuID,
icon = "shirt",
label = title,
event = event,
onSelect = function()
TriggerEvent(event)
end
})
end
function Radial.Remove()
lib.removeRadialItem(Radial.MenuID)
end