repo
stringclasses
341 values
file_path
stringlengths
29
173
language
stringclasses
2 values
file_type
stringclasses
4 values
code
stringlengths
2
1.66M
tokens
int64
2
598k
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Components/Container.luau
luau
.luau
--!strict --> Modules ------------------------------------------------------------------------------------------- local Components = script.Parent local CoreComponents = Components.Core local Squircle = require(CoreComponents.Squircle) local TextLabel = require(CoreComponents.TextLabel) local Arrow = require(CoreComp...
2,291
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Components/Core/Arrow.luau
luau
.luau
--!strict --> Services ------------------------------------------------------------------------------------------ ------------------------------------------------------------------------------------------------------- --> Modules --------------------------------------------------------------------------------------...
629
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Components/Core/CodeLabel.luau
luau
.luau
--!strict --> Modules ------------------------------------------------------------------------------------------- local CoreComponents = script.Parent local TextLabel = require(CoreComponents.TextLabel) local Modules = script.Parent.Parent.Parent.Modules local Component = require(Modules.Component) local Packages =...
224
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Components/Core/FocusVisual.luau
luau
.luau
--!strict --> Services ------------------------------------------------------------------------------------------ local GuiService = game:GetService("GuiService") ------------------------------------------------------------------------------------------------------- --> Modules -------------------------------------...
535
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Components/Core/Squircle.luau
luau
.luau
--!strict --> Services ------------------------------------------------------------------------------------------ ------------------------------------------------------------------------------------------------------- --> Modules --------------------------------------------------------------------------------------...
278
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Components/Core/TextLabel.luau
luau
.luau
--!strict --> Modules ------------------------------------------------------------------------------------------- local Modules = script.Parent.Parent.Parent.Modules local Component = require(Modules.Component) local ComputeTransforms = require(Modules.ComputeTransforms) local TableUtils = require(Modules.TableUtils)...
594
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Components/EmbeddedContainer.luau
luau
.luau
--!strict --> Modules ------------------------------------------------------------------------------------------- local CoreComponents = script.Parent.Core local Squircle = require(CoreComponents.Squircle) local Modules = script.Parent.Parent.Modules local Component = require( Modules.Component) local CombineProps =...
678
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Components/ImageBackground.luau
luau
.luau
--!strict --> Modules ------------------------------------------------------------------------------------------- local Modules = script.Parent.Parent.Modules local Component = require(Modules.Component) local CombineProps = require(Modules.CombineProps) local TableUtils = require(Modules.TableUtils) local Packages ...
483
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Components/Map.luau
luau
.luau
--!strict --> Modules ------------------------------------------------------------------------------------------- local Components = script.Parent local Container = require(Components.Container) local TextInput = require(Components.TextInput) local CoreComponents = Components.Core local TextLabel = require(CoreCompo...
2,823
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Components/Navigation.luau
luau
.luau
--!strict --> Modules ------------------------------------------------------------------------------------------- local Components = script.Parent local CoreComponents = Components.Core local Squircle = require(CoreComponents.Squircle) local Modules = script.Parent.Parent.Modules local Component = require(Modules.Co...
2,072
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Components/Padding/PaddingLarge.luau
luau
.luau
--!strict --> Modules ------------------------------------------------------------------------------------------- local Modules = script.Parent.Parent.Parent.Modules local Component = require(Modules.Component) ------------------------------------------------------------------------------------------------------- r...
97
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Components/Padding/PaddingSmall.luau
luau
.luau
--!strict --> Modules ------------------------------------------------------------------------------------------- local Modules = script.Parent.Parent.Parent.Modules local Component = require(Modules.Component) ------------------------------------------------------------------------------------------------------- r...
97
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Components/Progress.luau
luau
.luau
--!strict --> Modules ------------------------------------------------------------------------------------------- local CoreComponents = script.Parent.Core local Squircle = require(CoreComponents.Squircle) local TextLabel = require(CoreComponents.TextLabel) local Modules = script.Parent.Parent.Modules local Componen...
1,306
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Components/Scrollable.luau
luau
.luau
--!strict --> Modules ------------------------------------------------------------------------------------------- local Modules = script.Parent.Parent.Modules local Component = require(Modules.Component) local CombineProps = require(Modules.CombineProps) local ForceToState = require(Modules.ForceToState) local TableU...
1,101
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Components/Slider.luau
luau
.luau
--!strict --> Services ------------------------------------------------------------------------------------------ ------------------------------------------------------------------------------------------------------- --> Modules --------------------------------------------------------------------------------------...
1,652
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Components/Switch.luau
luau
.luau
--!strict --> Modules ------------------------------------------------------------------------------------------- local Modules = script.Parent.Parent.Modules local Component = require(Modules.Component) local ComputeTransforms = require(Modules.ComputeTransforms) local ForceToState = require(Modules.ForceToState) lo...
1,265
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Components/Tabs.luau
luau
.luau
--!strict --> Services ------------------------------------------------------------------------------------------ ------------------------------------------------------------------------------------------------------- --> Modules --------------------------------------------------------------------------------------...
1,585
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Components/TextInput.luau
luau
.luau
--!strict --> Services ------------------------------------------------------------------------------------------ local GuiService = game:GetService("GuiService") local UserInputService = game:GetService("UserInputService") ----------------------------------------------------------------------------------------------...
3,244
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Components/Widget.luau
luau
.luau
--!strict --> Services ------------------------------------------------------------------------------------------ local StarterGui = game:GetService("StarterGui") ------------------------------------------------------------------------------------------------------- --> Modules -------------------------------------...
741
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/LICENSE.luau
luau
.luau
--[[ MIT License Copyright (c) 2024 Cameron Campbell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, pub...
222
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Modules/CombineProps.luau
luau
.luau
--!strict --> Modules ------------------------------------------------------------------------------------------- local Packages = script.Parent.Parent.Packages local Fusion = require(Packages.Fusion) ------------------------------------------------------------------------------------------------------- --> Variabl...
231
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Modules/Component/Component.Types.luau
luau
.luau
--> Modules ------------------------------------------------------------------------------------------- local Modules = script.Parent.Parent local RootEventHandlersUtils = require(Modules.RootEventHandlersUtils) local ThemeHandler = require(Modules.ThemeHandler) local Packages = script.Parent.Parent.Parent.Packages lo...
130
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Modules/Component/init.luau
luau
.luau
--!strict --> Modules ------------------------------------------------------------------------------------------- local ComponentTypes = require(script["Component.Types"]) local Modules = script.Parent local CombineProps = require(Modules.CombineProps) local Packages = script.Parent.Parent.Packages local Fusion = r...
159
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Modules/ComputeMath.luau
luau
.luau
--!strict --> Services ------------------------------------------------------------------------------------------ ------------------------------------------------------------------------------------------------------- --> Modules --------------------------------------------------------------------------------------...
735
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Modules/ComputeTransforms.luau
luau
.luau
--!strict --> Services ------------------------------------------------------------------------------------------ ------------------------------------------------------------------------------------------------------- --> Modules --------------------------------------------------------------------------------------...
573
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Modules/ForceToState.luau
luau
.luau
--!strict --> Modules ------------------------------------------------------------------------------------------- local Packages = script.Parent.Parent.Packages local Fusion = require(Packages.Fusion) ------------------------------------------------------------------------------------------------------- return func...
94
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Modules/RootEventHandlersUtils.luau
luau
.luau
--!strict --> Services ------------------------------------------------------------------------------------------ ------------------------------------------------------------------------------------------------------- --> Modules --------------------------------------------------------------------------------------...
877
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Modules/TableUtils.luau
luau
.luau
return { CountKeys = function(tble: { [any]: any }): number local length = 0 for _ in tble do length += 1 end return length end, HasItems = function(tble: { [any]: any }): boolean for _ in tble do return true end return false end, Take = function<K, V>(tble: { [K]: V }, keyOrIndex: K, default: V?) lo...
247
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Modules/ThemeHandler/DefaultThemes.luau
luau
.luau
--> Modules ------------------------------------------------------------------------------------------- local Types = require(script.Parent["ThemeHandler.Types"]) ------------------------------------------------------------------------------------------------------- --> Types -----------------------------------------...
209
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Modules/ThemeHandler/ThemeHandler.Types.luau
luau
.luau
export type ThemeConfig = { Background: { Primary: Color3, Secondary: Color3, Tertiary: Color3, Stroke: Color3 }, Text: { Title: Color3, Body: Color3 }, Accent: { Primary: Color3, Secondary: Color3, Destructive: Color3 } } export type ThemeFlatConfig = { ["Background...
255
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Modules/ThemeHandler/init.luau
luau
.luau
--!strict --> Modules ------------------------------------------------------------------------------------------- local Types = require(script["ThemeHandler.Types"]) local DefaultThemes = require(script.DefaultThemes) local Packages = script.Parent.Parent.Packages local Fusion = require(Packages.Fusion) ------------...
871
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Modules/ThemeHandlerOld.luau
luau
.luau
--!strict --> Services ------------------------------------------------------------------------------------------ ------------------------------------------------------------------------------------------------------- --> Modules --------------------------------------------------------------------------------------...
980
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/Modules/TrackProperty.luau
luau
.luau
--!strict --> Modules ------------------------------------------------------------------------------------------- local Packages = script.Parent.Parent.Packages local Fusion = require(Packages.Fusion) ------------------------------------------------------------------------------------------------------- --> Variabl...
357
cameronpcampbell/Ignite
cameronpcampbell-Ignite-61cf3cc/src/init.luau
luau
.luau
--!strict --> Services ------------------------------------------------------------------------------------------ ------------------------------------------------------------------------------------------------------- --> Modules --------------------------------------------------------------------------------------...
365
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Administer/Modules/Helpers/BootstrapGame.luau
luau
.luau
--// Administer --// CodingAgent 2026 --// This file exists to stop circular imports local Root = script:FindFirstAncestor("Loader") local Admins = require(Root.Modules.AdminRunner) local Apps = require(Root.Modules.Apps) local Utils = require(Root.Modules.Utilities) local Var = require(Root.Core.Variables) return f...
390
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Loader/Core/Configuration.luau
luau
.luau
--!strict --// Administer --// CodingAgent 2026 local Types = require(script.Parent.Types) local Locales: { Default: string, Value: string, Items: { string } } = { Default = "en", Value = "en", Items = {}, } for _, Locale in script.Parent.Locales:GetChildren() do table.insert(Locales.Items, Locale.Name) end type...
3,488
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Loader/Core/Icons/init.luau
luau
.luau
--// Administer --// CodingAgent 2026 return { ["Meta"] = { Name = "UIcons", Author = "FlatIcon", Type = "full-set", AllowThemeDependencies = true, }, ["logos"] = { ["administer-blue"] = "116599744136879", ["administer-can"] = "18841275783", ["administer-beta"] = "18770010888", ["administer-wirefra...
1,699
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Loader/Core/Locales/th.luau
luau
.luau
--// # THIS IS AN AUTOGENERATED FILE - DO NOT EDIT --// Compilation Date: Wed Oct 01 2026 18:40:37 GMT-0400 (Eastern Daylight Time) --// Source file: /mnt/other/Projects/Administer/administer/src/Server/Core/Locales/th.luau return {}
71
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Loader/Modules/Debugging.luau
luau
.luau
--// Administer --// CodingAgent 2026 local Debugging = {} local Root = script:FindFirstAncestor("Loader") local AdminRunner = require(Root.Modules.AdminRunner) local Var = require(Root.Core.Variables) Debugging.text = [[ ///// ADMINISTER DEBUG OUTPUT \\\\\ * VERSION: 1.0 * GENERATION TIMESTAMP: 1727997091 * GENERA...
1,122
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Loader/Modules/Helpers/PanelRelocator.luau
luau
.luau
--// Administer --// CodingAgent 2026 --// Administer - PanelRelocator --// Patches AdministerMainPanel's script Sources from the Rojo-managed --// PanelScripts folder at server startup, before any panel is cloned. --// --// HOW IT WORKS: --// PanelScripts/ mirrors the script hierarchy inside AdministerMainPanel. --...
731
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Loader/Modules/Helpers/ParseCommand.luau
luau
.luau
--// Administer --// CodingAgent 2026 --// This code sucks, hopefully it will never have to be seen return function(Input: string): { Command: string, Flags: {} } local Options: {} = {} local Split = {} local Quotes = false local Buff = "" for char in string.gmatch(Input .. " ", ".") do if char == "'" or char ...
367
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Loader/Modules/Importer.luau
luau
.luau
--// Administer --// CodingAgent 2026 local Importer = {} local Utils = require(script.Parent.Utilities) Importer.Systems = { "EXE_5", "EXE_6", "HD_ADMIN", "ADONIS", "BASIC_ADMIN_ESSENTIALS", "KOHLS_ADMIN", "KOHLS_ADMIN_2", } function Importer.GetData(SystemName) if SystemName == "EXE_5" then local Exe5El...
1,000
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Loader/Modules/SettingsAPI/Signal/Connection.luau
luau
.luau
local Connection = {} Connection.__index = Connection function Connection.new(callback) local newConnection = {} newConnection.callback = function(...) callback(...) end return newConnection end function Connection:_Fire() if self.callback then task.spawn(self.callback) end end function Connection:Disconne...
72
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Loader/Modules/SettingsAPI/Signal/init.luau
luau
.luau
local Signal = {} Signal.__index = Signal local Connection = require(script.Connection) local HttpService = game:GetService("HttpService") function Signal.new() local connectionSignal = {} connectionSignal.Connections = {} function connectionSignal:Connect(setting: string, callback) local connection = Connectio...
125
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Loader/Modules/SettingsAPI/init.luau
luau
.luau
-- dogo8me2 2024 local SettingsAPI = {} local Types = require(script.Parent.Parent.Core.Types) local Signal = require(script.Signal) local DataStoreService = game:GetService("DataStoreService") local HttpService = game:GetService("HttpService") local ReplicatedStorage = game:GetService("ReplicatedStorage") local Pla...
2,113
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Loader/SettingsAPIExample.server.luau
luau
.luau
local SettingsAPI = require(game.ServerScriptService.Administer.Loader.Modules.SettingsAPI) local Settings = SettingsAPI.new({ ["_SettingsMeta"] = { ["Name"] = "Administertesttesttest", }, ["General"] = { ["_CategoryOpts"] = { ["DisplayName"] = "General", ["Color"] = "#fff", ["Description"] = "Configu...
494
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Resources/AdministerMainPanel/ButtonAnims.luau
luau
.luau
return function(UIInstance, Mouse, Duration, Color) if UIInstance.ClipsDescendants == false then UIInstance.ClipsDescendants = true end if UIInstance.AutoButtonColor == true then UIInstance.AutoButtonColor = false end local ASX, ASY = UIInstance.AbsoluteSize.X, UIInstance.AbsoluteSize.Y local APX, APY = UIIn...
294
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Resources/AdministerMainPanel/Client/Libraries/ConfettiCreator.luau
luau
.luau
local gui = script.Parent.Parent.Parent local types = script:WaitForChild("ConfettiTypes") local deleteConfettiAfter = 10 local rnd = Random.new() function CreateOne(origin, colors, minSize, maxSize) local allTypes = types:GetChildren() local confetti = allTypes[rnd:NextInteger(1, #allTypes)]:Clone() confetti....
1,150
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Resources/AdministerMainPanel/Client/Libraries/Neon.luau
luau
.luau
-- fractality local module = {} local RunService = game:GetService("RunService") local camera = workspace.CurrentCamera do local function IsNotNaN(x) return x == x end local continue = IsNotNaN(camera:ScreenPointToRay(0, 0).Origin.x) while not continue do RunService.RenderStepped:wait() continue = IsNotNaN...
1,874
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Resources/AdministerMainPanel/Client/Libraries/QuickBlur.luau
luau
.luau
local QuickBlur = {} :: QuickBlurImpl type QuickBlurImpl = { Blur: (self: QuickBlurImpl, Image: EditableImage, Size: number?, Desample: number?) -> EditableImage, } function QuickBlur:Blur(Image, Size, Desample) Size = Size or 3 Desample = Desample or 12 local ImageWidth = Image.Size.X // Desample local ImageHe...
735
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Resources/AdministerMainPanel/Client/Modules/Admins.luau
luau
.luau
--// CodingAgent 2026 local Modules = script.Parent local Libs = script.Parent.Parent.Libraries local Utilities = require(Modules.Utilities) local Frontend = require(Modules.Frontend) local Var = require(Modules.Variables) local Admins = {} local Connections: { RBXScriptConnection } = {} local RanksFrame = Var.Main...
8,900
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Resources/AdministerMainPanel/Client/Modules/ClientSettings/ElementModules/Dropdown/init.luau
luau
.luau
-- AjaxTiba -- Services local runService = game:GetService("RunService") local userInputService = game:GetService("UserInputService") local guiService = game:GetService("GuiService") local Frontend = require(script.Parent.Parent.Parent.Frontend) local Utilities = require(script.Parent.Parent.Parent.Utilities) local ...
797
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Resources/AdministerMainPanel/Client/Modules/ClientSettings/ElementModules/InputBox.luau
luau
.luau
-- AjaxTiba -- Services local runService = game:GetService("RunService") local guiService = game:GetService("GuiService") local module = {} module.__index = module local LastGoodWidth function module.setupTextBox(textBox: TextBox) local self = {} self.textBox = textBox self.value = "" self.ValueChangedBindabl...
204
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Resources/AdministerMainPanel/Client/Modules/ClientSettings/ElementModules/KeybindSelector.luau
luau
.luau
-- AjaxTiba -- Services local runService = game:GetService("RunService") local userInputService = game:GetService("UserInputService") local guiService = game:GetService("GuiService") local module = {} module.__index = module function module.createKeybindListener(bounds: GuiButton, indicationText: TextLabel) local ...
423
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Resources/AdministerMainPanel/Client/Modules/ClientSettings/ElementModules/Slider.luau
luau
.luau
-- AjaxTiba -- Services local runService = game:GetService("RunService") local userInputService = game:GetService("UserInputService") local guiService = game:GetService("GuiService") local module = {} module.__index = module function module.createSlider(bounds: GuiButton, min, max, step, fill: Frame, head: Frame) ...
576
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Resources/AdministerMainPanel/Client/Modules/ClientSettings/ElementModules/Toggle.luau
luau
.luau
-- AjaxTiba -- Services local tweenService = game:GetService("TweenService") local module = {} module.__index = module function module.createSwitch(bounds: GuiButton, indicator: TextLabel) local self = {} self.boundingArea = bounds self.indicatingText = indicator self.value = false bounds.MouseButton1Click:C...
197
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Resources/AdministerMainPanel/Client/Modules/Frontend.luau
luau
.luau
--// Administer --// CodingAgent 2024-2026 local Frontend = { Popup = {}, Drawer = {} } local Libraries = script.Parent.Parent.Libraries local Modules = script.Parent local Utilities = require(Modules.Utilities) local Ripple = require(Modules.Parent.Parent.ButtonAnims) local Var = require(Modules.Variables) local Ty...
14,036
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Resources/AdministerMainPanel/Client/Modules/Helpers/FirstTimeSetup/Tour/init.luau
luau
.luau
-- AjaxTiba, July 2026 (For pyxfloof) local Root = script.Parent.Parent.Parent local Var = require(Root.Variables) local Frontend = require(Root.Frontend) local Utilities = require(Root.Utilities) local TweenService = Var.Services.TweenService local Frames = Var.MainFrame.Welcome.SetupFull local tour = {} tour.Butt...
1,985
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Resources/AdministerMainPanel/Client/Modules/Helpers/FirstTimeSetup/init.luau
luau
.luau
--// CodingAgent 2026 local Root = script.Parent.Parent local Var = require(Root.Variables) local Frontend = require(Root.Frontend) local Utilities = require(Root.Utilities) local Page local Frames = Var.MainFrame.Welcome.SetupFull local TweenService = Var.Services.TweenService local function SwapPages(Page1, Page...
2,156
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Resources/AdministerMainPanel/Client/Modules/Types.luau
luau
.luau
local Types = {} export type ButtonConfig = { Icon: string, AppName: string, Background: string, Description: string, MainButtonClick: () -> (), MainButtonFrame: Frame | CanvasGroup?, ButtonID: string, SubIcons: { { Icon: string, Name: string, Frame: Frame | CanvasGroup, Click: () -> (), Bu...
100
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Resources/AdministerMainPanel/Client/Modules/UI/AdminHelperEnv.luau
luau
.luau
return { EditMode = false, MaxPeople = 50, EditModeMembers = {}, EditModeApps = {}, EditModeName = "", EditModeColor = "", EditModeReason = "", EditModeIsProtected = false, EditModeRank = 0, HasPopulatedApps = false, Strings = { ["_locale"] = "en_US", ["WelcHeaderNew"] = "Welcome to the Rank Creator"...
775
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Resources/AdministerMainPanel/Client/Modules/UI/Settings.luau
luau
.luau
local module = {} local Variables = require(script.Parent.Parent.Variables) local settings = Variables.MainFrame.Configuration.Settings type settingProperties = { title: string, subtitle: string, description: string, placeholder: string } type category = { title: string, containers: { title: string, entries: { setting...
86
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Resources/AdministerMainPanel/Client/Modules/Variables.luau
luau
.luau
--// Administer --// CodingAgent (2024-2026) local Variables = {} Variables.AdministerRoot = script.Parent.Parent.Parent Variables.Remotes = game.ReplicatedStorage:WaitForChild("Administer", 15) Variables.MainFrame = Variables.AdministerRoot:WaitForChild("Main", 10) Variables.Mobile = false Variables.InitErrored = f...
318
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Resources/AdministerMainPanel/Client/Modules/Widgets.luau
luau
.luau
--// Administer --// CodingAgent 2024-2026 local Widgets = { Active = {}, } local Modules = script.Parent local Utilities = require(Modules.Utilities) local Frontend = require(Modules.Frontend) local Var = require(Modules.Variables) function Widgets.GetAvailableWidgets(): { Small: { {} }, Large: { {} } } local Wi...
4,053
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Resources/AdministerMainPanel/Client/init.client.luau
luau
.luau
--// Administer --// CodingAgent 2022-2026 local SharedLibs = script.Libraries local Assets = script.Assets local Modules = script.Modules local Var = require(Modules.Variables) task.spawn(function() for _, effect in ipairs(game.Lighting:GetChildren()) do if effect:IsA("BlurEffect") then effect.Size = 0 end ...
4,449
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Resources/AdministerMainPanel/CommandBar.client.luau
luau
.luau
--// darkpixlz 2024 --// Administer local TS = game:GetService("TweenService") local UIS = game:GetService("UserInputService") local CommandBar = script.Parent.CommandBar local Actions = { ["Moderation+_Ban"] = { ["ActionName"] = "Ban", ["Description"] = "Ban a set of users.", ["FromApp"] = "Configuration", ...
1,288
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Resources/AdministerMainPanel/Relocator.luau
luau
.luau
--// Administer - UIScript Relocator --// Moves scripts from the UIScripts holder folder to their correct UI parents, --// then enables them. Called once at the top of Client/init.client.luau. local Panel = script.Parent local Holder = script.Parent.UIScripts local function place(scriptName: string, getParent: () -> ...
461
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Resources/AdministerMainPanel/UIScripts/FullscreenMessage_Fade.client.luau
luau
.luau
--// CodingAgent 2024 local TS = game:GetService("TweenService") TS:Create( script.Parent, TweenInfo.new(0.75, Enum.EasingStyle.Quart), { GroupTransparency = 0, Size = UDim2.new(1, 0, 1, 0) } ):Play() local Blur = nil script.Parent.Exit.MouseButton1Click:Connect(function() TS:Create( script.Parent, TweenInf...
171
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Resources/AdministerMainPanel/UIScripts/Notifications_InitialTemplate_Neon.client.luau
luau
.luau
local ButtonAnims = game.Players.LocalPlayer.PlayerGui:FindFirstChild("AdministerMainPanel") and game.Players.LocalPlayer.PlayerGui.AdministerMainPanel:FindFirstChild("ButtonAnims") if not ButtonAnims then return end local neonModule = ButtonAnims:WaitForChild("neon", 5) if not neonModule then return end local neo...
141
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Resources/AdministerMainPanel/UIScripts/Notifications_Watcher.client.luau
luau
.luau
script.Parent.ChildAdded:Connect(function(Inst) xpcall(function() Inst.NotificationContent.Background.LocalScript.Enabled = true end, function() end) end)
35
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Administer/Resources/AdministerMainPanel/UIScripts/Spinner_NewAdmin.client.luau
luau
.luau
local target = script.Parent if not target:IsA("GuiObject") then return end game:GetService("TweenService") :Create(target, TweenInfo.new(0.3, Enum.EasingStyle.Linear, Enum.EasingDirection.In, -1), { Rotation = 360 }) :Play()
66
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/Clear.server.luau
luau
.luau
local DataStoreService = game:GetService("DataStoreService") local StoresToClear = { Admins = DataStoreService:GetDataStore("Administer_Admins"), Home = DataStoreService:GetDataStore("Administer_HomeStore"), AppData = DataStoreService:GetDataStore("Administer_AppData"), Settings = DataStoreService:GetDataStore("Ad...
346
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/ColorGrouping.server.luau
luau
.luau
local colorGroups = 15 local administerGUI = game.ServerScriptService.Administer.Resources.AdministerMainPanel local administerGUIObjects = {} function reverseTable(t) local reversed = {} for i = #t, 1, -1 do reversed[#reversed + 1] = t[i] end return reversed end function colorSequenceToRGB(colorSequence: Col...
1,801
administer-org/administer
administer-org-administer-31365ed/src/ServerScriptService/gadgetify.server.luau
luau
.luau
local gadgetImages = { "132155185248849", "96879314613381", "75428722132628", "130692500562659", "120002585152101", "109826556268480", "80314306562423", "103465951664730", "73339990402667", "134954987288161", "101058423449889", "113361826673953", "93764028428803", "133407670117159", "70699994424997", "1...
271
4lpaca-pin/NeverLose
4lpaca-pin-NeverLose-2308c10/module.luau
luau
.luau
-- Synchronization Interface -- cloneref = cloneref or function(f) return f; end; local SyncManager = {}; local CoreGui = cloneref(game:GetService('CoreGui')); SyncManager.Players = {}; SyncManager.RenderValue = false; SyncManager.Thread = nil; SyncManager.Icon = "rbxassetid://120358385035996"; function SyncManager:...
479
devSparkle/sentry-roblox
devSparkle-sentry-roblox-264ab97/src/Defaults.luau
luau
.luau
--!nocheck --// Variables local RunService = game:GetService("RunService") local Module = {} type Hint = {[string]: any} type Filter<T> = (T, Hint) -> (T?) --[=[ @within SDK @interface Options .DSN string? -- The DSN for the sentry project to send events to .debug boolean? -- See [SDK.debug] (must press the "...
1,315
photobooth-rbx/photobooth-plugin
photobooth-rbx-photobooth-plugin-51a7301/lune/create-bindings-package.luau
luau
.luau
local fs = require("@lune/fs") local serde = require("@lune/serde") if fs.isDir("bindings-package") then fs.removeDir("bindings-package") end fs.copy("src/Main/Bindings/Interface", "bindings-package") -- fs.copy("LICENSE", "bindings-package/LICENSE") local wallyToml = serde.decode("toml", fs.readFile("wally.toml"))...
275
photobooth-rbx/photobooth-plugin
photobooth-rbx-photobooth-plugin-51a7301/lune/create-uploader-standalone.luau
luau
.luau
local fs = require("@lune/fs") local serde = require("@lune/serde") if fs.isDir("uploader-src") then fs.removeDir("uploader-src") end fs.copy("src", "uploader-src") fs.removeFile("uploader-src/Builds/Plugin.luau") fs.removeFile("uploader-src/Constants.luau") fs.removeDir("uploader-src/Main/Bindings") fs.removeDir(...
232
photobooth-rbx/photobooth-plugin
photobooth-rbx-photobooth-plugin-51a7301/lune/wally-install.luau
luau
.luau
local fs = require("@lune/fs") local run = require("@utils/run") run("wally", { "install" }) for _, folderName in { "Packages", "DevPackages", "ServerPackages" } do if not fs.isDir(folderName) then fs.writeDir(folderName) end end run("rojo", { "sourcemap", "analysis.project.json", "-o", "sourcemap.json" }) for _...
154
photobooth-rbx/photobooth-plugin
photobooth-rbx-photobooth-plugin-51a7301/src/Builds/Plugin.luau
luau
.luau
local RunService = game:GetService("RunService") local pluginRoot = script:FindFirstAncestor("PluginRoot") local StudioMode = require(pluginRoot.Utilities.StudioMode) local Constants = require(pluginRoot.Constants) local StateManager = require(pluginRoot.Main.StateManager) local Plugin = {} local DISPLAY_SCALE_WARN...
664
photobooth-rbx/photobooth-plugin
photobooth-rbx-photobooth-plugin-51a7301/src/Builds/Uploader.luau
luau
.luau
local RunService = game:GetService("RunService") local pluginRoot = script:FindFirstAncestor("PluginRoot") local Uploader = {} -- Public function Uploader.build(plugin: Plugin) if not (RunService:IsStudio() and RunService:IsEdit()) then return end local UploaderApp = require(pluginRoot.Main.UserInterface.Apps...
123
photobooth-rbx/photobooth-plugin
photobooth-rbx-photobooth-plugin-51a7301/src/Constants.luau
luau
.luau
-- lune needs to be able to read this file -- so do not use roblox data types return { CompactToolbarButton = false, AllowExperimentalMode = true, TileHighResImagesEnabled = true, TileHighResImagesSize = { X = 1024, Y = 1024 }, MaxCaptureRectSize = { X = 2048, Y = 2048 }, GalleryImageControlsEnabled = true, ...
125
photobooth-rbx/photobooth-plugin
photobooth-rbx-photobooth-plugin-51a7301/src/Main/Bindings/Interface/src/Binding/init.luau
luau
.luau
local Binding = {} local bindable = assert(script:FindFirstChild("Bindable") :: BindableFunction?) -- Private local function isConnected() local pcallSuccess, invokeSuccess, result local thread = task.spawn(function() pcallSuccess = pcall(function() invokeSuccess, result = bindable:Invoke("isConnected") end)...
343
photobooth-rbx/photobooth-plugin
photobooth-rbx-photobooth-plugin-51a7301/src/Main/Bindings/Interface/src/Helpers/CachelessRequire.luau
luau
.luau
local ScriptEditorService = game:GetService("ScriptEditorService") :: ScriptEditorService local CachelessRequire = {} -- Private local function getExecutionCallback(script: LuaSourceContainer, params: { string }) local tmpScript = Instance.new("ModuleScript") tmpScript.Name = script.Name tmpScript.Archivable = fa...
459
photobooth-rbx/photobooth-plugin
photobooth-rbx-photobooth-plugin-51a7301/src/Main/Bindings/Interface/src/Helpers/RenderRect.luau
luau
.luau
-- this module handles calculating rects as they would be rendered on a screen. -- since there's no such thing as half a pixel, what's actually rendered -- can change by a pixel or two. local RenderRect = {} function RenderRect.fromAbs(position: Vector2, size: Vector2) local minX = math.round(position.X) local minY...
233
photobooth-rbx/photobooth-plugin
photobooth-rbx-photobooth-plugin-51a7301/src/Main/Bindings/Interface/src/Helpers/Reversible.luau
luau
.luau
local SelectionService = game:GetService("Selection") :: Selection local ChangeHistoryService = game:GetService("ChangeHistoryService") :: ChangeHistoryService local Reversible = {} -- Private local pcall: <T...>((T...) -> (), T...) -> (boolean, string?) = pcall :: any local function simpleFuture<T>() local result...
775
photobooth-rbx/photobooth-plugin
photobooth-rbx-photobooth-plugin-51a7301/src/Main/Bindings/Interface/src/Templates/BatchUI/Action.luau
luau
.luau
--[[ Instructions: 1. Copy this template to the StarterGui. 2. Place all the UI elements you'd like to capture in the CaptureFolder. 3. Run `require(game.ServerStorage.Photobooth.Bindings).execute(game.StarterGui.BatchUI.Action)` in the command bar. 4. After completion your captures will be in a timestamped fo...
369
photobooth-rbx/photobooth-plugin
photobooth-rbx-photobooth-plugin-51a7301/src/Main/Bindings/Interface/src/Templates/FitToFrame/Action.luau
luau
.luau
--[[ Instructions: 1. Copy this template to the StarterGui. 2. Create a folder in the workspace named "FitToFrameTargets" and put all the models you want to capture in it. 3. Hide everything that is not in the target folder so that it is not visible in the workspace. 4. Resize the "CaptureFrame" to your desire...
1,058
photobooth-rbx/photobooth-plugin
photobooth-rbx-photobooth-plugin-51a7301/src/Main/Bindings/Interface/src/Templates/StaticFrame/Action.luau
luau
.luau
--[[ Instructions: 1. Copy this template to the StarterGui. 2. Create a folder in the workspace named "StaticFrameTargets" and put all the models you want to capture in it. 3. Hide everything that is not in the target folder so that it is not visible in the workspace. 4. Resize the "CaptureFrame" to your desir...
642
photobooth-rbx/photobooth-plugin
photobooth-rbx-photobooth-plugin-51a7301/src/Main/Bindings/Interface/src/Types.luau
luau
.luau
export type UICaptureTypes = "NoBackground" | "AlphaMask" export type ViewportCaptureTypes = "Unmodified" | "NoSkybox" export type CaptureViewportOptions = { rect: Rect, type: ViewportCaptureTypes, delay: number?, scale: Vector2?, alphaBleed: boolean?, } export type CaptureUIOptions = { subject: GuiObject, ty...
124
photobooth-rbx/photobooth-plugin
photobooth-rbx-photobooth-plugin-51a7301/src/Main/Bindings/Interface/src/init.luau
luau
.luau
local Types = require(script.Types) local Wally = require(script.Wally) local Binding = require(script.Binding) local RenderRect = require(script.Helpers.RenderRect) local Reversible = require(script.Helpers.Reversible) local CachelessRequire = require(script.Helpers.CachelessRequire) local Bindings = {} export type...
558
photobooth-rbx/photobooth-plugin
photobooth-rbx-photobooth-plugin-51a7301/src/Main/Bindings/Invocations/CaptureUI.luau
luau
.luau
local pluginRoot = script:FindFirstAncestor("PluginRoot") local gt = require(pluginRoot.Packages.GreenTea) local Sift = require(pluginRoot.Packages.Sift) local Captures = require(pluginRoot.Main.Photo.Captures) local Photo = require(pluginRoot.Main.Photo) local captureTypeLiterals = Sift.Array.map(Captures.UserInterf...
227
photobooth-rbx/photobooth-plugin
photobooth-rbx-photobooth-plugin-51a7301/src/Main/Bindings/Invocations/CaptureViewport.luau
luau
.luau
local pluginRoot = script:FindFirstAncestor("PluginRoot") local gt = require(pluginRoot.Packages.GreenTea) local Sift = require(pluginRoot.Packages.Sift) local RenderRect = require(pluginRoot.Main.Bindings.Interface.Helpers.RenderRect) local Captures = require(pluginRoot.Main.Photo.Captures) local Camera = require(plu...
678
photobooth-rbx/photobooth-plugin
photobooth-rbx-photobooth-plugin-51a7301/src/Main/Bindings/Invocations/CompatibilityCheck.luau
luau
.luau
local pluginRoot = script:FindFirstAncestor("PluginRoot") local CargoSemver = require(pluginRoot.Packages.CargoSemver) local Semver = require(pluginRoot.Packages.Semver) local gt = require(pluginRoot.Packages.GreenTea) local Wally = require(pluginRoot.Wally) -- stylua: ignore local typechecker = gt.fn( gt.args(gt.st...
195
photobooth-rbx/photobooth-plugin
photobooth-rbx-photobooth-plugin-51a7301/src/Main/Bindings/Invocations/GetMeshPart.luau
luau
.luau
local pluginRoot = script:FindFirstAncestor("PluginRoot") local gt = require(pluginRoot.Packages.GreenTea) local Photo = require(pluginRoot.Main.Photo) -- stylua: ignore local typechecker = gt.fn( gt.args(), gt.returns(gt.isA.MeshPart()) ) local function callback() return Photo.getQuadMeshPart() end return { id...
97
photobooth-rbx/photobooth-plugin
photobooth-rbx-photobooth-plugin-51a7301/src/Main/Bindings/Invocations/GetOSScale.luau
luau
.luau
local pluginRoot = script:FindFirstAncestor("PluginRoot") local gt = require(pluginRoot.Packages.GreenTea) local StateManager = require(pluginRoot.Main.StateManager) -- stylua: ignore local typechecker = gt.fn( gt.args(), gt.returns(gt.Vector2()) ) local function callback() return StateManager.temporary:get().sca...
101
photobooth-rbx/photobooth-plugin
photobooth-rbx-photobooth-plugin-51a7301/src/Main/Bindings/Invocations/GetVersion.luau
luau
.luau
local pluginRoot = script:FindFirstAncestor("PluginRoot") local gt = require(pluginRoot.Packages.GreenTea) local Wally = require(pluginRoot.Wally) -- stylua: ignore local typechecker = gt.fn( gt.args(), gt.returns(gt.string()) ) local function callback() return Wally.package.version end return { identifier = "g...
93
photobooth-rbx/photobooth-plugin
photobooth-rbx-photobooth-plugin-51a7301/src/Main/Bindings/Invocations/IsConnected.luau
luau
.luau
local pluginRoot = script:FindFirstAncestor("PluginRoot") local gt = require(pluginRoot.Packages.GreenTea) -- stylua: ignore local typechecker = gt.fn( gt.args(), gt.returns(gt.boolean()) ) local function callback() return true end return { identifier = "isConnected", callback = gt.wrapFn(typechecker, callback)...
80
photobooth-rbx/photobooth-plugin
photobooth-rbx-photobooth-plugin-51a7301/src/Main/Bindings/Invocations/RequestRect.luau
luau
.luau
local HttpService = game:GetService("HttpService") local pluginRoot = script:FindFirstAncestor("PluginRoot") local gt = require(pluginRoot.Packages.GreenTea) local ViewportApp = require(pluginRoot.Main.UserInterface.Apps.Viewport) local strLimited = gt.string({ bytes = 200 }) local requestOptions = gt.table({ type...
351
photobooth-rbx/photobooth-plugin
photobooth-rbx-photobooth-plugin-51a7301/src/Main/Bindings/Invocations/YieldUntilNextFrame.luau
luau
.luau
local pluginRoot = script:FindFirstAncestor("PluginRoot") local gt = require(pluginRoot.Packages.GreenTea) local SceneControl = require(pluginRoot.Main.Photo.SceneControl) -- stylua: ignore local typechecker = gt.fn( gt.args(), gt.returns() ) local function callback() SceneControl.yieldUntilNextFrame() end retur...
98