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
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/Luaup/util.luau
luau
.luau
local cst = require("./cst") local visit = require("./visit") local module = {} do local visitor = visit.visitor() local buf = buffer.create(1024) local pos = 0 local function write(string: string) local bytes = #string local new_pos = (pos + bytes) :: number local old_len = buffer.len(buf) if new_pos ...
375
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/Luaup/visit.luau
luau
.luau
--!optimize 2 --!nolint LocalShadow local cst = require("./cst") local function unreachable(_: never): never error("unreachable") end export type Visitor<State> = { visit_token: (state: State, token: cst.Token) -> (), visit_generic_declaration: (state: State, node: cst.GenericDeclaration) -> (), visit_generic_de...
12,900
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/PluginManager.luau
luau
.luau
return PluginManager() :: PluginManager
7
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/PluginUI.luau
luau
.luau
--!optimize 2 --!strict local plugin = script:FindFirstAncestorOfClass("Plugin") local StudioService = game:GetService("StudioService") local RawInst = require(script.Parent.Small.RawInst) local index, newindex = RawInst.index, RawInst.newindex local FIXED_DISTANCE = 140 local PADDING = 4 local EQUALS_WIDTH = 16 e...
14,778
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/RulerPool.luau
luau
.luau
--!strict local Types = require("../Types") type ExplorerFrame = Types.ExplorerFrame type Manager = Types.Manager local RULER_POOL_SIZE = 20 local rulerPool: {GuiObject} = {} local RulerPool = {} function RulerPool.fillToLimit(Manager: Manager) if #rulerPool >= RULER_POOL_SIZE then return end local framesToCreat...
509
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/SavedState/Migrations.luau
luau
.luau
local Types = require("../../Types") local UDF = require("../UDF") local default_style = require("../Defaults/DefaultStyle") local default_settings = require("../Defaults/DefaultSettings") local default_invisible_classes = require("../Defaults/DefaultInvisibleClasses") local Constants = require("../../Constants") loca...
667
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/SavedState/init.luau
luau
.luau
--!strict local plugin = script:FindFirstAncestorOfClass("Plugin") local Style = require("./Style") local Types = require("../Types") local DefaultOrder = require("./Defaults/DefaultOrder") local DefaultInvisibleClasses = require("./Defaults/DefaultInvisibleClasses") local DefaultSettings = require("./Defaults/Defaul...
1,177
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/Small/Alias.luau
luau
.luau
return function<T>(tbl: T, name: string): T return setmetatable(tbl, { __tostring = function() return name end, }) end
38
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/Small/ChildrenOf.luau
luau
.luau
--!strict local Jecs = require(script.Parent.Parent.Parent.Jecs) local Types = require(script.Parent.Parent.Parent.Types) type World = Types.World type ExplorerEntity = Types.ExplorerEntity local childrenOf = (function(world: World, parent: ExplorerEntity, a, b, c) if a and b and c then return world:query(a, b, c,...
279
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/Small/ClassIcon.luau
luau
.luau
--!strict local StudioService = game:GetService('StudioService') local getclassicon = StudioService.GetClassIcon local Types = require(script.Parent.Parent.Parent.Types) local ClassIcon = { CachedIcons = { ["Pointer"] = { ImageRectSize = Vector2.zero, ImageRectOffset = Vector2.zero, Image = "rbxassetid://...
197
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/Small/GetClampedXY.luau
luau
.luau
return function(frameSize: Vector2, originalPosition: Vector2, size: Vector2, containerPos: Vector2, containerSize: Vector2): (number, number) local left = containerPos.X local top = containerPos.Y local right = containerPos.X + containerSize.X local bottom = containerPos.Y + containerSize.Y local desiredX = orig...
233
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/Small/GetClassPropMap.luau
luau
.luau
local ReflectionService = game:GetService("ReflectionService") local propMapCache: {[string]: ReflectedProperties} = {} return function(className: string): {[string]: ReflectedProperty} local cached = propMapCache[className] if cached then return cached end local success, props = pcall(function() return Reflec...
175
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/Small/InstanceRecord.luau
luau
.luau
local ChangeHistoryService = game:GetService("ChangeHistoryService") return { beginRecording = function(name: string) local id = ChangeHistoryService:TryBeginRecording(name, name) if not id then ChangeHistoryService:SetWaypoint(name) end return id end, finishRecording = function(id: string?, operation: E...
110
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/Small/JexpTags.luau
luau
.luau
local formats = { TaggedProperty = "JEXP_TAGGED_%s_%s" } local JexpTags = { Formats = formats } function JexpTags.getTaggedPropertyTag(propName: string, targetedValue: string) return formats.TaggedProperty:format(propName, targetedValue) end return JexpTags
69
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/Small/RawInst.luau
luau
.luau
local _, newindex: (Instance, string, ...any) -> () = xpcall(function() game[""] = nil end, function() return debug.info(2, "f") end) local _, index: (Instance, string) -> ...any = xpcall(function() local b = game[""] end, function() return debug.info(2, "f") end) return table.freeze({ index = function(self, k) ...
199
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/Small/RecordChanges.luau
luau
.luau
local ChangeHistoryService = game:GetService("ChangeHistoryService") type fn = () -> () local lastRecordingId: string? local lastRecordingState: Enum.FinishRecordingOperation? local function onEnd(id, operationObject, ...) if id and lastRecordingId == id then ChangeHistoryService:FinishRecording(id, operationObjec...
316
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/Small/Selector.luau
luau
.luau
local StudioService = game:GetService('StudioService') local Constants = require("../../Constants") local JexpTags = require("./JexpTags") local format = string.format local function getTaggedPropertySelector(propName: string, targetedValue: string) return `.{JexpTags.getTaggedPropertyTag(propName, targetedValue)}` ...
532
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/Small/StickToRightEdge.luau
luau
.luau
return function(containerWidth: number, frameX: number, offset: number) local padding = 20 return UDim2.new( 0, containerWidth - frameX - padding + offset, 0.5, 0 ) end
56
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/Small/TextBoundsHelper.luau
luau
.luau
local Types = require("../../Types") local RawInst = require("./RawInst") local GetStyled = game.GetStyled local rawindex = RawInst.rawindex local textlabel = Instance.new("TextLabel") textlabel.Visible = false textlabel.Name = "BoundsCalcProxy" return { SetProxyParent = function(parent: Instance) textlabel.Pare...
154
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/Small/ToStringUtils.luau
luau
.luau
local xyz = require("./xyz") local ToStringUtils = { Color3 = {}, } local COL3_FMT = "%.2f, %.2f, %.2f" local FLOAT_FMT = "%.2f" local VEC2_MT = "%.2f, %.2f" local XY_PATT = "%s*([%d.-]*)%s*,%s*([%d.-]*)%s*" function ToStringUtils.fromVec2String(str: string) local x, y = str:match(XY_PATT) return Vector2.new( ...
289
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/Small/xyz.luau
luau
.luau
return function(str: string): (any, any, any) return (string.match :: any)(str, "%s*([%d.-]*)%s*,%s*([%d.-]*)%s*,%s*([%d.-]*)%s*") end
57
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/Style/init.luau
luau
.luau
--!strict --!optimize 2 local eval = require(script.EvalASEL) local SimpleSignal = require(script.Parent.Vendor.SimpleSignal) export type Expression = { __stylevar: boolean, __expr: string } export type Cloned = { __clonedrule: boolean, __name: string } export type StyleToken = { __styletoken: boolean, Name: ...
6,164
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/UITemplates.luau
luau
.luau
local create = require("./create") return { JexplorerUi = function() return create "Frame" { Name = "JexplorerUi", "JEXP_Background", create "Frame" { Name = "InstanceTree", "JEXP_DarkBackground", create "ScrollingFrame" { Name = "TreeScroller", "JEXP_ScrollingFrame", }, cre...
1,454
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/Vendor/ItemGroup.luau
luau
.luau
--!strict export type Disconnect = () -> () local create local __extend local __itemgroup export type ItemGroup<T = any> = { add: (ItemGroup<T>, item: T) -> Disconnect, add_many: (ItemGroup<T>, items: {T}) -> Disconnect, free: (ItemGroup<T>, recursive: boolean?) -> (), extend: typeof(__extend), items: {T}, cl...
610
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/Vendor/PluginColorPicker.luau
luau
.luau
type PluginColorPicker = { Prompt : (self : PluginColorPicker, startingColor : Color3?) -> Color3?, BindToChange : (self : PluginColorPicker, ((Color3) -> ())?) -> (), BindToConfirm: (self : PluginColorPicker, (() -> ())?) -> (), BindToCancel : (self : PluginColorPicker, (() -> ())?) -> (), Set : (self : PluginCol...
10,321
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/Vendor/SimpleSignal/LICENSE.luau
luau
.luau
--[[ This module is distributed under a modified MIT license Copyright (c) 2025 athar_adv 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 t...
242
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/Vendor/SimpleSignal/Types.luau
luau
.luau
--!strict export type SignalConnection = { Disconnect: typeof( --[[ Disconnects the connection from the event. ]] function(self: SignalConnection)end ), Connected: boolean, -- Private members [{}]: { MainThread: thread?, Fn: (...any) -> (), Connections: {SignalConnection}, Index: number, IsPa...
605
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/Vendor/SimpleSignal/init.luau
luau
.luau
--!optimize 2 --!strict --!native --[[ SimpleSignal ]] -- Author: athar_adv local Types = require(script.Types) export type SignalConnection = Types.SignalConnection export type SimpleSignal<T...=(any)> = Types.SimpleSignal<T...> export type RBXScriptConnection = SignalConnection export type RBXScriptSignal<T...=(...
1,338
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/Vendor/greentea/init.luau
luau
.luau
local GreenTea = require(script.GreenTea) local InstanceClasses = require(script.InstanceClasses) local tCompat = require(script.tCompat) export type Cause = GreenTea.Cause export type Type = GreenTea.Type export type TuplePacked<T...> = GreenTea.TuplePacked<T...> local export = {} export.t = tCompat export.isGreen...
837
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/Vendor/greentea/tCompat.luau
luau
.luau
local GreenTea = require(script.Parent.GreenTea) local isA = require(script.Parent.InstanceClasses) local t = {} type Typechecker = (...any) -> (boolean, any?) type TypecheckerConstr<T... = ()> = (T...) -> Typechecker local function asPlainFn(fn: (...any) -> ...any): Typechecker return function() return fn() en...
2,971
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/VirtualScroller.luau
luau
.luau
--!strict --!optimize 2 local Jecs = require("../Jecs") local Types = require("../Types") local RawInst = require("./Small/RawInst") local Constants = require("../Constants") local stickToRightEdge = require("./Small/StickToRightEdge") local RulerPool = require("./RulerPool") local rawnewindex = RawInst.rawnewindex ...
4,220
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/create/ClassProps.luau
luau
.luau
type Source<T> = (() -> (T)) & ((newValue: T) -> ()) type V<T> = T?--T | Source<T> -- Base Instance type type Instance = { Name: V<string>, ClassName: V<string>, Archivable: V<boolean>, Parent: V<(Instance | any)?>, [number]: any | string, } -- GuiBase2d - Base for all 2D UI elements type GuiBase2d = Instance &...
2,665
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Shared/create/init.luau
luau
.luau
local Props = require(script.ClassProps) type Create<Name, PropsType, Type> = (Name) -> (PropsType) -> (Type) type Create_Overloaded = & Create<"Frame", Props.Frame, Frame> & Create<"ScrollingFrame", Props.ScrollingFrame, ScrollingFrame> & Create<"TextLabel", Props.TextLabel, TextLabel> & Create<"TextButton", Pro...
646
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/Types.luau
luau
.luau
--!strict local main = script.Parent local shared = main.Shared local PluginUI = require(shared.PluginUI) local Style = require(shared.Style) local GitAPI = require(shared.GitAPI) local ItemGroup = require(shared.Vendor.ItemGroup) local SimpleSignal = require(shared.Vendor.SimpleSignal) local ColorPicker = require(...
6,152
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/UniPlugin.luau
luau
.luau
--!strict --!optimize 2 --version 0.0.0 --[[ UniPlugin: Plugins, unified. Author: athar_adv ]] --[=[ @type Api {[string]: any} @within UniPlugin A publicly exported interface for the UniPlugin. ]=] --[=[ @class UniPluginConnection A connection that can be closed. ]=] --[=[ @prop isClosed boolean @within Un...
3,563
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/__defaulteditor.luau
luau
.luau
--!strict --!optimize 2 local plugin = script:FindFirstAncestorOfClass("Plugin") local main = script.Parent.Parent local utilities = main.Utilities local ui = main.UI local Types = require(main.Types) local Editor = {} -- :: Types.Editor function Editor.init(Manager) end return Editor
69
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/init.server.luau
luau
.luau
--!strict --!optimize 2 --[[ JExplorer This plugin is distributed under the MIT license (2026). Author: athar_adv ]] if not plugin then return end local Constants = require("@self/Constants") local CoreGui = game:GetService("CoreGui") plugin.Name = `cloud/plugin/Jexplorer@{Constants.VERSION}` local global = s...
1,034
athar-adv/Jexplorer
athar-adv-Jexplorer-230cba3/src/standaloneTypes.luau
luau
.luau
--!strict -- Jecs Definitions type i53 = number type i24 = number type Ty = { Entity } type ArchetypeId = number type Column = { any } type Map<K, V> = { [K]: V } export type Archetype = { id: number, types: Ty, type: string, entities: { Entity }, columns: { Column }, columns_map: { [Component]: Column } } ...
7,776
rorooms/rorooms
rorooms-rorooms-3d06941/ext_packages/AnimatedComponent.luau
luau
.luau
export type AnimatedComponent = { _Animator: Animator, _AnimationTracks: { [Animation]: AnimationTrack }, _Animations: { [string]: Animation }, PlayAnimation: (self: any, AnimationId: string) -> Animation, StopAnimation: (self: any, AnimationId: string) -> (), StopAnimations: (self: any) -> (), GetAnimationTrac...
550
rorooms/rorooms
rorooms-rorooms-3d06941/ext_packages/AttributeBind.luau
luau
.luau
local Signal = require(script.Parent.Parent.Parent.Parent.Parent.Signal) export type AttributeBind = { Instance: Instance, Attribute: string, Value: any, Fallback: any?, _Connections: { RBXScriptConnection | Signal.Connection }, Changed: Signal.Signal<any>, _Update: (self: AttributeBind) -> any, Get: (self: ...
469
rorooms/rorooms
rorooms-rorooms-3d06941/ext_packages/CoreThemer/init.luau
luau
.luau
local Players = game:GetService("Players") local StarterGui = game:GetService("StarterGui") local TextChatService = game:GetService("TextChatService") local MouseLockController = Players.LocalPlayer.PlayerScripts :WaitForChild("PlayerModule") :WaitForChild("CameraModule") :WaitForChild("MouseLockController") local...
1,318
rorooms/rorooms
rorooms-rorooms-3d06941/ext_packages/DeepCopy.luau
luau
.luau
local function DeepCopy(Table: { [any]: any }) local NewTable = {} for Key, Value in pairs(Table) do if typeof(Value) == "table" then NewTable[Key] = DeepCopy(Value) else NewTable[Key] = Value end end return NewTable end return DeepCopy
75
rorooms/rorooms
rorooms-rorooms-3d06941/ext_packages/FilterString.luau
luau
.luau
local TextService = game:GetService("TextService") return function(String: string, Player: Player) local FilteredText local Success, Log = pcall(function() local FilterResult = TextService:FilterStringAsync(String, Player.UserId) FilteredText = FilterResult:GetNonChatStringForBroadcastAsync() end) if S...
100
rorooms/rorooms
rorooms-rorooms-3d06941/ext_packages/GetEntriesFromArray.luau
luau
.luau
local function GetEntriesFromArray(Array: { [number]: any }, Start: number, End: number) local Entries = {} for Index = Start, End do table.insert(Entries, Array[Index]) end return Entries end return GetEntriesFromArray
54
rorooms/rorooms
rorooms-rorooms-3d06941/ext_packages/LeaderStats.luau
luau
.luau
local ValueClassNames = { int = "IntValue", number = "NumberValue", string = "StringValue", boolean = "BoolValue", Instance = "ObjectValue", BrickColor = "BrickColorValue", Color3 = "Color3Value", Vector3 = "Vector3Value", } local InternalLeaderStats = {} local LeaderStats = {} LeaderStats.__index = L...
353
rorooms/rorooms
rorooms-rorooms-3d06941/ext_packages/Nametagger/Nametag.luau
luau
.luau
local RunService = game:GetService("RunService") local RoRooms = script.Parent.Parent.Parent.Parent.Parent local OnyxUI = require(RoRooms.Parent.OnyxUI) local Fusion = require(RoRooms.Parent.Fusion) local Util = OnyxUI.Util local Themer = OnyxUI.Themer local Children = Fusion.Children local TagText = require(script....
1,024
rorooms/rorooms
rorooms-rorooms-3d06941/ext_packages/Nametagger/PropertyEntry.luau
luau
.luau
local RoRooms = script.Parent.Parent.Parent.Parent.Parent local OnyxUI = require(RoRooms.Parent.OnyxUI) local Fusion = require(RoRooms.Parent.Fusion) local Children = Fusion.Children local Themer = OnyxUI.Themer local Util = OnyxUI.Util local TagText = require(script.Parent.TagText) export type Props = { Value: Fus...
391
rorooms/rorooms
rorooms-rorooms-3d06941/ext_packages/Nametagger/TagText.luau
luau
.luau
local RoRooms = script.Parent.Parent.Parent.Parent.Parent local OnyxUI = require(RoRooms.Parent.OnyxUI) local Fusion = require(RoRooms.Parent.Fusion) local Util = OnyxUI.Util export type Props = {} return function(Scope: Fusion.Scope<any>, Props: Props) local Scope = Fusion.innerScope(Scope, Fusion, OnyxUI.Componen...
174
rorooms/rorooms
rorooms-rorooms-3d06941/ext_packages/Nametagger/init.luau
luau
.luau
local Players = game:GetService("Players") local RoRooms = script.Parent.Parent.Parent.Parent local Nametag = require(script.Nametag) local Fusion = require(RoRooms.Parent.Fusion) export type Property = { Value: any, Image: string?, } export type Properties = { Property? } export type Config = { DisplayName: strin...
410
rorooms/rorooms
rorooms-rorooms-3d06941/ext_packages/ReconcileTable.luau
luau
.luau
local function DeepCopyTable(Table) local Copy = {} for Key, Value in pairs(Table) do if type(Value) == "table" then Copy[Key] = DeepCopyTable(Value) else Copy[Key] = Value end end return Copy end local function ReconcileTable(Target, Template) for Key, Value in pairs(Template) do if type(Key) == "s...
191
rorooms/rorooms
rorooms-rorooms-3d06941/ext_packages/SessionStore/DataTemplate.luau
luau
.luau
export type Data = { XPMultipliers: { [string]: number }, } local DataTemplate: Data = { XPMultipliers = {}, } return DataTemplate
35
rorooms/rorooms
rorooms-rorooms-3d06941/ext_packages/SessionStore/init.luau
luau
.luau
local Players = game:GetService("Players") local RoRooms = script.Parent.Parent.Parent.Parent local Signal = require(RoRooms.Parent.Signal) local DataTemplate = require(script.DataTemplate) export type SessionData = DataTemplate.Data export type MetaData = { CreationTime: number, } export type SessionProfile = { Da...
375
rorooms/rorooms
rorooms-rorooms-3d06941/ext_packages/ShuffleArray.luau
luau
.luau
return function(array) local n = #array for i = 1, n - 1 do local j = math.random(i, n) array[i], array[j] = array[j], array[i] end return array end
53
rorooms/rorooms
rorooms-rorooms-3d06941/ext_packages/ToolComponent/init.luau
luau
.luau
local Players = game:GetService("Players") local RunService = game:GetService("RunService") export type Holder = { Character: Model | nil, Humanoid: Humanoid | nil, Animator: Animator | nil, Player: Player | nil, } export type ToolComponent = { Tag: string, Instance: Tool, Holder: Holder?, Handle: BasePart?, ...
623
rorooms/rorooms
rorooms-rorooms-3d06941/include/EasyLoader/Client/init.server.luau
luau
.luau
local Rorooms = require(script.Parent.Parent.Rorooms) local Config = require(script.Parent.Config) Rorooms.Config:Update(Config) Rorooms:Start()
39
rorooms/rorooms
rorooms-rorooms-3d06941/include/EasyLoader/Config/init.luau
luau
.luau
local ConfigUtils = require(script.Parent.ConfigUtils) local Config = { Systems = { Profiles = { Roles = ConfigUtils:CompileRoles(script.Roles), DefaultRoleId = script.Roles:GetAttribute("DefaultRoleId"), AvatarEditorCallback = ConfigUtils:GetAvatarEditorCallback(script), }, Music = { SoundGroup = s...
264
rorooms/rorooms
rorooms-rorooms-3d06941/include/EasyLoader/ConfigUtils.luau
luau
.luau
local ConfigUtils = {} function ConfigUtils:IfString(Value: any): string? if typeof(Value) == "string" then return Value else return nil end end function ConfigUtils:IfNumber(Value: any): number? if typeof(Value) == "number" then return Value else return nil end end function ConfigUtils:GetColor(Instan...
1,079
rorooms/rorooms
rorooms-rorooms-3d06941/include/Linking.luau
luau
.luau
return require(script.Packages["Rorooms"])
11
rorooms/rorooms
rorooms-rorooms-3d06941/src/API/Client.luau
luau
.luau
local SOURCE = script.Parent.SourceCode local PACKAGES = script.Parent.Parent local SHARED = SOURCE.Shared local CLIENT = SOURCE.Client local DEFAULT_CONTROLLERS = { "UIController", "BloxstrapController", "ComponentsController", "DefaultsController", "UpdatesController", "PreloadingController", } local Config = ...
364
rorooms/rorooms
rorooms-rorooms-3d06941/src/API/Config.luau
luau
.luau
export type CategoryName = string export type Category = { DisplayName: string?, Icon: string, LayoutOrder: number?, Color: Color3?, } export type Categories = { [CategoryName]: Category, } export type Item = { Enabled: boolean?, Tool: Tool, DisplayName: string?, Category: string?, Color: Color3?, LayoutOrde...
1,068
rorooms/rorooms
rorooms-rorooms-3d06941/src/API/Server.luau
luau
.luau
local SOURCE = script.Parent.SourceCode local PACKAGES = script.Parent.Parent local SERVER = SOURCE.Server local DEFAULT_SERVICES = { "PlayerDataStoreService", "CharacterDefaultsService", "ComponentsService", "UpdatesService" } local Config = require(script.Parent.Config) local Knit = require(PACKAGES.Knit) local Load...
305
rorooms/rorooms
rorooms-rorooms-3d06941/src/API/Version.luau
luau
.luau
return "0.6.5"
8
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/Bloxstrap/BloxstrapController.luau
luau
.luau
local MarketplaceService = game:GetService("MarketplaceService") local RunService = game:GetService("RunService") local Rorooms = script.Parent.Parent.Parent.Parent local Future = require(script.Parent.Parent.Parent.Parent.Parent.Future) local BloxstrapRPC = require(Rorooms.Parent.BloxstrapRPC) local BloxstrapControl...
298
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/Components/AnimatedItemComponent.luau
luau
.luau
local Rorooms = script.Parent.Parent.Parent.Parent local Component = require(Rorooms.Parent.Component) local ToolComponent = require(Rorooms.SourceCode.Shared.ExtPackages.ToolComponent) local AnimatedComponent = require(Rorooms.SourceCode.Shared.ExtPackages.AnimatedComponent) local AnimatedItemComponent = Component.ne...
512
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/Components/AnimatedSeatComponent.luau
luau
.luau
local Players = game:GetService("Players") local Rorooms = script.Parent.Parent.Parent.Parent local Component = require(Rorooms.Parent.Component) local Fusion = require(Rorooms.Parent.Fusion) local AttributeBind = require(Rorooms.SourceCode.Shared.ExtPackages.AttributeBind) local Trove = require(Rorooms.Parent.Trove) ...
805
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/Components/ComponentsController.luau
luau
.luau
local ComponentsController = { Name = script.Name, } function ComponentsController:KnitStart() for _, Module in ipairs(script.Parent:GetChildren()) do if Module:IsA("ModuleScript") and Module ~= script then require(Module) end end end return ComponentsController
61
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/Components/ItemGiverComponent.luau
luau
.luau
local Players = game:GetService("Players") local Rorooms = script.Parent.Parent.Parent.Parent local Component = require(Rorooms.Parent.Component) local Fusion = require(Rorooms.Parent.Fusion) local States = require(Rorooms.SourceCode.Client.UI.States) local ItemsController = require(Rorooms.SourceCode.Client.Items.Ite...
719
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/Components/LockedDoorComponent.luau
luau
.luau
local Players = game:GetService("Players") local Rorooms = script.Parent.Parent.Parent.Parent local Component = require(Rorooms.Parent.Component) local Fusion = require(Rorooms.Parent.Fusion) local States = require(Rorooms.SourceCode.Client.UI.States) local AttributeBind = require(Rorooms.SourceCode.Shared.ExtPackages....
574
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/Components/WorldTeleporterComponent.luau
luau
.luau
local Players = game:GetService("Players") local Rorooms = script.Parent.Parent.Parent.Parent local AttributeBind = require(Rorooms.SourceCode.Shared.ExtPackages.AttributeBind) local Component = require(Rorooms.Parent.Component) local States = require(Rorooms.SourceCode.Client.UI.States) local Fusion = require(Rorooms...
486
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/Defaults/DefaultsController.luau
luau
.luau
local Rorooms = script.Parent.Parent.Parent.Parent local CoreThemer = require(Rorooms.SourceCode.Shared.ExtPackages.CoreThemer) local NeoHotbar = require(Rorooms.Parent.NeoHotbar) local DefaultsController = { Name = script.Name, } function DefaultsController:KnitStart() CoreThemer:SetDefaults() end NeoHotbar:Start...
85
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/Emotes/EmotesController.luau
luau
.luau
local Rorooms = script.Parent.Parent.Parent.Parent local Knit = require(Rorooms.Parent.Knit) local Topbar = require(Rorooms.SourceCode.Client.UI.States.Topbar) local Prompts = require(Rorooms.SourceCode.Client.UI.States.Prompts) local UIController = require(Rorooms.SourceCode.Client.UI.UIController) local EmotesServic...
281
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/Friends/FriendsController.luau
luau
.luau
local Players = game:GetService("Players") local Rorooms = script.Parent.Parent.Parent.Parent local Future = require(script.Parent.Parent.Parent.Parent.Parent.Future) local UIController = require(Rorooms.SourceCode.Client.UI.UIController) local States = require(Rorooms.SourceCode.Client.UI.States) local Knit = require...
655
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/Items/ItemsController.luau
luau
.luau
local Players = game:GetService("Players") local Rorooms = script.Parent.Parent.Parent.Parent local Knit = require(Rorooms.Parent.Knit) local Fusion = require(Rorooms.Parent.Fusion) local Signal = require(Rorooms.Parent.Signal) local NeoHotbar = require(Rorooms.Parent.NeoHotbar) local States = require(Rorooms.SourceCo...
781
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/Music/MusicController.luau
luau
.luau
local SoundService = game:GetService("SoundService") local Rorooms = script.Parent.Parent.Parent.Parent local Knit = require(Rorooms.Parent.Knit) local States = require(Rorooms.SourceCode.Client.UI.States) local Fusion = require(Rorooms.Parent.Fusion) local Config = require(Rorooms.Config).Config local Peek = Fusion....
326
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/Preloading/PreloadingController.luau
luau
.luau
local ContentProvider = game:GetService("ContentProvider") local Rorooms = script.Parent.Parent.Parent.Parent local Assets = require(Rorooms.SourceCode.Shared.Assets) export type ContentIds = { string } export type ContentIdTree = string | { [string]: ContentIdTree } local PreloadingController = { Name = script.Nam...
243
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/Profiles/AvatarSelector.luau
luau
.luau
local Players = game:GetService("Players") local RunService = game:GetService("RunService") local UserInputService = game:GetService("UserInputService") local Rorooms = script.Parent.Parent.Parent.Parent local Signal = require(Rorooms.Parent.Signal) local AvatarSelector = { AvatarSelected = Signal.new(), AvatarDese...
554
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/Profiles/ProfilesController.luau
luau
.luau
local Players = game:GetService("Players") local Rorooms = script.Parent.Parent.Parent.Parent local Topbar = require(Rorooms.SourceCode.Client.UI.States.Topbar) local UIController = require(Rorooms.SourceCode.Client.UI.UIController) local Fusion = require(Rorooms.Parent.Fusion) local States = require(Rorooms.SourceCode...
580
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/Settings/SettingsController.luau
luau
.luau
local Rorooms = script.Parent.Parent.Parent.Parent local Knit = require(Rorooms.Parent.Knit) local Topbar = require(Rorooms.SourceCode.Client.UI.States.Topbar) local UIController = require(Rorooms.SourceCode.Client.UI.UIController) local SettingsMenu = require(Rorooms.SourceCode.Client.UI.ScreenGuis.SettingsMenu) loc...
139
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/UI/Components/CategoriesSidebar.luau
luau
.luau
local Rorooms = script.Parent.Parent.Parent.Parent.Parent local OnyxUI = require(Rorooms.Parent.OnyxUI) local Fusion = require(Rorooms.Parent.Fusion) local Children = Fusion.Children local Util = OnyxUI.Util local Themer = OnyxUI.Themer return function(Scope: Fusion.Scope<any>, Props) local Scope = Fusion.innerScope...
255
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/UI/Components/CategoryButton.luau
luau
.luau
local Rorooms = script.Parent.Parent.Parent.Parent.Parent local OnyxUI = require(Rorooms.Parent.OnyxUI) local Fusion = require(Rorooms.Parent.Fusion) local Assets = require(Rorooms.SourceCode.Shared.Assets) local Children = Fusion.Children local Util = OnyxUI.Util local Themer = OnyxUI.Themer local Peek = Fusion.peek ...
442
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/UI/Components/CustomButton.luau
luau
.luau
local Rorooms = script.Parent.Parent.Parent.Parent.Parent local OnyxUI = require(Rorooms.Parent.OnyxUI) local Fusion = require(Rorooms.Parent.Fusion) local ColorUtils = require(Rorooms.Parent.ColorUtils) local Util = OnyxUI.Util local Themer = OnyxUI.Themer export type Props = {} return function(Scope: Fusion.Scope<...
357
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/UI/Components/EditableText.luau
luau
.luau
local Rorooms = script.Parent.Parent.Parent.Parent.Parent local OnyxUI = require(Rorooms.Parent.OnyxUI) local Fusion = require(Rorooms.Parent.Fusion) local Util = OnyxUI.Util local Themer = OnyxUI.Themer export type Props = {} return function(Scope, Props: Props) local Scope = Fusion.innerScope(Scope, Fusion, OnyxU...
262
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/UI/Components/EmoteButton.luau
luau
.luau
local RunService = game:GetService("RunService") local Rorooms = script.Parent.Parent.Parent.Parent.Parent local OnyxUI = require(Rorooms.Parent.OnyxUI) local Fusion = require(Rorooms.Parent.Fusion) local ColorUtils = require(Rorooms.Parent.ColorUtils) local Assets = require(Rorooms.SourceCode.Shared.Assets) local Emo...
1,315
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/UI/Components/EmoteCategoriesSidebar.luau
luau
.luau
local Rorooms = script.Parent.Parent.Parent.Parent.Parent local OnyxUI = require(Rorooms.Parent.OnyxUI) local Fusion = require(Rorooms.Parent.Fusion) local States = require(Rorooms.SourceCode.Client.UI.States) local Config = require(Rorooms.Config).Config local Children = Fusion.Children local Util = OnyxUI.Util loca...
310
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/UI/Components/EmoteCategoriesSidebar.story.luau
luau
.luau
local Rorooms = script.Parent.Parent.Parent.Parent.Parent local Components = require(Rorooms.SourceCode.Client.UI.Components) local Fusion = require(Rorooms.Parent.Fusion) return { story = function(Parent: GuiObject, _Props: { [string]: any }) local Scope = Fusion.scoped(Fusion, Components) local Instance = Scop...
122
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/UI/Components/EmotesCategory.luau
luau
.luau
local Rorooms = script.Parent.Parent.Parent.Parent.Parent local OnyxUI = require(Rorooms.Parent.OnyxUI) local Fusion = require(Rorooms.Parent.Fusion) local States = require(Rorooms.SourceCode.Client.UI.States) local Config = require(Rorooms.Config).Config local Assets = require(Rorooms.SourceCode.Shared.Assets) local ...
862
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/UI/Components/FriendButton.luau
luau
.luau
local MarketplaceService = game:GetService("MarketplaceService") local Rorooms = script.Parent.Parent.Parent.Parent.Parent local Future = require(script.Parent.Parent.Parent.Parent.Parent.Parent.Future) local OnyxUI = require(Rorooms.Parent.OnyxUI) local Fusion = require(Rorooms.Parent.Fusion) local States = require(R...
1,095
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/UI/Components/FriendButton.story.luau
luau
.luau
local Component = require(script.Parent[string.split(script.Name, ".")[1]]) return function(Target) local Gui = Component { Parent = Target, } return function() Gui:Destroy() end end
45
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/UI/Components/ItemButton.luau
luau
.luau
local RunService = game:GetService("RunService") local Rorooms = script.Parent.Parent.Parent.Parent.Parent local OnyxUI = require(Rorooms.Parent.OnyxUI) local Fusion = require(Rorooms.Parent.Fusion) local States = require(Rorooms.SourceCode.Client.UI.States) local ColorUtils = require(Rorooms.Parent.ColorUtils) local ...
1,339
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/UI/Components/ItemCategoriesSidebar.luau
luau
.luau
local Rorooms = script.Parent.Parent.Parent.Parent.Parent local OnyxUI = require(Rorooms.Parent.OnyxUI) local Fusion = require(Rorooms.Parent.Fusion) local States = require(Rorooms.SourceCode.Client.UI.States) local Config = require(Rorooms.Config).Config local Children = Fusion.Children local Util = OnyxUI.Util loca...
304
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/UI/Components/ItemsCategory.luau
luau
.luau
local Rorooms = script.Parent.Parent.Parent.Parent.Parent local OnyxUI = require(Rorooms.Parent.OnyxUI) local Fusion = require(Rorooms.Parent.Fusion) local Config = require(Rorooms.Config).Config local Assets = require(Rorooms.SourceCode.Shared.Assets) local Children = Fusion.Children local Util = OnyxUI.Util local Th...
848
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/UI/Components/LevelBadge.luau
luau
.luau
local Rorooms = script.Parent.Parent.Parent.Parent.Parent local OnyxUI = require(Rorooms.Parent.OnyxUI) local Fusion = require(Rorooms.Parent.Fusion) local Assets = require(Rorooms.SourceCode.Shared.Assets) local Children = Fusion.Children export type Props = { Level: Fusion.UsedAs<number>?, } return function(Scope...
313
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/UI/Components/Menu.luau
luau
.luau
local Rorooms = script.Parent.Parent.Parent.Parent.Parent local Fusion = require(Rorooms.Parent.Fusion) local OnyxUI = require(Rorooms.Parent.OnyxUI) local States = require(Rorooms.SourceCode.Client.UI.States) local Children = Fusion.Children local Themer = OnyxUI.Themer local Util = OnyxUI.Util export type Props = {...
827
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/UI/Components/PlayerAvatar.luau
luau
.luau
local Rorooms = script.Parent.Parent.Parent.Parent.Parent local OnyxUI = require(Rorooms.Parent.OnyxUI) local Fusion = require(Rorooms.Parent.Fusion) local Assets = require(Rorooms.SourceCode.Shared.Assets) local Children = Fusion.Children export type Props = { Editable: Fusion.UsedAs<boolean>?, Image: Fusion.UsedA...
913
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/UI/Components/ProfileBadges.luau
luau
.luau
local Rorooms = script.Parent.Parent.Parent.Parent.Parent local OnyxUI = require(Rorooms.Parent.OnyxUI) local Fusion = require(Rorooms.Parent.Fusion) local Assets = require(Rorooms.SourceCode.Shared.Assets) local Profiles = require(Rorooms.SourceCode.Client.UI.States.Profiles) export type Props = { UserId: Fusion.Use...
388
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/UI/Components/RoroomsLogo.luau
luau
.luau
local Rorooms = script.Parent.Parent.Parent.Parent.Parent local OnyxUI = require(Rorooms.Parent.OnyxUI) local Fusion = require(Rorooms.Parent.Fusion) local Assets = require(Rorooms.SourceCode.Shared.Assets) local Util = OnyxUI.Util local Themer = OnyxUI.Themer export type Props = {} return function(Scope, Props: Pro...
227
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/UI/Components/SettingToggle.luau
luau
.luau
local Rorooms = script.Parent.Parent.Parent.Parent.Parent local OnyxUI = require(Rorooms.Parent.OnyxUI) local Fusion = require(Rorooms.Parent.Fusion) local Themer = OnyxUI.Themer local Children = Fusion.Children local Util = OnyxUI.Util local DISABLED_TRANSPARENCY = 0.5 export type Props = { Label: Fusion.UsedAs<st...
397
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/UI/Components/TopbarButton.luau
luau
.luau
local Rorooms = script.Parent.Parent.Parent.Parent.Parent local OnyxUI = require(Rorooms.Parent.OnyxUI) local Fusion = require(Rorooms.Parent.Fusion) local States = require(Rorooms.SourceCode.Client.UI.States) local Children = Fusion.Children local Util = OnyxUI.Util local Themer = OnyxUI.Themer local Peek = Fusion.p...
807
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/UI/Components/WorldButton.luau
luau
.luau
local MarketplaceService = game:GetService("MarketplaceService") local Rorooms = script.Parent.Parent.Parent.Parent.Parent local Future = require(script.Parent.Parent.Parent.Parent.Parent.Parent.Future) local OnyxUI = require(Rorooms.Parent.OnyxUI) local Fusion = require(Rorooms.Parent.Fusion) local States = require(R...
833
rorooms/rorooms
rorooms-rorooms-3d06941/src/Client/UI/Components/WorldsCategory.luau
luau
.luau
local Rorooms = script.Parent.Parent.Parent.Parent.Parent local OnyxUI = require(Rorooms.Parent.OnyxUI) local Fusion = require(Rorooms.Parent.Fusion) local Assets = require(Rorooms.SourceCode.Shared.Assets) local Children = Fusion.Children local Util = OnyxUI.Util local Themer = OnyxUI.Themer return function(Scope: F...
488