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 |
|---|---|---|---|---|---|
Tactycl/Nodekit | Tactycl-Nodekit-b1846c0/Nodekit/util/exitSubtree.luau | luau | .luau | const callFnThroughTreeAndSelf = require("./callFnThroughTreeAndSelf")
return function(self)
callFnThroughTreeAndSelf(self, "onExit", function(n)
if n._setRunning then
n:_setRunning(false)
else
n._isRunning = false
n._isTransitioning = false
end
end)
end
| 78 |
Tactycl/Nodekit | Tactycl-Nodekit-b1846c0/Nodekit/util/exitTransitionDidStartSubtree.luau | luau | .luau | const callFnThroughTreeAndSelf = require("./callFnThroughTreeAndSelf")
return function(self)
callFnThroughTreeAndSelf(self, "onExitTransitionDidStart", function(n)
if n._setExitingTransition then
n:_setExitingTransition(true)
else
n._isTransitioning = true
end
end)
end
| 75 |
Tactycl/Nodekit | Tactycl-Nodekit-b1846c0/Nodekit/util/safeCall.luau | luau | .luau | return function(self, fnName, ...)
if typeof(self) ~= "table" then
return
end
if typeof(self[fnName]) ~= "function" then
return
end
self[fnName](self, ...)
end
| 51 |
78n/Roblox | 78n-Roblox-8f6f7c6/Lua/Libraries/DataToCode/DataTypes.luau | luau | .luau | local DataTypes = {
Axes = Axes.new(),
BrickColor = BrickColor.Random(),
CellId = CellId.new(),
CFrame = CFrame.identity,
CatalogSearchParams = CatalogSearchParams.new(),
Color3 = Color3.new(),
ColorSequence = ColorSequence.new(Color3.new()),
ColorSequenceKeypoint = ColorSequenceKeypoint.new(0, Color3.new()),
... | 758 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/LICENSE.luau | luau | .luau | --[[
MIT License
Copyright (c) 2022-2025 Redon Tech
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge... | 241 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/autoNamer.luau | luau | .luau | local prefix, reverse, direction, detectOtherSize, otherSidePrefix, otherDifference = "", true, "X", false, "L", 0.2
local existingCount = 0
local parts = game.Selection:Get()
if #parts == 0 then
return
end
for _, v in pairs(parts) do
if v:IsA("BasePart") == false then
error("Only parts are allowed")
end
end
loca... | 311 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/base/colorPicker.luau | luau | .luau | -- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent
local plugin = root:FindFirstAncestorWhichIsA("Plugin") :: Plugin
local types = require(root.Plugin.types)
local color_picker = require(root.Plugin.vendor.color_picker)
local picker
type props = {
id: string,
initia... | 144 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/base/widget.luau | luau | .luau | -- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent
local plugin = root:FindFirstAncestorWhichIsA("Plugin") :: Plugin
local Fusion = require(root.Packages.fusion)
local types = require(root.Plugin.types)
type props = {
pluginGuiId: string,
InitialDockState: Enum.Init... | 480 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/main/els/faders/fader.luau | luau | .luau | --#selene: allow(shadowing)
-- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
local popup = require(root.Plugin.Compo... | 3,372 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/main/els/faders/init.luau | luau | .luau | --#selene: allow(shadowing)
-- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
local popup = require(root.Plugin.Components.p... | 4,263 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/main/els/faders/tween.luau | luau | .luau | --#selene: allow(shadowing)
-- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
local assets = require(root.Plugin.asse... | 2,702 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/main/els/flashers/column.luau | luau | .luau | --#selene: allow(shadowing)
-- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
local chassisHandler = require(root.Plu... | 1,039 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/main/els/flashers/columnHeader.luau | luau | .luau | --#selene: allow(shadowing)
-- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
local chassisHandler = require(root.Plu... | 1,639 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/main/els/flashers/init.luau | luau | .luau | --#selene: allow(shadowing)
-- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
local popup = require(root.Plugin.Components.p... | 4,425 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/main/els/flashers/sections.luau | luau | .luau | --#selene: allow(shadowing)
-- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
local popup = require(root.Plugin.Compo... | 5,668 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/main/els/rotators/angle.luau | luau | .luau | --#selene: allow(shadowing)
-- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
local chassisHandler = require(root.Plu... | 2,348 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/main/els/rotators/init.luau | luau | .luau | --#selene: allow(shadowing)
-- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
local popup = require(root.Plugin.Components.p... | 4,217 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/main/els/rotators/rotator.luau | luau | .luau | --#selene: allow(shadowing)
-- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
local popup = require(root.Plugin.Compo... | 3,533 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/main/init.luau | luau | .luau | -- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
local chassisHandler = require(root.Plugin.chassisHandler)
local log = require(root.Plug... | 2,897 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/main/savePopup.luau | luau | .luau | --#selene: allow(shadowing)
-- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent
local plugin = root:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.type... | 5,282 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/main/setup/createChildren.luau | luau | .luau | --#selene: allow(shadowing)
-- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
local assets = require(root.Plugin.assets)
loc... | 5,154 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/main/setup/functions/activationsPage.luau | luau | .luau | --#selene: allow(shadowing)
-- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
local chassisHandler = require(root.Plu... | 5,455 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/main/setup/functions/functionsPage.luau | luau | .luau | --#selene: allow(shadowing)
-- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
local chassisHandler = require(root.Plu... | 2,507 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/main/setup/functions/init.luau | luau | .luau | --#selene: allow(shadowing)
-- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
local chassisHandler = require(root.Plugin.cha... | 1,433 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/main/setup/lightSettings/colors.luau | luau | .luau | --#selene: allow(shadowing)
-- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
local chassisHandler = require(root.Plu... | 1,960 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/main/setup/lightSettings/init.luau | luau | .luau | --#selene: allow(shadowing)
-- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
local chassisHandler = require(root.Plugin.cha... | 3,032 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/main/setup/lightSettings/lightGroups.luau | luau | .luau | --#selene: allow(shadowing)
-- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
local assets = require(root.Plugin.asse... | 3,450 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/main/setup/lightSettings/mainSettings.luau | luau | .luau | --#selene: allow(shadowing)
-- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
local chassisHandler = require(root.Plu... | 2,244 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/main/setup/sirens.luau | luau | .luau | --#selene: allow(shadowing)
-- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
local chassisHandler = require(root.Plugin.cha... | 4,385 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/main/topbar.luau | luau | .luau | --#selene: allow(shadowing)
-- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
local popup = require(root.Plugin.Components.popup)
l... | 3,170 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/menu/credits.luau | luau | .luau | -- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local types = require(root.Plugin.types)
local assets = require(root.Plugin.assets)
local RedonUI = require(root.Packages["redon-ui"])
local pageBase = require(script.Paren... | 1,631 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/menu/help.luau | luau | .luau | -- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
local pageBase = require(script.Parent.pageBase)
local components = {
pageBase ... | 1,364 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/menu/home.luau | luau | .luau | -- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent
local plugin = root:FindFirstAncestorWhichIsA("Plugin")
local Selection = game:GetService("Selection")
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = requ... | 2,468 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/menu/init.luau | luau | .luau | -- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
local widget = require(script.Parent.base.widget)
local components = {
widget = widget... | 1,134 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/menu/pageBase.luau | luau | .luau | -- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
type props = {
Name: string,
PrimaryColor: Fusion.UsedAs<"Primary" | "Alterna... | 731 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/menu/scriptInjectionRequired.luau | luau | .luau | -- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent
local plugin = root:FindFirstAncestorWhichIsA("Plugin")
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
type props = {
CurrentP... | 1,101 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/menu/settings.luau | luau | .luau | -- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
local settings = require(root.Plugin.settings)
local pageBase = require(script.P... | 945 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/menu/vehicle.luau | luau | .luau | -- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local types = require(root.Plugin.types)
local vehicle = require(root.Plugin.vehicle)
local assets = require(root.Plugin.assets)
local pageBase = require(script.Parent.page... | 868 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/popup.luau | luau | .luau | -- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
type action = {
text: Fusion.UsedAs<string>,
type: "standard" | "primary" | "danger",... | 2,145 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/viewport/billboards.luau | luau | .luau | local root = script.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local assets = require(root.Plugin.assets)
local types = require(root.Plugin.types)
return function(
scope: types.Scope,
props: {
attachments: Fusion.UsedAs<{ Attachment ... | 833 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/viewport/configuring.luau | luau | .luau | --#selene: allow(shadowing)
local root = script.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local types = require(root.Plugin.types)
local vehicle = require(root.Plugin.vehicle)
local log = require(root.Plugin.log)
return function(
scope... | 2,616 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/viewport/init.luau | luau | .luau | --#selene: allow(shadowing)
-- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent.Parent
local plugin = root:FindFirstAncestorWhichIsA("Plugin")
local mouse = plugin:GetMouse()
local ChangeHistoryService = game:GetService("ChangeHistoryService")
local Fusion = require(root.Packages.fus... | 3,211 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/Components/viewport/main.luau | luau | .luau | --#selene: allow(shadowing)
local root = script.Parent.Parent.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local assets = require(root.Plugin.assets)
local types = require(root.Plugin.types)
local vehicle = require(root.Plugin.vehicle)
local log = requir... | 3,448 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/assets.luau | luau | .luau | -- Redon Tech Emergency Vehicle Creator, MIT License
local log = require(script.Parent.log)
local assets = {
images = {
home = {
settings = "rbxassetid://135865113316058",
help = "rbxassetid://123835351185186",
credits = "rbxassetid://95086716451211",
},
credits = {
parker = "rbxassetid://8796999435... | 917 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/chassisHandler.luau | luau | .luau | -- Redon Tech Emergency Vehicle Creator, MIT License
local log = require(script.Parent.log)
local types = require(script.Parent.types)
local vehicle = require(script.Parent.vehicle)
local ChangeHistoryService = game:GetService("ChangeHistoryService")
local LuaEncode = require(script.Parent.Parent.Packages.LuaEncode)
lo... | 5,687 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/customExport.luau | luau | .luau | -- Redon Tech Emergency Vehicle Creator, MIT License
local log = require(script.Parent.log)
local types = require(script.Parent.types)
local ChangeHistoryService = game:GetService("ChangeHistoryService")
local Fusion = require(script.Parent.Parent.Packages.fusion)
-- TEMPLATES
local scriptTemplate = [[
--\[\[
Emergen... | 1,075 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/handler/EVHEvent/configuration/functions.luau | luau | .luau | -- Redon Tech Emergency Vehicle Creator, MIT License
--DO NOT MODIFY BELOW
--SUPPORT WILL BE VOIDED IF MODIFIED
return {
{
activations = {
{
mode = "Cycle",
type = "Standard",
pattern = 0,
keybinds = {
Enum.KeyCode.J,
Enum.KeyCode.DPadLeft,
},
},
},
patterns = {
{
fad... | 243 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/handler/EVHEvent/configuration/lightSettings.luau | luau | .luau | -- Redon Tech Emergency Vehicle Creator, MIT License
--DO NOT MODIFY BELOW
--SUPPORT WILL BE VOIDED IF MODIFIED
return {
version = 0.092,
colors = {
{
name = "Blue",
partColor = Color3.fromRGB(110, 153, 202),
lightColor = Color3.fromRGB(0, 0, 255),
lightoColor = Color3.fromRGB(47, 71, 255),
},
{
... | 484 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/handler/EVHEvent/configuration/sirens.luau | luau | .luau | -- Redon Tech Emergency Vehicle Creator, MIT License
--DO NOT MODIFY BELOW
--SUPPORT WILL BE VOIDED IF MODIFIED
return {
{
type = "Siren",
name = "Wail",
keybinds = {
Enum.KeyCode.R,
Enum.KeyCode.Unknown,
},
behavoir = "Overrides Other Sounds",
modifiers = {},
},
{
type = "Siren",
name = "Yel... | 249 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/handler/EVHEvent/loader/EVHClient.server.luau | luau | .luau | -- Redon Tech Emergency Vehicle Creator, MIT License
local version = script.Parent:WaitForChild("version").Value
require(script.Parent:WaitForChild("modules"):WaitForChild("main"))(version)
| 44 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/handler/EVHEvent/loader/init.server.luau | luau | .luau | -- Redon Tech Emergency Vehicle Creator, MIT License
-- version format: minor.{if rc then 1 else 0}patch
local types = require(script.modules.types)
local configuration = script.Parent.configuration
local lightSettingsModule = configuration:WaitForChild("lightSettings")
local lightSettings = (require :: any)(lightSett... | 5,535 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/handler/EVHEvent/loader/modules/els/faders.luau | luau | .luau | --!strict
--!optimize 2
--!native
-- Redon Tech Emergency Vehicle Creator, MIT License
local types = require(script.Parent.Parent.types)
local TweenService = game:GetService("TweenService")
type faders = {
returnToZero: { { vehicle: Instance, section: types.faderSection } },
setLightTransparency: (
vehicle: Insta... | 862 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/handler/EVHEvent/loader/modules/els/flashers.luau | luau | .luau | --!strict
--!optimize 2
--!native
-- Redon Tech Emergency Vehicle Creator, MIT License
local types = require(script.Parent.Parent.types)
type flashers = {
flash: (vehicle: Instance, functionId: number, lightName: string, color: types.elsColor) -> (),
processPattern: (pattern: types.pattern) -> (),
}
local flashers ... | 208 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/handler/EVHEvent/loader/modules/els/rotators.luau | luau | .luau | --!strict
--!optimize 2
--!native
-- Redon Tech Emergency Vehicle Creator, MIT License
local types = require(script.Parent.Parent.types)
type rotators = {
returnToZero: { { vehicle: Instance, section: types.rotatorSection } },
flash: (vehicle: Instance, functionId: number, lightName: string, color: types.elsColor) ... | 899 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/handler/EVHEvent/loader/modules/handshake.luau | luau | .luau | --!strict
--#selene: allow(global_usage)
-- Redon Tech Emergency Vehicle Creator, MIT License
--[=[
Ensures only one EVH is running at a time
and that the running EVH is the latest version
Edgecase: A newer verstion is inserted after handshake is done.
To handle this, we will check allow that newer version to ... | 251 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/handler/EVHEvent/loader/modules/initializeVehicle.luau | luau | .luau | --!strict
--!optimize 2
-- Redon Tech Emergency Vehicle Creator, MIT License
local types = require(script.Parent:WaitForChild("types"))
--- Initializes a vehicle by loading its configuration and lights.
return function(vehicle: Instance): types.vehicle?
if vehicle:IsA("Model") == false then
return
end
local EVH... | 1,085 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/handler/EVHEvent/loader/modules/main.luau | luau | .luau | --!strict
--!optimize 2
--!native
--#selene: allow(global_usage)
-- Redon Tech Emergency Vehicle Creator, MIT License
local CollectionService = game:GetService("CollectionService")
local RunService = game:GetService("RunService")
local handshake = require(script.Parent:WaitForChild("handshake"))
local initializeVehic... | 5,892 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/handler/EVHEvent/loader/modules/types.luau | luau | .luau | --!strict
export type vehicle = {
configuration: chassisConfiguration,
lights: lights,
lightConnectedGroups: { [string]: { string } }, -- light: { group }
connections: { RBXScriptConnection },
uuid: string,
}
export type lights = {
[string]: {
isLightGroup: boolean,
runningFunction: number?,
possibleFunct... | 994 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/handler/init.client.luau | luau | .luau | --[[
_____ _ _______ _
| __ \ | | |__ __| | |
| |__) | ___ __| | ___ _ __ | | ___ ___ | |__
| _ / / _ \ / _ | / _ \ | _ \ | | / _ \ / __| | _ \
| | \ \ | __/ | (_| | | ... | 1,126 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/init.server.luau | luau | .luau | --# selene: allow(global_usage)
--[[
_____ _ _______ _
| __ \ | | |__ __| | |
| |__) | ___ __| | ___ _ __ | | ___ ___ | |__
| _ / / _ \ / _ | / _ \ | _ \ | | / _ \ / __| | ... | 1,615 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/log.luau | luau | .luau | -- Redon Tech Emergency Vehicle Creator, MIT License
local log = {
level = {
info = 1,
warn = 2,
error = 3,
-- 4 and above is developer only
debug = 4,
},
format = {
info = "[EVC INFO]:",
warn = "[EVC WARNING]:",
error = "[EVC ERROR]:",
debug = "[EVC DEBUG]:",
},
verbosity = 1,
}
--- Gets the lo... | 359 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/settings.luau | luau | .luau | -- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent
local plugin = root:FindFirstAncestorWhichIsA("Plugin") :: Plugin
local types = require(script.Parent.types)
local log = require(script.Parent.log)
local Fusion = require(root.Packages.fusion)
type settings = {
scope: types.Scope,... | 767 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/types.luau | luau | .luau | --# selene: allow(unused_variable)
-- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent
local Fusion = require(root.Packages.fusion)
local RedonUI = require(root.Packages["redon-ui"])
local utils = require(script.Parent.utils)
-- Code Types
export type Scope = Fusion.Scope<typeof(F... | 1,585 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/utils.luau | luau | .luau | -- Redon Tech Emergency Vehicle Creator, MIT License
local root = script.Parent.Parent
local RedonUI = require(root.Packages["redon-ui"])
local utils = {}
--- Deep copies a table, including nested tables.
function utils.deepCopy<T>(inputTable: T): T
if typeof(inputTable) ~= "table" then
return inputTable
end
l... | 880 |
Redon-Tech/Emergency-Vehicle-Creator | Redon-Tech-Emergency-Vehicle-Creator-7b8e227/src/vehicle.luau | luau | .luau | -- Redon Tech Emergency Vehicle Creator, MIT License
local ChangeHistoryService = game:GetService("ChangeHistoryService")
local assets = require(script.Parent.assets)
local log = require(script.Parent.log)
export type option = {
type: "select" | "single",
default: string | boolean,
canSelectMultiple: boolean?,
ca... | 4,871 |
ToriumSlurs/Jolt | ToriumSlurs-Jolt-8e24689/src/Jolt/Bridge.luau | luau | .luau | --!strict
--!native
--!optimize 2
local RunService = game:GetService("RunService")
local Players = game:GetService("Players")
local Buffers = require("./Utils/Buffers")
local Remotes = require("./Utils/Remotes")
local Bridge = {}
local IS_SERVER = RunService:IsServer()
local FRAME_TIME = 1 / 60
type WriterMap = { [... | 1,150 |
ToriumSlurs/Jolt | ToriumSlurs-Jolt-8e24689/src/Jolt/Utils/Buffers.luau | luau | .luau | --!strict
--!native
--!optimize 2
local Buffers = {}
local m_floor = math.floor
local m_round = math.round
local b_create = buffer.create
local b_len = buffer.len
local b_copy = buffer.copy
local b_w_u8 = buffer.writeu8
local b_r_u8 = buffer.readu8
local b_w_u16 = buffer.writeu16
local b_r_u16 = buffer.readu16
local b... | 6,027 |
ToriumSlurs/Jolt | ToriumSlurs-Jolt-8e24689/src/Jolt/Utils/Remotes.luau | luau | .luau | --!strict
local Remotes = {}
local instance_new = Instance.new
local RELIABLE_NAME = "Jolt_Reliable"
local UNRELIABLE_NAME = "Jolt_Unreliable"
export type RemoteGroup = {
Reliable: RemoteEvent,
Unreliable: UnreliableRemoteEvent,
}
local _cachedGroup: RemoteGroup? = nil
function Remotes.Get(): RemoteGroup
if _ca... | 372 |
ToriumSlurs/Jolt | ToriumSlurs-Jolt-8e24689/src/init.luau | luau | .luau | --!strict
local Jolt = {}
local RunService = game:GetService("RunService")
local IS_SERVER = RunService:IsServer()
local IS_CLIENT = RunService:IsClient()
local Client = require("@self/Client")
local Server = require("@self/Server")
export type Client<Args... = (...any), Out... = (...any)> = Client.Client<Args...,... | 310 |
unityjaeger/reel | unityjaeger-reel-e01ca4a/src/animation.luau | luau | .luau | --!strict
const rig_load = require("./rig")
const easing_map = require("./easing_map")
export type PoseKey = {
read time: number,
read position: vector,
read quat_vector: vector,
read quat_scalar: number,
read easing_function: (number) -> number,
}
export type Channel = {
read count: number,
read key_start:... | 2,230 |
unityjaeger/reel | unityjaeger-reel-e01ca4a/src/easing_map.luau | luau | .luau | --!strict
const easings = require("./easings")
const IN = Enum.PoseEasingDirection.In
const OUT = Enum.PoseEasingDirection.Out
const IN_OUT = Enum.PoseEasingDirection.InOut
const LINEAR = Enum.PoseEasingStyle.Linear
const CUBIC = Enum.PoseEasingStyle.Cubic
const CUBICV2 = Enum.PoseEasingStyle.CubicV2
const ELASTIC =... | 416 |
unityjaeger/reel | unityjaeger-reel-e01ca4a/src/easings.luau | luau | .luau | --!strict
--!optimize 2
--!native
const function linear(t: number): number
return t
end
const function in_cubicv2(t: number): number
return t * t * t
end
const function out_cubicv2(t: number): number
local t1 = t - 1
return t1 * t1 * t1 + 1
end
const function in_out_cubicv2(t: number): number
return if t < .5 ... | 875 |
unityjaeger/reel | unityjaeger-reel-e01ca4a/src/init.luau | luau | .luau | const animation = require("@self/animation")
const rig = require("@self/rig")
const solver = require("@self/solver")
const easings = require("@self/easings")
const easing_map = require("@self/easing_map")
return {
animation = animation,
rig = rig,
solver = solver,
easings = easings,
easing_map = easing_map
} | 80 |
unityjaeger/reel | unityjaeger-reel-e01ca4a/src/rig.luau | luau | .luau | --!strict
export type RigDesc = {
read count: number,
read names: { string },
read parent: { number },
read is_bone: { boolean },
read name_to_index: { [string]: number },
read c0: { CFrame },
read c1_inv: { CFrame },
read bind: { CFrame },
}
export type BlendScratch = {
weight: { number },
position: { ... | 2,413 |
unityjaeger/reel | unityjaeger-reel-e01ca4a/src/solver.luau | luau | .luau | --!strict
--!optimize 2
const rig_load = require("./rig")
const animation_load = require("./animation")
type Channel = animation_load.Channel
type AnimationAsset = animation_load.AnimationAsset
type AnimationBinding = animation_load.AnimationBinding
type BlendScratch = rig_load.BlendScratch
type Rig = rig_load.Rig
c... | 3,994 |
unityjaeger/reel | unityjaeger-reel-e01ca4a/tests/fixtures.luau | luau | .luau | --!strict
type PoseOptions = {
weight: number?,
easing_style: EnumItem?,
easing_direction: EnumItem?,
subposes: { Pose }?,
}
type SequenceOptions = {
looped: boolean?,
priority: EnumItem?,
}
export type AssetKey = {
time: number,
transform: CFrame,
easing: ((number) -> number)?,
}
export type AssetChannel ... | 2,365 |
unityjaeger/reel | unityjaeger-reel-e01ca4a/tests/framework.luau | luau | .luau | --!strict
type TestCallback = () -> ()
type TestCase = {
name: string,
callback: TestCallback,
}
local tests: { TestCase } = {}
local names: { [string]: boolean } = {}
local function describe(value: any): string
if typeof(value) == "string" then
return string.format("%q", value)
end
return tostring(value)
e... | 1,103 |
unityjaeger/reel | unityjaeger-reel-e01ca4a/tests/init.luau | luau | .luau | --!strict
local reel = require("@game/ReplicatedStorage/reel")
local framework = require("@self/framework")
local registrars: { (any, any) -> () } = {
require("@self/specs/easings_spec"),
require("@self/specs/animation_load_spec"),
require("@self/specs/rig_load_spec"),
require("@self/specs/solver_spec"),
requir... | 143 |
unityjaeger/reel | unityjaeger-reel-e01ca4a/tests/specs/animation_load_spec.luau | luau | .luau | --!strict
local fixtures = require("../fixtures")
local function add_traceback(message: any): string
return debug.traceback(tostring(message), 2)
end
local function with_destroy(instance: Instance, callback: () -> ())
local ok, message = xpcall(function(): string
callback()
return ""
end, add_traceback)
fi... | 3,591 |
unityjaeger/reel | unityjaeger-reel-e01ca4a/tests/specs/delta_spec.luau | luau | .luau | --!strict
local fixtures = require("../fixtures")
local function one_target_desc()
return fixtures.desc({
{ name = "Joint" },
})
end
local function two_target_desc()
return fixtures.desc({
{ name = "Upper" },
{ name = "Lower", parent = 1 },
})
end
local function one_channel_binding()
return fixtures.bind... | 2,659 |
unityjaeger/reel | unityjaeger-reel-e01ca4a/tests/specs/easings_spec.luau | luau | .luau | --!strict
return function(t: any, reel: any)
local test = t.test
local easings = reel.easings
local easing_map = reel.easing_map
test("easings preserve the interpolation endpoints", function()
local functions = {
easings.linear,
easings.in_cubic,
easings.out_cubic,
easings.in_out_cubic,
easings.i... | 1,459 |
unityjaeger/reel | unityjaeger-reel-e01ca4a/tests/specs/solver_spec.luau | luau | .luau | --!strict
local fixtures = require("../fixtures")
local function one_target_desc()
return fixtures.desc({
{ name = "Joint" },
})
end
local function two_target_desc()
return fixtures.desc({
{ name = "Upper" },
{ name = "Lower", parent = 1 },
})
end
local function one_channel_binding()
return fixtures.bind... | 4,773 |
unityjaeger/reel | unityjaeger-reel-e01ca4a/tests/specs/workflow_spec.luau | luau | .luau | --!strict
local fixtures = require("../fixtures")
local function add_traceback(message: any): string
return debug.traceback(tostring(message), 2)
end
local function destroy_all(instances: { Instance }, callback: () -> ())
local ok, message = xpcall(function(): string
callback()
return ""
end, add_traceback)
... | 1,107 |
unityjaeger/reel | unityjaeger-reel-e01ca4a/tests/specs/world_transforms_spec.luau | luau | .luau | --!strict
local fixtures = require("../fixtures")
return function(t: any, reel: any)
local test = t.test
local solver = reel.solver
test("world reconstruction uses the Motor6D C0/local/inverse-C1 formula", function()
local c0 = CFrame.new(1, 2, 3) * CFrame.Angles(0.1, 0.2, 0.3)
local c1_inv = (CFrame.new(-2,... | 2,220 |
GamebeastGG/RobloxSDK | GamebeastGG-RobloxSDK-f53296a/src/Infra/Client/Modules/ClientConfigs.lua | luau | .lua | --[[
The Gamebeast SDK is Copyright © 2023 Gamebeast, Inc. to present.
All rights reserved.
ClientConfigs.lua
Description:
Internal module for managing client-side configuration data.
--]]
--= Root =--
local ClientConfigs = { }
--= Roblox Services =--
local ReplicatedStorage = g... | 909 |
GamebeastGG/RobloxSDK | GamebeastGG-RobloxSDK-f53296a/src/Infra/Client/Modules/ClientFriendHandler.lua | luau | .lua | --[[
The Gamebeast SDK is Copyright © 2023 Gamebeast, Inc. to present.
All rights reserved.
ClientFriendHandler.lua
Description:
No description provided.
--]]
--= Root =--
local ClientFriendHandler = { }
--= Roblox Services =--
local Players = game:GetService("Players")
--= D... | 594 |
GamebeastGG/RobloxSDK | GamebeastGG-RobloxSDK-f53296a/src/Infra/Client/Modules/ClientInfoHandler.lua | luau | .lua | --[[
The Gamebeast SDK is Copyright © 2023 Gamebeast, Inc. to present.
All rights reserved.
ClientInfoHandler.lua
Description:
Module for managing reported client information and product pricing.
--]]
--= Root =--
local ClientInfoHandler = {
Priority = 1000
}
--= Roblox Serv... | 698 |
GamebeastGG/RobloxSDK | GamebeastGG-RobloxSDK-f53296a/src/Infra/Client/Modules/ClientInputHandler.lua | luau | .lua | --[[
The Gamebeast SDK is Copyright © 2023 Gamebeast, Inc. to present.
All rights reserved.
ClientInputHandler.luau
Description:
Tracks the current input type and device type of the client.
]]
--= Root =--
local ClientInputHandler = { }
--= Roblox Services =--
local UserInputService = game:Get... | 1,095 |
GamebeastGG/RobloxSDK | GamebeastGG-RobloxSDK-f53296a/src/Infra/Client/Modules/ClientMetricExporter.lua | luau | .lua | --[[
The Gamebeast SDK is Copyright © 2023 Gamebeast, Inc. to present.
All rights reserved.
ClientMetricExporter.luau
Description:
Tracks various metrics on a timer and exports them to the server.
]]
--= Root =--
local ClientMetricExporter = {}
--= Roblox Services =--
local Players = game:GetSe... | 358 |
GamebeastGG/RobloxSDK | GamebeastGG-RobloxSDK-f53296a/src/Infra/Client/Modules/ClientSessionPreservation.lua | luau | .lua | --[[
The Gamebeast SDK is Copyright © 2023 Gamebeast, Inc. to present.
All rights reserved.
ClientSessionPreservation.luau
Description:
]]
--= Root =--
local ClientSessionPreservation = { }
--= Roblox Services =--
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local TeleportSer... | 315 |
GamebeastGG/RobloxSDK | GamebeastGG-RobloxSDK-f53296a/src/Infra/Client/Public/Configs.lua | luau | .lua | --[[
The Gamebeast SDK is Copyright © 2023 Gamebeast, Inc. to present.
All rights reserved.
Configs.lua
Description:
Public API module for accessing client-specific configuration data.
--]]
--= Root =--
local Configs = { }
--= Roblox Services =--
--= Dependencies =--
local Cli... | 563 |
GamebeastGG/RobloxSDK | GamebeastGG-RobloxSDK-f53296a/src/Infra/MetaData.lua | luau | .lua | -- Contains version information for the SDK
return {
version = "v0.10.1"
} | 22 |
GamebeastGG/RobloxSDK | GamebeastGG-RobloxSDK-f53296a/src/Infra/Server/Modules/DatastoreBackup.lua | luau | .lua | --[[
The Gamebeast SDK is Copyright © 2023 Gamebeast, Inc. to present.
All rights reserved.
DatastoreBackup.lua
Description:
No description provided.
--]]
--= Root =--
local DatastoreBackup = { }
--= Roblox Services =--
local DataStoreService = game:GetService("DataStoreService"... | 446 |
GamebeastGG/RobloxSDK | GamebeastGG-RobloxSDK-f53296a/src/Infra/Server/Modules/EventsManager.luau | luau | .luau | --[[
The Gamebeast SDK is Copyright © 2023 Gamebeast, Inc. to present.
All rights reserved.
EventsManager.luau
Description:
Handles the management of defined events, including starting and ending events based on time.
--]]
--= Root =--
local EventsManager = { }
--= Roblox Services =--
local ReplicatedStor... | 682 |
GamebeastGG/RobloxSDK | GamebeastGG-RobloxSDK-f53296a/src/Infra/Server/Modules/InternalCohorts.luau | luau | .luau | --[[
The Gamebeast SDK is Copyright © 2023 Gamebeast, Inc. to present.
All rights reserved.
InternalCohorts.luau
Description:
Internal module for cohort management.
--]]
--= Root =--
local InternalCohorts = { }
--= Roblox Services =--
local ReplicatedStorage = game:GetService("R... | 357 |
GamebeastGG/RobloxSDK | GamebeastGG-RobloxSDK-f53296a/src/Infra/Server/Modules/InternalConfigs.luau | luau | .luau | --[[
The Gamebeast SDK is Copyright © 2023 Gamebeast, Inc. to present.
All rights reserved.
InternalConfigs.luau
Description:
Internal module for managing configuration data across the server and clients.
--]]
--= Root =--
local InternalConfigs = { }
--= Roblox Services =--
local Players = game:GetService... | 3,849 |
GamebeastGG/RobloxSDK | GamebeastGG-RobloxSDK-f53296a/src/Infra/Server/Modules/InternalMarkers/PurchaseAnalytics.luau | luau | .luau | --[[
The Gamebeast SDK is Copyright © 2023 Gamebeast, Inc. to present.
All rights reserved.
PurchaseAnalytics.luau
Description:
Handles tracking purchases made by players in the server.
--]]
--= Root =--
local PurchaseAnalytics = { }
--= Roblox Services =--
local MarketplaceService = game:GetService("Mar... | 1,695 |
GamebeastGG/RobloxSDK | GamebeastGG-RobloxSDK-f53296a/src/Infra/Server/Modules/InternalMarkers/SentimentCapture.luau | luau | .luau | --[[
The Gamebeast SDK is Copyright © 2023 Gamebeast, Inc. to present.
All rights reserved.
SentimentCapture.luau
Description:
Captures player chat messages and sends them as markers for sentiment analysis.
Messages are filtered for compliance before being sent.
--]]
--= Root =--
local SentimentCapture ... | 377 |
GamebeastGG/RobloxSDK | GamebeastGG-RobloxSDK-f53296a/src/Infra/Server/Modules/InternalMarkers/SocialHandler.lua | luau | .lua | --[[
The Gamebeast SDK is Copyright © 2023 Gamebeast, Inc. to present.
All rights reserved.
SocialHandler.luau
Description:
Handles tracking social interactions between players in the server.
--]]
--= Root =--
local SocialHandler = { }
--= Roblox Services =--
local Players = game:GetService("Player... | 618 |
GamebeastGG/RobloxSDK | GamebeastGG-RobloxSDK-f53296a/src/Infra/Server/Modules/LaunchDataResolver.lua | luau | .lua | --[[
The Gamebeast SDK is Copyright © 2023 Gamebeast, Inc. to present.
All rights reserved.
LaunchDataResolver.lua
Description:
No description provided.
--]]
--= Root =--
local LaunchDataResolver = { }
--= Roblox Services =--
local HttpService = game:GetService("HttpService")
l... | 629 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.