AeroGameFramework
AeroGameFramework is a Roblox game framework that makes development easy and fun. The framework is designed to simplify the communication between modules and seamlessly bridge the gap between the server and client.
Install / Use
/learn @Sleitnick/AeroGameFrameworkREADME
:warning: Project is archived :warning:
AeroGameFramework is no longer maintained and should not be used in future projects. Knit is the successor to AGF. Over time, it has become clear that AGF forces bad design decisions on developers and leads to a messy and fragmented code-base.

AeroGameFramework
A powerful game framework for the Roblox platform.
AeroGameFramework is a Roblox game framework that makes development easy and fun. The framework is designed to simplify the communication between modules and seamlessly bridge the gap between the server and client. Never again will you have to touch RemoteFunctions or RemoteEvents.
Join the Discord server for further discussion about the framework.
Documentation
Visit the documentation site.
Video Tutorial
Visit the AGF Tutorial playlist.
Example
Here is an example of a client-side controller invoking a server-side service to respawn the player. Notice that no remote objects have to be explicitly referenced:
-- Client:
local MyController = {}
function MyController:Start()
local didRespawn = self.Services.MyService:Respawn()
if (didRespawn) then
...
end
end
return MyController
-- Server:
local MyService = {Client = {}}
function MyService.Client:Respawn(player)
local humanoid = player.Character and player.Character:FindFirstChild("Humanoid")
-- Only allow respawning if the player is dead:
if ((not humanoid) or humanoid.Health == 0) then
player:LoadCharacter()
return true
end
return false
end
return MyService
These are complete code examples. They could be put into the framework and work as-is.
Support
Support AGF by buying me a coffee and keeping me energized to keep up the work on this project! Any support is very much appreciated.
<link href="https://fonts.googleapis.com/css?family=Lato&subset=latin,latin-ext" rel="stylesheet"><a class="bmc-button" target="_blank" href="https://www.buymeacoffee.com/sleitnick"><img src="https://cdn.buymeacoffee.com/buttons/bmc-new-btn-logo.svg" alt="Buy me a coffee"><span style="margin-left:15px;font-size:19px !important;">Buy me a coffee</span></a>Related Skills
node-connect
349.7kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
109.7kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
349.7kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
349.7kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
