RedmScripts
Member
- Joined
- Dec 5, 2025
- Messages
- 48
- Reaction score
- 0

Introduction
Framework is created by .Project unk:
Framework repository:
txAdmin recipe:
I would like to say that this is forked and not supported by official authors.
I had just overall idea in my head create new options for RedM community, in that scenario own framework that i will release later, but i decided to use overextended stuff and later create / include own cool resources for it.
Only RedM code part is done by myself, huge respect to them.
- Everything is WIP but could be used.
- txAdmin recipe is clean RedM server with project-unk (our) forked stuff from overxtended + own.
- Char selection
- Registration form
- Option to /logout into charSelect
Examples
Code:
CreateThread(function()
-- Get an array containing all players, and apply metamethods.
local players = Ox.GetPlayers(true)
-- Get the first entry
local player = players[1]
if player then
-- Print the table, containing their identity, ids, phone number, etc.
print(json.encode(player, { indent = true }))
-- Retrieve all player metadata. These values are stored separately from the standard 'player' table.
local data = player.get()
print(json.encode(data, { indent = true }))
-- Retrieve the player's discord id from metadata.
local discord = player.get('discord')
print(json.encode(discord, { indent = true }))
end
end)