repo stringclasses 254
values | file_path stringlengths 29 241 | code stringlengths 100 233k | tokens int64 14 69.4k |
|---|---|---|---|
CodeBotsStudio/Dysymmetrical | CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterCharacterScripts/Miscellaneous/EmoteManager.luau | local Players = game:GetService("Players")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Utils = require(ReplicatedStorage.Modules.Utils)
local Network = require(ReplicatedStorage.Modules.Network)
local Janitor = require(ReplicatedStorage.Packages.Janitor)
local EmoteManager = {
EmotesAvailable... | 937 |
CodeBotsStudio/Dysymmetrical | CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterCharacterScripts/Miscellaneous/LobbyTheme.luau | return {
Init = function(_self)
local Players = game:GetService("Players")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Sounds = require(ReplicatedStorage.Modules.Sounds)
local Character = Players.LocalPlayer.Character
local function ToggleTheme(rol... | 169 |
CodeBotsStudio/Dysymmetrical | CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterCharacterScripts/Miscellaneous/TerrorRadiusManager.luau | local Players = game:GetService("Players")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local RunService = game:GetService("RunService")
local SoundService = game:GetService("SoundService")
local TweenService = game:GetService("TweenService")
local Utils = require(ReplicatedStorage.Modules.Utils)
loc... | 2,812 |
CodeBotsStudio/Dysymmetrical | CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterCharacterScripts/PlayerAbilities/CharacterAbilities.luau | local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Janitor = require(ReplicatedStorage.Packages.Janitor)
local CharacterAbilities = {
CharacterModule = {}, --this is here as a utility local for possible usage
Abilities = {},
}
function CharacterAbilities:Init()
local janitorInstance = J... | 119 |
CodeBotsStudio/Dysymmetrical | CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterCharacterScripts/PlayerAttributeScripts/EffectManager.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)
local Janitor = require(ReplicatedStorage.Packages.Jan... | 529 |
CodeBotsStudio/Dysymmetrical | CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterCharacterScripts/PlayerAttributeScripts/FOVManager.luau | local ReplicatedStorage = game:GetService("ReplicatedStorage")
local RunService = game:GetService("RunService")
local Janitor = require(ReplicatedStorage.Packages.Janitor)
local Camera = workspace.CurrentCamera
local LocalPlayer = game:GetService("Players").LocalPlayer
local FOVManager = {
FOVFactors = {},
DeltaMul... | 292 |
CodeBotsStudio/Dysymmetrical | CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterCharacterScripts/Server/ScriptInitter.luau | return {
Init = function(_)
for _, Module in script.Parent:GetDescendants() do
if Module == script then
continue
end
if not Module:IsA("ModuleScript") then
continue
end
local Scr = require(Module)
if type(Scr) == "table" and Scr.Init and type(Scr.Init) == "function" then
Scr:Init()
... | 98 |
CodeBotsStudio/Dysymmetrical | CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterGui/UIOrdering.client.luau | local ReplicatedStorage = game:GetService("ReplicatedStorage")
local StarterGui = game:GetService("StarterGui")
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Health, false)
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false)
local Utils = req... | 228 |
CodeBotsStudio/Dysymmetrical | CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/CharacterInitter.luau | 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(Char: Model)
local Server = Char:FindFirs... | 204 |
CodeBotsStudio/Dysymmetrical | CodeBotsStudio-Dysymmetrical-efeac6e/src/StarterPlayerScripts/CharacterManager.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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | --[[
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 | --!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 | 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 | --!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 | --!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 | --!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 | --!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 | --!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 | 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 | --[[
@ 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 | --[=[
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 | --!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 | --!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 | --!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 | --!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 | --!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 | --[[
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 | --!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 | --!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 | --!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 | --!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 | --!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 | --!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 | --!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 | --!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 | --!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 | --!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 | --[[
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 | --!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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | 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 | --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 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/MainModule.luau | --Loads Nexus Admin for the normal deployment.
--!strict
local REQUIRED_LIBRARIES = {
--Cmdr = "cmdr", --Git submodule used for Cmdr due to outdated release.
NexusButton = "nexus-button",
NexusDataStore = "nexus-data-store",
NexusFeatureFlags = "nexus-feature-flags",
NexusInstance = "nexus-instance... | 548 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/Client/ClientAuthorization.luau | --Handles users being authorized on the client.
--!strict
local Types = require(script.Parent:WaitForChild("Types"))
local Authorization = require(script.Parent:WaitForChild("Common"):WaitForChild("Authorization")) :: Types.Authorization
local ClientAuthorization = {}
ClientAuthorization.__index = ClientAuthorization... | 255 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/Client/ClientLogsRegistry.luau | --Manages fetching logs on the client.
--!strict
local Types = require(script.Parent:WaitForChild("Types"))
local Logs = require(script.Parent:WaitForChild("Common"):WaitForChild("Logs")) :: Types.Logs
local ClientLogsRegistry = {}
ClientLogsRegistry.__index = ClientLogsRegistry
export type ClientLogsRegistry = {
... | 499 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/Client/ClientMessages.luau | --Sends messages to the local player.
--!strict
local ClientMessages = {}
ClientMessages.__index = ClientMessages
export type ClientMessages = {
DisplayHintLoopbackEvent: BindableEvent,
DisplayMessageLoopbackEvent: BindableEvent,
DisplayNotificationLoopbackEvent: BindableEvent,
} & typeof(setmetatable({},... | 644 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/Client/ClientRegistry.luau | --Registers commands on the client.
--!strict
local Types = require(script.Parent:WaitForChild("Types"))
local Registry = require(script.Parent:WaitForChild("Common"):WaitForChild("Registry")) :: Types.Registry
local ClientRegistry = {}
ClientRegistry.__index = ClientRegistry
setmetatable(ClientRegistry, Registry)
e... | 655 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.