repo
stringclasses
302 values
file_path
stringlengths
18
241
language
stringclasses
2 values
file_type
stringclasses
4 values
code
stringlengths
76
697k
tokens
int64
10
271k
howmanysmall/modern-roblox-ts-template
howmanysmall-modern-roblox-ts-template-8515fd5/src/shared/modules/utilities/is-truly-studio.ts
roblox-ts
.ts
/// <reference types="@rbxts/types/plugin" /> //!optimize 2 import { RunService } from "@rbxts/services"; function getNetworkClient(): NetworkClient | undefined { return game.FindService("NetworkClient") as NetworkClient | undefined; } function getClientReplicator(networkClient: NetworkClient): ClientReplicator | un...
212
howmanysmall/modern-roblox-ts-template
howmanysmall-modern-roblox-ts-template-8515fd5/src/shared/modules/utilities/memoize.ts
roblox-ts
.ts
//!native //!optimize 2 import { LFUCache, LRUCache } from "@rbxts/data-structures"; export function memoize<T, U>(memoizeFunction: (index: T) => U): (index: T) => U { const cache = new Map<T, U>(); function memoized(index: T): U { const cached = cache.get(index); if (cached !== undefined) return cached; co...
337
howmanysmall/modern-roblox-ts-template
howmanysmall-modern-roblox-ts-template-8515fd5/src/shared/modules/utilities/react/bindings.ts
roblox-ts
.ts
//!optimize 2 import { stableLerp } from "../primitives/number-utilities"; import { type Binding, createBinding, joinBindings } from "@rbxts/react"; import type { BindingOrValue } from "types/react-types"; export interface BindingApi<T> { readonly getValue: () => T; readonly subscribe: (callback: (newValue: T) => v...
1,290
howmanysmall/modern-roblox-ts-template
howmanysmall-modern-roblox-ts-template-8515fd5/src/shared/shared-stories.storybook.ts
roblox-ts
.ts
//!optimize 2 import type { Storybook } from "@rbxts/ui-labs"; const SharedStorybook: Storybook = { groupRoots: true, name: "Shared", storyRoots: [script.Parent!.FindFirstChild("__stories__")!], }; export = SharedStorybook;
64
AdamMillsy/Inputter
AdamMillsy-Inputter-92d6a2c/.github/workflows/scripts/build-rbxm.luau
luau
.luau
local fs = require("@lune/fs") local roblox = require("@lune/roblox") local placeFile = fs.readFile("place.rbxl") local gameFile = roblox.deserializePlace(placeFile) local Packages = gameFile.ReplicatedStorage.Packages local packageModel = roblox.serializeModel({Packages}) fs.writeFile("Inputter.rbxm", packageModel)...
80
AdamMillsy/Inputter
AdamMillsy-Inputter-92d6a2c/src/Binding.luau
luau
.luau
local UserInputService = game:GetService("UserInputService") local Signal = require(script.Parent.Parent.Signal) local Types = require(script.Parent.Types) type Binding = Types.Binding type BindingInfo = Types.BindingInfo local Binding = {} Binding.__index = Binding local function matchesKeyboardInput(input: any, u...
708
AdamMillsy/Inputter
AdamMillsy-Inputter-92d6a2c/src/Serializer.luau
luau
.luau
local TableUtil = require(script.Parent.Parent.TableUtil) local HttpService = game:GetService("HttpService") local Serializer = {} local function serializeEnums(tbl: any): boolean if type(tbl) ~= "table" then return false end for key, value in pairs(tbl) do if type(value) == "table" then if not serializeEnu...
373
AdamMillsy/Inputter
AdamMillsy-Inputter-92d6a2c/src/Triggers/AbstractTrigger.luau
luau
.luau
--[=[ @class AbstractTrigger @ignore A base class for triggers. This should not be used directly, but rather as a base class for other input triggers. ]=] local AbstractTrigger = {} AbstractTrigger.__index = AbstractTrigger local Signal = require(script.Parent.Parent.Parent.Signal) local TableUtil = requir...
422
AdamMillsy/Inputter
AdamMillsy-Inputter-92d6a2c/src/Triggers/HOLD.luau
luau
.luau
--[[ A form of input handler that triggers when the input is held for a specified duration. Author: Adam Mills ]] local AbstractTrigger = require(script.Parent.AbstractTrigger) local Types = require(script.Parent.Parent.Types) local Binding = require(script.Parent.Parent.Binding) type HOLD = Types.HOLD type Bi...
654
AdamMillsy/Inputter
AdamMillsy-Inputter-92d6a2c/src/Triggers/MULTIPLE_PRESS.luau
luau
.luau
local AbstractTrigger = require(script.Parent.AbstractTrigger) local Types = require(script.Parent.Parent.Types) local Binding = require(script.Parent.Parent.Binding) type MULTIPLE_PRESS = Types.MULTIPLE_PRESS type BindingInfo = Types.BindingInfo type Trigger = Types.Trigger local MULTIPLE_PRESS = setmetatable({}, Ab...
636
AdamMillsy/Inputter
AdamMillsy-Inputter-92d6a2c/src/Triggers/PRESS.luau
luau
.luau
--[[ Most basic form of input handler. Triggers when the input is pressed. Author: Adam Mills ]] local AbstractTrigger = require(script.Parent.AbstractTrigger) local Types = require(script.Parent.Parent.Types) local Binding = require(script.Parent.Parent.Binding) type PRESS = Types.PRESS type BindingInfo = Typ...
392
AdamMillsy/Inputter
AdamMillsy-Inputter-92d6a2c/src/Triggers/SHORT_PRESS.luau
luau
.luau
--[[ Input handler that triggers when the input is pressed and released within a given time frame. Author: Adam Mills ]] local AbstractTrigger = require(script.Parent.AbstractTrigger) local Types = require(script.Parent.Parent.Types) local Binding = require(script.Parent.Parent.Binding) type SHORT_PRESS = Type...
598
AdamMillsy/Inputter
AdamMillsy-Inputter-92d6a2c/src/Types.luau
luau
.luau
local Signal = require(script.Parent.Parent.Signal) export type Signal<T...> = Signal.Signal<T...> --[=[ @class Inputter The inputter class represents each individual action a player can make. It should be used to abstract away from the different input methods ROBLOX provides. ]=] export type Inputter = { Name: st...
672
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/CamMaker.plugin.luau
luau
.luau
if not isfolder("CAMS") then makefolder("CAMS") end local Plugin = { PluginName = "Cam Maker v1.2", PluginDescription = "CamMaker but better!", Commands = { makecam = { ListName = "makecam / mc [Name]", Description = "Creates a camera to view.", Aliases = { "mc" }, Function = function(args, speaker) ...
784
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/FakeChat.plugin.luau
luau
.luau
local Plugin = { ["PluginName"] = "Fake Chat", ["PluginDescription"] = "Be able to chat as anyone.", ["Commands"] = { ["fakechat"] = { ["ListName"] = "fakechat / fchat [plr] [msg]", ["Description"] = "Chat an string as the specified player.", ["Aliases"] = { "fchat" }, ["Function"] = function(args, spe...
189
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/FreeFall.plugin.luau
luau
.luau
local Players = game:GetService("Players") return { ["PluginName"] = "Free Fall", ["PluginDescription"] = "Scripted by NoobSploit#0001", ["Commands"] = { ["freefall"] = { ["ListName"] = "freefall [height]", ["Description"] = "FreeFalled", ["Aliases"] = {}, ["Function"] = function(args, speaker) if ...
312
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/Freecam2.plugin.luau
luau
.luau
local allowspeedmove = true wait(1) local c = workspace.CurrentCamera local player = game.Players.LocalPlayer local userInput = game:GetService("UserInputService") local rs = game:GetService("RunService") local starterPlayer = game:GetService("StarterPlayer") local selected = false local speed = 60 local lastUpdate =...
941
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/GotoFolder.plugin.luau
luau
.luau
return { ["PluginName"] = "goto folder", ["PluginDescription"] = "Go to a folder", ["Commands"] = { ["gotofolder"] = { ["ListName"] = "gotofolder", ["Description"] = "Made By D7M", ["Aliases"] = {}, ["Function"] = function(args, speaker) for i, v in pairs(workspace:GetDescendants()) do if v.Na...
172
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/Keybinds.plugin.luau
luau
.luau
if not isfile("keybinds.keybinds") then keybinds = {} else keybinds = game:GetService("HttpService"):JSONDecode(readfile("keybinds.keybinds")) end local event event = game:GetService("Players").LocalPlayer:GetMouse().KeyDown:Connect(function(input) for i, v in pairs(keybinds) do if input:lower() == v.KEY and v.TO...
1,076
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/MinionMeme.plugin.luau
luau
.luau
return { ["PluginName"] = "Minion Meme", ["PluginDescription"] = "this is funny (Empire#4946)", ["Commands"] = { ["minionmeme"] = { ["ListName"] = "minionmeme / minionm / minm", ["Description"] = "Opens up a GUI that is minion memes", ["Aliases"] = { "minionm", "minm" }, ["Function"] = function(args, s...
1,439
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/Orbit.plugin.luau
luau
.luau
local PluginAPI = {} function PluginAPI:CreatePlugin(name, description) local Functions = {} local Plugin = { ["PluginName"] = name, ["PluginDescription"] = description, ["Commands"] = {}, } function Functions:AddCommand(Name, ListName, Description, Aliases, Callback) Plugin["Commands"][Name] = { ["ListN...
1,100
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/SaveLoadTools.plugin.luau
luau
.luau
return { ["PluginName"] = "Save/Load Tools", ["PluginDescription"] = "Scripted by Empire#4946!", ["Commands"] = { ["savetools"] = { ["ListName"] = "savetools / savet", ["Description"] = "Saves Tools and puts them into your Player", ["Aliases"] = { "savet" }, ["Function"] = function(args, speaker) f...
257
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/ShaderMod.plugin.luau
luau
.luau
-- Instances -------------------------------------- local Blur = Instance.new("BlurEffect") Blur.Name = "Blur [Shader Mod]" Blur.Parent = game.Lighting Blur.Size = 4 Blur.Enabled = false local DepthOfField = Instance.new("DepthOfFieldEffect") DepthOfField.Name = "Depth Of Field [Shader Mod]" DepthOfField.Parent = gam...
330
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/ShiftToSprint.plugin.luau
luau
.luau
local lplr = game:GetService("Players").LocalPlayer normalSpeed = lplr.Character.Humanoid.WalkSpeed speed = 30 local Plugin = { ["PluginName"] = "Shift To Sprint", ["PluginDescription"] = "A plugin to be able to shift to sprint at the speed you want", ["Commands"] = { ["shifttosprint"] = { ["ListName"] = "shi...
447
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/antiflingunfling.plugin.luau
luau
.luau
return { ["PluginName"] = "antiflingunfling", ["PluginDescription"] = "Stops you from getting flinged from the unfling cmd", ["Commands"] = { ["antiflingunfling"] = { ["ListName"] = "antiflingunfling / afu", ["Description"] = "Stops you from getting flinged from the unfling cmd", ["Aliases"] = { "afu" }, ...
154
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/antikill.plugin.luau
luau
.luau
local AntiKill = false local RunService = game:GetService("RunService") local Me = game:GetService("Players").LocalPlayer local Char = Me.Character local BPack = Me.Backpack local Humanoid = Char:FindFirstChildWhichIsA("Humanoid") local ToolTable = BPack:GetChildren() RunService.Stepped:Connect(function() local Tool =...
736
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/beyblade.plugin.luau
luau
.luau
local Plugin = { ["PluginName"] = "Beyblade", ["PluginDescription"] = "Turns you into a beyblade.", ["Commands"] = { ["beyblade"] = { ["ListName"] = "beyblade", ["Description"] = "Makes you a beyblade!", ["Aliases"] = {}, ["Function"] = function(args, speaker) execCmd("walkspeed 100", speaker) ...
120
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/bighead.plugin.luau
luau
.luau
local Plugin = { ["PluginName"] = "Big Head", ["PluginDescription"] = "May you do a ton of trolling", ["Commands"] = { ["bighead"] = { ["ListName"] = "bighead / biggest / bigger / big", ["Description"] = "Makes you head big", ["Aliases"] = { "biggest", "bigger", "big" }, ["Function"] = function(args, s...
243
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/blanksay.plugin.luau
luau
.luau
local Plugin = { ["PluginName"] = "Blank Say", ["PluginDescription"] = "Send blank messages.", ["Commands"] = { ["blanksay"] = { ["ListName"] = "blanksay / blankchat", ["Description"] = "Send a blank message in chat", ["Aliases"] = { "blankchat" }, ["Function"] = function(args, speaker) game:GetSer...
133
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/blockself.plugin.luau
luau
.luau
return { ["PluginName"] = "BlockSelf", ["PluginDescription"] = "Makes you blocky and fat.", ["Commands"] = { ["blockself"] = { ["ListName"] = "blockself [delay]", ["Description"] = "Makes you blocky and fat.", ["Aliases"] = {}, ["Function"] = function(args, speaker) speaker.Character.CharacterMesh:...
196
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/btools2.plugin.luau
luau
.luau
local Plugin = { ["PluginName"] = "Cyclically's Custom Btools", ["PluginDescription"] = "Just better btools", ["Commands"] = { ["cycbtools"] = { ["ListName"] = "cycbtools / btools2", ["Description"] = "Cyclically's Custom Btools", ["Aliases"] = { "btools2" }, ["Function"] = function(args, speaker) ...
791
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/builderchat.plugin.luau
luau
.luau
local Plugin = { ["PluginName"] = "Builderman Chat", ["PluginDescription"] = "Pretend to be Builderman (Modded by LuaLighter)", ["Commands"] = { ["buildchat"] = { ["ListName"] = "buildchat / bchat [your msg] [builderman msg]", ["Description"] = "Chat as Builerman", ["Aliases"] = { "bchat" }, ["Function...
178
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/clearchat.plugin.luau
luau
.luau
local Plugin = { ["PluginName"] = "Clear Chat", ["PluginDescription"] = "you may be warned", ["Commands"] = { ["clearchat"] = { ["ListName"] = "clearchat / clchat", ["Description"] = "deez nuts HA GOTTEM", ["Aliases"] = { "clchat" }, ["Function"] = function(args, speaker) local ReplicatedStorage = ...
2,530
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/climb.plugin.luau
luau
.luau
climbing = false local Plugin = { ["PluginName"] = "Climb", ["PluginDescription"] = "Make you climb", ["Commands"] = { ["climb"] = { ["ListName"] = "climb", ["Description"] = "monke", ["Aliases"] = {}, ["Function"] = function(args, speaker) if climbing == false then climbing = true local ...
333
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/crash.plugin.luau
luau
.luau
local Plugin = { ["PluginName"] = "Crasher", ["PluginDescription"] = "does something", ["Commands"] = { ["crash"] = { ["ListName"] = "crash", ["Description"] = "fucks up ur roblox game", ["Aliases"] = {}, ["Function"] = function(args, speaker) function build() local part = Instance.new("Part")...
142
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/ctrl_lock.plugin.luau
luau
.luau
local Plugin = { ["PluginName"] = "Ctrl Lock", ["PluginDescription"] = "Bind Shift Lock to Left Control", ["Commands"] = { ["controllock"] = { ["ListName"] = "controllock / ctrllock", ["Description"] = "Bind Shift Lock to Left Control", ["Aliases"] = { "ctrllock" }, ["Function"] = function(args, speake...
233
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/displayNameRemover.plugin.luau
luau
.luau
local Plugin = { ["PluginName"] = "displayNameRemover", ["PluginDescription"] = "removes those pesky display names", ["Commands"] = { ["removedisplay"] = { ["ListName"] = "removedisplay / removedisplaynames / nodisplayname / ndn", ["Description"] = "this removes display names", ["Aliases"] = { "removedisp...
347
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/enablebackpack.plugin.luau
luau
.luau
local Plugin = { ["PluginName"] = "Enable Backpack", ["PluginDescription"] = "Enables backpack", ["Commands"] = { ["enablebackpack"] = { ["ListName"] = "enablebackpack", ["Description"] = "Enables backpack", ["Aliases"] = {}, ["Function"] = function(args, speaker) mouse = game.Players.LocalPlayer:G...
183
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/example.plugin.luau
luau
.luau
local Plugin = { ["PluginName"] = "plugin name", ["PluginDescription"] = "description", ["Commands"] = { ["command1"] = { ["ListName"] = "command1 / alias1 / alias2", ["Description"] = "description", ["Aliases"] = { "alias1", "alias2" }, ["Function"] = function(args, speaker) print("placeholder") ...
107
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/fakecommands.plugin.luau
luau
.luau
local Plugin = { ["PluginName"] = "Fake Commands", ["PluginDescription"] = "Allows you to pretend you got kick/banned, for whatever reason you need it for.", ["Commands"] = { ["fakekick"] = { ["ListName"] = "fakekick <reason>", ["Description"] = "Kicks you for the desired reason.", ["Aliases"] = { "fkick"...
253
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/fakeify.plugin.luau
luau
.luau
local Plugin = { ["PluginName"] = "Fakeify", ["PluginDescription"] = "Scripted by NoobSploit#0001", ["Commands"] = { ["fakeuser"] = { ["ListName"] = "fakeuser [user]", ["Description"] = "This is client sided nobody else can see this", ["Aliases"] = { "" }, ["Function"] = function(args, speaker) use...
300
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/flashlight.plugin.luau
luau
.luau
local a = {} a.__index = a local typeof = typeof local assert = assert function a:CreatePlugin(b, c) local self = setmetatable({}, a) self.PluginName = b self.PluginDescription = c self.Commands = {} return self end function a:AddCommand(d, e, c, f, g) assert(typeof(d) == "string", "CommandName must be a string."...
1,327
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/gears.plugin.luau
luau
.luau
return { ["PluginName"] = "Client sided gear", ["PluginDescription"] = "Made by NoobSploit#0001", ["Commands"] = { ["gear"] = { ["ListName"] = "gear [id]", ["Description"] = "This is client sided and will probably not work", ["Aliases"] = {}, ["Function"] = function(args, speaker) local id = getstr...
134
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/hit13.plugin.luau
luau
.luau
return { ["PluginName"] = "Anime Hit", ["PluginDescription"] = "Hit animation", ["Commands"] = { ["hit"] = { ["ListName"] = "hit [1-3]", ["Description"] = "Hit animation", ["Aliases"] = {}, ["Function"] = function(args, speaker) for i, track in pairs(game.Players.LocalPlayer.Character.Humanoid:GetP...
442
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/ip.plugin.luau
luau
.luau
local Plugin = { ["PluginName"] = "G.I.P.", ["PluginDescription"] = "Generates random IPv4 Address", ["Commands"] = { ["getip"] = { ["ListName"] = "GetIP [plr] / GIP [plr]", ["Description"] = "Generates IP", ["Aliases"] = { "gip" }, ["Function"] = function(args, speaker) for i, plr in pairs(getPlay...
236
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/joinrandomplace.plugin.luau
luau
.luau
local Plugin = { ["PluginName"] = "Random place generator", ["PluginDescription"] = "join random place", ["Commands"] = { ["joinplace"] = { ["ListName"] = "joinplace [min] [max]", ["Description"] = "join random place ([min] [max] is placeid)", ["Aliases"] = {}, ["Function"] = function(args, speaker) ...
195
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/looplight.plugin.luau
luau
.luau
local Plugin = { ["PluginName"] = "Loop Lighting", ["PluginDescription"] = "Adds loops for lighting commands.", ["Commands"] = { ["loopday"] = { ["ListName"] = "loopday / lday / ld", ["Description"] = "Sunshiiiine!", ["Aliases"] = { "lday", "ld" }, ["Function"] = function(args, speaker) if dayLoop ...
715
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/marble.plugin.luau
luau
.luau
local Plugin = { ["PluginName"] = "Marble", ["PluginDescription"] = "Turn into a marble lmao", ["Commands"] = { ["marble"] = { ["ListName"] = "marble [size]", ["Description"] = "Turns you into a marble", ["Aliases"] = {}, ["Function"] = function(args, speaker) local UserInputService = game:GetServi...
626
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/moresex.plugin.luau
luau
.luau
local Plugin = {} Plugin.PluginName = "More Sex" Plugin.PluginDescription = "made by prisj" Plugin.Commands = {} local Players = game:GetService("Players") local gbangLoop = nil local GBANGANIM = nil local GBANGtrack = nil local gbangDied = nil local SuckLoop = nil local SuckAnim = nil local Sucktrack = nil local Suc...
1,043
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/noCooldown.plugin.luau
luau
.luau
local Plugin = { ["PluginName"] = "No Cooldown", ["PluginDescription"] = "Removes Cooldown (Universal)", ["Commands"] = { ["nocooldown"] = { ["ListName"] = "nocooldown / noc", ["Description"] = "Removes cooldown, is universal. Might cause some lag.", ["Aliases"] = { "noc" }, ["Function"] = function() ...
135
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/nosound.plugin.luau
luau
.luau
local Plugin = { ["PluginName"] = "No Sound", ["PluginDescription"] = "Scripted by NoobSploit#0001 Sarge#0196 doesnt have a dick", ["Commands"] = { ["nosound"] = { ["ListName"] = "nosound", ["Description"] = "Deletes sounds", ["Aliases"] = {}, ["Function"] = function(args, speaker) for _, sound in ...
141
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/partflashback.plugin.luau
luau
.luau
local Plugin = { ["PluginName"] = "Part Flashback", ["PluginDescription"] = "Creates a part that you can teleport to", ["Commands"] = { ["partflashback"] = { ["ListName"] = "partflashback / pflash", ["Description"] = "Allows you to teleport to a part", ["Aliases"] = { "pflash" }, ["Function"] = functio...
346
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/plugininfo.plugin.luau
luau
.luau
local Plugin = { ["PluginName"] = "Plugin Info", ["PluginDescription"] = "Displays information about your plugin usage.", ["Commands"] = { ["plugininfo"] = { ["ListName"] = "plugininfo / plugins", ["Description"] = "Displays information about your plugin usage.", ["Aliases"] = { "plugins" }, ["Function...
374
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/prediction.plugin.luau
luau
.luau
local CmdSuggestion = Instance.new("TextLabel") CmdSuggestion.Name = "CmdSuggestion" CmdSuggestion.Parent = Cmdbar CmdSuggestion.BackgroundTransparency = 1 CmdSuggestion.BorderSizePixel = 0 CmdSuggestion.Position = UDim2.new(0, 0, 0, 0) CmdSuggestion.Size = UDim2.new(0, 240, 0, 25) CmdSuggestion.Font = Enum.Font.Source...
1,149
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/rename.plugin.luau
luau
.luau
return { ["PluginName"] = "rename", ["PluginDescription"] = "Scripted by NoobSploit#0001", ["Commands"] = { ["rename"] = { ["ListName"] = "rename [text]", ["Description"] = "why", ["Aliases"] = {}, ["Function"] = function(args, speaker) if args[1] ~= nil then Title.Text = getstring(1) end ...
112
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/schat.plugin.luau
luau
.luau
local Plugin = { ["PluginName"] = "schat", ["PluginDescription"] = "Scripted by NoobSploit#0001", ["Commands"] = { ["schat"] = { ["ListName"] = "schat [text]", ["Description"] = "Chats in game.Players:Chat and can only be seen though chat logs", ["Aliases"] = {}, ["Function"] = function(args, speaker) ...
142
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/showhealth.plugin.luau
luau
.luau
local Plugin = { ["PluginName"] = "Showhealth", ["PluginDescription"] = "Made by YuKii#4662", ["Commands"] = { ["health"] = { ["ListName"] = "health / hp [plr]", ["Description"] = "Show Player Health", ["Aliases"] = { "hp" }, ["Function"] = function(args, speaker) local players = getPlayer(args[1],...
185
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/systemchat.plugin.luau
luau
.luau
local Plugin = { ["PluginName"] = "System chat", ["PluginDescription"] = "Fake chat as a system", ["Commands"] = { ["systemchat"] = { ["ListName"] = "systemchat / schat [msg]", ["Description"] = "chat as a system", ["Aliases"] = { "schat" }, ["Function"] = function(args, speaker) local msg = " ...
152
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/tfly.plugin.luau
luau
.luau
TFlyEnabled = false local Plugin = { ["PluginName"] = "Tween Fly", ["PluginDescription"] = "Basically smooth flying", ["Commands"] = { ["tfly"] = { ["ListName"] = "tfly [speed]", ["Description"] = "Enables tween fly", ["Aliases"] = {}, ["Function"] = function(args, speaker) TFlyEnabled = true ...
973
Infinite-Store/Infinite-Store
Infinite-Store-Infinite-Store-87d0e48/plugins/tool.plugin.luau
luau
.luau
local Wishes = { ["PluginName"] = "Activate Tool", ["PluginDescription"] = "Activates tool thats in players hand (loops) ", ["Commands"] = { ["activate"] = { ["ListName"] = "activate / acti", ["Description"] = "Begins to loop activate tool", ["Aliases"] = { "acti" }, ["Function"] = function(args, speak...
259
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/.lune/build/branch.luau
luau
.luau
local process = require("@lune/process") local stdio = require("@lune/stdio") local branches = require("./branches") for _, branch in ipairs(branches) do if table.find(process.args, branch) then return branch end end local index = stdio.prompt( "select", "What branch to build for? (Pass it in as argument when ...
94
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/.lune/build/config/init.luau
luau
.luau
local fs = require("@lune/fs") local serde = require("@lune/serde") local process = require("@lune/process") local branch = require("./branch") local defaultConfig = serde.decode("toml", fs.readFile(".lune/build/config/default.toml")) -- ./default.toml would've been nice :sob: local config = { branch = branch } local...
239
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/.lune/build/generateConfig.luau
luau
.luau
local MLDSA87 = require("@shared/crypto/MlDSA").ML_DSA_87 local MLKEM1024 = require("@shared/crypto/MlKEM").MLKEM_1024 local CSPRNG = require("@shared/crypto/CSPRNG") local Base64 = require("@shared/crypto/base64") return function(config) local rules = table.clone(config.darkluaRules) local inject = table.clone(con...
445
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/assets/client/starterScripts/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,112
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/assets/client/starterScripts/PlayerModule/CameraModule/CameraToggleStateController.luau
luau
.luau
local Players = game:GetService("Players") local UserInputService = game:GetService("UserInputService") local GameSettings = UserSettings():GetService("UserGameSettings") local Input = require(script.Parent:WaitForChild("CameraInput")) local CameraUI = require(script.Parent:WaitForChild("CameraUI")) local CameraUtils ...
568
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/assets/client/starterScripts/PlayerModule/CameraModule/CameraUI.luau
luau
.luau
--!nonstrict local StarterGui = game:GetService("StarterGui") local initialized = false local CameraUI: any = {} do -- 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 initializ...
186
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/assets/client/starterScripts/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,623
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/assets/client/starterScripts/PlayerModule/CameraModule/LegacyCamera.luau
luau
.luau
--!nonstrict --[[ LegacyCamera - Implements legacy controller types: Attach, Fixed, Watch 2018 Camera Update - AllYourBlox --]] local ZERO_VECTOR2 = Vector2.new() local PITCH_LIMIT = math.rad(80) local Util = require(script.Parent:WaitForChild("CameraUtils")) local CameraInput = require(script.Parent:WaitForChild("...
905
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/assets/client/starterScripts/PlayerModule/CameraModule/MouseLockController.luau
luau
.luau
--!nonstrict --[[ MouseLockController - Replacement for ShiftLockController, manages use of mouse-locked mode 2018 Camera Update - AllYourBlox --]] --[[ Constants ]]-- local DEFAULT_MOUSE_LOCK_CURSOR = "rbxasset://textures/MouseLockedCursor.png" local CONTEXT_ACTION_NAME = "MouseLockSwitchAction" local MOUSELOCK_AC...
1,603
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/assets/client/starterScripts/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,363
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/assets/client/starterScripts/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,403
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/assets/client/starterScripts/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 UserGameSettings = UserSettings():GetService("UserGameSettings") -- Local private variables and constants local C...
2,920
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/assets/client/starterScripts/PlayerModule/CameraModule/VRVehicleCamera.luau
luau
.luau
--!nonstrict --[[ VRVehicleCamera - Roblox VR vehicle camera control module 2021 Roblox VR --]] local EPSILON = 1e-3 local PITCH_LIMIT = math.rad(80) local YAW_DEFAULT = math.rad(0) local ZOOM_MINIMUM = 0.5 local ZOOM_SENSITIVITY_CURVATURE = 0.5 local DEFAULT_CAMERA_DIST = 16 local TP_FOLLOW_DIST = 200 local TP_FOLL...
1,731
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/assets/client/starterScripts/PlayerModule/CameraModule/ZoomController/Popper.luau
luau
.luau
--!nonstrict -------------------------------------------------------------------------------- -- Popper.lua -- Prevents your camera from clipping through walls. -------------------------------------------------------------------------------- local Players = game:GetService("Players") local camera = game.Workspace.Cur...
2,326
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/assets/client/starterScripts/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
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/assets/client/starterScripts/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,301
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/assets/client/starterScripts/PlayerModule/ControlModule/PathDisplay.luau
luau
.luau
--!nonstrict 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") pointModel.Name = "PathDisplayPoints" local adornee...
846
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/assets/client/starterScripts/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,499
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/assets/client/starterScripts/PlayerModule/ControlModule/TouchThumbstick.luau
luau
.luau
--!nonstrict --[[ TouchThumbstick --]] local Players = game:GetService("Players") local GuiService = game:GetService("GuiService") local UserInputService = game:GetService("UserInputService") local UserGameSettings = UserSettings():GetService("UserGameSettings") local FFlagUserClampClassicThumbstick do local succe...
2,019
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/assets/client/starterScripts/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,235
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/assets/client/starterScripts/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...
4,766
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/assets/client/starterScripts/RbxCharacterSounds/init.luau
luau
.luau
--!nonstrict -- Roblox character sound script local Players = game:GetService("Players") local RunService = game:GetService("RunService") local AtomicBinding = require(script:WaitForChild("AtomicBinding")) local function loadFlag(flag: string) local success, result = pcall(function() return UserSettings():IsUserF...
2,172
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/assets/server/Health.server.luau
luau
.luau
-- Gradually regenerates the Humanoid's Health over time. local REGEN_RATE = 1 / 100 -- Regenerate this fraction of MaxHealth per second. local REGEN_STEP = 1 -- Wait this long between each regeneration step. -------------------------------------------------------------------------------- local Character = script.Pa...
145
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/benchmarks/Template.bench.luau
luau
.luau
--[[ This file is for use by Benchmarker (https://boatbomber.itch.io/benchmarker) |WARNING| THIS RUNS IN YOUR REAL ENVIRONMENT. |WARNING| --]] return { ParameterGenerator = function() return end, BeforeAll = function() end, AfterAll = function() end, BeforeEach = function() end, AfterEach = function() end, ...
116
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/benchmarks/arrayFindValue.bench.luau
luau
.luau
--[[ This file is for use by Benchmarker (https://boatbomber.itch.io/benchmarker) |WARNING| THIS RUNS IN YOUR REAL ENVIRONMENT. |WARNING| --]] local N = 1000 return { ParameterGenerator = function() local arr = table.freeze({ "a", "b", "c", "d", "e" }) local value = arr[math.random(1, #arr)] return arr, valu...
233
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/benchmarks/getArg.bench.luau
luau
.luau
--[[ This file is for use by Benchmarker (https://boatbomber.itch.io/benchmarker) |WARNING| THIS RUNS IN YOUR REAL ENVIRONMENT. |WARNING| --]] local parameters = 10 local N = 100 return { ParameterGenerator = function() return parameters, unpack(table.create(parameters, "value"), 1, parameters) end, BeforeAll ...
684
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/benchmarks/hookArgs.bench.luau
luau
.luau
--[[ This file is for use by Benchmarker (https://boatbomber.itch.io/benchmarker) |WARNING| THIS RUNS IN YOUR REAL ENVIRONMENT. |WARNING| --]] local N = 100 return { ParameterGenerator = function() return function() return "value1", "value2", "value3" end end, BeforeAll = function() end, AfterAll = funct...
371
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/benchmarks/hookVarargs.bench.luau
luau
.luau
--[[ This file is for use by Benchmarker (https://boatbomber.itch.io/benchmarker) |WARNING| THIS RUNS IN YOUR REAL ENVIRONMENT. |WARNING| --]] return { ParameterGenerator = function() local n = 1000 local t = table.create(n, "value") return function() return unpack(t, 1, n) end end, BeforeAll = functio...
351
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/benchmarks/iterateVarargs.bench.luau
luau
.luau
--[[ This file is for use by Benchmarker (https://boatbomber.itch.io/benchmarker) |WARNING| THIS RUNS IN YOUR REAL ENVIRONMENT. |WARNING| --]] local N = 100 return { ParameterGenerator = function() local parameters = math.random(1, 10) return unpack(table.create(parameters, "value"), 1, parameters) end, Befo...
366
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/benchmarks/lookupTable.bench.luau
luau
.luau
--[[ This file is for use by Benchmarker (https://boatbomber.itch.io/benchmarker) |WARNING| THIS RUNS IN YOUR REAL ENVIRONMENT. |WARNING| --]] local N = 1000 local keys = { "A", "B", "C", "D", "E", "F" } local lookup = { ["A"] = "a", ["C"] = "c", ["E"] = "e", } local magic = setmetatable(table.clone(lookup), { ...
299
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/benchmarks/mutateVarargs.bench.luau
luau
.luau
--[[ This file is for use by Benchmarker (https://boatbomber.itch.io/benchmarker) |WARNING| THIS RUNS IN YOUR REAL ENVIRONMENT. |WARNING| --]] local N = 100 return { ParameterGenerator = function() local parameters = math.random(1, 10) return unpack(table.create(parameters, 1), 1, parameters) end, BeforeAll ...
358
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/modules/client/output.luau
luau
.luau
local Network = require("@client/network") local MessageTypes = require("@shared/output/messageTypes") local Signal = require("@shared/signal") local Functions = require("@shared/functions") local Output = {} Output.MessageType = MessageTypes Output.MessageOut = Signal.new() Output.MessageIdDropped = Signal.new() fun...
362
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/modules/client/scriptManager.luau
luau
.luau
local Output = require("@client/output") local Network = require("@client/network") local UI = require("@client/ui") local Assets = require("@shared/assets") local WorkerManagers = require("@shared/workerManagers") local ScriptTypes = require("@shared/scriptManager/scriptTypes") local Module = {} Module.ScriptType = ...
1,073
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/modules/client/starterScripts.luau
luau
.luau
local Log = require("@shared/log") local Assets = require("@shared/assets") local scripts = Assets:get("starterScripts"):GetChildren() local starterScripts = {} function starterScripts:Init() Log.debug("Starting starter scripts...") for _, starterScript in ipairs(scripts) do task.defer(require, starterScript:Clon...
75
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/modules/client/ui/app.luau
luau
.luau
local Players = game:GetService("Players") local UserInputService = game:GetService("UserInputService") local StarterGui = game:GetService("StarterGui") local Commands = require("@client/commands") local Network = require("@client/network") local CommandInputContext = require("@shared/commands/inputContexts") local Ma...
4,141
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/modules/client/ui/create.luau
luau
.luau
local function applyProperties(instance, properties) for key, value in properties do if type(key) == "number" and typeof(value) == "Instance" then value.Parent = instance continue end if type(value) == "table" then applyProperties(instance, value) continue end if typeof(instance[key]) == "RBX...
171
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/modules/client/ui/init.luau
luau
.luau
local Players = game:GetService("Players") local Output = require("@client/output") local Log = require("@shared/log") local Maid = require("@shared/maid") local Signal = require("@shared/signal") local Functions = require("@shared/functions") local App = require("@self/app") local create = require("@self/create") l...
555
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/modules/client/wm/sandbox/blockedInstances/init.luau
luau
.luau
local ipairs = ipairs local table = table local lookup = {} local list = table.freeze(require("@self/list.yaml")) for _, class in ipairs(list) do lookup[class] = true end return table.freeze(lookup)
49
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/modules/client/wm/stackTrace.luau
luau
.luau
local table = table local ipairs = ipairs local SharedStackTrace = require("@shared/stackTrace") local Functions = require("@shared/functions") local VM = require("@client/wm/sandbox/vm") local vmStart = VM.vmStart local vmEnd = VM.vmEnd local getDebugInfo = VM.getDebugInfo local getRunning = VM.getRunning local Sta...
338
Open-SB/OpenSB
Open-SB-OpenSB-5852ada/modules/server/db/init.luau
luau
.luau
-- This doesn't persist between servers and is just an example. local datas = {} local function getUserData(userId: number) local data = datas[userId] if data then return data end data = { scripts = {}, } datas[userId] = data return data end local PlayerList = require("@shared/playerList") PlayerList.Remo...
292