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 |
|---|---|---|---|---|---|
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 |
Epix-Incorporated/Adonis-Plugins | Epix-Incorporated-Adonis-Plugins-8629e36/Client/Client-AdonisChatAddition.luau | luau | .luau | --[==[
File: Client-AdonisChatAddition.lua
Author: Coasterteam
Description: This is a client dep. that makes it so removing custom chat works properly
Last Updated: August 11th, 2024
Version: 1.0
]==]
return function(Vargs)
local client, service = Vargs.Client, Vargs.Service
client.UI.Remove = function(name,... | 156 |
Epix-Incorporated/Adonis-Plugins | Epix-Incorporated-Adonis-Plugins-8629e36/Server/Server-AutoChannelTabs.luau | luau | .luau | --[[
Author: WalkerOfBacon
Name: Auto Channel Tabs
Description: This plugin will automatically add an "Admins" channel tab and remove unused team channel tabs.
Place in a ModuleScript under Adonis_Loader > Config > Plugins and named "Server-ChannelTab"
--]]
return function(Vargs)
local server, service = Vargs.Ser... | 564 |
Epix-Incorporated/Adonis-Plugins | Epix-Incorporated-Adonis-Plugins-8629e36/Server/Server-Banning API.luau | luau | .luau | --[[
File: Server-Banning API.lua
Author: Coasterteam
Description: A temporary addition of the Banning API to allow Adonis to communicate with it.
This plugin should be used temporarily until Adonis fully implements the rewritten moderation systems (TBD)
Last Updated: June 26th, 2024
Version: 1.0
--]]
return f... | 3,355 |
Epix-Incorporated/Adonis-Plugins | Epix-Incorporated-Adonis-Plugins-8629e36/Server/Server-CMDsCooldownByLevel.luau | luau | .luau | --!strict
----------
--[[ Info:
A plugin to automatically assign commands' cooldown depending on its rank.
]]
---------------------------------------------------------------------------------------------|
local CooldownsByLevel = {
--| Format: [AdminLevel] = {Player = <Seconds>, Server = <Seconds>, CrossServer = <S... | 346 |
Epix-Incorporated/Adonis-Plugins | Epix-Incorporated-Adonis-Plugins-8629e36/Server/Server-Command_Remover.luau | luau | .luau | --!strict
--[[
Author: Sceleratis (Davey_Bones)
Description: This plugin will remove certain commands
Place in a ModuleScript under Adonis_Loader > Config > Plugins and named "Server-Command_Remover"
--]]
local COMMANDS_TO_REMOVE: {string} = { --// List of command indices or names to remove
"kill",
"DonorHat",
... | 227 |
Epix-Incorporated/Adonis-Plugins | Epix-Incorporated-Adonis-Plugins-8629e36/Server/Server-CustomRankCommand.luau | luau | .luau | return function(Vargs)
local server, service = Vargs.Server, Vargs.Service
local Settings = server.Settings
local Commands = server.Commands
local Functions = server.Functions
local Admin = server.Admin
Commands.VIP = {
Prefix = Settings.Prefix;
Commands = {"vip"};
... | 253 |
Epix-Incorporated/Adonis-Plugins | Epix-Incorporated-Adonis-Plugins-8629e36/Server/Server-DisableOldlogs.luau | luau | .luau | --!nonstrict
--[[
Author: joritochip
Name: Disable oldlogs
Description: This plugin allows you to fully disable Adonis old logs
Place in a ModuleScript under Adonis_Loader > Config > Plugins and named "Server-DisableOldlogs"
--]]
return function(Vargs)
local server, service = Vargs.Server, Vargs.Service
server.... | 169 |
Epix-Incorporated/Adonis-Plugins | Epix-Incorporated-Adonis-Plugins-8629e36/Server/Server-DiscordWebhookLogs.luau | luau | .luau | --!nonstrict
--[[
Original Author: crywink
Rewrite Author: Expertcoderz
Name: Server-DiscordWebhookLogs
Description: Enables logging of commands to a Discord webhook
Place in a ModuleScript under Adonis_Loader > Config > Plugins, named "Server-DiscordWebhookLogs"
NOTICE: Discord has blocked Roblox from sending ... | 832 |
Epix-Incorporated/Adonis-Plugins | Epix-Incorporated-Adonis-Plugins-8629e36/Server/Server-Free_Admin.luau | luau | .luau | --!nonstrict
--[[
Author: Sceleratis (Davey_Bones)
Description: This plugin gives admin to every non-admin player who joins
Place in a ModuleScript under Adonis_Loader > Config > Plugins, named "Server-Free_Admin"
--]]
local FREE_ADMIN_LEVEL: number = 100 --// Level of admin to give everyone; rank levels are defin... | 311 |
Epix-Incorporated/Adonis-Plugins | Epix-Incorporated-Adonis-Plugins-8629e36/Server/Server-Gear_Blacklist.luau | luau | .luau | --!nonstrict
--[[
Name: Gear Blacklist
Author: Sceleratis (Davey_Bones)
Description: This plugins allows for the blacklisting of certain IDs from the :gear command
Place in a ModuleScript under Adonis_Loader > Config > Plugins and name it "Server-Gear_Blacklist"
--]]
local BLACKLISTED_GEAR_IDS: {number} = { --// ... | 347 |
Epix-Incorporated/Adonis-Plugins | Epix-Incorporated-Adonis-Plugins-8629e36/Server/Server-Leaderstat_Protector.luau | luau | .luau | --!nonstrict
--[[
Author: Expertcoderz
Description: Prevents certain leaderstat values from being changed by admins using :change, :add or :subtract
Place this in a ModuleScript under Adonis_Loader > Config > Plugins and name it "Server-Leaderstat_Protector"
]]
type Permission = string|number|{string|number}
--//... | 355 |
Epix-Incorporated/Adonis-Plugins | Epix-Incorporated-Adonis-Plugins-8629e36/Server/Server-PlayerSelector_Restrictor.luau | luau | .luau | --!strict
--[[
Author: Sceleratis/Davey_Bones and Expertcoderz
Description: This plugin will restrict any player selectors
(all, others, me, etc.) to a specific admin level only.
This plugin can also protect admins with certain
levels from being selected using player selectors.
Place this ModuleScrip... | 867 |
Epix-Incorporated/Adonis-Plugins | Epix-Incorporated-Adonis-Plugins-8629e36/Server/Server-PrivateServerOwnerAdmin.luau | luau | .luau | --!strict
--[[
Original Author: TacoBellSaucePackets
Original Source: https://devforum.roblox.com/t/adonis-g-api-usage/477194/4
Description: This plugin will give a certain temporary permission level to private server owners
Place this ModuleScript in Adonis_Loader > Config > Plugins and name it "Server-PrivateSer... | 254 |
Epix-Incorporated/Adonis-Plugins | Epix-Incorporated-Adonis-Plugins-8629e36/Server/Server-RemoteAdmin.luau | luau | .luau | --!nonstrict
--[[
Author: EasternBloxxer
Description: This plugin enables the setting of certain players' admin ranks via a BindableEvent
Place in a ModuleScript under Adonis_Loader > Config > Plugins and named "Server-RemoteAdmin"
Usage:
AdminRemote:Fire(player: Player, key: string, adminLevel: string | number... | 421 |
Epix-Incorporated/Adonis-Plugins | Epix-Incorporated-Adonis-Plugins-8629e36/Server/Server-Uninspiration.luau | luau | .luau | --!strict
--[[
Author: pbstFusion
Name: Server-Uninspiration
Description: To provide people with text that is not vaguely inspiring, nor helpful.
Place in a ModuleScript under Adonis_Loader > Config > Plugins, named "Server-Uninspiration"
--]]
return function(Vargs)
local server, service = Vargs.Server, Vargs.Se... | 457 |
loneka/avalog | loneka-avalog-b92424d/Include/EasyLoader/Client/init.server.luau | luau | .luau | local Avalog = require(script.Parent.Parent.Avalog)
local Config = require(script.Parent.Config)
local Icon = require(script.Parent.Parent.Avalog.Packages.TopbarPlus)
Avalog.Config:Update(Config)
Avalog:Start()
local AvalogIcon = Icon.new():setImage("rbxassetid://93133319477541"):setLeft():setImageScale(0.6)
Avalog... | 100 |
loneka/avalog | loneka-avalog-b92424d/Include/EasyLoader/Config/init.luau | luau | .luau | --!strict
local AvalogConfig = require(script.Parent.Parent.Avalog.Packages.Avalog.Config)
local Config: AvalogConfig.Config = {
Featured = {
Items = {},
},
}
return Config
| 47 |
loneka/avalog | loneka-avalog-b92424d/Include/EasyLoader/Server/init.server.luau | luau | .luau | local Avalog = require(script.Parent.Parent.Avalog)
local Config = require(script.Parent.Config)
Avalog.Config:Update(Config)
Avalog:Start()
| 34 |
loneka/avalog | loneka-avalog-b92424d/Include/Linking.luau | luau | .luau | return require(script.Packages["Avalog"])
| 10 |
loneka/avalog | loneka-avalog-b92424d/scripts/pesdeToWally.luau | luau | .luau | local fs = require("@lune/fs")
local serde = require("@lune/serde")
local function convertDependencies(pesdeDependencies)
local wallyDependencies = {}
for alias, dependency in pairs(pesdeDependencies) do
if next(dependency) ~= nil then
assert(dependency.name == nil, `Package relies on Pesde package.`)
if d... | 375 |
loneka/avalog | loneka-avalog-b92424d/src/API/Client.luau | luau | .luau | local SOURCE = script.Parent.SourceCode
local PACKAGES = script.Parent.Parent
local CLIENT = SOURCE.Client
local States = require(SOURCE.Client.UI.States)
local Fusion = require(PACKAGES.Fusion)
local Bootloader = require(PACKAGES.Bootloader)
local Config = require(script.Parent.Config)
local ServiceProvider = require... | 385 |
loneka/avalog | loneka-avalog-b92424d/src/API/Server.luau | luau | .luau | local SOURCE = script.Parent.SourceCode
local PACKAGES = script.Parent.Parent
local SERVER = SOURCE.Server
local Config = require(script.Parent.Config)
local Bootloader = require(PACKAGES.Bootloader)
local function GetModules()
local Modules = {}
for _, Child in ipairs(SERVER:GetChildren()) do
if Child:IsA("Modu... | 243 |
loneka/avalog | loneka-avalog-b92424d/src/API/init.luau | luau | .luau | local RunService = game:GetService("RunService")
if RunService:IsServer() then
return require(script.Server)
else
return require(script.Client)
end
| 33 |
loneka/avalog | loneka-avalog-b92424d/src/Client/Avatar/AvatarManager.luau | luau | .luau | -- An AvatarManager represents an avatar and operations that can be performed on this avatar.
local Avalog = script.Parent.Parent.Parent.Parent
local HumanoidDescriber = require(Avalog.Parent.HumanoidDescriber)
local Signal = require(Avalog.Parent.Signal)
export type CatalogItem = {
Id: number,
Type: Enum.AvatarIte... | 340 |
loneka/avalog | loneka-avalog-b92424d/src/Client/Avatar/LocalAvatar.luau | luau | .luau | local AvatarEditorService = game:GetService("AvatarEditorService")
local Players = game:GetService("Players")
local RunService = game:GetService("RunService")
local Avalog = script.Parent.Parent.Parent.Parent
local HumanoidDescriber = require(Avalog.Parent.HumanoidDescriber)
local Signal = require(Avalog.Parent.Signal... | 1,976 |
loneka/avalog | loneka-avalog-b92424d/src/Client/Cloud/init.luau | luau | .luau | --[[
Handles ingestion and communication with Avalog Cloud.
]]
local MarketplaceService = game:GetService("MarketplaceService")
local Players = game:GetService("Players")
local RunService = game:GetService("RunService")
local Avalog = script.Parent.Parent.Parent
local States = require(Avalog.SourceCode.Client.UI.Sta... | 585 |
loneka/avalog | loneka-avalog-b92424d/src/Client/CoreUI/init.luau | luau | .luau | local GuiService = game:GetService("GuiService")
local StarterGui = game:GetService("StarterGui")
local Avalog = script.Parent.Parent.Parent
local Fusion = require(Avalog.Parent.Fusion)
local States = require(Avalog.SourceCode.Client.UI.States)
local Config = require(Avalog.Config)
local ITEM_HANDLERS = {
Backpack =... | 274 |
loneka/avalog | loneka-avalog-b92424d/src/Client/Cosmetics/init.luau | luau | .luau | --[[
Handles client previews and purchase prompting of cosmetics
]]
local MarketplaceService = game:GetService("MarketplaceService")
local Players = game:GetService("Players")
local Avalog = script.Parent.Parent.Parent
local EnumSerDes = require(Avalog.Parent.EnumSerDes)
local Fusion = require(Avalog.Parent.Fusion)... | 855 |
loneka/avalog | loneka-avalog-b92424d/src/Client/Promo/init.luau | luau | .luau | local RunService = game:GetService("RunService")
local Avalog = script.Parent.Parent.Parent
local Manifest = require(Avalog.SourceCode.Shared.Manifest)
local Promo = {}
function Promo:Start()
if not RunService:IsStudio() then
print(`Running Avalog {Manifest.Version} 🛠️\n> https://devforum.roblox.com/t/3513102`)
... | 88 |
loneka/avalog | loneka-avalog-b92424d/src/Client/ServiceProvider.luau | luau | .luau | -- Provides some service. Must call `Setup` to setup services before getting any.
-- This is how the plugin swaps its implementations.
local Avalog = script.Parent.Parent.Parent
local AvatarManager = require(Avalog.SourceCode.Client.Avatar.AvatarManager)
export type AvatarManager = AvatarManager.AvatarManager
local ... | 155 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.