You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 14, 2025. It is now read-only.
i've added add_ace group.admin scene allow to server.cfg
i've then changed in fivem-scenes config
Config.AdminOnly = true
Config.AdminDeleteAll = true
Config.EnableKeybind = true
however with keybind enabled even when fivem-scenes is in admin only.
non-admins can still access the creation screen for scenes.
please could you suggest how to resolve this.
i have tried the following already
fivem-scenes/client/client.lua
Lines 82 - 92
if Config.EnableKeybind and if Config.AdminOnly then
lib.addKeybind({
name = "Scenes",
description = "Create/Delete scenes",
defaultKey = Config.KeybindKey,
onReleased = function(self)
ToggleSceneLaser()
end
})
end
end)
However this did not work. instead it disabled the menu from keybinds and the /scene command entirely. rather than IF both config.enablekeybind and config.adminonly are set to true. then proceed.