Free and premium Roblox asset packs: GUI templates, pet systems, datastores, and more. Each pack works standalone and unlocks far greater capability when combined.
Pick a pack and start building. Every pack works standalone. Combine them for even more power.
Complete GUI framework for Roblox games
Full pet hatch, equip & trading system
Player saves & Robux purchase handler
Centralized audio & SFX management
Tab leaderstats & global in-world leaderboards
Luck-based reward wheel with customizable prizes and odds
7-day daily streak rewards and in-session timed gifts with custom reward types
Redeemable codes for in-game rewards and promotional campaigns
Player-to-player item trading with offer and accept flow
Every pack ships with everything it needs to work standalone. Combine them to unlock cross-pack synergies.
A complete, polished GUI framework. Screens, modals, buttons, and nav, all wired up and ready to extend. Sound System, Music Player and Datastore & Purchase System are included.
Pet panels wire up automatically inside your existing GUI.
A full pet system: hatch, equip, trade, and level up, with built-in GUI panels. Includes Sound System, Music Player and Datastore & Purchase System.
Pet panels wire up automatically inside your existing GUI.
Persistent player data and Robux purchase handling, pre-wired to fire events when General UI Kit buy buttons are clicked.
Centralized audio management. Sound effects, music zones, and UI sounds all in one configurable system.
Tab-menu stat display and physical in-world global leaderboards. Both fully managed from the plugin — no script editing needed.
7-day daily streak rewards and in-session timed gifts. Configurable reward types (Cash, Diamonds, Spins, Custom) with live plugin settings and notification badges when rewards are claimable.
Grant spins as rewards or give pets via GrantPet as daily and session rewards.
Spin-to-win wheel with weighted random rewards. Free spin cooldown, developer product integration, and fully configurable from the plugin. Includes Sound System and Datastore & Purchase System.
Use GrantPet as a custom reward to give pets from the wheel.
Packs are designed to talk to each other. Drop in a second pack and the first one already knows what to do.
Click any pack to see its dependencies and synergies.
Click a pack in the map to see its details and interactions.
Installation guides, quick start instructions, and synergy notes for each pack.
RBLX_GUITemplate into StarterGuiServerScriptServiceConfig module-- Open a screen
local GUI = require(game.ReplicatedStorage
.RBLX.GUITemplate)
GUI:OpenScreen("Shop")
-- Listen for buy events
GUI.OnPurchase:Connect(function(itemId)
-- handle purchase
end)
Synergy Note: Installing Easy Pet System, Datastore, or Sound System and Music Player alongside this pack auto-enables their integration. No additional wiring needed.
RBLX_GUITemplate_Lite into StarterGui-- Navigate between screens
local GUI = require(game.ReplicatedStorage
.RBLX.GUILite)
GUI:Navigate("Settings")
-- Go back
GUI:Back()
RBLX_MusicPlayer into StarterGuiTracks config table-- Config module
return {
Tracks = {
{ Id = 1234567890,
Name = "Epic Theme" },
{ Id = 9876543210,
Name = "Chill Vibes" },
},
AutoPlay = true,
Volume = 0.8,
}
Synergy Note: When Sound System is installed, Music Player GUI Lite routes all playback through it for unified volume control.
ServerScriptServiceRGBLoop-- Tag any Part via script:
local CS = game:GetService(
"CollectionService")
CS:AddTag(workspace.NeonSign,
"RGBLoop")
-- Or in Studio:
-- Properties > Add Tag > "RGBLoop"
Documentation will be available when the Plugin launches.
Start with a free pack and add more as your game grows. Every pack is designed to work together from day one.