repo
stringclasses
302 values
file_path
stringlengths
18
241
language
stringclasses
2 values
file_type
stringclasses
4 values
code
stringlengths
76
697k
tokens
int64
10
271k
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/CharacterManager.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local StarterGui = game:GetService("StarterGui") local CharManager = {} local LocalPlayer = Players.LocalPlayer local AbilityGUI = require(ReplicatedStorage.Classes.Ability.AbilityGUI) local Character = require(...
1,058
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/InputManager/init.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local RunService = game:GetService("RunService") local UserInputService = game:GetService("UserInputService") local Signal = require(ReplicatedStorage.Utils.Signal) local InputManager = { --- WARNING: this wo...
728
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/Miscellaneous/AttackHitboxVisibility.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local Utils = require(ReplicatedStorage.Modules.Utils) return { Init = function(_) workspace.TempObjectFolders.Hitboxes.ChildAdded:Connect(function(Child) if Child:IsA("BasePart") and Utils...
115
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/Miscellaneous/BackpackManager.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") -- local StarterGui = game:GetService("StarterGui") local ItemGUI = require(ReplicatedStorage.Classes.Item.ItemGUI) local Utils = require(ReplicatedStorage.Modules.Utils) return { Init = function(_) U...
163
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/Miscellaneous/CharacterExclusive/CameraShakeOnDamage.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local Utils = require(ReplicatedStorage.Modules.Utils) return { Init = function(_self) Utils.Character.ObserveCharacter(Players.LocalPlayer, function(Character: Model) if Character:FindFir...
196
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/Miscellaneous/CharacterExclusive/DamageVignette/init.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local RunService = game:GetService("RunService") local Types = require(ReplicatedStorage.Classes.Types) local Utils = require(ReplicatedStorage.Modules.Utils) return { Init = function(_self) Utils.Cha...
438
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/Miscellaneous/CharacterExclusive/DesaturationOnLowHealth.luau
luau
.luau
local Lighting = game:GetService("Lighting") local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local Utils = require(ReplicatedStorage.Modules.Utils) return { Init = function(_) Utils.Character.ObserveCharacter(Players.LocalPlayer, function(Character...
366
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/Miscellaneous/FootstepPlayer.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local Utils = require(ReplicatedStorage.Modules.Utils) local Sounds = require(ReplicatedStorage.Modules.Sounds) local FootstepPlayer = { DefaultSFXID = "rbxassetid://78754179999047", ControlledCharacters = {}, ...
574
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/Miscellaneous/HealthDesatReset.luau
luau
.luau
local Lighting = game:GetService("Lighting") local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local Utils = require(ReplicatedStorage.Modules.Utils) return { Init = function(_) Utils.Character.ObserveCharacter(Players.LocalPlayer, function() ...
96
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/Miscellaneous/KillerEffectOnKill.luau
luau
.luau
local Debris = game:GetService("Debris") local Lighting = game:GetService("Lighting") local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local TweenService = game:GetService("TweenService") local Network = require(ReplicatedStorage.Modules.Network) local Utils = r...
259
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/Miscellaneous/QueryHitboxVisibility.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local Utils = require(ReplicatedStorage.Modules.Utils) local LocalPlayer = Players.LocalPlayer local QueryHitboxVisibility = { ShowOtherPlayersHitbox = false, } function QueryHitboxVisibility:Init() Uti...
263
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/Miscellaneous/SetupMapBehaviour.luau
luau
.luau
return { Init = function() -- ChildAdded is optimized as everything that isn't maps and players is added in folders inside it so it doesn't get called. -dys workspace.ChildAdded:Connect(function(newChild: Instance) if newChild.Name ~= "Map" then return end ...
108
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/Miscellaneous/SoundServiceResetter.luau
luau
.luau
local SoundServiceResetter = {} local ReplicatedStorage = game:GetService("ReplicatedStorage") local SoundService = game:GetService("SoundService") local Utils = require(ReplicatedStorage.Modules.Utils) function SoundServiceResetter:Init() Utils.Character.ObserveCharacter(game:GetService("Players").LocalPlayer, f...
124
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/Miscellaneous/TurnToMoveDirection.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local RunService = game:GetService("RunService") local Utils = require(ReplicatedStorage.Modules.Utils) local LERP_ALPHA = 0.25 local FOWARD_LEAN_ANGLE = math.rad(10) local SIDE_LEAN_ANGLE = math.rad(35) local T...
1,325
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerInitter.luau
luau
.luau
local PlayerModule = script.Parent.PlayerModule local Player = game:GetService("Players").LocalPlayer local PlayerInitter = { Loaded = false, CurrentlyInitting = nil, Initting = false, } function PlayerInitter:Init() if game:GetService("RunService"):IsServer() or self.Initting then return ...
245
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/CameraModule/BaseOcclusion.luau
luau
.luau
--[[ BaseOcclusion - Abstract base class for character occlusion control modules 2018 Camera Update - AllYourBlox --]] --[[ The Module ]]-- local BaseOcclusion: any = {} BaseOcclusion.__index = BaseOcclusion setmetatable(BaseOcclusion, { __call = function(_, ...) return BaseOcclusion.new(...) end }) function Ba...
339
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/CameraModule/CameraInput.luau
luau
.luau
--!nonstrict local ContextActionService = game:GetService("ContextActionService") local UserInputService = game:GetService("UserInputService") local Players = game:GetService("Players") local RunService = game:GetService("RunService") local UserGameSettings = UserSettings():GetService("UserGameSettings") local VRServic...
4,062
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/CameraModule/CameraToggleStateController.luau
luau
.luau
local Input = require(script.Parent:WaitForChild("CameraInput")) local CameraUI = require(script.Parent:WaitForChild("CameraUI")) local CameraUtils = require(script.Parent:WaitForChild("CameraUtils")) local lastTogglePan = false local lastTogglePanChange = tick() local CROSS_MOUSE_ICON = "rbxasset://textures/Cursors/...
532
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/CameraModule/CameraUI.luau
luau
.luau
--!nonstrict local StarterGui = game:GetService("StarterGui") local initialized = false local CameraUI: any = {} --- Instantaneously disable the toast or enable for opening later on. Used when switching camera modes. function CameraUI.setCameraModeToastEnabled(enabled: boolean) if not enabled and not initialized th...
172
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/CameraModule/Invisicam.luau
luau
.luau
--!nonstrict --[[ Invisicam - Occlusion module that makes objects occluding character view semi-transparent 2018 Camera Update - AllYourBlox --]] --[[ Top Level Roblox Services ]]-- local PlayersService = game:GetService("Players") --[[ Constants ]]-- local ZERO_VECTOR3 = Vector3.new(0,0,0) local USE_STACKING_TRANS...
5,630
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/CameraModule/LegacyCamera.luau
luau
.luau
--!nonstrict --[[ LegacyCamera - Implements legacy controller types: Attach, Fixed, Watch 2018 Camera Update - AllYourBlox --]] local PITCH_LIMIT = math.rad(80) local CameraInput = require(script.Parent:WaitForChild("CameraInput")) --[[ Services ]]-- local PlayersService = game:GetService('Players') --[[ The Modu...
882
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/CameraModule/OrbitalCamera.luau
luau
.luau
--!nonstrict --[[ OrbitalCamera - Spherical coordinates control camera for top-down games 2018 Camera Update - AllYourBlox --]] -- Local private variables and constants local UNIT_Z = Vector3.new(0,0,1) local X1_Y0_Z1 = Vector3.new(1,0,1) --Note: not a unit vector, used for projecting onto XZ plane local ZERO_VECTOR...
3,366
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/CameraModule/Poppercam.luau
luau
.luau
--!nonstrict --[[ Poppercam - Occlusion module that brings the camera closer to the subject when objects are blocking the view. --]] local ZoomController = require(script.Parent:WaitForChild("ZoomController")) local TransformExtrapolator = {} do TransformExtrapolator.__index = TransformExtrapolator local CF_IDEN...
854
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/CameraModule/SmoothShiftLock/Settings.luau
luau
.luau
return { ["CHARACTER_SMOOTH_ROTATION"] = true, --// If your character should rotate smoothly or not ["CHARACTER_ROTATION_SPEED"] = 3, --// How quickly character rotates smoothly ["OFFSET_TRANSITION_DAMPER"] = 0.75, --// Camera transition s...
231
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/CameraModule/SmoothShiftLock/init.luau
luau
.luau
--[[ @ Name: SmoothShiftLock @ Author: rixtys @ Version: PlayerModule Pair 0.0.1 @ Desc: Smooth shift lock module that adds smoothness to the Roblox's shift lock │ @ for this to work, disable the default Roblox's shift lock │ @ game.StarterPlayer.EnableMouseLockOption = false │ @ and start the custom shift lo...
1,488
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/CameraModule/Spring.luau
luau
.luau
--[=[ A physical model of a spring, useful in many applications. A spring is an object that will compute based upon Hooke's law. Properties only evaluate upon index making this model good for lazy applications. ```lua local RunService = game:GetService("RunService") local UserInputService = game:GetService("UserI...
1,931
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/CameraModule/TransparencyController.luau
luau
.luau
--!nonstrict --[[ TransparencyController - Manages transparency of player character at close camera-to-subject distances 2018 Camera Update - AllYourBlox --]] local MAX_TWEEN_RATE = 2.8 -- per second local Util = require(script.Parent:WaitForChild("CameraUtils")) --[[ The Module ]]-- local TransparencyController = ...
1,443
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/CameraModule/VRCamera.luau
luau
.luau
--!nonstrict --[[ VRCamera - Roblox VR camera control module 2021 Roblox VR --]] --[[ Services ]]-- local PlayersService = game:GetService("Players") local VRService = game:GetService("VRService") -- Local private variables and constants local CAMERA_BLACKOUT_TIME = 0.1 local FP_ZOOM = 0.5 --[[ The Module ]]-- loc...
2,490
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/CameraModule/ZoomController/Popper.luau
luau
.luau
--!nonstrict -------------------------------------------------------------------------------- -- Popper.lua -- Prevents your camera from clipping through walls. -------------------------------------------------------------------------------- local Players = game:GetService("Players") local ReplicatedStorage = game:Get...
2,320
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/CommonUtils/ConnectionUtil.luau
luau
.luau
--!strict -- Utility module for handling RBXScriptSignals/Connections export type ConnectionUtilType = { -------------------- Public ---------------------------- new: () -> ConnectionUtilType, -- Adds the given function as a connection to the RBXScriptSignal. If there is an already -- existing connecttion for the ...
426
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/CommonUtils/FlagUtil.luau
luau
.luau
--!strict -- Utility module for handling User Fast Flags export type FlagUtilType = { -- Gets the user fast flag value if it's available, otherwise returns false. Don't include flag prefix. -- Example: local FFlagUserDoStuff = FlagUtil.getUserFlag("UserDoStuff") getUserFlag: (string) -> boolean, } local FlagUtil: F...
129
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/ControlModule/BaseCharacterController.luau
luau
.luau
--[[ BaseCharacterController - Abstract base class for character controllers, not intended to be directly instantiated. 2018 PlayerScripts Update - AllYourBlox --]] local ZERO_VECTOR3: Vector3 = Vector3.new(0,0,0) --[[ The Module ]]-- local BaseCharacterController = {} BaseCharacterController.__index = BaseCharac...
283
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/ControlModule/ClickToMoveController.luau
luau
.luau
--!nonstrict --[[ -- Original By Kip Turner, Copyright Roblox 2014 -- Updated by Garnold to utilize the new PathfindingService API, 2017 -- 2018 PlayerScripts Update - AllYourBlox --]] --[[ Flags ]] local FFlagUserExcludeNonCollidableForPathfindingSuccess, FFlagUserExcludeNonCollidableForPathfindingResult = pca...
8,970
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/ControlModule/ClickToMoveDisplay.luau
luau
.luau
--!nonstrict local ClickToMoveDisplay = {} local FAILURE_ANIMATION_ID = "rbxassetid://2874840706" local TrailDotIcon = "rbxasset://textures/ui/traildot.png" local EndWaypointIcon = "rbxasset://textures/ui/waypoint.png" local WaypointsAlwaysOnTop = false local WAYPOINT_INCLUDE_FACTOR = 2 local LAST_DOT_DISTANCE = 3 ...
4,307
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/ControlModule/Gamepad.luau
luau
.luau
--!nonstrict --[[ Gamepad Character Control - This module handles controlling your avatar using a game console-style controller 2018 PlayerScripts Update - AllYourBlox --]] local UserInputService = game:GetService("UserInputService") local ContextActionService = game:GetService("ContextActionService") --[[ Constan...
1,590
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/ControlModule/Keyboard.luau
luau
.luau
--!nonstrict --[[ Keyboard Character Control - This module handles controlling your avatar from a keyboard 2018 PlayerScripts Update - AllYourBlox --]] --[[ Roblox Services ]]-- local UserInputService = game:GetService("UserInputService") local ContextActionService = game:GetService("ContextActionService") --[[ Co...
1,368
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/ControlModule/PathDisplay.luau
luau
.luau
--!nonstrict local Players = game:GetService("Players") local PathDisplay = {} PathDisplay.spacing = 8 PathDisplay.image = "rbxasset://textures/Cursors/Gamepad/Pointer.png" PathDisplay.imageSize = Vector2.new(2, 2) local currentPoints = {} local renderedPoints = {} local pointModel = Instance.new("Model") pointMode...
854
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/ControlModule/TouchJump.luau
luau
.luau
--!nonstrict --[[ // FileName: TouchJump // Version 1.0 // Written by: jmargh // Description: Implements jump controls for touch devices. Use with Thumbstick and Thumbpad --]] local Players = game:GetService("Players") local GuiService = game:GetService("GuiService") --[[ Constants ]]-- local TOUCH_CONTROL_SHEET ...
1,507
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/ControlModule/TouchThumbstick.luau
luau
.luau
--!nonstrict --[[ TouchThumbstick --]] local GuiService = game:GetService("GuiService") local UserInputService = game:GetService("UserInputService") local FFlagUserClampClassicThumbstick do local success, result = pcall(function() return UserSettings():IsUserFeatureEnabled("UserClampClassicThumbstick") end) FF...
1,975
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/ControlModule/VRNavigation.luau
luau
.luau
--!nonstrict --!nolint GlobalUsedAsLocal --[[ VRNavigation --]] local VRService = game:GetService("VRService") local UserInputService = game:GetService("UserInputService") local RunService = game:GetService("RunService") local Players = game:GetService("Players") local PathfindingService = game:GetService("Pathfind...
3,239
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/ControlModule/VehicleController.luau
luau
.luau
--!nonstrict --[[ // FileName: VehicleControl // Version 1.0 // Written by: jmargh // Description: Implements in-game vehicle controls for all input devices // NOTE: This works for basic vehicles (single vehicle seat). If you use custom VehicleSeat code, // multiple VehicleSeats or your own implementation of a V...
1,582
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/ControlModule/init.luau
luau
.luau
--!nonstrict --[[ ControlModule - This ModuleScript implements a singleton class to manage the selection, activation, and deactivation of the current character movement controller. This script binds to RenderStepped at Input priority and calls the Update() methods on the active controller instances. The character...
5,609
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/PlayerModule/init.luau
luau
.luau
--[[ PlayerModule - This module requires and instantiates the camera and control modules, and provides getters for developers to access methods on these singletons without having to modify Roblox-supplied scripts. 2018 PlayerScripts Update - AllYourBlox --]] local PlayerModule = {} PlayerModule.__index = PlayerMo...
165
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/RbxCharacterSounds/init.client.luau
luau
.luau
--!nonstrict -- Roblox character sound script local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local RunService = game:GetService("RunService") local SoundService = game:GetService("SoundService") local Utils = require(ReplicatedStorage.Modules.Utils) local Ato...
3,392
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/RemoteHandler/DisplayHitmarker.luau
luau
.luau
local ReplicatedStorage = game:GetService("ReplicatedStorage") local Network = require(ReplicatedStorage.Modules.Network) local Hitmarker = require(ReplicatedStorage.Classes.Hitmarker) return function() Network:SetConnection("DisplayHitmarker", "REMOTE_EVENT", function(position: Vector3, amount: number) Hitmarker...
75
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/RemoteHandler/ExecuteReplicatedModule.luau
luau
.luau
local ReplicatedStorage = game:GetService("ReplicatedStorage") local Network = require(ReplicatedStorage.Modules.Network) return function() local function Execute(path: string, ...) local module: ModuleScript if path and #path > 0 then local steps = path:split(".") for index, step in steps do if inde...
188
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/RemoteHandler/Print.luau
luau
.luau
local ReplicatedStorage = game:GetService("ReplicatedStorage") local Network = require(ReplicatedStorage.Modules.Network) return function() Network:SetConnection("Print", "UREMOTE_EVENT", function(messageType: Enum.MessageType, ...) if workspace:GetAttribute("DebugAllowed") ~= true then return ...
108
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/RemoteHandler/ShowJokeSettingImage.luau
luau
.luau
local Debris = game:GetService("Debris") local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local TweenService = game:GetService("TweenService") local Utils = require(ReplicatedStorage.Modules.Utils) local Network = require(ReplicatedStorage.Modules.Network) local...
507
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/RemoteHandler/init.luau
luau
.luau
return { Init = function(_self) for _, func in script:GetChildren() do if not func:IsA("ModuleScript") then continue end require(func)() end end }
48
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/AchievementsMenu.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local TweenService = game:GetService("TweenService") local Achievements = require(ReplicatedStorage.Assets.Achievements) local Types = require(ReplicatedStorage.Classes.Types) local Sounds = require(ReplicatedStor...
2,378
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/Changelog.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local TweenService = game:GetService("TweenService") local SideBar = require(script.Parent.SideBar) local Utils = require(ReplicatedStorage.Modules.Utils) local LocalPlayer = Players.LocalPlayer local Changelog ...
1,330
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/CharacterStatsManager.luau
luau
.luau
local CharacterStatsManager = { UI = nil, Connection = nil, } local LocalPlayer = game:GetService("Players").LocalPlayer local ReplicatedStorage = game:GetService("ReplicatedStorage") local RunService = game:GetService("RunService") local Utils = require(ReplicatedStorage.Modules.Utils) function CharacterStat...
581
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/ChatHistoryToggle.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local StarterGui = game:GetService("StarterGui") local TextChatService = game:GetService("TextChatService") local Utils = require(ReplicatedStorage.Modules.Utils) repeat local success = pcall(function() Starte...
186
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/Credits.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local TweenService = game:GetService("TweenService") local SideBar = require(script.Parent.SideBar) local Utils = require(ReplicatedStorage.Modules.Utils) local LocalPlayer = Players.LocalPlayer local CreditsMen...
927
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/EffectViewer.luau
luau
.luau
local EffectViewer = {} local LocalPlayer = game:GetService("Players").LocalPlayer local ReplicatedStorage = game:GetService("ReplicatedStorage") local RunService = game:GetService("RunService") local Utils = require(ReplicatedStorage.Modules.Utils) local EffectDisplay: Frame function EffectViewer:Init() Effect...
420
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/EmotePanel.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local RunService = game:GetService("RunService") local TweenService = game:GetService("TweenService") local UserInputService = game:GetService("UserInputService") local LocalPlayer = Players.LocalPlayer local Mou...
1,394
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/IntroHandler.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local Utils = require(ReplicatedStorage.Modules.Utils) local KillerIntro = require(ReplicatedStorage.Classes.KillerIntro) local IntroFolder = ReplicatedStorage.Assets.KillerIntros local function GetIntroModule(na...
761
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/Inventory/EmoteEquipWindow.luau
luau
.luau
local Debris = game:GetService("Debris") local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local TweenService = game:GetService("TweenService") local Utils = require(ReplicatedStorage.Modules.Utils) local Network = require(ReplicatedStorage.Modules.Network) local...
971
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/Inventory/init.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local TweenService = game:GetService("TweenService") local TextService = game:GetService("TextService") local UserInputService = game:GetService("UserInputService") local GuiService = game:GetService("GuiService") ...
6,961
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/ModPanel/Bool.luau
luau
.luau
local ReplicatedStorage = game:GetService("ReplicatedStorage") local Network = require(ReplicatedStorage.Modules.Network) local Sounds = require(ReplicatedStorage.Modules.Sounds) local BoolCommand = {} function BoolCommand.New(CommandModule: ModuleScript, UI): ImageLabel local Config = require(CommandModule) ...
280
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/ModPanel/Enum.luau
luau
.luau
local ReplicatedStorage = game:GetService("ReplicatedStorage") local Network = require(ReplicatedStorage.Modules.Network) local Sounds = require(ReplicatedStorage.Modules.Sounds) local Utils = require(ReplicatedStorage.Modules.Utils) local GlobalPrefab = Utils.Instance.FindFirstChild(script, "Enum", 0) local ValuePre...
362
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/ModPanel/init.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local TweenService = game:GetService("TweenService") local SideBar = require(script.Parent.SideBar) local Network = require(ReplicatedStorage.Modules.Network) local Sounds = require(ReplicatedStorage.Modules.Sound...
936
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/MoneyXPRewards.luau
luau
.luau
local Debris = game:GetService("Debris") local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local TweenService = game:GetService("TweenService") local Utils = require(ReplicatedStorage.Modules.Utils) local Network = require(ReplicatedStorage.Modules.Network) loca...
421
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/PlayerList/PlayerInfoWindow.luau
luau
.luau
local Debris = game:GetService("Debris") local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local TweenService = game:GetService("TweenService") local Utils = require(ReplicatedStorage.Modules.Utils) local Sounds = require(ReplicatedStorage.Modules.Sounds) local S...
2,206
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/PlayerList/init.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local TweenService = game:GetService("TweenService") local Utils = require(ReplicatedStorage.Modules.Utils) local Sounds = require(ReplicatedStorage.Modules.Sounds) local InputManager = require(script.Parent.Paren...
1,088
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/RewardNotifications.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local TweenService = game:GetService("TweenService") local Utils = require(ReplicatedStorage.Modules.Utils) local Network = require(ReplicatedStorage.Modules.Network) local RewardNotifications = {} function Rewa...
571
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/RoundPlayerList.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local Utils = require(ReplicatedStorage.Modules.Utils) local LocalPlayer = Players.LocalPlayer local RoundState: StringValue = ReplicatedStorage.RoundInfo.CurrentState local RoundPlayerList = { UI = nil, ...
1,064
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/RulesMenu.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local TweenService = game:GetService("TweenService") local SideBar = require(script.Parent.SideBar) local Utils = require(ReplicatedStorage.Modules.Utils) local LocalPlayer = Players.LocalPlayer local Rules = { ...
949
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/Settings/Bool.luau
luau
.luau
local ReplicatedStorage = game:GetService("ReplicatedStorage") local Network = require(ReplicatedStorage.Modules.Network) local Sounds = require(ReplicatedStorage.Modules.Sounds) local BoolSetting = {} function BoolSetting:New(Bool: BoolValue, ExistingCheckbox: Frame?, Callback: (Value: boolean) -> ()?) if not Bo...
342
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/Settings/Connections/AFK.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local Utils = require(ReplicatedStorage.Modules.Utils) local AFKLabel = Utils.Instance.FindFirstChild(Players.LocalPlayer.PlayerGui, "AFKLabel") return function(Value: boolean) AFKLabel.Enabled = Value end
69
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/Settings/Connections/FieldOfView.luau
luau
.luau
local LocalPlayer = game:GetService("Players").LocalPlayer return function(NewValue: number) LocalPlayer:SetAttribute("BaseFOV", NewValue) end
34
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/Settings/Connections/MusicVolume.luau
luau
.luau
local SoundService = game:GetService("SoundService") return function(NewValue: number) SoundService.SoundGroups.Master.Music.Volume = NewValue / 100 end
35
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/Settings/Connections/SFXVolume.luau
luau
.luau
local SoundService = game:GetService("SoundService") return function(NewValue: number) SoundService.SoundGroups.Master.SFX.Volume = NewValue / 100 end
35
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/Settings/Connections/ShowPlayerHitboxes.luau
luau
.luau
return function(Value: boolean) for _, Player: Model in workspace.Players:GetChildren() do local Hitboxes = Player:FindFirstChild("Hitboxes") if Hitboxes then for _, hitbox in Hitboxes:GetChildren() do hitbox.Transparency = Value and hitbox:GetAttribute("VisibleTransparen...
84
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/Settings/Connections/UIVolume.luau
luau
.luau
local SoundService = game:GetService("SoundService") return function(NewValue: number) SoundService.SoundGroups.Master.UI.Volume = NewValue / 100 end
34
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/Settings/Connections/VoicelineVolume.luau
luau
.luau
local SoundService = game:GetService("SoundService") return function(NewValue: number) SoundService.SoundGroups.Master.VoiceLines.Volume = NewValue / 100 end
36
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/Settings/Number.luau
luau
.luau
local ReplicatedStorage = game:GetService("ReplicatedStorage") local Network = require(ReplicatedStorage.Modules.Network) local Sounds = require(ReplicatedStorage.Modules.Sounds) local NumberSetting = {} function NumberSetting:New(NumberValue: NumberValue, ExistingInput: TextBox?, Callback: (Value: number) -> ()?) ...
445
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/Settings/String.luau
luau
.luau
local ReplicatedStorage = game:GetService("ReplicatedStorage") local Network = require(ReplicatedStorage.Modules.Network) local Sounds = require(ReplicatedStorage.Modules.Sounds) local StringSetting = {} function StringSetting:New(StringValue: StringValue, ExistingInput: TextBox?, Callback: (Value: string) -> ()?) ...
315
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/Settings/init.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local TweenService = game:GetService("TweenService") local SideBar = require(script.Parent.SideBar) local Utils = require(ReplicatedStorage.Modules.Utils) local LocalPlayer = game:GetService("Players").LocalPlaye...
1,051
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/Shop/BuyWindow.luau
luau
.luau
local Debris = game:GetService("Debris") local ReplicatedStorage = game:GetService("ReplicatedStorage") local TweenService = game:GetService("TweenService") local Utils = require(ReplicatedStorage.Modules.Utils) local Network = require(ReplicatedStorage.Modules.Network) local Signal = require(ReplicatedStorage.Utils.S...
705
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/Shop/init.luau
luau
.luau
local GuiService = game:GetService("GuiService") local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local TextService = game:GetService("TextService") local TweenService = game:GetService("TweenService") local UserInputService = game:GetService("UserInputService") ...
8,898
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/SideBar.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local TextService = game:GetService("TextService") local TweenService = game:GetService("TweenService") local Utils = require(ReplicatedStorage.Modules.Utils) local Sounds = require(ReplicatedStorage.Modules.Sound...
2,356
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/Spectate.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local RunService = game:GetService("RunService") local TweenService = game:GetService("TweenService") local Sounds = require(ReplicatedStorage.Modules.Sounds) local SideBar = require(script.Parent.SideBar) local U...
1,471
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/StatsMenu.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local TweenService = game:GetService("TweenService") local SideBar = require(script.Parent.SideBar) local Utils = require(ReplicatedStorage.Modules.Utils) local LocalPlayer = Players.LocalPlayer local StatsMenu ...
934
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/Time.luau
luau
.luau
local ReplicatedStorage = game:GetService("ReplicatedStorage") local Utils = require(ReplicatedStorage.Modules.Utils) return { Init = function(_) local TimeStats = ReplicatedStorage.RoundInfo local TimeRemaining = TimeStats.TimeRemaining local State = TimeStats.CurrentState local...
367
CodeBotsStudio/Dysymmetrical
CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/UI/VideoPlayer.luau
luau
.luau
--credits to PirosMacska for this since i was too lazy to write it myself -Dyscarn (Driftwood thing) local ReplicatedStorage = game:GetService("ReplicatedStorage") local Utils = require(ReplicatedStorage.Modules.Utils) local module = {} local Player = game:GetService("Players").LocalPlayer local ScreenGUI local fra...
1,041
AlexanderLindholt/TextPlus
AlexanderLindholt-TextPlus-ef490bf/source/CorrectOptions.luau
luau
.luau
--!optimize 2 --!native -- Services. local TextService = game:GetService("TextService") -- Option defaults. local defaults = require(script.Parent.Defaults) -- User fonts. local userFonts = require(script.Parent.Fonts) -- Option lists for validity checks. local scaleSizeTypes = { RootX = true, RootY = true, Root...
1,583
AlexanderLindholt/TextPlus
AlexanderLindholt-TextPlus-ef490bf/source/Defaults.luau
luau
.luau
--!optimize 2 -- Services. local CollectionService = game:GetService("CollectionService") -- Attempt to find the plugin object. local plugin = script:FindFirstAncestorOfClass("Plugin") -- Options list for validation. local optionsList = require(script.Parent.Options) -- Default defaults. local defaults = { Font = ...
422
AlexanderLindholt/TextPlus
AlexanderLindholt-TextPlus-ef490bf/source/Fonts.luau
luau
.luau
--!optimize 2 -- Services. local CollectionService = game:GetService("CollectionService") local Players = game:GetService("Players") -- Load and store all custom fonts. local userFonts = {} for _, module in CollectionService:GetTagged("Fonts") do if module:IsA("ModuleScript") then local fullModuleName = module:Ge...
1,124
AlexanderLindholt/TextPlus
AlexanderLindholt-TextPlus-ef490bf/source/Options.luau
luau
.luau
return { Font = true, Size = true, ScaleSize = true, MinimumSize = true, MaximumSize = true, Color = true, Transparency = true, Pixelated = true, Offset = true, Rotation = true, StrokeSize = true, StrokeColor = true, StrokeTransparency = true, ShadowOffset = true, ShadowColor = true, Shado...
151
YetAnotherClown/YetAnotherNet
YetAnotherClown-YetAnotherNet-a8f8f7e/examples/matter/src/client/systems/roombasHurt.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local Matter = require(ReplicatedStorage.Packages.Matter) local components = require(ReplicatedStorage.Shared.components) local function roombasHurt(world) for _, _, model in world:query(components.Roomba, compon...
214
YetAnotherClown/YetAnotherNet
YetAnotherClown-YetAnotherNet-a8f8f7e/examples/matter/src/client/systems/spinSpinners.luau
luau
.luau
local ReplicatedStorage = game:GetService("ReplicatedStorage") local components = require(ReplicatedStorage.Shared.components) local function spinSpinners(world, _, ui) if ui.checkbox("Disable Spinning"):checked() then return end local transparency = ui.slider(1) local randomize = ui.button("Randomize colors!"...
171
YetAnotherClown/YetAnotherNet
YetAnotherClown-YetAnotherNet-a8f8f7e/examples/matter/src/game.client.luau
luau
.luau
local ReplicatedStorage = game:GetService("ReplicatedStorage") local start = require(ReplicatedStorage.Shared.start) local receiveReplication = require(ReplicatedStorage.Client.systems.receiveReplication) local world, state = start({ ReplicatedStorage.Shared.systems, ReplicatedStorage.Client.systems, }) receiveRepl...
75
YetAnotherClown/YetAnotherNet
YetAnotherClown-YetAnotherNet-a8f8f7e/examples/matter/src/server/systems/mothershipsSpawnRoombas.luau
luau
.luau
local ReplicatedStorage = game:GetService("ReplicatedStorage") local Matter = require(ReplicatedStorage.Packages.Matter) local components = require(ReplicatedStorage.Shared.components) local function mothershipsSpawnRoombas(world) for id, model, lasering, transform in world:query(components.Model, components.Laseri...
271
YetAnotherClown/YetAnotherNet
YetAnotherClown-YetAnotherNet-a8f8f7e/examples/matter/src/server/systems/removeMissingModels.luau
luau
.luau
local ReplicatedStorage = game:GetService("ReplicatedStorage") local Matter = require(ReplicatedStorage.Packages.Matter) local components = require(ReplicatedStorage.Shared.components) local function removeMissingModels(world) for id, model in world:query(components.Model) do for _ in Matter.useEvent(model.model, "...
190
YetAnotherClown/YetAnotherNet
YetAnotherClown-YetAnotherNet-a8f8f7e/examples/matter/src/server/systems/replication.luau
luau
.luau
local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local components = require(ReplicatedStorage.Shared.components) local routes = require(ReplicatedStorage.Shared.routes) local useEvent = require(ReplicatedStorage.Packages.Matter).useEvent local REPLICATED_COMPONE...
378
YetAnotherClown/YetAnotherNet
YetAnotherClown-YetAnotherNet-a8f8f7e/examples/matter/src/server/systems/roombasMove.luau
luau
.luau
local ReplicatedStorage = game:GetService("ReplicatedStorage") local components = require(ReplicatedStorage.Shared.components) local function roombasMove(world) local targets = {} for _, model in world:query(components.Model, components.Target) do table.insert(targets, model.model.PrimaryPart.CFrame.p) end for ...
467
YetAnotherClown/YetAnotherNet
YetAnotherClown-YetAnotherNet-a8f8f7e/examples/matter/src/server/systems/spawnRoombas.luau
luau
.luau
local ReplicatedStorage = game:GetService("ReplicatedStorage") local components = require(ReplicatedStorage.Shared.components) local function spawnRoombas(world) for id, _ in world:query(components.Transform, components.Roomba):without(components.Model) do local model = ReplicatedStorage.Assets.KillerRoomba:Clone()...
119
YetAnotherClown/YetAnotherNet
YetAnotherClown-YetAnotherNet-a8f8f7e/examples/matter/src/shared/components.luau
luau
.luau
local ReplicatedStorage = game:GetService("ReplicatedStorage") local Matter = require(ReplicatedStorage.Packages.Matter) local COMPONENTS = { "Roomba", "Model", "Charge", "Health", "Target", "Transform", "Mothership", "Lasering", "DebugLabel", "Spinner", } local components = {} for _, name in ipairs(COMPON...
107
YetAnotherClown/YetAnotherNet
YetAnotherClown-YetAnotherNet-a8f8f7e/examples/matter/src/shared/routes.luau
luau
.luau
local ReplicatedStorage = game:GetService("ReplicatedStorage") local Packages = ReplicatedStorage.Packages type ComponentInstance<T> = T & { patch: (self: T, data: { any: any }) -> ComponentInstance<T> } local Net = require(Packages.Net) local Route = Net.Route type Route<U...> = Net.Route<U...> local defaultConfig...
133