diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index 612f698..0000000 --- a/.gitattributes +++ /dev/null @@ -1,3 +0,0 @@ -# Ad-hoc syntax highlighting & indexing for luau -*.luau linguist-language=Lua -*.*.luau linguist-language=Lua diff --git a/.github/workflows/build-binaries.yml b/.github/workflows/build-binaries.yml index 90da4ec..ef88ebd 100644 --- a/.github/workflows/build-binaries.yml +++ b/.github/workflows/build-binaries.yml @@ -17,11 +17,11 @@ jobs: - name: Checkout uses: actions/checkout@v3 - - name: Setup Aftman - uses: ok-nick/setup-aftman@v0.4.2 + - name: Setup Rokit + uses: CompeyDev/setup-rokit@v0.1.2 - name: Update Binaries - run: lune update-binaries + run: lune run build - name: Commit changes run: | @@ -29,4 +29,4 @@ jobs: git config --global user.email 'bot@noreply.github.com' git add . git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }} - git commit -m "Auto-update package 'Binaries'" && git push || echo "No changes to commit" + git commit -m "Auto-update package 'Binaries'" && git push || echo "No changes to commit" \ No newline at end of file diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 46bc9f9..cb2501b 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -1,3 +1,5 @@ +name: Lint, Typecheck & Test + on: workflow_dispatch: @@ -12,23 +14,42 @@ jobs: lint-check: runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Setup Aftman - uses: ok-nick/setup-aftman@v0.4.2 + - uses: actions/checkout@v4 + - uses: CompeyDev/setup-rokit@v0.1.2 - name: Run Linter - run: lune lint-check + run: lune run lint type-check: runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v3 + - uses: actions/checkout@v4 + - uses: CompeyDev/setup-rokit@v0.1.2 + - uses: lumin-org/setup-pesde@v0.4.1 + with: + cache: true + version: v0.7.0-rc.6+registry.0.2.3-rc.3 - - name: Setup Aftman - uses: ok-nick/setup-aftman@v0.4.2 + - name: Run Type Checker + run: lune run type - - name: Run Linter - run: lune type-check + run-tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: CompeyDev/setup-rokit@v0.1.2 + - uses: lumin-org/setup-pesde@v0.4.1 + with: + cache: true + version: v0.7.0-rc.6+registry.0.2.3-rc.3 + + - name: Install binary dependencies + run: rokit install --no-trust-check + + - name: Install project dependencies + run: pesde install --locked + + - name: Run Tests + run: lune run test + env: + ROBLOX_OC_KEY: ${{ secrets.ROBLOX_OC_KEY }} \ No newline at end of file diff --git a/.github/workflows/update-documentation.yml b/.github/workflows/update-documentation.yml index 2f446ba..5ecc5d0 100644 --- a/.github/workflows/update-documentation.yml +++ b/.github/workflows/update-documentation.yml @@ -5,7 +5,8 @@ on: push: branches: - - Master + - master + - refactor/project-structure permissions: contents: write @@ -20,4 +21,4 @@ jobs: token: ${{ secrets.PAT }} repository: 4x8Matrix/Package-Index-Site event-type: update-documentation - client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}' + client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}' \ No newline at end of file diff --git a/.gitignore b/.gitignore index d01b09d..b3118c5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,13 @@ *.rbxl -*.lock -**/Packages/** -**/ServerPackages/** -**/DevPackages/** +Packages +ServerPackages +DevPackages -sourcemap.json +luau_packages +lune_packages +roblox_packages -node_modules +roblox.d.lua -.next \ No newline at end of file +sourcemap.json \ No newline at end of file diff --git a/.justfile b/.justfile deleted file mode 100644 index c36fcdd..0000000 --- a/.justfile +++ /dev/null @@ -1,112 +0,0 @@ -TARGET := if os() == "windows" { error("this convenience script currently does not support windows") } else if os() == "macos" { "macos-{{arch()}}" } else { os() } -WPT_DL_URL := "https://github.com/JohnnyMorganz/wally-package-types/releases/download/v1.3.1/wally-package-types-" + TARGET + ".zip" -CWD := invocation_directory() - -[private] -default: - #!/usr/bin/env bash - set -euo pipefail - - just check_env - printf "[*] " && just --list - -check_env: - #!/usr/bin/env bash - set -euo pipefail - - echo "[*] Checking whether required tools are installed" - - declare -a deps=("lune" "rojo" "wally-package-types" "wally") - - for dep in ${deps[@]} - do - if ! which "$dep" &>/dev/null; then - echo " => [!] Dependency $dep not found!" - - if [[ "$dep" == "wally-package-types" ]]; then - echo " => [*] Installing wally-package-types..." - - cd /tmp - wget -q --show-progress --progress=bar:force -O "wally-package-types.zip" "{{WPT_DL_URL}}" - unzip wally-package-types.zip 1>/dev/null - mv wally-package-types "$HOME/.local/bin/wally-package-types" - else - exit 1 - fi - else - echo " => [*] FOUND: $dep" - fi - done - - -[no-cd] -setup PROJECT_NAME *TYPE: - #!/usr/bin/env bash - set -euo pipefail - - just check_env - - function setup_lune() { - echo "[*] Setting up lune typedefs..." - lune setup - } - - function setup_wally() { - echo "[*] Installing dependencies with wally..." - wally install - } - - cd "{{CWD}}/Modules/{{PROJECT_NAME}}" - - if [[ "{{TYPE}}" == "lune" ]]; then - setup_lune - elif [[ "{{TYPE}}" == "wally" ]]; then - setup_wally - else - setup_lune && setup_wally - fi - -[no-cd] -update_sourcemap PROJECT_NAME: - #!/usr/bin/env bash - set -euo pipefail - - just check_env - echo "[*] Updating sourcemap for {{PROJECT_NAME}}..." - cd "{{CWD}}/Modules/{{PROJECT_NAME}}" - - rojo sourcemap development.project.json --output sourcemap.json - wally-package-types --sourcemap sourcemap.json Packages/ - -[no-cd] -serve PROJECT_NAME BUILD_TYPE: - #!/usr/bin/env bash - set -euo pipefail - - just check_env - echo "[*] Starting rojo {{BUILD_TYPE}} session for {{PROJECT_NAME}}..." - cd "{{CWD}}/Modules/{{PROJECT_NAME}}" - - rojo serve "{{BUILD_TYPE}}.project.json" - -[no-cd] -build PROJECT_NAME BUILD_TYPE: - #!/usr/bin/env bash - set -euo pipefail - - just check_env - echo "[*] Building {{BUILD_TYPE}} build for {{PROJECT_NAME}}..." - cd "{{CWD}}/Modules/{{PROJECT_NAME}}" - - rojo build "{{BUILD_TYPE}}.project.json" -o "{{PROJECT_NAME}}-Build.rbxl" - -[no-cd] -lint PROJECT_NAME: - #!/usr/bin/env bash - set -euo pipefail - - just check_env - echo "[*] Linting {{PROJECT_NAME}}..." - cd "{{CWD}}/Modules/{{PROJECT_NAME}}" - - selene Source diff --git a/.luaurc b/.luaurc new file mode 100644 index 0000000..64784fb --- /dev/null +++ b/.luaurc @@ -0,0 +1,9 @@ +{ + "languageMode": "strict", + "lint": { + "*": false + }, + "aliases": { + "lune": "~/.lune/.typedefs/0.10.1/" + } +} diff --git a/.lune/build.luau b/.lune/build.luau new file mode 100644 index 0000000..af05f91 --- /dev/null +++ b/.lune/build.luau @@ -0,0 +1,31 @@ +--# selene: allow(incorrect_standard_library_use) + +local process = require("@lune/process") +local fs = require("@lune/fs") + +local function execute(application, arguments, spawnOptions): string + local result = process.exec(application, arguments, spawnOptions) + + if not result.ok then + print(`Executing application '{application}' failed: '{result.stderr}'`) + + return process.exit(result.code) + end + + return result.stdout +end + +local function main() + if not fs.isDir("binaries") then + fs.writeDir("binaries") + end + + for _, packageName in fs.readDir("packages") do + execute("wally", { "install" }, { cwd = `packages/{packageName}` }) + execute("rojo", { "build", "-o", `../../binaries/{packageName}.rbxm` }, { cwd = `packages/{packageName}` }) + + print(`[Build-Projects]: project '{packageName}' built OK`) + end +end + +return main() \ No newline at end of file diff --git a/.lune/install-packages.luau b/.lune/install-packages.luau deleted file mode 100644 index ed4ed2e..0000000 --- a/.lune/install-packages.luau +++ /dev/null @@ -1,21 +0,0 @@ ---# selene: allow(incorrect_standard_library_use) - -local process = require("@lune/process") - -local function execute(application, ...) - local result = process.spawn(application, { ... }) - - if not result.ok then - print(`Executing application '{application}' failed: '{result.stderr}'`) - - return process.exit(result.code) - end - - return result.stdout -end - -local function main() - execute("wally", "install") -end - -return main() diff --git a/.lune/lint-check.luau b/.lune/lint.luau similarity index 67% rename from .lune/lint-check.luau rename to .lune/lint.luau index c1843e0..664d830 100644 --- a/.lune/lint-check.luau +++ b/.lune/lint.luau @@ -1,14 +1,14 @@ --# selene: allow(incorrect_standard_library_use) local process = require("@lune/process") -local fileSystem = require("@lune/fs") +local fs = require("@lune/fs") local function main() - for _, packageName in fileSystem.readDir("Modules") do - local result = process.spawn(`selene`, { + for _, packageName in fs.readDir("packages") do + local result = process.exec(`selene`, { `.`, }, { - cwd = `{process.cwd}Modules/{packageName}`, + cwd = `{process.cwd}packages/{packageName}`, }) if result.ok then @@ -23,4 +23,4 @@ local function main() end end -return main() +return main() \ No newline at end of file diff --git a/.lune/test/bin/run-tests-in-cloud.server.luau b/.lune/test/bin/run-tests-in-cloud.server.luau new file mode 100644 index 0000000..115e367 --- /dev/null +++ b/.lune/test/bin/run-tests-in-cloud.server.luau @@ -0,0 +1,32 @@ +local ReplicatedStorage = game:GetService("ReplicatedStorage") + +local Jest = require(ReplicatedStorage.Packages.Jest) + +local processServiceExists, ProcessService = pcall(function() + -- selene: allow(incorrect_standard_library_use) + return game:GetService("ProcessService") +end) + +local status, result = Jest.runCLI(ReplicatedStorage.Packages, { + ci = true, + verbose = false, + + testMatch = { "**/*.spec" }, +}, { + ReplicatedStorage.Packages.Console, + ReplicatedStorage.Packages.CameraProfiler, +}):awaitStatus() + +if status == "Rejected" then + print(result) + + ProcessService:ExitAsync(1) +end + +if status == "Resolved" and result.results.numFailedTestSuites == 0 and result.results.numFailedTests == 0 then + if processServiceExists then + ProcessService:ExitAsync(0) + end +end + +return nil diff --git a/.lune/test/bin/run-tests-in-studio.server.luau b/.lune/test/bin/run-tests-in-studio.server.luau new file mode 100644 index 0000000..8453dfe --- /dev/null +++ b/.lune/test/bin/run-tests-in-studio.server.luau @@ -0,0 +1,35 @@ +local ReplicatedStorage = game:GetService("ReplicatedStorage") + +-- selene: allow(global_usage) +_G.NOCOLOR = true + +local Jest = require(ReplicatedStorage.Packages.Jest) + +local processServiceExists, ProcessService = pcall(function() + -- selene: allow(incorrect_standard_library_use) + return game:GetService("ProcessService") +end) + +local status, result = Jest.runCLI(ReplicatedStorage.Packages, { + ci = false, + verbose = false, + + testMatch = { "**/*.spec" }, +}, { + ReplicatedStorage.Packages.CameraProfiler, + ReplicatedStorage.Packages.Console, +}):awaitStatus() + +if status == "Rejected" then + print(result) + + ProcessService:ExitAsync(1) +end + +if status == "Resolved" and result.results.numFailedTestSuites == 0 and result.results.numFailedTests == 0 then + if processServiceExists then + ProcessService:ExitAsync(0) + end +end + +return nil diff --git a/.lune/test/init.luau b/.lune/test/init.luau new file mode 100644 index 0000000..2c2b102 --- /dev/null +++ b/.lune/test/init.luau @@ -0,0 +1,41 @@ +local fs = require("@lune/fs") +local process = require("@lune/process") + +local ROBLOX_OC_KEY = process.env.ROBLOX_OC_KEY + +local buildAndUploadPlace = require("./test/util/buildAndUploadPlace") +local executeLuauTask = require("./test/util/executeLuauTask") + +local testConfig = require("../test-config") + +local function main() + local jestScript = fs.readFile(".lune/test/bin/run-tests-in-cloud.server.luau") + + local uploadResult = buildAndUploadPlace({ + universeId = testConfig.universeId, + placeId = testConfig.placeId, + apiKey = ROBLOX_OC_KEY, + filePath = testConfig.testPlaceFile, + rojoProjectFile = testConfig.rojoProjectFile, + }) + + if uploadResult then + local passed = executeLuauTask({ + universeId = testConfig.universeId, + placeId = testConfig.placeId, + placeVersion = uploadResult.versionNumber, + apiKey = ROBLOX_OC_KEY, + script = jestScript, + }) + + if not passed then + process.exit(1) + return + end + end + + -- Explicitly exit because Lune sucks at async tasks + process.exit(0) +end + +return main() \ No newline at end of file diff --git a/.lune/test/types.luau b/.lune/test/types.luau new file mode 100644 index 0000000..d34587c --- /dev/null +++ b/.lune/test/types.luau @@ -0,0 +1,88 @@ +type Array = { T } + +export type LuauExecutionSessionTask_State = + "STATE_UNSPECIFIED" + | "QUEUED" + | "PROCESSING" + | "CANCELLED" + | "COMPLETE" + | "FAILED" + +--- Present when the task execution fails. Contains details about the error that +--- caused the failure. +export type LuauExecutionSessionTask_Error = { + --- An error code indicating the category of the error. + code: "ERROR_CODE_UNSPECIFIED" + | "SCRIPT_ERROR" + | "DEADLINE_EXCEEDED" + | "OUTPUT_SIZE_LIMIT_EXCEEDED" + | "INTERNAL_ERROR", + --- An error message containing more details about the error. + message: string, +} + +--- Present when the task execution succeeds. Contains the output of the +--- execution. +export type LuauExecutionSessionTask_Output = { + --- Return values from the script that was run. Return values that are not + --- JSON serializable (such as Data Model Instances) will be returned as + --- nulls. + results: Array, +} + +--[[ + A `LuauExecutionSessionTask` ("task" for short) executes a given Luau script + in the context of a specific version of a place. + + The script may access and update the data model of the place, including + invoking any module scripts. However, data model changes are local to the + task and cannot be persisted. + + The script can also invoke engine APIs that read and/or modify data stored + in the cloud, such as those for DataStores. Exercise caution when using such + APIs. +]] +export type LuauExecutionSessionTask_Request = { + --- The script to be run as part of this task. + script: string, +} + +export type LuauExecutionSessionTask = LuauExecutionSessionTask_Request & { + --- The resource path of the luau execution session task. + path: string, + --- Time when this task was created. This string is formatted as a + --- Timestamp. + createTime: string, + --- Time when this task's state last changed. This string is formatted as a + --- Timestamp. + updateTime: string, + --- The user that created the API key that was used to create this task. + user: string, + --- The task's state. See the State enum for information about each possible + --- value. + state: LuauExecutionSessionTask_State, + + error: LuauExecutionSessionTask_Error?, + output: LuauExecutionSessionTask_Output?, +} + +--[[ + Represents a chunk of log messages generated by a `LuauExecutionSessionTask`. + + The amount of logs that is retained is limited. See the documentation of the + `LuauExecutionSessionTask` resource for more details. + + Logs have the same retention time as the parent task. +]] +export type LuauExecutionSessionTaskLog = { + luauExecutionSessionTaskLogs: Array<{ + --- The resource path of the luau execution session task log. + path: string, + --- A list of log messages generated by the task execution. Each call to the + --- Luau `print()` function from the task's script's code results in a + --- single list item here, even if the message itself contains newlines. + messages: Array, + }>, +} + +return nil \ No newline at end of file diff --git a/.lune/test/util/buildAndUploadPlace.luau b/.lune/test/util/buildAndUploadPlace.luau new file mode 100644 index 0000000..84bf43b --- /dev/null +++ b/.lune/test/util/buildAndUploadPlace.luau @@ -0,0 +1,89 @@ +local fs = require("@lune/fs") +local net = require("@lune/net") +local process = require("@lune/process") +local serde = require("@lune/serde") + +export type BuildUploadPlaceOptions = { + universeId: number, + placeId: number, + apiKey: string, + filePath: string, + rojoProjectFile: string, +} + +export type BuildUploadPlaceResult = { + versionNumber: number, +} + +local function buildUploadPlaceAsync(options: BuildUploadPlaceOptions): BuildUploadPlaceResult? + local universeId = options.universeId + local placeId = options.placeId + local apiKey = options.apiKey + local filePath = options.filePath + local rojoProjectFile = options.rojoProjectFile + + local function buildPlaceAsync(): boolean + local result = process.exec("rojo", { + "build", + rojoProjectFile, + "--output", + filePath, + }) + + if result.ok then + return true + else + warn("Failed to build place file") + print(result.stderr) + return false + end + end + + local function uploadPlaceAsync(): (boolean, number?) + local readSuccess, placeFile = pcall(fs.readFile, filePath) + if not readSuccess then + warn("Failed to read place file") + return false + end + + local res = net.request({ + url = `https://apis.roblox.com/universes/v1/{universeId}/places/{placeId}/versions`, + method = "POST", + body = placeFile, + query = { + versionType = "Published", + }, + headers = { + ["x-api-key"] = apiKey, + ["Content-Type"] = "application/octet-stream", + ["Accept"] = "application/json", + }, + }) + + local decodedBody = serde.decode("json", res.body) + if res.ok then + return true, decodedBody.versionNumber + else + warn("Failed to upload place file") + print(decodedBody) + + return false + end + end + + local buildSuccess = buildPlaceAsync() + if not buildSuccess then + return nil + end + + local uploadSuccess, versionNumber = uploadPlaceAsync() + if not uploadSuccess then + return nil + end + + return { + versionNumber = versionNumber :: number, + } +end + +return buildUploadPlaceAsync \ No newline at end of file diff --git a/.lune/test/util/executeLuauTask.luau b/.lune/test/util/executeLuauTask.luau new file mode 100644 index 0000000..caeabdc --- /dev/null +++ b/.lune/test/util/executeLuauTask.luau @@ -0,0 +1,134 @@ +local net = require("@lune/net") +local serde = require("@lune/serde") +local stdio = require("@lune/stdio") +local task = require("@lune/task") + +local types = require("../types") + +local BASE_URL = "https://apis.roblox.com" + +type LuauExecutionSessionTask = types.LuauExecutionSessionTask +type LuauExecutionSessionTaskLog = types.LuauExecutionSessionTaskLog + +type Array = { T } + +export type ExecuteTaskOptions = { + universeId: number, + placeId: number, + placeVersion: number, + + apiKey: string, + + script: string, +} + +return function(options: ExecuteTaskOptions) + local universeId = options.universeId + local placeId = options.placeId + local placeVersion = options.placeVersion + local apiKey = options.apiKey + local script = options.script + + local executionTask: LuauExecutionSessionTask? = nil + + local function createTaskAsync(): boolean + local res = net.request({ + url = `{BASE_URL}/cloud/v2/universes/{universeId}/places/{placeId}/versions/{placeVersion}/luau-execution-session-tasks`, + method = "POST", + body = serde.encode("json", { + script = script, + }), + headers = { + ["x-api-key"] = apiKey, + ["Content-Type"] = "application/json", + ["Accept"] = "application/json", + }, + }) + + local decodedBody = serde.decode("json", res.body) + if res.ok then + executionTask = decodedBody + return true + else + warn(`Failed to create execution task ({res.statusMessage})`) + print(decodedBody) + return false + end + end + + local function pollForTaskCompletionAsync(): boolean + if executionTask == nil then + error("Execution task is nil") + end + + while true do + local res = net.request({ + url = `{BASE_URL}/cloud/v2/{executionTask.path}`, + method = "GET", + headers = { + ["x-api-key"] = apiKey, + ["Accept"] = "application/json", + }, + }) + + local decodedBody = serde.decode("json", res.body) + if not res.ok then + warn(`Execution task failed`) + print(decodedBody) + return false + end + + executionTask = decodedBody + if executionTask.state ~= "PROCESSING" and executionTask.state ~= "QUEUED" then + return executionTask.state == "COMPLETE" + end + + task.wait(1) + end + end + + local function getTaskLogsAsync(): Array + if executionTask == nil then + error("Execution task is nil") + end + + local res = net.request({ + url = `{BASE_URL}/cloud/v2/{executionTask.path}/logs`, + method = "GET", + headers = { + ["x-api-key"] = apiKey, + ["Accept"] = "application/json", + }, + }) + + local decodedBody: LuauExecutionSessionTaskLog = serde.decode("json", res.body) + if not res.ok then + warn(`Failed to fetch task logs ({res.statusMessage})`) + print(decodedBody) + return {} + end + + local logs: Array = {} + for _, log in decodedBody.luauExecutionSessionTaskLogs do + for _, message in ipairs(log.messages) do + table.insert(logs, message) + end + end + + return logs + end + + local createTaskSuccess = createTaskAsync() + if not createTaskSuccess then + return false + end + + local pollTaskSuccess = pollForTaskCompletionAsync() + + local logs = getTaskLogsAsync() + for _, message in logs do + stdio.write(message .. `\n`) + end + + return pollTaskSuccess +end diff --git a/.lune/type-check.luau b/.lune/type.luau similarity index 58% rename from .lune/type-check.luau rename to .lune/type.luau index 46cfa1a..2ddac16 100644 --- a/.lune/type-check.luau +++ b/.lune/type.luau @@ -4,11 +4,10 @@ local process = require("@lune/process") local net = require("@lune/net") local fs = require("@lune/fs") --- currently this CI step is disabled, i've found multiple issues trying to enforce type checking in CI. -local TYPE_CHECK_ENABLED = false +local TYPE_CHECK_ENABLED = true -local function execute(application, ...) - local result = process.spawn(application, { ... }) +local function execute(application, arguments, spawnOptions): string + local result = process.exec(application, arguments, spawnOptions) if not result.ok then print(`Executing application '{application}' failed: '{result.stderr}'`) @@ -19,7 +18,7 @@ local function execute(application, ...) return result.stdout end -local function downloadRobloxTypes() +local function downloadRobloxTypes(): () local response = net.request({ url = "https://raw.githubusercontent.com/JohnnyMorganz/luau-lsp/main/scripts/globalTypes.d.lua", method = "GET", @@ -41,8 +40,28 @@ local function main() downloadRobloxTypes() end - execute("rojo", "sourcemap", "default.project.json", "-o", "sourcemap.json") - execute("luaulsp", "analyze", "--defs=roblox.d.lua", "--sourcemap=sourcemap.json", "Places") + execute("pesde", { + "install", + }) + + execute("rojo", { + "sourcemap", + `test.project.json`, + "-o", + `sourcemap.json`, + }) + + execute("luaulsp", { + "analyze", + "--defs=roblox.d.lua", + `--sourcemap=sourcemap.json`, + `--base-luaurc=.luaurc`, + `--platform=roblox`, + `--settings=.vscode/settings.json`, + `packages/`, + }) + + print(`[Type-Projects]: projects pass luau lsp OK`) end if TYPE_CHECK_ENABLED then diff --git a/.lune/update-binaries.luau b/.lune/update-binaries.luau deleted file mode 100644 index 32236bb..0000000 --- a/.lune/update-binaries.luau +++ /dev/null @@ -1,31 +0,0 @@ ---# selene: allow(incorrect_standard_library_use) - -local process = require("@lune/process") -local fs = require("@lune/fs") - -local function execute(application, arguments, spawnOptions) - local result = process.spawn(application, arguments, spawnOptions) - - if not result.ok then - print(`Executing application '{application}' failed: '{result.stderr}'`) - - return process.exit(result.code) - end - - return result.stdout -end - -local function main() - if not fs.isDir("Binaries") then - fs.writeDir("Binaries") - end - - for _, moduleName in fs.readDir("Modules") do - print(`Building binary for: '{moduleName}'`) - - execute("wally", { "install" }, { cwd = `Modules/{moduleName}` }) - execute("rojo", { "build", "-o", `../../Binaries/{moduleName}.rbxm` }, { cwd = `Modules/{moduleName}` }) - end -end - -return main() diff --git a/.pesde/roblox_sync_config_generator.luau b/.pesde/roblox_sync_config_generator.luau new file mode 100644 index 0000000..25f3b60 --- /dev/null +++ b/.pesde/roblox_sync_config_generator.luau @@ -0,0 +1,113 @@ +local fs = require("@lune/fs") +local process = require("@lune/process") +local serde = require("@lune/serde") + +export type TreeProperties = { + Name: never?, + Parent: never?, +} + +export type TreeBase = { + ["$className"]: string?, + ["$ignoreUnknownInstances"]: boolean?, + ["$path"]: string | { optional: string }?, + ["$properties"]: TreeProperties?, +} + +export type TreeNormal = TreeBase & { + [string]: TreeNormal, +} & ({ ["$className"]: string } | { + ["$path"]: string | { optional: string }, +}) + +export type TreeService = TreeBase & { + [string]: TreeNormal, +} + +export type DataModelTree = TreeBase & { + StarterPlayer: (TreeBase & { + StarterPlayerScripts: TreeService?, + StarterCharacterScripts: TreeService?, + [string]: TreeNormal, + })?, + [string]: TreeService, +} + +export type Tree = (DataModelTree & { + ["$className"]: "DataModel", +}) | TreeNormal + +export type SyncConfig = { + name: string, + servePort: number?, + servePlaceIds: { number }?, + placeId: number?, + gameId: number?, + serveAddress: string?, + globIgnorePaths: { string }?, + tree: Tree, +} + +local PLATFORM_SEP = if process.os == "windows" then "\\" else "/" + +--- Generates a Rojo sync configuration file (`default.project.json`) from a list of +--- input files to be included. + +--- ## Errors +--- * The current process lacks permissions to a file +--- * Any I/O error occurs +return function( + packageDirectory: string?, + files: { string }, + options: { + writeToFile: boolean?, + force: boolean?, + } +): (boolean, string?) + packageDirectory = packageDirectory or process.cwd + local syncConfigPath = `{packageDirectory}{PLATFORM_SEP}default.project.json` + if fs.isFile(syncConfigPath) and not options.force then + return true, nil + end + + local syncConfigTree = {} :: Tree + + for _, file in files do + -- Remove the `.lua` or `.luau` file extension from the file name + local name = string.gsub(file, ".luau?$", "") + + if name == "init" then + syncConfigTree["$path"] = name + continue + end + + syncConfigTree[name] = { + ["$path"] = file, + } + end + + -- If there isn't a top level path, we mark the entire thing as a Folder + if not syncConfigTree["$path"] then + syncConfigTree["$className"] = "Folder" + end + + -- If the config tree does not include pesde's downloaded roblox dependencies + -- directory, we add it as an optional one for the future, once dependencies + -- are installed + if not syncConfigTree["roblox_packages"] then + syncConfigTree["roblox_packages"] = { + ["$path"] = { + optional = "roblox_packages", + }, + } + end + + -- Finally, we serialize the config to a JSON string and optionally write it + -- to the sync config path + local serializedConfig = serde.encode("json", { tree = syncConfigTree }, true) + if options.writeToFile then + fs.writeFile(syncConfigPath, serializedConfig) + end + + return true, serializedConfig +end diff --git a/.pesde/sourcemap_generator.luau b/.pesde/sourcemap_generator.luau new file mode 100644 index 0000000..87fdc48 --- /dev/null +++ b/.pesde/sourcemap_generator.luau @@ -0,0 +1,48 @@ +local fs = require("@lune/fs") +local process = require("@lune/process") +local serde = require("@lune/serde") +local stdio = require("@lune/stdio") + +local PLATFORM_SEP = if process.os == "windows" then "\\" else "/" + +-- A mapping of things to do depending on the file present +local PATH_ACTION_MAP: { [string]: (dir: string) -> number? } = { + ["default.project.json"] = function(dir) + return process.exec("rojo", { "sourcemap", dir }, { + cwd = process.cwd, + env = process.env, + stdio = "forward", + }).code + end, + + ["init.lua"] = function() + return stdio.write(serde.encode("json", { filePaths = { "init.lua" } }, false)) + end, + ["init.luau"] = function() + return stdio.write(serde.encode("json", { filePaths = { "init.luau" } }, false)) + end, +} + +--- Writes a Rojo sourcemap for the project in the provided directory or the current +--- working directory to standard output. + +--- ## Errors +--- * The current process lacks permissions to a file +--- * Failure to spawn `rojo` command +--- * Any I/O error occurs +return function(packageDirectory: string?): boolean + packageDirectory = packageDirectory or process.cwd + + -- We go through the action mappings in order of priority and check for the + -- file predicates, if present, we execute the action and report our status + for path, action in PATH_ACTION_MAP do + if fs.isFile(`{packageDirectory}{PLATFORM_SEP}{path}`) then + local status = action(packageDirectory) + return if status ~= nil then status == 0 else true + end + end + + -- If we reached so far, that must mean none of the file predicates matched, + -- so we return a `false` signifying an error + return false +end diff --git a/.vscode/settings.json b/.vscode/settings.json index 4f3cb02..23dedec 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,7 +1,11 @@ { - "luau-lsp.require.mode": "relativeToFile", - "luau-lsp.sourcemap.rojoProjectFile": "development.project.json", - "luau-lsp.require.directoryAliases": { - "@lune/": "~/.lune/.typedefs/0.7.11/" - } + "luau-lsp.sourcemap.rojoProjectFile": "test.project.json", + "luau-lsp.ignoreGlobs": [ + "**/DevPackages/**", + "**/Packages/**", + "**/.pesde/**", + "*.spec.luau", + "jest.config.luau" + ], + "editor.formatOnSave": true } \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index 873733b..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "version": "2.0.0", - "inputs": [ - { - "id": "ProjectName", - "description": "the project name", - "default": "", - "type": "promptString" - }, - { - "id": "ProjectBuild", - "description": "the project *.project.json map", - "default": "development", - "type": "promptString" - } - ], - "tasks": [ - // Repository Setup - { - "label": "[🚀 - Lune]: Setup Lune LSP Environment", - "type": "shell", - "command": "just setup ${input:ProjectName} lune", - "group": { "kind": "build" } - }, - - { - "label": "[🚀 - Rojo]: Update project sourcemap", - "type": "shell", - "command": "just update_sourcemap ${input:ProjectName}", - "group": { "kind": "build" }, - }, - - // Project Development - { - "label": "[🎈 - Rojo]: Start Rojo Server for a Project", - "type": "shell", - "command": "just serve ${input:ProjectName} ${input:ProjectBuild}", - "group": { "kind": "build" }, - }, - - { - "label": "[🎈 - Rojo]: Build Project into Roblox Place", - "type": "shell", - "command": "just build ${input:ProjectName} ${input:ProjectBuild}", - "group": { "kind": "build" }, - }, - - { - "label": "[🎈 - Wally]: Install Project packages", - "type": "shell", - "command": "just setup ${input:ProjectName} wally", - "group": { "kind": "build" }, - }, - - // CI Steps - { - "label": "[🚨 - Selene]: Selene Lint a project", - "type": "shell", - "command": "just lint ${input:ProjectName}", - "group": { "kind": "build" }, - }, - ] -} \ No newline at end of file diff --git a/Binaries/CameraProfiler.rbxm b/Binaries/CameraProfiler.rbxm deleted file mode 100644 index 1814ab6..0000000 Binary files a/Binaries/CameraProfiler.rbxm and /dev/null differ diff --git a/Binaries/ClassIndex.rbxm b/Binaries/ClassIndex.rbxm deleted file mode 100644 index 1e1ed7e..0000000 Binary files a/Binaries/ClassIndex.rbxm and /dev/null differ diff --git a/Binaries/Console.rbxm b/Binaries/Console.rbxm deleted file mode 100644 index 610ab46..0000000 Binary files a/Binaries/Console.rbxm and /dev/null differ diff --git a/Binaries/EmoticonReporter.rbxm b/Binaries/EmoticonReporter.rbxm deleted file mode 100644 index 7eaff90..0000000 Binary files a/Binaries/EmoticonReporter.rbxm and /dev/null differ diff --git a/Binaries/Iter.rbxm b/Binaries/Iter.rbxm deleted file mode 100644 index c659a42..0000000 Binary files a/Binaries/Iter.rbxm and /dev/null differ diff --git a/Binaries/RGBA.rbxm b/Binaries/RGBA.rbxm deleted file mode 100644 index 13f78ee..0000000 Binary files a/Binaries/RGBA.rbxm and /dev/null differ diff --git a/Binaries/RobloxControls.rbxm b/Binaries/RobloxControls.rbxm deleted file mode 100644 index 72ca69f..0000000 Binary files a/Binaries/RobloxControls.rbxm and /dev/null differ diff --git a/Binaries/Runtime.rbxm b/Binaries/Runtime.rbxm deleted file mode 100644 index 637e73a..0000000 Binary files a/Binaries/Runtime.rbxm and /dev/null differ diff --git a/Binaries/State.rbxm b/Binaries/State.rbxm deleted file mode 100644 index c4c0d14..0000000 Binary files a/Binaries/State.rbxm and /dev/null differ diff --git a/Binaries/Windline.rbxm b/Binaries/Windline.rbxm deleted file mode 100644 index 6c1da2e..0000000 Binary files a/Binaries/Windline.rbxm and /dev/null differ diff --git a/Boilerplate/Source/init.luau b/Boilerplate/Source/init.luau deleted file mode 100644 index f0dd70e..0000000 --- a/Boilerplate/Source/init.luau +++ /dev/null @@ -1,11 +0,0 @@ ---[[ - @class Project - - Summary -]] -local Project = {} - -Project.Public = {} -Project.Private = {} - -return Project.Public \ No newline at end of file diff --git a/Boilerplate/Source/init.spec.luau b/Boilerplate/Source/init.spec.luau deleted file mode 100644 index 65d7220..0000000 --- a/Boilerplate/Source/init.spec.luau +++ /dev/null @@ -1,3 +0,0 @@ -return function() - -end \ No newline at end of file diff --git a/Boilerplate/Tests/Runtime.server.luau b/Boilerplate/Tests/Runtime.server.luau deleted file mode 100644 index 16785c6..0000000 --- a/Boilerplate/Tests/Runtime.server.luau +++ /dev/null @@ -1,5 +0,0 @@ -local EXECUTE_PROJECT_TESTEZ_TESTS = true - -if EXECUTE_PROJECT_TESTEZ_TESTS then - return -end \ No newline at end of file diff --git a/Boilerplate/aftman.toml b/Boilerplate/aftman.toml deleted file mode 100644 index 349f6b9..0000000 --- a/Boilerplate/aftman.toml +++ /dev/null @@ -1,9 +0,0 @@ -# This file lists tools managed by Aftman, a cross-platform toolchain manager. -# For more information, see https://github.com/LPGhatguy/aftman - -# To add a new tool, add an entry to this table. - -[tools] -rojo = "rojo-rbx/rojo@7.3.0" -selene = "Kampfkarren/selene@0.25.0" -wally = "UpliftGames/wally@0.3.2" \ No newline at end of file diff --git a/Boilerplate/default.project.json b/Boilerplate/default.project.json deleted file mode 100644 index 0ce237c..0000000 --- a/Boilerplate/default.project.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "name": "project", - "tree": { - "$path": "Source" - } -} \ No newline at end of file diff --git a/Boilerplate/development.project.json b/Boilerplate/development.project.json deleted file mode 100644 index 13da4ca..0000000 --- a/Boilerplate/development.project.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "name": "project", - "tree": { - "$className": "DataModel", - - "Players": { - "$className": "Players", - "$properties": { - "CharacterAutoLoads": false - } - }, - - "ReplicatedStorage": { - "$className": "ReplicatedStorage", - "$ignoreUnknownInstances": true, - - "Packages": { - "$className": "Folder", - "$path": "Packages", - - "Project": { - "$path": "Source" - } - }, - - "DevPackages": { - "$className": "Folder", - "$path": "DevPackages" - } - }, - - "ServerScriptService": { - "$className": "ServerScriptService", - "$ignoreUnknownInstances": true, - "$path": "Tests" - } - } -} \ No newline at end of file diff --git a/Boilerplate/roblox.yml b/Boilerplate/roblox.yml deleted file mode 100644 index e4089d3..0000000 --- a/Boilerplate/roblox.yml +++ /dev/null @@ -1,16959 +0,0 @@ -# This file was @generated by generate-roblox-std at 2023-04-11 16:38:39.388332415 +01:00 -base: luau -name: roblox -globals: - Axes.new: - args: - - type: '...' - must_use: true - BrickColor.Black: - args: [] - must_use: true - BrickColor.Blue: - args: [] - must_use: true - BrickColor.DarkGray: - args: [] - must_use: true - BrickColor.Gray: - args: [] - must_use: true - BrickColor.Green: - args: [] - must_use: true - BrickColor.Red: - args: [] - must_use: true - BrickColor.White: - args: [] - must_use: true - BrickColor.Yellow: - args: [] - must_use: true - BrickColor.new: - args: - - type: any - - required: false - type: number - - required: false - type: number - must_use: true - BrickColor.palette: - args: - - type: number - must_use: true - BrickColor.random: - args: [] - must_use: true - CFrame.Angles: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - CFrame.fromAxisAngle: - args: - - type: - display: Vector3 - - type: number - must_use: true - CFrame.fromEulerAngles: - args: - - type: number - - type: number - - type: number - - required: false - type: - display: RotationOrder - must_use: true - CFrame.fromEulerAnglesXYZ: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.fromEulerAnglesYXZ: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.fromMatrix: - args: - - type: - display: Vector3 - - type: - display: Vector3 - - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - CFrame.fromOrientation: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.identity: - property: read-only - CFrame.lookAt: - args: - - type: - display: Vector3 - - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - CFrame.new: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - CatalogSearchParams.new: - args: [] - must_use: true - Color3.fromHSV: - args: - - type: number - - type: number - - type: number - must_use: true - Color3.fromHex: - args: - - type: string - must_use: true - Color3.fromRGB: - args: - - type: number - - type: number - - type: number - must_use: true - Color3.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Color3.toHSV: - args: - - type: - display: Color3 - must_use: true - ColorSequence.new: - args: - - type: any - - required: false - type: - display: Color3 - must_use: true - ColorSequenceKeypoint.new: - args: - - type: number - - type: - display: Color3 - must_use: true - DateTime.fromIsoDate: - args: - - type: string - must_use: true - DateTime.fromLocalTime: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - DateTime.fromUniversalTime: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - DateTime.fromUnixTimestamp: - args: - - type: number - must_use: true - DateTime.fromUnixTimestampMillis: - args: - - type: number - must_use: true - DateTime.now: - args: [] - must_use: true - DebuggerManager: - args: [] - must_use: true - DockWidgetPluginGuiInfo.new: - args: - - required: false - type: - display: InitialDockState - - required: false - type: bool - - required: false - type: bool - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Enum.AccessoryType.Back: - struct: EnumItem - Enum.AccessoryType.DressSkirt: - struct: EnumItem - Enum.AccessoryType.Eyebrow: - struct: EnumItem - Enum.AccessoryType.Eyelash: - struct: EnumItem - Enum.AccessoryType.Face: - struct: EnumItem - Enum.AccessoryType.Front: - struct: EnumItem - Enum.AccessoryType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AccessoryType.Hair: - struct: EnumItem - Enum.AccessoryType.Hat: - struct: EnumItem - Enum.AccessoryType.Jacket: - struct: EnumItem - Enum.AccessoryType.LeftShoe: - struct: EnumItem - Enum.AccessoryType.Neck: - struct: EnumItem - Enum.AccessoryType.Pants: - struct: EnumItem - Enum.AccessoryType.RightShoe: - struct: EnumItem - Enum.AccessoryType.Shirt: - struct: EnumItem - Enum.AccessoryType.Shorts: - struct: EnumItem - Enum.AccessoryType.Shoulder: - struct: EnumItem - Enum.AccessoryType.Sweater: - struct: EnumItem - Enum.AccessoryType.TShirt: - struct: EnumItem - Enum.AccessoryType.TeeShirt: - struct: EnumItem - deprecated: - message: Enum.AccessoryType.TeeShirt was replaced with Enum.AccessoryType.TShirt - replace: - - Enum.AccessoryType.TShirt - Enum.AccessoryType.Unknown: - struct: EnumItem - Enum.AccessoryType.Waist: - struct: EnumItem - Enum.ActionType.Draw: - struct: EnumItem - Enum.ActionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActionType.Lose: - struct: EnumItem - Enum.ActionType.Nothing: - struct: EnumItem - Enum.ActionType.Pause: - struct: EnumItem - Enum.ActionType.Win: - struct: EnumItem - Enum.ActuatorRelativeTo.Attachment0: - struct: EnumItem - Enum.ActuatorRelativeTo.Attachment1: - struct: EnumItem - Enum.ActuatorRelativeTo.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActuatorRelativeTo.World: - struct: EnumItem - Enum.ActuatorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActuatorType.Motor: - struct: EnumItem - Enum.ActuatorType.None: - struct: EnumItem - Enum.ActuatorType.Servo: - struct: EnumItem - Enum.AdPortalStatus.Active: - struct: EnumItem - Enum.AdPortalStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdPortalStatus.Inactive: - struct: EnumItem - Enum.AdPortalStatus.Invalid: - struct: EnumItem - Enum.AdPortalType.Forward: - struct: EnumItem - Enum.AdPortalType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdPortalType.Return: - struct: EnumItem - Enum.AdShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdShape.HorizontalRectangle: - struct: EnumItem - Enum.AdTeleportMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdTeleportMethod.InGameMenuBackButton: - struct: EnumItem - Enum.AdTeleportMethod.PortalForward: - struct: EnumItem - Enum.AdTeleportMethod.PortalReturn: - struct: EnumItem - Enum.AdTeleportMethod.UIBackButton: - struct: EnumItem - Enum.AdTeleportMethod.Undefined: - struct: EnumItem - Enum.AdUnitStatus.Active: - struct: EnumItem - Enum.AdUnitStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdUnitStatus.Inactive: - struct: EnumItem - Enum.AdornCullingMode.Automatic: - struct: EnumItem - Enum.AdornCullingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdornCullingMode.Never: - struct: EnumItem - Enum.AlignType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AlignType.Parallel: - struct: EnumItem - Enum.AlignType.Perpendicular: - struct: EnumItem - Enum.AlphaMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AlphaMode.Overlay: - struct: EnumItem - Enum.AlphaMode.Transparency: - struct: EnumItem - Enum.AnalyticsEconomyAction.Acquire: - struct: EnumItem - Enum.AnalyticsEconomyAction.Default: - struct: EnumItem - Enum.AnalyticsEconomyAction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnalyticsEconomyAction.Spend: - struct: EnumItem - Enum.AnalyticsLogLevel.Debug: - struct: EnumItem - Enum.AnalyticsLogLevel.Error: - struct: EnumItem - Enum.AnalyticsLogLevel.Fatal: - struct: EnumItem - Enum.AnalyticsLogLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnalyticsLogLevel.Information: - struct: EnumItem - Enum.AnalyticsLogLevel.Trace: - struct: EnumItem - Enum.AnalyticsLogLevel.Warning: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Abandon: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Begin: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Complete: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Default: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Fail: - struct: EnumItem - Enum.AnalyticsProgressionStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnimationPriority.Action: - struct: EnumItem - Enum.AnimationPriority.Action2: - struct: EnumItem - Enum.AnimationPriority.Action3: - struct: EnumItem - Enum.AnimationPriority.Action4: - struct: EnumItem - Enum.AnimationPriority.Core: - struct: EnumItem - Enum.AnimationPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnimationPriority.Idle: - struct: EnumItem - Enum.AnimationPriority.Movement: - struct: EnumItem - Enum.AnimatorRetargetingMode.Default: - struct: EnumItem - Enum.AnimatorRetargetingMode.Disabled: - struct: EnumItem - Enum.AnimatorRetargetingMode.Enabled: - struct: EnumItem - Enum.AnimatorRetargetingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellActionType.AvatarEditorPageLoaded: - struct: EnumItem - Enum.AppShellActionType.GamePageLoaded: - struct: EnumItem - Enum.AppShellActionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellActionType.HomePageLoaded: - struct: EnumItem - Enum.AppShellActionType.None: - struct: EnumItem - Enum.AppShellActionType.OpenApp: - struct: EnumItem - Enum.AppShellActionType.ReadConversation: - struct: EnumItem - Enum.AppShellActionType.TapAvatarTab: - struct: EnumItem - Enum.AppShellActionType.TapChatTab: - struct: EnumItem - Enum.AppShellActionType.TapConversationEntry: - struct: EnumItem - Enum.AppShellActionType.TapGamePageTab: - struct: EnumItem - Enum.AppShellActionType.TapHomePageTab: - struct: EnumItem - Enum.AppShellFeature.AvatarEditor: - struct: EnumItem - Enum.AppShellFeature.Chat: - struct: EnumItem - Enum.AppShellFeature.GamePage: - struct: EnumItem - Enum.AppShellFeature.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellFeature.HomePage: - struct: EnumItem - Enum.AppShellFeature.Landing: - struct: EnumItem - Enum.AppShellFeature.More: - struct: EnumItem - Enum.AppShellFeature.None: - struct: EnumItem - Enum.AppUpdateStatus.Available: - struct: EnumItem - Enum.AppUpdateStatus.Failed: - struct: EnumItem - Enum.AppUpdateStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppUpdateStatus.NotAvailable: - struct: EnumItem - Enum.AppUpdateStatus.NotSupported: - struct: EnumItem - Enum.AppUpdateStatus.Unknown: - struct: EnumItem - Enum.ApplyStrokeMode.Border: - struct: EnumItem - Enum.ApplyStrokeMode.Contextual: - struct: EnumItem - Enum.ApplyStrokeMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AspectType.FitWithinMaxSize: - struct: EnumItem - Enum.AspectType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AspectType.ScaleWithParentSize: - struct: EnumItem - Enum.AssetFetchStatus.Failure: - struct: EnumItem - Enum.AssetFetchStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AssetFetchStatus.Loading: - struct: EnumItem - Enum.AssetFetchStatus.None: - struct: EnumItem - Enum.AssetFetchStatus.Success: - struct: EnumItem - Enum.AssetFetchStatus.TimedOut: - struct: EnumItem - Enum.AssetType.Animation: - struct: EnumItem - Enum.AssetType.Audio: - struct: EnumItem - Enum.AssetType.BackAccessory: - struct: EnumItem - Enum.AssetType.Badge: - struct: EnumItem - Enum.AssetType.ClimbAnimation: - struct: EnumItem - Enum.AssetType.DeathAnimation: - struct: EnumItem - Enum.AssetType.Decal: - struct: EnumItem - Enum.AssetType.DressSkirtAccessory: - struct: EnumItem - Enum.AssetType.DynamicHead: - struct: EnumItem - Enum.AssetType.EarAccessory: - struct: EnumItem - Enum.AssetType.EmoteAnimation: - struct: EnumItem - Enum.AssetType.EyeAccessory: - struct: EnumItem - Enum.AssetType.EyebrowAccessory: - struct: EnumItem - Enum.AssetType.EyelashAccessory: - struct: EnumItem - Enum.AssetType.Face: - struct: EnumItem - Enum.AssetType.FaceAccessory: - struct: EnumItem - Enum.AssetType.FallAnimation: - struct: EnumItem - Enum.AssetType.FontFamily: - struct: EnumItem - Enum.AssetType.FrontAccessory: - struct: EnumItem - Enum.AssetType.GamePass: - struct: EnumItem - Enum.AssetType.Gear: - struct: EnumItem - Enum.AssetType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AssetType.HairAccessory: - struct: EnumItem - Enum.AssetType.Hat: - struct: EnumItem - Enum.AssetType.Head: - struct: EnumItem - Enum.AssetType.IdleAnimation: - struct: EnumItem - Enum.AssetType.Image: - struct: EnumItem - Enum.AssetType.JacketAccessory: - struct: EnumItem - Enum.AssetType.JumpAnimation: - struct: EnumItem - Enum.AssetType.LeftArm: - struct: EnumItem - Enum.AssetType.LeftLeg: - struct: EnumItem - Enum.AssetType.LeftShoeAccessory: - struct: EnumItem - Enum.AssetType.Lua: - struct: EnumItem - Enum.AssetType.Mesh: - struct: EnumItem - Enum.AssetType.MeshPart: - struct: EnumItem - Enum.AssetType.Model: - struct: EnumItem - Enum.AssetType.MoodAnimation: - struct: EnumItem - Enum.AssetType.NeckAccessory: - struct: EnumItem - Enum.AssetType.Package: - struct: EnumItem - Enum.AssetType.Pants: - struct: EnumItem - Enum.AssetType.PantsAccessory: - struct: EnumItem - Enum.AssetType.Place: - struct: EnumItem - Enum.AssetType.Plugin: - struct: EnumItem - Enum.AssetType.PoseAnimation: - struct: EnumItem - Enum.AssetType.RightArm: - struct: EnumItem - Enum.AssetType.RightLeg: - struct: EnumItem - Enum.AssetType.RightShoeAccessory: - struct: EnumItem - Enum.AssetType.RunAnimation: - struct: EnumItem - Enum.AssetType.Shirt: - struct: EnumItem - Enum.AssetType.ShirtAccessory: - struct: EnumItem - Enum.AssetType.ShortsAccessory: - struct: EnumItem - Enum.AssetType.ShoulderAccessory: - struct: EnumItem - Enum.AssetType.SweaterAccessory: - struct: EnumItem - Enum.AssetType.SwimAnimation: - struct: EnumItem - Enum.AssetType.TShirt: - struct: EnumItem - Enum.AssetType.TShirtAccessory: - struct: EnumItem - Enum.AssetType.TeeShirt: - struct: EnumItem - deprecated: - message: Enum.AssetType.TeeShirt was replaced with Enum.AssetType.TShirt - replace: - - Enum.AssetType.TShirt - Enum.AssetType.TeeShirtAccessory: - struct: EnumItem - deprecated: - message: Enum.AssetType.TeeShirtAccessory was replaced with Enum.AssetType.TShirtAccessory - replace: - - Enum.AssetType.TShirtAccessory - Enum.AssetType.Torso: - struct: EnumItem - Enum.AssetType.Video: - struct: EnumItem - Enum.AssetType.WaistAccessory: - struct: EnumItem - Enum.AssetType.WalkAnimation: - struct: EnumItem - Enum.AssetTypeVerification.Always: - struct: EnumItem - Enum.AssetTypeVerification.ClientOnly: - struct: EnumItem - Enum.AssetTypeVerification.Default: - struct: EnumItem - Enum.AssetTypeVerification.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AudioSubType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AudioSubType.Music: - struct: EnumItem - Enum.AudioSubType.SoundEffect: - struct: EnumItem - Enum.AutoIndentRule.Absolute: - struct: EnumItem - Enum.AutoIndentRule.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AutoIndentRule.Off: - struct: EnumItem - Enum.AutoIndentRule.Relative: - struct: EnumItem - Enum.AutomaticSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AutomaticSize.None: - struct: EnumItem - Enum.AutomaticSize.X: - struct: EnumItem - Enum.AutomaticSize.XY: - struct: EnumItem - Enum.AutomaticSize.Y: - struct: EnumItem - Enum.AvatarAssetType.BackAccessory: - struct: EnumItem - Enum.AvatarAssetType.ClimbAnimation: - struct: EnumItem - Enum.AvatarAssetType.DressSkirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.DynamicHead: - struct: EnumItem - Enum.AvatarAssetType.EmoteAnimation: - struct: EnumItem - Enum.AvatarAssetType.EyebrowAccessory: - struct: EnumItem - Enum.AvatarAssetType.EyelashAccessory: - struct: EnumItem - Enum.AvatarAssetType.Face: - struct: EnumItem - Enum.AvatarAssetType.FaceAccessory: - struct: EnumItem - Enum.AvatarAssetType.FallAnimation: - struct: EnumItem - Enum.AvatarAssetType.FrontAccessory: - struct: EnumItem - Enum.AvatarAssetType.Gear: - struct: EnumItem - Enum.AvatarAssetType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarAssetType.HairAccessory: - struct: EnumItem - Enum.AvatarAssetType.Hat: - struct: EnumItem - Enum.AvatarAssetType.Head: - struct: EnumItem - Enum.AvatarAssetType.IdleAnimation: - struct: EnumItem - Enum.AvatarAssetType.JacketAccessory: - struct: EnumItem - Enum.AvatarAssetType.JumpAnimation: - struct: EnumItem - Enum.AvatarAssetType.LeftArm: - struct: EnumItem - Enum.AvatarAssetType.LeftLeg: - struct: EnumItem - Enum.AvatarAssetType.LeftShoeAccessory: - struct: EnumItem - Enum.AvatarAssetType.MoodAnimation: - struct: EnumItem - Enum.AvatarAssetType.NeckAccessory: - struct: EnumItem - Enum.AvatarAssetType.Pants: - struct: EnumItem - Enum.AvatarAssetType.PantsAccessory: - struct: EnumItem - Enum.AvatarAssetType.RightArm: - struct: EnumItem - Enum.AvatarAssetType.RightLeg: - struct: EnumItem - Enum.AvatarAssetType.RightShoeAccessory: - struct: EnumItem - Enum.AvatarAssetType.RunAnimation: - struct: EnumItem - Enum.AvatarAssetType.Shirt: - struct: EnumItem - Enum.AvatarAssetType.ShirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.ShortsAccessory: - struct: EnumItem - Enum.AvatarAssetType.ShoulderAccessory: - struct: EnumItem - Enum.AvatarAssetType.SweaterAccessory: - struct: EnumItem - Enum.AvatarAssetType.SwimAnimation: - struct: EnumItem - Enum.AvatarAssetType.TShirt: - struct: EnumItem - Enum.AvatarAssetType.TShirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.TeeShirtAccessory: - struct: EnumItem - deprecated: - message: Enum.AvatarAssetType.TeeShirtAccessory was replaced with Enum.AvatarAssetType.TShirtAccessory - replace: - - Enum.AvatarAssetType.TShirtAccessory - Enum.AvatarAssetType.Torso: - struct: EnumItem - Enum.AvatarAssetType.WaistAccessory: - struct: EnumItem - Enum.AvatarAssetType.WalkAnimation: - struct: EnumItem - Enum.AvatarContextMenuOption.Chat: - struct: EnumItem - Enum.AvatarContextMenuOption.Emote: - struct: EnumItem - Enum.AvatarContextMenuOption.Friend: - struct: EnumItem - Enum.AvatarContextMenuOption.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarContextMenuOption.InspectMenu: - struct: EnumItem - Enum.AvatarItemType.Asset: - struct: EnumItem - Enum.AvatarItemType.Bundle: - struct: EnumItem - Enum.AvatarItemType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarPromptResult.Failed: - struct: EnumItem - Enum.AvatarPromptResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarPromptResult.PermissionDenied: - struct: EnumItem - Enum.AvatarPromptResult.Success: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.Closeup: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.FullBody: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Axis.Back: - struct: EnumItem - deprecated: - message: Enum.Axis.Back was replaced with Enum.Axis.Z - replace: - - Enum.Axis.Z - Enum.Axis.Bottom: - struct: EnumItem - deprecated: - message: Enum.Axis.Bottom was replaced with Enum.Axis.Y - replace: - - Enum.Axis.Y - Enum.Axis.Front: - struct: EnumItem - deprecated: - message: Enum.Axis.Front was replaced with Enum.Axis.Z - replace: - - Enum.Axis.Z - Enum.Axis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Axis.Left: - struct: EnumItem - deprecated: - message: Enum.Axis.Left was replaced with Enum.Axis.X - replace: - - Enum.Axis.X - Enum.Axis.Right: - struct: EnumItem - deprecated: - message: Enum.Axis.Right was replaced with Enum.Axis.X - replace: - - Enum.Axis.X - Enum.Axis.Top: - struct: EnumItem - deprecated: - message: Enum.Axis.Top was replaced with Enum.Axis.Y - replace: - - Enum.Axis.Y - Enum.Axis.X: - struct: EnumItem - Enum.Axis.Y: - struct: EnumItem - Enum.Axis.Z: - struct: EnumItem - Enum.BinType.Clone: - struct: EnumItem - Enum.BinType.GameTool: - struct: EnumItem - Enum.BinType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BinType.Grab: - struct: EnumItem - Enum.BinType.Hammer: - struct: EnumItem - Enum.BinType.Laser: - struct: EnumItem - deprecated: - message: Enum.BinType.Laser was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BinType.Rocket: - struct: EnumItem - deprecated: - message: Enum.BinType.Rocket was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BinType.Script: - struct: EnumItem - Enum.BinType.Slingshot: - struct: EnumItem - deprecated: - message: Enum.BinType.Slingshot was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BodyPart.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BodyPart.Head: - struct: EnumItem - Enum.BodyPart.LeftArm: - struct: EnumItem - Enum.BodyPart.LeftLeg: - struct: EnumItem - Enum.BodyPart.RightArm: - struct: EnumItem - Enum.BodyPart.RightLeg: - struct: EnumItem - Enum.BodyPart.Torso: - struct: EnumItem - Enum.BodyPartR15.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BodyPartR15.Head: - struct: EnumItem - Enum.BodyPartR15.LeftFoot: - struct: EnumItem - Enum.BodyPartR15.LeftHand: - struct: EnumItem - Enum.BodyPartR15.LeftLowerArm: - struct: EnumItem - Enum.BodyPartR15.LeftLowerLeg: - struct: EnumItem - Enum.BodyPartR15.LeftUpperArm: - struct: EnumItem - Enum.BodyPartR15.LeftUpperLeg: - struct: EnumItem - Enum.BodyPartR15.LowerTorso: - struct: EnumItem - Enum.BodyPartR15.RightFoot: - struct: EnumItem - Enum.BodyPartR15.RightHand: - struct: EnumItem - Enum.BodyPartR15.RightLowerArm: - struct: EnumItem - Enum.BodyPartR15.RightLowerLeg: - struct: EnumItem - Enum.BodyPartR15.RightUpperArm: - struct: EnumItem - Enum.BodyPartR15.RightUpperLeg: - struct: EnumItem - Enum.BodyPartR15.RootPart: - struct: EnumItem - Enum.BodyPartR15.Unknown: - struct: EnumItem - Enum.BodyPartR15.UpperTorso: - struct: EnumItem - Enum.BorderMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BorderMode.Inset: - struct: EnumItem - Enum.BorderMode.Middle: - struct: EnumItem - Enum.BorderMode.Outline: - struct: EnumItem - Enum.BreakReason.Error: - struct: EnumItem - Enum.BreakReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BreakReason.Other: - struct: EnumItem - Enum.BreakReason.SpecialBreakpoint: - struct: EnumItem - Enum.BreakReason.UserBreakpoint: - struct: EnumItem - Enum.BreakpointRemoveReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BreakpointRemoveReason.Requested: - struct: EnumItem - Enum.BreakpointRemoveReason.ScriptChanged: - struct: EnumItem - Enum.BreakpointRemoveReason.ScriptRemoved: - struct: EnumItem - Enum.BulkMoveMode.FireAllEvents: - struct: EnumItem - Enum.BulkMoveMode.FireCFrameChanged: - struct: EnumItem - Enum.BulkMoveMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BundleType.Animations: - struct: EnumItem - Enum.BundleType.BodyParts: - struct: EnumItem - Enum.BundleType.DynamicHead: - struct: EnumItem - Enum.BundleType.DynamicHeadAvatar: - struct: EnumItem - Enum.BundleType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BundleType.Shoes: - struct: EnumItem - Enum.Button.Dismount: - struct: EnumItem - Enum.Button.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Button.Jump: - struct: EnumItem - Enum.ButtonStyle.Custom: - struct: EnumItem - Enum.ButtonStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ButtonStyle.RobloxButton: - struct: EnumItem - Enum.ButtonStyle.RobloxButtonDefault: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundButton: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundDefaultButton: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundDropdownButton: - struct: EnumItem - Enum.CageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CageType.Inner: - struct: EnumItem - Enum.CageType.Outer: - struct: EnumItem - Enum.CameraMode.Classic: - struct: EnumItem - Enum.CameraMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraMode.LockFirstPerson: - struct: EnumItem - Enum.CameraPanMode.Classic: - struct: EnumItem - Enum.CameraPanMode.EdgeBump: - struct: EnumItem - Enum.CameraPanMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraType.Attach: - struct: EnumItem - Enum.CameraType.Custom: - struct: EnumItem - Enum.CameraType.Fixed: - struct: EnumItem - Enum.CameraType.Follow: - struct: EnumItem - Enum.CameraType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraType.Orbital: - struct: EnumItem - Enum.CameraType.Scriptable: - struct: EnumItem - Enum.CameraType.Track: - struct: EnumItem - Enum.CameraType.Watch: - struct: EnumItem - Enum.CatalogCategoryFilter.Collectibles: - struct: EnumItem - Enum.CatalogCategoryFilter.CommunityCreations: - struct: EnumItem - Enum.CatalogCategoryFilter.Featured: - struct: EnumItem - Enum.CatalogCategoryFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogCategoryFilter.None: - struct: EnumItem - Enum.CatalogCategoryFilter.Premium: - struct: EnumItem - Enum.CatalogCategoryFilter.Recommended: - struct: EnumItem - Enum.CatalogSortAggregation.AllTime: - struct: EnumItem - Enum.CatalogSortAggregation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogSortAggregation.Past12Hours: - struct: EnumItem - Enum.CatalogSortAggregation.Past3Days: - struct: EnumItem - Enum.CatalogSortAggregation.PastDay: - struct: EnumItem - Enum.CatalogSortAggregation.PastMonth: - struct: EnumItem - Enum.CatalogSortAggregation.PastWeek: - struct: EnumItem - Enum.CatalogSortType.Bestselling: - struct: EnumItem - Enum.CatalogSortType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogSortType.MostFavorited: - struct: EnumItem - Enum.CatalogSortType.PriceHighToLow: - struct: EnumItem - Enum.CatalogSortType.PriceLowToHigh: - struct: EnumItem - Enum.CatalogSortType.RecentlyCreated: - struct: EnumItem - Enum.CatalogSortType.RecentlyUpdated: - struct: EnumItem - deprecated: - message: Enum.CatalogSortType.RecentlyUpdated was replaced with Enum.CatalogSortType.RecentlyCreated - replace: - - Enum.CatalogSortType.RecentlyCreated - Enum.CatalogSortType.Relevance: - struct: EnumItem - Enum.CellBlock.CornerWedge: - struct: EnumItem - Enum.CellBlock.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellBlock.HorizontalWedge: - struct: EnumItem - Enum.CellBlock.InverseCornerWedge: - struct: EnumItem - Enum.CellBlock.Solid: - struct: EnumItem - Enum.CellBlock.VerticalWedge: - struct: EnumItem - Enum.CellMaterial.Aluminum: - struct: EnumItem - Enum.CellMaterial.Asphalt: - struct: EnumItem - Enum.CellMaterial.BluePlastic: - struct: EnumItem - Enum.CellMaterial.Brick: - struct: EnumItem - Enum.CellMaterial.Cement: - struct: EnumItem - Enum.CellMaterial.CinderBlock: - struct: EnumItem - Enum.CellMaterial.Empty: - struct: EnumItem - Enum.CellMaterial.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellMaterial.Gold: - struct: EnumItem - Enum.CellMaterial.Granite: - struct: EnumItem - Enum.CellMaterial.Grass: - struct: EnumItem - Enum.CellMaterial.Gravel: - struct: EnumItem - Enum.CellMaterial.Iron: - struct: EnumItem - Enum.CellMaterial.MossyStone: - struct: EnumItem - Enum.CellMaterial.RedPlastic: - struct: EnumItem - Enum.CellMaterial.Sand: - struct: EnumItem - Enum.CellMaterial.Water: - struct: EnumItem - Enum.CellMaterial.WoodLog: - struct: EnumItem - Enum.CellMaterial.WoodPlank: - struct: EnumItem - Enum.CellOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellOrientation.NegX: - struct: EnumItem - Enum.CellOrientation.NegZ: - struct: EnumItem - Enum.CellOrientation.X: - struct: EnumItem - Enum.CellOrientation.Z: - struct: EnumItem - Enum.CenterDialogType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CenterDialogType.ModalDialog: - struct: EnumItem - Enum.CenterDialogType.PlayerInitiatedDialog: - struct: EnumItem - Enum.CenterDialogType.QuitDialog: - struct: EnumItem - Enum.CenterDialogType.UnsolicitedDialog: - struct: EnumItem - Enum.ChatCallbackType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatCallbackType.OnClientFormattingMessage: - struct: EnumItem - Enum.ChatCallbackType.OnClientSendingMessage: - struct: EnumItem - Enum.ChatCallbackType.OnCreatingChatWindow: - struct: EnumItem - Enum.ChatCallbackType.OnServerReceivingMessage: - struct: EnumItem - Enum.ChatColor.Blue: - struct: EnumItem - Enum.ChatColor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatColor.Green: - struct: EnumItem - Enum.ChatColor.Red: - struct: EnumItem - Enum.ChatColor.White: - struct: EnumItem - Enum.ChatMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatMode.Menu: - struct: EnumItem - Enum.ChatMode.TextAndMenu: - struct: EnumItem - Enum.ChatPrivacyMode.AllUsers: - struct: EnumItem - Enum.ChatPrivacyMode.Friends: - struct: EnumItem - Enum.ChatPrivacyMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatPrivacyMode.NoOne: - struct: EnumItem - Enum.ChatStyle.Bubble: - struct: EnumItem - Enum.ChatStyle.Classic: - struct: EnumItem - Enum.ChatStyle.ClassicAndBubble: - struct: EnumItem - Enum.ChatStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatVersion.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatVersion.LegacyChatService: - struct: EnumItem - Enum.ChatVersion.TextChatService: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Default: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Disabled: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Enabled: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CollisionFidelity.Box: - struct: EnumItem - Enum.CollisionFidelity.Default: - struct: EnumItem - Enum.CollisionFidelity.DynamicPreciseConvexDecomposition: - struct: EnumItem - Enum.CollisionFidelity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CollisionFidelity.Hull: - struct: EnumItem - Enum.CollisionFidelity.PreciseConvexDecomposition: - struct: EnumItem - Enum.CommandPermission.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CommandPermission.LocalUser: - struct: EnumItem - Enum.CommandPermission.Plugin: - struct: EnumItem - Enum.CompletionItemKind.Class: - struct: EnumItem - Enum.CompletionItemKind.Color: - struct: EnumItem - Enum.CompletionItemKind.Constant: - struct: EnumItem - Enum.CompletionItemKind.Constructor: - struct: EnumItem - Enum.CompletionItemKind.Enum: - struct: EnumItem - Enum.CompletionItemKind.EnumMember: - struct: EnumItem - Enum.CompletionItemKind.Event: - struct: EnumItem - Enum.CompletionItemKind.Field: - struct: EnumItem - Enum.CompletionItemKind.File: - struct: EnumItem - Enum.CompletionItemKind.Folder: - struct: EnumItem - Enum.CompletionItemKind.Function: - struct: EnumItem - Enum.CompletionItemKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionItemKind.Interface: - struct: EnumItem - Enum.CompletionItemKind.Keyword: - struct: EnumItem - Enum.CompletionItemKind.Method: - struct: EnumItem - Enum.CompletionItemKind.Module: - struct: EnumItem - Enum.CompletionItemKind.Operator: - struct: EnumItem - Enum.CompletionItemKind.Property: - struct: EnumItem - Enum.CompletionItemKind.Reference: - struct: EnumItem - Enum.CompletionItemKind.Snippet: - struct: EnumItem - Enum.CompletionItemKind.Struct: - struct: EnumItem - Enum.CompletionItemKind.Text: - struct: EnumItem - Enum.CompletionItemKind.TypeParameter: - struct: EnumItem - Enum.CompletionItemKind.Unit: - struct: EnumItem - Enum.CompletionItemKind.Value: - struct: EnumItem - Enum.CompletionItemKind.Variable: - struct: EnumItem - Enum.CompletionItemTag.AddParens: - struct: EnumItem - Enum.CompletionItemTag.ClientServerBoundaryViolation: - struct: EnumItem - Enum.CompletionItemTag.CommandLinePermissions: - struct: EnumItem - Enum.CompletionItemTag.Deprecated: - struct: EnumItem - Enum.CompletionItemTag.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionItemTag.IncorrectIndexType: - struct: EnumItem - Enum.CompletionItemTag.PluginPermissions: - struct: EnumItem - Enum.CompletionItemTag.PutCursorInParens: - struct: EnumItem - Enum.CompletionItemTag.RobloxPermissions: - struct: EnumItem - Enum.CompletionItemTag.TypeCorrect: - struct: EnumItem - Enum.CompletionTriggerKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionTriggerKind.Invoked: - struct: EnumItem - Enum.CompletionTriggerKind.TriggerCharacter: - struct: EnumItem - Enum.CompletionTriggerKind.TriggerForIncompleteCompletions: - struct: EnumItem - Enum.ComputerCameraMovementMode.CameraToggle: - struct: EnumItem - Enum.ComputerCameraMovementMode.Classic: - struct: EnumItem - Enum.ComputerCameraMovementMode.Default: - struct: EnumItem - Enum.ComputerCameraMovementMode.Follow: - struct: EnumItem - Enum.ComputerCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ComputerCameraMovementMode.Orbital: - struct: EnumItem - Enum.ComputerMovementMode.ClickToMove: - struct: EnumItem - Enum.ComputerMovementMode.Default: - struct: EnumItem - Enum.ComputerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ComputerMovementMode.KeyboardMouse: - struct: EnumItem - Enum.ConnectionError.DisconnectBadhash: - struct: EnumItem - Enum.ConnectionError.DisconnectBlockedIP: - struct: EnumItem - Enum.ConnectionError.DisconnectBySecurityPolicy: - struct: EnumItem - Enum.ConnectionError.DisconnectClientFailure: - struct: EnumItem - Enum.ConnectionError.DisconnectClientRequest: - struct: EnumItem - Enum.ConnectionError.DisconnectCloudEditKick: - struct: EnumItem - Enum.ConnectionError.DisconnectConnectionLost: - struct: EnumItem - Enum.ConnectionError.DisconnectDevMaintenance: - struct: EnumItem - Enum.ConnectionError.DisconnectDuplicatePlayer: - struct: EnumItem - Enum.ConnectionError.DisconnectDuplicateTicket: - struct: EnumItem - Enum.ConnectionError.DisconnectErrors: - struct: EnumItem - Enum.ConnectionError.DisconnectEvicted: - struct: EnumItem - Enum.ConnectionError.DisconnectHashTimeout: - struct: EnumItem - Enum.ConnectionError.DisconnectIdle: - struct: EnumItem - Enum.ConnectionError.DisconnectIllegalTeleport: - struct: EnumItem - Enum.ConnectionError.DisconnectLuaKick: - struct: EnumItem - Enum.ConnectionError.DisconnectModeratedGame: - struct: EnumItem - Enum.ConnectionError.DisconnectNewSecurityKeyMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectOnRemoteSysStats: - struct: EnumItem - Enum.ConnectionError.DisconnectOutOfMemoryKeepPlayingLeave: - struct: EnumItem - Enum.ConnectionError.DisconnectPlayerless: - struct: EnumItem - Enum.ConnectionError.DisconnectProtocolMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectRaknetErrors: - struct: EnumItem - Enum.ConnectionError.DisconnectReceivePacketError: - struct: EnumItem - Enum.ConnectionError.DisconnectReceivePacketStreamError: - struct: EnumItem - Enum.ConnectionError.DisconnectRejoin: - struct: EnumItem - Enum.ConnectionError.DisconnectRobloxMaintenance: - struct: EnumItem - Enum.ConnectionError.DisconnectRomarkEndOfTest: - struct: EnumItem - Enum.ConnectionError.DisconnectSecurityKeyMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectSendPacketError: - struct: EnumItem - Enum.ConnectionError.DisconnectTimeout: - struct: EnumItem - Enum.ConnectionError.DisconnectWrongVersion: - struct: EnumItem - Enum.ConnectionError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ConnectionError.OK: - struct: EnumItem - Enum.ConnectionError.PlacelaunchCustomMessage: - struct: EnumItem - Enum.ConnectionError.PlacelaunchDisabled: - struct: EnumItem - Enum.ConnectionError.PlacelaunchError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchErrors: - struct: EnumItem - Enum.ConnectionError.PlacelaunchFlooded: - struct: EnumItem - Enum.ConnectionError.PlacelaunchGameEnded: - struct: EnumItem - Enum.ConnectionError.PlacelaunchGameFull: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHashException: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHashExpired: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHttpError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchOtherError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchPartyCannotFit: - struct: EnumItem - Enum.ConnectionError.PlacelaunchRestricted: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUnauthorized: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUserLeft: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUserPrivacyUnauthorized: - struct: EnumItem - Enum.ConnectionError.PlayerRemoved: - struct: EnumItem - Enum.ConnectionError.ReplicatorTimeout: - struct: EnumItem - Enum.ConnectionError.TeleportErrors: - struct: EnumItem - Enum.ConnectionError.TeleportFailure: - struct: EnumItem - Enum.ConnectionError.TeleportFlooded: - struct: EnumItem - Enum.ConnectionError.TeleportGameEnded: - struct: EnumItem - Enum.ConnectionError.TeleportGameFull: - struct: EnumItem - Enum.ConnectionError.TeleportGameNotFound: - struct: EnumItem - Enum.ConnectionError.TeleportIsTeleporting: - struct: EnumItem - Enum.ConnectionError.TeleportUnauthorized: - struct: EnumItem - Enum.ConnectionError.Unknown: - struct: EnumItem - Enum.ConnectionState.Connected: - struct: EnumItem - Enum.ConnectionState.Disconnected: - struct: EnumItem - Enum.ConnectionState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionPriority.Default: - struct: EnumItem - deprecated: - message: Enum.ContextActionPriority.Default was replaced with Enum.ContextActionPriority.Medium - replace: - - Enum.ContextActionPriority.Medium - Enum.ContextActionPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionPriority.High: - struct: EnumItem - Enum.ContextActionPriority.Low: - struct: EnumItem - Enum.ContextActionPriority.Medium: - struct: EnumItem - Enum.ContextActionResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionResult.Pass: - struct: EnumItem - Enum.ContextActionResult.Sink: - struct: EnumItem - Enum.ControlMode.Classic: - struct: EnumItem - Enum.ControlMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ControlMode.Mouse Lock Switch: - struct: EnumItem - deprecated: - message: Enum.ControlMode.Mouse Lock Switch was replaced with Enum.ControlMode.MouseLockSwitch - replace: - - Enum.ControlMode.MouseLockSwitch - Enum.ControlMode.MouseLockSwitch: - struct: EnumItem - Enum.CoreGuiType.All: - struct: EnumItem - Enum.CoreGuiType.Backpack: - struct: EnumItem - Enum.CoreGuiType.Chat: - struct: EnumItem - Enum.CoreGuiType.EmotesMenu: - struct: EnumItem - Enum.CoreGuiType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CoreGuiType.Health: - struct: EnumItem - Enum.CoreGuiType.PlayerList: - struct: EnumItem - Enum.CoreGuiType.SelfView: - struct: EnumItem - Enum.CreateOutfitFailure.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreateOutfitFailure.InvalidName: - struct: EnumItem - Enum.CreateOutfitFailure.Other: - struct: EnumItem - Enum.CreateOutfitFailure.OutfitLimitReached: - struct: EnumItem - Enum.CreatorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreatorType.Group: - struct: EnumItem - Enum.CreatorType.User: - struct: EnumItem - Enum.CreatorTypeFilter.All: - struct: EnumItem - Enum.CreatorTypeFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreatorTypeFilter.Group: - struct: EnumItem - Enum.CreatorTypeFilter.User: - struct: EnumItem - Enum.CurrencyType.Default: - struct: EnumItem - Enum.CurrencyType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CurrencyType.Robux: - struct: EnumItem - Enum.CurrencyType.Tix: - struct: EnumItem - Enum.CustomCameraMode.Classic: - struct: EnumItem - Enum.CustomCameraMode.Default: - struct: EnumItem - Enum.CustomCameraMode.Follow: - struct: EnumItem - Enum.CustomCameraMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DataStoreRequestType.GetAsync: - struct: EnumItem - Enum.DataStoreRequestType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DataStoreRequestType.GetSortedAsync: - struct: EnumItem - Enum.DataStoreRequestType.OnUpdate: - struct: EnumItem - Enum.DataStoreRequestType.SetIncrementAsync: - struct: EnumItem - Enum.DataStoreRequestType.SetIncrementSortedAsync: - struct: EnumItem - Enum.DataStoreRequestType.UpdateAsync: - struct: EnumItem - Enum.DebuggerEndReason.ClientRequest: - struct: EnumItem - Enum.DebuggerEndReason.ConfigurationFailed: - struct: EnumItem - Enum.DebuggerEndReason.Disconnected: - struct: EnumItem - Enum.DebuggerEndReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerEndReason.InvalidHost: - struct: EnumItem - Enum.DebuggerEndReason.RpcError: - struct: EnumItem - Enum.DebuggerEndReason.ServerProtocolMismatch: - struct: EnumItem - Enum.DebuggerEndReason.ServerShutdown: - struct: EnumItem - Enum.DebuggerEndReason.Timeout: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.Always: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerExceptionBreakMode.Never: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.Unhandled: - struct: EnumItem - Enum.DebuggerFrameType.C: - struct: EnumItem - Enum.DebuggerFrameType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerFrameType.Lua: - struct: EnumItem - Enum.DebuggerPauseReason.Breakpoint: - struct: EnumItem - Enum.DebuggerPauseReason.Entrypoint: - struct: EnumItem - Enum.DebuggerPauseReason.Exception: - struct: EnumItem - Enum.DebuggerPauseReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerPauseReason.Requested: - struct: EnumItem - Enum.DebuggerPauseReason.SingleStep: - struct: EnumItem - Enum.DebuggerPauseReason.Unknown: - struct: EnumItem - Enum.DebuggerStatus.ConnectionClosed: - struct: EnumItem - Enum.DebuggerStatus.ConnectionLost: - struct: EnumItem - Enum.DebuggerStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerStatus.InternalError: - struct: EnumItem - Enum.DebuggerStatus.InvalidArgument: - struct: EnumItem - Enum.DebuggerStatus.InvalidResponse: - struct: EnumItem - Enum.DebuggerStatus.InvalidState: - struct: EnumItem - Enum.DebuggerStatus.RpcError: - struct: EnumItem - Enum.DebuggerStatus.Success: - struct: EnumItem - Enum.DebuggerStatus.Timeout: - struct: EnumItem - Enum.DevCameraOcclusionMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevCameraOcclusionMode.Invisicam: - struct: EnumItem - Enum.DevCameraOcclusionMode.Zoom: - struct: EnumItem - Enum.DevComputerCameraMovementMode.CameraToggle: - struct: EnumItem - Enum.DevComputerCameraMovementMode.Classic: - struct: EnumItem - Enum.DevComputerCameraMovementMode.Follow: - struct: EnumItem - Enum.DevComputerCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevComputerCameraMovementMode.Orbital: - struct: EnumItem - Enum.DevComputerCameraMovementMode.UserChoice: - struct: EnumItem - Enum.DevComputerMovementMode.ClickToMove: - struct: EnumItem - Enum.DevComputerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevComputerMovementMode.KeyboardMouse: - struct: EnumItem - Enum.DevComputerMovementMode.Scriptable: - struct: EnumItem - Enum.DevComputerMovementMode.UserChoice: - struct: EnumItem - Enum.DevTouchCameraMovementMode.Classic: - struct: EnumItem - Enum.DevTouchCameraMovementMode.Follow: - struct: EnumItem - Enum.DevTouchCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevTouchCameraMovementMode.Orbital: - struct: EnumItem - Enum.DevTouchCameraMovementMode.UserChoice: - struct: EnumItem - Enum.DevTouchMovementMode.ClickToMove: - struct: EnumItem - Enum.DevTouchMovementMode.DPad: - struct: EnumItem - Enum.DevTouchMovementMode.DynamicThumbstick: - struct: EnumItem - Enum.DevTouchMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevTouchMovementMode.Scriptable: - struct: EnumItem - Enum.DevTouchMovementMode.Thumbpad: - struct: EnumItem - Enum.DevTouchMovementMode.Thumbstick: - struct: EnumItem - Enum.DevTouchMovementMode.UserChoice: - struct: EnumItem - Enum.DeveloperMemoryTag.Animation: - struct: EnumItem - Enum.DeveloperMemoryTag.GeometryCSG: - struct: EnumItem - Enum.DeveloperMemoryTag.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DeveloperMemoryTag.GraphicsMeshParts: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsParticles: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsParts: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsSolidModels: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsSpatialHash: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTerrain: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTexture: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTextureCharacter: - struct: EnumItem - Enum.DeveloperMemoryTag.Gui: - struct: EnumItem - Enum.DeveloperMemoryTag.HttpCache: - struct: EnumItem - Enum.DeveloperMemoryTag.Instances: - struct: EnumItem - Enum.DeveloperMemoryTag.Internal: - struct: EnumItem - Enum.DeveloperMemoryTag.LuaHeap: - struct: EnumItem - Enum.DeveloperMemoryTag.Navigation: - struct: EnumItem - Enum.DeveloperMemoryTag.PhysicsCollision: - struct: EnumItem - Enum.DeveloperMemoryTag.PhysicsParts: - struct: EnumItem - Enum.DeveloperMemoryTag.Script: - struct: EnumItem - Enum.DeveloperMemoryTag.Signals: - struct: EnumItem - Enum.DeveloperMemoryTag.Sounds: - struct: EnumItem - Enum.DeveloperMemoryTag.StreamingSounds: - struct: EnumItem - Enum.DeveloperMemoryTag.TerrainVoxels: - struct: EnumItem - Enum.DeviceType.Desktop: - struct: EnumItem - Enum.DeviceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DeviceType.Phone: - struct: EnumItem - Enum.DeviceType.Tablet: - struct: EnumItem - Enum.DeviceType.Unknown: - struct: EnumItem - Enum.DialogBehaviorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogBehaviorType.MultiplePlayers: - struct: EnumItem - Enum.DialogBehaviorType.SinglePlayer: - struct: EnumItem - Enum.DialogPurpose.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogPurpose.Help: - struct: EnumItem - Enum.DialogPurpose.Quest: - struct: EnumItem - Enum.DialogPurpose.Shop: - struct: EnumItem - Enum.DialogTone.Enemy: - struct: EnumItem - Enum.DialogTone.Friendly: - struct: EnumItem - Enum.DialogTone.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogTone.Neutral: - struct: EnumItem - Enum.DominantAxis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DominantAxis.Height: - struct: EnumItem - Enum.DominantAxis.Width: - struct: EnumItem - Enum.DraftStatusCode.DraftCommitted: - struct: EnumItem - Enum.DraftStatusCode.DraftOutdated: - struct: EnumItem - Enum.DraftStatusCode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraftStatusCode.OK: - struct: EnumItem - Enum.DraftStatusCode.ScriptRemoved: - struct: EnumItem - Enum.DraggerCoordinateSpace.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraggerCoordinateSpace.Object: - struct: EnumItem - Enum.DraggerCoordinateSpace.World: - struct: EnumItem - Enum.DraggerMovementMode.Geometric: - struct: EnumItem - Enum.DraggerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraggerMovementMode.Physical: - struct: EnumItem - Enum.EasingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EasingDirection.In: - struct: EnumItem - Enum.EasingDirection.InOut: - struct: EnumItem - Enum.EasingDirection.Out: - struct: EnumItem - Enum.EasingStyle.Back: - struct: EnumItem - Enum.EasingStyle.Bounce: - struct: EnumItem - Enum.EasingStyle.Circular: - struct: EnumItem - Enum.EasingStyle.Cubic: - struct: EnumItem - Enum.EasingStyle.Elastic: - struct: EnumItem - Enum.EasingStyle.Exponential: - struct: EnumItem - Enum.EasingStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EasingStyle.Linear: - struct: EnumItem - Enum.EasingStyle.Quad: - struct: EnumItem - Enum.EasingStyle.Quart: - struct: EnumItem - Enum.EasingStyle.Quint: - struct: EnumItem - Enum.EasingStyle.Sine: - struct: EnumItem - Enum.ElasticBehavior.Always: - struct: EnumItem - Enum.ElasticBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ElasticBehavior.Never: - struct: EnumItem - Enum.ElasticBehavior.WhenScrollable: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Always: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.DefaultAuto: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Disabled: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EnviromentalPhysicsThrottle.Skip16: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip2: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip4: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip8: - struct: EnumItem - Enum.ExperienceAuthScope.CreatorAssetsCreate: - struct: EnumItem - Enum.ExperienceAuthScope.DefaultScope: - struct: EnumItem - Enum.ExperienceAuthScope.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ExplosionType.Craters: - struct: EnumItem - Enum.ExplosionType.CratersAndDebris: - struct: EnumItem - deprecated: - message: Enum.ExplosionType.CratersAndDebris was replaced with Enum.ExplosionType.Craters - replace: - - Enum.ExplosionType.Craters - Enum.ExplosionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ExplosionType.NoCraters: - struct: EnumItem - Enum.FacialAnimationFlags.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FacialAnimationFlags.None: - struct: EnumItem - Enum.FacialAnimationFlags.Place: - struct: EnumItem - Enum.FacialAnimationFlags.PlaceServer: - struct: EnumItem - Enum.FacialAnimationFlags.Server: - struct: EnumItem - Enum.FacialAnimationStreamingState.Audio: - struct: EnumItem - Enum.FacialAnimationStreamingState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FacialAnimationStreamingState.None: - struct: EnumItem - Enum.FacialAnimationStreamingState.Place: - struct: EnumItem - Enum.FacialAnimationStreamingState.Server: - struct: EnumItem - Enum.FacialAnimationStreamingState.Video: - struct: EnumItem - Enum.FieldOfViewMode.Diagonal: - struct: EnumItem - Enum.FieldOfViewMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FieldOfViewMode.MaxAxis: - struct: EnumItem - Enum.FieldOfViewMode.Vertical: - struct: EnumItem - Enum.FillDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FillDirection.Horizontal: - struct: EnumItem - Enum.FillDirection.Vertical: - struct: EnumItem - Enum.FilterResult.Accepted: - struct: EnumItem - Enum.FilterResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FilterResult.Rejected: - struct: EnumItem - Enum.Font.AmaticSC: - struct: EnumItem - Enum.Font.Antique: - struct: EnumItem - Enum.Font.Arcade: - struct: EnumItem - Enum.Font.Arial: - struct: EnumItem - Enum.Font.ArialBold: - struct: EnumItem - Enum.Font.Bangers: - struct: EnumItem - Enum.Font.Bodoni: - struct: EnumItem - Enum.Font.Cartoon: - struct: EnumItem - Enum.Font.Code: - struct: EnumItem - Enum.Font.Creepster: - struct: EnumItem - Enum.Font.DenkOne: - struct: EnumItem - Enum.Font.Fantasy: - struct: EnumItem - Enum.Font.Fondamento: - struct: EnumItem - Enum.Font.FredokaOne: - struct: EnumItem - Enum.Font.Garamond: - struct: EnumItem - Enum.Font.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Font.Gotham: - struct: EnumItem - Enum.Font.GothamBlack: - struct: EnumItem - Enum.Font.GothamBold: - struct: EnumItem - Enum.Font.GothamMedium: - struct: EnumItem - Enum.Font.GothamSemibold: - struct: EnumItem - deprecated: - message: Enum.Font.GothamSemibold was replaced with Enum.Font.GothamMedium - replace: - - Enum.Font.GothamMedium - Enum.Font.GrenzeGotisch: - struct: EnumItem - Enum.Font.Highway: - struct: EnumItem - Enum.Font.IndieFlower: - struct: EnumItem - Enum.Font.JosefinSans: - struct: EnumItem - Enum.Font.Jura: - struct: EnumItem - Enum.Font.Kalam: - struct: EnumItem - Enum.Font.Legacy: - struct: EnumItem - Enum.Font.LuckiestGuy: - struct: EnumItem - Enum.Font.Merriweather: - struct: EnumItem - Enum.Font.Michroma: - struct: EnumItem - Enum.Font.Nunito: - struct: EnumItem - Enum.Font.Oswald: - struct: EnumItem - Enum.Font.PatrickHand: - struct: EnumItem - Enum.Font.PermanentMarker: - struct: EnumItem - Enum.Font.Roboto: - struct: EnumItem - Enum.Font.RobotoCondensed: - struct: EnumItem - Enum.Font.RobotoMono: - struct: EnumItem - Enum.Font.Sarpanch: - struct: EnumItem - Enum.Font.SciFi: - struct: EnumItem - Enum.Font.SourceSans: - struct: EnumItem - Enum.Font.SourceSansBold: - struct: EnumItem - Enum.Font.SourceSansItalic: - struct: EnumItem - Enum.Font.SourceSansLight: - struct: EnumItem - Enum.Font.SourceSansSemibold: - struct: EnumItem - Enum.Font.SpecialElite: - struct: EnumItem - Enum.Font.TitilliumWeb: - struct: EnumItem - Enum.Font.Ubuntu: - struct: EnumItem - Enum.Font.Unknown: - struct: EnumItem - Enum.FontSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontSize.Size10: - struct: EnumItem - Enum.FontSize.Size11: - struct: EnumItem - Enum.FontSize.Size12: - struct: EnumItem - Enum.FontSize.Size14: - struct: EnumItem - Enum.FontSize.Size18: - struct: EnumItem - Enum.FontSize.Size24: - struct: EnumItem - Enum.FontSize.Size28: - struct: EnumItem - Enum.FontSize.Size32: - struct: EnumItem - Enum.FontSize.Size36: - struct: EnumItem - Enum.FontSize.Size42: - struct: EnumItem - Enum.FontSize.Size48: - struct: EnumItem - Enum.FontSize.Size60: - struct: EnumItem - Enum.FontSize.Size8: - struct: EnumItem - Enum.FontSize.Size9: - struct: EnumItem - Enum.FontSize.Size96: - struct: EnumItem - Enum.FontStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontStyle.Italic: - struct: EnumItem - Enum.FontStyle.Normal: - struct: EnumItem - Enum.FontWeight.Bold: - struct: EnumItem - Enum.FontWeight.ExtraBold: - struct: EnumItem - Enum.FontWeight.ExtraLight: - struct: EnumItem - Enum.FontWeight.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontWeight.Heavy: - struct: EnumItem - Enum.FontWeight.Light: - struct: EnumItem - Enum.FontWeight.Medium: - struct: EnumItem - Enum.FontWeight.Regular: - struct: EnumItem - Enum.FontWeight.SemiBold: - struct: EnumItem - Enum.FontWeight.Thin: - struct: EnumItem - Enum.FormFactor.Block: - struct: EnumItem - deprecated: - message: Enum.FormFactor.Block was replaced with Enum.FormFactor.Brick - replace: - - Enum.FormFactor.Brick - Enum.FormFactor.Brick: - struct: EnumItem - Enum.FormFactor.Custom: - struct: EnumItem - Enum.FormFactor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FormFactor.Plate: - struct: EnumItem - Enum.FormFactor.Symmetric: - struct: EnumItem - Enum.FrameStyle.ChatBlue: - struct: EnumItem - Enum.FrameStyle.ChatGreen: - struct: EnumItem - Enum.FrameStyle.ChatRed: - struct: EnumItem - Enum.FrameStyle.Custom: - struct: EnumItem - Enum.FrameStyle.DropShadow: - struct: EnumItem - Enum.FrameStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FrameStyle.RobloxRound: - struct: EnumItem - Enum.FrameStyle.RobloxSquare: - struct: EnumItem - Enum.FramerateManagerMode.Automatic: - struct: EnumItem - Enum.FramerateManagerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FramerateManagerMode.Off: - struct: EnumItem - Enum.FramerateManagerMode.On: - struct: EnumItem - Enum.FriendRequestEvent.Accept: - struct: EnumItem - Enum.FriendRequestEvent.Deny: - struct: EnumItem - Enum.FriendRequestEvent.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FriendRequestEvent.Issue: - struct: EnumItem - Enum.FriendRequestEvent.Revoke: - struct: EnumItem - Enum.FriendStatus.Friend: - struct: EnumItem - Enum.FriendStatus.FriendRequestReceived: - struct: EnumItem - Enum.FriendStatus.FriendRequestSent: - struct: EnumItem - Enum.FriendStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FriendStatus.NotFriend: - struct: EnumItem - Enum.FriendStatus.Unknown: - struct: EnumItem - Enum.FunctionalTestResult.Error: - struct: EnumItem - Enum.FunctionalTestResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FunctionalTestResult.Passed: - struct: EnumItem - Enum.FunctionalTestResult.Warning: - struct: EnumItem - Enum.GameAvatarType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GameAvatarType.PlayerChoice: - struct: EnumItem - Enum.GameAvatarType.R15: - struct: EnumItem - Enum.GameAvatarType.R6: - struct: EnumItem - Enum.GearGenreSetting.AllGenres: - struct: EnumItem - Enum.GearGenreSetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GearGenreSetting.MatchingGenreOnly: - struct: EnumItem - Enum.GearType.BuildingTools: - struct: EnumItem - Enum.GearType.Explosives: - struct: EnumItem - Enum.GearType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GearType.MeleeWeapons: - struct: EnumItem - Enum.GearType.MusicalInstruments: - struct: EnumItem - Enum.GearType.NavigationEnhancers: - struct: EnumItem - Enum.GearType.PowerUps: - struct: EnumItem - Enum.GearType.RangedWeapons: - struct: EnumItem - Enum.GearType.SocialItems: - struct: EnumItem - Enum.GearType.Transport: - struct: EnumItem - Enum.Genre.Adventure: - struct: EnumItem - Enum.Genre.All: - struct: EnumItem - Enum.Genre.Fantasy: - struct: EnumItem - Enum.Genre.Funny: - struct: EnumItem - Enum.Genre.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Genre.Ninja: - struct: EnumItem - Enum.Genre.Pirate: - struct: EnumItem - Enum.Genre.Scary: - struct: EnumItem - Enum.Genre.SciFi: - struct: EnumItem - Enum.Genre.SkatePark: - struct: EnumItem - Enum.Genre.Sports: - struct: EnumItem - Enum.Genre.TownAndCity: - struct: EnumItem - Enum.Genre.Tutorial: - struct: EnumItem - Enum.Genre.War: - struct: EnumItem - Enum.Genre.WildWest: - struct: EnumItem - Enum.GetEnums: - args: [] - method: true - must_use: true - Enum.GraphicsMode.Automatic: - struct: EnumItem - Enum.GraphicsMode.Direct3D11: - struct: EnumItem - Enum.GraphicsMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GraphicsMode.Metal: - struct: EnumItem - Enum.GraphicsMode.NoGraphics: - struct: EnumItem - Enum.GraphicsMode.OpenGL: - struct: EnumItem - Enum.GraphicsMode.Vulkan: - struct: EnumItem - Enum.GuiType.Core: - struct: EnumItem - Enum.GuiType.Custom: - struct: EnumItem - Enum.GuiType.CustomBillboards: - struct: EnumItem - Enum.GuiType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GuiType.PlayerNameplates: - struct: EnumItem - Enum.HandlesStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HandlesStyle.Movement: - struct: EnumItem - Enum.HandlesStyle.Resize: - struct: EnumItem - Enum.HighlightDepthMode.AlwaysOnTop: - struct: EnumItem - Enum.HighlightDepthMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HighlightDepthMode.Occluded: - struct: EnumItem - Enum.HorizontalAlignment.Center: - struct: EnumItem - Enum.HorizontalAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HorizontalAlignment.Left: - struct: EnumItem - Enum.HorizontalAlignment.Right: - struct: EnumItem - Enum.HoverAnimateSpeed.Fast: - struct: EnumItem - Enum.HoverAnimateSpeed.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HoverAnimateSpeed.Medium: - struct: EnumItem - Enum.HoverAnimateSpeed.Slow: - struct: EnumItem - Enum.HoverAnimateSpeed.VeryFast: - struct: EnumItem - Enum.HoverAnimateSpeed.VerySlow: - struct: EnumItem - Enum.HttpCachePolicy.DataOnly: - struct: EnumItem - Enum.HttpCachePolicy.Default: - struct: EnumItem - Enum.HttpCachePolicy.Full: - struct: EnumItem - Enum.HttpCachePolicy.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpCachePolicy.InternalRedirectRefresh: - struct: EnumItem - Enum.HttpCachePolicy.None: - struct: EnumItem - Enum.HttpContentType.ApplicationJson: - struct: EnumItem - Enum.HttpContentType.ApplicationUrlEncoded: - struct: EnumItem - Enum.HttpContentType.ApplicationXml: - struct: EnumItem - Enum.HttpContentType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpContentType.TextPlain: - struct: EnumItem - Enum.HttpContentType.TextXml: - struct: EnumItem - Enum.HttpError.Aborted: - struct: EnumItem - Enum.HttpError.ConnectFail: - struct: EnumItem - Enum.HttpError.DnsResolve: - struct: EnumItem - Enum.HttpError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpError.InvalidRedirect: - struct: EnumItem - Enum.HttpError.InvalidUrl: - struct: EnumItem - Enum.HttpError.NetFail: - struct: EnumItem - Enum.HttpError.OK: - struct: EnumItem - Enum.HttpError.OutOfMemory: - struct: EnumItem - Enum.HttpError.SslConnectFail: - struct: EnumItem - Enum.HttpError.SslVerificationFail: - struct: EnumItem - Enum.HttpError.TimedOut: - struct: EnumItem - Enum.HttpError.TooManyRedirects: - struct: EnumItem - Enum.HttpError.Unknown: - struct: EnumItem - Enum.HttpRequestType.Analytics: - struct: EnumItem - Enum.HttpRequestType.Avatar: - struct: EnumItem - Enum.HttpRequestType.Chat: - struct: EnumItem - Enum.HttpRequestType.Default: - struct: EnumItem - Enum.HttpRequestType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpRequestType.Localization: - struct: EnumItem - Enum.HttpRequestType.MarketplaceService: - struct: EnumItem - Enum.HttpRequestType.Players: - struct: EnumItem - Enum.HumanoidCollisionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidCollisionType.InnerBox: - struct: EnumItem - Enum.HumanoidCollisionType.OuterBox: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidDisplayDistanceType.None: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.Subject: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.Viewer: - struct: EnumItem - Enum.HumanoidHealthDisplayType.AlwaysOff: - struct: EnumItem - Enum.HumanoidHealthDisplayType.AlwaysOn: - struct: EnumItem - Enum.HumanoidHealthDisplayType.DisplayWhenDamaged: - struct: EnumItem - Enum.HumanoidHealthDisplayType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidOnlySetCollisionsOnStateChange.Default: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.Disabled: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.Enabled: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidRigType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidRigType.R15: - struct: EnumItem - Enum.HumanoidRigType.R6: - struct: EnumItem - Enum.HumanoidStateMachineMode.Default: - struct: EnumItem - Enum.HumanoidStateMachineMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidStateMachineMode.Legacy: - struct: EnumItem - Enum.HumanoidStateMachineMode.LuaStateMachine: - struct: EnumItem - Enum.HumanoidStateMachineMode.NoStateMachine: - struct: EnumItem - Enum.HumanoidStateType.Climbing: - struct: EnumItem - Enum.HumanoidStateType.Dead: - struct: EnumItem - Enum.HumanoidStateType.FallingDown: - struct: EnumItem - Enum.HumanoidStateType.Flying: - struct: EnumItem - Enum.HumanoidStateType.Freefall: - struct: EnumItem - Enum.HumanoidStateType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidStateType.GettingUp: - struct: EnumItem - Enum.HumanoidStateType.Jumping: - struct: EnumItem - Enum.HumanoidStateType.Landed: - struct: EnumItem - Enum.HumanoidStateType.None: - struct: EnumItem - Enum.HumanoidStateType.Physics: - struct: EnumItem - Enum.HumanoidStateType.PlatformStanding: - struct: EnumItem - Enum.HumanoidStateType.Ragdoll: - struct: EnumItem - Enum.HumanoidStateType.Running: - struct: EnumItem - Enum.HumanoidStateType.RunningNoPhysics: - struct: EnumItem - Enum.HumanoidStateType.Seated: - struct: EnumItem - Enum.HumanoidStateType.StrafingNoPhysics: - struct: EnumItem - Enum.HumanoidStateType.Swimming: - struct: EnumItem - Enum.IKCollisionsMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IKCollisionsMode.IncludeContactedMechanisms: - struct: EnumItem - Enum.IKCollisionsMode.NoCollisions: - struct: EnumItem - Enum.IKCollisionsMode.OtherMechanismsAnchored: - struct: EnumItem - Enum.IKControlType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IKControlType.LookAt: - struct: EnumItem - Enum.IKControlType.Position: - struct: EnumItem - Enum.IKControlType.Rotation: - struct: EnumItem - Enum.IKControlType.Transform: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorConnection: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorInvalidUser: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorJsonParse: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorTimedOut: - struct: EnumItem - Enum.IXPLoadingStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IXPLoadingStatus.Initialized: - struct: EnumItem - Enum.IXPLoadingStatus.None: - struct: EnumItem - Enum.IXPLoadingStatus.Pending: - struct: EnumItem - Enum.InOut.Center: - struct: EnumItem - Enum.InOut.Edge: - struct: EnumItem - Enum.InOut.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InOut.Inset: - struct: EnumItem - Enum.InfoType.Asset: - struct: EnumItem - Enum.InfoType.Bundle: - struct: EnumItem - Enum.InfoType.GamePass: - struct: EnumItem - Enum.InfoType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InfoType.Product: - struct: EnumItem - Enum.InfoType.Subscription: - struct: EnumItem - Enum.InitialDockState.Bottom: - struct: EnumItem - Enum.InitialDockState.Float: - struct: EnumItem - Enum.InitialDockState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InitialDockState.Left: - struct: EnumItem - Enum.InitialDockState.Right: - struct: EnumItem - Enum.InitialDockState.Top: - struct: EnumItem - Enum.InputType.Action1: - struct: EnumItem - deprecated: - message: Enum.InputType.Action1 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action2: - struct: EnumItem - deprecated: - message: Enum.InputType.Action2 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action3: - struct: EnumItem - deprecated: - message: Enum.InputType.Action3 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action4: - struct: EnumItem - deprecated: - message: Enum.InputType.Action4 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action5: - struct: EnumItem - deprecated: - message: Enum.InputType.Action5 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Constant: - struct: EnumItem - Enum.InputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InputType.LeftTread: - struct: EnumItem - deprecated: - message: Enum.InputType.LeftTread was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.NoInput: - struct: EnumItem - Enum.InputType.RightTread: - struct: EnumItem - deprecated: - message: Enum.InputType.RightTread was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Sin: - struct: EnumItem - Enum.InputType.Steer: - struct: EnumItem - deprecated: - message: Enum.InputType.Steer was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Throtle: - struct: EnumItem - deprecated: - message: Enum.InputType.Throtle was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Throttle: - struct: EnumItem - deprecated: - message: Enum.InputType.Throttle was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.UpDown: - struct: EnumItem - deprecated: - message: Enum.InputType.UpDown was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InterpolationThrottlingMode.Default: - struct: EnumItem - Enum.InterpolationThrottlingMode.Disabled: - struct: EnumItem - Enum.InterpolationThrottlingMode.Enabled: - struct: EnumItem - Enum.InterpolationThrottlingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.JointCreationMode.All: - struct: EnumItem - Enum.JointCreationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.JointCreationMode.None: - struct: EnumItem - Enum.JointCreationMode.Surface: - struct: EnumItem - Enum.KeyCode.A: - struct: EnumItem - Enum.KeyCode.Ampersand: - struct: EnumItem - Enum.KeyCode.Asterisk: - struct: EnumItem - Enum.KeyCode.At: - struct: EnumItem - Enum.KeyCode.B: - struct: EnumItem - Enum.KeyCode.BackSlash: - struct: EnumItem - Enum.KeyCode.Backquote: - struct: EnumItem - Enum.KeyCode.Backspace: - struct: EnumItem - Enum.KeyCode.Break: - struct: EnumItem - Enum.KeyCode.ButtonA: - struct: EnumItem - Enum.KeyCode.ButtonB: - struct: EnumItem - Enum.KeyCode.ButtonL1: - struct: EnumItem - Enum.KeyCode.ButtonL2: - struct: EnumItem - Enum.KeyCode.ButtonL3: - struct: EnumItem - Enum.KeyCode.ButtonR1: - struct: EnumItem - Enum.KeyCode.ButtonR2: - struct: EnumItem - Enum.KeyCode.ButtonR3: - struct: EnumItem - Enum.KeyCode.ButtonSelect: - struct: EnumItem - Enum.KeyCode.ButtonStart: - struct: EnumItem - Enum.KeyCode.ButtonX: - struct: EnumItem - Enum.KeyCode.ButtonY: - struct: EnumItem - Enum.KeyCode.C: - struct: EnumItem - Enum.KeyCode.CapsLock: - struct: EnumItem - Enum.KeyCode.Caret: - struct: EnumItem - Enum.KeyCode.Clear: - struct: EnumItem - Enum.KeyCode.Colon: - struct: EnumItem - Enum.KeyCode.Comma: - struct: EnumItem - Enum.KeyCode.Compose: - struct: EnumItem - Enum.KeyCode.D: - struct: EnumItem - Enum.KeyCode.DPadDown: - struct: EnumItem - Enum.KeyCode.DPadLeft: - struct: EnumItem - Enum.KeyCode.DPadRight: - struct: EnumItem - Enum.KeyCode.DPadUp: - struct: EnumItem - Enum.KeyCode.Delete: - struct: EnumItem - Enum.KeyCode.Dollar: - struct: EnumItem - Enum.KeyCode.Down: - struct: EnumItem - Enum.KeyCode.E: - struct: EnumItem - Enum.KeyCode.Eight: - struct: EnumItem - Enum.KeyCode.End: - struct: EnumItem - Enum.KeyCode.Equals: - struct: EnumItem - Enum.KeyCode.Escape: - struct: EnumItem - Enum.KeyCode.Euro: - struct: EnumItem - Enum.KeyCode.F: - struct: EnumItem - Enum.KeyCode.F1: - struct: EnumItem - Enum.KeyCode.F10: - struct: EnumItem - Enum.KeyCode.F11: - struct: EnumItem - Enum.KeyCode.F12: - struct: EnumItem - Enum.KeyCode.F13: - struct: EnumItem - Enum.KeyCode.F14: - struct: EnumItem - Enum.KeyCode.F15: - struct: EnumItem - Enum.KeyCode.F2: - struct: EnumItem - Enum.KeyCode.F3: - struct: EnumItem - Enum.KeyCode.F4: - struct: EnumItem - Enum.KeyCode.F5: - struct: EnumItem - Enum.KeyCode.F6: - struct: EnumItem - Enum.KeyCode.F7: - struct: EnumItem - Enum.KeyCode.F8: - struct: EnumItem - Enum.KeyCode.F9: - struct: EnumItem - Enum.KeyCode.Five: - struct: EnumItem - Enum.KeyCode.Four: - struct: EnumItem - Enum.KeyCode.G: - struct: EnumItem - Enum.KeyCode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeyCode.GreaterThan: - struct: EnumItem - Enum.KeyCode.H: - struct: EnumItem - Enum.KeyCode.Hash: - struct: EnumItem - Enum.KeyCode.Help: - struct: EnumItem - Enum.KeyCode.Home: - struct: EnumItem - Enum.KeyCode.I: - struct: EnumItem - Enum.KeyCode.Insert: - struct: EnumItem - Enum.KeyCode.J: - struct: EnumItem - Enum.KeyCode.K: - struct: EnumItem - Enum.KeyCode.KeypadDivide: - struct: EnumItem - Enum.KeyCode.KeypadEight: - struct: EnumItem - Enum.KeyCode.KeypadEnter: - struct: EnumItem - Enum.KeyCode.KeypadEquals: - struct: EnumItem - Enum.KeyCode.KeypadFive: - struct: EnumItem - Enum.KeyCode.KeypadFour: - struct: EnumItem - Enum.KeyCode.KeypadMinus: - struct: EnumItem - Enum.KeyCode.KeypadMultiply: - struct: EnumItem - Enum.KeyCode.KeypadNine: - struct: EnumItem - Enum.KeyCode.KeypadOne: - struct: EnumItem - Enum.KeyCode.KeypadPeriod: - struct: EnumItem - Enum.KeyCode.KeypadPlus: - struct: EnumItem - Enum.KeyCode.KeypadSeven: - struct: EnumItem - Enum.KeyCode.KeypadSix: - struct: EnumItem - Enum.KeyCode.KeypadThree: - struct: EnumItem - Enum.KeyCode.KeypadTwo: - struct: EnumItem - Enum.KeyCode.KeypadZero: - struct: EnumItem - Enum.KeyCode.L: - struct: EnumItem - Enum.KeyCode.Left: - struct: EnumItem - Enum.KeyCode.LeftAlt: - struct: EnumItem - Enum.KeyCode.LeftBracket: - struct: EnumItem - Enum.KeyCode.LeftControl: - struct: EnumItem - Enum.KeyCode.LeftCurly: - struct: EnumItem - Enum.KeyCode.LeftMeta: - struct: EnumItem - Enum.KeyCode.LeftParenthesis: - struct: EnumItem - Enum.KeyCode.LeftShift: - struct: EnumItem - Enum.KeyCode.LeftSuper: - struct: EnumItem - Enum.KeyCode.LessThan: - struct: EnumItem - Enum.KeyCode.M: - struct: EnumItem - Enum.KeyCode.Menu: - struct: EnumItem - Enum.KeyCode.Minus: - struct: EnumItem - Enum.KeyCode.Mode: - struct: EnumItem - Enum.KeyCode.N: - struct: EnumItem - Enum.KeyCode.Nine: - struct: EnumItem - Enum.KeyCode.NumLock: - struct: EnumItem - Enum.KeyCode.O: - struct: EnumItem - Enum.KeyCode.One: - struct: EnumItem - Enum.KeyCode.P: - struct: EnumItem - Enum.KeyCode.PageDown: - struct: EnumItem - Enum.KeyCode.PageUp: - struct: EnumItem - Enum.KeyCode.Pause: - struct: EnumItem - Enum.KeyCode.Percent: - struct: EnumItem - Enum.KeyCode.Period: - struct: EnumItem - Enum.KeyCode.Pipe: - struct: EnumItem - Enum.KeyCode.Plus: - struct: EnumItem - Enum.KeyCode.Power: - struct: EnumItem - Enum.KeyCode.Print: - struct: EnumItem - Enum.KeyCode.Q: - struct: EnumItem - Enum.KeyCode.Question: - struct: EnumItem - Enum.KeyCode.Quote: - struct: EnumItem - Enum.KeyCode.QuotedDouble: - struct: EnumItem - Enum.KeyCode.R: - struct: EnumItem - Enum.KeyCode.Return: - struct: EnumItem - Enum.KeyCode.Right: - struct: EnumItem - Enum.KeyCode.RightAlt: - struct: EnumItem - Enum.KeyCode.RightBracket: - struct: EnumItem - Enum.KeyCode.RightControl: - struct: EnumItem - Enum.KeyCode.RightCurly: - struct: EnumItem - Enum.KeyCode.RightMeta: - struct: EnumItem - Enum.KeyCode.RightParenthesis: - struct: EnumItem - Enum.KeyCode.RightShift: - struct: EnumItem - Enum.KeyCode.RightSuper: - struct: EnumItem - Enum.KeyCode.S: - struct: EnumItem - Enum.KeyCode.ScrollLock: - struct: EnumItem - Enum.KeyCode.Semicolon: - struct: EnumItem - Enum.KeyCode.Seven: - struct: EnumItem - Enum.KeyCode.Six: - struct: EnumItem - Enum.KeyCode.Slash: - struct: EnumItem - Enum.KeyCode.Space: - struct: EnumItem - Enum.KeyCode.SysReq: - struct: EnumItem - Enum.KeyCode.T: - struct: EnumItem - Enum.KeyCode.Tab: - struct: EnumItem - Enum.KeyCode.Three: - struct: EnumItem - Enum.KeyCode.Thumbstick1: - struct: EnumItem - Enum.KeyCode.Thumbstick2: - struct: EnumItem - Enum.KeyCode.Tilde: - struct: EnumItem - Enum.KeyCode.Two: - struct: EnumItem - Enum.KeyCode.U: - struct: EnumItem - Enum.KeyCode.Underscore: - struct: EnumItem - Enum.KeyCode.Undo: - struct: EnumItem - Enum.KeyCode.Unknown: - struct: EnumItem - Enum.KeyCode.Up: - struct: EnumItem - Enum.KeyCode.V: - struct: EnumItem - Enum.KeyCode.W: - struct: EnumItem - Enum.KeyCode.World0: - struct: EnumItem - Enum.KeyCode.World1: - struct: EnumItem - Enum.KeyCode.World10: - struct: EnumItem - Enum.KeyCode.World11: - struct: EnumItem - Enum.KeyCode.World12: - struct: EnumItem - Enum.KeyCode.World13: - struct: EnumItem - Enum.KeyCode.World14: - struct: EnumItem - Enum.KeyCode.World15: - struct: EnumItem - Enum.KeyCode.World16: - struct: EnumItem - Enum.KeyCode.World17: - struct: EnumItem - Enum.KeyCode.World18: - struct: EnumItem - Enum.KeyCode.World19: - struct: EnumItem - Enum.KeyCode.World2: - struct: EnumItem - Enum.KeyCode.World20: - struct: EnumItem - Enum.KeyCode.World21: - struct: EnumItem - Enum.KeyCode.World22: - struct: EnumItem - Enum.KeyCode.World23: - struct: EnumItem - Enum.KeyCode.World24: - struct: EnumItem - Enum.KeyCode.World25: - struct: EnumItem - Enum.KeyCode.World26: - struct: EnumItem - Enum.KeyCode.World27: - struct: EnumItem - Enum.KeyCode.World28: - struct: EnumItem - Enum.KeyCode.World29: - struct: EnumItem - Enum.KeyCode.World3: - struct: EnumItem - Enum.KeyCode.World30: - struct: EnumItem - Enum.KeyCode.World31: - struct: EnumItem - Enum.KeyCode.World32: - struct: EnumItem - Enum.KeyCode.World33: - struct: EnumItem - Enum.KeyCode.World34: - struct: EnumItem - Enum.KeyCode.World35: - struct: EnumItem - Enum.KeyCode.World36: - struct: EnumItem - Enum.KeyCode.World37: - struct: EnumItem - Enum.KeyCode.World38: - struct: EnumItem - Enum.KeyCode.World39: - struct: EnumItem - Enum.KeyCode.World4: - struct: EnumItem - Enum.KeyCode.World40: - struct: EnumItem - Enum.KeyCode.World41: - struct: EnumItem - Enum.KeyCode.World42: - struct: EnumItem - Enum.KeyCode.World43: - struct: EnumItem - Enum.KeyCode.World44: - struct: EnumItem - Enum.KeyCode.World45: - struct: EnumItem - Enum.KeyCode.World46: - struct: EnumItem - Enum.KeyCode.World47: - struct: EnumItem - Enum.KeyCode.World48: - struct: EnumItem - Enum.KeyCode.World49: - struct: EnumItem - Enum.KeyCode.World5: - struct: EnumItem - Enum.KeyCode.World50: - struct: EnumItem - Enum.KeyCode.World51: - struct: EnumItem - Enum.KeyCode.World52: - struct: EnumItem - Enum.KeyCode.World53: - struct: EnumItem - Enum.KeyCode.World54: - struct: EnumItem - Enum.KeyCode.World55: - struct: EnumItem - Enum.KeyCode.World56: - struct: EnumItem - Enum.KeyCode.World57: - struct: EnumItem - Enum.KeyCode.World58: - struct: EnumItem - Enum.KeyCode.World59: - struct: EnumItem - Enum.KeyCode.World6: - struct: EnumItem - Enum.KeyCode.World60: - struct: EnumItem - Enum.KeyCode.World61: - struct: EnumItem - Enum.KeyCode.World62: - struct: EnumItem - Enum.KeyCode.World63: - struct: EnumItem - Enum.KeyCode.World64: - struct: EnumItem - Enum.KeyCode.World65: - struct: EnumItem - Enum.KeyCode.World66: - struct: EnumItem - Enum.KeyCode.World67: - struct: EnumItem - Enum.KeyCode.World68: - struct: EnumItem - Enum.KeyCode.World69: - struct: EnumItem - Enum.KeyCode.World7: - struct: EnumItem - Enum.KeyCode.World70: - struct: EnumItem - Enum.KeyCode.World71: - struct: EnumItem - Enum.KeyCode.World72: - struct: EnumItem - Enum.KeyCode.World73: - struct: EnumItem - Enum.KeyCode.World74: - struct: EnumItem - Enum.KeyCode.World75: - struct: EnumItem - Enum.KeyCode.World76: - struct: EnumItem - Enum.KeyCode.World77: - struct: EnumItem - Enum.KeyCode.World78: - struct: EnumItem - Enum.KeyCode.World79: - struct: EnumItem - Enum.KeyCode.World8: - struct: EnumItem - Enum.KeyCode.World80: - struct: EnumItem - Enum.KeyCode.World81: - struct: EnumItem - Enum.KeyCode.World82: - struct: EnumItem - Enum.KeyCode.World83: - struct: EnumItem - Enum.KeyCode.World84: - struct: EnumItem - Enum.KeyCode.World85: - struct: EnumItem - Enum.KeyCode.World86: - struct: EnumItem - Enum.KeyCode.World87: - struct: EnumItem - Enum.KeyCode.World88: - struct: EnumItem - Enum.KeyCode.World89: - struct: EnumItem - Enum.KeyCode.World9: - struct: EnumItem - Enum.KeyCode.World90: - struct: EnumItem - Enum.KeyCode.World91: - struct: EnumItem - Enum.KeyCode.World92: - struct: EnumItem - Enum.KeyCode.World93: - struct: EnumItem - Enum.KeyCode.World94: - struct: EnumItem - Enum.KeyCode.World95: - struct: EnumItem - Enum.KeyCode.X: - struct: EnumItem - Enum.KeyCode.Y: - struct: EnumItem - Enum.KeyCode.Z: - struct: EnumItem - Enum.KeyCode.Zero: - struct: EnumItem - Enum.KeyInterpolationMode.Constant: - struct: EnumItem - Enum.KeyInterpolationMode.Cubic: - struct: EnumItem - Enum.KeyInterpolationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeyInterpolationMode.Linear: - struct: EnumItem - Enum.KeywordFilterType.Exclude: - struct: EnumItem - Enum.KeywordFilterType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeywordFilterType.Include: - struct: EnumItem - Enum.Language.Default: - struct: EnumItem - Enum.Language.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LeftRight.Center: - struct: EnumItem - Enum.LeftRight.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LeftRight.Left: - struct: EnumItem - Enum.LeftRight.Right: - struct: EnumItem - Enum.Limb.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Limb.Head: - struct: EnumItem - Enum.Limb.LeftArm: - struct: EnumItem - Enum.Limb.LeftLeg: - struct: EnumItem - Enum.Limb.RightArm: - struct: EnumItem - Enum.Limb.RightLeg: - struct: EnumItem - Enum.Limb.Torso: - struct: EnumItem - Enum.Limb.Unknown: - struct: EnumItem - Enum.LineJoinMode.Bevel: - struct: EnumItem - Enum.LineJoinMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LineJoinMode.Miter: - struct: EnumItem - Enum.LineJoinMode.Round: - struct: EnumItem - Enum.ListDisplayMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ListDisplayMode.Horizontal: - struct: EnumItem - Enum.ListDisplayMode.Vertical: - struct: EnumItem - Enum.ListenerType.CFrame: - struct: EnumItem - Enum.ListenerType.Camera: - struct: EnumItem - Enum.ListenerType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ListenerType.ObjectCFrame: - struct: EnumItem - Enum.ListenerType.ObjectPosition: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Default: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Disabled: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Enabled: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LoadDynamicHeads.Default: - struct: EnumItem - Enum.LoadDynamicHeads.Disabled: - struct: EnumItem - Enum.LoadDynamicHeads.Enabled: - struct: EnumItem - Enum.LoadDynamicHeads.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MarkupKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MarkupKind.Markdown: - struct: EnumItem - Enum.MarkupKind.PlainText: - struct: EnumItem - Enum.Material.Air: - struct: EnumItem - Enum.Material.Aluminum: - struct: EnumItem - deprecated: - message: Enum.Material.Aluminum was replaced with Enum.Material.Foil - replace: - - Enum.Material.Foil - Enum.Material.Asphalt: - struct: EnumItem - Enum.Material.Basalt: - struct: EnumItem - Enum.Material.Brick: - struct: EnumItem - Enum.Material.Cobblestone: - struct: EnumItem - Enum.Material.Concrete: - struct: EnumItem - Enum.Material.Corroded Metal: - struct: EnumItem - deprecated: - message: Enum.Material.Corroded Metal was replaced with Enum.Material.CorrodedMetal - replace: - - Enum.Material.CorrodedMetal - Enum.Material.CorrodedMetal: - struct: EnumItem - Enum.Material.CrackedLava: - struct: EnumItem - Enum.Material.DiamondPlate: - struct: EnumItem - Enum.Material.Fabric: - struct: EnumItem - Enum.Material.Foil: - struct: EnumItem - Enum.Material.ForceField: - struct: EnumItem - Enum.Material.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Material.Glacier: - struct: EnumItem - Enum.Material.Glass: - struct: EnumItem - Enum.Material.Granite: - struct: EnumItem - Enum.Material.Grass: - struct: EnumItem - Enum.Material.Ground: - struct: EnumItem - Enum.Material.Ice: - struct: EnumItem - Enum.Material.LeafyGrass: - struct: EnumItem - Enum.Material.Limestone: - struct: EnumItem - Enum.Material.Marble: - struct: EnumItem - Enum.Material.Metal: - struct: EnumItem - Enum.Material.Mud: - struct: EnumItem - Enum.Material.Neon: - struct: EnumItem - Enum.Material.Pavement: - struct: EnumItem - Enum.Material.Pebble: - struct: EnumItem - Enum.Material.Plastic: - struct: EnumItem - Enum.Material.Rock: - struct: EnumItem - Enum.Material.Salt: - struct: EnumItem - Enum.Material.Sand: - struct: EnumItem - Enum.Material.Sandstone: - struct: EnumItem - Enum.Material.Slate: - struct: EnumItem - Enum.Material.SmoothPlastic: - struct: EnumItem - Enum.Material.Snow: - struct: EnumItem - Enum.Material.Water: - struct: EnumItem - Enum.Material.Wood: - struct: EnumItem - Enum.Material.WoodPlanks: - struct: EnumItem - Enum.MaterialPattern.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MaterialPattern.Organic: - struct: EnumItem - Enum.MaterialPattern.Regular: - struct: EnumItem - Enum.MembershipType.BuildersClub: - struct: EnumItem - Enum.MembershipType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MembershipType.None: - struct: EnumItem - Enum.MembershipType.OutrageousBuildersClub: - struct: EnumItem - Enum.MembershipType.Premium: - struct: EnumItem - Enum.MembershipType.TurboBuildersClub: - struct: EnumItem - Enum.MeshPartDetailLevel.DistanceBased: - struct: EnumItem - Enum.MeshPartDetailLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshPartDetailLevel.Level00: - struct: EnumItem - Enum.MeshPartDetailLevel.Level01: - struct: EnumItem - Enum.MeshPartDetailLevel.Level02: - struct: EnumItem - Enum.MeshPartDetailLevel.Level03: - struct: EnumItem - Enum.MeshPartDetailLevel.Level04: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Default: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Disabled: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Enabled: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshScaleUnit.CM: - struct: EnumItem - Enum.MeshScaleUnit.Foot: - struct: EnumItem - Enum.MeshScaleUnit.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshScaleUnit.Inch: - struct: EnumItem - Enum.MeshScaleUnit.MM: - struct: EnumItem - Enum.MeshScaleUnit.Meter: - struct: EnumItem - Enum.MeshScaleUnit.Stud: - struct: EnumItem - Enum.MeshType.Brick: - struct: EnumItem - Enum.MeshType.CornerWedge: - struct: EnumItem - Enum.MeshType.Cylinder: - struct: EnumItem - Enum.MeshType.FileMesh: - struct: EnumItem - Enum.MeshType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshType.Head: - struct: EnumItem - Enum.MeshType.ParallelRamp: - struct: EnumItem - Enum.MeshType.Prism: - struct: EnumItem - Enum.MeshType.Pyramid: - struct: EnumItem - Enum.MeshType.RightAngleRamp: - struct: EnumItem - Enum.MeshType.Sphere: - struct: EnumItem - Enum.MeshType.Torso: - struct: EnumItem - Enum.MeshType.Wedge: - struct: EnumItem - Enum.MessageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MessageType.MessageError: - struct: EnumItem - Enum.MessageType.MessageInfo: - struct: EnumItem - Enum.MessageType.MessageOutput: - struct: EnumItem - Enum.MessageType.MessageWarning: - struct: EnumItem - Enum.ModelLevelOfDetail.Automatic: - struct: EnumItem - Enum.ModelLevelOfDetail.Disabled: - struct: EnumItem - Enum.ModelLevelOfDetail.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModelLevelOfDetail.StreamingMesh: - struct: EnumItem - Enum.ModelStreamingMode.Atomic: - struct: EnumItem - Enum.ModelStreamingMode.Default: - struct: EnumItem - Enum.ModelStreamingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModelStreamingMode.Nonatomic: - struct: EnumItem - Enum.ModelStreamingMode.Persistent: - struct: EnumItem - Enum.ModelStreamingMode.PersistentPerPlayer: - struct: EnumItem - Enum.ModifierKey.Alt: - struct: EnumItem - Enum.ModifierKey.Ctrl: - struct: EnumItem - Enum.ModifierKey.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModifierKey.Meta: - struct: EnumItem - Enum.ModifierKey.Shift: - struct: EnumItem - Enum.MouseBehavior.Default: - struct: EnumItem - Enum.MouseBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MouseBehavior.LockCenter: - struct: EnumItem - Enum.MouseBehavior.LockCurrentPosition: - struct: EnumItem - Enum.MoveState.AirFree: - struct: EnumItem - Enum.MoveState.Coasting: - struct: EnumItem - Enum.MoveState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MoveState.Pushing: - struct: EnumItem - Enum.MoveState.Stopped: - struct: EnumItem - Enum.MoveState.Stopping: - struct: EnumItem - Enum.MuteState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MuteState.Muted: - struct: EnumItem - Enum.MuteState.Unmuted: - struct: EnumItem - Enum.NameOcclusion.EnemyOcclusion: - struct: EnumItem - Enum.NameOcclusion.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NameOcclusion.NoOcclusion: - struct: EnumItem - Enum.NameOcclusion.OccludeAll: - struct: EnumItem - Enum.NetworkOwnership.Automatic: - struct: EnumItem - Enum.NetworkOwnership.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NetworkOwnership.Manual: - struct: EnumItem - Enum.NetworkOwnership.OnContact: - struct: EnumItem - Enum.NormalId.Back: - struct: EnumItem - Enum.NormalId.Bottom: - struct: EnumItem - Enum.NormalId.Front: - struct: EnumItem - Enum.NormalId.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NormalId.Left: - struct: EnumItem - Enum.NormalId.Right: - struct: EnumItem - Enum.NormalId.Top: - struct: EnumItem - Enum.OrientationAlignmentMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OrientationAlignmentMode.OneAttachment: - struct: EnumItem - Enum.OrientationAlignmentMode.TwoAttachment: - struct: EnumItem - Enum.OutfitSource.All: - struct: EnumItem - Enum.OutfitSource.Created: - struct: EnumItem - Enum.OutfitSource.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutfitSource.Purchased: - struct: EnumItem - Enum.OutfitType.All: - struct: EnumItem - Enum.OutfitType.Avatar: - struct: EnumItem - Enum.OutfitType.DynamicHead: - struct: EnumItem - Enum.OutfitType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutputLayoutMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutputLayoutMode.Horizontal: - struct: EnumItem - Enum.OutputLayoutMode.Vertical: - struct: EnumItem - Enum.OverrideMouseIconBehavior.ForceHide: - struct: EnumItem - Enum.OverrideMouseIconBehavior.ForceShow: - struct: EnumItem - Enum.OverrideMouseIconBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OverrideMouseIconBehavior.None: - struct: EnumItem - Enum.PackagePermission.Edit: - struct: EnumItem - Enum.PackagePermission.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PackagePermission.NoAccess: - struct: EnumItem - Enum.PackagePermission.None: - struct: EnumItem - Enum.PackagePermission.Own: - struct: EnumItem - Enum.PackagePermission.Revoked: - struct: EnumItem - Enum.PackagePermission.UseView: - struct: EnumItem - Enum.PartType.Ball: - struct: EnumItem - Enum.PartType.Block: - struct: EnumItem - Enum.PartType.Cylinder: - struct: EnumItem - Enum.PartType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShape.Box: - struct: EnumItem - Enum.ParticleEmitterShape.Cylinder: - struct: EnumItem - Enum.ParticleEmitterShape.Disc: - struct: EnumItem - Enum.ParticleEmitterShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShape.Sphere: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShapeInOut.InAndOut: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.Inward: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.Outward: - struct: EnumItem - Enum.ParticleEmitterShapeStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShapeStyle.Surface: - struct: EnumItem - Enum.ParticleEmitterShapeStyle.Volume: - struct: EnumItem - Enum.ParticleFlipbookLayout.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookLayout.Grid2x2: - struct: EnumItem - Enum.ParticleFlipbookLayout.Grid4x4: - struct: EnumItem - Enum.ParticleFlipbookLayout.Grid8x8: - struct: EnumItem - Enum.ParticleFlipbookLayout.None: - struct: EnumItem - Enum.ParticleFlipbookMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookMode.Loop: - struct: EnumItem - Enum.ParticleFlipbookMode.OneShot: - struct: EnumItem - Enum.ParticleFlipbookMode.PingPong: - struct: EnumItem - Enum.ParticleFlipbookMode.Random: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.Compatible: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookTextureCompatible.NotCompatible: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.Unknown: - struct: EnumItem - Enum.ParticleOrientation.FacingCamera: - struct: EnumItem - Enum.ParticleOrientation.FacingCameraWorldUp: - struct: EnumItem - Enum.ParticleOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleOrientation.VelocityParallel: - struct: EnumItem - Enum.ParticleOrientation.VelocityPerpendicular: - struct: EnumItem - Enum.PathStatus.ClosestNoPath: - struct: EnumItem - Enum.PathStatus.ClosestOutOfRange: - struct: EnumItem - Enum.PathStatus.FailFinishNotEmpty: - struct: EnumItem - Enum.PathStatus.FailStartNotEmpty: - struct: EnumItem - Enum.PathStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PathStatus.NoPath: - struct: EnumItem - Enum.PathStatus.Success: - struct: EnumItem - Enum.PathWaypointAction.Custom: - struct: EnumItem - Enum.PathWaypointAction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PathWaypointAction.Jump: - struct: EnumItem - Enum.PathWaypointAction.Walk: - struct: EnumItem - Enum.PermissionLevelShown.Game: - struct: EnumItem - Enum.PermissionLevelShown.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PermissionLevelShown.Roblox: - struct: EnumItem - Enum.PermissionLevelShown.RobloxGame: - struct: EnumItem - Enum.PermissionLevelShown.RobloxScript: - struct: EnumItem - Enum.PermissionLevelShown.Studio: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed120Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed240Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed60Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PhysicsSteppingMethod.Adaptive: - struct: EnumItem - Enum.PhysicsSteppingMethod.Default: - struct: EnumItem - Enum.PhysicsSteppingMethod.Fixed: - struct: EnumItem - Enum.PhysicsSteppingMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Platform.Android: - struct: EnumItem - Enum.Platform.AndroidTV: - struct: EnumItem - Enum.Platform.BeOS: - struct: EnumItem - Enum.Platform.Chromecast: - struct: EnumItem - Enum.Platform.DOS: - struct: EnumItem - Enum.Platform.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Platform.IOS: - struct: EnumItem - Enum.Platform.Linux: - struct: EnumItem - Enum.Platform.NX: - struct: EnumItem - Enum.Platform.None: - struct: EnumItem - Enum.Platform.OSX: - struct: EnumItem - Enum.Platform.Ouya: - struct: EnumItem - Enum.Platform.PS3: - struct: EnumItem - Enum.Platform.PS4: - struct: EnumItem - Enum.Platform.SteamOS: - struct: EnumItem - Enum.Platform.UWP: - struct: EnumItem - Enum.Platform.WebOS: - struct: EnumItem - Enum.Platform.WiiU: - struct: EnumItem - Enum.Platform.Windows: - struct: EnumItem - Enum.Platform.XBox360: - struct: EnumItem - Enum.Platform.XBoxOne: - struct: EnumItem - Enum.PlaybackState.Begin: - struct: EnumItem - Enum.PlaybackState.Cancelled: - struct: EnumItem - Enum.PlaybackState.Completed: - struct: EnumItem - Enum.PlaybackState.Delayed: - struct: EnumItem - Enum.PlaybackState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlaybackState.Paused: - struct: EnumItem - Enum.PlaybackState.Playing: - struct: EnumItem - Enum.PlayerActions.CharacterBackward: - struct: EnumItem - Enum.PlayerActions.CharacterForward: - struct: EnumItem - Enum.PlayerActions.CharacterJump: - struct: EnumItem - Enum.PlayerActions.CharacterLeft: - struct: EnumItem - Enum.PlayerActions.CharacterRight: - struct: EnumItem - Enum.PlayerActions.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlayerChatType.All: - struct: EnumItem - Enum.PlayerChatType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlayerChatType.Team: - struct: EnumItem - Enum.PlayerChatType.Whisper: - struct: EnumItem - Enum.PoseEasingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PoseEasingDirection.In: - struct: EnumItem - Enum.PoseEasingDirection.InOut: - struct: EnumItem - Enum.PoseEasingDirection.Out: - struct: EnumItem - Enum.PoseEasingStyle.Bounce: - struct: EnumItem - Enum.PoseEasingStyle.Constant: - struct: EnumItem - Enum.PoseEasingStyle.Cubic: - struct: EnumItem - Enum.PoseEasingStyle.Elastic: - struct: EnumItem - Enum.PoseEasingStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PoseEasingStyle.Linear: - struct: EnumItem - Enum.PositionAlignmentMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PositionAlignmentMode.OneAttachment: - struct: EnumItem - Enum.PositionAlignmentMode.TwoAttachment: - struct: EnumItem - Enum.PrivilegeType.Admin: - struct: EnumItem - Enum.PrivilegeType.Banned: - struct: EnumItem - Enum.PrivilegeType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PrivilegeType.Member: - struct: EnumItem - Enum.PrivilegeType.Owner: - struct: EnumItem - Enum.PrivilegeType.Visitor: - struct: EnumItem - Enum.ProductLocationRestriction.AllGames: - struct: EnumItem - Enum.ProductLocationRestriction.AllowedGames: - struct: EnumItem - Enum.ProductLocationRestriction.AvatarShop: - struct: EnumItem - Enum.ProductLocationRestriction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProductPurchaseDecision.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProductPurchaseDecision.NotProcessedYet: - struct: EnumItem - Enum.ProductPurchaseDecision.PurchaseGranted: - struct: EnumItem - Enum.PromptPublishAssetResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PromptPublishAssetResult.NoUserInput: - struct: EnumItem - Enum.PromptPublishAssetResult.PermissionDenied: - struct: EnumItem - Enum.PromptPublishAssetResult.Success: - struct: EnumItem - Enum.PromptPublishAssetResult.Timeout: - struct: EnumItem - Enum.PromptPublishAssetResult.UploadFailed: - struct: EnumItem - Enum.PropertyStatus.Error: - struct: EnumItem - Enum.PropertyStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PropertyStatus.Ok: - struct: EnumItem - Enum.PropertyStatus.Warning: - struct: EnumItem - Enum.ProximityPromptExclusivity.AlwaysShow: - struct: EnumItem - Enum.ProximityPromptExclusivity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProximityPromptExclusivity.OneGlobally: - struct: EnumItem - Enum.ProximityPromptExclusivity.OnePerButton: - struct: EnumItem - Enum.ProximityPromptInputType.Gamepad: - struct: EnumItem - Enum.ProximityPromptInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProximityPromptInputType.Keyboard: - struct: EnumItem - Enum.ProximityPromptInputType.Touch: - struct: EnumItem - Enum.ProximityPromptStyle.Custom: - struct: EnumItem - Enum.ProximityPromptStyle.Default: - struct: EnumItem - Enum.ProximityPromptStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.QualityLevel.Automatic: - struct: EnumItem - Enum.QualityLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.QualityLevel.Level 1: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 1 was replaced with Enum.QualityLevel.Level01 - replace: - - Enum.QualityLevel.Level01 - Enum.QualityLevel.Level 2: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 2 was replaced with Enum.QualityLevel.Level02 - replace: - - Enum.QualityLevel.Level02 - Enum.QualityLevel.Level 3: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 3 was replaced with Enum.QualityLevel.Level03 - replace: - - Enum.QualityLevel.Level03 - Enum.QualityLevel.Level 4: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 4 was replaced with Enum.QualityLevel.Level04 - replace: - - Enum.QualityLevel.Level04 - Enum.QualityLevel.Level 5: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 5 was replaced with Enum.QualityLevel.Level05 - replace: - - Enum.QualityLevel.Level05 - Enum.QualityLevel.Level 6: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 6 was replaced with Enum.QualityLevel.Level06 - replace: - - Enum.QualityLevel.Level06 - Enum.QualityLevel.Level 7: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 7 was replaced with Enum.QualityLevel.Level07 - replace: - - Enum.QualityLevel.Level07 - Enum.QualityLevel.Level 8: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 8 was replaced with Enum.QualityLevel.Level08 - replace: - - Enum.QualityLevel.Level08 - Enum.QualityLevel.Level 9: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 9 was replaced with Enum.QualityLevel.Level09 - replace: - - Enum.QualityLevel.Level09 - Enum.QualityLevel.Level 10: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 10 was replaced with Enum.QualityLevel.Level10 - replace: - - Enum.QualityLevel.Level10 - Enum.QualityLevel.Level 11: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 11 was replaced with Enum.QualityLevel.Level11 - replace: - - Enum.QualityLevel.Level11 - Enum.QualityLevel.Level 12: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 12 was replaced with Enum.QualityLevel.Level12 - replace: - - Enum.QualityLevel.Level12 - Enum.QualityLevel.Level 13: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 13 was replaced with Enum.QualityLevel.Level13 - replace: - - Enum.QualityLevel.Level13 - Enum.QualityLevel.Level 14: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 14 was replaced with Enum.QualityLevel.Level14 - replace: - - Enum.QualityLevel.Level14 - Enum.QualityLevel.Level 15: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 15 was replaced with Enum.QualityLevel.Level15 - replace: - - Enum.QualityLevel.Level15 - Enum.QualityLevel.Level 16: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 16 was replaced with Enum.QualityLevel.Level16 - replace: - - Enum.QualityLevel.Level16 - Enum.QualityLevel.Level 17: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 17 was replaced with Enum.QualityLevel.Level17 - replace: - - Enum.QualityLevel.Level17 - Enum.QualityLevel.Level 18: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 18 was replaced with Enum.QualityLevel.Level18 - replace: - - Enum.QualityLevel.Level18 - Enum.QualityLevel.Level 19: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 19 was replaced with Enum.QualityLevel.Level19 - replace: - - Enum.QualityLevel.Level19 - Enum.QualityLevel.Level 20: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 20 was replaced with Enum.QualityLevel.Level20 - replace: - - Enum.QualityLevel.Level20 - Enum.QualityLevel.Level 21: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 21 was replaced with Enum.QualityLevel.Level21 - replace: - - Enum.QualityLevel.Level21 - Enum.QualityLevel.Level01: - struct: EnumItem - Enum.QualityLevel.Level02: - struct: EnumItem - Enum.QualityLevel.Level03: - struct: EnumItem - Enum.QualityLevel.Level04: - struct: EnumItem - Enum.QualityLevel.Level05: - struct: EnumItem - Enum.QualityLevel.Level06: - struct: EnumItem - Enum.QualityLevel.Level07: - struct: EnumItem - Enum.QualityLevel.Level08: - struct: EnumItem - Enum.QualityLevel.Level09: - struct: EnumItem - Enum.QualityLevel.Level10: - struct: EnumItem - Enum.QualityLevel.Level11: - struct: EnumItem - Enum.QualityLevel.Level12: - struct: EnumItem - Enum.QualityLevel.Level13: - struct: EnumItem - Enum.QualityLevel.Level14: - struct: EnumItem - Enum.QualityLevel.Level15: - struct: EnumItem - Enum.QualityLevel.Level16: - struct: EnumItem - Enum.QualityLevel.Level17: - struct: EnumItem - Enum.QualityLevel.Level18: - struct: EnumItem - Enum.QualityLevel.Level19: - struct: EnumItem - Enum.QualityLevel.Level20: - struct: EnumItem - Enum.QualityLevel.Level21: - struct: EnumItem - Enum.R15CollisionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.R15CollisionType.InnerBox: - struct: EnumItem - Enum.R15CollisionType.OuterBox: - struct: EnumItem - Enum.RaycastFilterType.Blacklist: - struct: EnumItem - deprecated: - message: Enum.RaycastFilterType.Blacklist was replaced with Enum.RaycastFilterType.Exclude - replace: - - Enum.RaycastFilterType.Exclude - Enum.RaycastFilterType.Exclude: - struct: EnumItem - Enum.RaycastFilterType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RaycastFilterType.Include: - struct: EnumItem - Enum.RaycastFilterType.Whitelist: - struct: EnumItem - deprecated: - message: Enum.RaycastFilterType.Whitelist was replaced with Enum.RaycastFilterType.Include - replace: - - Enum.RaycastFilterType.Include - Enum.RejectCharacterDeletions.Default: - struct: EnumItem - Enum.RejectCharacterDeletions.Disabled: - struct: EnumItem - Enum.RejectCharacterDeletions.Enabled: - struct: EnumItem - Enum.RejectCharacterDeletions.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderFidelity.Automatic: - struct: EnumItem - Enum.RenderFidelity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderFidelity.Performance: - struct: EnumItem - Enum.RenderFidelity.Precise: - struct: EnumItem - Enum.RenderPriority.Camera: - struct: EnumItem - Enum.RenderPriority.Character: - struct: EnumItem - Enum.RenderPriority.First: - struct: EnumItem - Enum.RenderPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderPriority.Input: - struct: EnumItem - Enum.RenderPriority.Last: - struct: EnumItem - Enum.RenderingTestComparisonMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderingTestComparisonMethod.diff: - struct: EnumItem - Enum.RenderingTestComparisonMethod.psnr: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Default: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Disabled: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Enabled: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ResamplerMode.Default: - struct: EnumItem - Enum.ResamplerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ResamplerMode.Pixelated: - struct: EnumItem - Enum.ReservedHighlightId.Active: - struct: EnumItem - Enum.ReservedHighlightId.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReservedHighlightId.Hover: - struct: EnumItem - Enum.ReservedHighlightId.Selection: - struct: EnumItem - Enum.ReservedHighlightId.Standard: - struct: EnumItem - Enum.ReturnKeyType.Default: - struct: EnumItem - Enum.ReturnKeyType.Done: - struct: EnumItem - Enum.ReturnKeyType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReturnKeyType.Go: - struct: EnumItem - Enum.ReturnKeyType.Next: - struct: EnumItem - Enum.ReturnKeyType.Search: - struct: EnumItem - Enum.ReturnKeyType.Send: - struct: EnumItem - Enum.ReverbType.Alley: - struct: EnumItem - Enum.ReverbType.Arena: - struct: EnumItem - Enum.ReverbType.Auditorium: - struct: EnumItem - Enum.ReverbType.Bathroom: - struct: EnumItem - Enum.ReverbType.CarpettedHallway: - struct: EnumItem - Enum.ReverbType.Cave: - struct: EnumItem - Enum.ReverbType.City: - struct: EnumItem - Enum.ReverbType.ConcertHall: - struct: EnumItem - Enum.ReverbType.Forest: - struct: EnumItem - Enum.ReverbType.GenericReverb: - struct: EnumItem - Enum.ReverbType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReverbType.Hallway: - struct: EnumItem - Enum.ReverbType.Hangar: - struct: EnumItem - Enum.ReverbType.LivingRoom: - struct: EnumItem - Enum.ReverbType.Mountains: - struct: EnumItem - Enum.ReverbType.NoReverb: - struct: EnumItem - Enum.ReverbType.PaddedCell: - struct: EnumItem - Enum.ReverbType.ParkingLot: - struct: EnumItem - Enum.ReverbType.Plain: - struct: EnumItem - Enum.ReverbType.Quarry: - struct: EnumItem - Enum.ReverbType.Room: - struct: EnumItem - Enum.ReverbType.SewerPipe: - struct: EnumItem - Enum.ReverbType.StoneCorridor: - struct: EnumItem - Enum.ReverbType.StoneRoom: - struct: EnumItem - Enum.ReverbType.UnderWater: - struct: EnumItem - Enum.RibbonTool.ColorPicker: - struct: EnumItem - Enum.RibbonTool.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RibbonTool.Group: - struct: EnumItem - Enum.RibbonTool.MaterialPicker: - struct: EnumItem - Enum.RibbonTool.Move: - struct: EnumItem - Enum.RibbonTool.None: - struct: EnumItem - Enum.RibbonTool.Rotate: - struct: EnumItem - Enum.RibbonTool.Scale: - struct: EnumItem - Enum.RibbonTool.Select: - struct: EnumItem - Enum.RibbonTool.Transform: - struct: EnumItem - Enum.RibbonTool.Ungroup: - struct: EnumItem - Enum.RigScale.Default: - struct: EnumItem - Enum.RigScale.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RigScale.Rthro: - struct: EnumItem - Enum.RigScale.RthroNarrow: - struct: EnumItem - Enum.RigType.Custom: - struct: EnumItem - Enum.RigType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RigType.None: - struct: EnumItem - Enum.RigType.R15: - struct: EnumItem - Enum.RigType.Rthro: - struct: EnumItem - Enum.RigType.RthroNarrow: - struct: EnumItem - Enum.RollOffMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RollOffMode.Inverse: - struct: EnumItem - Enum.RollOffMode.InverseTapered: - struct: EnumItem - Enum.RollOffMode.Linear: - struct: EnumItem - Enum.RollOffMode.LinearSquare: - struct: EnumItem - Enum.RotationOrder.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RotationOrder.XYZ: - struct: EnumItem - Enum.RotationOrder.XZY: - struct: EnumItem - Enum.RotationOrder.YXZ: - struct: EnumItem - Enum.RotationOrder.YZX: - struct: EnumItem - Enum.RotationOrder.ZXY: - struct: EnumItem - Enum.RotationOrder.ZYX: - struct: EnumItem - Enum.RotationType.CameraRelative: - struct: EnumItem - Enum.RotationType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RotationType.MovementRelative: - struct: EnumItem - Enum.RtlTextSupport.Default: - struct: EnumItem - Enum.RtlTextSupport.Disabled: - struct: EnumItem - Enum.RtlTextSupport.Enabled: - struct: EnumItem - Enum.RtlTextSupport.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RunContext.Client: - struct: EnumItem - Enum.RunContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RunContext.Legacy: - struct: EnumItem - Enum.RunContext.Plugin: - struct: EnumItem - Enum.RunContext.Server: - struct: EnumItem - Enum.RuntimeUndoBehavior.Aggregate: - struct: EnumItem - Enum.RuntimeUndoBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RuntimeUndoBehavior.Hybrid: - struct: EnumItem - Enum.RuntimeUndoBehavior.Snapshot: - struct: EnumItem - Enum.SafeAreaCompatibility.FullscreenExtension: - struct: EnumItem - Enum.SafeAreaCompatibility.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SafeAreaCompatibility.None: - struct: EnumItem - Enum.SalesTypeFilter.All: - struct: EnumItem - Enum.SalesTypeFilter.Collectibles: - struct: EnumItem - Enum.SalesTypeFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SalesTypeFilter.Premium: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadDistanceScale: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadFieldOfViewDeg: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadThumbnailType: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadYRotDeg: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SaveAvatarThumbnailCustomizationFailure.Other: - struct: EnumItem - Enum.SaveFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SaveFilter.SaveAll: - struct: EnumItem - Enum.SaveFilter.SaveGame: - struct: EnumItem - Enum.SaveFilter.SaveWorld: - struct: EnumItem - Enum.SavedQualitySetting.Automatic: - struct: EnumItem - Enum.SavedQualitySetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SavedQualitySetting.QualityLevel1: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel10: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel2: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel3: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel4: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel5: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel6: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel7: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel8: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel9: - struct: EnumItem - Enum.ScaleType.Crop: - struct: EnumItem - Enum.ScaleType.Fit: - struct: EnumItem - Enum.ScaleType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScaleType.Slice: - struct: EnumItem - Enum.ScaleType.Stretch: - struct: EnumItem - Enum.ScaleType.Tile: - struct: EnumItem - Enum.ScopeCheckResult.BackendError: - struct: EnumItem - Enum.ScopeCheckResult.ConsentAccepted: - struct: EnumItem - Enum.ScopeCheckResult.ConsentDenied: - struct: EnumItem - Enum.ScopeCheckResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScopeCheckResult.InvalidArgument: - struct: EnumItem - Enum.ScopeCheckResult.InvalidScopes: - struct: EnumItem - Enum.ScopeCheckResult.NoUserInput: - struct: EnumItem - Enum.ScopeCheckResult.Timeout: - struct: EnumItem - Enum.ScopeCheckResult.UnexpectedError: - struct: EnumItem - Enum.ScreenInsets.CoreUISafeInsets: - struct: EnumItem - Enum.ScreenInsets.DeviceSafeInsets: - struct: EnumItem - Enum.ScreenInsets.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScreenInsets.None: - struct: EnumItem - Enum.ScreenOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScreenOrientation.LandscapeLeft: - struct: EnumItem - Enum.ScreenOrientation.LandscapeRight: - struct: EnumItem - Enum.ScreenOrientation.LandscapeSensor: - struct: EnumItem - Enum.ScreenOrientation.Portrait: - struct: EnumItem - Enum.ScreenOrientation.Sensor: - struct: EnumItem - Enum.ScrollBarInset.Always: - struct: EnumItem - Enum.ScrollBarInset.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScrollBarInset.None: - struct: EnumItem - Enum.ScrollBarInset.ScrollBar: - struct: EnumItem - Enum.ScrollingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScrollingDirection.X: - struct: EnumItem - Enum.ScrollingDirection.XY: - struct: EnumItem - Enum.ScrollingDirection.Y: - struct: EnumItem - Enum.SelectionBehavior.Escape: - struct: EnumItem - Enum.SelectionBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SelectionBehavior.Stop: - struct: EnumItem - Enum.SensorMode.Floor: - struct: EnumItem - Enum.SensorMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SensorMode.Ladder: - struct: EnumItem - Enum.SensorUpdateType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SensorUpdateType.Manual: - struct: EnumItem - Enum.SensorUpdateType.OnRead: - struct: EnumItem - Enum.ServerAudioBehavior.Enabled: - struct: EnumItem - Enum.ServerAudioBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ServerAudioBehavior.Muted: - struct: EnumItem - Enum.ServerAudioBehavior.OnlineGame: - struct: EnumItem - Enum.ServiceVisibility.Always: - struct: EnumItem - Enum.ServiceVisibility.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ServiceVisibility.Off: - struct: EnumItem - Enum.ServiceVisibility.WithChildren: - struct: EnumItem - Enum.Severity.Error: - struct: EnumItem - Enum.Severity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Severity.Warning: - struct: EnumItem - Enum.SignalBehavior.AncestryDeferred: - struct: EnumItem - Enum.SignalBehavior.Default: - struct: EnumItem - Enum.SignalBehavior.Deferred: - struct: EnumItem - Enum.SignalBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SignalBehavior.Immediate: - struct: EnumItem - Enum.SizeConstraint.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SizeConstraint.RelativeXX: - struct: EnumItem - Enum.SizeConstraint.RelativeXY: - struct: EnumItem - Enum.SizeConstraint.RelativeYY: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.Disabled: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SolverConvergenceVisualizationMode.PerEdge: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.PerIsland: - struct: EnumItem - Enum.SortDirection.Ascending: - struct: EnumItem - Enum.SortDirection.Descending: - struct: EnumItem - Enum.SortDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SortOrder.Custom: - struct: EnumItem - Enum.SortOrder.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SortOrder.LayoutOrder: - struct: EnumItem - Enum.SortOrder.Name: - struct: EnumItem - Enum.SpecialKey.ChatHotkey: - struct: EnumItem - Enum.SpecialKey.End: - struct: EnumItem - Enum.SpecialKey.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SpecialKey.Home: - struct: EnumItem - Enum.SpecialKey.Insert: - struct: EnumItem - Enum.SpecialKey.PageDown: - struct: EnumItem - Enum.SpecialKey.PageUp: - struct: EnumItem - Enum.StartCorner.BottomLeft: - struct: EnumItem - Enum.StartCorner.BottomRight: - struct: EnumItem - Enum.StartCorner.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StartCorner.TopLeft: - struct: EnumItem - Enum.StartCorner.TopRight: - struct: EnumItem - Enum.Status.Confusion: - struct: EnumItem - Enum.Status.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Status.Poison: - struct: EnumItem - Enum.StreamOutBehavior.Default: - struct: EnumItem - Enum.StreamOutBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StreamOutBehavior.LowMemory: - struct: EnumItem - Enum.StreamOutBehavior.Opportunistic: - struct: EnumItem - Enum.StreamingIntegrityMode.Default: - struct: EnumItem - Enum.StreamingIntegrityMode.Disabled: - struct: EnumItem - Enum.StreamingIntegrityMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StreamingIntegrityMode.MinimumRadiusPause: - struct: EnumItem - Enum.StreamingIntegrityMode.PauseOutsideLoadedArea: - struct: EnumItem - Enum.StreamingPauseMode.ClientPhysicsPause: - struct: EnumItem - Enum.StreamingPauseMode.Default: - struct: EnumItem - Enum.StreamingPauseMode.Disabled: - struct: EnumItem - Enum.StreamingPauseMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioCloseMode.CloseDoc: - struct: EnumItem - Enum.StudioCloseMode.CloseStudio: - struct: EnumItem - Enum.StudioCloseMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioCloseMode.None: - struct: EnumItem - Enum.StudioDataModelType.Edit: - struct: EnumItem - Enum.StudioDataModelType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioDataModelType.None: - struct: EnumItem - Enum.StudioDataModelType.PlayClient: - struct: EnumItem - Enum.StudioDataModelType.PlayServer: - struct: EnumItem - Enum.StudioDataModelType.Standalone: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.ActiveLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Background: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Bool: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Bracket: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Builtin: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Comment: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DebuggerCurrentLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DebuggerErrorLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Default: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DocViewCodeBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Error: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.FindSelectionBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Function: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.FunctionName: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioScriptEditorColorCategories.Keyword: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Local: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.LuauKeyword: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MatchingWordBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuBorder: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuPrimaryText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuScrollbarBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuScrollbarHandle: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSecondaryText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSelectedBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSelectedText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Method: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Nil: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Number: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Operator: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Property: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Ruler: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.SelectionBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.SelectionText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Self: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.String: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.TODO: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Warning: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Whitespace: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Custom: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Extra1: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Extra2: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioScriptEditorColorPresets.RobloxDefault: - struct: EnumItem - Enum.StudioStyleGuideColor.AttributeCog: - struct: EnumItem - Enum.StudioStyleGuideColor.Border: - struct: EnumItem - Enum.StudioStyleGuideColor.BrightText: - struct: EnumItem - Enum.StudioStyleGuideColor.Button: - struct: EnumItem - Enum.StudioStyleGuideColor.ButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.ButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.CategoryItem: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatIncomingBgColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatIncomingTextColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatModeratedMessageColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatOutgoingBgColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatOutgoingTextColor: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldIndicator: - struct: EnumItem - Enum.StudioStyleGuideColor.ColorPickerFrame: - struct: EnumItem - Enum.StudioStyleGuideColor.CurrentMarker: - struct: EnumItem - Enum.StudioStyleGuideColor.Dark: - struct: EnumItem - Enum.StudioStyleGuideColor.DebuggerCurrentLine: - struct: EnumItem - Enum.StudioStyleGuideColor.DebuggerErrorLine: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButton: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogMainButton: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogMainButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathText: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNum: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumAdditionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumDeletionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumNoChangeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumSeparatorBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextAddition: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextAdditionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextDeletion: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextDeletionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextHunkInfo: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextNoChange: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextNoChangeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextSeparatorBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DimmedText: - struct: EnumItem - Enum.StudioStyleGuideColor.DocViewCodeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DropShadow: - struct: EnumItem - Enum.StudioStyleGuideColor.Dropdown: - struct: EnumItem - Enum.StudioStyleGuideColor.EmulatorBar: - struct: EnumItem - Enum.StudioStyleGuideColor.EmulatorDropDown: - struct: EnumItem - Enum.StudioStyleGuideColor.ErrorText: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonAccent: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonBorderAlt: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonChecked: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonDefault: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonHover: - struct: EnumItem - Enum.StudioStyleGuideColor.GameSettingsTableItem: - struct: EnumItem - Enum.StudioStyleGuideColor.GameSettingsTooltip: - struct: EnumItem - Enum.StudioStyleGuideColor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioStyleGuideColor.HeaderSection: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoBarWarningBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoBarWarningText: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoText: - struct: EnumItem - Enum.StudioStyleGuideColor.InputFieldBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.InputFieldBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.Item: - struct: EnumItem - Enum.StudioStyleGuideColor.Light: - struct: EnumItem - Enum.StudioStyleGuideColor.LinkText: - struct: EnumItem - Enum.StudioStyleGuideColor.MainBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.MainButton: - struct: EnumItem - Enum.StudioStyleGuideColor.MainText: - struct: EnumItem - Enum.StudioStyleGuideColor.Mid: - struct: EnumItem - Enum.StudioStyleGuideColor.Midlight: - struct: EnumItem - Enum.StudioStyleGuideColor.Notification: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonButton: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonTab: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonTabTopBar: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBool: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBracket: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBuiltInFunction: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptComment: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptEditorCurrentLine: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptError: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFindSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFunction: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFunctionName: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptKeyword: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptLocal: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptLuauKeyword: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptMatchingWordSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptMethod: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptNil: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptNumber: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptOperator: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptProperty: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptRuler: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelectionText: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelf: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSideWidget: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptString: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptText: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptTodo: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptWarning: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptWhitespace: - struct: EnumItem - Enum.StudioStyleGuideColor.ScrollBar: - struct: EnumItem - Enum.StudioStyleGuideColor.ScrollBarBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.SensitiveText: - struct: EnumItem - Enum.StudioStyleGuideColor.Separator: - struct: EnumItem - Enum.StudioStyleGuideColor.Shadow: - struct: EnumItem - Enum.StudioStyleGuideColor.StatusBar: - struct: EnumItem - Enum.StudioStyleGuideColor.SubText: - struct: EnumItem - Enum.StudioStyleGuideColor.Tab: - struct: EnumItem - Enum.StudioStyleGuideColor.TabBar: - struct: EnumItem - Enum.StudioStyleGuideColor.TableItem: - struct: EnumItem - Enum.StudioStyleGuideColor.Titlebar: - struct: EnumItem - Enum.StudioStyleGuideColor.TitlebarText: - struct: EnumItem - Enum.StudioStyleGuideColor.Tooltip: - struct: EnumItem - Enum.StudioStyleGuideColor.ViewPortBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.WarningText: - struct: EnumItem - Enum.StudioStyleGuideModifier.Default: - struct: EnumItem - Enum.StudioStyleGuideModifier.Disabled: - struct: EnumItem - Enum.StudioStyleGuideModifier.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioStyleGuideModifier.Hover: - struct: EnumItem - Enum.StudioStyleGuideModifier.Pressed: - struct: EnumItem - Enum.StudioStyleGuideModifier.Selected: - struct: EnumItem - Enum.Style.Alternating Supports: - struct: EnumItem - deprecated: - message: Enum.Style.Alternating Supports was replaced with Enum.Style.AlternatingSupports - replace: - - Enum.Style.AlternatingSupports - Enum.Style.AlternatingSupports: - struct: EnumItem - Enum.Style.Bridge Style Supports: - struct: EnumItem - deprecated: - message: Enum.Style.Bridge Style Supports was replaced with Enum.Style.BridgeStyleSupports - replace: - - Enum.Style.BridgeStyleSupports - Enum.Style.BridgeStyleSupports: - struct: EnumItem - Enum.Style.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Style.No Supports: - struct: EnumItem - deprecated: - message: Enum.Style.No Supports was replaced with Enum.Style.NoSupports - replace: - - Enum.Style.NoSupports - Enum.Style.NoSupports: - struct: EnumItem - Enum.SurfaceConstraint.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceConstraint.Hinge: - struct: EnumItem - Enum.SurfaceConstraint.Motor: - struct: EnumItem - Enum.SurfaceConstraint.None: - struct: EnumItem - Enum.SurfaceConstraint.SteppingMotor: - struct: EnumItem - Enum.SurfaceGuiShape.CurvedHorizontally: - struct: EnumItem - Enum.SurfaceGuiShape.Flat: - struct: EnumItem - Enum.SurfaceGuiShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceGuiSizingMode.FixedSize: - struct: EnumItem - Enum.SurfaceGuiSizingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceGuiSizingMode.PixelsPerStud: - struct: EnumItem - Enum.SurfaceType.Bumps: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Bumps was replaced with Enum.SurfaceType.Glue - replace: - - Enum.SurfaceType.Glue - Enum.SurfaceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceType.Glue: - struct: EnumItem - Enum.SurfaceType.Hinge: - struct: EnumItem - Enum.SurfaceType.Inlet: - struct: EnumItem - Enum.SurfaceType.Motor: - struct: EnumItem - Enum.SurfaceType.Smooth: - struct: EnumItem - Enum.SurfaceType.SmoothNoOutlines: - struct: EnumItem - Enum.SurfaceType.Spawn: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Spawn was replaced with Enum.SurfaceType.Smooth - replace: - - Enum.SurfaceType.Smooth - Enum.SurfaceType.SteppingMotor: - struct: EnumItem - Enum.SurfaceType.Studs: - struct: EnumItem - Enum.SurfaceType.Universal: - struct: EnumItem - Enum.SurfaceType.Unjoinable: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Unjoinable was replaced with Enum.SurfaceType.Smooth - replace: - - Enum.SurfaceType.Smooth - Enum.SurfaceType.Weld: - struct: EnumItem - Enum.SwipeDirection.Down: - struct: EnumItem - Enum.SwipeDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SwipeDirection.Left: - struct: EnumItem - Enum.SwipeDirection.None: - struct: EnumItem - Enum.SwipeDirection.Right: - struct: EnumItem - Enum.SwipeDirection.Up: - struct: EnumItem - Enum.TableMajorAxis.ColumnMajor: - struct: EnumItem - Enum.TableMajorAxis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TableMajorAxis.RowMajor: - struct: EnumItem - Enum.Technology.Compatibility: - struct: EnumItem - Enum.Technology.Future: - struct: EnumItem - Enum.Technology.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Technology.Legacy: - struct: EnumItem - Enum.Technology.ShadowMap: - struct: EnumItem - Enum.Technology.Voxel: - struct: EnumItem - Enum.TeleportMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportMethod.TeleportPartyAsync: - struct: EnumItem - Enum.TeleportMethod.TeleportToPlaceInstance: - struct: EnumItem - Enum.TeleportMethod.TeleportToPrivateServer: - struct: EnumItem - Enum.TeleportMethod.TeleportToSpawnByName: - struct: EnumItem - Enum.TeleportMethod.TeleportUnknown: - struct: EnumItem - Enum.TeleportResult.Failure: - struct: EnumItem - Enum.TeleportResult.Flooded: - struct: EnumItem - Enum.TeleportResult.GameEnded: - struct: EnumItem - Enum.TeleportResult.GameFull: - struct: EnumItem - Enum.TeleportResult.GameNotFound: - struct: EnumItem - Enum.TeleportResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportResult.IsTeleporting: - struct: EnumItem - Enum.TeleportResult.Success: - struct: EnumItem - Enum.TeleportResult.Unauthorized: - struct: EnumItem - Enum.TeleportState.Failed: - struct: EnumItem - Enum.TeleportState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportState.InProgress: - struct: EnumItem - Enum.TeleportState.RequestedFromServer: - struct: EnumItem - Enum.TeleportState.Started: - struct: EnumItem - Enum.TeleportState.WaitingForServer: - struct: EnumItem - Enum.TeleportType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportType.ToInstance: - struct: EnumItem - Enum.TeleportType.ToPlace: - struct: EnumItem - Enum.TeleportType.ToReservedServer: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Convert: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditAddTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditReplaceTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditSeaLevelTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Generate: - struct: EnumItem - Enum.TerrainAcquisitionMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TerrainAcquisitionMethod.Import: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Legacy: - struct: EnumItem - Enum.TerrainAcquisitionMethod.None: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Other: - struct: EnumItem - Enum.TerrainAcquisitionMethod.RegionFillTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.RegionPasteTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Template: - struct: EnumItem - Enum.TerrainFace.Bottom: - struct: EnumItem - Enum.TerrainFace.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TerrainFace.Side: - struct: EnumItem - Enum.TerrainFace.Top: - struct: EnumItem - Enum.TextChatMessageStatus.Floodchecked: - struct: EnumItem - Enum.TextChatMessageStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextChatMessageStatus.InvalidPrivacySettings: - struct: EnumItem - Enum.TextChatMessageStatus.InvalidTextChannelPermissions: - struct: EnumItem - Enum.TextChatMessageStatus.MessageTooLong: - struct: EnumItem - Enum.TextChatMessageStatus.Sending: - struct: EnumItem - Enum.TextChatMessageStatus.Success: - struct: EnumItem - Enum.TextChatMessageStatus.TextFilterFailed: - struct: EnumItem - Enum.TextChatMessageStatus.Unknown: - struct: EnumItem - Enum.TextFilterContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextFilterContext.PrivateChat: - struct: EnumItem - Enum.TextFilterContext.PublicChat: - struct: EnumItem - Enum.TextInputType.Default: - struct: EnumItem - Enum.TextInputType.Email: - struct: EnumItem - Enum.TextInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextInputType.NoSuggestions: - struct: EnumItem - Enum.TextInputType.Number: - struct: EnumItem - Enum.TextInputType.OneTimePassword: - struct: EnumItem - Enum.TextInputType.Password: - struct: EnumItem - Enum.TextInputType.PasswordShown: - struct: EnumItem - Enum.TextInputType.Phone: - struct: EnumItem - Enum.TextInputType.Username: - struct: EnumItem - Enum.TextTruncate.AtEnd: - struct: EnumItem - Enum.TextTruncate.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextTruncate.None: - struct: EnumItem - Enum.TextXAlignment.Center: - struct: EnumItem - Enum.TextXAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextXAlignment.Left: - struct: EnumItem - Enum.TextXAlignment.Right: - struct: EnumItem - Enum.TextYAlignment.Bottom: - struct: EnumItem - Enum.TextYAlignment.Center: - struct: EnumItem - Enum.TextYAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextYAlignment.Top: - struct: EnumItem - Enum.TextureMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextureMode.Static: - struct: EnumItem - Enum.TextureMode.Stretch: - struct: EnumItem - Enum.TextureMode.Wrap: - struct: EnumItem - Enum.TextureQueryType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextureQueryType.Humanoid: - struct: EnumItem - Enum.TextureQueryType.HumanoidOrphaned: - struct: EnumItem - Enum.TextureQueryType.NonHumanoid: - struct: EnumItem - Enum.TextureQueryType.NonHumanoidOrphaned: - struct: EnumItem - Enum.ThreadPoolConfig.Auto: - struct: EnumItem - Enum.ThreadPoolConfig.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThreadPoolConfig.PartialThread: - struct: EnumItem - deprecated: - message: Enum.ThreadPoolConfig.PartialThread was replaced with Enum.ThreadPoolConfig.Auto - replace: - - Enum.ThreadPoolConfig.Auto - Enum.ThreadPoolConfig.PerCore1: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore2: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore3: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore4: - struct: EnumItem - Enum.ThreadPoolConfig.Threads1: - struct: EnumItem - Enum.ThreadPoolConfig.Threads16: - struct: EnumItem - Enum.ThreadPoolConfig.Threads2: - struct: EnumItem - Enum.ThreadPoolConfig.Threads3: - struct: EnumItem - Enum.ThreadPoolConfig.Threads4: - struct: EnumItem - Enum.ThreadPoolConfig.Threads8: - struct: EnumItem - Enum.ThrottlingPriority.Default: - struct: EnumItem - Enum.ThrottlingPriority.ElevatedOnServer: - struct: EnumItem - Enum.ThrottlingPriority.Extreme: - struct: EnumItem - Enum.ThrottlingPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailSize.Size100x100: - struct: EnumItem - Enum.ThumbnailSize.Size150x150: - struct: EnumItem - Enum.ThumbnailSize.Size180x180: - struct: EnumItem - Enum.ThumbnailSize.Size352x352: - struct: EnumItem - Enum.ThumbnailSize.Size420x420: - struct: EnumItem - Enum.ThumbnailSize.Size48x48: - struct: EnumItem - Enum.ThumbnailSize.Size60x60: - struct: EnumItem - Enum.ThumbnailType.AvatarBust: - struct: EnumItem - Enum.ThumbnailType.AvatarThumbnail: - struct: EnumItem - Enum.ThumbnailType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailType.HeadShot: - struct: EnumItem - Enum.TickCountSampleMethod.Benchmark: - struct: EnumItem - Enum.TickCountSampleMethod.Fast: - struct: EnumItem - Enum.TickCountSampleMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TickCountSampleMethod.Precise: - struct: EnumItem - Enum.TopBottom.Bottom: - struct: EnumItem - Enum.TopBottom.Center: - struct: EnumItem - Enum.TopBottom.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TopBottom.Top: - struct: EnumItem - Enum.TouchCameraMovementMode.Classic: - struct: EnumItem - Enum.TouchCameraMovementMode.Default: - struct: EnumItem - Enum.TouchCameraMovementMode.Follow: - struct: EnumItem - Enum.TouchCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TouchCameraMovementMode.Orbital: - struct: EnumItem - Enum.TouchMovementMode.ClickToMove: - struct: EnumItem - Enum.TouchMovementMode.DPad: - struct: EnumItem - Enum.TouchMovementMode.Default: - struct: EnumItem - Enum.TouchMovementMode.DynamicThumbstick: - struct: EnumItem - Enum.TouchMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TouchMovementMode.Thumbpad: - struct: EnumItem - Enum.TouchMovementMode.Thumbstick: - struct: EnumItem - Enum.TrackerError.AudioError: - struct: EnumItem - Enum.TrackerError.AudioNoPermission: - struct: EnumItem - Enum.TrackerError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerError.InitFailed: - struct: EnumItem - Enum.TrackerError.NoAudio: - struct: EnumItem - Enum.TrackerError.NoService: - struct: EnumItem - Enum.TrackerError.NoVideo: - struct: EnumItem - Enum.TrackerError.Ok: - struct: EnumItem - Enum.TrackerError.VideoError: - struct: EnumItem - Enum.TrackerError.VideoNoPermission: - struct: EnumItem - Enum.TrackerError.VideoUnsupported: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.Auto: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ExtrapolateFacsAndPose: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ExtrapolateFacsOnly: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ForceDisabled: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerLodFlagMode.Auto: - struct: EnumItem - Enum.TrackerLodFlagMode.ForceFalse: - struct: EnumItem - Enum.TrackerLodFlagMode.ForceTrue: - struct: EnumItem - Enum.TrackerLodFlagMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerLodValueMode.Auto: - struct: EnumItem - Enum.TrackerLodValueMode.Force0: - struct: EnumItem - Enum.TrackerLodValueMode.Force1: - struct: EnumItem - Enum.TrackerLodValueMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerMode.Audio: - struct: EnumItem - Enum.TrackerMode.AudioVideo: - struct: EnumItem - Enum.TrackerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerMode.None: - struct: EnumItem - Enum.TrackerMode.Video: - struct: EnumItem - Enum.TrackerPromptEvent.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerPromptEvent.LODCameraRecommendDisable: - struct: EnumItem - Enum.TriStateBoolean.False: - struct: EnumItem - Enum.TriStateBoolean.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TriStateBoolean.True: - struct: EnumItem - Enum.TriStateBoolean.Unknown: - struct: EnumItem - Enum.TweenStatus.Canceled: - struct: EnumItem - Enum.TweenStatus.Completed: - struct: EnumItem - Enum.TweenStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UITheme.Dark: - struct: EnumItem - Enum.UITheme.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UITheme.Light: - struct: EnumItem - Enum.UiMessageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UiMessageType.UiMessageError: - struct: EnumItem - Enum.UiMessageType.UiMessageInfo: - struct: EnumItem - Enum.UsageContext.Default: - struct: EnumItem - Enum.UsageContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UsageContext.Preview: - struct: EnumItem - Enum.UserCFrame.Floor: - struct: EnumItem - Enum.UserCFrame.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserCFrame.Head: - struct: EnumItem - Enum.UserCFrame.LeftHand: - struct: EnumItem - Enum.UserCFrame.RightHand: - struct: EnumItem - Enum.UserInputState.Begin: - struct: EnumItem - Enum.UserInputState.Cancel: - struct: EnumItem - Enum.UserInputState.Change: - struct: EnumItem - Enum.UserInputState.End: - struct: EnumItem - Enum.UserInputState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserInputState.None: - struct: EnumItem - Enum.UserInputType.Accelerometer: - struct: EnumItem - Enum.UserInputType.Focus: - struct: EnumItem - Enum.UserInputType.Gamepad1: - struct: EnumItem - Enum.UserInputType.Gamepad2: - struct: EnumItem - Enum.UserInputType.Gamepad3: - struct: EnumItem - Enum.UserInputType.Gamepad4: - struct: EnumItem - Enum.UserInputType.Gamepad5: - struct: EnumItem - Enum.UserInputType.Gamepad6: - struct: EnumItem - Enum.UserInputType.Gamepad7: - struct: EnumItem - Enum.UserInputType.Gamepad8: - struct: EnumItem - Enum.UserInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserInputType.Gyro: - struct: EnumItem - Enum.UserInputType.InputMethod: - struct: EnumItem - Enum.UserInputType.Keyboard: - struct: EnumItem - Enum.UserInputType.MouseButton1: - struct: EnumItem - Enum.UserInputType.MouseButton2: - struct: EnumItem - Enum.UserInputType.MouseButton3: - struct: EnumItem - Enum.UserInputType.MouseMovement: - struct: EnumItem - Enum.UserInputType.MouseWheel: - struct: EnumItem - Enum.UserInputType.None: - struct: EnumItem - Enum.UserInputType.TextInput: - struct: EnumItem - Enum.UserInputType.Touch: - struct: EnumItem - Enum.VRPlayMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRPlayMode.Seated: - struct: EnumItem - Enum.VRPlayMode.Standing: - struct: EnumItem - Enum.VRSafetyBubbleMode.Anyone: - struct: EnumItem - Enum.VRSafetyBubbleMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRSafetyBubbleMode.NoOne: - struct: EnumItem - Enum.VRSafetyBubbleMode.OnlyFriends: - struct: EnumItem - Enum.VRScaling.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRScaling.Off: - struct: EnumItem - Enum.VRScaling.World: - struct: EnumItem - Enum.VRSessionState.Focused: - struct: EnumItem - Enum.VRSessionState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRSessionState.Idle: - struct: EnumItem - Enum.VRSessionState.Undefined: - struct: EnumItem - Enum.VRSessionState.Visible: - struct: EnumItem - Enum.VRTouchpad.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRTouchpad.Left: - struct: EnumItem - Enum.VRTouchpad.Right: - struct: EnumItem - Enum.VRTouchpadMode.ABXY: - struct: EnumItem - Enum.VRTouchpadMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRTouchpadMode.Touch: - struct: EnumItem - Enum.VRTouchpadMode.VirtualThumbstick: - struct: EnumItem - Enum.VelocityConstraintMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VelocityConstraintMode.Line: - struct: EnumItem - Enum.VelocityConstraintMode.Plane: - struct: EnumItem - Enum.VelocityConstraintMode.Vector: - struct: EnumItem - Enum.VerticalAlignment.Bottom: - struct: EnumItem - Enum.VerticalAlignment.Center: - struct: EnumItem - Enum.VerticalAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VerticalAlignment.Top: - struct: EnumItem - Enum.VerticalScrollBarPosition.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VerticalScrollBarPosition.Left: - struct: EnumItem - Enum.VerticalScrollBarPosition.Right: - struct: EnumItem - Enum.VibrationMotor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VibrationMotor.Large: - struct: EnumItem - Enum.VibrationMotor.LeftHand: - struct: EnumItem - Enum.VibrationMotor.LeftTrigger: - struct: EnumItem - Enum.VibrationMotor.RightHand: - struct: EnumItem - Enum.VibrationMotor.RightTrigger: - struct: EnumItem - Enum.VibrationMotor.Small: - struct: EnumItem - Enum.VirtualCursorMode.Default: - struct: EnumItem - Enum.VirtualCursorMode.Disabled: - struct: EnumItem - Enum.VirtualCursorMode.Enabled: - struct: EnumItem - Enum.VirtualCursorMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VirtualInputMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VirtualInputMode.None: - struct: EnumItem - Enum.VirtualInputMode.Playing: - struct: EnumItem - Enum.VirtualInputMode.Recording: - struct: EnumItem - Enum.VoiceChatState.Ended: - struct: EnumItem - Enum.VoiceChatState.Failed: - struct: EnumItem - Enum.VoiceChatState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VoiceChatState.Idle: - struct: EnumItem - Enum.VoiceChatState.Joined: - struct: EnumItem - Enum.VoiceChatState.Joining: - struct: EnumItem - Enum.VoiceChatState.JoiningRetry: - struct: EnumItem - Enum.VoiceChatState.Leaving: - struct: EnumItem - Enum.VolumetricAudio.Automatic: - struct: EnumItem - Enum.VolumetricAudio.Disabled: - struct: EnumItem - Enum.VolumetricAudio.Enabled: - struct: EnumItem - Enum.VolumetricAudio.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterDirection.NegX: - struct: EnumItem - Enum.WaterDirection.NegY: - struct: EnumItem - Enum.WaterDirection.NegZ: - struct: EnumItem - Enum.WaterDirection.X: - struct: EnumItem - Enum.WaterDirection.Y: - struct: EnumItem - Enum.WaterDirection.Z: - struct: EnumItem - Enum.WaterForce.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterForce.Max: - struct: EnumItem - Enum.WaterForce.Medium: - struct: EnumItem - Enum.WaterForce.None: - struct: EnumItem - Enum.WaterForce.Small: - struct: EnumItem - Enum.WaterForce.Strong: - struct: EnumItem - Enum.WrapLayerAutoSkin.Disabled: - struct: EnumItem - Enum.WrapLayerAutoSkin.EnabledOverride: - struct: EnumItem - Enum.WrapLayerAutoSkin.EnabledPreserve: - struct: EnumItem - Enum.WrapLayerAutoSkin.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapLayerDebugMode.BoundCage: - struct: EnumItem - Enum.WrapLayerDebugMode.BoundCageAndLinks: - struct: EnumItem - Enum.WrapLayerDebugMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapLayerDebugMode.HSRInner: - struct: EnumItem - Enum.WrapLayerDebugMode.HSRInnerReverse: - struct: EnumItem - Enum.WrapLayerDebugMode.HSROuter: - struct: EnumItem - Enum.WrapLayerDebugMode.HSROuterDetail: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCage: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCageFittedToBase: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCageFittedToPrev: - struct: EnumItem - Enum.WrapLayerDebugMode.None: - struct: EnumItem - Enum.WrapLayerDebugMode.OuterCage: - struct: EnumItem - Enum.WrapLayerDebugMode.Rbf: - struct: EnumItem - Enum.WrapLayerDebugMode.Reference: - struct: EnumItem - Enum.WrapLayerDebugMode.ReferenceMeshAfterMorph: - struct: EnumItem - Enum.WrapTargetDebugMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapTargetDebugMode.None: - struct: EnumItem - Enum.WrapTargetDebugMode.OuterCageDetail: - struct: EnumItem - Enum.WrapTargetDebugMode.Rbf: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageCompressed: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageInterface: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageOriginal: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerCageCompressed: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerCageOriginal: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerInterface: - struct: EnumItem - Enum.ZIndexBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ZIndexBehavior.Global: - struct: EnumItem - Enum.ZIndexBehavior.Sibling: - struct: EnumItem - Faces.new: - args: - - type: '...' - must_use: true - FloatCurveKey.new: - args: - - type: number - - type: number - - type: - display: KeyInterpolationMode - must_use: true - Font.fromEnum: - args: - - type: - display: Font - must_use: true - Font.fromId: - args: - - type: number - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Font.fromName: - args: - - type: string - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Font.new: - args: - - type: string - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Instance.new: - args: - - type: - - Accoutrement - - Accessory - - Hat - - AdPortal - - AdvancedDragger - - AnalyticsService - - Animation - - CurveAnimation - - KeyframeSequence - - AnimationController - - AnimationRigData - - Animator - - Atmosphere - - Attachment - - Bone - - AudioSearchParams - - Backpack - - WrapLayer - - WrapTarget - - Beam - - BindableEvent - - BindableFunction - - BodyAngularVelocity - - BodyForce - - BodyGyro - - BodyPosition - - BodyThrust - - BodyVelocity - - RocketPropulsion - - Breakpoint - - Camera - - BodyColors - - CharacterMesh - - Pants - - Shirt - - ShirtGraphic - - Skin - - ClickDetector - - Clouds - - Configuration - - AlignOrientation - - AlignPosition - - AngularVelocity - - AnimationConstraint - - BallSocketConstraint - - HingeConstraint - - LineForce - - LinearVelocity - - PlaneConstraint - - Plane - - RigidConstraint - - RodConstraint - - RopeConstraint - - CylindricalConstraint - - PrismaticConstraint - - SpringConstraint - - Torque - - TorsionSpringConstraint - - UniversalConstraint - - VectorForce - - HumanoidController - - SkateboardController - - VehicleController - - AirController - - ClimbController - - GroundController - - SwimController - - ControllerManager - - CustomEvent - - CustomEventReceiver - - BlockMesh - - CylinderMesh - - FileMesh - - SpecialMesh - - DataStoreIncrementOptions - - DataStoreOptions - - DataStoreSetOptions - - DebuggerWatch - - Dialog - - DialogChoice - - Dragger - - EulerRotationCurve - - ExperienceInviteOptions - - Explosion - - FaceControls - - Decal - - Texture - - Hole - - MotorFeature - - Fire - - FloatCurve - - FlyweightService - - CSGDictionaryService - - NonReplicatedCSGDictionaryService - - Folder - - ForceField - - FunctionalTest - - GetTextBoundsParams - - CanvasGroup - - Frame - - ImageButton - - TextButton - - ImageLabel - - TextLabel - - ScrollingFrame - - TextBox - - VideoFrame - - ViewportFrame - - BillboardGui - - ScreenGui - - GuiMain - - AdGui - - SurfaceGui - - FloorWire - - SelectionBox - - BoxHandleAdornment - - ConeHandleAdornment - - CylinderHandleAdornment - - ImageHandleAdornment - - LineHandleAdornment - - SphereHandleAdornment - - WireframeHandleAdornment - - ParabolaAdornment - - SelectionSphere - - ArcHandles - - Handles - - SurfaceSelection - - SelectionPartLasso - - SelectionPointLasso - - HeightmapImporterService - - HiddenSurfaceRemovalAsset - - Highlight - - Humanoid - - HumanoidDescription - - IKControl - - RotateP - - RotateV - - Glue - - ManualGlue - - ManualWeld - - Motor - - Motor6D - - Rotate - - Snap - - VelocityMotor - - Weld - - Keyframe - - KeyframeMarker - - PointLight - - SpotLight - - SurfaceLight - - LocalizationTable - - Script - - LocalScript - - ModuleScript - - MarkerCurve - - MaterialVariant - - MemoryStoreService - - Message - - Hint - - NoCollisionConstraint - - CornerWedgePart - - Part - - FlagStand - - Seat - - SkateboardPlatform - - SpawnLocation - - WedgePart - - MeshPart - - PartOperation - - IntersectOperation - - NegateOperation - - UnionOperation - - TrussPart - - VehicleSeat - - Model - - Actor - - HopperBin - - Tool - - Flag - - WorldModel - - PartOperationAsset - - ParticleEmitter - - PathfindingLink - - PathfindingModifier - - Player - - PluginAction - - NumberPose - - Pose - - BloomEffect - - BlurEffect - - ColorCorrectionEffect - - DepthOfFieldEffect - - SunRaysEffect - - ProximityPrompt - - ProximityPromptService - - ReflectionMetadata - - ReflectionMetadataCallbacks - - ReflectionMetadataClasses - - ReflectionMetadataEnums - - ReflectionMetadataEvents - - ReflectionMetadataFunctions - - ReflectionMetadataClass - - ReflectionMetadataEnum - - ReflectionMetadataEnumItem - - ReflectionMetadataMember - - ReflectionMetadataProperties - - ReflectionMetadataYieldFunctions - - RemoteEvent - - RemoteFunction - - RenderingTest - - RotationCurve - - BuoyancySensor - - ControllerPartSensor - - Sky - - Smoke - - Sound - - ChorusSoundEffect - - CompressorSoundEffect - - DistortionSoundEffect - - EchoSoundEffect - - EqualizerSoundEffect - - FlangeSoundEffect - - PitchShiftSoundEffect - - ReverbSoundEffect - - TremoloSoundEffect - - SoundGroup - - Sparkles - - StandalonePluginScripts - - StarterGear - - SurfaceAppearance - - Team - - TeleportOptions - - TerrainDetail - - TerrainRegion - - TestService - - TextChannel - - TextChatCommand - - TextChatMessageProperties - - TrackerStreamAnimation - - Trail - - Tween - - UIAspectRatioConstraint - - UISizeConstraint - - UITextSizeConstraint - - UICorner - - UIGradient - - UIGridLayout - - UIListLayout - - UIPageLayout - - UITableLayout - - UIPadding - - UIScale - - UIStroke - - BinaryStringValue - - BoolValue - - BrickColorValue - - CFrameValue - - Color3Value - - DoubleConstrainedValue - - IntConstrainedValue - - IntValue - - NumberValue - - ObjectValue - - RayValue - - StringValue - - Vector3Value - - Vector3Curve - - VirtualInputManager - - WeldConstraint - must_use: true - NumberRange.new: - args: - - type: number - - required: false - type: number - must_use: true - NumberSequence.new: - args: - - type: any - - required: false - type: number - must_use: true - NumberSequenceKeypoint.new: - args: - - type: number - - type: number - - required: false - type: number - must_use: true - OverlapParams.new: - args: [] - must_use: true - PathWaypoint.new: - args: - - required: false - type: - display: Vector3 - - required: false - type: - display: PathWaypointAction - must_use: true - PhysicalProperties.new: - args: - - type: any - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Random.new: - args: - - required: false - type: number - must_use: true - Ray.new: - args: - - type: - display: Vector3 - - type: - display: Vector3 - must_use: true - RaycastParams.new: - args: [] - must_use: true - Rect.new: - args: - - type: any - - type: any - - required: false - type: number - - required: false - type: number - must_use: true - Region3.new: - args: - - type: - display: Vector3 - - type: - display: Vector3 - must_use: true - Region3int16.new: - args: - - required: false - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - RotationCurveKey.new: - args: - - type: number - - type: - display: CFrame - - type: - display: KeyInterpolationMode - must_use: true - TweenInfo.new: - args: - - required: false - type: number - - required: false - type: - display: EasingStyle - - required: false - type: - display: EasingDirection - - required: false - type: number - - required: false - type: bool - - required: false - type: number - must_use: true - UDim.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - UDim2.fromOffset: - args: - - required: use UDim2.new() if you want an empty UDim2 - type: number - - required: false - type: number - must_use: true - UDim2.fromScale: - args: - - required: use UDim2.new() if you want an empty UDim2 - type: number - - required: false - type: number - must_use: true - UDim2.new: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: number - - required: false - type: number - must_use: true - UserSettings: - args: [] - must_use: true - Vector2.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - Vector2.one: - property: read-only - Vector2.xAxis: - property: read-only - Vector2.yAxis: - property: read-only - Vector2.zero: - property: read-only - Vector2int16.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - Vector3.FromAxis: - args: - - type: - display: Axis - must_use: true - Vector3.FromNormalId: - args: - - type: - display: NormalId - must_use: true - Vector3.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Vector3.one: - property: read-only - Vector3.xAxis: - property: read-only - Vector3.yAxis: - property: read-only - Vector3.zAxis: - property: read-only - Vector3.zero: - property: read-only - Vector3int16.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - _G: - property: new-fields - _VERSION: - property: read-only - arg: - property: new-fields - assert: - args: - - type: any - - required: A failed assertion without a message is unhelpful to users. - type: string - bit32.arshift: - args: - - type: number - - type: number - must_use: true - bit32.band: - args: - - type: '...' - must_use: true - bit32.bnot: - args: - - type: number - must_use: true - bit32.bor: - args: - - type: '...' - must_use: true - bit32.btest: - args: - - type: '...' - must_use: true - bit32.bxor: - args: - - type: '...' - must_use: true - bit32.countlz: - args: - - type: number - must_use: true - bit32.countrz: - args: - - type: number - must_use: true - bit32.extract: - args: - - type: number - - type: number - - required: false - type: number - must_use: true - bit32.lrotate: - args: - - type: number - - type: number - must_use: true - bit32.lshift: - args: - - type: number - - type: number - must_use: true - bit32.replace: - args: - - type: number - - type: number - - type: number - - required: false - type: number - must_use: true - bit32.rrotate: - args: - - type: number - - type: number - must_use: true - bit32.rshift: - args: - - type: number - - type: number - must_use: true - collectgarbage: - args: - - type: - - count - must_use: true - coroutine.close: - args: - - type: - display: thread - coroutine.create: - args: - - type: function - must_use: true - coroutine.isyieldable: - args: [] - coroutine.resume: - args: - - type: - display: coroutine - - required: false - type: '...' - coroutine.running: - args: [] - must_use: true - coroutine.status: - args: - - type: - display: coroutine - must_use: true - coroutine.wrap: - args: - - type: function - coroutine.yield: - args: - - required: false - type: '...' - debug.info: - args: - - type: any - - type: any - - required: false - type: string - must_use: true - debug.profilebegin: - args: - - type: string - debug.profileend: - args: [] - debug.resetmemorycategory: - args: [] - debug.setmemorycategory: - args: - - type: string - debug.traceback: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - must_use: true - delay: - args: - - type: number - - type: function - elapsedTime: - args: [] - error: - args: - - required: Erroring without an explanation is unhelpful to users. - type: any - - required: false - type: number - game: - struct: DataModel - gcinfo: - args: [] - must_use: true - getfenv: - args: - - required: false - type: any - must_use: true - getmetatable: - args: - - type: table - must_use: true - io.close: - args: - - required: false - type: - display: file - io.flush: - args: [] - io.input: - args: - - required: false - type: - display: file - io.lines: - args: - - type: string - io.open: - args: - - type: string - - required: false - type: - - r - - rb - - w - - wb - - a - - ab - - r+ - - rb+ - - w+ - - wb+ - - a+ - - ab+ - io.output: - args: - - required: false - type: - display: file - io.popen: - args: - - type: string - - required: false - type: - - r - - rb - - w - - wb - - a - - ab - - r+ - - rb+ - - w+ - - wb+ - - a+ - - ab+ - io.read: - args: - - type: '...' - io.stderr: - property: read-only - io.stdin: - property: read-only - io.stdout: - property: read-only - io.tmpfile: - args: [] - io.type: - args: - - type: - display: potentially file-like object - io.write: - args: - - type: '...' - ipairs: - args: - - type: table - must_use: true - loadstring: - args: - - type: string - - required: false - type: string - math.abs: - args: - - type: number - must_use: true - math.acos: - args: - - type: number - must_use: true - math.asin: - args: - - type: number - must_use: true - math.atan: - args: - - type: number - must_use: true - math.atan2: - args: - - type: number - - type: number - must_use: true - math.ceil: - args: - - type: number - must_use: true - math.clamp: - args: - - type: number - - type: number - - type: number - must_use: true - math.cos: - args: - - type: number - must_use: true - math.cosh: - args: - - type: number - must_use: true - math.deg: - args: - - type: number - must_use: true - math.exp: - args: - - type: number - must_use: true - math.floor: - args: - - type: number - must_use: true - math.fmod: - args: - - type: number - - type: number - must_use: true - math.frexp: - args: - - type: number - must_use: true - math.huge: - property: read-only - math.ldexp: - args: - - type: number - - type: number - must_use: true - math.log: - args: - - type: number - - required: false - type: number - must_use: true - math.log10: - args: - - type: number - must_use: true - math.max: - args: - - type: number - - required: use of max only makes sense with more than 1 parameter - type: '...' - must_use: true - math.min: - args: - - type: number - - required: use of min only makes sense with more than 1 parameter - type: '...' - must_use: true - math.modf: - args: - - type: number - must_use: true - math.noise: - args: - - type: number - - required: false - type: number - - required: false - type: number - must_use: true - math.pi: - property: read-only - math.pow: - args: - - type: number - - type: number - must_use: true - math.rad: - args: - - type: number - must_use: true - math.random: - args: - - required: false - type: number - - required: false - type: number - must_use: true - math.randomseed: - args: - - type: number - math.round: - args: - - type: number - must_use: true - math.sign: - args: - - type: number - must_use: true - math.sin: - args: - - type: number - must_use: true - math.sinh: - args: - - type: number - must_use: true - math.sqrt: - args: - - type: number - must_use: true - math.tan: - args: - - type: number - must_use: true - math.tanh: - args: - - type: number - must_use: true - newproxy: - args: - - required: false - type: bool - must_use: true - next: - args: - - type: table - - required: false - type: number - os.clock: - args: [] - must_use: true - os.date: - args: - - required: false - type: string - - required: false - type: number - must_use: true - os.difftime: - args: - - type: number - - type: number - must_use: true - os.time: - args: - - required: false - type: table - must_use: true - package.cpath: - property: full-write - package.loaded: - property: new-fields - package.loaders: - property: new-fields - package.loadlib: - args: - - type: string - - type: string - package.path: - property: full-write - package.preload: - property: new-fields - package.seeall: - args: - - type: table - pairs: - args: - - type: table - must_use: true - pcall: - args: - - type: function - - required: false - type: '...' - plugin: - struct: Plugin - print: - args: - - required: false - type: '...' - rawequal: - args: - - type: any - - type: any - must_use: true - rawget: - args: - - type: any - - type: any - must_use: true - rawlen: - args: - - type: table - must_use: true - rawset: - args: - - type: any - - type: any - - type: any - require: - args: - - type: number - script: - struct: Script - select: - args: - - type: any - - type: '...' - must_use: true - setfenv: - args: - - type: any - - type: table - setmetatable: - args: - - type: table - - required: false - type: table - settings: - args: [] - shared: - property: new-fields - spawn: - args: - - type: function - string.byte: - args: - - type: string - - required: false - type: number - - required: false - type: number - string.char: - args: - - required: string.char should be used with an argument despite it not throwing - type: number - - required: false - type: '...' - must_use: true - string.find: - args: - - type: string - - type: string - - required: false - type: number - - required: false - type: bool - must_use: true - string.format: - args: - - type: string - - required: string.format should only be used for strings that need formatting - type: '...' - must_use: true - string.gmatch: - args: - - type: string - - type: string - must_use: true - string.gsub: - args: - - type: string - - type: string - - type: any - - required: false - type: number - must_use: true - string.len: - args: - - type: string - must_use: true - string.lower: - args: - - type: string - must_use: true - string.match: - args: - - type: string - - type: string - - required: false - type: number - must_use: true - string.pack: - args: - - type: string - - type: '...' - must_use: true - string.packsize: - args: - - type: string - must_use: true - string.rep: - args: - - type: string - - type: number - must_use: true - string.reverse: - args: - - type: string - must_use: true - string.split: - args: - - type: string - - required: false - type: string - must_use: true - string.sub: - args: - - type: string - - type: number - - required: false - type: number - must_use: true - string.unpack: - args: - - type: string - - type: string - - required: false - type: number - must_use: true - string.upper: - args: - - type: string - must_use: true - table.clear: - args: - - type: table - table.clone: - args: - - type: table - must_use: true - table.concat: - args: - - type: table - - required: false - type: string - - required: false - type: number - - required: false - type: number - must_use: true - table.create: - args: - - type: number - - required: false - type: any - must_use: true - table.find: - args: - - type: table - - type: any - - required: false - type: number - must_use: true - table.foreach: - args: - - type: table - - type: function - deprecated: - message: use a for loop instead. - replace: [] - table.foreachi: - args: - - type: table - - type: function - deprecated: - message: use a for loop instead. - replace: [] - table.freeze: - args: - - type: table - table.getn: - args: - - type: table - - type: number - must_use: true - deprecated: - message: '`table.getn` has been superceded by #.' - replace: - - '#%1' - table.insert: - args: - - type: table - observes: write - - type: any - - required: false - type: any - table.isfrozen: - args: - - type: table - must_use: true - table.maxn: - args: - - type: table - must_use: true - table.move: - args: - - type: table - - type: number - - type: number - - type: number - - required: false - type: table - table.pack: - args: - - type: '...' - must_use: true - table.remove: - args: - - type: table - - required: false - type: number - table.sort: - args: - - type: table - - required: false - type: function - table.unpack: - args: - - type: table - - required: false - type: number - - required: false - type: number - must_use: true - task.cancel: - args: - - type: - display: thread - task.defer: - args: - - type: function - - required: false - type: '...' - task.delay: - args: - - required: false - type: number - - type: function - - required: false - type: '...' - task.desynchronize: - args: [] - task.spawn: - args: - - type: function - - required: false - type: '...' - task.synchronize: - args: [] - task.wait: - args: - - required: false - type: number - tick: - args: [] - time: - args: [] - tonumber: - args: - - type: any - - required: false - type: number - must_use: true - tostring: - args: - - type: any - must_use: true - type: - args: - - type: any - typeof: - args: - - type: any - unpack: - args: - - type: table - - required: false - type: number - - required: false - type: number - must_use: true - utf8.char: - args: - - required: utf8.char should be used with an argument despite it not throwing - type: number - - required: false - type: '...' - must_use: true - utf8.charpattern: - property: read-only - utf8.codepoint: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.codes: - args: - - type: string - must_use: true - utf8.graphemes: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.len: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.nfcnormalize: - args: - - type: string - must_use: true - utf8.nfdnormalize: - args: - - type: string - must_use: true - utf8.offset: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - wait: - args: - - required: false - type: number - warn: - args: - - type: any - - required: false - type: '...' - workspace: - struct: Workspace - xpcall: - args: - - type: function - - required: false - type: '...' -structs: - BasePart: - '*': - struct: Instance - AncestryChanged: - struct: Event - Anchored: - property: override-fields - ApplyAngularImpulse: - args: - - required: false - type: any - method: true - ApplyImpulse: - args: - - required: false - type: any - method: true - ApplyImpulseAtPosition: - args: - - required: false - type: any - - required: false - type: any - method: true - Archivable: - property: override-fields - AssemblyAngularVelocity: - any: true - AssemblyCenterOfMass: - any: true - AssemblyLinearVelocity: - any: true - AssemblyMass: - property: read-only - AssemblyRootPart: - struct: BasePart - AttributeChanged: - struct: Event - BackParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackSurface: - property: override-fields - BackSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomSurface: - property: override-fields - BottomSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BrickColor: - property: override-fields - CFrame: - any: true - CanCollide: - property: override-fields - CanCollideWith: - args: - - required: false - type: any - method: true - CanQuery: - property: override-fields - CanSetNetworkOwnership: - args: [] - method: true - CanTouch: - property: override-fields - CastShadow: - property: override-fields - CenterOfMass: - any: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionGroup: - property: override-fields - CollisionGroupId: - property: override-fields - Color: - property: override-fields - CurrentPhysicalProperties: - property: read-only - CustomPhysicalProperties: - property: override-fields - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Elasticity: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - ExtentsCFrame: - any: true - ExtentsSize: - any: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - Friction: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontSurface: - property: override-fields - FrontSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetConnectedParts: - args: - - required: false - type: any - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetJoints: - args: [] - method: true - GetMass: - args: [] - method: true - GetNetworkOwner: - args: [] - method: true - GetNetworkOwnershipAuto: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetRootPart: - args: [] - method: true - GetTouchingParts: - args: [] - method: true - GetVelocityAtPosition: - args: - - required: false - type: any - method: true - IntersectAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGrounded: - args: [] - method: true - LeftParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftSurface: - property: override-fields - LeftSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LocalSimulationTouched: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - LocalTransparencyModifier: - property: override-fields - Locked: - property: override-fields - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Mass: - property: read-only - Massless: - property: override-fields - Material: - property: override-fields - MaterialVariant: - property: override-fields - Name: - property: override-fields - Orientation: - any: true - Origin: - any: true - OutfitChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - Pivot Offset: - any: true - PivotOffset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - Position: - any: true - ReceiveAge: - property: read-only - Reflectance: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Resize: - args: - - required: false - type: any - - required: false - type: any - method: true - ResizeIncrement: - property: read-only - ResizeableFaces: - property: read-only - RightParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightSurface: - property: override-fields - RightSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RootPriority: - property: override-fields - RotVelocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - Rotation: - any: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetNetworkOwner: - args: - - required: false - type: any - method: true - SetNetworkOwnershipAuto: - args: [] - method: true - Size: - any: true - SpecificGravity: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - StoppedTouching: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - SubtractAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - TopParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopSurface: - property: override-fields - TopSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TouchEnded: - struct: Event - Touched: - struct: Event - Transparency: - property: override-fields - UnionAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Velocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - brickColor: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getMass: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - resize: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - subtractAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - unionAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Camera: - '*': - struct: Instance - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - CFrame: - any: true - CameraSubject: - struct: Instance - CameraType: - property: override-fields - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CoordinateFrame: - any: true - deprecated: - message: this property is deprecated. - replace: [] - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - DiagonalFieldOfView: - property: override-fields - FieldOfView: - property: override-fields - FieldOfViewMode: - property: override-fields - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FirstPersonTransition: - struct: Event - Focus: - any: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetLargestCutoffDistance: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetPanSpeed: - args: [] - method: true - GetPartsObscuringTarget: - args: - - required: false - type: any - - required: false - type: any - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - GetRoll: - args: [] - method: true - GetTiltSpeed: - args: [] - method: true - HeadLocked: - property: override-fields - HeadScale: - property: override-fields - Interpolate: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - InterpolationFinished: - struct: Event - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - MaxAxisFieldOfView: - property: override-fields - Name: - property: override-fields - NearPlaneZ: - property: read-only - PanUnits: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ScreenPointToRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetCameraPanMode: - args: - - required: false - type: any - method: true - SetImageServerView: - args: - - required: false - type: any - method: true - SetRoll: - args: - - required: false - type: any - method: true - TiltUnits: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - ViewportPointToRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - ViewportSize: - any: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WorldToScreenPoint: - args: - - required: false - type: any - method: true - WorldToViewportPoint: - args: - - required: false - type: any - method: true - Zoom: - args: - - required: false - type: any - method: true - ZoomToExtents: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - focus: - any: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - DataModel: - '*': - struct: Instance - AllowedGearTypeChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - BindToClose: - args: - - required: false - type: any - method: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - Close: - struct: Event - CloseLate: - struct: Event - CreatorId: - property: read-only - CreatorType: - property: read-only - DefineFastFlag: - args: - - required: false - type: any - - required: false - type: any - method: true - DefineFastInt: - args: - - required: false - type: any - - required: false - type: any - method: true - DefineFastString: - args: - - required: false - type: any - - required: false - type: any - method: true - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FindService: - args: - - required: false - type: any - method: true - GameId: - property: read-only - GearGenreSetting: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - Genre: - property: read-only - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetEngineFeature: - args: - - required: false - type: any - method: true - GetFastFlag: - args: - - required: false - type: any - method: true - GetFastInt: - args: - - required: false - type: any - method: true - GetFastString: - args: - - required: false - type: any - method: true - GetFullName: - args: [] - method: true - GetJobsInfo: - args: [] - method: true - GetMessage: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetObjects: - args: - - required: false - type: any - method: true - GetObjectsAllOrNone: - args: - - required: false - type: any - - required: false - type: any - method: true - GetObjectsAsync: - args: - - required: false - type: any - method: true - GetObjectsList: - args: - - required: false - type: any - method: true - GetPlaySessionId: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRemoteBuildMode: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetService: - args: - - type: - - AdService - - AnalyticsService - - AnimationClipProvider - - AnimationFromVideoCreatorService - - AnimationFromVideoCreatorStudioService - - AppUpdateService - - AssetCounterService - - AssetDeliveryProxy - - AssetImportService - - AssetManagerService - - AssetService - - AvatarEditorService - - AvatarImportService - - BadgeService - - CoreGui - - StarterGui - - BrowserService - - BulkImportService - - CacheableContentProvider - - HSRDataContentProvider - - MeshContentProvider - - SolidModelContentProvider - - CalloutService - - ChangeHistoryService - - Chat - - ClusterPacketCache - - CollectionService - - CommandService - - ConfigureServerService - - ContentProvider - - ContextActionService - - ControllerService - - CookiesService - - CorePackages - - CoreScriptDebuggingManagerHelper - - CoreScriptSyncService - - CrossDMScriptChangeListener - - DataModelPatchService - - DataStoreService - - Debris - - DebuggablePluginWatcher - - DebuggerConnectionManager - - DebuggerManager - - DebuggerUIService - - DeviceIdService - - DraftsService - - DraggerService - - EventIngestService - - ExperienceAuthService - - FaceAnimatorService - - FacialAnimationRecordingService - - FacialAnimationStreamingService - - FacialAnimationStreamingServiceV2 - - FlagStandService - - FlyweightService - - CSGDictionaryService - - NonReplicatedCSGDictionaryService - - FriendService - - GamePassService - - GamepadService - - Geometry - - GoogleAnalyticsConfiguration - - GroupService - - GuiService - - GuidRegistryService - - HapticService - - HeightmapImporterService - - Hopper - - HttpRbxApiService - - HttpService - - ILegacyStudioBridge - - LegacyStudioBridge - - IXPService - - IncrementalPatchBuilder - - InsertService - - JointsService - - KeyboardService - - KeyframeSequenceProvider - - LSPFileSyncService - - LanguageService - - Lighting - - LiveScriptingService - - LocalStorageService - - AppStorageService - - UserStorageService - - LocalizationService - - LodDataService - - LogService - - LoginService - - LuaWebService - - LuauScriptAnalyzerService - - MarketplaceService - - MaterialGenerationService - - MaterialService - - MemStorageService - - MemoryStoreService - - MessageBusService - - MessagingService - - MetaBreakpointManager - - MouseService - - NetworkClient - - NetworkServer - - NetworkSettings - - NotificationService - - Workspace - - PackageService - - PackageUIService - - PatchBundlerFileWatch - - PathfindingService - - PermissionsService - - PhysicsService - - PlayerEmulatorService - - Players - - PluginDebugService - - PluginGuiService - - PluginManagementService - - PluginPolicyService - - PointsService - - PolicyService - - ProcessInstancePhysicsService - - ProximityPromptService - - PublishService - - RbxAnalyticsService - - RemoteCursorService - - RemoteDebuggerServer - - RenderSettings - - ReplicatedFirst - - ReplicatedStorage - - RobloxPluginGuiService - - RobloxReplicatedStorage - - RtMessagingService - - RunService - - RuntimeScriptService - - SafetyService - - ScriptChangeService - - ScriptCloneWatcher - - ScriptCloneWatcherHelper - - ScriptContext - - ScriptEditorService - - ScriptRegistrationService - - ScriptService - - Selection - - SelectionHighlightManager - - ServerScriptService - - ServerStorage - - ServiceVisibilityService - - SessionService - - SharedTableRegistry - - ShorelineUpgraderService - - SmoothVoxelsUpgraderService - - SnippetService - - SocialService - - SoundService - - SpawnerService - - StarterPack - - StarterPlayer - - Stats - - Studio - - StudioAssetService - - StudioData - - StudioDeviceEmulatorService - - StudioPublishService - - StudioScriptDebugEventListener - - StudioSdkService - - StudioService - - TaskScheduler - - TeamCreateData - - TeamCreatePublishService - - TeamCreateService - - Teams - - TeleportService - - TemporaryCageMeshProvider - - TemporaryScriptService - - TestService - - TextBoxService - - TextChatService - - TextService - - ThirdPartyUserService - - TimerService - - ToastNotificationService - - TouchInputService - - TracerService - - TweenService - - UGCValidationService - - UnvalidatedAssetService - - UserInputService - - UserService - - VRService - - VersionControlService - - VideoCaptureService - - VirtualInputManager - - VirtualUser - - VisibilityCheckDispatcher - - VisibilityService - - Visit - - VoiceChatInternal - - VoiceChatService - method: true - must_use: true - GraphicsQualityChangeRequest: - struct: Event - HttpGetAsync: - args: - - required: false - type: any - - required: false - type: any - method: true - HttpPostAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - InsertObjectsAndJoinIfLegacyAsync: - args: - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsContentLoaded: - args: [] - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGearTypeAllowed: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IsLoaded: - args: [] - method: true - IsUniverseMetadataLoaded: - args: [] - method: true - ItemChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - JobId: - property: read-only - Load: - args: - - required: false - type: any - method: true - Loaded: - struct: Event - Name: - property: override-fields - OnClose: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - OpenScreenshotsFolder: - args: [] - method: true - OpenVideosFolder: - args: [] - method: true - Parent: - struct: Instance - PlaceId: - property: read-only - PlaceVersion: - property: read-only - PrivateServerId: - property: read-only - PrivateServerOwnerId: - property: read-only - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ReportInGoogleAnalytics: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SavePlace: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - ScreenshotReady: - struct: Event - ScreenshotSavedToAlbum: - struct: Event - ServiceAdded: - struct: Event - ServiceRemoving: - struct: Event - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastFlagForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastIntForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastStringForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetIsLoaded: - args: - - required: false - type: any - - required: false - type: any - method: true - SetPlaceId: - args: - - required: false - type: any - method: true - SetUniverseId: - args: - - required: false - type: any - method: true - Shutdown: - args: [] - method: true - UniverseMetadataLoaded: - struct: Event - VIPServerId: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - VIPServerOwnerId: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - Workspace: - struct: Workspace - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getService: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - lighting: - struct: Instance - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - service: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - workspace: - struct: Workspace - deprecated: - message: this property is deprecated. - replace: [] - EnumItem: - Name: - property: read-only - Value: - property: read-only - Event: - Connect: - args: - - type: function - method: true - Once: - args: - - type: function - method: true - Wait: - args: [] - method: true - connect: - args: - - type: function - method: true - deprecated: - message: lowercase methods have been superceded by uppercase ones - replace: - - Connect(%1) - wait: - args: - - type: function - method: true - deprecated: - message: lowercase methods have been superceded by uppercase ones - replace: - - Wait(%1) - Instance: - '*': - any: true - Plugin: - '*': - struct: Instance - Activate: - args: - - required: false - type: any - method: true - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionEnabled: - property: read-only - CreateDockWidgetPluginGui: - args: - - required: false - type: any - - required: false - type: any - method: true - CreatePluginAction: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CreatePluginMenu: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CreateQWidgetPluginGui: - args: - - required: false - type: any - - required: false - type: any - method: true - CreateToolbar: - args: - - required: false - type: any - method: true - Deactivate: - args: [] - method: true - Deactivation: - struct: Event - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - GetJoinMode: - args: [] - method: true - GetMouse: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetSelectedRibbonTool: - args: [] - method: true - GetSetting: - args: - - required: false - type: any - method: true - GetStudioUserId: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GridSize: - property: read-only - ImportFbxAnimation: - args: - - required: false - type: any - - required: false - type: any - method: true - ImportFbxRig: - args: - - required: false - type: any - method: true - Intersect: - args: - - required: false - type: any - method: true - Invoke: - args: - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsActivated: - args: [] - method: true - IsActivatedWithExclusiveMouse: - args: [] - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - Name: - property: override-fields - Negate: - args: - - required: false - type: any - method: true - OnInvoke: - args: - - required: false - type: any - - required: false - type: any - method: true - OnSetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - OpenScript: - args: - - required: false - type: any - - required: false - type: any - method: true - OpenWikiPage: - args: - - required: false - type: any - method: true - Parent: - struct: Instance - PauseSound: - args: - - required: false - type: any - method: true - PlaySound: - args: - - required: false - type: any - - required: false - type: any - method: true - ProcessAssetInsertionDrag: - property: override-fields - ProcessAssetInsertionDrop: - property: override-fields - PromptForExistingAssetId: - args: - - required: false - type: any - method: true - PromptSaveSelection: - args: - - required: false - type: any - method: true - Ready: - struct: Event - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ResumeSound: - args: - - required: false - type: any - method: true - SaveSelectedToRoblox: - args: [] - method: true - SelectRibbonTool: - args: - - required: false - type: any - - required: false - type: any - method: true - Separate: - args: - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - SetReady: - args: [] - method: true - SetSetting: - args: - - required: false - type: any - - required: false - type: any - method: true - StartDecalDrag: - args: - - required: false - type: any - method: true - StartDrag: - args: - - required: false - type: any - method: true - StopAllSounds: - args: [] - method: true - Union: - args: - - required: false - type: any - method: true - Unloading: - struct: Event - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Script: - '*': - struct: Instance - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CurrentEditor: - struct: Instance - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Disabled: - property: override-fields - Enabled: - property: override-fields - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetHash: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - LinkedSource: - property: override-fields - Name: - property: override-fields - Parent: - struct: Instance - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Terrain: - '*': - struct: Instance - AncestryChanged: - struct: Event - Anchored: - property: override-fields - ApplyAngularImpulse: - args: - - required: false - type: any - method: true - ApplyImpulse: - args: - - required: false - type: any - method: true - ApplyImpulseAtPosition: - args: - - required: false - type: any - - required: false - type: any - method: true - Archivable: - property: override-fields - AssemblyAngularVelocity: - any: true - AssemblyCenterOfMass: - any: true - AssemblyLinearVelocity: - any: true - AssemblyMass: - property: read-only - AssemblyRootPart: - struct: BasePart - AttributeChanged: - struct: Event - AutowedgeCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - AutowedgeCells: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - BackParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackSurface: - property: override-fields - BackSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomSurface: - property: override-fields - BottomSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BrickColor: - property: override-fields - CFrame: - any: true - CanCollide: - property: override-fields - CanCollideWith: - args: - - required: false - type: any - method: true - CanQuery: - property: override-fields - CanSetNetworkOwnership: - args: [] - method: true - CanShorelinesBeUpgraded: - args: [] - method: true - CanSmoothVoxelsBeUpgraded: - args: [] - method: true - CanTouch: - property: override-fields - CastShadow: - property: override-fields - CellCenterToWorld: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CellCornerToWorld: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CenterOfMass: - any: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - Clear: - args: [] - method: true - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionGroup: - property: override-fields - CollisionGroupId: - property: override-fields - Color: - property: override-fields - ConvertToSmooth: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - CopyRegion: - args: - - required: false - type: any - method: true - CountCells: - args: [] - method: true - CurrentPhysicalProperties: - property: read-only - CustomPhysicalProperties: - property: override-fields - Decoration: - property: override-fields - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Elasticity: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - ExtentsCFrame: - any: true - ExtentsSize: - any: true - FillBall: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillBlock: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillCylinder: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillWedge: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - Friction: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontSurface: - property: override-fields - FrontSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetChildren: - args: [] - method: true - GetConnectedParts: - args: - - required: false - type: any - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetJoints: - args: [] - method: true - GetMass: - args: [] - method: true - GetMaterialColor: - args: - - required: false - type: any - method: true - GetNetworkOwner: - args: [] - method: true - GetNetworkOwnershipAuto: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetRootPart: - args: [] - method: true - GetTerrainWireframe: - args: - - required: false - type: any - - required: false - type: any - method: true - GetTouchingParts: - args: [] - method: true - GetVelocityAtPosition: - args: - - required: false - type: any - method: true - GetWaterCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IntersectAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGrounded: - args: [] - method: true - IsSmooth: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - LeftParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftSurface: - property: override-fields - LeftSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LocalSimulationTouched: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - LocalTransparencyModifier: - property: override-fields - Locked: - property: override-fields - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Mass: - property: read-only - Massless: - property: override-fields - Material: - property: override-fields - MaterialColors: - property: override-fields - MaterialVariant: - property: override-fields - MaxExtents: - property: read-only - Name: - property: override-fields - Orientation: - any: true - Origin: - any: true - OutfitChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - PasteRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Pivot Offset: - any: true - PivotOffset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - Position: - any: true - ReadVoxels: - args: - - required: false - type: any - - required: false - type: any - method: true - ReceiveAge: - property: read-only - Reflectance: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ReplaceMaterial: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - ReplaceMaterialInTransform: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Resize: - args: - - required: false - type: any - - required: false - type: any - method: true - ResizeIncrement: - property: read-only - ResizeableFaces: - property: read-only - RightParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightSurface: - property: override-fields - RightSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RootPriority: - property: override-fields - RotVelocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - Rotation: - any: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetCells: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetMaterialColor: - args: - - required: false - type: any - - required: false - type: any - method: true - SetMaterialInTransform: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SetNetworkOwner: - args: - - required: false - type: any - method: true - SetNetworkOwnershipAuto: - args: [] - method: true - SetWaterCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - Size: - any: true - SmoothRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SpecificGravity: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - StoppedTouching: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - SubtractAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - TopParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopSurface: - property: override-fields - TopSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TouchEnded: - struct: Event - Touched: - struct: Event - Transparency: - property: override-fields - UnionAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Velocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WaterColor: - property: override-fields - WaterReflectance: - property: override-fields - WaterTransparency: - property: override-fields - WaterWaveSize: - property: override-fields - WaterWaveSpeed: - property: override-fields - WorldToCell: - args: - - required: false - type: any - method: true - WorldToCellPreferEmpty: - args: - - required: false - type: any - method: true - WorldToCellPreferSolid: - args: - - required: false - type: any - method: true - WriteVoxels: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - brickColor: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getMass: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - resize: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - subtractAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - unionAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Workspace: - '*': - struct: Instance - AddPersistentPlayer: - args: - - required: false - type: any - method: true - AllowThirdPartySales: - property: override-fields - AncestryChanged: - struct: Event - Archivable: - property: override-fields - ArePartsTouchingOthers: - args: - - required: false - type: any - - required: false - type: any - method: true - AttributeChanged: - struct: Event - Blockcast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BulkMoveTo: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CacheCurrentTerrain: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpDistance: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpHeight: - args: - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpPower: - args: - - required: false - type: any - - required: false - type: any - method: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - ClearCachedTerrain: - args: - - required: false - type: any - method: true - ClientAnimatorThrottling: - property: override-fields - Clone: - args: [] - method: true - CurrentCamera: - struct: Camera - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - DistributedGameTime: - property: override-fields - ExperimentalSolverIsEnabled: - args: [] - method: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FindPartOnRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartOnRayWithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartOnRayWithWhitelist: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3WithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3WithWhiteList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetBoundingBox: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetExtentsSize: - args: [] - method: true - GetFullName: - args: [] - method: true - GetModelCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetModelSize: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetNumAwakeParts: - args: [] - method: true - GetPartBoundsInBox: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - GetPartBoundsInRadius: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - GetPartsInPart: - args: - - required: false - type: any - - required: false - type: any - method: true - GetPhysicsThrottling: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPrimaryPartCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRealPhysicsFPS: - args: [] - method: true - GetScale: - args: [] - method: true - GetServerTimeNow: - args: [] - method: true - GlobalWind: - any: true - Gravity: - property: override-fields - HumanoidOnlySetCollisionsOnStateChange: - property: override-fields - IKMoveTo: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsRegion3Empty: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IsRegion3EmptyWithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - JoinToOutsiders: - args: - - required: false - type: any - - required: false - type: any - method: true - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - MeshPartHeadsAndAccessories: - property: override-fields - ModelStreamingMode: - property: override-fields - MoveTo: - args: - - required: false - type: any - method: true - Name: - property: override-fields - Origin: - any: true - PGSIsEnabled: - args: [] - method: true - Parent: - struct: Instance - PersistentLoaded: - struct: Event - PhysicsSteppingMethod: - property: override-fields - Pivot Offset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - PrimaryPart: - struct: BasePart - Raycast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - RaycastCachedTerrain: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - RejectCharacterDeletions: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - RemovePersistentPlayer: - args: - - required: false - type: any - method: true - ReplicateInstanceDestroySetting: - property: override-fields - ResetOrientationToIdentity: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Retargeting: - property: override-fields - Scale: - property: override-fields - ScaleTo: - args: - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetIdentityOrientation: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetInsertPoint: - args: - - required: false - type: any - - required: false - type: any - method: true - SetMeshPartHeadsAndAccessories: - args: - - required: false - type: any - method: true - SetPhysicsThrottleEnabled: - args: - - required: false - type: any - method: true - SetPrimaryPartCFrame: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SignalBehavior: - property: override-fields - Spherecast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - StreamOutBehavior: - property: override-fields - StreamingIntegrityMode: - property: override-fields - StreamingMinRadius: - property: override-fields - StreamingTargetRadius: - property: override-fields - Terrain: - struct: Terrain - TouchesUseCollisionGroups: - property: override-fields - TranslateBy: - args: - - required: false - type: any - method: true - UnjoinFromOutsiders: - args: - - required: false - type: any - method: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WorldPivot: - any: true - ZoomToExtents: - args: [] - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - findPartOnRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - findPartsInRegion3: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - move: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - moveTo: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] -last_updated: 1681227519 -last_selene_version: 0.25.0 -roblox_classes: - Accessory: - superclass: Accoutrement - events: [] - properties: - - AccessoryType - Accoutrement: - superclass: Instance - events: [] - properties: - - AttachmentForward - - AttachmentPoint - - AttachmentPos - - AttachmentRight - - AttachmentUp - Actor: - superclass: Model - events: [] - properties: [] - AdGui: - superclass: SurfaceGuiBase - events: [] - properties: - - AdShape - - Status - AdPortal: - superclass: Instance - events: [] - properties: - - PortalInvalidReason - - PortalStatus - - PortalVersion - - Status - AdService: - superclass: Instance - events: - - AdTeleportEnded - - AdTeleportInitiated - - VideoAdClosed - properties: [] - AdvancedDragger: - superclass: Instance - events: [] - properties: [] - AirController: - superclass: ControllerBase - events: [] - properties: - - MaintainAngularMomentum - - MaintainLinearMomentum - - MoveMaxForce - - OrientationMaxTorque - - OrientationSpeedFactor - - VectorForce - AlignOrientation: - superclass: Constraint - events: [] - properties: - - AlignType - - CFrame - - MaxAngularVelocity - - MaxTorque - - Mode - - PrimaryAxis - - PrimaryAxisOnly - - ReactionTorqueEnabled - - Responsiveness - - RigidityEnabled - - SecondaryAxis - AlignPosition: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - MaxForce - - MaxVelocity - - Mode - - Position - - ReactionForceEnabled - - Responsiveness - - RigidityEnabled - AnalysticsSettings: - superclass: GenericSettings - events: [] - properties: [] - AnalyticsService: - superclass: Instance - events: [] - properties: - - ApiKey - AngularVelocity: - superclass: Constraint - events: [] - properties: - - AngularVelocity - - MaxTorque - - ReactionTorqueEnabled - - RelativeTo - Animation: - superclass: Instance - events: [] - properties: - - AnimationId - AnimationClip: - superclass: Instance - events: [] - properties: - - Guid - - Loop - - Priority - AnimationClipProvider: - superclass: Instance - events: [] - properties: [] - AnimationConstraint: - superclass: Constraint - events: [] - properties: - - IsKinematic - - MaxForce - - MaxTorque - - Transform - AnimationController: - superclass: Instance - events: - - AnimationPlayed - properties: [] - AnimationFromVideoCreatorService: - superclass: Instance - events: [] - properties: [] - AnimationFromVideoCreatorStudioService: - superclass: Instance - events: [] - properties: [] - AnimationRigData: - superclass: Instance - events: [] - properties: [] - AnimationStreamTrack: - superclass: Instance - events: - - Stopped - properties: - - Animation - - IsPlaying - - Priority - - WeightCurrent - - WeightTarget - AnimationTrack: - superclass: Instance - events: - - DidLoop - - Ended - - KeyframeReached - - Stopped - properties: - - Animation - - IsPlaying - - Length - - Looped - - Priority - - Speed - - TimePosition - - WeightCurrent - - WeightTarget - Animator: - superclass: Instance - events: - - AnimationPlayed - - AnimationPlayedCoreScript - - AnimationStreamTrackPlayed - properties: - - EvaluationThrottled - - PreferLodEnabled - AppStorageService: - superclass: LocalStorageService - events: [] - properties: [] - AppUpdateService: - superclass: Instance - events: [] - properties: [] - ArcHandles: - superclass: HandlesBase - events: - - MouseButton1Down - - MouseButton1Up - - MouseDrag - - MouseEnter - - MouseLeave - properties: - - Axes - AssetCounterService: - superclass: Instance - events: [] - properties: [] - AssetDeliveryProxy: - superclass: Instance - events: [] - properties: - - Interface - - Port - - StartServer - AssetImportService: - superclass: Instance - events: [] - properties: [] - AssetImportSession: - superclass: Instance - events: - - UploadComplete - - UploadCompleteDeprecated - - UploadProgress - properties: [] - AssetManagerService: - superclass: Instance - events: - - AssetImportedSignal - - ImportSessionFinished - - ImportSessionStarted - - MayBeLinkedSourceModified - properties: [] - AssetPatchSettings: - superclass: Instance - events: [] - properties: - - ContentId - - OutputPath - - PatchId - AssetService: - superclass: Instance - events: - - OpenPublishResultModal - properties: [] - AssetSoundEffect: - superclass: CustomSoundEffect - events: [] - properties: [] - Atmosphere: - superclass: Instance - events: [] - properties: - - Color - - Decay - - Density - - Glare - - Haze - - Offset - Attachment: - superclass: Instance - events: [] - properties: - - Axis - - CFrame - - Orientation - - Position - - Rotation - - SecondaryAxis - - Visible - - WorldAxis - - WorldCFrame - - WorldOrientation - - WorldPosition - - WorldRotation - - WorldSecondaryAxis - AudioPages: - superclass: Pages - events: [] - properties: [] - AudioSearchParams: - superclass: Instance - events: [] - properties: - - Album - - Artist - - AudioSubtype - - MaxDuration - - MinDuration - - SearchKeyword - - Tag - - Title - AvatarEditorService: - superclass: Instance - events: - - OpenAllowInventoryReadAccess - - OpenPromptCreateOufit - - OpenPromptDeleteOutfit - - OpenPromptRenameOutfit - - OpenPromptSaveAvatar - - OpenPromptSetFavorite - - OpenPromptUpdateOutfit - - PromptAllowInventoryReadAccessCompleted - - PromptCreateOutfitCompleted - - PromptDeleteOutfitCompleted - - PromptRenameOutfitCompleted - - PromptSaveAvatarCompleted - - PromptSaveAvatarThumbnailCustomizationCompleted - - PromptSetFavoriteCompleted - - PromptUpdateOutfitCompleted - properties: [] - AvatarImportService: - superclass: Instance - events: [] - properties: [] - Backpack: - superclass: Instance - events: [] - properties: [] - BackpackItem: - superclass: Model - events: [] - properties: - - TextureId - BadgeService: - superclass: Instance - events: - - BadgeAwarded - - OnBadgeAwarded - properties: [] - BallSocketConstraint: - superclass: Constraint - events: [] - properties: - - LimitsEnabled - - MaxFrictionTorque - - Radius - - Restitution - - TwistLimitsEnabled - - TwistLowerAngle - - TwistUpperAngle - - UpperAngle - BasePart: - superclass: PVInstance - events: - - LocalSimulationTouched - - OutfitChanged - - StoppedTouching - - TouchEnded - - Touched - properties: - - Anchored - - AssemblyAngularVelocity - - AssemblyCenterOfMass - - AssemblyLinearVelocity - - AssemblyMass - - AssemblyRootPart - - BackParamA - - BackParamB - - BackSurface - - BackSurfaceInput - - BottomParamA - - BottomParamB - - BottomSurface - - BottomSurfaceInput - - BrickColor - - CFrame - - CanCollide - - CanQuery - - CanTouch - - CastShadow - - CenterOfMass - - CollisionGroup - - CollisionGroupId - - Color - - CurrentPhysicalProperties - - CustomPhysicalProperties - - Elasticity - - ExtentsCFrame - - ExtentsSize - - Friction - - FrontParamA - - FrontParamB - - FrontSurface - - FrontSurfaceInput - - LeftParamA - - LeftParamB - - LeftSurface - - LeftSurfaceInput - - LocalTransparencyModifier - - Locked - - Mass - - Massless - - Material - - MaterialVariant - - Orientation - - PivotOffset - - Position - - ReceiveAge - - Reflectance - - ResizeIncrement - - ResizeableFaces - - RightParamA - - RightParamB - - RightSurface - - RightSurfaceInput - - RootPriority - - RotVelocity - - Rotation - - Size - - SpecificGravity - - TopParamA - - TopParamB - - TopSurface - - TopSurfaceInput - - Transparency - - Velocity - - brickColor - BasePlayerGui: - superclass: Instance - events: [] - properties: [] - BaseScript: - superclass: LuaSourceContainer - events: [] - properties: - - Disabled - - Enabled - - LinkedSource - - RunContext - BaseWrap: - superclass: Instance - events: [] - properties: - - CageMeshId - - CageOrigin - - CageOriginWorld - - HSRAssetId - - ImportOrigin - - ImportOriginWorld - Beam: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - Brightness - - Color - - CurveSize0 - - CurveSize1 - - Enabled - - FaceCamera - - LightEmission - - LightInfluence - - Segments - - Texture - - TextureLength - - TextureMode - - TextureSpeed - - Transparency - - Width0 - - Width1 - - ZOffset - BevelMesh: - superclass: DataModelMesh - events: [] - properties: [] - BillboardGui: - superclass: LayerCollector - events: [] - properties: - - Active - - Adornee - - AlwaysOnTop - - Brightness - - ClipsDescendants - - CurrentDistance - - DistanceLowerLimit - - DistanceStep - - DistanceUpperLimit - - ExtentsOffset - - ExtentsOffsetWorldSpace - - LightInfluence - - MaxDistance - - PlayerToHideFrom - - Size - - SizeOffset - - StudsOffset - - StudsOffsetWorldSpace - BinaryStringValue: - superclass: ValueBase - events: - - Changed - properties: [] - BindableEvent: - superclass: Instance - events: - - Event - properties: [] - BindableFunction: - superclass: Instance - events: [] - properties: [] - BlockMesh: - superclass: BevelMesh - events: [] - properties: [] - BloomEffect: - superclass: PostEffect - events: [] - properties: - - Intensity - - Size - - Threshold - BlurEffect: - superclass: PostEffect - events: [] - properties: - - Size - BodyAngularVelocity: - superclass: BodyMover - events: [] - properties: - - AngularVelocity - - MaxTorque - - P - - angularvelocity - - maxTorque - BodyColors: - superclass: CharacterAppearance - events: [] - properties: - - HeadColor - - HeadColor3 - - LeftArmColor - - LeftArmColor3 - - LeftLegColor - - LeftLegColor3 - - RightArmColor - - RightArmColor3 - - RightLegColor - - RightLegColor3 - - TorsoColor - - TorsoColor3 - BodyForce: - superclass: BodyMover - events: [] - properties: - - Force - - force - BodyGyro: - superclass: BodyMover - events: [] - properties: - - CFrame - - D - - MaxTorque - - P - - cframe - - maxTorque - BodyMover: - superclass: Instance - events: [] - properties: [] - BodyPosition: - superclass: BodyMover - events: - - ReachedTarget - properties: - - D - - MaxForce - - P - - Position - - maxForce - - position - BodyThrust: - superclass: BodyMover - events: [] - properties: - - Force - - Location - - force - - location - BodyVelocity: - superclass: BodyMover - events: [] - properties: - - MaxForce - - P - - Velocity - - maxForce - - velocity - Bone: - superclass: Attachment - events: [] - properties: - - Transform - - TransformedCFrame - - TransformedWorldCFrame - BoolValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - BoxHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Size - Breakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - Enabled - - Id - - Line - - LogMessage - - MetaBreakpointId - - Script - - Valid - - Verified - BrickColorValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - BrowserService: - superclass: Instance - events: - - AuthCookieCopiedToEngine - - BrowserWindowClosed - - BrowserWindowWillNavigate - - JavaScriptCallback - properties: [] - BubbleChatConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AdorneeName - - BackgroundColor3 - - BackgroundTransparency - - BubbleDuration - - BubblesSpacing - - Enabled - - Font - - FontFace - - LocalPlayerStudsOffset - - MaxDistance - - MinimizeDistance - - TextColor3 - - TextSize - - VerticalStudsOffset - BulkImportService: - superclass: Instance - events: - - AssetImported - - BulkImportFinished - - BulkImportStarted - properties: [] - BuoyancySensor: - superclass: SensorBase - events: [] - properties: - - FullySubmerged - - TouchingSurface - CFrameValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - CSGDictionaryService: - superclass: FlyweightService - events: [] - properties: [] - CacheableContentProvider: - superclass: Instance - events: [] - properties: [] - CalloutService: - superclass: Instance - events: [] - properties: [] - Camera: - superclass: Instance - events: - - FirstPersonTransition - - InterpolationFinished - properties: - - CFrame - - CameraSubject - - CameraType - - CoordinateFrame - - DiagonalFieldOfView - - FieldOfView - - FieldOfViewMode - - Focus - - HeadLocked - - HeadScale - - MaxAxisFieldOfView - - NearPlaneZ - - ViewportSize - - focus - CanvasGroup: - superclass: GuiObject - events: [] - properties: - - GroupColor3 - - GroupTransparency - CatalogPages: - superclass: Pages - events: [] - properties: [] - ChangeHistoryService: - superclass: Instance - events: - - OnRedo - - OnUndo - properties: [] - ChannelSelectorSoundEffect: - superclass: CustomSoundEffect - events: [] - properties: - - Channel - CharacterAppearance: - superclass: Instance - events: [] - properties: [] - CharacterMesh: - superclass: CharacterAppearance - events: [] - properties: - - BaseTextureId - - BodyPart - - MeshId - - OverlayTextureId - Chat: - superclass: Instance - events: - - BubbleChatSettingsChanged - - Chatted - properties: - - BubbleChatEnabled - - LoadDefaultChat - ChatInputBarConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AbsolutePosition - - AbsolutePositionWrite - - AbsoluteSize - - AbsoluteSizeWrite - - BackgroundColor3 - - BackgroundTransparency - - Enabled - - FontFace - - PlaceholderColor3 - - TargetTextChannel - - TextBox - - TextColor3 - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - ChatWindowConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AbsolutePosition - - AbsolutePositionWrite - - AbsoluteSize - - AbsoluteSizeWrite - - BackgroundColor3 - - BackgroundTransparency - - Enabled - - FontFace - - HeightScale - - HorizontalAlignment - - TextColor3 - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - VerticalAlignment - - WidthScale - ChorusSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Mix - - Rate - ClickDetector: - superclass: Instance - events: - - MouseClick - - MouseHoverEnter - - MouseHoverLeave - - RightMouseClick - - mouseClick - properties: - - CursorIcon - - MaxActivationDistance - ClientReplicator: - superclass: NetworkReplicator - events: - - RCCProfilerDataComplete - - StatsReceived - properties: [] - ClimbController: - superclass: ControllerBase - events: [] - properties: - - AccelerationTime - - MoveMaxForce - - OrientationMaxTorque - - OrientationSpeedFactor - Clothing: - superclass: CharacterAppearance - events: [] - properties: - - Color3 - CloudLocalizationTable: - superclass: LocalizationTable - events: [] - properties: [] - Clouds: - superclass: Instance - events: [] - properties: - - Color - - Cover - - Density - - Enabled - ClusterPacketCache: - superclass: Instance - events: [] - properties: [] - CollectionService: - superclass: Instance - events: - - ItemAdded - - ItemRemoved - - TagAdded - - TagRemoved - properties: [] - Color3Value: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - ColorCorrectionEffect: - superclass: PostEffect - events: [] - properties: - - Brightness - - Contrast - - Saturation - - TintColor - CommandInstance: - superclass: Instance - events: [] - properties: - - AllowGUIAccessPoints - - Checked - - DefaultShortcut - - DisplayName - - Enabled - - Icon - - Name - - Permission - - StatusTip - CommandService: - superclass: Instance - events: - - CommandExecuting - properties: [] - CompressorSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Attack - - GainMakeup - - Ratio - - Release - - SideChain - - Threshold - ConeHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Height - - Radius - Configuration: - superclass: Instance - events: [] - properties: [] - ConfigureServerService: - superclass: Instance - events: [] - properties: [] - Constraint: - superclass: Instance - events: [] - properties: - - Active - - Attachment0 - - Attachment1 - - Color - - Enabled - - Visible - ContentProvider: - superclass: Instance - events: - - AssetFetchFailed - properties: - - BaseUrl - - RequestQueueSize - ContextActionService: - superclass: Instance - events: - - BoundActionAdded - - BoundActionChanged - - BoundActionRemoved - - GetActionButtonEvent - - LocalToolEquipped - - LocalToolUnequipped - properties: [] - Controller: - superclass: Instance - events: - - ButtonChanged - properties: [] - ControllerBase: - superclass: Instance - events: [] - properties: - - MoveSpeedFactor - - RigidityEnabled - ControllerManager: - superclass: Instance - events: [] - properties: - - ActiveController - - BaseMoveSpeed - - BaseTurnSpeed - - ClimbSensor - - FacingDirection - - GroundSensor - - MovingDirection - ControllerPartSensor: - superclass: ControllerSensor - events: [] - properties: - - HitFrame - - HitNormal - - SearchDistance - - SensedPart - - SensorMode - ControllerSensor: - superclass: SensorBase - events: [] - properties: [] - ControllerService: - superclass: Instance - events: [] - properties: [] - CookiesService: - superclass: Instance - events: [] - properties: [] - CoreGui: - superclass: BasePlayerGui - events: - - UserGuiRenderingChanged - properties: - - SelectionImageObject - - Version - CorePackages: - superclass: Instance - events: [] - properties: [] - CoreScript: - superclass: BaseScript - events: [] - properties: [] - CoreScriptDebuggingManagerHelper: - superclass: Instance - events: [] - properties: [] - CoreScriptSyncService: - superclass: Instance - events: [] - properties: [] - CornerWedgePart: - superclass: BasePart - events: [] - properties: [] - CrossDMScriptChangeListener: - superclass: Instance - events: - - GuidLineContentsChanged - - GuidNameChanged - properties: [] - CurveAnimation: - superclass: AnimationClip - events: [] - properties: [] - CustomEvent: - superclass: Instance - events: - - ReceiverConnected - - ReceiverDisconnected - properties: [] - CustomEventReceiver: - superclass: Instance - events: - - EventConnected - - EventDisconnected - - SourceValueChanged - properties: - - Source - CustomSoundEffect: - superclass: SoundEffect - events: [] - properties: [] - CylinderHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Angle - - Height - - InnerRadius - - Radius - CylinderMesh: - superclass: BevelMesh - events: [] - properties: [] - CylindricalConstraint: - superclass: SlidingBallConstraint - events: [] - properties: - - AngularActuatorType - - AngularLimitsEnabled - - AngularResponsiveness - - AngularRestitution - - AngularSpeed - - AngularVelocity - - CurrentAngle - - InclinationAngle - - LowerAngle - - MotorMaxAngularAcceleration - - MotorMaxTorque - - RotationAxisVisible - - ServoMaxTorque - - TargetAngle - - UpperAngle - - WorldRotationAxis - DataModel: - superclass: ServiceProvider - events: - - AllowedGearTypeChanged - - GraphicsQualityChangeRequest - - ItemChanged - - Loaded - - ScreenshotReady - - ScreenshotSavedToAlbum - - UniverseMetadataLoaded - properties: - - CreatorId - - CreatorType - - GameId - - GearGenreSetting - - Genre - - IsSFFlagsLoaded - - JobId - - PlaceId - - PlaceVersion - - PrivateServerId - - PrivateServerOwnerId - - VIPServerId - - VIPServerOwnerId - - Workspace - - lighting - - workspace - DataModelMesh: - superclass: Instance - events: [] - properties: - - Offset - - Scale - - VertexColor - DataModelPatchService: - superclass: Instance - events: [] - properties: [] - DataModelSession: - superclass: Instance - events: - - CurrentDataModelTypeAboutToChange - - CurrentDataModelTypeChanged - - DataModelCreated - - DataModelWillBeDestroyed - properties: - - CurrentDataModelType - - SessionId - DataStore: - superclass: GlobalDataStore - events: [] - properties: [] - DataStoreIncrementOptions: - superclass: Instance - events: [] - properties: [] - DataStoreInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - DataStoreName - - UpdatedTime - DataStoreKey: - superclass: Instance - events: [] - properties: - - KeyName - DataStoreKeyInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - UpdatedTime - - Version - DataStoreKeyPages: - superclass: Pages - events: [] - properties: - - Cursor - DataStoreListingPages: - superclass: Pages - events: [] - properties: - - Cursor - DataStoreObjectVersionInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - IsDeleted - - Version - DataStoreOptions: - superclass: Instance - events: [] - properties: - - AllScopes - DataStorePages: - superclass: Pages - events: [] - properties: [] - DataStoreService: - superclass: Instance - events: [] - properties: - - AutomaticRetry - - LegacyNamingScheme - DataStoreSetOptions: - superclass: Instance - events: [] - properties: [] - DataStoreVersionPages: - superclass: Pages - events: [] - properties: [] - Debris: - superclass: Instance - events: [] - properties: - - MaxItems - DebugSettings: - superclass: Instance - events: [] - properties: - - DataModel - - InstanceCount - - IsScriptStackTracingEnabled - - JobCount - - PlayerCount - - ReportSoundWarnings - - RobloxVersion - - TickCountPreciseOverride - DebuggablePluginWatcher: - superclass: Instance - events: [] - properties: [] - DebuggerBreakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - IsEnabled - - Line - - LogExpression - - isContextDependentBreakpoint - DebuggerConnection: - superclass: Instance - events: - - BreakpointAdded - - BreakpointChanged - - BreakpointRemoved - - Paused - - Resumed - properties: - - ErrorMessage - - HasError - - Id - - IsPaused - DebuggerConnectionManager: - superclass: Instance - events: - - ConnectionEnded - - ConnectionStarted - - FocusChanged - properties: - - Timeout - DebuggerLuaResponse: - superclass: Instance - events: [] - properties: - - IsError - - IsSuccess - - Message - - RequestId - - Status - DebuggerManager: - superclass: Instance - events: - - DebuggerAdded - - DebuggerRemoved - properties: - - DebuggingEnabled - DebuggerUIService: - superclass: Instance - events: - - ExpressionAdded - properties: [] - DebuggerVariable: - superclass: Instance - events: [] - properties: - - Name - - Populated - - Type - - Value - - VariableId - - VariablesCount - DebuggerWatch: - superclass: Instance - events: [] - properties: - - Expression - Decal: - superclass: FaceInstance - events: [] - properties: - - Color3 - - LocalTransparencyModifier - - Shiny - - Specular - - Texture - - Transparency - - ZIndex - DepthOfFieldEffect: - superclass: PostEffect - events: [] - properties: - - FarIntensity - - FocusDistance - - InFocusRadius - - NearIntensity - DeviceIdService: - superclass: Instance - events: [] - properties: [] - Dialog: - superclass: Instance - events: - - DialogChoiceSelected - properties: - - BehaviorType - - ConversationDistance - - GoodbyeChoiceActive - - GoodbyeDialog - - InUse - - InitialPrompt - - Purpose - - Tone - - TriggerDistance - - TriggerOffset - DialogChoice: - superclass: Instance - events: [] - properties: - - GoodbyeChoiceActive - - GoodbyeDialog - - ResponseDialog - - UserDialog - DistortionSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Level - DockWidgetPluginGui: - superclass: PluginGui - events: [] - properties: - - HostWidgetWasRestored - DoubleConstrainedValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - ConstrainedValue - - MaxValue - - MinValue - - Value - DraftsService: - superclass: Instance - events: - - CommitStatusChanged - - DraftAdded - - DraftRemoved - - DraftStatusChanged - - EditorsListChanged - - UpdateStatusChanged - properties: [] - Dragger: - superclass: Instance - events: [] - properties: [] - DraggerService: - superclass: Instance - events: [] - properties: - - AlignDraggedObjects - - AngleSnapEnabled - - AngleSnapIncrement - - AnimateHover - - CollisionsEnabled - - DraggerCoordinateSpace - - DraggerMovementMode - - GeometrySnapColor - - HoverAnimateFrequency - - HoverLineThickness - - HoverThickness - - JointsEnabled - - LinearSnapEnabled - - LinearSnapIncrement - - PivotSnapToGeometry - - ShowHover - - ShowPivotIndicator - DynamicRotate: - superclass: JointInstance - events: [] - properties: - - BaseAngle - EchoSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Delay - - DryLevel - - Feedback - - WetLevel - EmotesPages: - superclass: InventoryPages - events: [] - properties: [] - EqualizerSoundEffect: - superclass: SoundEffect - events: [] - properties: - - HighGain - - LowGain - - MidGain - EulerRotationCurve: - superclass: Instance - events: [] - properties: - - RotationOrder - EventIngestService: - superclass: Instance - events: [] - properties: [] - ExperienceAuthService: - superclass: Instance - events: - - OpenAuthPrompt - properties: [] - ExperienceInviteOptions: - superclass: Instance - events: [] - properties: - - InviteMessageId - - InviteUser - - LaunchData - - PromptMessage - Explosion: - superclass: Instance - events: - - Hit - properties: - - BlastPressure - - BlastRadius - - DestroyJointRadiusPercent - - ExplosionType - - Position - - TimeScale - - Visible - FaceAnimatorService: - superclass: Instance - events: - - TrackerError - - TrackerPrompt - properties: - - AudioAnimationEnabled - - FlipHeadOrientation - - VideoAnimationEnabled - FaceControls: - superclass: Instance - events: [] - properties: - - ChinRaiser - - ChinRaiserUpperLip - - Corrugator - - EyesLookDown - - EyesLookLeft - - EyesLookRight - - EyesLookUp - - FlatPucker - - Funneler - - JawDrop - - JawLeft - - JawRight - - LeftBrowLowerer - - LeftCheekPuff - - LeftCheekRaiser - - LeftDimpler - - LeftEyeClosed - - LeftEyeUpperLidRaiser - - LeftInnerBrowRaiser - - LeftLipCornerDown - - LeftLipCornerPuller - - LeftLipStretcher - - LeftLowerLipDepressor - - LeftNoseWrinkler - - LeftOuterBrowRaiser - - LeftUpperLipRaiser - - LipPresser - - LipsTogether - - LowerLipSuck - - MouthLeft - - MouthRight - - Pucker - - RightBrowLowerer - - RightCheekPuff - - RightCheekRaiser - - RightDimpler - - RightEyeClosed - - RightEyeUpperLidRaiser - - RightInnerBrowRaiser - - RightLipCornerDown - - RightLipCornerPuller - - RightLipStretcher - - RightLowerLipDepressor - - RightNoseWrinkler - - RightOuterBrowRaiser - - RightUpperLipRaiser - - TongueDown - - TongueOut - - TongueUp - - UpperLipSuck - FaceInstance: - superclass: Instance - events: [] - properties: - - Face - FacialAnimationRecordingService: - superclass: Instance - events: [] - properties: - - BiometricDataConsent - FacialAnimationStreamingService: - superclass: Instance - events: [] - properties: - - EnableFlags - - Enabled - FacialAnimationStreamingServiceStats: - superclass: Instance - events: - - isStreamingFacsUpdated - properties: [] - FacialAnimationStreamingServiceV2: - superclass: Instance - events: [] - properties: - - ServiceState - Feature: - superclass: Instance - events: [] - properties: - - FaceId - - InOut - - LeftRight - - TopBottom - File: - superclass: Instance - events: [] - properties: - - Size - FileMesh: - superclass: DataModelMesh - events: [] - properties: - - MeshId - - TextureId - Fire: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - Heat - - SecondaryColor - - Size - - TimeScale - - size - Flag: - superclass: Tool - events: [] - properties: - - TeamColor - FlagStand: - superclass: Part - events: - - FlagCaptured - properties: - - TeamColor - FlagStandService: - superclass: Instance - events: [] - properties: [] - FlangeSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Mix - - Rate - FloatCurve: - superclass: Instance - events: [] - properties: - - Length - FloorWire: - superclass: GuiBase3d - events: [] - properties: - - CycleOffset - - From - - StudsBetweenTextures - - Texture - - TextureSize - - To - - Velocity - - WireRadius - FlyweightService: - superclass: Instance - events: [] - properties: [] - Folder: - superclass: Instance - events: [] - properties: [] - ForceField: - superclass: Instance - events: [] - properties: - - Visible - FormFactorPart: - superclass: BasePart - events: [] - properties: - - FormFactor - - formFactor - Frame: - superclass: GuiObject - events: [] - properties: - - Style - FriendPages: - superclass: Pages - events: [] - properties: [] - FriendService: - superclass: Instance - events: - - FriendsUpdated - properties: [] - FunctionalTest: - superclass: Instance - events: [] - properties: - - Description - GamePassService: - superclass: Instance - events: [] - properties: [] - GameSettings: - superclass: Instance - events: - - VideoRecordingChangeRequest - properties: - - VideoCaptureEnabled - - VideoRecording - GamepadService: - superclass: Instance - events: - - GamepadThumbstick1Changed - properties: - - GamepadCursorEnabled - GenericSettings: - superclass: ServiceProvider - events: [] - properties: [] - Geometry: - superclass: Instance - events: [] - properties: [] - GetTextBoundsParams: - superclass: Instance - events: [] - properties: - - Font - - Size - - Text - - Width - GlobalDataStore: - superclass: Instance - events: [] - properties: [] - GlobalSettings: - superclass: GenericSettings - events: [] - properties: [] - Glue: - superclass: JointInstance - events: [] - properties: - - F0 - - F1 - - F2 - - F3 - GoogleAnalyticsConfiguration: - superclass: Instance - events: [] - properties: [] - GroundController: - superclass: ControllerBase - events: [] - properties: - - AccelerationLean - - AccelerationTime - - AlignSpeed - - AlignTorque - - DecelerationTime - - Friction - - FrictionWeight - - GroundOffset - - StandForce - - StandSpeed - - TurningFactor - GroupService: - superclass: Instance - events: [] - properties: [] - GuiBase: - superclass: Instance - events: [] - properties: [] - GuiBase2d: - superclass: GuiBase - events: - - SelectionChanged - properties: - - AbsolutePosition - - AbsoluteRotation - - AbsoluteSize - - AutoLocalize - - ClippedRect - - IsNotOccluded - - Localize - - RawRect2D - - RootLocalizationTable - - SelectionBehaviorDown - - SelectionBehaviorLeft - - SelectionBehaviorRight - - SelectionBehaviorUp - - SelectionGroup - - TotalGroupScale - GuiBase3d: - superclass: GuiBase - events: [] - properties: - - Color - - Color3 - - Transparency - - Visible - GuiButton: - superclass: GuiObject - events: - - Activated - - MouseButton1Click - - MouseButton1Down - - MouseButton1Up - - MouseButton2Click - - MouseButton2Down - - MouseButton2Up - properties: - - AutoButtonColor - - Modal - - Selected - - Style - GuiLabel: - superclass: GuiObject - events: [] - properties: [] - GuiMain: - superclass: ScreenGui - events: [] - properties: [] - GuiObject: - superclass: GuiBase2d - events: - - DragBegin - - DragStopped - - InputBegan - - InputChanged - - InputEnded - - MouseEnter - - MouseLeave - - MouseMoved - - MouseWheelBackward - - MouseWheelForward - - SelectionGained - - SelectionLost - - TouchLongPress - - TouchPan - - TouchPinch - - TouchRotate - - TouchSwipe - - TouchTap - properties: - - Active - - AnchorPoint - - AutomaticSize - - BackgroundColor - - BackgroundColor3 - - BackgroundTransparency - - BorderColor - - BorderColor3 - - BorderMode - - BorderSizePixel - - ClipsDescendants - - Draggable - - LayoutOrder - - NextSelectionDown - - NextSelectionLeft - - NextSelectionRight - - NextSelectionUp - - Position - - Rotation - - Selectable - - SelectionImageObject - - SelectionOrder - - Size - - SizeConstraint - - Transparency - - Visible - - ZIndex - GuiService: - superclass: Instance - events: - - BrowserWindowClosed - - CloseInspectMenuRequest - - CoreGuiRenderOverflowed - - EmotesMenuOpenChanged - - ErrorMessageChanged - - GuiVisibilityChangedSignal - - InspectMenuEnabledChangedSignal - - InspectPlayerFromHumanoidDescriptionRequest - - InspectPlayerFromUserIdWithCtxRequest - - KeyPressed - - MenuClosed - - MenuOpened - - NativeClose - - NetworkPausedEnabledChanged - - Open9SliceEditor - - PurchasePromptShown - - SafeZoneOffsetsChanged - - ShowLeaveConfirmation - - SpecialKeyPressed - - UiMessageChanged - properties: - - AutoSelectGuiEnabled - - CoreEffectFolder - - CoreGuiFolder - - CoreGuiNavigationEnabled - - GuiNavigationEnabled - - IsModalDialog - - IsWindows - - MenuIsOpen - - SelectedCoreObject - - SelectedObject - - TouchControlsEnabled - GuidRegistryService: - superclass: Instance - events: [] - properties: [] - HSRDataContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - HandleAdornment: - superclass: PVAdornment - events: - - MouseButton1Down - - MouseButton1Up - - MouseEnter - - MouseLeave - properties: - - AdornCullingMode - - AlwaysOnTop - - CFrame - - SizeRelativeOffset - - ZIndex - Handles: - superclass: HandlesBase - events: - - MouseButton1Down - - MouseButton1Up - - MouseDrag - - MouseEnter - - MouseLeave - properties: - - Faces - - Style - HandlesBase: - superclass: PartAdornment - events: [] - properties: [] - HapticService: - superclass: Instance - events: [] - properties: [] - Hat: - superclass: Accoutrement - events: [] - properties: [] - HeightmapImporterService: - superclass: Instance - events: - - ColormapHasUnknownPixels - - ProgressUpdate - properties: [] - HiddenSurfaceRemovalAsset: - superclass: Instance - events: [] - properties: [] - Highlight: - superclass: Instance - events: [] - properties: - - Adornee - - DepthMode - - Enabled - - FillColor - - FillTransparency - - LineThickness - - OutlineColor - - OutlineTransparency - - ReservedId - HingeConstraint: - superclass: Constraint - events: [] - properties: - - ActuatorType - - AngularResponsiveness - - AngularSpeed - - AngularVelocity - - CurrentAngle - - LimitsEnabled - - LowerAngle - - MotorMaxAcceleration - - MotorMaxTorque - - Radius - - Restitution - - ServoMaxTorque - - TargetAngle - - UpperAngle - Hint: - superclass: Message - events: [] - properties: [] - Hole: - superclass: Feature - events: [] - properties: [] - Hopper: - superclass: Instance - events: [] - properties: [] - HopperBin: - superclass: BackpackItem - events: - - Deselected - - Selected - properties: - - Active - - BinType - HttpRbxApiService: - superclass: Instance - events: [] - properties: [] - HttpRequest: - superclass: Instance - events: [] - properties: [] - HttpService: - superclass: Instance - events: [] - properties: - - HttpEnabled - Humanoid: - superclass: Instance - events: - - AnimationPlayed - - Climbing - - ClusterCompositionFinished - - CustomStatusAdded - - CustomStatusRemoved - - Died - - EmoteTriggered - - FallingDown - - FreeFalling - - GettingUp - - HealthChanged - - Jumping - - MoveToFinished - - PlatformStanding - - Ragdoll - - Running - - Seated - - StateChanged - - StateEnabledChanged - - StatusAdded - - StatusRemoved - - Strafing - - Swimming - - Touched - properties: - - AutoJumpEnabled - - AutoRotate - - AutomaticScalingEnabled - - BreakJointsOnDeath - - CameraOffset - - CollisionType - - DisplayDistanceType - - DisplayName - - EvaluateStateMachine - - FloorMaterial - - Health - - HealthDisplayDistance - - HealthDisplayType - - HipHeight - - Jump - - JumpHeight - - JumpPower - - LeftLeg - - MaxHealth - - MaxSlopeAngle - - MoveDirection - - NameDisplayDistance - - NameOcclusion - - PlatformStand - - RequiresNeck - - RigType - - RightLeg - - RootPart - - SeatPart - - Sit - - TargetPoint - - Torso - - UseJumpPower - - WalkSpeed - - WalkToPart - - WalkToPoint - - maxHealth - HumanoidController: - superclass: Controller - events: [] - properties: [] - HumanoidDescription: - superclass: Instance - events: - - EmotesChanged - - EquippedEmotesChanged - properties: - - AccessoryBlob - - BackAccessory - - BodyTypeScale - - ClimbAnimation - - DepthScale - - Face - - FaceAccessory - - FallAnimation - - FrontAccessory - - GraphicTShirt - - HairAccessory - - HatAccessory - - Head - - HeadColor - - HeadScale - - HeightScale - - IdleAnimation - - JumpAnimation - - LeftArm - - LeftArmColor - - LeftLeg - - LeftLegColor - - MoodAnimation - - NeckAccessory - - NumberEmotesLoaded - - Pants - - ProportionScale - - RightArm - - RightArmColor - - RightLeg - - RightLegColor - - RunAnimation - - Shirt - - ShouldersAccessory - - SwimAnimation - - Torso - - TorsoColor - - WaistAccessory - - WalkAnimation - - WidthScale - IKControl: - superclass: Instance - events: [] - properties: - - ChainRoot - - Enabled - - EndEffector - - EndEffectorOffset - - Offset - - Pole - - Priority - - SmoothTime - - Target - - Type - - Weight - ILegacyStudioBridge: - superclass: Instance - events: [] - properties: [] - IXPService: - superclass: Instance - events: - - OnBrowserTrackerLayerLoadingStatusChanged - - OnUserLayerLoadingStatusChanged - properties: [] - ImageButton: - superclass: GuiButton - events: [] - properties: - - ContentImageSize - - HoverImage - - Image - - ImageColor3 - - ImageRectOffset - - ImageRectSize - - ImageTransparency - - IsLoaded - - PressedImage - - ResampleMode - - ScaleType - - SliceCenter - - SliceScale - - TileSize - ImageDataExperimental: - superclass: Instance - events: [] - properties: - - Size - - TemporaryId - ImageHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Image - - Size - ImageLabel: - superclass: GuiLabel - events: [] - properties: - - ContentImageSize - - Image - - ImageColor3 - - ImageRectOffset - - ImageRectSize - - ImageTransparency - - IsLoaded - - ResampleMode - - ScaleType - - SliceCenter - - SliceScale - - TileSize - ImporterAnimationSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterBaseSettings: - superclass: Instance - events: [] - properties: - - Id - - ImportName - - ShouldImport - ImporterFacsSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterGroupSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - Anchored - - ImportAsModelAsset - - InsertInWorkspace - ImporterJointSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterMaterialSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - DiffuseFilePath - - IsPbr - - MetalnessFilePath - - NormalFilePath - - RoughnessFilePath - ImporterMeshSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - Anchored - - CageManifold - - CageMeshIntersectedPreview - - CageMeshNotIntersected - - CageNoOverlappingVertices - - CageNonManifoldPreview - - CageOverlappingVerticesPreview - - CageUVMatched - - CageUVMisMatchedPreview - - Dimensions - - DoubleSided - - IgnoreVertexColors - - IrrelevantCageModifiedPreview - - MeshHoleDetectedPreview - - MeshNoHoleDetected - - NoIrrelevantCageModified - - NoOuterCageFarExtendedFromMesh - - OuterCageFarExtendedFromMeshPreview - - PolygonCount - - UseImportedPivot - ImporterRootSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - AddModelToInventory - - Anchored - - ExistingPackageId - - FileDimensions - - ImportAsModelAsset - - ImportAsPackage - - InsertInWorkspace - - InsertWithScenePosition - - InvertNegativeFaces - - MergeMeshes - - PolygonCount - - RigScale - - RigType - - ScaleUnit - - UseSceneOriginAsCFrame - - UseSceneOriginAsPivot - - UsesCages - - WorldForward - - WorldUp - IncrementalPatchBuilder: - superclass: Instance - events: [] - properties: - - AddPathsToBundle - - BuildDebouncePeriod - - HighCompression - - SerializePatch - - ZstdCompression - InputObject: - superclass: Instance - events: [] - properties: - - Delta - - KeyCode - - Position - - UserInputState - - UserInputType - InsertService: - superclass: Instance - events: [] - properties: - - AllowClientInsertModels - - AllowInsertFreeModels - Instance: - superclass: <<>> - events: - - AncestryChanged - - AttributeChanged - - Changed - - ChildAdded - - ChildRemoved - - DescendantAdded - - DescendantRemoving - - Destroying - - childAdded - properties: - - Archivable - - ClassName - - DataCost - - Name - - Parent - - RobloxLocked - - SourceAssetId - - archivable - - className - InstanceAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - IntConstrainedValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - ConstrainedValue - - MaxValue - - MinValue - - Value - IntValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - IntersectOperation: - superclass: PartOperation - events: [] - properties: [] - InventoryPages: - superclass: Pages - events: [] - properties: [] - JointInstance: - superclass: Instance - events: [] - properties: - - Active - - C0 - - C1 - - Enabled - - Part0 - - Part1 - - part1 - JointsService: - superclass: Instance - events: [] - properties: [] - KeyboardService: - superclass: Instance - events: [] - properties: [] - Keyframe: - superclass: Instance - events: [] - properties: - - Time - KeyframeMarker: - superclass: Instance - events: [] - properties: - - Value - KeyframeSequence: - superclass: AnimationClip - events: [] - properties: - - AuthoredHipHeight - KeyframeSequenceProvider: - superclass: Instance - events: [] - properties: [] - LSPFileSyncService: - superclass: Instance - events: [] - properties: [] - LanguageService: - superclass: Instance - events: [] - properties: [] - LayerCollector: - superclass: GuiBase2d - events: [] - properties: - - Enabled - - ResetOnSpawn - - ZIndexBehavior - LegacyStudioBridge: - superclass: ILegacyStudioBridge - events: [] - properties: [] - Light: - superclass: Instance - events: [] - properties: - - Brightness - - Color - - Enabled - - Shadows - Lighting: - superclass: Instance - events: - - LightingChanged - properties: - - Ambient - - Brightness - - TimerTime - - ColorShift_Bottom - - ColorShift_Top - - EnvironmentDiffuseScale - - EnvironmentSpecularScale - - ExposureCompensation - - FogColor - - FogEnd - - FogStart - - GeographicLatitude - - GlobalShadows - - OutdoorAmbient - - Outlines - - ShadowColor - - ShadowSoftness - - Technology - - TempUseNewSkyRemovalBehaviour - - TimeOfDay - LineForce: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - InverseSquareLaw - - Magnitude - - MaxForce - - ReactionForceEnabled - LineHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Length - - Thickness - LinearVelocity: - superclass: Constraint - events: [] - properties: - - LineDirection - - LineVelocity - - MaxForce - - PlaneVelocity - - PrimaryTangentAxis - - RelativeTo - - SecondaryTangentAxis - - VectorVelocity - - VelocityConstraintMode - LiveScriptingService: - superclass: Instance - events: [] - properties: [] - LocalDebuggerConnection: - superclass: DebuggerConnection - events: [] - properties: [] - LocalScript: - superclass: Script - events: [] - properties: [] - LocalStorageService: - superclass: Instance - events: - - ItemWasSet - - StoreWasCleared - properties: [] - LocalizationService: - superclass: Instance - events: - - AutoTranslateWillRun - properties: - - ForcePlayModeGameLocaleId - - ForcePlayModeRobloxLocaleId - - IsTextScraperRunning - - RobloxForcePlayModeGameLocaleId - - RobloxForcePlayModeRobloxLocaleId - - RobloxLocaleId - - SystemLocaleId - LocalizationTable: - superclass: Instance - events: [] - properties: - - DevelopmentLanguage - - Root - - SourceLocaleId - LodDataEntity: - superclass: Instance - events: [] - properties: - - EntityLodEnabled - LodDataService: - superclass: Instance - events: [] - properties: [] - LogService: - superclass: Instance - events: - - HttpResultOut - - MessageOut - - OnHttpResultApproved - - ServerHttpResultOut - - ServerMessageOut - properties: [] - LoginService: - superclass: Instance - events: - - LoginFailed - - LoginSucceeded - properties: [] - LuaSettings: - superclass: Instance - events: [] - properties: [] - LuaSourceContainer: - superclass: Instance - events: [] - properties: - - CurrentEditor - - RuntimeSource - LuaWebService: - superclass: Instance - events: [] - properties: [] - LuauScriptAnalyzerService: - superclass: Instance - events: [] - properties: [] - ManualGlue: - superclass: ManualSurfaceJointInstance - events: [] - properties: [] - ManualSurfaceJointInstance: - superclass: JointInstance - events: [] - properties: [] - ManualWeld: - superclass: ManualSurfaceJointInstance - events: [] - properties: [] - MarkerCurve: - superclass: Instance - events: [] - properties: - - Length - MarketplaceService: - superclass: Instance - events: - - ClientLuaDialogRequested - - ClientPurchaseSuccess - - NativePurchaseFinished - - NativePurchaseFinishedWithLocalPlayer - - PromptBundlePurchaseFinished - - PromptBundlePurchaseRequested - - PromptGamePassPurchaseFinished - - PromptGamePassPurchaseRequested - - PromptPremiumPurchaseFinished - - PromptPremiumPurchaseRequested - - PromptProductPurchaseFinished - - PromptProductPurchaseRequested - - PromptPurchaseFinished - - PromptPurchaseRequested - - PromptRobloxPurchaseRequested - - PromptSubscriptionCancellationFinished - - PromptSubscriptionCancellationRequested - - PromptSubscriptionPurchaseFinished - - PromptSubscriptionPurchaseRequested - - ServerPurchaseVerification - - ThirdPartyPurchaseFinished - properties: [] - MaterialGenerationService: - superclass: Instance - events: [] - properties: [] - MaterialGenerationSession: - superclass: Instance - events: [] - properties: [] - MaterialService: - superclass: Instance - events: - - OverrideStatusChanged - properties: - - AsphaltName - - BasaltName - - BrickName - - CobblestoneName - - ConcreteName - - CorrodedMetalName - - CrackedLavaName - - DiamondPlateName - - FabricName - - FoilName - - GlacierName - - GraniteName - - GrassName - - GroundName - - IceName - - LeafyGrassName - - LimestoneName - - MarbleName - - MetalName - - MudName - - PavementName - - PebbleName - - PlasticName - - RockName - - SaltName - - SandName - - SandstoneName - - SlateName - - SmoothPlasticName - - SnowName - - Use2022Materials - - WoodName - - WoodPlanksName - MaterialVariant: - superclass: Instance - events: [] - properties: - - BaseMaterial - - ColorMap - - CustomPhysicalProperties - - MaterialPattern - - MetalnessMap - - NormalMap - - RoughnessMap - - StudsPerTile - MemStorageConnection: - superclass: Instance - events: [] - properties: [] - MemStorageService: - superclass: Instance - events: [] - properties: [] - MemoryStoreQueue: - superclass: Instance - events: [] - properties: [] - MemoryStoreService: - superclass: Instance - events: [] - properties: [] - MemoryStoreSortedMap: - superclass: Instance - events: [] - properties: [] - MeshContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - MeshDataExperimental: - superclass: Instance - events: [] - properties: - - Size - MeshPart: - superclass: TriangleMeshPart - events: [] - properties: - - DoubleSided - - HasJointOffset - - HasSkinnedMesh - - JointOffset - - MeshId - - RenderFidelity - - TextureID - Message: - superclass: Instance - events: [] - properties: - - Text - MessageBusConnection: - superclass: Instance - events: [] - properties: [] - MessageBusService: - superclass: Instance - events: [] - properties: [] - MessagingService: - superclass: Instance - events: [] - properties: [] - MetaBreakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - Enabled - - Id - - IsLogpoint - - Line - - LogMessage - - Script - - Valid - MetaBreakpointContext: - superclass: Instance - events: [] - properties: [] - MetaBreakpointManager: - superclass: Instance - events: - - MetaBreakpointAdded - - MetaBreakpointChanged - - MetaBreakpointRemoved - - MetaBreakpointSetChanged - properties: [] - Model: - superclass: PVInstance - events: [] - properties: - - LevelOfDetail - - ModelStreamingMode - - PrimaryPart - - Scale - - WorldPivot - ModuleScript: - superclass: LuaSourceContainer - events: [] - properties: - - LinkedSource - - Source - Motor: - superclass: JointInstance - events: [] - properties: - - CurrentAngle - - DesiredAngle - - MaxVelocity - Motor6D: - superclass: Motor - events: [] - properties: - - ChildName - - ParentName - - Transform - MotorFeature: - superclass: Feature - events: [] - properties: [] - Mouse: - superclass: Instance - events: - - Button1Down - - Button1Up - - Button2Down - - Button2Up - - Idle - - KeyDown - - KeyUp - - Move - - WheelBackward - - WheelForward - - keyDown - properties: - - Hit - - Icon - - Origin - - Target - - TargetFilter - - TargetSurface - - UnitRay - - ViewSizeX - - ViewSizeY - - X - - Y - - hit - - target - MouseService: - superclass: Instance - events: [] - properties: [] - MultipleDocumentInterfaceInstance: - superclass: Instance - events: - - DataModelSessionEnded - - DataModelSessionStarted - properties: - - FocusedDataModelSession - NegateOperation: - superclass: PartOperation - events: [] - properties: [] - NetworkClient: - superclass: NetworkPeer - events: - - ConnectionAccepted - - ConnectionFailed - properties: [] - NetworkMarker: - superclass: Instance - events: - - Received - properties: [] - NetworkPeer: - superclass: Instance - events: [] - properties: [] - NetworkReplicator: - superclass: Instance - events: [] - properties: [] - NetworkServer: - superclass: NetworkPeer - events: [] - properties: [] - NetworkSettings: - superclass: Instance - events: [] - properties: - - EmulatedTotalMemoryInMB - - FreeMemoryMBytes - - HttpProxyEnabled - - HttpProxyURL - - IncomingReplicationLag - - PrintJoinSizeBreakdown - - PrintPhysicsErrors - - PrintStreamInstanceQuota - - RandomizeJoinInstanceOrder - - RenderStreamedRegions - - ShowActiveAnimationAsset - NoCollisionConstraint: - superclass: Instance - events: [] - properties: - - Enabled - - Part0 - - Part1 - NonReplicatedCSGDictionaryService: - superclass: FlyweightService - events: [] - properties: [] - NotificationService: - superclass: Instance - events: - - Roblox17sConnectionChanged - - Roblox17sEventReceived - - RobloxConnectionChanged - - RobloxEventReceived - properties: - - IsConnected - - IsLuaChatEnabled - - IsLuaGameDetailsEnabled - - SelectedTheme - NumberPose: - superclass: PoseBase - events: [] - properties: - - Value - NumberValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - ObjectValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - OrderedDataStore: - superclass: GlobalDataStore - events: [] - properties: [] - OutfitPages: - superclass: Pages - events: [] - properties: [] - PVAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - PVInstance: - superclass: Instance - events: [] - properties: - - Origin - - Pivot Offset - PackageLink: - superclass: Instance - events: [] - properties: - - AutoUpdate - - Creator - - PackageAssetName - - PackageId - - PermissionLevel - - Status - - VersionNumber - PackageService: - superclass: Instance - events: [] - properties: [] - PackageUIService: - superclass: Instance - events: - - OnConvertToPackageResult - - OnOpenConvertToPackagePlugin - properties: [] - Pages: - superclass: Instance - events: [] - properties: - - IsFinished - Pants: - superclass: Clothing - events: [] - properties: - - PantsTemplate - ParabolaAdornment: - superclass: PVAdornment - events: [] - properties: - - A - - B - - C - - Range - - Thickness - Part: - superclass: FormFactorPart - events: [] - properties: - - Shape - PartAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - PartOperation: - superclass: TriangleMeshPart - events: [] - properties: - - RenderFidelity - - SmoothingAngle - - TriangleCount - - UsePartColor - PartOperationAsset: - superclass: Instance - events: [] - properties: [] - ParticleEmitter: - superclass: Instance - events: [] - properties: - - Acceleration - - Brightness - - Color - - Drag - - EmissionDirection - - Enabled - - FlipbookFramerate - - FlipbookIncompatible - - FlipbookLayout - - FlipbookMode - - FlipbookStartRandom - - Lifetime - - LightEmission - - LightInfluence - - LockedToPart - - Orientation - - Rate - - RotSpeed - - Rotation - - Shape - - ShapeInOut - - ShapePartial - - ShapeStyle - - Size - - Speed - - SpreadAngle - - Squash - - Texture - - TimeScale - - Transparency - - VelocityInheritance - - VelocitySpread - - ZOffset - PatchBundlerFileWatch: - superclass: Instance - events: [] - properties: [] - PatchMapping: - superclass: Instance - events: [] - properties: - - FlattenTree - - PatchId - - TargetPath - Path: - superclass: Instance - events: - - Blocked - - Unblocked - properties: - - Status - PathfindingLink: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - IsBidirectional - - Label - PathfindingModifier: - superclass: Instance - events: [] - properties: - - Label - - PassThrough - PathfindingService: - superclass: Instance - events: [] - properties: - - EmptyCutoff - PausedState: - superclass: Instance - events: [] - properties: - - AllThreadsPaused - - Reason - - ThreadId - PausedStateBreakpoint: - superclass: PausedState - events: [] - properties: - - Breakpoint - PausedStateException: - superclass: PausedState - events: [] - properties: - - ExceptionText - PermissionsService: - superclass: Instance - events: [] - properties: [] - PhysicsService: - superclass: Instance - events: [] - properties: [] - PhysicsSettings: - superclass: Instance - events: [] - properties: - - AllowSleep - - AreAnchorsShown - - AreAssembliesShown - - AreAwakePartsHighlighted - - AreBodyTypesShown - - AreConstraintForcesShownForSelectedOrHoveredInstances - - AreConstraintTorquesShownForSelectedOrHoveredInstances - - AreContactForcesShownForSelectedOrHoveredAssemblies - - AreContactIslandsShown - - AreContactPointsShown - - AreJointCoordinatesShown - - AreMagnitudesShownForDrawnForcesAndTorques - - AreMechanismsShown - - AreModelCoordsShown - - AreOwnersShown - - ArePartCoordsShown - - AreRegionsShown - - AreSolverIslandsShown - - AreTerrainReplicationRegionsShown - - AreTimestepsShown - - AreUnalignedPartsShown - - AreWorldCoordsShown - - DisableCSGv2 - - ForceCSGv2 - - ForceDrawScale - - IsInterpolationThrottleShown - - IsReceiveAgeShown - - IsTreeShown - - PhysicsEnvironmentalThrottle - - ShowDecompositionGeometry - - SolverConvergenceVisualizationMode - - ThrottleAdjustTime - - UseCSGv2 - PitchShiftSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Octave - Plane: - superclass: PlaneConstraint - events: [] - properties: [] - PlaneConstraint: - superclass: Constraint - events: [] - properties: [] - Platform: - superclass: Part - events: [] - properties: [] - Player: - superclass: Instance - events: - - CharacterAdded - - CharacterAppearanceLoaded - - CharacterRemoving - - Chatted - - FriendStatusChanged - - Idled - - OnTeleport - - SimulationRadiusChanged - properties: - - AccountAge - - AppearanceDidLoad - - AutoJumpEnabled - - CameraMaxZoomDistance - - CameraMinZoomDistance - - CameraMode - - CanLoadCharacterAppearance - - Character - - CharacterAppearance - - CharacterAppearanceId - - ChatMode - - DataComplexity - - DataComplexityLimit - - DataReady - - DevCameraOcclusionMode - - DevComputerCameraMode - - DevComputerMovementMode - - DevEnableMouseLock - - DevTouchCameraMode - - DevTouchMovementMode - - DisplayName - - FollowUserId - - GameplayPaused - - Guest - - HasVerifiedBadge - - HealthDisplayDistance - - LocaleId - - MaximumSimulationRadius - - MembershipType - - NameDisplayDistance - - Neutral - - OsPlatform - - PlatformName - - ReplicationFocus - - RespawnLocation - - SimulationRadius - - Team - - TeamColor - - Teleported - - TeleportedIn - - UnfilteredChat - - UserId - - VRDevice - - VREnabled - - userId - PlayerEmulatorService: - superclass: Instance - events: [] - properties: - - CustomPoliciesEnabled - - EmulatedCountryCode - - EmulatedGameLocale - - PlayerEmulationEnabled - - SerializedEmulatedPolicyInfo - PlayerGui: - superclass: BasePlayerGui - events: - - TopbarTransparencyChangedSignal - properties: - - CurrentScreenOrientation - - ScreenOrientation - - SelectionImageObject - PlayerMouse: - superclass: Mouse - events: [] - properties: [] - PlayerScripts: - superclass: Instance - events: - - ComputerCameraMovementModeRegistered - - ComputerMovementModeRegistered - - TouchCameraMovementModeRegistered - - TouchMovementModeRegistered - properties: [] - Players: - superclass: Instance - events: - - FriendRequestEvent - - GameAnnounce - - PlayerAdded - - PlayerChatted - - PlayerConnecting - - PlayerDisconnecting - - PlayerMembershipChanged - - PlayerRejoining - - PlayerRemoving - properties: - - BubbleChat - - CharacterAutoLoads - - ClassicChat - - LocalPlayer - - MaxPlayers - - MaxPlayersInternal - - NumPlayers - - PreferredPlayers - - PreferredPlayersInternal - - RespawnTime - - UseStrafingAnimations - - localPlayer - - numPlayers - Plugin: - superclass: Instance - events: - - Deactivation - - Ready - - Unloading - properties: - - CollisionEnabled - - GridSize - - HostDataModelType - - HostDataModelTypeIsCurrent - - MultipleDocumentInterfaceInstance - - UsesAssetInsertionDrag - PluginAction: - superclass: Instance - events: - - Triggered - properties: - - ActionId - - AllowBinding - - Checked - - DefaultShortcut - - Enabled - - StatusTip - - Text - PluginDebugService: - superclass: Instance - events: [] - properties: [] - PluginDragEvent: - superclass: Instance - events: [] - properties: - - Data - - MimeType - - Position - - Sender - PluginGui: - superclass: LayerCollector - events: - - PluginDragDropped - - PluginDragEntered - - PluginDragLeft - - PluginDragMoved - - WindowFocusReleased - - WindowFocused - properties: - - Title - PluginGuiService: - superclass: Instance - events: [] - properties: [] - PluginManagementService: - superclass: Instance - events: [] - properties: [] - PluginManager: - superclass: Instance - events: [] - properties: [] - PluginManagerInterface: - superclass: Instance - events: [] - properties: [] - PluginMenu: - superclass: Instance - events: [] - properties: - - Icon - - Title - PluginMouse: - superclass: Mouse - events: - - DragEnter - properties: [] - PluginPolicyService: - superclass: Instance - events: [] - properties: [] - PluginToolbar: - superclass: Instance - events: [] - properties: [] - PluginToolbarButton: - superclass: Instance - events: - - Click - properties: - - ClickableWhenViewportHidden - - Enabled - - Icon - PointLight: - superclass: Light - events: [] - properties: - - Range - PointsService: - superclass: Instance - events: - - PointsAwarded - properties: [] - PolicyService: - superclass: Instance - events: [] - properties: - - IsLuobuServer - - LuobuWhitelisted - Pose: - superclass: PoseBase - events: [] - properties: - - CFrame - - MaskWeight - PoseBase: - superclass: Instance - events: [] - properties: - - EasingDirection - - EasingStyle - - Weight - PostEffect: - superclass: Instance - events: [] - properties: - - Enabled - PrismaticConstraint: - superclass: SlidingBallConstraint - events: [] - properties: [] - ProcessInstancePhysicsService: - superclass: Instance - events: [] - properties: [] - ProximityPrompt: - superclass: Instance - events: - - PromptButtonHoldBegan - - PromptButtonHoldEnded - - PromptHidden - - PromptShown - - TriggerEnded - - Triggered - properties: - - ActionText - - AutoLocalize - - ClickablePrompt - - Enabled - - Exclusivity - - GamepadKeyCode - - HoldDuration - - KeyboardKeyCode - - MaxActivationDistance - - ObjectText - - RequiresLineOfSight - - RootLocalizationTable - - Style - - UIOffset - ProximityPromptService: - superclass: Instance - events: - - PromptButtonHoldBegan - - PromptButtonHoldEnded - - PromptHidden - - PromptShown - - PromptTriggerEnded - - PromptTriggered - properties: - - Enabled - - MaxPromptsVisible - PublishService: - superclass: Instance - events: [] - properties: [] - QWidgetPluginGui: - superclass: PluginGui - events: [] - properties: [] - RayValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - RbxAnalyticsService: - superclass: Instance - events: [] - properties: [] - ReflectionMetadata: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataCallbacks: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataClass: - superclass: ReflectionMetadataItem - events: [] - properties: - - ExplorerImageIndex - - ExplorerOrder - - Insertable - - PreferredParent - - ServiceVisibility - ReflectionMetadataClasses: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataEnum: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataEnumItem: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataEnums: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataEvents: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataFunctions: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataItem: - superclass: Instance - events: [] - properties: - - Browsable - - ClassCategory - - ClientOnly - - Constraint - - Deprecated - - EditingDisabled - - EditorType - - FFlag - - IsBackend - - PropertyOrder - - ScriptContext - - ServerOnly - - SliderScaling - - UIMaximum - - UIMinimum - - UINumTicks - ReflectionMetadataMember: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataProperties: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataYieldFunctions: - superclass: Instance - events: [] - properties: [] - RemoteCursorService: - superclass: Instance - events: [] - properties: [] - RemoteDebuggerServer: - superclass: Instance - events: [] - properties: [] - RemoteEvent: - superclass: Instance - events: - - OnClientEvent - - OnServerEvent - properties: [] - RemoteFunction: - superclass: Instance - events: [] - properties: [] - RenderSettings: - superclass: Instance - events: [] - properties: - - AutoFRMLevel - - EagerBulkExecution - - EditQualityLevel - - EnableFRM - - ExportMergeByMaterial - - FrameRateManager - - GraphicsMode - - MeshCacheSize - - MeshPartDetailLevel - - QualityLevel - - ReloadAssets - - RenderCSGTrianglesDebug - - ShowBoundingBoxes - RenderingTest: - superclass: Instance - events: [] - properties: - - CFrame - - ComparisonDiffThreshold - - ComparisonMethod - - ComparisonPsnrThreshold - - Description - - FieldOfView - - Orientation - - Position - - QualityLevel - - ShouldSkip - - Ticket - ReplicatedFirst: - superclass: Instance - events: - - DefaultLoadingGuiRemoved - - FinishedReplicating - - RemoveDefaultLoadingGuiSignal - properties: [] - ReplicatedStorage: - superclass: Instance - events: [] - properties: [] - ReverbSoundEffect: - superclass: SoundEffect - events: [] - properties: - - DecayTime - - Density - - Diffusion - - DryLevel - - WetLevel - RigidConstraint: - superclass: Constraint - events: [] - properties: [] - RobloxPluginGuiService: - superclass: Instance - events: [] - properties: [] - RobloxReplicatedStorage: - superclass: Instance - events: [] - properties: [] - RocketPropulsion: - superclass: BodyMover - events: - - ReachedTarget - properties: - - CartoonFactor - - MaxSpeed - - MaxThrust - - MaxTorque - - Target - - TargetOffset - - TargetRadius - - ThrustD - - ThrustP - - TurnD - - TurnP - RodConstraint: - superclass: Constraint - events: [] - properties: - - CurrentDistance - - Length - - LimitAngle0 - - LimitAngle1 - - LimitsEnabled - - Thickness - RopeConstraint: - superclass: Constraint - events: [] - properties: - - CurrentDistance - - Length - - Restitution - - Thickness - - WinchEnabled - - WinchForce - - WinchResponsiveness - - WinchSpeed - - WinchTarget - Rotate: - superclass: JointInstance - events: [] - properties: [] - RotateP: - superclass: DynamicRotate - events: [] - properties: [] - RotateV: - superclass: DynamicRotate - events: [] - properties: [] - RotationCurve: - superclass: Instance - events: [] - properties: - - Length - RtMessagingService: - superclass: Instance - events: [] - properties: [] - RunService: - superclass: Instance - events: - - Heartbeat - - PostSimulation - - PreAnimation - - PreRender - - PreSimulation - - RenderStepped - - Stepped - properties: - - ClientGitHash - RunningAverageItemDouble: - superclass: StatsItem - events: [] - properties: [] - RunningAverageItemInt: - superclass: StatsItem - events: [] - properties: [] - RunningAverageTimeIntervalItem: - superclass: StatsItem - events: [] - properties: [] - RuntimeScriptService: - superclass: Instance - events: [] - properties: [] - SafetyService: - superclass: Instance - events: - - ScreenshotContentReady - - ScreenshotUploaded - properties: [] - ScreenGui: - superclass: LayerCollector - events: [] - properties: - - ClipToDeviceSafeArea - - DisplayOrder - - IgnoreGuiInset - - OnTopOfCoreBlur - - SafeAreaCompatibility - - ScreenInsets - ScreenshotHud: - superclass: Instance - events: [] - properties: - - CameraButtonIcon - - CameraButtonPosition - - CloseButtonPosition - - CloseWhenScreenshotTaken - - ExperienceNameOverlayEnabled - - OverlayFont - - UsernameOverlayEnabled - - Visible - Script: - superclass: BaseScript - events: [] - properties: - - Source - ScriptBuilder: - superclass: Instance - events: [] - properties: [] - ScriptChangeService: - superclass: Instance - events: - - ScriptAdded - - ScriptBeingRemoved - - ScriptChanged - - ScriptFullNameChanged - - ScriptSourceChanged - properties: [] - ScriptCloneWatcher: - superclass: Instance - events: [] - properties: [] - ScriptCloneWatcherHelper: - superclass: Instance - events: [] - properties: [] - ScriptContext: - superclass: Instance - events: - - Error - - ErrorDetailed - properties: - - ScriptsDisabled - ScriptDebugger: - superclass: Instance - events: - - BreakpointAdded - - BreakpointRemoved - - EncounteredBreak - - Resuming - - WatchAdded - - WatchRemoved - properties: - - CurrentLine - - IsDebugging - - IsPaused - - Script - ScriptDocument: - superclass: Instance - events: - - SelectionChanged - - ViewportChanged - properties: [] - ScriptEditorService: - superclass: Instance - events: - - TextDocumentDidChange - - TextDocumentDidClose - - TextDocumentDidOpen - properties: [] - ScriptRegistrationService: - superclass: Instance - events: [] - properties: [] - ScriptRuntime: - superclass: Instance - events: [] - properties: [] - ScriptService: - superclass: Instance - events: [] - properties: [] - ScrollingFrame: - superclass: GuiObject - events: [] - properties: - - AbsoluteCanvasSize - - AbsoluteWindowSize - - AutomaticCanvasSize - - BottomImage - - CanvasPosition - - CanvasSize - - ElasticBehavior - - HorizontalBarRect - - HorizontalScrollBarInset - - MaxCanvasPosition - - MidImage - - ScrollBarImageColor3 - - ScrollBarImageTransparency - - ScrollBarThickness - - ScrollVelocity - - ScrollingDirection - - ScrollingEnabled - - TopImage - - VerticalBarRect - - VerticalScrollBarInset - - VerticalScrollBarPosition - Seat: - superclass: Part - events: [] - properties: - - Disabled - - Occupant - Selection: - superclass: Instance - events: - - SelectionChanged - properties: - - ActiveInstance - - SelectionBoxThickness - - SelectionLineThickness - - SelectionThickness - - ShowBoundingBox - SelectionBox: - superclass: InstanceAdornment - events: [] - properties: - - LineThickness - - StudioSelectionBox - - SurfaceColor - - SurfaceColor3 - - SurfaceTransparency - SelectionHighlightManager: - superclass: Instance - events: [] - properties: [] - SelectionLasso: - superclass: GuiBase3d - events: [] - properties: - - Humanoid - SelectionPartLasso: - superclass: SelectionLasso - events: [] - properties: - - Part - SelectionPointLasso: - superclass: SelectionLasso - events: [] - properties: - - Point - SelectionSphere: - superclass: PVAdornment - events: [] - properties: - - SurfaceColor - - SurfaceColor3 - - SurfaceTransparency - SensorBase: - superclass: Instance - events: - - OnSensorOutputChanged - properties: - - UpdateType - ServerReplicator: - superclass: NetworkReplicator - events: [] - properties: [] - ServerScriptService: - superclass: Instance - events: [] - properties: - - LoadStringEnabled - ServerStorage: - superclass: Instance - events: [] - properties: [] - ServiceProvider: - superclass: Instance - events: - - Close - - CloseLate - - ServiceAdded - - ServiceRemoving - properties: [] - ServiceVisibilityService: - superclass: Instance - events: [] - properties: - - VisibleServices - SessionService: - superclass: Instance - events: [] - properties: [] - SharedTableRegistry: - superclass: Instance - events: [] - properties: [] - Shirt: - superclass: Clothing - events: [] - properties: - - ShirtTemplate - ShirtGraphic: - superclass: CharacterAppearance - events: [] - properties: - - Color3 - - Graphic - ShorelineUpgraderService: - superclass: Instance - events: - - Status - properties: [] - SkateboardController: - superclass: Controller - events: - - AxisChanged - properties: - - Steer - - Throttle - SkateboardPlatform: - superclass: Part - events: - - Equipped - - MoveStateChanged - - Unequipped - - equipped - - unequipped - properties: - - Controller - - ControllingHumanoid - - Steer - - StickyWheels - - Throttle - Skin: - superclass: CharacterAppearance - events: [] - properties: - - SkinColor - Sky: - superclass: Instance - events: [] - properties: - - CelestialBodiesShown - - MoonAngularSize - - MoonTextureId - - SkyboxBk - - SkyboxDn - - SkyboxFt - - SkyboxLf - - SkyboxRt - - SkyboxUp - - StarCount - - SunAngularSize - - SunTextureId - SlidingBallConstraint: - superclass: Constraint - events: [] - properties: - - ActuatorType - - CurrentPosition - - LimitsEnabled - - LinearResponsiveness - - LowerLimit - - MotorMaxAcceleration - - MotorMaxForce - - Restitution - - ServoMaxForce - - Size - - Speed - - TargetPosition - - UpperLimit - - Velocity - Smoke: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - Opacity - - RiseVelocity - - Size - - TimeScale - SmoothVoxelsUpgraderService: - superclass: Instance - events: - - Status - properties: [] - Snap: - superclass: JointInstance - events: [] - properties: [] - SnippetService: - superclass: Instance - events: [] - properties: [] - SocialService: - superclass: Instance - events: - - GameInvitePromptClosed - - PromptInviteRequested - properties: [] - SolidModelContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - Sound: - superclass: Instance - events: - - DidLoop - - Ended - - Loaded - - Paused - - Played - - Resumed - - Stopped - properties: - - ChannelCount - - EmitterSize - - IsLoaded - - IsPaused - - IsPlaying - - IsSpatial - - LoopRegion - - Looped - - MaxDistance - - MinDistance - - Pitch - - PlayOnRemove - - PlaybackLoudness - - PlaybackRegion - - PlaybackRegionsEnabled - - PlaybackSpeed - - Playing - - RollOffGain - - RollOffMaxDistance - - RollOffMinDistance - - RollOffMode - - SoundGroup - - SoundId - - TimeLength - - TimePosition - - UsageContextPermission - - Volume - - isPlaying - SoundEffect: - superclass: Instance - events: [] - properties: - - Enabled - - Priority - SoundGroup: - superclass: Instance - events: [] - properties: - - Volume - SoundService: - superclass: Instance - events: - - DeviceListChanged - properties: - - AmbientReverb - - DistanceFactor - - DopplerScale - - RespectFilteringEnabled - - RolloffScale - - VolumetricAudio - Sparkles: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - SparkleColor - - TimeScale - SpawnLocation: - superclass: Part - events: [] - properties: - - AllowTeamChangeOnTouch - - Duration - - Enabled - - Neutral - - TeamColor - SpawnerService: - superclass: Instance - events: [] - properties: [] - Speaker: - superclass: Instance - events: [] - properties: - - ChannelCount - - PlaybackLoudness - - RollOffMaxDistance - - RollOffMinDistance - - RollOffMode - - SoundGroup - - Source - - Volume - SpecialMesh: - superclass: FileMesh - events: [] - properties: - - MeshType - SphereHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Radius - SpotLight: - superclass: Light - events: [] - properties: - - Angle - - Face - - Range - SpringConstraint: - superclass: Constraint - events: [] - properties: - - Coils - - CurrentLength - - Damping - - FreeLength - - LimitsEnabled - - MaxForce - - MaxLength - - MinLength - - Radius - - Stiffness - - Thickness - StackFrame: - superclass: Instance - events: [] - properties: - - FrameId - - FrameName - - FrameType - - Globals - - Line - - Locals - - Populated - - Script - - Upvalues - StandalonePluginScripts: - superclass: Instance - events: [] - properties: [] - StandardPages: - superclass: Pages - events: [] - properties: [] - StarterCharacterScripts: - superclass: StarterPlayerScripts - events: [] - properties: [] - StarterGear: - superclass: Instance - events: [] - properties: [] - StarterGui: - superclass: BasePlayerGui - events: - - CoreGuiChangedSignal - properties: - - ProcessUserInput - - ResetPlayerGuiOnSpawn - - RtlTextSupport - - ScreenOrientation - - ShowDevelopmentGui - - VirtualCursorMode - StarterPack: - superclass: Instance - events: [] - properties: [] - StarterPlayer: - superclass: Instance - events: [] - properties: - - AllowCustomAnimations - - AutoJumpEnabled - - CameraMaxZoomDistance - - CameraMinZoomDistance - - CameraMode - - CharacterJumpHeight - - CharacterJumpPower - - CharacterMaxSlopeAngle - - CharacterUseJumpPower - - CharacterWalkSpeed - - DevCameraOcclusionMode - - DevComputerCameraMovementMode - - DevComputerMovementMode - - DevTouchCameraMovementMode - - DevTouchMovementMode - - EnableDynamicHeads - - EnableMouseLockOption - - GameSettingsAssetIDFace - - GameSettingsAssetIDHead - - GameSettingsAssetIDLeftArm - - GameSettingsAssetIDLeftLeg - - GameSettingsAssetIDPants - - GameSettingsAssetIDRightArm - - GameSettingsAssetIDRightLeg - - GameSettingsAssetIDShirt - - GameSettingsAssetIDTeeShirt - - GameSettingsAssetIDTorso - - GameSettingsAvatar - - GameSettingsR15Collision - - GameSettingsScaleRangeBodyType - - GameSettingsScaleRangeHead - - GameSettingsScaleRangeHeight - - GameSettingsScaleRangeProportion - - GameSettingsScaleRangeWidth - - HealthDisplayDistance - - HumanoidStateMachineMode - - LoadCharacterAppearance - - 'LoadCharacterLayeredClothing ' - - NameDisplayDistance - - UserEmotesEnabled - StarterPlayerScripts: - superclass: Instance - events: [] - properties: [] - Stats: - superclass: Instance - events: [] - properties: - - ContactsCount - - DataReceiveKbps - - DataSendKbps - - HeartbeatTimeMs - - InstanceCount - - MovingPrimitivesCount - - PhysicsReceiveKbps - - PhysicsSendKbps - - PhysicsStepTimeMs - - PrimitivesCount - StatsItem: - superclass: Instance - events: [] - properties: - - DisplayName - Status: - superclass: Model - events: [] - properties: [] - StringValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - Studio: - superclass: Instance - events: - - ThemeChanged - properties: - - '"TODO" Color' - - '"function" Color' - - '"local" Color' - - '"nil" Color' - - '"self" Color' - - Active Color - - Active Hover Over Color - - Always Save Script Changes - - Animate Hover Over - - Auto Clean Empty Line - - Auto Closing Brackets - - Auto Closing Quotes - - Auto Delete Closing Brackets and Quotes - - Auto Indent Rule - - Auto-Recovery Enabled - - Auto-Recovery Interval (Minutes) - - Auto-Recovery Path - - Automatically commit locked scripts when you save or publish to Roblox - - Background Color - - Basic Objects Display Mode - - Bool Color - - Bracket Color - - Built-in Function Color - - Camera Mouse Wheel Speed - - Camera Pan Speed - - Camera Shift Speed - - Camera Speed - - Camera Zoom to Mouse Position - - Clear Output On Start - - CommandBarLocalState - - Comment Color - - Current Line Highlight Color - - Debugger Current Line Color - - Debugger Error Line Color - - DefaultScriptFileDir - - DeprecatedObjectsShown - - Display Team Create toggle when creating a new experience - - DisplayLanguage - - Doc View Code Background Color - - Drag Multiple Parts As Single Part - - Enable Autocomplete - - Enable Autocomplete Doc View - - Enable CoreScript Debugger - - Enable Http Sandboxing - - Enable Internal Beta Features - - Enable Internal Features - - Enable Script Analysis - - Enable Scrollbar Markers - - Enable Signature Help - - Enable Signature Help Doc View - - Enable Temporary Tabs - - Enable Temporary Tabs In Explorer - - Enable Type Hover - - EnableOnTypeAutocomplete - - Error Color - - File > New creates a place with Team Create off - - Find Selection Background Color - - Font - - Format On Paste - - Format On Type - - Function Name Color - - Highlight Current Line - - Highlight Occurances - - Hover Animate Speed - - Hover Box Thickness - - Hover Line Thickness - - Hover Over Color - - IconOverrideDir - - Indent Using Spaces - - Keyword Color - - Line Thickness - - LocalAssetsFolder - - LuaDebuggerEnabled - - LuaDebuggerEnabledAtStartup - - Luau Keyword Color - - Main Volume - - Matching Word Background Color - - Maximum Output Lines - - Menu Item Background Color - - Method Color - - Number Color - - Only Play Audio from Window in Focus - - Operator Color - - Output Font - - Output Layout Mode - - PermissionLevelShown - - Physical Draggers Select Scope By Default - - Pivot Snap To Geometry Color - - PluginDebuggingEnabled - - PluginsDir - - Primary Text Color - - Property Color - - Render Throttle Percentage - - Respect Studio shortcuts when game has focus - - Ruler Color - - Rulers - - RuntimeUndoBehavior - - Script Editor Color Preset - - Script Editor Scrollbar Background Color - - Script Editor Scrollbar Handle Color - - ScriptEditorMenuBorderColor - - ScriptEditorShouldShowPluginMethods - - ScriptTimeoutLength - - Scroll Past Last Line - - Search Content For Core Scripts - - Secondary Text Color - - Select Color - - Select/Hover Color - - Selected Menu Item Background Color - - Selected Text Color - - Selection Background Color - - Selection Box Thickness - - Selection Color - - Selection Highlight Thickness - - Selection Line Thickness - - Server Audio Behavior - - Set Pivot of Imported Parts - - Show Core GUI in Explorer while Playing - - Show Diagnostics Bar - - Show FileSyncService - - Show Hidden Objects in Explorer - - Show Hover Over - - Show Light Guides - - Show Navigation Labels - - Show Navigation Mesh - - Show Pathfinding Links - - Show Plugin GUI Service in Explorer - - Show QT warnings in output - - Show Whitespace - - Show plus button on hover in Explorer - - ShowCorePackagesInExplorer - - Skip Closing Brackets and Quotes - - String Color - - Tab Width - - Text Color - - Text Wrapping - - Theme - - UI Theme - - Use Bounding Box Move Handles - - Warning Color - - Whitespace Color - StudioAssetService: - superclass: Instance - events: - - OnConvertToPackageResult - - OnPublishPackageResult - - OnSaveToRoblox - properties: [] - StudioData: - superclass: Instance - events: [] - properties: - - EnableScriptCollabByDefaultOnLoad - StudioDeviceEmulatorService: - superclass: Instance - events: - - CurrentDeviceIdChanged - - OrientationChanged - - TouchInBoundsChanged - - TouchPositionsChanged - properties: - - HasMultiTouchStarted - - IsMultiTouchEmulationOn - - IsMultiTouchEnabled - - PivotPosition - StudioPublishService: - superclass: Instance - events: - - GameNameUpdated - - GamePublishCancelled - - GamePublishFinished - - OnSaveOrPublishPlaceToRoblox - properties: [] - StudioScriptDebugEventListener: - superclass: Instance - events: [] - properties: [] - StudioSdkService: - superclass: Instance - events: [] - properties: [] - StudioService: - superclass: Instance - events: - - OnImportFromRoblox - - OnOpenGameSettings - - OnOpenManagePackagePlugin - - OnPluginInstalledFromToolbox - - OnPluginInstalledFromWeb - - OnPublishAsPlugin - - OnSaveToRoblox - - PromptTransformPluginCheckEnable - - SaveLocallyAsComplete - properties: - - ActiveScript - - AlignDraggedObjects - - DraggerSolveConstraints - - DrawConstraintsOnTop - - GridSize - - HoverInstance - - InstalledPluginData - - PivotSnapToGeometry - - RotateIncrement - - ShowActiveInstanceHighlight - - ShowConstraintDetails - - StudioLocaleId - - UseLocalSpace - StudioTheme: - superclass: Instance - events: [] - properties: [] - SunRaysEffect: - superclass: PostEffect - events: [] - properties: - - Intensity - - Spread - SurfaceAppearance: - superclass: Instance - events: [] - properties: - - AlphaMode - - ColorMap - - MetalnessMap - - NormalMap - - RoughnessMap - - TexturePack - SurfaceGui: - superclass: SurfaceGuiBase - events: [] - properties: - - AlwaysOnTop - - Brightness - - CanvasSize - - ClipsDescendants - - HorizontalCurvature - - LightInfluence - - PixelsPerStud - - Shape - - SizingMode - - ToolPunchThroughDistance - - ZOffset - SurfaceGuiBase: - superclass: LayerCollector - events: [] - properties: - - Active - - Adornee - - Face - SurfaceLight: - superclass: Light - events: [] - properties: - - Angle - - Face - - Range - SurfaceSelection: - superclass: PartAdornment - events: [] - properties: - - TargetSurface - SwimController: - superclass: ControllerBase - events: [] - properties: - - AccelerationTime - - PitchMaxTorque - - PitchSpeedFactor - - RollMaxTorque - - RollSpeedFactor - SyncScriptBuilder: - superclass: ScriptBuilder - events: [] - properties: - - CoverageInfo - - DebugInfo - - PackAsSource - - RawBytecode - TaskScheduler: - superclass: Instance - events: [] - properties: - - SchedulerDutyCycle - - SchedulerRate - - ThreadPoolConfig - - ThreadPoolSize - Team: - superclass: Instance - events: - - PlayerAdded - - PlayerRemoved - properties: - - AutoAssignable - - AutoColorCharacters - - ChildOrder - - Score - - TeamColor - TeamCreateData: - superclass: Instance - events: [] - properties: [] - TeamCreatePublishService: - superclass: Instance - events: [] - properties: [] - TeamCreateService: - superclass: Instance - events: - - ToggleManageCollaborators - properties: [] - Teams: - superclass: Instance - events: [] - properties: [] - TeleportAsyncResult: - superclass: Instance - events: [] - properties: - - PrivateServerId - - ReservedServerAccessCode - TeleportOptions: - superclass: Instance - events: [] - properties: - - ReservedServerAccessCode - - ServerInstanceId - - ShouldReserveServer - TeleportService: - superclass: Instance - events: - - LocalPlayerArrivedFromTeleport - - MenuTeleportAttempt - - TeleportInitFailed - properties: - - CustomizedTeleportUI - TemporaryCageMeshProvider: - superclass: Instance - events: [] - properties: [] - TemporaryScriptService: - superclass: Instance - events: [] - properties: [] - Terrain: - superclass: BasePart - events: [] - properties: - - Decoration - - IsSmooth - - LastUsedModificationMethod - - MaterialColors - - MaxExtents - - ShorelinesUpgraded - - SmoothVoxelsUpgraded - - WaterColor - - WaterReflectance - - WaterTransparency - - WaterWaveSize - - WaterWaveSpeed - TerrainDetail: - superclass: Instance - events: [] - properties: - - ColorMap - - Face - - MaterialPattern - - MetalnessMap - - NormalMap - - RoughnessMap - - StudsPerTile - TerrainRegion: - superclass: Instance - events: [] - properties: - - IsSmooth - - SizeInCells - TestService: - superclass: Instance - events: - - ServerCollectConditionalResult - - ServerCollectResult - properties: - - AutoRuns - - Description - - ErrorCount - - ExecuteWithStudioRun - - Is30FpsThrottleEnabled - - IsPhysicsEnvironmentalThrottled - - IsSleepAllowed - - NumberOfPlayers - - SimulateSecondsLag - - TestCount - - Timeout - - WarnCount - TextBox: - superclass: GuiObject - events: - - FocusLost - - Focused - - ReturnPressedFromOnScreenKeyboard - properties: - - ClearTextOnFocus - - ContentText - - CursorPosition - - Font - - FontFace - - FontSize - - LineHeight - - ManualFocusRelease - - MaxVisibleGraphemes - - MultiLine - - OverlayNativeInput - - PlaceholderColor3 - - PlaceholderText - - ReturnKeyType - - RichText - - SelectionStart - - ShowNativeInput - - Text - - TextBounds - - TextColor - - TextColor3 - - TextEditable - - TextFits - - TextInputType - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextBoxService: - superclass: Instance - events: [] - properties: [] - TextButton: - superclass: GuiButton - events: [] - properties: - - ContentText - - Font - - FontFace - - FontSize - - LineHeight - - LocalizedText - - MaxVisibleGraphemes - - RichText - - Text - - TextBounds - - TextColor - - TextColor3 - - TextFits - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextChannel: - superclass: Instance - events: - - MessageReceived - properties: [] - TextChatCommand: - superclass: Instance - events: - - Triggered - properties: - - Enabled - - PrimaryAlias - - SecondaryAlias - TextChatConfigurations: - superclass: Instance - events: [] - properties: [] - TextChatMessage: - superclass: Instance - events: [] - properties: - - MessageId - - Metadata - - PrefixText - - Status - - Text - - TextChannel - - TextSource - - Timestamp - TextChatMessageProperties: - superclass: Instance - events: [] - properties: - - PrefixText - - Text - TextChatService: - superclass: Instance - events: - - MessageReceived - - SendingMessage - properties: - - ChatVersion - - CreateDefaultCommands - - CreateDefaultTextChannels - TextFilterResult: - superclass: Instance - events: [] - properties: [] - TextLabel: - superclass: GuiLabel - events: [] - properties: - - ContentText - - Font - - FontFace - - FontSize - - LineHeight - - LocalizedText - - MaxVisibleGraphemes - - RichText - - Text - - TextBounds - - TextColor - - TextColor3 - - TextFits - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextService: - superclass: Instance - events: [] - properties: [] - TextSource: - superclass: Instance - events: [] - properties: - - CanSend - - UserId - Texture: - superclass: Decal - events: [] - properties: - - OffsetStudsU - - OffsetStudsV - - StudsPerTileU - - StudsPerTileV - TextureGuiExperimental: - superclass: LayerCollector - events: [] - properties: - - Size - - TemporaryId - ThirdPartyUserService: - superclass: Instance - events: - - ActiveGamepadAdded - - ActiveGamepadRemoved - - ActiveUserSignedOut - properties: [] - ThreadState: - superclass: Instance - events: [] - properties: - - FrameCount - - Populated - - ThreadId - - ThreadName - TimerService: - superclass: Instance - events: [] - properties: [] - ToastNotificationService: - superclass: Instance - events: [] - properties: [] - Tool: - superclass: BackpackItem - events: - - Activated - - Deactivated - - Equipped - - Unequipped - properties: - - CanBeDropped - - Enabled - - Grip - - GripForward - - GripPos - - GripRight - - GripUp - - ManualActivationOnly - - RequiresHandle - - ToolTip - Torque: - superclass: Constraint - events: [] - properties: - - RelativeTo - - Torque - TorsionSpringConstraint: - superclass: Constraint - events: [] - properties: - - Coils - - CurrentAngle - - Damping - - LimitEnabled - - LimitsEnabled - - MaxAngle - - MaxTorque - - Radius - - Restitution - - Stiffness - TotalCountTimeIntervalItem: - superclass: StatsItem - events: [] - properties: [] - TouchInputService: - superclass: Instance - events: [] - properties: [] - TouchTransmitter: - superclass: Instance - events: [] - properties: [] - TracerService: - superclass: Instance - events: [] - properties: [] - TrackerLodController: - superclass: Instance - events: - - UpdateState - properties: - - AudioMode - - VideoExtrapolationMode - - VideoLodMode - - VideoMode - TrackerStreamAnimation: - superclass: Instance - events: [] - properties: [] - Trail: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - Brightness - - Color - - Enabled - - FaceCamera - - Lifetime - - LightEmission - - LightInfluence - - MaxLength - - MinLength - - Texture - - TextureLength - - TextureMode - - Transparency - - WidthScale - Translator: - superclass: Instance - events: [] - properties: - - LocaleId - TremoloSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Duty - - Frequency - TriangleMeshPart: - superclass: BasePart - events: [] - properties: - - CollisionFidelity - - MeshSize - TrussPart: - superclass: BasePart - events: [] - properties: - - Style - Tween: - superclass: TweenBase - events: [] - properties: - - Instance - - TweenInfo - TweenBase: - superclass: Instance - events: - - Completed - properties: - - PlaybackState - TweenService: - superclass: Instance - events: [] - properties: [] - UGCValidationService: - superclass: Instance - events: [] - properties: [] - UIAspectRatioConstraint: - superclass: UIConstraint - events: [] - properties: - - AspectRatio - - AspectType - - DominantAxis - UIBase: - superclass: Instance - events: [] - properties: [] - UIComponent: - superclass: UIBase - events: [] - properties: [] - UIConstraint: - superclass: UIComponent - events: [] - properties: [] - UICorner: - superclass: UIComponent - events: [] - properties: - - CornerRadius - UIGradient: - superclass: UIComponent - events: [] - properties: - - Color - - Enabled - - Offset - - Rotation - - Transparency - UIGridLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - AbsoluteCellCount - - AbsoluteCellSize - - CellPadding - - CellSize - - FillDirectionMaxCells - - StartCorner - UIGridStyleLayout: - superclass: UILayout - events: [] - properties: - - AbsoluteContentSize - - FillDirection - - HorizontalAlignment - - SortOrder - - VerticalAlignment - UILayout: - superclass: UIComponent - events: [] - properties: [] - UIListLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - Padding - UIPadding: - superclass: UIComponent - events: [] - properties: - - PaddingBottom - - PaddingLeft - - PaddingRight - - PaddingTop - UIPageLayout: - superclass: UIGridStyleLayout - events: - - PageEnter - - PageLeave - - Stopped - properties: - - Animated - - Circular - - CurrentPage - - EasingDirection - - EasingStyle - - GamepadInputEnabled - - Padding - - ScrollWheelInputEnabled - - TouchInputEnabled - - TweenTime - UIScale: - superclass: UIComponent - events: [] - properties: - - Scale - UISizeConstraint: - superclass: UIConstraint - events: [] - properties: - - MaxSize - - MinSize - UIStroke: - superclass: UIComponent - events: [] - properties: - - ApplyStrokeMode - - Color - - Enabled - - LineJoinMode - - Thickness - - Transparency - UITableLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - FillEmptySpaceColumns - - FillEmptySpaceRows - - MajorAxis - - Padding - UITextSizeConstraint: - superclass: UIConstraint - events: [] - properties: - - MaxTextSize - - MinTextSize - UnionOperation: - superclass: PartOperation - events: [] - properties: [] - UniversalConstraint: - superclass: Constraint - events: [] - properties: - - LimitsEnabled - - MaxAngle - - Radius - - Restitution - UnvalidatedAssetService: - superclass: Instance - events: [] - properties: [] - UserGameSettings: - superclass: Instance - events: - - FullscreenChanged - - PerformanceStatsVisibleChanged - - StudioModeChanged - properties: - - AllTutorialsDisabled - - CameraMode - - CameraYInverted - - ChatVisible - - ComputerCameraMovementMode - - ComputerMovementMode - - ControlMode - - DefaultCameraID - - Fullscreen - - GamepadCameraSensitivity - - GraphicsQualityLevel - - HasEverUsedVR - - IsUsingCameraYInverted - - IsUsingGamepadCameraSensitivity - - MasterVolume - - MicroProfilerWebServerEnabled - - MicroProfilerWebServerIP - - MicroProfilerWebServerPort - - MouseSensitivity - - MouseSensitivityFirstPerson - - MouseSensitivityThirdPerson - - OnScreenProfilerEnabled - - OnboardingsCompleted - - PerformanceStatsVisible - - PlayerHeight - - RCCProfilerRecordFrameRate - - RCCProfilerRecordTimeFrame - - RotationType - - SavedQualityLevel - - StartMaximized - - StartScreenPosition - - StartScreenSize - - TouchCameraMovementMode - - TouchMovementMode - - UsedCoreGuiIsVisibleToggle - - UsedCustomGuiIsVisibleToggle - - UsedHideHudShortcut - - VREnabled - - VRPlayMode - - VRRotationIntensity - - VRSafetyBubbleMode - - VRSmoothRotationEnabled - - VignetteEnabled - UserInputService: - superclass: Instance - events: - - DeviceAccelerationChanged - - DeviceGravityChanged - - DeviceRotationChanged - - GamepadConnected - - GamepadDisconnected - - InputBegan - - InputChanged - - InputEnded - - JumpRequest - - LastInputTypeChanged - - PointerAction - - StatusBarTapped - - TextBoxFocusReleased - - TextBoxFocused - - TouchEnded - - TouchLongPress - - TouchMoved - - TouchPan - - TouchPinch - - TouchRotate - - TouchStarted - - TouchSwipe - - TouchTap - - TouchTapInWorld - - UserCFrameChanged - - WindowFocusReleased - - WindowFocused - properties: - - AccelerometerEnabled - - BottomBarSize - - GamepadEnabled - - GazeSelectionEnabled - - GyroscopeEnabled - - KeyboardEnabled - - LegacyInputEventsEnabled - - ModalEnabled - - MouseBehavior - - MouseDeltaSensitivity - - MouseEnabled - - MouseIcon - - MouseIconEnabled - - NavBarSize - - OnScreenKeyboardAnimationDuration - - OnScreenKeyboardPosition - - OnScreenKeyboardSize - - OnScreenKeyboardVisible - - OverrideMouseIconBehavior - - RightBarSize - - StatusBarSize - - TouchEnabled - - UserHeadCFrame - - VREnabled - UserService: - superclass: Instance - events: [] - properties: [] - UserSettings: - superclass: GenericSettings - events: [] - properties: [] - UserStorageService: - superclass: LocalStorageService - events: [] - properties: [] - VRService: - superclass: Instance - events: - - NavigationRequested - - TouchpadModeChanged - - UserCFrameChanged - - UserCFrameEnabled - properties: - - AutomaticScaling - - DidPointerHit - - FadeOutViewOnCollision - - GuiInputUserCFrame - - LaserDistance - - PointerHitCFrame - - VRDeviceAvailable - - VRDeviceName - - VREnabled - - VRSessionState - ValueBase: - superclass: Instance - events: [] - properties: [] - Vector3Curve: - superclass: Instance - events: [] - properties: [] - Vector3Value: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - VectorForce: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - Force - - RelativeTo - VehicleController: - superclass: Controller - events: [] - properties: [] - VehicleSeat: - superclass: BasePart - events: [] - properties: - - AreHingesDetected - - Disabled - - HeadsUpDisplay - - MaxSpeed - - Occupant - - Steer - - SteerFloat - - Throttle - - ThrottleFloat - - Torque - - TurnSpeed - VelocityMotor: - superclass: JointInstance - events: [] - properties: - - CurrentAngle - - DesiredAngle - - Hole - - MaxVelocity - VersionControlService: - superclass: Instance - events: [] - properties: - - ScriptCollabEnabled - VideoCaptureService: - superclass: Instance - events: - - DevicesChanged - - Error - - Started - - Stopped - properties: - - Active - - CameraID - VideoFrame: - superclass: GuiObject - events: - - DidLoop - - Ended - - Loaded - - Paused - - Played - properties: - - IsLoaded - - Looped - - Playing - - Resolution - - TimeLength - - TimePosition - - Video - - Volume - ViewportFrame: - superclass: GuiObject - events: [] - properties: - - Ambient - - CurrentCamera - - ImageColor3 - - ImageTransparency - - IsMirrored - - LightColor - - LightDirection - VirtualInputManager: - superclass: Instance - events: - - PlaybackCompleted - - RecordingCompleted - properties: - - AdditionalLuaState - VirtualUser: - superclass: Instance - events: [] - properties: [] - VisibilityCheckDispatcher: - superclass: Instance - events: [] - properties: [] - VisibilityService: - superclass: Instance - events: [] - properties: [] - Visit: - superclass: Instance - events: [] - properties: [] - VoiceChatInternal: - superclass: Instance - events: - - LocalPlayerModerated - - ParticipantsStateChanged - - PlayerMicActivitySignalChange - - StateChanged - properties: - - VoiceChatState - VoiceChatService: - superclass: Instance - events: [] - properties: - - EnableDefaultVoice - - VoiceChatEnabledForPlaceOnRcc - - VoiceChatEnabledForUniverseOnRcc - VoiceSource: - superclass: Instance - events: [] - properties: - - UserId - WedgePart: - superclass: FormFactorPart - events: [] - properties: [] - Weld: - superclass: JointInstance - events: [] - properties: [] - WeldConstraint: - superclass: Instance - events: [] - properties: - - Active - - Enabled - - Part0 - - Part1 - WireframeHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Scale - Workspace: - superclass: WorldRoot - events: - - PersistentLoaded - properties: - - AllowThirdPartySales - - ClientAnimatorThrottling - - CurrentCamera - - DistributedGameTime - - FallenPartsDestroyHeight - - FilteringEnabled - - GlobalWind - - Gravity - - HumanoidOnlySetCollisionsOnStateChange - - InterpolationThrottling - - MeshPartHeadsAndAccessories - - PhysicsSteppingMethod - - RejectCharacterDeletions - - ReplicateInstanceDestroySetting - - Retargeting - - SignalBehavior - - StreamOutBehavior - - StreamingEnabled - - StreamingIntegrityMode - - StreamingMinRadius - - StreamingTargetRadius - - Terrain - - TouchesUseCollisionGroups - WorldModel: - superclass: WorldRoot - events: [] - properties: [] - WorldRoot: - superclass: Model - events: [] - properties: [] - WrapLayer: - superclass: BaseWrap - events: [] - properties: - - AutoSkin - - BindOffset - - Color - - DebugMode - - Enabled - - Order - - Puffiness - - ReferenceMeshId - - ReferenceOrigin - - ReferenceOriginWorld - - ShrinkFactor - WrapTarget: - superclass: BaseWrap - events: [] - properties: - - Color - - DebugMode - - Stiffness diff --git a/Boilerplate/selene.toml b/Boilerplate/selene.toml deleted file mode 100644 index c1911be..0000000 --- a/Boilerplate/selene.toml +++ /dev/null @@ -1 +0,0 @@ -std = "roblox+testez" \ No newline at end of file diff --git a/Boilerplate/testez.yml b/Boilerplate/testez.yml deleted file mode 100644 index 5c1adda..0000000 --- a/Boilerplate/testez.yml +++ /dev/null @@ -1,53 +0,0 @@ ---- -globals: - FIXME: - args: - - required: false - type: string - FOCUS: - args: [] - SKIP: - args: [] - afterAll: - args: - - type: function - afterEach: - args: - - type: function - beforeAll: - args: - - type: function - beforeEach: - args: - - type: function - describe: - args: - - type: string - - type: function - describeFOCUS: - args: - - type: string - - type: function - describeSKIP: - args: - - type: string - - type: function - expect: - args: - - type: any - it: - args: - - type: string - - type: function - itFIXME: - args: - - type: string - - type: function - itFOCUS: - args: - - type: string - - type: function - itSKIP: - args: - - type: string - - type: function \ No newline at end of file diff --git a/Boilerplate/wally.toml b/Boilerplate/wally.toml deleted file mode 100644 index 39d093f..0000000 --- a/Boilerplate/wally.toml +++ /dev/null @@ -1,18 +0,0 @@ -[package] -name = "4x8matrix/project" -version = "0.1.0" -realm = "shared" -registry = "https://github.com/UpliftGames/wally-index" -licence = "MIT" -authors = ["AsynchronousMatrix"] - -description = "" - -exclude = ["**"] -include = ["Source", "Source/*", "default.project.json", "wally.toml"] - -[dev-dependencies] -TestEz = "roblox/testez@0.4.1" -EmoticonReporter = "4x8matrix/emoticon-reporter@1.0.0" - -[dependencies] \ No newline at end of file diff --git a/Modules/CameraProfiler/.vscode/settings.json b/Modules/CameraProfiler/.vscode/settings.json deleted file mode 100644 index ce29214..0000000 --- a/Modules/CameraProfiler/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "luau-lsp.sourcemap.rojoProjectFile": "development.project.json" -} \ No newline at end of file diff --git a/Modules/CameraProfiler/Source/Camera/init.luau b/Modules/CameraProfiler/Source/Camera/init.luau deleted file mode 100644 index 3caa823..0000000 --- a/Modules/CameraProfiler/Source/Camera/init.luau +++ /dev/null @@ -1,239 +0,0 @@ ---[=[ - @class Camera Object - - The base camera object that the end developer will be interacting with, think of this object as an extendable class that you'll overwrite lifecycle methods on. -]=] - ---[=[ - @prop Name string - @within Camera Object -]=] - ---[=[ - @prop Instance Instance - @within Camera Object -]=] - -local Camera = {} - -Camera.Type = "Camera" - -Camera.Internal = {} -Camera.Instances = {} -Camera.Interface = {} -Camera.Prototype = {} - ---[=[ - @method OnActivated - @within Camera Object - - Lifecycle method that'll invoke once the camera has been activated - - ```lua - local cameraObject = CameraProfile.Camera.new("DefaultCamera") - - function cameraObject:OnActivated() - renderStepPrep() - end - ``` -]=] -function Camera.Prototype:OnActivated() end - ---[=[ - @method OnDeactivated - @within Camera Object - - Lifecycle method that'll invoke once the camera has been deactivated - - ```lua - local cameraObject = CameraProfile.Camera.new("DefaultCamera") - - function cameraObject:OnDeactivated() - cleanUpCamera() - end - ``` -]=] -function Camera.Prototype:OnDeactivated() end - ---[=[ - @method OnRenderStepped - @within Camera Object - - Render Stepped lifecycle method that'll be called each render stepped when the camera is active - - ```lua - local cameraObject = CameraProfile.Camera.new("DefaultCamera") - - function cameraObject:OnRenderStepped() - self.Instance.CFrame = CFrame.new(1, 0, 1) - end - ``` -]=] -function Camera.Prototype:OnRenderStepped() end - ---[=[ - @method InvokeLifecycleMethod - @within Camera Object - - @return ... - - Attempt to execute a camera object's lifecycle method - - ```lua - local cameraObject = CameraProfile.Camera.new("DefaultCamera") - - function cameraObject:methodName(a, b, c) - print(a, b, c) -- 1, 2, 3 - end - - cameraObject:InvokeLifecycleMethod("methodName", 1, 2, 3) - ``` -]=] -function Camera.Prototype:InvokeLifecycleMethod(lifecycleMethod: string, ...) - if not self[lifecycleMethod] then - return - end - - return self[lifecycleMethod](self, ...) -end - ---[=[ - @method ToString - @within Camera Object - - @return string - - Get a string'd version of the current Camera instance - - ```lua - CameraProfile.Camera.new("DefaultCamera"):ToString() -- > "Camera<"DefaultCamera">" - ``` -]=] -function Camera.Prototype:ToString(): string - return `{Camera.Type}<"{self.Name}">` -end - ---[=[ - @function wrap - @within Camera Object - - @param name string - @param cameraInstance Instance - - @return Camera Object - - Wrap around a Camera instance, the goal being to allow developers to wrap around already instantiated camera objects. - - ```lua - -- wrap around the current workspace camera! - - CameraProfile.Camera.wrap("DefaultCamera", workspace.CurrentCamera) - ``` -]=] -function Camera.Interface.wrap(name: string, cameraInstance: Camera): CameraObject - assert(type(name) == "string", `Expected parameter #1 'name' to be a string, got {type(name)}`) - assert( - type(cameraInstance) == "userdata", - `Expected parameter #2 'cameraInstance' to be a userdata, got {type(cameraInstance)}` - ) - assert( - cameraInstance:IsA("Camera"), - `Expected parameter #2 'cameraInstance' to be a camera instance, got {cameraInstance.ClassName}` - ) - - local self = setmetatable({ - Name = name, - Instance = cameraInstance, - }, { - __index = Camera.Prototype, - __type = Camera.Type, - - __tostring = function(object) - return object:ToString() - end, - }) - - self.Instance.Name = `Camera<"{self.Name}">` - - if workspace.CurrentCamera == self.Instance then - self:InvokeLifecycleMethod("OnActivated", self.Instance) - end - - assert(not Camera.Instances[name], `Expected {name} to be unique, are you sure this isn't a duplicate Camera?`) - - Camera.Instances[name] = self - return Camera.Instances[name] -end - ---[=[ - @function new - @within Camera Object - - @param name string - - @return Camera Object - - Generate a new camera instance - - ```lua - CameraProfile.Camera.new("CustomCamera") - ``` -]=] -function Camera.Interface.new(name: string): CameraObject - return Camera.Interface.wrap(name, Instance.new("Camera")) -end - ---[=[ - @function is - @within Camera Object - - @param object any - - @return boolean - - Validate if an object is a camera object - - ```lua - CameraProfile.Camera.is( - CameraProfile.Camera.new("CustomCamera") - ) -- > true - - CameraProfile.Camera.is( - 123 - ) -- > false - ``` -]=] -function Camera.Interface.is(object: any): boolean - if not object or type(object) ~= "table" then - return false - end - - local metatable = getmetatable(object) - - return metatable and metatable.__type == Camera.Type -end - ---[=[ - @function get - @within Camera Object - - @param name string - - @return Camera Object? - - Get a camera object from it's camera name - - ```lua - CameraProfile.Camera.get("DefaultCamera") - ``` -]=] -function Camera.Interface.get(name: string): CameraObject? - return Camera.Instances[name] -end - -export type CameraObject = typeof(Camera.Prototype) & { - Name: string, - Instance: Camera, -} - -return Camera.Interface diff --git a/Modules/CameraProfiler/Source/Camera/init.spec.luau b/Modules/CameraProfiler/Source/Camera/init.spec.luau deleted file mode 100644 index ee93f26..0000000 --- a/Modules/CameraProfiler/Source/Camera/init.spec.luau +++ /dev/null @@ -1,57 +0,0 @@ -return function() - local Camera = require(script.Parent) - - it("Should be able to generate a Camera instance", function() - expect(function() - Camera.new("Abc") - end).never.to.throw() - - expect(function() - Camera.new() - end).to.throw() - end) - - it("Should be able to detect a Camera instance", function() - local cameraObject = Camera.new("Abcd") - - expect(Camera.is(cameraObject)).to.equal(true) - end) - - describe("Camera Lifecycle methods", function() - it("Should be able to invoke & run camera lifecycles", function() - local cameraObject = Camera.new("Abcde") - local cameraFlag = false - - function cameraObject:abc() - cameraFlag = true - end - - cameraObject:InvokeLifecycleMethod("abc") - - expect(cameraFlag).to.equal(true) - end) - - it("Should be able to invoke & run camera lifecycles with varadic parameters", function() - local cameraObject = Camera.new("Abcdef") - local cameraFlag = false - - function cameraObject:abc(a) - cameraFlag = a - end - - cameraObject:InvokeLifecycleMethod("abc", true) - - expect(cameraFlag).to.equal(true) - end) - - it("Should be able to return the result of a lifecycle", function() - local cameraObject = Camera.new("Abcdefg") - - function cameraObject:abc(a) - return a - end - - expect(cameraObject:InvokeLifecycleMethod("abc", true)).to.equal(true) - end) - end) -end \ No newline at end of file diff --git a/Modules/CameraProfiler/Source/init.luau b/Modules/CameraProfiler/Source/init.luau deleted file mode 100644 index 7009489..0000000 --- a/Modules/CameraProfiler/Source/init.luau +++ /dev/null @@ -1,104 +0,0 @@ -local RunService = game:GetService("RunService") - -local Signal = require(script.Parent.Signal) - ---[=[ - @class Camera Profiler - - The Camera Profiler is a singleton responsible for handling what camera is active, what cameras are not active and the primary entrypoint for activating different camera objects. -]=] -local CameraProfiler = {} - ---[=[ - @prop Camera [CameraObject](/Packages/CameraProfiler/Camera) - @within Camera Profiler -]=] - ---[=[ - @prop CameraActivated RBXScriptSignal - @within Camera Profiler -]=] - ---[=[ - @prop CameraDeactivated RBXScriptSignal - @within Camera Profiler -]=] - -CameraProfiler.Interface = {} -CameraProfiler.Active = nil - -CameraProfiler.Interface.Camera = require(script.Camera) - -CameraProfiler.Interface.CameraActivated = Signal.new() -CameraProfiler.Interface.CameraDeactivated = Signal.new() - ---[=[ - @method GetActiveCamera - @within Camera Profiler - - @return string - - Get the active camera instance, this'll return a string that represents a camera object. - - ```lua - local activeCamera = CameraProfile:GetActiveCamera() - ``` -]=] -function CameraProfiler.Interface:GetActiveCamera(): string - return CameraProfiler.Active and CameraProfiler.Active.Name -end - ---[=[ - @method SetActiveCamera - @within Camera Profiler - - @param cameraName string - - @return string - - Set the active camera instance, this'll invoke a few lifecycle methods as well as swap out the current camera for the requested camera if found. - - ```lua - CameraProfile:SetActiveCamera("Example") - ``` -]=] -function CameraProfiler.Interface:SetActiveCamera(cameraName: string): () - local cameraObject = CameraProfiler.Interface.Camera.get(cameraName) - local cameraReference = workspace.CurrentCamera - - assert(cameraObject, `Failed to call ':GetActiveCamera' for the {cameraName} camera!`) - - if CameraProfiler.Active and CameraProfiler.Active.Name == cameraName then - return - end - - if CameraProfiler.Active then - CameraProfiler.Interface.CameraDeactivated:Fire(CameraProfiler.Active.Name) - CameraProfiler.Active:InvokeLifecycleMethod("OnDeactivated", cameraReference) - end - - CameraProfiler.Active = cameraObject - cameraObject.Instance.Parent = workspace - - -- selene: allow(incorrect_standard_library_use) - workspace.CurrentCamera = cameraObject.Instance - - cameraReference.Parent = nil - - CameraProfiler.Interface.CameraActivated:Fire(cameraObject.Name) - cameraObject:InvokeLifecycleMethod("OnActivated", cameraObject.Instance) -end - -function CameraProfiler:Init() - RunService.RenderStepped:Connect(function(deltaTime) - if not CameraProfiler.Active then - return - end - - CameraProfiler.Active:InvokeLifecycleMethod("OnRenderStepped", deltaTime) - end) - - return CameraProfiler.Interface -end - -return CameraProfiler:Init() :: typeof(CameraProfiler.Interface) diff --git a/Modules/CameraProfiler/Tests/Runtime.server.luau b/Modules/CameraProfiler/Tests/Runtime.server.luau deleted file mode 100644 index bf16fa2..0000000 --- a/Modules/CameraProfiler/Tests/Runtime.server.luau +++ /dev/null @@ -1,18 +0,0 @@ -local ReplicatedStorage = game:GetService("ReplicatedStorage") - -local EXECUTE_PROJECT_TESTEZ_TESTS = true - -if EXECUTE_PROJECT_TESTEZ_TESTS then - local EmoticonReporter = require(ReplicatedStorage.DevPackages.EmoticonReporter) - local TestEz = require(ReplicatedStorage.DevPackages.TestEz) - - local Reporter = EmoticonReporter.new() - - print("[TestRunner]: TestEZ Running, please be patient if you're running tests on a LIVE environment.") - - TestEz.TestBootstrap:run({ - ReplicatedStorage.Packages.State - }, Reporter) - - Reporter:Print() -end \ No newline at end of file diff --git a/Modules/CameraProfiler/aftman.toml b/Modules/CameraProfiler/aftman.toml deleted file mode 100644 index 349f6b9..0000000 --- a/Modules/CameraProfiler/aftman.toml +++ /dev/null @@ -1,9 +0,0 @@ -# This file lists tools managed by Aftman, a cross-platform toolchain manager. -# For more information, see https://github.com/LPGhatguy/aftman - -# To add a new tool, add an entry to this table. - -[tools] -rojo = "rojo-rbx/rojo@7.3.0" -selene = "Kampfkarren/selene@0.25.0" -wally = "UpliftGames/wally@0.3.2" \ No newline at end of file diff --git a/Modules/CameraProfiler/default.project.json b/Modules/CameraProfiler/default.project.json deleted file mode 100644 index 58dbc4a..0000000 --- a/Modules/CameraProfiler/default.project.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "name": "CameraProfiler", - "tree": { - "$path": "Source" - } -} \ No newline at end of file diff --git a/Modules/CameraProfiler/development.project.json b/Modules/CameraProfiler/development.project.json deleted file mode 100644 index 34fb2c3..0000000 --- a/Modules/CameraProfiler/development.project.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "name": "console", - "tree": { - "$className": "DataModel", - - "Players": { - "$className": "Players", - "$properties": { - "CharacterAutoLoads": false - } - }, - - "ReplicatedStorage": { - "$className": "ReplicatedStorage", - "$ignoreUnknownInstances": true, - - "Packages": { - "$className": "Folder", - "$path": "Packages", - - "State": { - "$path": "Source" - } - }, - - "DevPackages": { - "$className": "Folder", - "$path": "DevPackages" - } - }, - - "ServerScriptService": { - "$className": "ServerScriptService", - "$ignoreUnknownInstances": true, - "$path": "Tests" - } - } -} \ No newline at end of file diff --git a/Modules/CameraProfiler/roblox.yml b/Modules/CameraProfiler/roblox.yml deleted file mode 100644 index e4089d3..0000000 --- a/Modules/CameraProfiler/roblox.yml +++ /dev/null @@ -1,16959 +0,0 @@ -# This file was @generated by generate-roblox-std at 2023-04-11 16:38:39.388332415 +01:00 -base: luau -name: roblox -globals: - Axes.new: - args: - - type: '...' - must_use: true - BrickColor.Black: - args: [] - must_use: true - BrickColor.Blue: - args: [] - must_use: true - BrickColor.DarkGray: - args: [] - must_use: true - BrickColor.Gray: - args: [] - must_use: true - BrickColor.Green: - args: [] - must_use: true - BrickColor.Red: - args: [] - must_use: true - BrickColor.White: - args: [] - must_use: true - BrickColor.Yellow: - args: [] - must_use: true - BrickColor.new: - args: - - type: any - - required: false - type: number - - required: false - type: number - must_use: true - BrickColor.palette: - args: - - type: number - must_use: true - BrickColor.random: - args: [] - must_use: true - CFrame.Angles: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - CFrame.fromAxisAngle: - args: - - type: - display: Vector3 - - type: number - must_use: true - CFrame.fromEulerAngles: - args: - - type: number - - type: number - - type: number - - required: false - type: - display: RotationOrder - must_use: true - CFrame.fromEulerAnglesXYZ: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.fromEulerAnglesYXZ: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.fromMatrix: - args: - - type: - display: Vector3 - - type: - display: Vector3 - - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - CFrame.fromOrientation: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.identity: - property: read-only - CFrame.lookAt: - args: - - type: - display: Vector3 - - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - CFrame.new: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - CatalogSearchParams.new: - args: [] - must_use: true - Color3.fromHSV: - args: - - type: number - - type: number - - type: number - must_use: true - Color3.fromHex: - args: - - type: string - must_use: true - Color3.fromRGB: - args: - - type: number - - type: number - - type: number - must_use: true - Color3.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Color3.toHSV: - args: - - type: - display: Color3 - must_use: true - ColorSequence.new: - args: - - type: any - - required: false - type: - display: Color3 - must_use: true - ColorSequenceKeypoint.new: - args: - - type: number - - type: - display: Color3 - must_use: true - DateTime.fromIsoDate: - args: - - type: string - must_use: true - DateTime.fromLocalTime: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - DateTime.fromUniversalTime: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - DateTime.fromUnixTimestamp: - args: - - type: number - must_use: true - DateTime.fromUnixTimestampMillis: - args: - - type: number - must_use: true - DateTime.now: - args: [] - must_use: true - DebuggerManager: - args: [] - must_use: true - DockWidgetPluginGuiInfo.new: - args: - - required: false - type: - display: InitialDockState - - required: false - type: bool - - required: false - type: bool - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Enum.AccessoryType.Back: - struct: EnumItem - Enum.AccessoryType.DressSkirt: - struct: EnumItem - Enum.AccessoryType.Eyebrow: - struct: EnumItem - Enum.AccessoryType.Eyelash: - struct: EnumItem - Enum.AccessoryType.Face: - struct: EnumItem - Enum.AccessoryType.Front: - struct: EnumItem - Enum.AccessoryType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AccessoryType.Hair: - struct: EnumItem - Enum.AccessoryType.Hat: - struct: EnumItem - Enum.AccessoryType.Jacket: - struct: EnumItem - Enum.AccessoryType.LeftShoe: - struct: EnumItem - Enum.AccessoryType.Neck: - struct: EnumItem - Enum.AccessoryType.Pants: - struct: EnumItem - Enum.AccessoryType.RightShoe: - struct: EnumItem - Enum.AccessoryType.Shirt: - struct: EnumItem - Enum.AccessoryType.Shorts: - struct: EnumItem - Enum.AccessoryType.Shoulder: - struct: EnumItem - Enum.AccessoryType.Sweater: - struct: EnumItem - Enum.AccessoryType.TShirt: - struct: EnumItem - Enum.AccessoryType.TeeShirt: - struct: EnumItem - deprecated: - message: Enum.AccessoryType.TeeShirt was replaced with Enum.AccessoryType.TShirt - replace: - - Enum.AccessoryType.TShirt - Enum.AccessoryType.Unknown: - struct: EnumItem - Enum.AccessoryType.Waist: - struct: EnumItem - Enum.ActionType.Draw: - struct: EnumItem - Enum.ActionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActionType.Lose: - struct: EnumItem - Enum.ActionType.Nothing: - struct: EnumItem - Enum.ActionType.Pause: - struct: EnumItem - Enum.ActionType.Win: - struct: EnumItem - Enum.ActuatorRelativeTo.Attachment0: - struct: EnumItem - Enum.ActuatorRelativeTo.Attachment1: - struct: EnumItem - Enum.ActuatorRelativeTo.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActuatorRelativeTo.World: - struct: EnumItem - Enum.ActuatorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActuatorType.Motor: - struct: EnumItem - Enum.ActuatorType.None: - struct: EnumItem - Enum.ActuatorType.Servo: - struct: EnumItem - Enum.AdPortalStatus.Active: - struct: EnumItem - Enum.AdPortalStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdPortalStatus.Inactive: - struct: EnumItem - Enum.AdPortalStatus.Invalid: - struct: EnumItem - Enum.AdPortalType.Forward: - struct: EnumItem - Enum.AdPortalType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdPortalType.Return: - struct: EnumItem - Enum.AdShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdShape.HorizontalRectangle: - struct: EnumItem - Enum.AdTeleportMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdTeleportMethod.InGameMenuBackButton: - struct: EnumItem - Enum.AdTeleportMethod.PortalForward: - struct: EnumItem - Enum.AdTeleportMethod.PortalReturn: - struct: EnumItem - Enum.AdTeleportMethod.UIBackButton: - struct: EnumItem - Enum.AdTeleportMethod.Undefined: - struct: EnumItem - Enum.AdUnitStatus.Active: - struct: EnumItem - Enum.AdUnitStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdUnitStatus.Inactive: - struct: EnumItem - Enum.AdornCullingMode.Automatic: - struct: EnumItem - Enum.AdornCullingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdornCullingMode.Never: - struct: EnumItem - Enum.AlignType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AlignType.Parallel: - struct: EnumItem - Enum.AlignType.Perpendicular: - struct: EnumItem - Enum.AlphaMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AlphaMode.Overlay: - struct: EnumItem - Enum.AlphaMode.Transparency: - struct: EnumItem - Enum.AnalyticsEconomyAction.Acquire: - struct: EnumItem - Enum.AnalyticsEconomyAction.Default: - struct: EnumItem - Enum.AnalyticsEconomyAction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnalyticsEconomyAction.Spend: - struct: EnumItem - Enum.AnalyticsLogLevel.Debug: - struct: EnumItem - Enum.AnalyticsLogLevel.Error: - struct: EnumItem - Enum.AnalyticsLogLevel.Fatal: - struct: EnumItem - Enum.AnalyticsLogLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnalyticsLogLevel.Information: - struct: EnumItem - Enum.AnalyticsLogLevel.Trace: - struct: EnumItem - Enum.AnalyticsLogLevel.Warning: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Abandon: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Begin: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Complete: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Default: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Fail: - struct: EnumItem - Enum.AnalyticsProgressionStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnimationPriority.Action: - struct: EnumItem - Enum.AnimationPriority.Action2: - struct: EnumItem - Enum.AnimationPriority.Action3: - struct: EnumItem - Enum.AnimationPriority.Action4: - struct: EnumItem - Enum.AnimationPriority.Core: - struct: EnumItem - Enum.AnimationPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnimationPriority.Idle: - struct: EnumItem - Enum.AnimationPriority.Movement: - struct: EnumItem - Enum.AnimatorRetargetingMode.Default: - struct: EnumItem - Enum.AnimatorRetargetingMode.Disabled: - struct: EnumItem - Enum.AnimatorRetargetingMode.Enabled: - struct: EnumItem - Enum.AnimatorRetargetingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellActionType.AvatarEditorPageLoaded: - struct: EnumItem - Enum.AppShellActionType.GamePageLoaded: - struct: EnumItem - Enum.AppShellActionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellActionType.HomePageLoaded: - struct: EnumItem - Enum.AppShellActionType.None: - struct: EnumItem - Enum.AppShellActionType.OpenApp: - struct: EnumItem - Enum.AppShellActionType.ReadConversation: - struct: EnumItem - Enum.AppShellActionType.TapAvatarTab: - struct: EnumItem - Enum.AppShellActionType.TapChatTab: - struct: EnumItem - Enum.AppShellActionType.TapConversationEntry: - struct: EnumItem - Enum.AppShellActionType.TapGamePageTab: - struct: EnumItem - Enum.AppShellActionType.TapHomePageTab: - struct: EnumItem - Enum.AppShellFeature.AvatarEditor: - struct: EnumItem - Enum.AppShellFeature.Chat: - struct: EnumItem - Enum.AppShellFeature.GamePage: - struct: EnumItem - Enum.AppShellFeature.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellFeature.HomePage: - struct: EnumItem - Enum.AppShellFeature.Landing: - struct: EnumItem - Enum.AppShellFeature.More: - struct: EnumItem - Enum.AppShellFeature.None: - struct: EnumItem - Enum.AppUpdateStatus.Available: - struct: EnumItem - Enum.AppUpdateStatus.Failed: - struct: EnumItem - Enum.AppUpdateStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppUpdateStatus.NotAvailable: - struct: EnumItem - Enum.AppUpdateStatus.NotSupported: - struct: EnumItem - Enum.AppUpdateStatus.Unknown: - struct: EnumItem - Enum.ApplyStrokeMode.Border: - struct: EnumItem - Enum.ApplyStrokeMode.Contextual: - struct: EnumItem - Enum.ApplyStrokeMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AspectType.FitWithinMaxSize: - struct: EnumItem - Enum.AspectType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AspectType.ScaleWithParentSize: - struct: EnumItem - Enum.AssetFetchStatus.Failure: - struct: EnumItem - Enum.AssetFetchStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AssetFetchStatus.Loading: - struct: EnumItem - Enum.AssetFetchStatus.None: - struct: EnumItem - Enum.AssetFetchStatus.Success: - struct: EnumItem - Enum.AssetFetchStatus.TimedOut: - struct: EnumItem - Enum.AssetType.Animation: - struct: EnumItem - Enum.AssetType.Audio: - struct: EnumItem - Enum.AssetType.BackAccessory: - struct: EnumItem - Enum.AssetType.Badge: - struct: EnumItem - Enum.AssetType.ClimbAnimation: - struct: EnumItem - Enum.AssetType.DeathAnimation: - struct: EnumItem - Enum.AssetType.Decal: - struct: EnumItem - Enum.AssetType.DressSkirtAccessory: - struct: EnumItem - Enum.AssetType.DynamicHead: - struct: EnumItem - Enum.AssetType.EarAccessory: - struct: EnumItem - Enum.AssetType.EmoteAnimation: - struct: EnumItem - Enum.AssetType.EyeAccessory: - struct: EnumItem - Enum.AssetType.EyebrowAccessory: - struct: EnumItem - Enum.AssetType.EyelashAccessory: - struct: EnumItem - Enum.AssetType.Face: - struct: EnumItem - Enum.AssetType.FaceAccessory: - struct: EnumItem - Enum.AssetType.FallAnimation: - struct: EnumItem - Enum.AssetType.FontFamily: - struct: EnumItem - Enum.AssetType.FrontAccessory: - struct: EnumItem - Enum.AssetType.GamePass: - struct: EnumItem - Enum.AssetType.Gear: - struct: EnumItem - Enum.AssetType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AssetType.HairAccessory: - struct: EnumItem - Enum.AssetType.Hat: - struct: EnumItem - Enum.AssetType.Head: - struct: EnumItem - Enum.AssetType.IdleAnimation: - struct: EnumItem - Enum.AssetType.Image: - struct: EnumItem - Enum.AssetType.JacketAccessory: - struct: EnumItem - Enum.AssetType.JumpAnimation: - struct: EnumItem - Enum.AssetType.LeftArm: - struct: EnumItem - Enum.AssetType.LeftLeg: - struct: EnumItem - Enum.AssetType.LeftShoeAccessory: - struct: EnumItem - Enum.AssetType.Lua: - struct: EnumItem - Enum.AssetType.Mesh: - struct: EnumItem - Enum.AssetType.MeshPart: - struct: EnumItem - Enum.AssetType.Model: - struct: EnumItem - Enum.AssetType.MoodAnimation: - struct: EnumItem - Enum.AssetType.NeckAccessory: - struct: EnumItem - Enum.AssetType.Package: - struct: EnumItem - Enum.AssetType.Pants: - struct: EnumItem - Enum.AssetType.PantsAccessory: - struct: EnumItem - Enum.AssetType.Place: - struct: EnumItem - Enum.AssetType.Plugin: - struct: EnumItem - Enum.AssetType.PoseAnimation: - struct: EnumItem - Enum.AssetType.RightArm: - struct: EnumItem - Enum.AssetType.RightLeg: - struct: EnumItem - Enum.AssetType.RightShoeAccessory: - struct: EnumItem - Enum.AssetType.RunAnimation: - struct: EnumItem - Enum.AssetType.Shirt: - struct: EnumItem - Enum.AssetType.ShirtAccessory: - struct: EnumItem - Enum.AssetType.ShortsAccessory: - struct: EnumItem - Enum.AssetType.ShoulderAccessory: - struct: EnumItem - Enum.AssetType.SweaterAccessory: - struct: EnumItem - Enum.AssetType.SwimAnimation: - struct: EnumItem - Enum.AssetType.TShirt: - struct: EnumItem - Enum.AssetType.TShirtAccessory: - struct: EnumItem - Enum.AssetType.TeeShirt: - struct: EnumItem - deprecated: - message: Enum.AssetType.TeeShirt was replaced with Enum.AssetType.TShirt - replace: - - Enum.AssetType.TShirt - Enum.AssetType.TeeShirtAccessory: - struct: EnumItem - deprecated: - message: Enum.AssetType.TeeShirtAccessory was replaced with Enum.AssetType.TShirtAccessory - replace: - - Enum.AssetType.TShirtAccessory - Enum.AssetType.Torso: - struct: EnumItem - Enum.AssetType.Video: - struct: EnumItem - Enum.AssetType.WaistAccessory: - struct: EnumItem - Enum.AssetType.WalkAnimation: - struct: EnumItem - Enum.AssetTypeVerification.Always: - struct: EnumItem - Enum.AssetTypeVerification.ClientOnly: - struct: EnumItem - Enum.AssetTypeVerification.Default: - struct: EnumItem - Enum.AssetTypeVerification.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AudioSubType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AudioSubType.Music: - struct: EnumItem - Enum.AudioSubType.SoundEffect: - struct: EnumItem - Enum.AutoIndentRule.Absolute: - struct: EnumItem - Enum.AutoIndentRule.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AutoIndentRule.Off: - struct: EnumItem - Enum.AutoIndentRule.Relative: - struct: EnumItem - Enum.AutomaticSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AutomaticSize.None: - struct: EnumItem - Enum.AutomaticSize.X: - struct: EnumItem - Enum.AutomaticSize.XY: - struct: EnumItem - Enum.AutomaticSize.Y: - struct: EnumItem - Enum.AvatarAssetType.BackAccessory: - struct: EnumItem - Enum.AvatarAssetType.ClimbAnimation: - struct: EnumItem - Enum.AvatarAssetType.DressSkirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.DynamicHead: - struct: EnumItem - Enum.AvatarAssetType.EmoteAnimation: - struct: EnumItem - Enum.AvatarAssetType.EyebrowAccessory: - struct: EnumItem - Enum.AvatarAssetType.EyelashAccessory: - struct: EnumItem - Enum.AvatarAssetType.Face: - struct: EnumItem - Enum.AvatarAssetType.FaceAccessory: - struct: EnumItem - Enum.AvatarAssetType.FallAnimation: - struct: EnumItem - Enum.AvatarAssetType.FrontAccessory: - struct: EnumItem - Enum.AvatarAssetType.Gear: - struct: EnumItem - Enum.AvatarAssetType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarAssetType.HairAccessory: - struct: EnumItem - Enum.AvatarAssetType.Hat: - struct: EnumItem - Enum.AvatarAssetType.Head: - struct: EnumItem - Enum.AvatarAssetType.IdleAnimation: - struct: EnumItem - Enum.AvatarAssetType.JacketAccessory: - struct: EnumItem - Enum.AvatarAssetType.JumpAnimation: - struct: EnumItem - Enum.AvatarAssetType.LeftArm: - struct: EnumItem - Enum.AvatarAssetType.LeftLeg: - struct: EnumItem - Enum.AvatarAssetType.LeftShoeAccessory: - struct: EnumItem - Enum.AvatarAssetType.MoodAnimation: - struct: EnumItem - Enum.AvatarAssetType.NeckAccessory: - struct: EnumItem - Enum.AvatarAssetType.Pants: - struct: EnumItem - Enum.AvatarAssetType.PantsAccessory: - struct: EnumItem - Enum.AvatarAssetType.RightArm: - struct: EnumItem - Enum.AvatarAssetType.RightLeg: - struct: EnumItem - Enum.AvatarAssetType.RightShoeAccessory: - struct: EnumItem - Enum.AvatarAssetType.RunAnimation: - struct: EnumItem - Enum.AvatarAssetType.Shirt: - struct: EnumItem - Enum.AvatarAssetType.ShirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.ShortsAccessory: - struct: EnumItem - Enum.AvatarAssetType.ShoulderAccessory: - struct: EnumItem - Enum.AvatarAssetType.SweaterAccessory: - struct: EnumItem - Enum.AvatarAssetType.SwimAnimation: - struct: EnumItem - Enum.AvatarAssetType.TShirt: - struct: EnumItem - Enum.AvatarAssetType.TShirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.TeeShirtAccessory: - struct: EnumItem - deprecated: - message: Enum.AvatarAssetType.TeeShirtAccessory was replaced with Enum.AvatarAssetType.TShirtAccessory - replace: - - Enum.AvatarAssetType.TShirtAccessory - Enum.AvatarAssetType.Torso: - struct: EnumItem - Enum.AvatarAssetType.WaistAccessory: - struct: EnumItem - Enum.AvatarAssetType.WalkAnimation: - struct: EnumItem - Enum.AvatarContextMenuOption.Chat: - struct: EnumItem - Enum.AvatarContextMenuOption.Emote: - struct: EnumItem - Enum.AvatarContextMenuOption.Friend: - struct: EnumItem - Enum.AvatarContextMenuOption.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarContextMenuOption.InspectMenu: - struct: EnumItem - Enum.AvatarItemType.Asset: - struct: EnumItem - Enum.AvatarItemType.Bundle: - struct: EnumItem - Enum.AvatarItemType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarPromptResult.Failed: - struct: EnumItem - Enum.AvatarPromptResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarPromptResult.PermissionDenied: - struct: EnumItem - Enum.AvatarPromptResult.Success: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.Closeup: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.FullBody: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Axis.Back: - struct: EnumItem - deprecated: - message: Enum.Axis.Back was replaced with Enum.Axis.Z - replace: - - Enum.Axis.Z - Enum.Axis.Bottom: - struct: EnumItem - deprecated: - message: Enum.Axis.Bottom was replaced with Enum.Axis.Y - replace: - - Enum.Axis.Y - Enum.Axis.Front: - struct: EnumItem - deprecated: - message: Enum.Axis.Front was replaced with Enum.Axis.Z - replace: - - Enum.Axis.Z - Enum.Axis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Axis.Left: - struct: EnumItem - deprecated: - message: Enum.Axis.Left was replaced with Enum.Axis.X - replace: - - Enum.Axis.X - Enum.Axis.Right: - struct: EnumItem - deprecated: - message: Enum.Axis.Right was replaced with Enum.Axis.X - replace: - - Enum.Axis.X - Enum.Axis.Top: - struct: EnumItem - deprecated: - message: Enum.Axis.Top was replaced with Enum.Axis.Y - replace: - - Enum.Axis.Y - Enum.Axis.X: - struct: EnumItem - Enum.Axis.Y: - struct: EnumItem - Enum.Axis.Z: - struct: EnumItem - Enum.BinType.Clone: - struct: EnumItem - Enum.BinType.GameTool: - struct: EnumItem - Enum.BinType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BinType.Grab: - struct: EnumItem - Enum.BinType.Hammer: - struct: EnumItem - Enum.BinType.Laser: - struct: EnumItem - deprecated: - message: Enum.BinType.Laser was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BinType.Rocket: - struct: EnumItem - deprecated: - message: Enum.BinType.Rocket was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BinType.Script: - struct: EnumItem - Enum.BinType.Slingshot: - struct: EnumItem - deprecated: - message: Enum.BinType.Slingshot was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BodyPart.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BodyPart.Head: - struct: EnumItem - Enum.BodyPart.LeftArm: - struct: EnumItem - Enum.BodyPart.LeftLeg: - struct: EnumItem - Enum.BodyPart.RightArm: - struct: EnumItem - Enum.BodyPart.RightLeg: - struct: EnumItem - Enum.BodyPart.Torso: - struct: EnumItem - Enum.BodyPartR15.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BodyPartR15.Head: - struct: EnumItem - Enum.BodyPartR15.LeftFoot: - struct: EnumItem - Enum.BodyPartR15.LeftHand: - struct: EnumItem - Enum.BodyPartR15.LeftLowerArm: - struct: EnumItem - Enum.BodyPartR15.LeftLowerLeg: - struct: EnumItem - Enum.BodyPartR15.LeftUpperArm: - struct: EnumItem - Enum.BodyPartR15.LeftUpperLeg: - struct: EnumItem - Enum.BodyPartR15.LowerTorso: - struct: EnumItem - Enum.BodyPartR15.RightFoot: - struct: EnumItem - Enum.BodyPartR15.RightHand: - struct: EnumItem - Enum.BodyPartR15.RightLowerArm: - struct: EnumItem - Enum.BodyPartR15.RightLowerLeg: - struct: EnumItem - Enum.BodyPartR15.RightUpperArm: - struct: EnumItem - Enum.BodyPartR15.RightUpperLeg: - struct: EnumItem - Enum.BodyPartR15.RootPart: - struct: EnumItem - Enum.BodyPartR15.Unknown: - struct: EnumItem - Enum.BodyPartR15.UpperTorso: - struct: EnumItem - Enum.BorderMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BorderMode.Inset: - struct: EnumItem - Enum.BorderMode.Middle: - struct: EnumItem - Enum.BorderMode.Outline: - struct: EnumItem - Enum.BreakReason.Error: - struct: EnumItem - Enum.BreakReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BreakReason.Other: - struct: EnumItem - Enum.BreakReason.SpecialBreakpoint: - struct: EnumItem - Enum.BreakReason.UserBreakpoint: - struct: EnumItem - Enum.BreakpointRemoveReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BreakpointRemoveReason.Requested: - struct: EnumItem - Enum.BreakpointRemoveReason.ScriptChanged: - struct: EnumItem - Enum.BreakpointRemoveReason.ScriptRemoved: - struct: EnumItem - Enum.BulkMoveMode.FireAllEvents: - struct: EnumItem - Enum.BulkMoveMode.FireCFrameChanged: - struct: EnumItem - Enum.BulkMoveMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BundleType.Animations: - struct: EnumItem - Enum.BundleType.BodyParts: - struct: EnumItem - Enum.BundleType.DynamicHead: - struct: EnumItem - Enum.BundleType.DynamicHeadAvatar: - struct: EnumItem - Enum.BundleType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BundleType.Shoes: - struct: EnumItem - Enum.Button.Dismount: - struct: EnumItem - Enum.Button.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Button.Jump: - struct: EnumItem - Enum.ButtonStyle.Custom: - struct: EnumItem - Enum.ButtonStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ButtonStyle.RobloxButton: - struct: EnumItem - Enum.ButtonStyle.RobloxButtonDefault: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundButton: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundDefaultButton: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundDropdownButton: - struct: EnumItem - Enum.CageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CageType.Inner: - struct: EnumItem - Enum.CageType.Outer: - struct: EnumItem - Enum.CameraMode.Classic: - struct: EnumItem - Enum.CameraMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraMode.LockFirstPerson: - struct: EnumItem - Enum.CameraPanMode.Classic: - struct: EnumItem - Enum.CameraPanMode.EdgeBump: - struct: EnumItem - Enum.CameraPanMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraType.Attach: - struct: EnumItem - Enum.CameraType.Custom: - struct: EnumItem - Enum.CameraType.Fixed: - struct: EnumItem - Enum.CameraType.Follow: - struct: EnumItem - Enum.CameraType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraType.Orbital: - struct: EnumItem - Enum.CameraType.Scriptable: - struct: EnumItem - Enum.CameraType.Track: - struct: EnumItem - Enum.CameraType.Watch: - struct: EnumItem - Enum.CatalogCategoryFilter.Collectibles: - struct: EnumItem - Enum.CatalogCategoryFilter.CommunityCreations: - struct: EnumItem - Enum.CatalogCategoryFilter.Featured: - struct: EnumItem - Enum.CatalogCategoryFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogCategoryFilter.None: - struct: EnumItem - Enum.CatalogCategoryFilter.Premium: - struct: EnumItem - Enum.CatalogCategoryFilter.Recommended: - struct: EnumItem - Enum.CatalogSortAggregation.AllTime: - struct: EnumItem - Enum.CatalogSortAggregation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogSortAggregation.Past12Hours: - struct: EnumItem - Enum.CatalogSortAggregation.Past3Days: - struct: EnumItem - Enum.CatalogSortAggregation.PastDay: - struct: EnumItem - Enum.CatalogSortAggregation.PastMonth: - struct: EnumItem - Enum.CatalogSortAggregation.PastWeek: - struct: EnumItem - Enum.CatalogSortType.Bestselling: - struct: EnumItem - Enum.CatalogSortType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogSortType.MostFavorited: - struct: EnumItem - Enum.CatalogSortType.PriceHighToLow: - struct: EnumItem - Enum.CatalogSortType.PriceLowToHigh: - struct: EnumItem - Enum.CatalogSortType.RecentlyCreated: - struct: EnumItem - Enum.CatalogSortType.RecentlyUpdated: - struct: EnumItem - deprecated: - message: Enum.CatalogSortType.RecentlyUpdated was replaced with Enum.CatalogSortType.RecentlyCreated - replace: - - Enum.CatalogSortType.RecentlyCreated - Enum.CatalogSortType.Relevance: - struct: EnumItem - Enum.CellBlock.CornerWedge: - struct: EnumItem - Enum.CellBlock.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellBlock.HorizontalWedge: - struct: EnumItem - Enum.CellBlock.InverseCornerWedge: - struct: EnumItem - Enum.CellBlock.Solid: - struct: EnumItem - Enum.CellBlock.VerticalWedge: - struct: EnumItem - Enum.CellMaterial.Aluminum: - struct: EnumItem - Enum.CellMaterial.Asphalt: - struct: EnumItem - Enum.CellMaterial.BluePlastic: - struct: EnumItem - Enum.CellMaterial.Brick: - struct: EnumItem - Enum.CellMaterial.Cement: - struct: EnumItem - Enum.CellMaterial.CinderBlock: - struct: EnumItem - Enum.CellMaterial.Empty: - struct: EnumItem - Enum.CellMaterial.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellMaterial.Gold: - struct: EnumItem - Enum.CellMaterial.Granite: - struct: EnumItem - Enum.CellMaterial.Grass: - struct: EnumItem - Enum.CellMaterial.Gravel: - struct: EnumItem - Enum.CellMaterial.Iron: - struct: EnumItem - Enum.CellMaterial.MossyStone: - struct: EnumItem - Enum.CellMaterial.RedPlastic: - struct: EnumItem - Enum.CellMaterial.Sand: - struct: EnumItem - Enum.CellMaterial.Water: - struct: EnumItem - Enum.CellMaterial.WoodLog: - struct: EnumItem - Enum.CellMaterial.WoodPlank: - struct: EnumItem - Enum.CellOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellOrientation.NegX: - struct: EnumItem - Enum.CellOrientation.NegZ: - struct: EnumItem - Enum.CellOrientation.X: - struct: EnumItem - Enum.CellOrientation.Z: - struct: EnumItem - Enum.CenterDialogType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CenterDialogType.ModalDialog: - struct: EnumItem - Enum.CenterDialogType.PlayerInitiatedDialog: - struct: EnumItem - Enum.CenterDialogType.QuitDialog: - struct: EnumItem - Enum.CenterDialogType.UnsolicitedDialog: - struct: EnumItem - Enum.ChatCallbackType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatCallbackType.OnClientFormattingMessage: - struct: EnumItem - Enum.ChatCallbackType.OnClientSendingMessage: - struct: EnumItem - Enum.ChatCallbackType.OnCreatingChatWindow: - struct: EnumItem - Enum.ChatCallbackType.OnServerReceivingMessage: - struct: EnumItem - Enum.ChatColor.Blue: - struct: EnumItem - Enum.ChatColor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatColor.Green: - struct: EnumItem - Enum.ChatColor.Red: - struct: EnumItem - Enum.ChatColor.White: - struct: EnumItem - Enum.ChatMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatMode.Menu: - struct: EnumItem - Enum.ChatMode.TextAndMenu: - struct: EnumItem - Enum.ChatPrivacyMode.AllUsers: - struct: EnumItem - Enum.ChatPrivacyMode.Friends: - struct: EnumItem - Enum.ChatPrivacyMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatPrivacyMode.NoOne: - struct: EnumItem - Enum.ChatStyle.Bubble: - struct: EnumItem - Enum.ChatStyle.Classic: - struct: EnumItem - Enum.ChatStyle.ClassicAndBubble: - struct: EnumItem - Enum.ChatStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatVersion.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatVersion.LegacyChatService: - struct: EnumItem - Enum.ChatVersion.TextChatService: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Default: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Disabled: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Enabled: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CollisionFidelity.Box: - struct: EnumItem - Enum.CollisionFidelity.Default: - struct: EnumItem - Enum.CollisionFidelity.DynamicPreciseConvexDecomposition: - struct: EnumItem - Enum.CollisionFidelity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CollisionFidelity.Hull: - struct: EnumItem - Enum.CollisionFidelity.PreciseConvexDecomposition: - struct: EnumItem - Enum.CommandPermission.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CommandPermission.LocalUser: - struct: EnumItem - Enum.CommandPermission.Plugin: - struct: EnumItem - Enum.CompletionItemKind.Class: - struct: EnumItem - Enum.CompletionItemKind.Color: - struct: EnumItem - Enum.CompletionItemKind.Constant: - struct: EnumItem - Enum.CompletionItemKind.Constructor: - struct: EnumItem - Enum.CompletionItemKind.Enum: - struct: EnumItem - Enum.CompletionItemKind.EnumMember: - struct: EnumItem - Enum.CompletionItemKind.Event: - struct: EnumItem - Enum.CompletionItemKind.Field: - struct: EnumItem - Enum.CompletionItemKind.File: - struct: EnumItem - Enum.CompletionItemKind.Folder: - struct: EnumItem - Enum.CompletionItemKind.Function: - struct: EnumItem - Enum.CompletionItemKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionItemKind.Interface: - struct: EnumItem - Enum.CompletionItemKind.Keyword: - struct: EnumItem - Enum.CompletionItemKind.Method: - struct: EnumItem - Enum.CompletionItemKind.Module: - struct: EnumItem - Enum.CompletionItemKind.Operator: - struct: EnumItem - Enum.CompletionItemKind.Property: - struct: EnumItem - Enum.CompletionItemKind.Reference: - struct: EnumItem - Enum.CompletionItemKind.Snippet: - struct: EnumItem - Enum.CompletionItemKind.Struct: - struct: EnumItem - Enum.CompletionItemKind.Text: - struct: EnumItem - Enum.CompletionItemKind.TypeParameter: - struct: EnumItem - Enum.CompletionItemKind.Unit: - struct: EnumItem - Enum.CompletionItemKind.Value: - struct: EnumItem - Enum.CompletionItemKind.Variable: - struct: EnumItem - Enum.CompletionItemTag.AddParens: - struct: EnumItem - Enum.CompletionItemTag.ClientServerBoundaryViolation: - struct: EnumItem - Enum.CompletionItemTag.CommandLinePermissions: - struct: EnumItem - Enum.CompletionItemTag.Deprecated: - struct: EnumItem - Enum.CompletionItemTag.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionItemTag.IncorrectIndexType: - struct: EnumItem - Enum.CompletionItemTag.PluginPermissions: - struct: EnumItem - Enum.CompletionItemTag.PutCursorInParens: - struct: EnumItem - Enum.CompletionItemTag.RobloxPermissions: - struct: EnumItem - Enum.CompletionItemTag.TypeCorrect: - struct: EnumItem - Enum.CompletionTriggerKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionTriggerKind.Invoked: - struct: EnumItem - Enum.CompletionTriggerKind.TriggerCharacter: - struct: EnumItem - Enum.CompletionTriggerKind.TriggerForIncompleteCompletions: - struct: EnumItem - Enum.ComputerCameraMovementMode.CameraToggle: - struct: EnumItem - Enum.ComputerCameraMovementMode.Classic: - struct: EnumItem - Enum.ComputerCameraMovementMode.Default: - struct: EnumItem - Enum.ComputerCameraMovementMode.Follow: - struct: EnumItem - Enum.ComputerCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ComputerCameraMovementMode.Orbital: - struct: EnumItem - Enum.ComputerMovementMode.ClickToMove: - struct: EnumItem - Enum.ComputerMovementMode.Default: - struct: EnumItem - Enum.ComputerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ComputerMovementMode.KeyboardMouse: - struct: EnumItem - Enum.ConnectionError.DisconnectBadhash: - struct: EnumItem - Enum.ConnectionError.DisconnectBlockedIP: - struct: EnumItem - Enum.ConnectionError.DisconnectBySecurityPolicy: - struct: EnumItem - Enum.ConnectionError.DisconnectClientFailure: - struct: EnumItem - Enum.ConnectionError.DisconnectClientRequest: - struct: EnumItem - Enum.ConnectionError.DisconnectCloudEditKick: - struct: EnumItem - Enum.ConnectionError.DisconnectConnectionLost: - struct: EnumItem - Enum.ConnectionError.DisconnectDevMaintenance: - struct: EnumItem - Enum.ConnectionError.DisconnectDuplicatePlayer: - struct: EnumItem - Enum.ConnectionError.DisconnectDuplicateTicket: - struct: EnumItem - Enum.ConnectionError.DisconnectErrors: - struct: EnumItem - Enum.ConnectionError.DisconnectEvicted: - struct: EnumItem - Enum.ConnectionError.DisconnectHashTimeout: - struct: EnumItem - Enum.ConnectionError.DisconnectIdle: - struct: EnumItem - Enum.ConnectionError.DisconnectIllegalTeleport: - struct: EnumItem - Enum.ConnectionError.DisconnectLuaKick: - struct: EnumItem - Enum.ConnectionError.DisconnectModeratedGame: - struct: EnumItem - Enum.ConnectionError.DisconnectNewSecurityKeyMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectOnRemoteSysStats: - struct: EnumItem - Enum.ConnectionError.DisconnectOutOfMemoryKeepPlayingLeave: - struct: EnumItem - Enum.ConnectionError.DisconnectPlayerless: - struct: EnumItem - Enum.ConnectionError.DisconnectProtocolMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectRaknetErrors: - struct: EnumItem - Enum.ConnectionError.DisconnectReceivePacketError: - struct: EnumItem - Enum.ConnectionError.DisconnectReceivePacketStreamError: - struct: EnumItem - Enum.ConnectionError.DisconnectRejoin: - struct: EnumItem - Enum.ConnectionError.DisconnectRobloxMaintenance: - struct: EnumItem - Enum.ConnectionError.DisconnectRomarkEndOfTest: - struct: EnumItem - Enum.ConnectionError.DisconnectSecurityKeyMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectSendPacketError: - struct: EnumItem - Enum.ConnectionError.DisconnectTimeout: - struct: EnumItem - Enum.ConnectionError.DisconnectWrongVersion: - struct: EnumItem - Enum.ConnectionError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ConnectionError.OK: - struct: EnumItem - Enum.ConnectionError.PlacelaunchCustomMessage: - struct: EnumItem - Enum.ConnectionError.PlacelaunchDisabled: - struct: EnumItem - Enum.ConnectionError.PlacelaunchError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchErrors: - struct: EnumItem - Enum.ConnectionError.PlacelaunchFlooded: - struct: EnumItem - Enum.ConnectionError.PlacelaunchGameEnded: - struct: EnumItem - Enum.ConnectionError.PlacelaunchGameFull: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHashException: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHashExpired: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHttpError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchOtherError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchPartyCannotFit: - struct: EnumItem - Enum.ConnectionError.PlacelaunchRestricted: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUnauthorized: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUserLeft: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUserPrivacyUnauthorized: - struct: EnumItem - Enum.ConnectionError.PlayerRemoved: - struct: EnumItem - Enum.ConnectionError.ReplicatorTimeout: - struct: EnumItem - Enum.ConnectionError.TeleportErrors: - struct: EnumItem - Enum.ConnectionError.TeleportFailure: - struct: EnumItem - Enum.ConnectionError.TeleportFlooded: - struct: EnumItem - Enum.ConnectionError.TeleportGameEnded: - struct: EnumItem - Enum.ConnectionError.TeleportGameFull: - struct: EnumItem - Enum.ConnectionError.TeleportGameNotFound: - struct: EnumItem - Enum.ConnectionError.TeleportIsTeleporting: - struct: EnumItem - Enum.ConnectionError.TeleportUnauthorized: - struct: EnumItem - Enum.ConnectionError.Unknown: - struct: EnumItem - Enum.ConnectionState.Connected: - struct: EnumItem - Enum.ConnectionState.Disconnected: - struct: EnumItem - Enum.ConnectionState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionPriority.Default: - struct: EnumItem - deprecated: - message: Enum.ContextActionPriority.Default was replaced with Enum.ContextActionPriority.Medium - replace: - - Enum.ContextActionPriority.Medium - Enum.ContextActionPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionPriority.High: - struct: EnumItem - Enum.ContextActionPriority.Low: - struct: EnumItem - Enum.ContextActionPriority.Medium: - struct: EnumItem - Enum.ContextActionResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionResult.Pass: - struct: EnumItem - Enum.ContextActionResult.Sink: - struct: EnumItem - Enum.ControlMode.Classic: - struct: EnumItem - Enum.ControlMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ControlMode.Mouse Lock Switch: - struct: EnumItem - deprecated: - message: Enum.ControlMode.Mouse Lock Switch was replaced with Enum.ControlMode.MouseLockSwitch - replace: - - Enum.ControlMode.MouseLockSwitch - Enum.ControlMode.MouseLockSwitch: - struct: EnumItem - Enum.CoreGuiType.All: - struct: EnumItem - Enum.CoreGuiType.Backpack: - struct: EnumItem - Enum.CoreGuiType.Chat: - struct: EnumItem - Enum.CoreGuiType.EmotesMenu: - struct: EnumItem - Enum.CoreGuiType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CoreGuiType.Health: - struct: EnumItem - Enum.CoreGuiType.PlayerList: - struct: EnumItem - Enum.CoreGuiType.SelfView: - struct: EnumItem - Enum.CreateOutfitFailure.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreateOutfitFailure.InvalidName: - struct: EnumItem - Enum.CreateOutfitFailure.Other: - struct: EnumItem - Enum.CreateOutfitFailure.OutfitLimitReached: - struct: EnumItem - Enum.CreatorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreatorType.Group: - struct: EnumItem - Enum.CreatorType.User: - struct: EnumItem - Enum.CreatorTypeFilter.All: - struct: EnumItem - Enum.CreatorTypeFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreatorTypeFilter.Group: - struct: EnumItem - Enum.CreatorTypeFilter.User: - struct: EnumItem - Enum.CurrencyType.Default: - struct: EnumItem - Enum.CurrencyType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CurrencyType.Robux: - struct: EnumItem - Enum.CurrencyType.Tix: - struct: EnumItem - Enum.CustomCameraMode.Classic: - struct: EnumItem - Enum.CustomCameraMode.Default: - struct: EnumItem - Enum.CustomCameraMode.Follow: - struct: EnumItem - Enum.CustomCameraMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DataStoreRequestType.GetAsync: - struct: EnumItem - Enum.DataStoreRequestType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DataStoreRequestType.GetSortedAsync: - struct: EnumItem - Enum.DataStoreRequestType.OnUpdate: - struct: EnumItem - Enum.DataStoreRequestType.SetIncrementAsync: - struct: EnumItem - Enum.DataStoreRequestType.SetIncrementSortedAsync: - struct: EnumItem - Enum.DataStoreRequestType.UpdateAsync: - struct: EnumItem - Enum.DebuggerEndReason.ClientRequest: - struct: EnumItem - Enum.DebuggerEndReason.ConfigurationFailed: - struct: EnumItem - Enum.DebuggerEndReason.Disconnected: - struct: EnumItem - Enum.DebuggerEndReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerEndReason.InvalidHost: - struct: EnumItem - Enum.DebuggerEndReason.RpcError: - struct: EnumItem - Enum.DebuggerEndReason.ServerProtocolMismatch: - struct: EnumItem - Enum.DebuggerEndReason.ServerShutdown: - struct: EnumItem - Enum.DebuggerEndReason.Timeout: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.Always: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerExceptionBreakMode.Never: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.Unhandled: - struct: EnumItem - Enum.DebuggerFrameType.C: - struct: EnumItem - Enum.DebuggerFrameType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerFrameType.Lua: - struct: EnumItem - Enum.DebuggerPauseReason.Breakpoint: - struct: EnumItem - Enum.DebuggerPauseReason.Entrypoint: - struct: EnumItem - Enum.DebuggerPauseReason.Exception: - struct: EnumItem - Enum.DebuggerPauseReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerPauseReason.Requested: - struct: EnumItem - Enum.DebuggerPauseReason.SingleStep: - struct: EnumItem - Enum.DebuggerPauseReason.Unknown: - struct: EnumItem - Enum.DebuggerStatus.ConnectionClosed: - struct: EnumItem - Enum.DebuggerStatus.ConnectionLost: - struct: EnumItem - Enum.DebuggerStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerStatus.InternalError: - struct: EnumItem - Enum.DebuggerStatus.InvalidArgument: - struct: EnumItem - Enum.DebuggerStatus.InvalidResponse: - struct: EnumItem - Enum.DebuggerStatus.InvalidState: - struct: EnumItem - Enum.DebuggerStatus.RpcError: - struct: EnumItem - Enum.DebuggerStatus.Success: - struct: EnumItem - Enum.DebuggerStatus.Timeout: - struct: EnumItem - Enum.DevCameraOcclusionMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevCameraOcclusionMode.Invisicam: - struct: EnumItem - Enum.DevCameraOcclusionMode.Zoom: - struct: EnumItem - Enum.DevComputerCameraMovementMode.CameraToggle: - struct: EnumItem - Enum.DevComputerCameraMovementMode.Classic: - struct: EnumItem - Enum.DevComputerCameraMovementMode.Follow: - struct: EnumItem - Enum.DevComputerCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevComputerCameraMovementMode.Orbital: - struct: EnumItem - Enum.DevComputerCameraMovementMode.UserChoice: - struct: EnumItem - Enum.DevComputerMovementMode.ClickToMove: - struct: EnumItem - Enum.DevComputerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevComputerMovementMode.KeyboardMouse: - struct: EnumItem - Enum.DevComputerMovementMode.Scriptable: - struct: EnumItem - Enum.DevComputerMovementMode.UserChoice: - struct: EnumItem - Enum.DevTouchCameraMovementMode.Classic: - struct: EnumItem - Enum.DevTouchCameraMovementMode.Follow: - struct: EnumItem - Enum.DevTouchCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevTouchCameraMovementMode.Orbital: - struct: EnumItem - Enum.DevTouchCameraMovementMode.UserChoice: - struct: EnumItem - Enum.DevTouchMovementMode.ClickToMove: - struct: EnumItem - Enum.DevTouchMovementMode.DPad: - struct: EnumItem - Enum.DevTouchMovementMode.DynamicThumbstick: - struct: EnumItem - Enum.DevTouchMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevTouchMovementMode.Scriptable: - struct: EnumItem - Enum.DevTouchMovementMode.Thumbpad: - struct: EnumItem - Enum.DevTouchMovementMode.Thumbstick: - struct: EnumItem - Enum.DevTouchMovementMode.UserChoice: - struct: EnumItem - Enum.DeveloperMemoryTag.Animation: - struct: EnumItem - Enum.DeveloperMemoryTag.GeometryCSG: - struct: EnumItem - Enum.DeveloperMemoryTag.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DeveloperMemoryTag.GraphicsMeshParts: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsParticles: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsParts: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsSolidModels: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsSpatialHash: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTerrain: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTexture: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTextureCharacter: - struct: EnumItem - Enum.DeveloperMemoryTag.Gui: - struct: EnumItem - Enum.DeveloperMemoryTag.HttpCache: - struct: EnumItem - Enum.DeveloperMemoryTag.Instances: - struct: EnumItem - Enum.DeveloperMemoryTag.Internal: - struct: EnumItem - Enum.DeveloperMemoryTag.LuaHeap: - struct: EnumItem - Enum.DeveloperMemoryTag.Navigation: - struct: EnumItem - Enum.DeveloperMemoryTag.PhysicsCollision: - struct: EnumItem - Enum.DeveloperMemoryTag.PhysicsParts: - struct: EnumItem - Enum.DeveloperMemoryTag.Script: - struct: EnumItem - Enum.DeveloperMemoryTag.Signals: - struct: EnumItem - Enum.DeveloperMemoryTag.Sounds: - struct: EnumItem - Enum.DeveloperMemoryTag.StreamingSounds: - struct: EnumItem - Enum.DeveloperMemoryTag.TerrainVoxels: - struct: EnumItem - Enum.DeviceType.Desktop: - struct: EnumItem - Enum.DeviceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DeviceType.Phone: - struct: EnumItem - Enum.DeviceType.Tablet: - struct: EnumItem - Enum.DeviceType.Unknown: - struct: EnumItem - Enum.DialogBehaviorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogBehaviorType.MultiplePlayers: - struct: EnumItem - Enum.DialogBehaviorType.SinglePlayer: - struct: EnumItem - Enum.DialogPurpose.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogPurpose.Help: - struct: EnumItem - Enum.DialogPurpose.Quest: - struct: EnumItem - Enum.DialogPurpose.Shop: - struct: EnumItem - Enum.DialogTone.Enemy: - struct: EnumItem - Enum.DialogTone.Friendly: - struct: EnumItem - Enum.DialogTone.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogTone.Neutral: - struct: EnumItem - Enum.DominantAxis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DominantAxis.Height: - struct: EnumItem - Enum.DominantAxis.Width: - struct: EnumItem - Enum.DraftStatusCode.DraftCommitted: - struct: EnumItem - Enum.DraftStatusCode.DraftOutdated: - struct: EnumItem - Enum.DraftStatusCode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraftStatusCode.OK: - struct: EnumItem - Enum.DraftStatusCode.ScriptRemoved: - struct: EnumItem - Enum.DraggerCoordinateSpace.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraggerCoordinateSpace.Object: - struct: EnumItem - Enum.DraggerCoordinateSpace.World: - struct: EnumItem - Enum.DraggerMovementMode.Geometric: - struct: EnumItem - Enum.DraggerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraggerMovementMode.Physical: - struct: EnumItem - Enum.EasingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EasingDirection.In: - struct: EnumItem - Enum.EasingDirection.InOut: - struct: EnumItem - Enum.EasingDirection.Out: - struct: EnumItem - Enum.EasingStyle.Back: - struct: EnumItem - Enum.EasingStyle.Bounce: - struct: EnumItem - Enum.EasingStyle.Circular: - struct: EnumItem - Enum.EasingStyle.Cubic: - struct: EnumItem - Enum.EasingStyle.Elastic: - struct: EnumItem - Enum.EasingStyle.Exponential: - struct: EnumItem - Enum.EasingStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EasingStyle.Linear: - struct: EnumItem - Enum.EasingStyle.Quad: - struct: EnumItem - Enum.EasingStyle.Quart: - struct: EnumItem - Enum.EasingStyle.Quint: - struct: EnumItem - Enum.EasingStyle.Sine: - struct: EnumItem - Enum.ElasticBehavior.Always: - struct: EnumItem - Enum.ElasticBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ElasticBehavior.Never: - struct: EnumItem - Enum.ElasticBehavior.WhenScrollable: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Always: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.DefaultAuto: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Disabled: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EnviromentalPhysicsThrottle.Skip16: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip2: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip4: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip8: - struct: EnumItem - Enum.ExperienceAuthScope.CreatorAssetsCreate: - struct: EnumItem - Enum.ExperienceAuthScope.DefaultScope: - struct: EnumItem - Enum.ExperienceAuthScope.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ExplosionType.Craters: - struct: EnumItem - Enum.ExplosionType.CratersAndDebris: - struct: EnumItem - deprecated: - message: Enum.ExplosionType.CratersAndDebris was replaced with Enum.ExplosionType.Craters - replace: - - Enum.ExplosionType.Craters - Enum.ExplosionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ExplosionType.NoCraters: - struct: EnumItem - Enum.FacialAnimationFlags.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FacialAnimationFlags.None: - struct: EnumItem - Enum.FacialAnimationFlags.Place: - struct: EnumItem - Enum.FacialAnimationFlags.PlaceServer: - struct: EnumItem - Enum.FacialAnimationFlags.Server: - struct: EnumItem - Enum.FacialAnimationStreamingState.Audio: - struct: EnumItem - Enum.FacialAnimationStreamingState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FacialAnimationStreamingState.None: - struct: EnumItem - Enum.FacialAnimationStreamingState.Place: - struct: EnumItem - Enum.FacialAnimationStreamingState.Server: - struct: EnumItem - Enum.FacialAnimationStreamingState.Video: - struct: EnumItem - Enum.FieldOfViewMode.Diagonal: - struct: EnumItem - Enum.FieldOfViewMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FieldOfViewMode.MaxAxis: - struct: EnumItem - Enum.FieldOfViewMode.Vertical: - struct: EnumItem - Enum.FillDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FillDirection.Horizontal: - struct: EnumItem - Enum.FillDirection.Vertical: - struct: EnumItem - Enum.FilterResult.Accepted: - struct: EnumItem - Enum.FilterResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FilterResult.Rejected: - struct: EnumItem - Enum.Font.AmaticSC: - struct: EnumItem - Enum.Font.Antique: - struct: EnumItem - Enum.Font.Arcade: - struct: EnumItem - Enum.Font.Arial: - struct: EnumItem - Enum.Font.ArialBold: - struct: EnumItem - Enum.Font.Bangers: - struct: EnumItem - Enum.Font.Bodoni: - struct: EnumItem - Enum.Font.Cartoon: - struct: EnumItem - Enum.Font.Code: - struct: EnumItem - Enum.Font.Creepster: - struct: EnumItem - Enum.Font.DenkOne: - struct: EnumItem - Enum.Font.Fantasy: - struct: EnumItem - Enum.Font.Fondamento: - struct: EnumItem - Enum.Font.FredokaOne: - struct: EnumItem - Enum.Font.Garamond: - struct: EnumItem - Enum.Font.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Font.Gotham: - struct: EnumItem - Enum.Font.GothamBlack: - struct: EnumItem - Enum.Font.GothamBold: - struct: EnumItem - Enum.Font.GothamMedium: - struct: EnumItem - Enum.Font.GothamSemibold: - struct: EnumItem - deprecated: - message: Enum.Font.GothamSemibold was replaced with Enum.Font.GothamMedium - replace: - - Enum.Font.GothamMedium - Enum.Font.GrenzeGotisch: - struct: EnumItem - Enum.Font.Highway: - struct: EnumItem - Enum.Font.IndieFlower: - struct: EnumItem - Enum.Font.JosefinSans: - struct: EnumItem - Enum.Font.Jura: - struct: EnumItem - Enum.Font.Kalam: - struct: EnumItem - Enum.Font.Legacy: - struct: EnumItem - Enum.Font.LuckiestGuy: - struct: EnumItem - Enum.Font.Merriweather: - struct: EnumItem - Enum.Font.Michroma: - struct: EnumItem - Enum.Font.Nunito: - struct: EnumItem - Enum.Font.Oswald: - struct: EnumItem - Enum.Font.PatrickHand: - struct: EnumItem - Enum.Font.PermanentMarker: - struct: EnumItem - Enum.Font.Roboto: - struct: EnumItem - Enum.Font.RobotoCondensed: - struct: EnumItem - Enum.Font.RobotoMono: - struct: EnumItem - Enum.Font.Sarpanch: - struct: EnumItem - Enum.Font.SciFi: - struct: EnumItem - Enum.Font.SourceSans: - struct: EnumItem - Enum.Font.SourceSansBold: - struct: EnumItem - Enum.Font.SourceSansItalic: - struct: EnumItem - Enum.Font.SourceSansLight: - struct: EnumItem - Enum.Font.SourceSansSemibold: - struct: EnumItem - Enum.Font.SpecialElite: - struct: EnumItem - Enum.Font.TitilliumWeb: - struct: EnumItem - Enum.Font.Ubuntu: - struct: EnumItem - Enum.Font.Unknown: - struct: EnumItem - Enum.FontSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontSize.Size10: - struct: EnumItem - Enum.FontSize.Size11: - struct: EnumItem - Enum.FontSize.Size12: - struct: EnumItem - Enum.FontSize.Size14: - struct: EnumItem - Enum.FontSize.Size18: - struct: EnumItem - Enum.FontSize.Size24: - struct: EnumItem - Enum.FontSize.Size28: - struct: EnumItem - Enum.FontSize.Size32: - struct: EnumItem - Enum.FontSize.Size36: - struct: EnumItem - Enum.FontSize.Size42: - struct: EnumItem - Enum.FontSize.Size48: - struct: EnumItem - Enum.FontSize.Size60: - struct: EnumItem - Enum.FontSize.Size8: - struct: EnumItem - Enum.FontSize.Size9: - struct: EnumItem - Enum.FontSize.Size96: - struct: EnumItem - Enum.FontStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontStyle.Italic: - struct: EnumItem - Enum.FontStyle.Normal: - struct: EnumItem - Enum.FontWeight.Bold: - struct: EnumItem - Enum.FontWeight.ExtraBold: - struct: EnumItem - Enum.FontWeight.ExtraLight: - struct: EnumItem - Enum.FontWeight.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontWeight.Heavy: - struct: EnumItem - Enum.FontWeight.Light: - struct: EnumItem - Enum.FontWeight.Medium: - struct: EnumItem - Enum.FontWeight.Regular: - struct: EnumItem - Enum.FontWeight.SemiBold: - struct: EnumItem - Enum.FontWeight.Thin: - struct: EnumItem - Enum.FormFactor.Block: - struct: EnumItem - deprecated: - message: Enum.FormFactor.Block was replaced with Enum.FormFactor.Brick - replace: - - Enum.FormFactor.Brick - Enum.FormFactor.Brick: - struct: EnumItem - Enum.FormFactor.Custom: - struct: EnumItem - Enum.FormFactor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FormFactor.Plate: - struct: EnumItem - Enum.FormFactor.Symmetric: - struct: EnumItem - Enum.FrameStyle.ChatBlue: - struct: EnumItem - Enum.FrameStyle.ChatGreen: - struct: EnumItem - Enum.FrameStyle.ChatRed: - struct: EnumItem - Enum.FrameStyle.Custom: - struct: EnumItem - Enum.FrameStyle.DropShadow: - struct: EnumItem - Enum.FrameStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FrameStyle.RobloxRound: - struct: EnumItem - Enum.FrameStyle.RobloxSquare: - struct: EnumItem - Enum.FramerateManagerMode.Automatic: - struct: EnumItem - Enum.FramerateManagerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FramerateManagerMode.Off: - struct: EnumItem - Enum.FramerateManagerMode.On: - struct: EnumItem - Enum.FriendRequestEvent.Accept: - struct: EnumItem - Enum.FriendRequestEvent.Deny: - struct: EnumItem - Enum.FriendRequestEvent.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FriendRequestEvent.Issue: - struct: EnumItem - Enum.FriendRequestEvent.Revoke: - struct: EnumItem - Enum.FriendStatus.Friend: - struct: EnumItem - Enum.FriendStatus.FriendRequestReceived: - struct: EnumItem - Enum.FriendStatus.FriendRequestSent: - struct: EnumItem - Enum.FriendStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FriendStatus.NotFriend: - struct: EnumItem - Enum.FriendStatus.Unknown: - struct: EnumItem - Enum.FunctionalTestResult.Error: - struct: EnumItem - Enum.FunctionalTestResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FunctionalTestResult.Passed: - struct: EnumItem - Enum.FunctionalTestResult.Warning: - struct: EnumItem - Enum.GameAvatarType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GameAvatarType.PlayerChoice: - struct: EnumItem - Enum.GameAvatarType.R15: - struct: EnumItem - Enum.GameAvatarType.R6: - struct: EnumItem - Enum.GearGenreSetting.AllGenres: - struct: EnumItem - Enum.GearGenreSetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GearGenreSetting.MatchingGenreOnly: - struct: EnumItem - Enum.GearType.BuildingTools: - struct: EnumItem - Enum.GearType.Explosives: - struct: EnumItem - Enum.GearType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GearType.MeleeWeapons: - struct: EnumItem - Enum.GearType.MusicalInstruments: - struct: EnumItem - Enum.GearType.NavigationEnhancers: - struct: EnumItem - Enum.GearType.PowerUps: - struct: EnumItem - Enum.GearType.RangedWeapons: - struct: EnumItem - Enum.GearType.SocialItems: - struct: EnumItem - Enum.GearType.Transport: - struct: EnumItem - Enum.Genre.Adventure: - struct: EnumItem - Enum.Genre.All: - struct: EnumItem - Enum.Genre.Fantasy: - struct: EnumItem - Enum.Genre.Funny: - struct: EnumItem - Enum.Genre.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Genre.Ninja: - struct: EnumItem - Enum.Genre.Pirate: - struct: EnumItem - Enum.Genre.Scary: - struct: EnumItem - Enum.Genre.SciFi: - struct: EnumItem - Enum.Genre.SkatePark: - struct: EnumItem - Enum.Genre.Sports: - struct: EnumItem - Enum.Genre.TownAndCity: - struct: EnumItem - Enum.Genre.Tutorial: - struct: EnumItem - Enum.Genre.War: - struct: EnumItem - Enum.Genre.WildWest: - struct: EnumItem - Enum.GetEnums: - args: [] - method: true - must_use: true - Enum.GraphicsMode.Automatic: - struct: EnumItem - Enum.GraphicsMode.Direct3D11: - struct: EnumItem - Enum.GraphicsMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GraphicsMode.Metal: - struct: EnumItem - Enum.GraphicsMode.NoGraphics: - struct: EnumItem - Enum.GraphicsMode.OpenGL: - struct: EnumItem - Enum.GraphicsMode.Vulkan: - struct: EnumItem - Enum.GuiType.Core: - struct: EnumItem - Enum.GuiType.Custom: - struct: EnumItem - Enum.GuiType.CustomBillboards: - struct: EnumItem - Enum.GuiType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GuiType.PlayerNameplates: - struct: EnumItem - Enum.HandlesStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HandlesStyle.Movement: - struct: EnumItem - Enum.HandlesStyle.Resize: - struct: EnumItem - Enum.HighlightDepthMode.AlwaysOnTop: - struct: EnumItem - Enum.HighlightDepthMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HighlightDepthMode.Occluded: - struct: EnumItem - Enum.HorizontalAlignment.Center: - struct: EnumItem - Enum.HorizontalAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HorizontalAlignment.Left: - struct: EnumItem - Enum.HorizontalAlignment.Right: - struct: EnumItem - Enum.HoverAnimateSpeed.Fast: - struct: EnumItem - Enum.HoverAnimateSpeed.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HoverAnimateSpeed.Medium: - struct: EnumItem - Enum.HoverAnimateSpeed.Slow: - struct: EnumItem - Enum.HoverAnimateSpeed.VeryFast: - struct: EnumItem - Enum.HoverAnimateSpeed.VerySlow: - struct: EnumItem - Enum.HttpCachePolicy.DataOnly: - struct: EnumItem - Enum.HttpCachePolicy.Default: - struct: EnumItem - Enum.HttpCachePolicy.Full: - struct: EnumItem - Enum.HttpCachePolicy.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpCachePolicy.InternalRedirectRefresh: - struct: EnumItem - Enum.HttpCachePolicy.None: - struct: EnumItem - Enum.HttpContentType.ApplicationJson: - struct: EnumItem - Enum.HttpContentType.ApplicationUrlEncoded: - struct: EnumItem - Enum.HttpContentType.ApplicationXml: - struct: EnumItem - Enum.HttpContentType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpContentType.TextPlain: - struct: EnumItem - Enum.HttpContentType.TextXml: - struct: EnumItem - Enum.HttpError.Aborted: - struct: EnumItem - Enum.HttpError.ConnectFail: - struct: EnumItem - Enum.HttpError.DnsResolve: - struct: EnumItem - Enum.HttpError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpError.InvalidRedirect: - struct: EnumItem - Enum.HttpError.InvalidUrl: - struct: EnumItem - Enum.HttpError.NetFail: - struct: EnumItem - Enum.HttpError.OK: - struct: EnumItem - Enum.HttpError.OutOfMemory: - struct: EnumItem - Enum.HttpError.SslConnectFail: - struct: EnumItem - Enum.HttpError.SslVerificationFail: - struct: EnumItem - Enum.HttpError.TimedOut: - struct: EnumItem - Enum.HttpError.TooManyRedirects: - struct: EnumItem - Enum.HttpError.Unknown: - struct: EnumItem - Enum.HttpRequestType.Analytics: - struct: EnumItem - Enum.HttpRequestType.Avatar: - struct: EnumItem - Enum.HttpRequestType.Chat: - struct: EnumItem - Enum.HttpRequestType.Default: - struct: EnumItem - Enum.HttpRequestType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpRequestType.Localization: - struct: EnumItem - Enum.HttpRequestType.MarketplaceService: - struct: EnumItem - Enum.HttpRequestType.Players: - struct: EnumItem - Enum.HumanoidCollisionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidCollisionType.InnerBox: - struct: EnumItem - Enum.HumanoidCollisionType.OuterBox: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidDisplayDistanceType.None: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.Subject: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.Viewer: - struct: EnumItem - Enum.HumanoidHealthDisplayType.AlwaysOff: - struct: EnumItem - Enum.HumanoidHealthDisplayType.AlwaysOn: - struct: EnumItem - Enum.HumanoidHealthDisplayType.DisplayWhenDamaged: - struct: EnumItem - Enum.HumanoidHealthDisplayType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidOnlySetCollisionsOnStateChange.Default: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.Disabled: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.Enabled: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidRigType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidRigType.R15: - struct: EnumItem - Enum.HumanoidRigType.R6: - struct: EnumItem - Enum.HumanoidStateMachineMode.Default: - struct: EnumItem - Enum.HumanoidStateMachineMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidStateMachineMode.Legacy: - struct: EnumItem - Enum.HumanoidStateMachineMode.LuaStateMachine: - struct: EnumItem - Enum.HumanoidStateMachineMode.NoStateMachine: - struct: EnumItem - Enum.HumanoidStateType.Climbing: - struct: EnumItem - Enum.HumanoidStateType.Dead: - struct: EnumItem - Enum.HumanoidStateType.FallingDown: - struct: EnumItem - Enum.HumanoidStateType.Flying: - struct: EnumItem - Enum.HumanoidStateType.Freefall: - struct: EnumItem - Enum.HumanoidStateType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidStateType.GettingUp: - struct: EnumItem - Enum.HumanoidStateType.Jumping: - struct: EnumItem - Enum.HumanoidStateType.Landed: - struct: EnumItem - Enum.HumanoidStateType.None: - struct: EnumItem - Enum.HumanoidStateType.Physics: - struct: EnumItem - Enum.HumanoidStateType.PlatformStanding: - struct: EnumItem - Enum.HumanoidStateType.Ragdoll: - struct: EnumItem - Enum.HumanoidStateType.Running: - struct: EnumItem - Enum.HumanoidStateType.RunningNoPhysics: - struct: EnumItem - Enum.HumanoidStateType.Seated: - struct: EnumItem - Enum.HumanoidStateType.StrafingNoPhysics: - struct: EnumItem - Enum.HumanoidStateType.Swimming: - struct: EnumItem - Enum.IKCollisionsMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IKCollisionsMode.IncludeContactedMechanisms: - struct: EnumItem - Enum.IKCollisionsMode.NoCollisions: - struct: EnumItem - Enum.IKCollisionsMode.OtherMechanismsAnchored: - struct: EnumItem - Enum.IKControlType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IKControlType.LookAt: - struct: EnumItem - Enum.IKControlType.Position: - struct: EnumItem - Enum.IKControlType.Rotation: - struct: EnumItem - Enum.IKControlType.Transform: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorConnection: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorInvalidUser: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorJsonParse: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorTimedOut: - struct: EnumItem - Enum.IXPLoadingStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IXPLoadingStatus.Initialized: - struct: EnumItem - Enum.IXPLoadingStatus.None: - struct: EnumItem - Enum.IXPLoadingStatus.Pending: - struct: EnumItem - Enum.InOut.Center: - struct: EnumItem - Enum.InOut.Edge: - struct: EnumItem - Enum.InOut.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InOut.Inset: - struct: EnumItem - Enum.InfoType.Asset: - struct: EnumItem - Enum.InfoType.Bundle: - struct: EnumItem - Enum.InfoType.GamePass: - struct: EnumItem - Enum.InfoType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InfoType.Product: - struct: EnumItem - Enum.InfoType.Subscription: - struct: EnumItem - Enum.InitialDockState.Bottom: - struct: EnumItem - Enum.InitialDockState.Float: - struct: EnumItem - Enum.InitialDockState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InitialDockState.Left: - struct: EnumItem - Enum.InitialDockState.Right: - struct: EnumItem - Enum.InitialDockState.Top: - struct: EnumItem - Enum.InputType.Action1: - struct: EnumItem - deprecated: - message: Enum.InputType.Action1 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action2: - struct: EnumItem - deprecated: - message: Enum.InputType.Action2 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action3: - struct: EnumItem - deprecated: - message: Enum.InputType.Action3 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action4: - struct: EnumItem - deprecated: - message: Enum.InputType.Action4 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action5: - struct: EnumItem - deprecated: - message: Enum.InputType.Action5 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Constant: - struct: EnumItem - Enum.InputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InputType.LeftTread: - struct: EnumItem - deprecated: - message: Enum.InputType.LeftTread was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.NoInput: - struct: EnumItem - Enum.InputType.RightTread: - struct: EnumItem - deprecated: - message: Enum.InputType.RightTread was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Sin: - struct: EnumItem - Enum.InputType.Steer: - struct: EnumItem - deprecated: - message: Enum.InputType.Steer was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Throtle: - struct: EnumItem - deprecated: - message: Enum.InputType.Throtle was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Throttle: - struct: EnumItem - deprecated: - message: Enum.InputType.Throttle was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.UpDown: - struct: EnumItem - deprecated: - message: Enum.InputType.UpDown was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InterpolationThrottlingMode.Default: - struct: EnumItem - Enum.InterpolationThrottlingMode.Disabled: - struct: EnumItem - Enum.InterpolationThrottlingMode.Enabled: - struct: EnumItem - Enum.InterpolationThrottlingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.JointCreationMode.All: - struct: EnumItem - Enum.JointCreationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.JointCreationMode.None: - struct: EnumItem - Enum.JointCreationMode.Surface: - struct: EnumItem - Enum.KeyCode.A: - struct: EnumItem - Enum.KeyCode.Ampersand: - struct: EnumItem - Enum.KeyCode.Asterisk: - struct: EnumItem - Enum.KeyCode.At: - struct: EnumItem - Enum.KeyCode.B: - struct: EnumItem - Enum.KeyCode.BackSlash: - struct: EnumItem - Enum.KeyCode.Backquote: - struct: EnumItem - Enum.KeyCode.Backspace: - struct: EnumItem - Enum.KeyCode.Break: - struct: EnumItem - Enum.KeyCode.ButtonA: - struct: EnumItem - Enum.KeyCode.ButtonB: - struct: EnumItem - Enum.KeyCode.ButtonL1: - struct: EnumItem - Enum.KeyCode.ButtonL2: - struct: EnumItem - Enum.KeyCode.ButtonL3: - struct: EnumItem - Enum.KeyCode.ButtonR1: - struct: EnumItem - Enum.KeyCode.ButtonR2: - struct: EnumItem - Enum.KeyCode.ButtonR3: - struct: EnumItem - Enum.KeyCode.ButtonSelect: - struct: EnumItem - Enum.KeyCode.ButtonStart: - struct: EnumItem - Enum.KeyCode.ButtonX: - struct: EnumItem - Enum.KeyCode.ButtonY: - struct: EnumItem - Enum.KeyCode.C: - struct: EnumItem - Enum.KeyCode.CapsLock: - struct: EnumItem - Enum.KeyCode.Caret: - struct: EnumItem - Enum.KeyCode.Clear: - struct: EnumItem - Enum.KeyCode.Colon: - struct: EnumItem - Enum.KeyCode.Comma: - struct: EnumItem - Enum.KeyCode.Compose: - struct: EnumItem - Enum.KeyCode.D: - struct: EnumItem - Enum.KeyCode.DPadDown: - struct: EnumItem - Enum.KeyCode.DPadLeft: - struct: EnumItem - Enum.KeyCode.DPadRight: - struct: EnumItem - Enum.KeyCode.DPadUp: - struct: EnumItem - Enum.KeyCode.Delete: - struct: EnumItem - Enum.KeyCode.Dollar: - struct: EnumItem - Enum.KeyCode.Down: - struct: EnumItem - Enum.KeyCode.E: - struct: EnumItem - Enum.KeyCode.Eight: - struct: EnumItem - Enum.KeyCode.End: - struct: EnumItem - Enum.KeyCode.Equals: - struct: EnumItem - Enum.KeyCode.Escape: - struct: EnumItem - Enum.KeyCode.Euro: - struct: EnumItem - Enum.KeyCode.F: - struct: EnumItem - Enum.KeyCode.F1: - struct: EnumItem - Enum.KeyCode.F10: - struct: EnumItem - Enum.KeyCode.F11: - struct: EnumItem - Enum.KeyCode.F12: - struct: EnumItem - Enum.KeyCode.F13: - struct: EnumItem - Enum.KeyCode.F14: - struct: EnumItem - Enum.KeyCode.F15: - struct: EnumItem - Enum.KeyCode.F2: - struct: EnumItem - Enum.KeyCode.F3: - struct: EnumItem - Enum.KeyCode.F4: - struct: EnumItem - Enum.KeyCode.F5: - struct: EnumItem - Enum.KeyCode.F6: - struct: EnumItem - Enum.KeyCode.F7: - struct: EnumItem - Enum.KeyCode.F8: - struct: EnumItem - Enum.KeyCode.F9: - struct: EnumItem - Enum.KeyCode.Five: - struct: EnumItem - Enum.KeyCode.Four: - struct: EnumItem - Enum.KeyCode.G: - struct: EnumItem - Enum.KeyCode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeyCode.GreaterThan: - struct: EnumItem - Enum.KeyCode.H: - struct: EnumItem - Enum.KeyCode.Hash: - struct: EnumItem - Enum.KeyCode.Help: - struct: EnumItem - Enum.KeyCode.Home: - struct: EnumItem - Enum.KeyCode.I: - struct: EnumItem - Enum.KeyCode.Insert: - struct: EnumItem - Enum.KeyCode.J: - struct: EnumItem - Enum.KeyCode.K: - struct: EnumItem - Enum.KeyCode.KeypadDivide: - struct: EnumItem - Enum.KeyCode.KeypadEight: - struct: EnumItem - Enum.KeyCode.KeypadEnter: - struct: EnumItem - Enum.KeyCode.KeypadEquals: - struct: EnumItem - Enum.KeyCode.KeypadFive: - struct: EnumItem - Enum.KeyCode.KeypadFour: - struct: EnumItem - Enum.KeyCode.KeypadMinus: - struct: EnumItem - Enum.KeyCode.KeypadMultiply: - struct: EnumItem - Enum.KeyCode.KeypadNine: - struct: EnumItem - Enum.KeyCode.KeypadOne: - struct: EnumItem - Enum.KeyCode.KeypadPeriod: - struct: EnumItem - Enum.KeyCode.KeypadPlus: - struct: EnumItem - Enum.KeyCode.KeypadSeven: - struct: EnumItem - Enum.KeyCode.KeypadSix: - struct: EnumItem - Enum.KeyCode.KeypadThree: - struct: EnumItem - Enum.KeyCode.KeypadTwo: - struct: EnumItem - Enum.KeyCode.KeypadZero: - struct: EnumItem - Enum.KeyCode.L: - struct: EnumItem - Enum.KeyCode.Left: - struct: EnumItem - Enum.KeyCode.LeftAlt: - struct: EnumItem - Enum.KeyCode.LeftBracket: - struct: EnumItem - Enum.KeyCode.LeftControl: - struct: EnumItem - Enum.KeyCode.LeftCurly: - struct: EnumItem - Enum.KeyCode.LeftMeta: - struct: EnumItem - Enum.KeyCode.LeftParenthesis: - struct: EnumItem - Enum.KeyCode.LeftShift: - struct: EnumItem - Enum.KeyCode.LeftSuper: - struct: EnumItem - Enum.KeyCode.LessThan: - struct: EnumItem - Enum.KeyCode.M: - struct: EnumItem - Enum.KeyCode.Menu: - struct: EnumItem - Enum.KeyCode.Minus: - struct: EnumItem - Enum.KeyCode.Mode: - struct: EnumItem - Enum.KeyCode.N: - struct: EnumItem - Enum.KeyCode.Nine: - struct: EnumItem - Enum.KeyCode.NumLock: - struct: EnumItem - Enum.KeyCode.O: - struct: EnumItem - Enum.KeyCode.One: - struct: EnumItem - Enum.KeyCode.P: - struct: EnumItem - Enum.KeyCode.PageDown: - struct: EnumItem - Enum.KeyCode.PageUp: - struct: EnumItem - Enum.KeyCode.Pause: - struct: EnumItem - Enum.KeyCode.Percent: - struct: EnumItem - Enum.KeyCode.Period: - struct: EnumItem - Enum.KeyCode.Pipe: - struct: EnumItem - Enum.KeyCode.Plus: - struct: EnumItem - Enum.KeyCode.Power: - struct: EnumItem - Enum.KeyCode.Print: - struct: EnumItem - Enum.KeyCode.Q: - struct: EnumItem - Enum.KeyCode.Question: - struct: EnumItem - Enum.KeyCode.Quote: - struct: EnumItem - Enum.KeyCode.QuotedDouble: - struct: EnumItem - Enum.KeyCode.R: - struct: EnumItem - Enum.KeyCode.Return: - struct: EnumItem - Enum.KeyCode.Right: - struct: EnumItem - Enum.KeyCode.RightAlt: - struct: EnumItem - Enum.KeyCode.RightBracket: - struct: EnumItem - Enum.KeyCode.RightControl: - struct: EnumItem - Enum.KeyCode.RightCurly: - struct: EnumItem - Enum.KeyCode.RightMeta: - struct: EnumItem - Enum.KeyCode.RightParenthesis: - struct: EnumItem - Enum.KeyCode.RightShift: - struct: EnumItem - Enum.KeyCode.RightSuper: - struct: EnumItem - Enum.KeyCode.S: - struct: EnumItem - Enum.KeyCode.ScrollLock: - struct: EnumItem - Enum.KeyCode.Semicolon: - struct: EnumItem - Enum.KeyCode.Seven: - struct: EnumItem - Enum.KeyCode.Six: - struct: EnumItem - Enum.KeyCode.Slash: - struct: EnumItem - Enum.KeyCode.Space: - struct: EnumItem - Enum.KeyCode.SysReq: - struct: EnumItem - Enum.KeyCode.T: - struct: EnumItem - Enum.KeyCode.Tab: - struct: EnumItem - Enum.KeyCode.Three: - struct: EnumItem - Enum.KeyCode.Thumbstick1: - struct: EnumItem - Enum.KeyCode.Thumbstick2: - struct: EnumItem - Enum.KeyCode.Tilde: - struct: EnumItem - Enum.KeyCode.Two: - struct: EnumItem - Enum.KeyCode.U: - struct: EnumItem - Enum.KeyCode.Underscore: - struct: EnumItem - Enum.KeyCode.Undo: - struct: EnumItem - Enum.KeyCode.Unknown: - struct: EnumItem - Enum.KeyCode.Up: - struct: EnumItem - Enum.KeyCode.V: - struct: EnumItem - Enum.KeyCode.W: - struct: EnumItem - Enum.KeyCode.World0: - struct: EnumItem - Enum.KeyCode.World1: - struct: EnumItem - Enum.KeyCode.World10: - struct: EnumItem - Enum.KeyCode.World11: - struct: EnumItem - Enum.KeyCode.World12: - struct: EnumItem - Enum.KeyCode.World13: - struct: EnumItem - Enum.KeyCode.World14: - struct: EnumItem - Enum.KeyCode.World15: - struct: EnumItem - Enum.KeyCode.World16: - struct: EnumItem - Enum.KeyCode.World17: - struct: EnumItem - Enum.KeyCode.World18: - struct: EnumItem - Enum.KeyCode.World19: - struct: EnumItem - Enum.KeyCode.World2: - struct: EnumItem - Enum.KeyCode.World20: - struct: EnumItem - Enum.KeyCode.World21: - struct: EnumItem - Enum.KeyCode.World22: - struct: EnumItem - Enum.KeyCode.World23: - struct: EnumItem - Enum.KeyCode.World24: - struct: EnumItem - Enum.KeyCode.World25: - struct: EnumItem - Enum.KeyCode.World26: - struct: EnumItem - Enum.KeyCode.World27: - struct: EnumItem - Enum.KeyCode.World28: - struct: EnumItem - Enum.KeyCode.World29: - struct: EnumItem - Enum.KeyCode.World3: - struct: EnumItem - Enum.KeyCode.World30: - struct: EnumItem - Enum.KeyCode.World31: - struct: EnumItem - Enum.KeyCode.World32: - struct: EnumItem - Enum.KeyCode.World33: - struct: EnumItem - Enum.KeyCode.World34: - struct: EnumItem - Enum.KeyCode.World35: - struct: EnumItem - Enum.KeyCode.World36: - struct: EnumItem - Enum.KeyCode.World37: - struct: EnumItem - Enum.KeyCode.World38: - struct: EnumItem - Enum.KeyCode.World39: - struct: EnumItem - Enum.KeyCode.World4: - struct: EnumItem - Enum.KeyCode.World40: - struct: EnumItem - Enum.KeyCode.World41: - struct: EnumItem - Enum.KeyCode.World42: - struct: EnumItem - Enum.KeyCode.World43: - struct: EnumItem - Enum.KeyCode.World44: - struct: EnumItem - Enum.KeyCode.World45: - struct: EnumItem - Enum.KeyCode.World46: - struct: EnumItem - Enum.KeyCode.World47: - struct: EnumItem - Enum.KeyCode.World48: - struct: EnumItem - Enum.KeyCode.World49: - struct: EnumItem - Enum.KeyCode.World5: - struct: EnumItem - Enum.KeyCode.World50: - struct: EnumItem - Enum.KeyCode.World51: - struct: EnumItem - Enum.KeyCode.World52: - struct: EnumItem - Enum.KeyCode.World53: - struct: EnumItem - Enum.KeyCode.World54: - struct: EnumItem - Enum.KeyCode.World55: - struct: EnumItem - Enum.KeyCode.World56: - struct: EnumItem - Enum.KeyCode.World57: - struct: EnumItem - Enum.KeyCode.World58: - struct: EnumItem - Enum.KeyCode.World59: - struct: EnumItem - Enum.KeyCode.World6: - struct: EnumItem - Enum.KeyCode.World60: - struct: EnumItem - Enum.KeyCode.World61: - struct: EnumItem - Enum.KeyCode.World62: - struct: EnumItem - Enum.KeyCode.World63: - struct: EnumItem - Enum.KeyCode.World64: - struct: EnumItem - Enum.KeyCode.World65: - struct: EnumItem - Enum.KeyCode.World66: - struct: EnumItem - Enum.KeyCode.World67: - struct: EnumItem - Enum.KeyCode.World68: - struct: EnumItem - Enum.KeyCode.World69: - struct: EnumItem - Enum.KeyCode.World7: - struct: EnumItem - Enum.KeyCode.World70: - struct: EnumItem - Enum.KeyCode.World71: - struct: EnumItem - Enum.KeyCode.World72: - struct: EnumItem - Enum.KeyCode.World73: - struct: EnumItem - Enum.KeyCode.World74: - struct: EnumItem - Enum.KeyCode.World75: - struct: EnumItem - Enum.KeyCode.World76: - struct: EnumItem - Enum.KeyCode.World77: - struct: EnumItem - Enum.KeyCode.World78: - struct: EnumItem - Enum.KeyCode.World79: - struct: EnumItem - Enum.KeyCode.World8: - struct: EnumItem - Enum.KeyCode.World80: - struct: EnumItem - Enum.KeyCode.World81: - struct: EnumItem - Enum.KeyCode.World82: - struct: EnumItem - Enum.KeyCode.World83: - struct: EnumItem - Enum.KeyCode.World84: - struct: EnumItem - Enum.KeyCode.World85: - struct: EnumItem - Enum.KeyCode.World86: - struct: EnumItem - Enum.KeyCode.World87: - struct: EnumItem - Enum.KeyCode.World88: - struct: EnumItem - Enum.KeyCode.World89: - struct: EnumItem - Enum.KeyCode.World9: - struct: EnumItem - Enum.KeyCode.World90: - struct: EnumItem - Enum.KeyCode.World91: - struct: EnumItem - Enum.KeyCode.World92: - struct: EnumItem - Enum.KeyCode.World93: - struct: EnumItem - Enum.KeyCode.World94: - struct: EnumItem - Enum.KeyCode.World95: - struct: EnumItem - Enum.KeyCode.X: - struct: EnumItem - Enum.KeyCode.Y: - struct: EnumItem - Enum.KeyCode.Z: - struct: EnumItem - Enum.KeyCode.Zero: - struct: EnumItem - Enum.KeyInterpolationMode.Constant: - struct: EnumItem - Enum.KeyInterpolationMode.Cubic: - struct: EnumItem - Enum.KeyInterpolationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeyInterpolationMode.Linear: - struct: EnumItem - Enum.KeywordFilterType.Exclude: - struct: EnumItem - Enum.KeywordFilterType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeywordFilterType.Include: - struct: EnumItem - Enum.Language.Default: - struct: EnumItem - Enum.Language.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LeftRight.Center: - struct: EnumItem - Enum.LeftRight.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LeftRight.Left: - struct: EnumItem - Enum.LeftRight.Right: - struct: EnumItem - Enum.Limb.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Limb.Head: - struct: EnumItem - Enum.Limb.LeftArm: - struct: EnumItem - Enum.Limb.LeftLeg: - struct: EnumItem - Enum.Limb.RightArm: - struct: EnumItem - Enum.Limb.RightLeg: - struct: EnumItem - Enum.Limb.Torso: - struct: EnumItem - Enum.Limb.Unknown: - struct: EnumItem - Enum.LineJoinMode.Bevel: - struct: EnumItem - Enum.LineJoinMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LineJoinMode.Miter: - struct: EnumItem - Enum.LineJoinMode.Round: - struct: EnumItem - Enum.ListDisplayMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ListDisplayMode.Horizontal: - struct: EnumItem - Enum.ListDisplayMode.Vertical: - struct: EnumItem - Enum.ListenerType.CFrame: - struct: EnumItem - Enum.ListenerType.Camera: - struct: EnumItem - Enum.ListenerType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ListenerType.ObjectCFrame: - struct: EnumItem - Enum.ListenerType.ObjectPosition: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Default: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Disabled: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Enabled: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LoadDynamicHeads.Default: - struct: EnumItem - Enum.LoadDynamicHeads.Disabled: - struct: EnumItem - Enum.LoadDynamicHeads.Enabled: - struct: EnumItem - Enum.LoadDynamicHeads.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MarkupKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MarkupKind.Markdown: - struct: EnumItem - Enum.MarkupKind.PlainText: - struct: EnumItem - Enum.Material.Air: - struct: EnumItem - Enum.Material.Aluminum: - struct: EnumItem - deprecated: - message: Enum.Material.Aluminum was replaced with Enum.Material.Foil - replace: - - Enum.Material.Foil - Enum.Material.Asphalt: - struct: EnumItem - Enum.Material.Basalt: - struct: EnumItem - Enum.Material.Brick: - struct: EnumItem - Enum.Material.Cobblestone: - struct: EnumItem - Enum.Material.Concrete: - struct: EnumItem - Enum.Material.Corroded Metal: - struct: EnumItem - deprecated: - message: Enum.Material.Corroded Metal was replaced with Enum.Material.CorrodedMetal - replace: - - Enum.Material.CorrodedMetal - Enum.Material.CorrodedMetal: - struct: EnumItem - Enum.Material.CrackedLava: - struct: EnumItem - Enum.Material.DiamondPlate: - struct: EnumItem - Enum.Material.Fabric: - struct: EnumItem - Enum.Material.Foil: - struct: EnumItem - Enum.Material.ForceField: - struct: EnumItem - Enum.Material.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Material.Glacier: - struct: EnumItem - Enum.Material.Glass: - struct: EnumItem - Enum.Material.Granite: - struct: EnumItem - Enum.Material.Grass: - struct: EnumItem - Enum.Material.Ground: - struct: EnumItem - Enum.Material.Ice: - struct: EnumItem - Enum.Material.LeafyGrass: - struct: EnumItem - Enum.Material.Limestone: - struct: EnumItem - Enum.Material.Marble: - struct: EnumItem - Enum.Material.Metal: - struct: EnumItem - Enum.Material.Mud: - struct: EnumItem - Enum.Material.Neon: - struct: EnumItem - Enum.Material.Pavement: - struct: EnumItem - Enum.Material.Pebble: - struct: EnumItem - Enum.Material.Plastic: - struct: EnumItem - Enum.Material.Rock: - struct: EnumItem - Enum.Material.Salt: - struct: EnumItem - Enum.Material.Sand: - struct: EnumItem - Enum.Material.Sandstone: - struct: EnumItem - Enum.Material.Slate: - struct: EnumItem - Enum.Material.SmoothPlastic: - struct: EnumItem - Enum.Material.Snow: - struct: EnumItem - Enum.Material.Water: - struct: EnumItem - Enum.Material.Wood: - struct: EnumItem - Enum.Material.WoodPlanks: - struct: EnumItem - Enum.MaterialPattern.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MaterialPattern.Organic: - struct: EnumItem - Enum.MaterialPattern.Regular: - struct: EnumItem - Enum.MembershipType.BuildersClub: - struct: EnumItem - Enum.MembershipType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MembershipType.None: - struct: EnumItem - Enum.MembershipType.OutrageousBuildersClub: - struct: EnumItem - Enum.MembershipType.Premium: - struct: EnumItem - Enum.MembershipType.TurboBuildersClub: - struct: EnumItem - Enum.MeshPartDetailLevel.DistanceBased: - struct: EnumItem - Enum.MeshPartDetailLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshPartDetailLevel.Level00: - struct: EnumItem - Enum.MeshPartDetailLevel.Level01: - struct: EnumItem - Enum.MeshPartDetailLevel.Level02: - struct: EnumItem - Enum.MeshPartDetailLevel.Level03: - struct: EnumItem - Enum.MeshPartDetailLevel.Level04: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Default: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Disabled: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Enabled: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshScaleUnit.CM: - struct: EnumItem - Enum.MeshScaleUnit.Foot: - struct: EnumItem - Enum.MeshScaleUnit.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshScaleUnit.Inch: - struct: EnumItem - Enum.MeshScaleUnit.MM: - struct: EnumItem - Enum.MeshScaleUnit.Meter: - struct: EnumItem - Enum.MeshScaleUnit.Stud: - struct: EnumItem - Enum.MeshType.Brick: - struct: EnumItem - Enum.MeshType.CornerWedge: - struct: EnumItem - Enum.MeshType.Cylinder: - struct: EnumItem - Enum.MeshType.FileMesh: - struct: EnumItem - Enum.MeshType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshType.Head: - struct: EnumItem - Enum.MeshType.ParallelRamp: - struct: EnumItem - Enum.MeshType.Prism: - struct: EnumItem - Enum.MeshType.Pyramid: - struct: EnumItem - Enum.MeshType.RightAngleRamp: - struct: EnumItem - Enum.MeshType.Sphere: - struct: EnumItem - Enum.MeshType.Torso: - struct: EnumItem - Enum.MeshType.Wedge: - struct: EnumItem - Enum.MessageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MessageType.MessageError: - struct: EnumItem - Enum.MessageType.MessageInfo: - struct: EnumItem - Enum.MessageType.MessageOutput: - struct: EnumItem - Enum.MessageType.MessageWarning: - struct: EnumItem - Enum.ModelLevelOfDetail.Automatic: - struct: EnumItem - Enum.ModelLevelOfDetail.Disabled: - struct: EnumItem - Enum.ModelLevelOfDetail.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModelLevelOfDetail.StreamingMesh: - struct: EnumItem - Enum.ModelStreamingMode.Atomic: - struct: EnumItem - Enum.ModelStreamingMode.Default: - struct: EnumItem - Enum.ModelStreamingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModelStreamingMode.Nonatomic: - struct: EnumItem - Enum.ModelStreamingMode.Persistent: - struct: EnumItem - Enum.ModelStreamingMode.PersistentPerPlayer: - struct: EnumItem - Enum.ModifierKey.Alt: - struct: EnumItem - Enum.ModifierKey.Ctrl: - struct: EnumItem - Enum.ModifierKey.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModifierKey.Meta: - struct: EnumItem - Enum.ModifierKey.Shift: - struct: EnumItem - Enum.MouseBehavior.Default: - struct: EnumItem - Enum.MouseBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MouseBehavior.LockCenter: - struct: EnumItem - Enum.MouseBehavior.LockCurrentPosition: - struct: EnumItem - Enum.MoveState.AirFree: - struct: EnumItem - Enum.MoveState.Coasting: - struct: EnumItem - Enum.MoveState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MoveState.Pushing: - struct: EnumItem - Enum.MoveState.Stopped: - struct: EnumItem - Enum.MoveState.Stopping: - struct: EnumItem - Enum.MuteState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MuteState.Muted: - struct: EnumItem - Enum.MuteState.Unmuted: - struct: EnumItem - Enum.NameOcclusion.EnemyOcclusion: - struct: EnumItem - Enum.NameOcclusion.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NameOcclusion.NoOcclusion: - struct: EnumItem - Enum.NameOcclusion.OccludeAll: - struct: EnumItem - Enum.NetworkOwnership.Automatic: - struct: EnumItem - Enum.NetworkOwnership.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NetworkOwnership.Manual: - struct: EnumItem - Enum.NetworkOwnership.OnContact: - struct: EnumItem - Enum.NormalId.Back: - struct: EnumItem - Enum.NormalId.Bottom: - struct: EnumItem - Enum.NormalId.Front: - struct: EnumItem - Enum.NormalId.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NormalId.Left: - struct: EnumItem - Enum.NormalId.Right: - struct: EnumItem - Enum.NormalId.Top: - struct: EnumItem - Enum.OrientationAlignmentMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OrientationAlignmentMode.OneAttachment: - struct: EnumItem - Enum.OrientationAlignmentMode.TwoAttachment: - struct: EnumItem - Enum.OutfitSource.All: - struct: EnumItem - Enum.OutfitSource.Created: - struct: EnumItem - Enum.OutfitSource.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutfitSource.Purchased: - struct: EnumItem - Enum.OutfitType.All: - struct: EnumItem - Enum.OutfitType.Avatar: - struct: EnumItem - Enum.OutfitType.DynamicHead: - struct: EnumItem - Enum.OutfitType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutputLayoutMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutputLayoutMode.Horizontal: - struct: EnumItem - Enum.OutputLayoutMode.Vertical: - struct: EnumItem - Enum.OverrideMouseIconBehavior.ForceHide: - struct: EnumItem - Enum.OverrideMouseIconBehavior.ForceShow: - struct: EnumItem - Enum.OverrideMouseIconBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OverrideMouseIconBehavior.None: - struct: EnumItem - Enum.PackagePermission.Edit: - struct: EnumItem - Enum.PackagePermission.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PackagePermission.NoAccess: - struct: EnumItem - Enum.PackagePermission.None: - struct: EnumItem - Enum.PackagePermission.Own: - struct: EnumItem - Enum.PackagePermission.Revoked: - struct: EnumItem - Enum.PackagePermission.UseView: - struct: EnumItem - Enum.PartType.Ball: - struct: EnumItem - Enum.PartType.Block: - struct: EnumItem - Enum.PartType.Cylinder: - struct: EnumItem - Enum.PartType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShape.Box: - struct: EnumItem - Enum.ParticleEmitterShape.Cylinder: - struct: EnumItem - Enum.ParticleEmitterShape.Disc: - struct: EnumItem - Enum.ParticleEmitterShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShape.Sphere: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShapeInOut.InAndOut: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.Inward: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.Outward: - struct: EnumItem - Enum.ParticleEmitterShapeStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShapeStyle.Surface: - struct: EnumItem - Enum.ParticleEmitterShapeStyle.Volume: - struct: EnumItem - Enum.ParticleFlipbookLayout.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookLayout.Grid2x2: - struct: EnumItem - Enum.ParticleFlipbookLayout.Grid4x4: - struct: EnumItem - Enum.ParticleFlipbookLayout.Grid8x8: - struct: EnumItem - Enum.ParticleFlipbookLayout.None: - struct: EnumItem - Enum.ParticleFlipbookMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookMode.Loop: - struct: EnumItem - Enum.ParticleFlipbookMode.OneShot: - struct: EnumItem - Enum.ParticleFlipbookMode.PingPong: - struct: EnumItem - Enum.ParticleFlipbookMode.Random: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.Compatible: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookTextureCompatible.NotCompatible: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.Unknown: - struct: EnumItem - Enum.ParticleOrientation.FacingCamera: - struct: EnumItem - Enum.ParticleOrientation.FacingCameraWorldUp: - struct: EnumItem - Enum.ParticleOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleOrientation.VelocityParallel: - struct: EnumItem - Enum.ParticleOrientation.VelocityPerpendicular: - struct: EnumItem - Enum.PathStatus.ClosestNoPath: - struct: EnumItem - Enum.PathStatus.ClosestOutOfRange: - struct: EnumItem - Enum.PathStatus.FailFinishNotEmpty: - struct: EnumItem - Enum.PathStatus.FailStartNotEmpty: - struct: EnumItem - Enum.PathStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PathStatus.NoPath: - struct: EnumItem - Enum.PathStatus.Success: - struct: EnumItem - Enum.PathWaypointAction.Custom: - struct: EnumItem - Enum.PathWaypointAction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PathWaypointAction.Jump: - struct: EnumItem - Enum.PathWaypointAction.Walk: - struct: EnumItem - Enum.PermissionLevelShown.Game: - struct: EnumItem - Enum.PermissionLevelShown.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PermissionLevelShown.Roblox: - struct: EnumItem - Enum.PermissionLevelShown.RobloxGame: - struct: EnumItem - Enum.PermissionLevelShown.RobloxScript: - struct: EnumItem - Enum.PermissionLevelShown.Studio: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed120Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed240Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed60Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PhysicsSteppingMethod.Adaptive: - struct: EnumItem - Enum.PhysicsSteppingMethod.Default: - struct: EnumItem - Enum.PhysicsSteppingMethod.Fixed: - struct: EnumItem - Enum.PhysicsSteppingMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Platform.Android: - struct: EnumItem - Enum.Platform.AndroidTV: - struct: EnumItem - Enum.Platform.BeOS: - struct: EnumItem - Enum.Platform.Chromecast: - struct: EnumItem - Enum.Platform.DOS: - struct: EnumItem - Enum.Platform.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Platform.IOS: - struct: EnumItem - Enum.Platform.Linux: - struct: EnumItem - Enum.Platform.NX: - struct: EnumItem - Enum.Platform.None: - struct: EnumItem - Enum.Platform.OSX: - struct: EnumItem - Enum.Platform.Ouya: - struct: EnumItem - Enum.Platform.PS3: - struct: EnumItem - Enum.Platform.PS4: - struct: EnumItem - Enum.Platform.SteamOS: - struct: EnumItem - Enum.Platform.UWP: - struct: EnumItem - Enum.Platform.WebOS: - struct: EnumItem - Enum.Platform.WiiU: - struct: EnumItem - Enum.Platform.Windows: - struct: EnumItem - Enum.Platform.XBox360: - struct: EnumItem - Enum.Platform.XBoxOne: - struct: EnumItem - Enum.PlaybackState.Begin: - struct: EnumItem - Enum.PlaybackState.Cancelled: - struct: EnumItem - Enum.PlaybackState.Completed: - struct: EnumItem - Enum.PlaybackState.Delayed: - struct: EnumItem - Enum.PlaybackState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlaybackState.Paused: - struct: EnumItem - Enum.PlaybackState.Playing: - struct: EnumItem - Enum.PlayerActions.CharacterBackward: - struct: EnumItem - Enum.PlayerActions.CharacterForward: - struct: EnumItem - Enum.PlayerActions.CharacterJump: - struct: EnumItem - Enum.PlayerActions.CharacterLeft: - struct: EnumItem - Enum.PlayerActions.CharacterRight: - struct: EnumItem - Enum.PlayerActions.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlayerChatType.All: - struct: EnumItem - Enum.PlayerChatType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlayerChatType.Team: - struct: EnumItem - Enum.PlayerChatType.Whisper: - struct: EnumItem - Enum.PoseEasingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PoseEasingDirection.In: - struct: EnumItem - Enum.PoseEasingDirection.InOut: - struct: EnumItem - Enum.PoseEasingDirection.Out: - struct: EnumItem - Enum.PoseEasingStyle.Bounce: - struct: EnumItem - Enum.PoseEasingStyle.Constant: - struct: EnumItem - Enum.PoseEasingStyle.Cubic: - struct: EnumItem - Enum.PoseEasingStyle.Elastic: - struct: EnumItem - Enum.PoseEasingStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PoseEasingStyle.Linear: - struct: EnumItem - Enum.PositionAlignmentMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PositionAlignmentMode.OneAttachment: - struct: EnumItem - Enum.PositionAlignmentMode.TwoAttachment: - struct: EnumItem - Enum.PrivilegeType.Admin: - struct: EnumItem - Enum.PrivilegeType.Banned: - struct: EnumItem - Enum.PrivilegeType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PrivilegeType.Member: - struct: EnumItem - Enum.PrivilegeType.Owner: - struct: EnumItem - Enum.PrivilegeType.Visitor: - struct: EnumItem - Enum.ProductLocationRestriction.AllGames: - struct: EnumItem - Enum.ProductLocationRestriction.AllowedGames: - struct: EnumItem - Enum.ProductLocationRestriction.AvatarShop: - struct: EnumItem - Enum.ProductLocationRestriction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProductPurchaseDecision.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProductPurchaseDecision.NotProcessedYet: - struct: EnumItem - Enum.ProductPurchaseDecision.PurchaseGranted: - struct: EnumItem - Enum.PromptPublishAssetResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PromptPublishAssetResult.NoUserInput: - struct: EnumItem - Enum.PromptPublishAssetResult.PermissionDenied: - struct: EnumItem - Enum.PromptPublishAssetResult.Success: - struct: EnumItem - Enum.PromptPublishAssetResult.Timeout: - struct: EnumItem - Enum.PromptPublishAssetResult.UploadFailed: - struct: EnumItem - Enum.PropertyStatus.Error: - struct: EnumItem - Enum.PropertyStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PropertyStatus.Ok: - struct: EnumItem - Enum.PropertyStatus.Warning: - struct: EnumItem - Enum.ProximityPromptExclusivity.AlwaysShow: - struct: EnumItem - Enum.ProximityPromptExclusivity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProximityPromptExclusivity.OneGlobally: - struct: EnumItem - Enum.ProximityPromptExclusivity.OnePerButton: - struct: EnumItem - Enum.ProximityPromptInputType.Gamepad: - struct: EnumItem - Enum.ProximityPromptInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProximityPromptInputType.Keyboard: - struct: EnumItem - Enum.ProximityPromptInputType.Touch: - struct: EnumItem - Enum.ProximityPromptStyle.Custom: - struct: EnumItem - Enum.ProximityPromptStyle.Default: - struct: EnumItem - Enum.ProximityPromptStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.QualityLevel.Automatic: - struct: EnumItem - Enum.QualityLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.QualityLevel.Level 1: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 1 was replaced with Enum.QualityLevel.Level01 - replace: - - Enum.QualityLevel.Level01 - Enum.QualityLevel.Level 2: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 2 was replaced with Enum.QualityLevel.Level02 - replace: - - Enum.QualityLevel.Level02 - Enum.QualityLevel.Level 3: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 3 was replaced with Enum.QualityLevel.Level03 - replace: - - Enum.QualityLevel.Level03 - Enum.QualityLevel.Level 4: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 4 was replaced with Enum.QualityLevel.Level04 - replace: - - Enum.QualityLevel.Level04 - Enum.QualityLevel.Level 5: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 5 was replaced with Enum.QualityLevel.Level05 - replace: - - Enum.QualityLevel.Level05 - Enum.QualityLevel.Level 6: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 6 was replaced with Enum.QualityLevel.Level06 - replace: - - Enum.QualityLevel.Level06 - Enum.QualityLevel.Level 7: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 7 was replaced with Enum.QualityLevel.Level07 - replace: - - Enum.QualityLevel.Level07 - Enum.QualityLevel.Level 8: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 8 was replaced with Enum.QualityLevel.Level08 - replace: - - Enum.QualityLevel.Level08 - Enum.QualityLevel.Level 9: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 9 was replaced with Enum.QualityLevel.Level09 - replace: - - Enum.QualityLevel.Level09 - Enum.QualityLevel.Level 10: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 10 was replaced with Enum.QualityLevel.Level10 - replace: - - Enum.QualityLevel.Level10 - Enum.QualityLevel.Level 11: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 11 was replaced with Enum.QualityLevel.Level11 - replace: - - Enum.QualityLevel.Level11 - Enum.QualityLevel.Level 12: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 12 was replaced with Enum.QualityLevel.Level12 - replace: - - Enum.QualityLevel.Level12 - Enum.QualityLevel.Level 13: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 13 was replaced with Enum.QualityLevel.Level13 - replace: - - Enum.QualityLevel.Level13 - Enum.QualityLevel.Level 14: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 14 was replaced with Enum.QualityLevel.Level14 - replace: - - Enum.QualityLevel.Level14 - Enum.QualityLevel.Level 15: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 15 was replaced with Enum.QualityLevel.Level15 - replace: - - Enum.QualityLevel.Level15 - Enum.QualityLevel.Level 16: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 16 was replaced with Enum.QualityLevel.Level16 - replace: - - Enum.QualityLevel.Level16 - Enum.QualityLevel.Level 17: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 17 was replaced with Enum.QualityLevel.Level17 - replace: - - Enum.QualityLevel.Level17 - Enum.QualityLevel.Level 18: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 18 was replaced with Enum.QualityLevel.Level18 - replace: - - Enum.QualityLevel.Level18 - Enum.QualityLevel.Level 19: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 19 was replaced with Enum.QualityLevel.Level19 - replace: - - Enum.QualityLevel.Level19 - Enum.QualityLevel.Level 20: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 20 was replaced with Enum.QualityLevel.Level20 - replace: - - Enum.QualityLevel.Level20 - Enum.QualityLevel.Level 21: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 21 was replaced with Enum.QualityLevel.Level21 - replace: - - Enum.QualityLevel.Level21 - Enum.QualityLevel.Level01: - struct: EnumItem - Enum.QualityLevel.Level02: - struct: EnumItem - Enum.QualityLevel.Level03: - struct: EnumItem - Enum.QualityLevel.Level04: - struct: EnumItem - Enum.QualityLevel.Level05: - struct: EnumItem - Enum.QualityLevel.Level06: - struct: EnumItem - Enum.QualityLevel.Level07: - struct: EnumItem - Enum.QualityLevel.Level08: - struct: EnumItem - Enum.QualityLevel.Level09: - struct: EnumItem - Enum.QualityLevel.Level10: - struct: EnumItem - Enum.QualityLevel.Level11: - struct: EnumItem - Enum.QualityLevel.Level12: - struct: EnumItem - Enum.QualityLevel.Level13: - struct: EnumItem - Enum.QualityLevel.Level14: - struct: EnumItem - Enum.QualityLevel.Level15: - struct: EnumItem - Enum.QualityLevel.Level16: - struct: EnumItem - Enum.QualityLevel.Level17: - struct: EnumItem - Enum.QualityLevel.Level18: - struct: EnumItem - Enum.QualityLevel.Level19: - struct: EnumItem - Enum.QualityLevel.Level20: - struct: EnumItem - Enum.QualityLevel.Level21: - struct: EnumItem - Enum.R15CollisionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.R15CollisionType.InnerBox: - struct: EnumItem - Enum.R15CollisionType.OuterBox: - struct: EnumItem - Enum.RaycastFilterType.Blacklist: - struct: EnumItem - deprecated: - message: Enum.RaycastFilterType.Blacklist was replaced with Enum.RaycastFilterType.Exclude - replace: - - Enum.RaycastFilterType.Exclude - Enum.RaycastFilterType.Exclude: - struct: EnumItem - Enum.RaycastFilterType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RaycastFilterType.Include: - struct: EnumItem - Enum.RaycastFilterType.Whitelist: - struct: EnumItem - deprecated: - message: Enum.RaycastFilterType.Whitelist was replaced with Enum.RaycastFilterType.Include - replace: - - Enum.RaycastFilterType.Include - Enum.RejectCharacterDeletions.Default: - struct: EnumItem - Enum.RejectCharacterDeletions.Disabled: - struct: EnumItem - Enum.RejectCharacterDeletions.Enabled: - struct: EnumItem - Enum.RejectCharacterDeletions.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderFidelity.Automatic: - struct: EnumItem - Enum.RenderFidelity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderFidelity.Performance: - struct: EnumItem - Enum.RenderFidelity.Precise: - struct: EnumItem - Enum.RenderPriority.Camera: - struct: EnumItem - Enum.RenderPriority.Character: - struct: EnumItem - Enum.RenderPriority.First: - struct: EnumItem - Enum.RenderPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderPriority.Input: - struct: EnumItem - Enum.RenderPriority.Last: - struct: EnumItem - Enum.RenderingTestComparisonMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderingTestComparisonMethod.diff: - struct: EnumItem - Enum.RenderingTestComparisonMethod.psnr: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Default: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Disabled: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Enabled: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ResamplerMode.Default: - struct: EnumItem - Enum.ResamplerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ResamplerMode.Pixelated: - struct: EnumItem - Enum.ReservedHighlightId.Active: - struct: EnumItem - Enum.ReservedHighlightId.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReservedHighlightId.Hover: - struct: EnumItem - Enum.ReservedHighlightId.Selection: - struct: EnumItem - Enum.ReservedHighlightId.Standard: - struct: EnumItem - Enum.ReturnKeyType.Default: - struct: EnumItem - Enum.ReturnKeyType.Done: - struct: EnumItem - Enum.ReturnKeyType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReturnKeyType.Go: - struct: EnumItem - Enum.ReturnKeyType.Next: - struct: EnumItem - Enum.ReturnKeyType.Search: - struct: EnumItem - Enum.ReturnKeyType.Send: - struct: EnumItem - Enum.ReverbType.Alley: - struct: EnumItem - Enum.ReverbType.Arena: - struct: EnumItem - Enum.ReverbType.Auditorium: - struct: EnumItem - Enum.ReverbType.Bathroom: - struct: EnumItem - Enum.ReverbType.CarpettedHallway: - struct: EnumItem - Enum.ReverbType.Cave: - struct: EnumItem - Enum.ReverbType.City: - struct: EnumItem - Enum.ReverbType.ConcertHall: - struct: EnumItem - Enum.ReverbType.Forest: - struct: EnumItem - Enum.ReverbType.GenericReverb: - struct: EnumItem - Enum.ReverbType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReverbType.Hallway: - struct: EnumItem - Enum.ReverbType.Hangar: - struct: EnumItem - Enum.ReverbType.LivingRoom: - struct: EnumItem - Enum.ReverbType.Mountains: - struct: EnumItem - Enum.ReverbType.NoReverb: - struct: EnumItem - Enum.ReverbType.PaddedCell: - struct: EnumItem - Enum.ReverbType.ParkingLot: - struct: EnumItem - Enum.ReverbType.Plain: - struct: EnumItem - Enum.ReverbType.Quarry: - struct: EnumItem - Enum.ReverbType.Room: - struct: EnumItem - Enum.ReverbType.SewerPipe: - struct: EnumItem - Enum.ReverbType.StoneCorridor: - struct: EnumItem - Enum.ReverbType.StoneRoom: - struct: EnumItem - Enum.ReverbType.UnderWater: - struct: EnumItem - Enum.RibbonTool.ColorPicker: - struct: EnumItem - Enum.RibbonTool.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RibbonTool.Group: - struct: EnumItem - Enum.RibbonTool.MaterialPicker: - struct: EnumItem - Enum.RibbonTool.Move: - struct: EnumItem - Enum.RibbonTool.None: - struct: EnumItem - Enum.RibbonTool.Rotate: - struct: EnumItem - Enum.RibbonTool.Scale: - struct: EnumItem - Enum.RibbonTool.Select: - struct: EnumItem - Enum.RibbonTool.Transform: - struct: EnumItem - Enum.RibbonTool.Ungroup: - struct: EnumItem - Enum.RigScale.Default: - struct: EnumItem - Enum.RigScale.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RigScale.Rthro: - struct: EnumItem - Enum.RigScale.RthroNarrow: - struct: EnumItem - Enum.RigType.Custom: - struct: EnumItem - Enum.RigType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RigType.None: - struct: EnumItem - Enum.RigType.R15: - struct: EnumItem - Enum.RigType.Rthro: - struct: EnumItem - Enum.RigType.RthroNarrow: - struct: EnumItem - Enum.RollOffMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RollOffMode.Inverse: - struct: EnumItem - Enum.RollOffMode.InverseTapered: - struct: EnumItem - Enum.RollOffMode.Linear: - struct: EnumItem - Enum.RollOffMode.LinearSquare: - struct: EnumItem - Enum.RotationOrder.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RotationOrder.XYZ: - struct: EnumItem - Enum.RotationOrder.XZY: - struct: EnumItem - Enum.RotationOrder.YXZ: - struct: EnumItem - Enum.RotationOrder.YZX: - struct: EnumItem - Enum.RotationOrder.ZXY: - struct: EnumItem - Enum.RotationOrder.ZYX: - struct: EnumItem - Enum.RotationType.CameraRelative: - struct: EnumItem - Enum.RotationType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RotationType.MovementRelative: - struct: EnumItem - Enum.RtlTextSupport.Default: - struct: EnumItem - Enum.RtlTextSupport.Disabled: - struct: EnumItem - Enum.RtlTextSupport.Enabled: - struct: EnumItem - Enum.RtlTextSupport.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RunContext.Client: - struct: EnumItem - Enum.RunContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RunContext.Legacy: - struct: EnumItem - Enum.RunContext.Plugin: - struct: EnumItem - Enum.RunContext.Server: - struct: EnumItem - Enum.RuntimeUndoBehavior.Aggregate: - struct: EnumItem - Enum.RuntimeUndoBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RuntimeUndoBehavior.Hybrid: - struct: EnumItem - Enum.RuntimeUndoBehavior.Snapshot: - struct: EnumItem - Enum.SafeAreaCompatibility.FullscreenExtension: - struct: EnumItem - Enum.SafeAreaCompatibility.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SafeAreaCompatibility.None: - struct: EnumItem - Enum.SalesTypeFilter.All: - struct: EnumItem - Enum.SalesTypeFilter.Collectibles: - struct: EnumItem - Enum.SalesTypeFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SalesTypeFilter.Premium: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadDistanceScale: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadFieldOfViewDeg: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadThumbnailType: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadYRotDeg: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SaveAvatarThumbnailCustomizationFailure.Other: - struct: EnumItem - Enum.SaveFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SaveFilter.SaveAll: - struct: EnumItem - Enum.SaveFilter.SaveGame: - struct: EnumItem - Enum.SaveFilter.SaveWorld: - struct: EnumItem - Enum.SavedQualitySetting.Automatic: - struct: EnumItem - Enum.SavedQualitySetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SavedQualitySetting.QualityLevel1: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel10: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel2: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel3: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel4: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel5: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel6: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel7: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel8: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel9: - struct: EnumItem - Enum.ScaleType.Crop: - struct: EnumItem - Enum.ScaleType.Fit: - struct: EnumItem - Enum.ScaleType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScaleType.Slice: - struct: EnumItem - Enum.ScaleType.Stretch: - struct: EnumItem - Enum.ScaleType.Tile: - struct: EnumItem - Enum.ScopeCheckResult.BackendError: - struct: EnumItem - Enum.ScopeCheckResult.ConsentAccepted: - struct: EnumItem - Enum.ScopeCheckResult.ConsentDenied: - struct: EnumItem - Enum.ScopeCheckResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScopeCheckResult.InvalidArgument: - struct: EnumItem - Enum.ScopeCheckResult.InvalidScopes: - struct: EnumItem - Enum.ScopeCheckResult.NoUserInput: - struct: EnumItem - Enum.ScopeCheckResult.Timeout: - struct: EnumItem - Enum.ScopeCheckResult.UnexpectedError: - struct: EnumItem - Enum.ScreenInsets.CoreUISafeInsets: - struct: EnumItem - Enum.ScreenInsets.DeviceSafeInsets: - struct: EnumItem - Enum.ScreenInsets.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScreenInsets.None: - struct: EnumItem - Enum.ScreenOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScreenOrientation.LandscapeLeft: - struct: EnumItem - Enum.ScreenOrientation.LandscapeRight: - struct: EnumItem - Enum.ScreenOrientation.LandscapeSensor: - struct: EnumItem - Enum.ScreenOrientation.Portrait: - struct: EnumItem - Enum.ScreenOrientation.Sensor: - struct: EnumItem - Enum.ScrollBarInset.Always: - struct: EnumItem - Enum.ScrollBarInset.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScrollBarInset.None: - struct: EnumItem - Enum.ScrollBarInset.ScrollBar: - struct: EnumItem - Enum.ScrollingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScrollingDirection.X: - struct: EnumItem - Enum.ScrollingDirection.XY: - struct: EnumItem - Enum.ScrollingDirection.Y: - struct: EnumItem - Enum.SelectionBehavior.Escape: - struct: EnumItem - Enum.SelectionBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SelectionBehavior.Stop: - struct: EnumItem - Enum.SensorMode.Floor: - struct: EnumItem - Enum.SensorMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SensorMode.Ladder: - struct: EnumItem - Enum.SensorUpdateType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SensorUpdateType.Manual: - struct: EnumItem - Enum.SensorUpdateType.OnRead: - struct: EnumItem - Enum.ServerAudioBehavior.Enabled: - struct: EnumItem - Enum.ServerAudioBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ServerAudioBehavior.Muted: - struct: EnumItem - Enum.ServerAudioBehavior.OnlineGame: - struct: EnumItem - Enum.ServiceVisibility.Always: - struct: EnumItem - Enum.ServiceVisibility.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ServiceVisibility.Off: - struct: EnumItem - Enum.ServiceVisibility.WithChildren: - struct: EnumItem - Enum.Severity.Error: - struct: EnumItem - Enum.Severity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Severity.Warning: - struct: EnumItem - Enum.SignalBehavior.AncestryDeferred: - struct: EnumItem - Enum.SignalBehavior.Default: - struct: EnumItem - Enum.SignalBehavior.Deferred: - struct: EnumItem - Enum.SignalBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SignalBehavior.Immediate: - struct: EnumItem - Enum.SizeConstraint.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SizeConstraint.RelativeXX: - struct: EnumItem - Enum.SizeConstraint.RelativeXY: - struct: EnumItem - Enum.SizeConstraint.RelativeYY: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.Disabled: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SolverConvergenceVisualizationMode.PerEdge: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.PerIsland: - struct: EnumItem - Enum.SortDirection.Ascending: - struct: EnumItem - Enum.SortDirection.Descending: - struct: EnumItem - Enum.SortDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SortOrder.Custom: - struct: EnumItem - Enum.SortOrder.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SortOrder.LayoutOrder: - struct: EnumItem - Enum.SortOrder.Name: - struct: EnumItem - Enum.SpecialKey.ChatHotkey: - struct: EnumItem - Enum.SpecialKey.End: - struct: EnumItem - Enum.SpecialKey.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SpecialKey.Home: - struct: EnumItem - Enum.SpecialKey.Insert: - struct: EnumItem - Enum.SpecialKey.PageDown: - struct: EnumItem - Enum.SpecialKey.PageUp: - struct: EnumItem - Enum.StartCorner.BottomLeft: - struct: EnumItem - Enum.StartCorner.BottomRight: - struct: EnumItem - Enum.StartCorner.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StartCorner.TopLeft: - struct: EnumItem - Enum.StartCorner.TopRight: - struct: EnumItem - Enum.Status.Confusion: - struct: EnumItem - Enum.Status.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Status.Poison: - struct: EnumItem - Enum.StreamOutBehavior.Default: - struct: EnumItem - Enum.StreamOutBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StreamOutBehavior.LowMemory: - struct: EnumItem - Enum.StreamOutBehavior.Opportunistic: - struct: EnumItem - Enum.StreamingIntegrityMode.Default: - struct: EnumItem - Enum.StreamingIntegrityMode.Disabled: - struct: EnumItem - Enum.StreamingIntegrityMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StreamingIntegrityMode.MinimumRadiusPause: - struct: EnumItem - Enum.StreamingIntegrityMode.PauseOutsideLoadedArea: - struct: EnumItem - Enum.StreamingPauseMode.ClientPhysicsPause: - struct: EnumItem - Enum.StreamingPauseMode.Default: - struct: EnumItem - Enum.StreamingPauseMode.Disabled: - struct: EnumItem - Enum.StreamingPauseMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioCloseMode.CloseDoc: - struct: EnumItem - Enum.StudioCloseMode.CloseStudio: - struct: EnumItem - Enum.StudioCloseMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioCloseMode.None: - struct: EnumItem - Enum.StudioDataModelType.Edit: - struct: EnumItem - Enum.StudioDataModelType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioDataModelType.None: - struct: EnumItem - Enum.StudioDataModelType.PlayClient: - struct: EnumItem - Enum.StudioDataModelType.PlayServer: - struct: EnumItem - Enum.StudioDataModelType.Standalone: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.ActiveLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Background: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Bool: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Bracket: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Builtin: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Comment: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DebuggerCurrentLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DebuggerErrorLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Default: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DocViewCodeBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Error: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.FindSelectionBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Function: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.FunctionName: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioScriptEditorColorCategories.Keyword: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Local: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.LuauKeyword: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MatchingWordBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuBorder: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuPrimaryText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuScrollbarBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuScrollbarHandle: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSecondaryText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSelectedBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSelectedText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Method: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Nil: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Number: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Operator: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Property: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Ruler: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.SelectionBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.SelectionText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Self: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.String: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.TODO: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Warning: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Whitespace: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Custom: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Extra1: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Extra2: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioScriptEditorColorPresets.RobloxDefault: - struct: EnumItem - Enum.StudioStyleGuideColor.AttributeCog: - struct: EnumItem - Enum.StudioStyleGuideColor.Border: - struct: EnumItem - Enum.StudioStyleGuideColor.BrightText: - struct: EnumItem - Enum.StudioStyleGuideColor.Button: - struct: EnumItem - Enum.StudioStyleGuideColor.ButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.ButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.CategoryItem: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatIncomingBgColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatIncomingTextColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatModeratedMessageColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatOutgoingBgColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatOutgoingTextColor: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldIndicator: - struct: EnumItem - Enum.StudioStyleGuideColor.ColorPickerFrame: - struct: EnumItem - Enum.StudioStyleGuideColor.CurrentMarker: - struct: EnumItem - Enum.StudioStyleGuideColor.Dark: - struct: EnumItem - Enum.StudioStyleGuideColor.DebuggerCurrentLine: - struct: EnumItem - Enum.StudioStyleGuideColor.DebuggerErrorLine: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButton: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogMainButton: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogMainButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathText: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNum: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumAdditionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumDeletionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumNoChangeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumSeparatorBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextAddition: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextAdditionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextDeletion: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextDeletionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextHunkInfo: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextNoChange: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextNoChangeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextSeparatorBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DimmedText: - struct: EnumItem - Enum.StudioStyleGuideColor.DocViewCodeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DropShadow: - struct: EnumItem - Enum.StudioStyleGuideColor.Dropdown: - struct: EnumItem - Enum.StudioStyleGuideColor.EmulatorBar: - struct: EnumItem - Enum.StudioStyleGuideColor.EmulatorDropDown: - struct: EnumItem - Enum.StudioStyleGuideColor.ErrorText: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonAccent: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonBorderAlt: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonChecked: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonDefault: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonHover: - struct: EnumItem - Enum.StudioStyleGuideColor.GameSettingsTableItem: - struct: EnumItem - Enum.StudioStyleGuideColor.GameSettingsTooltip: - struct: EnumItem - Enum.StudioStyleGuideColor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioStyleGuideColor.HeaderSection: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoBarWarningBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoBarWarningText: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoText: - struct: EnumItem - Enum.StudioStyleGuideColor.InputFieldBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.InputFieldBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.Item: - struct: EnumItem - Enum.StudioStyleGuideColor.Light: - struct: EnumItem - Enum.StudioStyleGuideColor.LinkText: - struct: EnumItem - Enum.StudioStyleGuideColor.MainBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.MainButton: - struct: EnumItem - Enum.StudioStyleGuideColor.MainText: - struct: EnumItem - Enum.StudioStyleGuideColor.Mid: - struct: EnumItem - Enum.StudioStyleGuideColor.Midlight: - struct: EnumItem - Enum.StudioStyleGuideColor.Notification: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonButton: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonTab: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonTabTopBar: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBool: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBracket: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBuiltInFunction: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptComment: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptEditorCurrentLine: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptError: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFindSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFunction: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFunctionName: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptKeyword: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptLocal: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptLuauKeyword: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptMatchingWordSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptMethod: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptNil: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptNumber: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptOperator: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptProperty: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptRuler: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelectionText: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelf: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSideWidget: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptString: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptText: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptTodo: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptWarning: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptWhitespace: - struct: EnumItem - Enum.StudioStyleGuideColor.ScrollBar: - struct: EnumItem - Enum.StudioStyleGuideColor.ScrollBarBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.SensitiveText: - struct: EnumItem - Enum.StudioStyleGuideColor.Separator: - struct: EnumItem - Enum.StudioStyleGuideColor.Shadow: - struct: EnumItem - Enum.StudioStyleGuideColor.StatusBar: - struct: EnumItem - Enum.StudioStyleGuideColor.SubText: - struct: EnumItem - Enum.StudioStyleGuideColor.Tab: - struct: EnumItem - Enum.StudioStyleGuideColor.TabBar: - struct: EnumItem - Enum.StudioStyleGuideColor.TableItem: - struct: EnumItem - Enum.StudioStyleGuideColor.Titlebar: - struct: EnumItem - Enum.StudioStyleGuideColor.TitlebarText: - struct: EnumItem - Enum.StudioStyleGuideColor.Tooltip: - struct: EnumItem - Enum.StudioStyleGuideColor.ViewPortBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.WarningText: - struct: EnumItem - Enum.StudioStyleGuideModifier.Default: - struct: EnumItem - Enum.StudioStyleGuideModifier.Disabled: - struct: EnumItem - Enum.StudioStyleGuideModifier.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioStyleGuideModifier.Hover: - struct: EnumItem - Enum.StudioStyleGuideModifier.Pressed: - struct: EnumItem - Enum.StudioStyleGuideModifier.Selected: - struct: EnumItem - Enum.Style.Alternating Supports: - struct: EnumItem - deprecated: - message: Enum.Style.Alternating Supports was replaced with Enum.Style.AlternatingSupports - replace: - - Enum.Style.AlternatingSupports - Enum.Style.AlternatingSupports: - struct: EnumItem - Enum.Style.Bridge Style Supports: - struct: EnumItem - deprecated: - message: Enum.Style.Bridge Style Supports was replaced with Enum.Style.BridgeStyleSupports - replace: - - Enum.Style.BridgeStyleSupports - Enum.Style.BridgeStyleSupports: - struct: EnumItem - Enum.Style.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Style.No Supports: - struct: EnumItem - deprecated: - message: Enum.Style.No Supports was replaced with Enum.Style.NoSupports - replace: - - Enum.Style.NoSupports - Enum.Style.NoSupports: - struct: EnumItem - Enum.SurfaceConstraint.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceConstraint.Hinge: - struct: EnumItem - Enum.SurfaceConstraint.Motor: - struct: EnumItem - Enum.SurfaceConstraint.None: - struct: EnumItem - Enum.SurfaceConstraint.SteppingMotor: - struct: EnumItem - Enum.SurfaceGuiShape.CurvedHorizontally: - struct: EnumItem - Enum.SurfaceGuiShape.Flat: - struct: EnumItem - Enum.SurfaceGuiShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceGuiSizingMode.FixedSize: - struct: EnumItem - Enum.SurfaceGuiSizingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceGuiSizingMode.PixelsPerStud: - struct: EnumItem - Enum.SurfaceType.Bumps: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Bumps was replaced with Enum.SurfaceType.Glue - replace: - - Enum.SurfaceType.Glue - Enum.SurfaceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceType.Glue: - struct: EnumItem - Enum.SurfaceType.Hinge: - struct: EnumItem - Enum.SurfaceType.Inlet: - struct: EnumItem - Enum.SurfaceType.Motor: - struct: EnumItem - Enum.SurfaceType.Smooth: - struct: EnumItem - Enum.SurfaceType.SmoothNoOutlines: - struct: EnumItem - Enum.SurfaceType.Spawn: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Spawn was replaced with Enum.SurfaceType.Smooth - replace: - - Enum.SurfaceType.Smooth - Enum.SurfaceType.SteppingMotor: - struct: EnumItem - Enum.SurfaceType.Studs: - struct: EnumItem - Enum.SurfaceType.Universal: - struct: EnumItem - Enum.SurfaceType.Unjoinable: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Unjoinable was replaced with Enum.SurfaceType.Smooth - replace: - - Enum.SurfaceType.Smooth - Enum.SurfaceType.Weld: - struct: EnumItem - Enum.SwipeDirection.Down: - struct: EnumItem - Enum.SwipeDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SwipeDirection.Left: - struct: EnumItem - Enum.SwipeDirection.None: - struct: EnumItem - Enum.SwipeDirection.Right: - struct: EnumItem - Enum.SwipeDirection.Up: - struct: EnumItem - Enum.TableMajorAxis.ColumnMajor: - struct: EnumItem - Enum.TableMajorAxis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TableMajorAxis.RowMajor: - struct: EnumItem - Enum.Technology.Compatibility: - struct: EnumItem - Enum.Technology.Future: - struct: EnumItem - Enum.Technology.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Technology.Legacy: - struct: EnumItem - Enum.Technology.ShadowMap: - struct: EnumItem - Enum.Technology.Voxel: - struct: EnumItem - Enum.TeleportMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportMethod.TeleportPartyAsync: - struct: EnumItem - Enum.TeleportMethod.TeleportToPlaceInstance: - struct: EnumItem - Enum.TeleportMethod.TeleportToPrivateServer: - struct: EnumItem - Enum.TeleportMethod.TeleportToSpawnByName: - struct: EnumItem - Enum.TeleportMethod.TeleportUnknown: - struct: EnumItem - Enum.TeleportResult.Failure: - struct: EnumItem - Enum.TeleportResult.Flooded: - struct: EnumItem - Enum.TeleportResult.GameEnded: - struct: EnumItem - Enum.TeleportResult.GameFull: - struct: EnumItem - Enum.TeleportResult.GameNotFound: - struct: EnumItem - Enum.TeleportResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportResult.IsTeleporting: - struct: EnumItem - Enum.TeleportResult.Success: - struct: EnumItem - Enum.TeleportResult.Unauthorized: - struct: EnumItem - Enum.TeleportState.Failed: - struct: EnumItem - Enum.TeleportState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportState.InProgress: - struct: EnumItem - Enum.TeleportState.RequestedFromServer: - struct: EnumItem - Enum.TeleportState.Started: - struct: EnumItem - Enum.TeleportState.WaitingForServer: - struct: EnumItem - Enum.TeleportType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportType.ToInstance: - struct: EnumItem - Enum.TeleportType.ToPlace: - struct: EnumItem - Enum.TeleportType.ToReservedServer: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Convert: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditAddTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditReplaceTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditSeaLevelTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Generate: - struct: EnumItem - Enum.TerrainAcquisitionMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TerrainAcquisitionMethod.Import: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Legacy: - struct: EnumItem - Enum.TerrainAcquisitionMethod.None: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Other: - struct: EnumItem - Enum.TerrainAcquisitionMethod.RegionFillTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.RegionPasteTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Template: - struct: EnumItem - Enum.TerrainFace.Bottom: - struct: EnumItem - Enum.TerrainFace.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TerrainFace.Side: - struct: EnumItem - Enum.TerrainFace.Top: - struct: EnumItem - Enum.TextChatMessageStatus.Floodchecked: - struct: EnumItem - Enum.TextChatMessageStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextChatMessageStatus.InvalidPrivacySettings: - struct: EnumItem - Enum.TextChatMessageStatus.InvalidTextChannelPermissions: - struct: EnumItem - Enum.TextChatMessageStatus.MessageTooLong: - struct: EnumItem - Enum.TextChatMessageStatus.Sending: - struct: EnumItem - Enum.TextChatMessageStatus.Success: - struct: EnumItem - Enum.TextChatMessageStatus.TextFilterFailed: - struct: EnumItem - Enum.TextChatMessageStatus.Unknown: - struct: EnumItem - Enum.TextFilterContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextFilterContext.PrivateChat: - struct: EnumItem - Enum.TextFilterContext.PublicChat: - struct: EnumItem - Enum.TextInputType.Default: - struct: EnumItem - Enum.TextInputType.Email: - struct: EnumItem - Enum.TextInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextInputType.NoSuggestions: - struct: EnumItem - Enum.TextInputType.Number: - struct: EnumItem - Enum.TextInputType.OneTimePassword: - struct: EnumItem - Enum.TextInputType.Password: - struct: EnumItem - Enum.TextInputType.PasswordShown: - struct: EnumItem - Enum.TextInputType.Phone: - struct: EnumItem - Enum.TextInputType.Username: - struct: EnumItem - Enum.TextTruncate.AtEnd: - struct: EnumItem - Enum.TextTruncate.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextTruncate.None: - struct: EnumItem - Enum.TextXAlignment.Center: - struct: EnumItem - Enum.TextXAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextXAlignment.Left: - struct: EnumItem - Enum.TextXAlignment.Right: - struct: EnumItem - Enum.TextYAlignment.Bottom: - struct: EnumItem - Enum.TextYAlignment.Center: - struct: EnumItem - Enum.TextYAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextYAlignment.Top: - struct: EnumItem - Enum.TextureMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextureMode.Static: - struct: EnumItem - Enum.TextureMode.Stretch: - struct: EnumItem - Enum.TextureMode.Wrap: - struct: EnumItem - Enum.TextureQueryType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextureQueryType.Humanoid: - struct: EnumItem - Enum.TextureQueryType.HumanoidOrphaned: - struct: EnumItem - Enum.TextureQueryType.NonHumanoid: - struct: EnumItem - Enum.TextureQueryType.NonHumanoidOrphaned: - struct: EnumItem - Enum.ThreadPoolConfig.Auto: - struct: EnumItem - Enum.ThreadPoolConfig.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThreadPoolConfig.PartialThread: - struct: EnumItem - deprecated: - message: Enum.ThreadPoolConfig.PartialThread was replaced with Enum.ThreadPoolConfig.Auto - replace: - - Enum.ThreadPoolConfig.Auto - Enum.ThreadPoolConfig.PerCore1: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore2: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore3: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore4: - struct: EnumItem - Enum.ThreadPoolConfig.Threads1: - struct: EnumItem - Enum.ThreadPoolConfig.Threads16: - struct: EnumItem - Enum.ThreadPoolConfig.Threads2: - struct: EnumItem - Enum.ThreadPoolConfig.Threads3: - struct: EnumItem - Enum.ThreadPoolConfig.Threads4: - struct: EnumItem - Enum.ThreadPoolConfig.Threads8: - struct: EnumItem - Enum.ThrottlingPriority.Default: - struct: EnumItem - Enum.ThrottlingPriority.ElevatedOnServer: - struct: EnumItem - Enum.ThrottlingPriority.Extreme: - struct: EnumItem - Enum.ThrottlingPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailSize.Size100x100: - struct: EnumItem - Enum.ThumbnailSize.Size150x150: - struct: EnumItem - Enum.ThumbnailSize.Size180x180: - struct: EnumItem - Enum.ThumbnailSize.Size352x352: - struct: EnumItem - Enum.ThumbnailSize.Size420x420: - struct: EnumItem - Enum.ThumbnailSize.Size48x48: - struct: EnumItem - Enum.ThumbnailSize.Size60x60: - struct: EnumItem - Enum.ThumbnailType.AvatarBust: - struct: EnumItem - Enum.ThumbnailType.AvatarThumbnail: - struct: EnumItem - Enum.ThumbnailType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailType.HeadShot: - struct: EnumItem - Enum.TickCountSampleMethod.Benchmark: - struct: EnumItem - Enum.TickCountSampleMethod.Fast: - struct: EnumItem - Enum.TickCountSampleMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TickCountSampleMethod.Precise: - struct: EnumItem - Enum.TopBottom.Bottom: - struct: EnumItem - Enum.TopBottom.Center: - struct: EnumItem - Enum.TopBottom.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TopBottom.Top: - struct: EnumItem - Enum.TouchCameraMovementMode.Classic: - struct: EnumItem - Enum.TouchCameraMovementMode.Default: - struct: EnumItem - Enum.TouchCameraMovementMode.Follow: - struct: EnumItem - Enum.TouchCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TouchCameraMovementMode.Orbital: - struct: EnumItem - Enum.TouchMovementMode.ClickToMove: - struct: EnumItem - Enum.TouchMovementMode.DPad: - struct: EnumItem - Enum.TouchMovementMode.Default: - struct: EnumItem - Enum.TouchMovementMode.DynamicThumbstick: - struct: EnumItem - Enum.TouchMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TouchMovementMode.Thumbpad: - struct: EnumItem - Enum.TouchMovementMode.Thumbstick: - struct: EnumItem - Enum.TrackerError.AudioError: - struct: EnumItem - Enum.TrackerError.AudioNoPermission: - struct: EnumItem - Enum.TrackerError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerError.InitFailed: - struct: EnumItem - Enum.TrackerError.NoAudio: - struct: EnumItem - Enum.TrackerError.NoService: - struct: EnumItem - Enum.TrackerError.NoVideo: - struct: EnumItem - Enum.TrackerError.Ok: - struct: EnumItem - Enum.TrackerError.VideoError: - struct: EnumItem - Enum.TrackerError.VideoNoPermission: - struct: EnumItem - Enum.TrackerError.VideoUnsupported: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.Auto: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ExtrapolateFacsAndPose: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ExtrapolateFacsOnly: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ForceDisabled: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerLodFlagMode.Auto: - struct: EnumItem - Enum.TrackerLodFlagMode.ForceFalse: - struct: EnumItem - Enum.TrackerLodFlagMode.ForceTrue: - struct: EnumItem - Enum.TrackerLodFlagMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerLodValueMode.Auto: - struct: EnumItem - Enum.TrackerLodValueMode.Force0: - struct: EnumItem - Enum.TrackerLodValueMode.Force1: - struct: EnumItem - Enum.TrackerLodValueMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerMode.Audio: - struct: EnumItem - Enum.TrackerMode.AudioVideo: - struct: EnumItem - Enum.TrackerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerMode.None: - struct: EnumItem - Enum.TrackerMode.Video: - struct: EnumItem - Enum.TrackerPromptEvent.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerPromptEvent.LODCameraRecommendDisable: - struct: EnumItem - Enum.TriStateBoolean.False: - struct: EnumItem - Enum.TriStateBoolean.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TriStateBoolean.True: - struct: EnumItem - Enum.TriStateBoolean.Unknown: - struct: EnumItem - Enum.TweenStatus.Canceled: - struct: EnumItem - Enum.TweenStatus.Completed: - struct: EnumItem - Enum.TweenStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UITheme.Dark: - struct: EnumItem - Enum.UITheme.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UITheme.Light: - struct: EnumItem - Enum.UiMessageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UiMessageType.UiMessageError: - struct: EnumItem - Enum.UiMessageType.UiMessageInfo: - struct: EnumItem - Enum.UsageContext.Default: - struct: EnumItem - Enum.UsageContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UsageContext.Preview: - struct: EnumItem - Enum.UserCFrame.Floor: - struct: EnumItem - Enum.UserCFrame.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserCFrame.Head: - struct: EnumItem - Enum.UserCFrame.LeftHand: - struct: EnumItem - Enum.UserCFrame.RightHand: - struct: EnumItem - Enum.UserInputState.Begin: - struct: EnumItem - Enum.UserInputState.Cancel: - struct: EnumItem - Enum.UserInputState.Change: - struct: EnumItem - Enum.UserInputState.End: - struct: EnumItem - Enum.UserInputState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserInputState.None: - struct: EnumItem - Enum.UserInputType.Accelerometer: - struct: EnumItem - Enum.UserInputType.Focus: - struct: EnumItem - Enum.UserInputType.Gamepad1: - struct: EnumItem - Enum.UserInputType.Gamepad2: - struct: EnumItem - Enum.UserInputType.Gamepad3: - struct: EnumItem - Enum.UserInputType.Gamepad4: - struct: EnumItem - Enum.UserInputType.Gamepad5: - struct: EnumItem - Enum.UserInputType.Gamepad6: - struct: EnumItem - Enum.UserInputType.Gamepad7: - struct: EnumItem - Enum.UserInputType.Gamepad8: - struct: EnumItem - Enum.UserInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserInputType.Gyro: - struct: EnumItem - Enum.UserInputType.InputMethod: - struct: EnumItem - Enum.UserInputType.Keyboard: - struct: EnumItem - Enum.UserInputType.MouseButton1: - struct: EnumItem - Enum.UserInputType.MouseButton2: - struct: EnumItem - Enum.UserInputType.MouseButton3: - struct: EnumItem - Enum.UserInputType.MouseMovement: - struct: EnumItem - Enum.UserInputType.MouseWheel: - struct: EnumItem - Enum.UserInputType.None: - struct: EnumItem - Enum.UserInputType.TextInput: - struct: EnumItem - Enum.UserInputType.Touch: - struct: EnumItem - Enum.VRPlayMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRPlayMode.Seated: - struct: EnumItem - Enum.VRPlayMode.Standing: - struct: EnumItem - Enum.VRSafetyBubbleMode.Anyone: - struct: EnumItem - Enum.VRSafetyBubbleMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRSafetyBubbleMode.NoOne: - struct: EnumItem - Enum.VRSafetyBubbleMode.OnlyFriends: - struct: EnumItem - Enum.VRScaling.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRScaling.Off: - struct: EnumItem - Enum.VRScaling.World: - struct: EnumItem - Enum.VRSessionState.Focused: - struct: EnumItem - Enum.VRSessionState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRSessionState.Idle: - struct: EnumItem - Enum.VRSessionState.Undefined: - struct: EnumItem - Enum.VRSessionState.Visible: - struct: EnumItem - Enum.VRTouchpad.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRTouchpad.Left: - struct: EnumItem - Enum.VRTouchpad.Right: - struct: EnumItem - Enum.VRTouchpadMode.ABXY: - struct: EnumItem - Enum.VRTouchpadMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRTouchpadMode.Touch: - struct: EnumItem - Enum.VRTouchpadMode.VirtualThumbstick: - struct: EnumItem - Enum.VelocityConstraintMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VelocityConstraintMode.Line: - struct: EnumItem - Enum.VelocityConstraintMode.Plane: - struct: EnumItem - Enum.VelocityConstraintMode.Vector: - struct: EnumItem - Enum.VerticalAlignment.Bottom: - struct: EnumItem - Enum.VerticalAlignment.Center: - struct: EnumItem - Enum.VerticalAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VerticalAlignment.Top: - struct: EnumItem - Enum.VerticalScrollBarPosition.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VerticalScrollBarPosition.Left: - struct: EnumItem - Enum.VerticalScrollBarPosition.Right: - struct: EnumItem - Enum.VibrationMotor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VibrationMotor.Large: - struct: EnumItem - Enum.VibrationMotor.LeftHand: - struct: EnumItem - Enum.VibrationMotor.LeftTrigger: - struct: EnumItem - Enum.VibrationMotor.RightHand: - struct: EnumItem - Enum.VibrationMotor.RightTrigger: - struct: EnumItem - Enum.VibrationMotor.Small: - struct: EnumItem - Enum.VirtualCursorMode.Default: - struct: EnumItem - Enum.VirtualCursorMode.Disabled: - struct: EnumItem - Enum.VirtualCursorMode.Enabled: - struct: EnumItem - Enum.VirtualCursorMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VirtualInputMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VirtualInputMode.None: - struct: EnumItem - Enum.VirtualInputMode.Playing: - struct: EnumItem - Enum.VirtualInputMode.Recording: - struct: EnumItem - Enum.VoiceChatState.Ended: - struct: EnumItem - Enum.VoiceChatState.Failed: - struct: EnumItem - Enum.VoiceChatState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VoiceChatState.Idle: - struct: EnumItem - Enum.VoiceChatState.Joined: - struct: EnumItem - Enum.VoiceChatState.Joining: - struct: EnumItem - Enum.VoiceChatState.JoiningRetry: - struct: EnumItem - Enum.VoiceChatState.Leaving: - struct: EnumItem - Enum.VolumetricAudio.Automatic: - struct: EnumItem - Enum.VolumetricAudio.Disabled: - struct: EnumItem - Enum.VolumetricAudio.Enabled: - struct: EnumItem - Enum.VolumetricAudio.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterDirection.NegX: - struct: EnumItem - Enum.WaterDirection.NegY: - struct: EnumItem - Enum.WaterDirection.NegZ: - struct: EnumItem - Enum.WaterDirection.X: - struct: EnumItem - Enum.WaterDirection.Y: - struct: EnumItem - Enum.WaterDirection.Z: - struct: EnumItem - Enum.WaterForce.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterForce.Max: - struct: EnumItem - Enum.WaterForce.Medium: - struct: EnumItem - Enum.WaterForce.None: - struct: EnumItem - Enum.WaterForce.Small: - struct: EnumItem - Enum.WaterForce.Strong: - struct: EnumItem - Enum.WrapLayerAutoSkin.Disabled: - struct: EnumItem - Enum.WrapLayerAutoSkin.EnabledOverride: - struct: EnumItem - Enum.WrapLayerAutoSkin.EnabledPreserve: - struct: EnumItem - Enum.WrapLayerAutoSkin.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapLayerDebugMode.BoundCage: - struct: EnumItem - Enum.WrapLayerDebugMode.BoundCageAndLinks: - struct: EnumItem - Enum.WrapLayerDebugMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapLayerDebugMode.HSRInner: - struct: EnumItem - Enum.WrapLayerDebugMode.HSRInnerReverse: - struct: EnumItem - Enum.WrapLayerDebugMode.HSROuter: - struct: EnumItem - Enum.WrapLayerDebugMode.HSROuterDetail: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCage: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCageFittedToBase: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCageFittedToPrev: - struct: EnumItem - Enum.WrapLayerDebugMode.None: - struct: EnumItem - Enum.WrapLayerDebugMode.OuterCage: - struct: EnumItem - Enum.WrapLayerDebugMode.Rbf: - struct: EnumItem - Enum.WrapLayerDebugMode.Reference: - struct: EnumItem - Enum.WrapLayerDebugMode.ReferenceMeshAfterMorph: - struct: EnumItem - Enum.WrapTargetDebugMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapTargetDebugMode.None: - struct: EnumItem - Enum.WrapTargetDebugMode.OuterCageDetail: - struct: EnumItem - Enum.WrapTargetDebugMode.Rbf: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageCompressed: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageInterface: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageOriginal: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerCageCompressed: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerCageOriginal: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerInterface: - struct: EnumItem - Enum.ZIndexBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ZIndexBehavior.Global: - struct: EnumItem - Enum.ZIndexBehavior.Sibling: - struct: EnumItem - Faces.new: - args: - - type: '...' - must_use: true - FloatCurveKey.new: - args: - - type: number - - type: number - - type: - display: KeyInterpolationMode - must_use: true - Font.fromEnum: - args: - - type: - display: Font - must_use: true - Font.fromId: - args: - - type: number - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Font.fromName: - args: - - type: string - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Font.new: - args: - - type: string - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Instance.new: - args: - - type: - - Accoutrement - - Accessory - - Hat - - AdPortal - - AdvancedDragger - - AnalyticsService - - Animation - - CurveAnimation - - KeyframeSequence - - AnimationController - - AnimationRigData - - Animator - - Atmosphere - - Attachment - - Bone - - AudioSearchParams - - Backpack - - WrapLayer - - WrapTarget - - Beam - - BindableEvent - - BindableFunction - - BodyAngularVelocity - - BodyForce - - BodyGyro - - BodyPosition - - BodyThrust - - BodyVelocity - - RocketPropulsion - - Breakpoint - - Camera - - BodyColors - - CharacterMesh - - Pants - - Shirt - - ShirtGraphic - - Skin - - ClickDetector - - Clouds - - Configuration - - AlignOrientation - - AlignPosition - - AngularVelocity - - AnimationConstraint - - BallSocketConstraint - - HingeConstraint - - LineForce - - LinearVelocity - - PlaneConstraint - - Plane - - RigidConstraint - - RodConstraint - - RopeConstraint - - CylindricalConstraint - - PrismaticConstraint - - SpringConstraint - - Torque - - TorsionSpringConstraint - - UniversalConstraint - - VectorForce - - HumanoidController - - SkateboardController - - VehicleController - - AirController - - ClimbController - - GroundController - - SwimController - - ControllerManager - - CustomEvent - - CustomEventReceiver - - BlockMesh - - CylinderMesh - - FileMesh - - SpecialMesh - - DataStoreIncrementOptions - - DataStoreOptions - - DataStoreSetOptions - - DebuggerWatch - - Dialog - - DialogChoice - - Dragger - - EulerRotationCurve - - ExperienceInviteOptions - - Explosion - - FaceControls - - Decal - - Texture - - Hole - - MotorFeature - - Fire - - FloatCurve - - FlyweightService - - CSGDictionaryService - - NonReplicatedCSGDictionaryService - - Folder - - ForceField - - FunctionalTest - - GetTextBoundsParams - - CanvasGroup - - Frame - - ImageButton - - TextButton - - ImageLabel - - TextLabel - - ScrollingFrame - - TextBox - - VideoFrame - - ViewportFrame - - BillboardGui - - ScreenGui - - GuiMain - - AdGui - - SurfaceGui - - FloorWire - - SelectionBox - - BoxHandleAdornment - - ConeHandleAdornment - - CylinderHandleAdornment - - ImageHandleAdornment - - LineHandleAdornment - - SphereHandleAdornment - - WireframeHandleAdornment - - ParabolaAdornment - - SelectionSphere - - ArcHandles - - Handles - - SurfaceSelection - - SelectionPartLasso - - SelectionPointLasso - - HeightmapImporterService - - HiddenSurfaceRemovalAsset - - Highlight - - Humanoid - - HumanoidDescription - - IKControl - - RotateP - - RotateV - - Glue - - ManualGlue - - ManualWeld - - Motor - - Motor6D - - Rotate - - Snap - - VelocityMotor - - Weld - - Keyframe - - KeyframeMarker - - PointLight - - SpotLight - - SurfaceLight - - LocalizationTable - - Script - - LocalScript - - ModuleScript - - MarkerCurve - - MaterialVariant - - MemoryStoreService - - Message - - Hint - - NoCollisionConstraint - - CornerWedgePart - - Part - - FlagStand - - Seat - - SkateboardPlatform - - SpawnLocation - - WedgePart - - MeshPart - - PartOperation - - IntersectOperation - - NegateOperation - - UnionOperation - - TrussPart - - VehicleSeat - - Model - - Actor - - HopperBin - - Tool - - Flag - - WorldModel - - PartOperationAsset - - ParticleEmitter - - PathfindingLink - - PathfindingModifier - - Player - - PluginAction - - NumberPose - - Pose - - BloomEffect - - BlurEffect - - ColorCorrectionEffect - - DepthOfFieldEffect - - SunRaysEffect - - ProximityPrompt - - ProximityPromptService - - ReflectionMetadata - - ReflectionMetadataCallbacks - - ReflectionMetadataClasses - - ReflectionMetadataEnums - - ReflectionMetadataEvents - - ReflectionMetadataFunctions - - ReflectionMetadataClass - - ReflectionMetadataEnum - - ReflectionMetadataEnumItem - - ReflectionMetadataMember - - ReflectionMetadataProperties - - ReflectionMetadataYieldFunctions - - RemoteEvent - - RemoteFunction - - RenderingTest - - RotationCurve - - BuoyancySensor - - ControllerPartSensor - - Sky - - Smoke - - Sound - - ChorusSoundEffect - - CompressorSoundEffect - - DistortionSoundEffect - - EchoSoundEffect - - EqualizerSoundEffect - - FlangeSoundEffect - - PitchShiftSoundEffect - - ReverbSoundEffect - - TremoloSoundEffect - - SoundGroup - - Sparkles - - StandalonePluginScripts - - StarterGear - - SurfaceAppearance - - Team - - TeleportOptions - - TerrainDetail - - TerrainRegion - - TestService - - TextChannel - - TextChatCommand - - TextChatMessageProperties - - TrackerStreamAnimation - - Trail - - Tween - - UIAspectRatioConstraint - - UISizeConstraint - - UITextSizeConstraint - - UICorner - - UIGradient - - UIGridLayout - - UIListLayout - - UIPageLayout - - UITableLayout - - UIPadding - - UIScale - - UIStroke - - BinaryStringValue - - BoolValue - - BrickColorValue - - CFrameValue - - Color3Value - - DoubleConstrainedValue - - IntConstrainedValue - - IntValue - - NumberValue - - ObjectValue - - RayValue - - StringValue - - Vector3Value - - Vector3Curve - - VirtualInputManager - - WeldConstraint - must_use: true - NumberRange.new: - args: - - type: number - - required: false - type: number - must_use: true - NumberSequence.new: - args: - - type: any - - required: false - type: number - must_use: true - NumberSequenceKeypoint.new: - args: - - type: number - - type: number - - required: false - type: number - must_use: true - OverlapParams.new: - args: [] - must_use: true - PathWaypoint.new: - args: - - required: false - type: - display: Vector3 - - required: false - type: - display: PathWaypointAction - must_use: true - PhysicalProperties.new: - args: - - type: any - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Random.new: - args: - - required: false - type: number - must_use: true - Ray.new: - args: - - type: - display: Vector3 - - type: - display: Vector3 - must_use: true - RaycastParams.new: - args: [] - must_use: true - Rect.new: - args: - - type: any - - type: any - - required: false - type: number - - required: false - type: number - must_use: true - Region3.new: - args: - - type: - display: Vector3 - - type: - display: Vector3 - must_use: true - Region3int16.new: - args: - - required: false - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - RotationCurveKey.new: - args: - - type: number - - type: - display: CFrame - - type: - display: KeyInterpolationMode - must_use: true - TweenInfo.new: - args: - - required: false - type: number - - required: false - type: - display: EasingStyle - - required: false - type: - display: EasingDirection - - required: false - type: number - - required: false - type: bool - - required: false - type: number - must_use: true - UDim.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - UDim2.fromOffset: - args: - - required: use UDim2.new() if you want an empty UDim2 - type: number - - required: false - type: number - must_use: true - UDim2.fromScale: - args: - - required: use UDim2.new() if you want an empty UDim2 - type: number - - required: false - type: number - must_use: true - UDim2.new: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: number - - required: false - type: number - must_use: true - UserSettings: - args: [] - must_use: true - Vector2.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - Vector2.one: - property: read-only - Vector2.xAxis: - property: read-only - Vector2.yAxis: - property: read-only - Vector2.zero: - property: read-only - Vector2int16.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - Vector3.FromAxis: - args: - - type: - display: Axis - must_use: true - Vector3.FromNormalId: - args: - - type: - display: NormalId - must_use: true - Vector3.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Vector3.one: - property: read-only - Vector3.xAxis: - property: read-only - Vector3.yAxis: - property: read-only - Vector3.zAxis: - property: read-only - Vector3.zero: - property: read-only - Vector3int16.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - _G: - property: new-fields - _VERSION: - property: read-only - arg: - property: new-fields - assert: - args: - - type: any - - required: A failed assertion without a message is unhelpful to users. - type: string - bit32.arshift: - args: - - type: number - - type: number - must_use: true - bit32.band: - args: - - type: '...' - must_use: true - bit32.bnot: - args: - - type: number - must_use: true - bit32.bor: - args: - - type: '...' - must_use: true - bit32.btest: - args: - - type: '...' - must_use: true - bit32.bxor: - args: - - type: '...' - must_use: true - bit32.countlz: - args: - - type: number - must_use: true - bit32.countrz: - args: - - type: number - must_use: true - bit32.extract: - args: - - type: number - - type: number - - required: false - type: number - must_use: true - bit32.lrotate: - args: - - type: number - - type: number - must_use: true - bit32.lshift: - args: - - type: number - - type: number - must_use: true - bit32.replace: - args: - - type: number - - type: number - - type: number - - required: false - type: number - must_use: true - bit32.rrotate: - args: - - type: number - - type: number - must_use: true - bit32.rshift: - args: - - type: number - - type: number - must_use: true - collectgarbage: - args: - - type: - - count - must_use: true - coroutine.close: - args: - - type: - display: thread - coroutine.create: - args: - - type: function - must_use: true - coroutine.isyieldable: - args: [] - coroutine.resume: - args: - - type: - display: coroutine - - required: false - type: '...' - coroutine.running: - args: [] - must_use: true - coroutine.status: - args: - - type: - display: coroutine - must_use: true - coroutine.wrap: - args: - - type: function - coroutine.yield: - args: - - required: false - type: '...' - debug.info: - args: - - type: any - - type: any - - required: false - type: string - must_use: true - debug.profilebegin: - args: - - type: string - debug.profileend: - args: [] - debug.resetmemorycategory: - args: [] - debug.setmemorycategory: - args: - - type: string - debug.traceback: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - must_use: true - delay: - args: - - type: number - - type: function - elapsedTime: - args: [] - error: - args: - - required: Erroring without an explanation is unhelpful to users. - type: any - - required: false - type: number - game: - struct: DataModel - gcinfo: - args: [] - must_use: true - getfenv: - args: - - required: false - type: any - must_use: true - getmetatable: - args: - - type: table - must_use: true - io.close: - args: - - required: false - type: - display: file - io.flush: - args: [] - io.input: - args: - - required: false - type: - display: file - io.lines: - args: - - type: string - io.open: - args: - - type: string - - required: false - type: - - r - - rb - - w - - wb - - a - - ab - - r+ - - rb+ - - w+ - - wb+ - - a+ - - ab+ - io.output: - args: - - required: false - type: - display: file - io.popen: - args: - - type: string - - required: false - type: - - r - - rb - - w - - wb - - a - - ab - - r+ - - rb+ - - w+ - - wb+ - - a+ - - ab+ - io.read: - args: - - type: '...' - io.stderr: - property: read-only - io.stdin: - property: read-only - io.stdout: - property: read-only - io.tmpfile: - args: [] - io.type: - args: - - type: - display: potentially file-like object - io.write: - args: - - type: '...' - ipairs: - args: - - type: table - must_use: true - loadstring: - args: - - type: string - - required: false - type: string - math.abs: - args: - - type: number - must_use: true - math.acos: - args: - - type: number - must_use: true - math.asin: - args: - - type: number - must_use: true - math.atan: - args: - - type: number - must_use: true - math.atan2: - args: - - type: number - - type: number - must_use: true - math.ceil: - args: - - type: number - must_use: true - math.clamp: - args: - - type: number - - type: number - - type: number - must_use: true - math.cos: - args: - - type: number - must_use: true - math.cosh: - args: - - type: number - must_use: true - math.deg: - args: - - type: number - must_use: true - math.exp: - args: - - type: number - must_use: true - math.floor: - args: - - type: number - must_use: true - math.fmod: - args: - - type: number - - type: number - must_use: true - math.frexp: - args: - - type: number - must_use: true - math.huge: - property: read-only - math.ldexp: - args: - - type: number - - type: number - must_use: true - math.log: - args: - - type: number - - required: false - type: number - must_use: true - math.log10: - args: - - type: number - must_use: true - math.max: - args: - - type: number - - required: use of max only makes sense with more than 1 parameter - type: '...' - must_use: true - math.min: - args: - - type: number - - required: use of min only makes sense with more than 1 parameter - type: '...' - must_use: true - math.modf: - args: - - type: number - must_use: true - math.noise: - args: - - type: number - - required: false - type: number - - required: false - type: number - must_use: true - math.pi: - property: read-only - math.pow: - args: - - type: number - - type: number - must_use: true - math.rad: - args: - - type: number - must_use: true - math.random: - args: - - required: false - type: number - - required: false - type: number - must_use: true - math.randomseed: - args: - - type: number - math.round: - args: - - type: number - must_use: true - math.sign: - args: - - type: number - must_use: true - math.sin: - args: - - type: number - must_use: true - math.sinh: - args: - - type: number - must_use: true - math.sqrt: - args: - - type: number - must_use: true - math.tan: - args: - - type: number - must_use: true - math.tanh: - args: - - type: number - must_use: true - newproxy: - args: - - required: false - type: bool - must_use: true - next: - args: - - type: table - - required: false - type: number - os.clock: - args: [] - must_use: true - os.date: - args: - - required: false - type: string - - required: false - type: number - must_use: true - os.difftime: - args: - - type: number - - type: number - must_use: true - os.time: - args: - - required: false - type: table - must_use: true - package.cpath: - property: full-write - package.loaded: - property: new-fields - package.loaders: - property: new-fields - package.loadlib: - args: - - type: string - - type: string - package.path: - property: full-write - package.preload: - property: new-fields - package.seeall: - args: - - type: table - pairs: - args: - - type: table - must_use: true - pcall: - args: - - type: function - - required: false - type: '...' - plugin: - struct: Plugin - print: - args: - - required: false - type: '...' - rawequal: - args: - - type: any - - type: any - must_use: true - rawget: - args: - - type: any - - type: any - must_use: true - rawlen: - args: - - type: table - must_use: true - rawset: - args: - - type: any - - type: any - - type: any - require: - args: - - type: number - script: - struct: Script - select: - args: - - type: any - - type: '...' - must_use: true - setfenv: - args: - - type: any - - type: table - setmetatable: - args: - - type: table - - required: false - type: table - settings: - args: [] - shared: - property: new-fields - spawn: - args: - - type: function - string.byte: - args: - - type: string - - required: false - type: number - - required: false - type: number - string.char: - args: - - required: string.char should be used with an argument despite it not throwing - type: number - - required: false - type: '...' - must_use: true - string.find: - args: - - type: string - - type: string - - required: false - type: number - - required: false - type: bool - must_use: true - string.format: - args: - - type: string - - required: string.format should only be used for strings that need formatting - type: '...' - must_use: true - string.gmatch: - args: - - type: string - - type: string - must_use: true - string.gsub: - args: - - type: string - - type: string - - type: any - - required: false - type: number - must_use: true - string.len: - args: - - type: string - must_use: true - string.lower: - args: - - type: string - must_use: true - string.match: - args: - - type: string - - type: string - - required: false - type: number - must_use: true - string.pack: - args: - - type: string - - type: '...' - must_use: true - string.packsize: - args: - - type: string - must_use: true - string.rep: - args: - - type: string - - type: number - must_use: true - string.reverse: - args: - - type: string - must_use: true - string.split: - args: - - type: string - - required: false - type: string - must_use: true - string.sub: - args: - - type: string - - type: number - - required: false - type: number - must_use: true - string.unpack: - args: - - type: string - - type: string - - required: false - type: number - must_use: true - string.upper: - args: - - type: string - must_use: true - table.clear: - args: - - type: table - table.clone: - args: - - type: table - must_use: true - table.concat: - args: - - type: table - - required: false - type: string - - required: false - type: number - - required: false - type: number - must_use: true - table.create: - args: - - type: number - - required: false - type: any - must_use: true - table.find: - args: - - type: table - - type: any - - required: false - type: number - must_use: true - table.foreach: - args: - - type: table - - type: function - deprecated: - message: use a for loop instead. - replace: [] - table.foreachi: - args: - - type: table - - type: function - deprecated: - message: use a for loop instead. - replace: [] - table.freeze: - args: - - type: table - table.getn: - args: - - type: table - - type: number - must_use: true - deprecated: - message: '`table.getn` has been superceded by #.' - replace: - - '#%1' - table.insert: - args: - - type: table - observes: write - - type: any - - required: false - type: any - table.isfrozen: - args: - - type: table - must_use: true - table.maxn: - args: - - type: table - must_use: true - table.move: - args: - - type: table - - type: number - - type: number - - type: number - - required: false - type: table - table.pack: - args: - - type: '...' - must_use: true - table.remove: - args: - - type: table - - required: false - type: number - table.sort: - args: - - type: table - - required: false - type: function - table.unpack: - args: - - type: table - - required: false - type: number - - required: false - type: number - must_use: true - task.cancel: - args: - - type: - display: thread - task.defer: - args: - - type: function - - required: false - type: '...' - task.delay: - args: - - required: false - type: number - - type: function - - required: false - type: '...' - task.desynchronize: - args: [] - task.spawn: - args: - - type: function - - required: false - type: '...' - task.synchronize: - args: [] - task.wait: - args: - - required: false - type: number - tick: - args: [] - time: - args: [] - tonumber: - args: - - type: any - - required: false - type: number - must_use: true - tostring: - args: - - type: any - must_use: true - type: - args: - - type: any - typeof: - args: - - type: any - unpack: - args: - - type: table - - required: false - type: number - - required: false - type: number - must_use: true - utf8.char: - args: - - required: utf8.char should be used with an argument despite it not throwing - type: number - - required: false - type: '...' - must_use: true - utf8.charpattern: - property: read-only - utf8.codepoint: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.codes: - args: - - type: string - must_use: true - utf8.graphemes: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.len: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.nfcnormalize: - args: - - type: string - must_use: true - utf8.nfdnormalize: - args: - - type: string - must_use: true - utf8.offset: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - wait: - args: - - required: false - type: number - warn: - args: - - type: any - - required: false - type: '...' - workspace: - struct: Workspace - xpcall: - args: - - type: function - - required: false - type: '...' -structs: - BasePart: - '*': - struct: Instance - AncestryChanged: - struct: Event - Anchored: - property: override-fields - ApplyAngularImpulse: - args: - - required: false - type: any - method: true - ApplyImpulse: - args: - - required: false - type: any - method: true - ApplyImpulseAtPosition: - args: - - required: false - type: any - - required: false - type: any - method: true - Archivable: - property: override-fields - AssemblyAngularVelocity: - any: true - AssemblyCenterOfMass: - any: true - AssemblyLinearVelocity: - any: true - AssemblyMass: - property: read-only - AssemblyRootPart: - struct: BasePart - AttributeChanged: - struct: Event - BackParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackSurface: - property: override-fields - BackSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomSurface: - property: override-fields - BottomSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BrickColor: - property: override-fields - CFrame: - any: true - CanCollide: - property: override-fields - CanCollideWith: - args: - - required: false - type: any - method: true - CanQuery: - property: override-fields - CanSetNetworkOwnership: - args: [] - method: true - CanTouch: - property: override-fields - CastShadow: - property: override-fields - CenterOfMass: - any: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionGroup: - property: override-fields - CollisionGroupId: - property: override-fields - Color: - property: override-fields - CurrentPhysicalProperties: - property: read-only - CustomPhysicalProperties: - property: override-fields - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Elasticity: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - ExtentsCFrame: - any: true - ExtentsSize: - any: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - Friction: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontSurface: - property: override-fields - FrontSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetConnectedParts: - args: - - required: false - type: any - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetJoints: - args: [] - method: true - GetMass: - args: [] - method: true - GetNetworkOwner: - args: [] - method: true - GetNetworkOwnershipAuto: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetRootPart: - args: [] - method: true - GetTouchingParts: - args: [] - method: true - GetVelocityAtPosition: - args: - - required: false - type: any - method: true - IntersectAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGrounded: - args: [] - method: true - LeftParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftSurface: - property: override-fields - LeftSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LocalSimulationTouched: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - LocalTransparencyModifier: - property: override-fields - Locked: - property: override-fields - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Mass: - property: read-only - Massless: - property: override-fields - Material: - property: override-fields - MaterialVariant: - property: override-fields - Name: - property: override-fields - Orientation: - any: true - Origin: - any: true - OutfitChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - Pivot Offset: - any: true - PivotOffset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - Position: - any: true - ReceiveAge: - property: read-only - Reflectance: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Resize: - args: - - required: false - type: any - - required: false - type: any - method: true - ResizeIncrement: - property: read-only - ResizeableFaces: - property: read-only - RightParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightSurface: - property: override-fields - RightSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RootPriority: - property: override-fields - RotVelocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - Rotation: - any: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetNetworkOwner: - args: - - required: false - type: any - method: true - SetNetworkOwnershipAuto: - args: [] - method: true - Size: - any: true - SpecificGravity: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - StoppedTouching: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - SubtractAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - TopParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopSurface: - property: override-fields - TopSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TouchEnded: - struct: Event - Touched: - struct: Event - Transparency: - property: override-fields - UnionAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Velocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - brickColor: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getMass: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - resize: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - subtractAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - unionAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Camera: - '*': - struct: Instance - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - CFrame: - any: true - CameraSubject: - struct: Instance - CameraType: - property: override-fields - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CoordinateFrame: - any: true - deprecated: - message: this property is deprecated. - replace: [] - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - DiagonalFieldOfView: - property: override-fields - FieldOfView: - property: override-fields - FieldOfViewMode: - property: override-fields - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FirstPersonTransition: - struct: Event - Focus: - any: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetLargestCutoffDistance: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetPanSpeed: - args: [] - method: true - GetPartsObscuringTarget: - args: - - required: false - type: any - - required: false - type: any - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - GetRoll: - args: [] - method: true - GetTiltSpeed: - args: [] - method: true - HeadLocked: - property: override-fields - HeadScale: - property: override-fields - Interpolate: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - InterpolationFinished: - struct: Event - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - MaxAxisFieldOfView: - property: override-fields - Name: - property: override-fields - NearPlaneZ: - property: read-only - PanUnits: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ScreenPointToRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetCameraPanMode: - args: - - required: false - type: any - method: true - SetImageServerView: - args: - - required: false - type: any - method: true - SetRoll: - args: - - required: false - type: any - method: true - TiltUnits: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - ViewportPointToRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - ViewportSize: - any: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WorldToScreenPoint: - args: - - required: false - type: any - method: true - WorldToViewportPoint: - args: - - required: false - type: any - method: true - Zoom: - args: - - required: false - type: any - method: true - ZoomToExtents: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - focus: - any: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - DataModel: - '*': - struct: Instance - AllowedGearTypeChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - BindToClose: - args: - - required: false - type: any - method: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - Close: - struct: Event - CloseLate: - struct: Event - CreatorId: - property: read-only - CreatorType: - property: read-only - DefineFastFlag: - args: - - required: false - type: any - - required: false - type: any - method: true - DefineFastInt: - args: - - required: false - type: any - - required: false - type: any - method: true - DefineFastString: - args: - - required: false - type: any - - required: false - type: any - method: true - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FindService: - args: - - required: false - type: any - method: true - GameId: - property: read-only - GearGenreSetting: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - Genre: - property: read-only - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetEngineFeature: - args: - - required: false - type: any - method: true - GetFastFlag: - args: - - required: false - type: any - method: true - GetFastInt: - args: - - required: false - type: any - method: true - GetFastString: - args: - - required: false - type: any - method: true - GetFullName: - args: [] - method: true - GetJobsInfo: - args: [] - method: true - GetMessage: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetObjects: - args: - - required: false - type: any - method: true - GetObjectsAllOrNone: - args: - - required: false - type: any - - required: false - type: any - method: true - GetObjectsAsync: - args: - - required: false - type: any - method: true - GetObjectsList: - args: - - required: false - type: any - method: true - GetPlaySessionId: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRemoteBuildMode: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetService: - args: - - type: - - AdService - - AnalyticsService - - AnimationClipProvider - - AnimationFromVideoCreatorService - - AnimationFromVideoCreatorStudioService - - AppUpdateService - - AssetCounterService - - AssetDeliveryProxy - - AssetImportService - - AssetManagerService - - AssetService - - AvatarEditorService - - AvatarImportService - - BadgeService - - CoreGui - - StarterGui - - BrowserService - - BulkImportService - - CacheableContentProvider - - HSRDataContentProvider - - MeshContentProvider - - SolidModelContentProvider - - CalloutService - - ChangeHistoryService - - Chat - - ClusterPacketCache - - CollectionService - - CommandService - - ConfigureServerService - - ContentProvider - - ContextActionService - - ControllerService - - CookiesService - - CorePackages - - CoreScriptDebuggingManagerHelper - - CoreScriptSyncService - - CrossDMScriptChangeListener - - DataModelPatchService - - DataStoreService - - Debris - - DebuggablePluginWatcher - - DebuggerConnectionManager - - DebuggerManager - - DebuggerUIService - - DeviceIdService - - DraftsService - - DraggerService - - EventIngestService - - ExperienceAuthService - - FaceAnimatorService - - FacialAnimationRecordingService - - FacialAnimationStreamingService - - FacialAnimationStreamingServiceV2 - - FlagStandService - - FlyweightService - - CSGDictionaryService - - NonReplicatedCSGDictionaryService - - FriendService - - GamePassService - - GamepadService - - Geometry - - GoogleAnalyticsConfiguration - - GroupService - - GuiService - - GuidRegistryService - - HapticService - - HeightmapImporterService - - Hopper - - HttpRbxApiService - - HttpService - - ILegacyStudioBridge - - LegacyStudioBridge - - IXPService - - IncrementalPatchBuilder - - InsertService - - JointsService - - KeyboardService - - KeyframeSequenceProvider - - LSPFileSyncService - - LanguageService - - Lighting - - LiveScriptingService - - LocalStorageService - - AppStorageService - - UserStorageService - - LocalizationService - - LodDataService - - LogService - - LoginService - - LuaWebService - - LuauScriptAnalyzerService - - MarketplaceService - - MaterialGenerationService - - MaterialService - - MemStorageService - - MemoryStoreService - - MessageBusService - - MessagingService - - MetaBreakpointManager - - MouseService - - NetworkClient - - NetworkServer - - NetworkSettings - - NotificationService - - Workspace - - PackageService - - PackageUIService - - PatchBundlerFileWatch - - PathfindingService - - PermissionsService - - PhysicsService - - PlayerEmulatorService - - Players - - PluginDebugService - - PluginGuiService - - PluginManagementService - - PluginPolicyService - - PointsService - - PolicyService - - ProcessInstancePhysicsService - - ProximityPromptService - - PublishService - - RbxAnalyticsService - - RemoteCursorService - - RemoteDebuggerServer - - RenderSettings - - ReplicatedFirst - - ReplicatedStorage - - RobloxPluginGuiService - - RobloxReplicatedStorage - - RtMessagingService - - RunService - - RuntimeScriptService - - SafetyService - - ScriptChangeService - - ScriptCloneWatcher - - ScriptCloneWatcherHelper - - ScriptContext - - ScriptEditorService - - ScriptRegistrationService - - ScriptService - - Selection - - SelectionHighlightManager - - ServerScriptService - - ServerStorage - - ServiceVisibilityService - - SessionService - - SharedTableRegistry - - ShorelineUpgraderService - - SmoothVoxelsUpgraderService - - SnippetService - - SocialService - - SoundService - - SpawnerService - - StarterPack - - StarterPlayer - - Stats - - Studio - - StudioAssetService - - StudioData - - StudioDeviceEmulatorService - - StudioPublishService - - StudioScriptDebugEventListener - - StudioSdkService - - StudioService - - TaskScheduler - - TeamCreateData - - TeamCreatePublishService - - TeamCreateService - - Teams - - TeleportService - - TemporaryCageMeshProvider - - TemporaryScriptService - - TestService - - TextBoxService - - TextChatService - - TextService - - ThirdPartyUserService - - TimerService - - ToastNotificationService - - TouchInputService - - TracerService - - TweenService - - UGCValidationService - - UnvalidatedAssetService - - UserInputService - - UserService - - VRService - - VersionControlService - - VideoCaptureService - - VirtualInputManager - - VirtualUser - - VisibilityCheckDispatcher - - VisibilityService - - Visit - - VoiceChatInternal - - VoiceChatService - method: true - must_use: true - GraphicsQualityChangeRequest: - struct: Event - HttpGetAsync: - args: - - required: false - type: any - - required: false - type: any - method: true - HttpPostAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - InsertObjectsAndJoinIfLegacyAsync: - args: - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsContentLoaded: - args: [] - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGearTypeAllowed: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IsLoaded: - args: [] - method: true - IsUniverseMetadataLoaded: - args: [] - method: true - ItemChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - JobId: - property: read-only - Load: - args: - - required: false - type: any - method: true - Loaded: - struct: Event - Name: - property: override-fields - OnClose: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - OpenScreenshotsFolder: - args: [] - method: true - OpenVideosFolder: - args: [] - method: true - Parent: - struct: Instance - PlaceId: - property: read-only - PlaceVersion: - property: read-only - PrivateServerId: - property: read-only - PrivateServerOwnerId: - property: read-only - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ReportInGoogleAnalytics: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SavePlace: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - ScreenshotReady: - struct: Event - ScreenshotSavedToAlbum: - struct: Event - ServiceAdded: - struct: Event - ServiceRemoving: - struct: Event - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastFlagForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastIntForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastStringForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetIsLoaded: - args: - - required: false - type: any - - required: false - type: any - method: true - SetPlaceId: - args: - - required: false - type: any - method: true - SetUniverseId: - args: - - required: false - type: any - method: true - Shutdown: - args: [] - method: true - UniverseMetadataLoaded: - struct: Event - VIPServerId: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - VIPServerOwnerId: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - Workspace: - struct: Workspace - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getService: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - lighting: - struct: Instance - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - service: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - workspace: - struct: Workspace - deprecated: - message: this property is deprecated. - replace: [] - EnumItem: - Name: - property: read-only - Value: - property: read-only - Event: - Connect: - args: - - type: function - method: true - Once: - args: - - type: function - method: true - Wait: - args: [] - method: true - connect: - args: - - type: function - method: true - deprecated: - message: lowercase methods have been superceded by uppercase ones - replace: - - Connect(%1) - wait: - args: - - type: function - method: true - deprecated: - message: lowercase methods have been superceded by uppercase ones - replace: - - Wait(%1) - Instance: - '*': - any: true - Plugin: - '*': - struct: Instance - Activate: - args: - - required: false - type: any - method: true - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionEnabled: - property: read-only - CreateDockWidgetPluginGui: - args: - - required: false - type: any - - required: false - type: any - method: true - CreatePluginAction: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CreatePluginMenu: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CreateQWidgetPluginGui: - args: - - required: false - type: any - - required: false - type: any - method: true - CreateToolbar: - args: - - required: false - type: any - method: true - Deactivate: - args: [] - method: true - Deactivation: - struct: Event - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - GetJoinMode: - args: [] - method: true - GetMouse: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetSelectedRibbonTool: - args: [] - method: true - GetSetting: - args: - - required: false - type: any - method: true - GetStudioUserId: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GridSize: - property: read-only - ImportFbxAnimation: - args: - - required: false - type: any - - required: false - type: any - method: true - ImportFbxRig: - args: - - required: false - type: any - method: true - Intersect: - args: - - required: false - type: any - method: true - Invoke: - args: - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsActivated: - args: [] - method: true - IsActivatedWithExclusiveMouse: - args: [] - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - Name: - property: override-fields - Negate: - args: - - required: false - type: any - method: true - OnInvoke: - args: - - required: false - type: any - - required: false - type: any - method: true - OnSetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - OpenScript: - args: - - required: false - type: any - - required: false - type: any - method: true - OpenWikiPage: - args: - - required: false - type: any - method: true - Parent: - struct: Instance - PauseSound: - args: - - required: false - type: any - method: true - PlaySound: - args: - - required: false - type: any - - required: false - type: any - method: true - ProcessAssetInsertionDrag: - property: override-fields - ProcessAssetInsertionDrop: - property: override-fields - PromptForExistingAssetId: - args: - - required: false - type: any - method: true - PromptSaveSelection: - args: - - required: false - type: any - method: true - Ready: - struct: Event - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ResumeSound: - args: - - required: false - type: any - method: true - SaveSelectedToRoblox: - args: [] - method: true - SelectRibbonTool: - args: - - required: false - type: any - - required: false - type: any - method: true - Separate: - args: - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - SetReady: - args: [] - method: true - SetSetting: - args: - - required: false - type: any - - required: false - type: any - method: true - StartDecalDrag: - args: - - required: false - type: any - method: true - StartDrag: - args: - - required: false - type: any - method: true - StopAllSounds: - args: [] - method: true - Union: - args: - - required: false - type: any - method: true - Unloading: - struct: Event - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Script: - '*': - struct: Instance - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CurrentEditor: - struct: Instance - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Disabled: - property: override-fields - Enabled: - property: override-fields - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetHash: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - LinkedSource: - property: override-fields - Name: - property: override-fields - Parent: - struct: Instance - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Terrain: - '*': - struct: Instance - AncestryChanged: - struct: Event - Anchored: - property: override-fields - ApplyAngularImpulse: - args: - - required: false - type: any - method: true - ApplyImpulse: - args: - - required: false - type: any - method: true - ApplyImpulseAtPosition: - args: - - required: false - type: any - - required: false - type: any - method: true - Archivable: - property: override-fields - AssemblyAngularVelocity: - any: true - AssemblyCenterOfMass: - any: true - AssemblyLinearVelocity: - any: true - AssemblyMass: - property: read-only - AssemblyRootPart: - struct: BasePart - AttributeChanged: - struct: Event - AutowedgeCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - AutowedgeCells: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - BackParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackSurface: - property: override-fields - BackSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomSurface: - property: override-fields - BottomSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BrickColor: - property: override-fields - CFrame: - any: true - CanCollide: - property: override-fields - CanCollideWith: - args: - - required: false - type: any - method: true - CanQuery: - property: override-fields - CanSetNetworkOwnership: - args: [] - method: true - CanShorelinesBeUpgraded: - args: [] - method: true - CanSmoothVoxelsBeUpgraded: - args: [] - method: true - CanTouch: - property: override-fields - CastShadow: - property: override-fields - CellCenterToWorld: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CellCornerToWorld: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CenterOfMass: - any: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - Clear: - args: [] - method: true - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionGroup: - property: override-fields - CollisionGroupId: - property: override-fields - Color: - property: override-fields - ConvertToSmooth: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - CopyRegion: - args: - - required: false - type: any - method: true - CountCells: - args: [] - method: true - CurrentPhysicalProperties: - property: read-only - CustomPhysicalProperties: - property: override-fields - Decoration: - property: override-fields - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Elasticity: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - ExtentsCFrame: - any: true - ExtentsSize: - any: true - FillBall: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillBlock: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillCylinder: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillWedge: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - Friction: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontSurface: - property: override-fields - FrontSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetChildren: - args: [] - method: true - GetConnectedParts: - args: - - required: false - type: any - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetJoints: - args: [] - method: true - GetMass: - args: [] - method: true - GetMaterialColor: - args: - - required: false - type: any - method: true - GetNetworkOwner: - args: [] - method: true - GetNetworkOwnershipAuto: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetRootPart: - args: [] - method: true - GetTerrainWireframe: - args: - - required: false - type: any - - required: false - type: any - method: true - GetTouchingParts: - args: [] - method: true - GetVelocityAtPosition: - args: - - required: false - type: any - method: true - GetWaterCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IntersectAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGrounded: - args: [] - method: true - IsSmooth: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - LeftParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftSurface: - property: override-fields - LeftSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LocalSimulationTouched: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - LocalTransparencyModifier: - property: override-fields - Locked: - property: override-fields - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Mass: - property: read-only - Massless: - property: override-fields - Material: - property: override-fields - MaterialColors: - property: override-fields - MaterialVariant: - property: override-fields - MaxExtents: - property: read-only - Name: - property: override-fields - Orientation: - any: true - Origin: - any: true - OutfitChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - PasteRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Pivot Offset: - any: true - PivotOffset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - Position: - any: true - ReadVoxels: - args: - - required: false - type: any - - required: false - type: any - method: true - ReceiveAge: - property: read-only - Reflectance: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ReplaceMaterial: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - ReplaceMaterialInTransform: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Resize: - args: - - required: false - type: any - - required: false - type: any - method: true - ResizeIncrement: - property: read-only - ResizeableFaces: - property: read-only - RightParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightSurface: - property: override-fields - RightSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RootPriority: - property: override-fields - RotVelocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - Rotation: - any: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetCells: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetMaterialColor: - args: - - required: false - type: any - - required: false - type: any - method: true - SetMaterialInTransform: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SetNetworkOwner: - args: - - required: false - type: any - method: true - SetNetworkOwnershipAuto: - args: [] - method: true - SetWaterCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - Size: - any: true - SmoothRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SpecificGravity: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - StoppedTouching: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - SubtractAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - TopParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopSurface: - property: override-fields - TopSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TouchEnded: - struct: Event - Touched: - struct: Event - Transparency: - property: override-fields - UnionAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Velocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WaterColor: - property: override-fields - WaterReflectance: - property: override-fields - WaterTransparency: - property: override-fields - WaterWaveSize: - property: override-fields - WaterWaveSpeed: - property: override-fields - WorldToCell: - args: - - required: false - type: any - method: true - WorldToCellPreferEmpty: - args: - - required: false - type: any - method: true - WorldToCellPreferSolid: - args: - - required: false - type: any - method: true - WriteVoxels: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - brickColor: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getMass: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - resize: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - subtractAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - unionAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Workspace: - '*': - struct: Instance - AddPersistentPlayer: - args: - - required: false - type: any - method: true - AllowThirdPartySales: - property: override-fields - AncestryChanged: - struct: Event - Archivable: - property: override-fields - ArePartsTouchingOthers: - args: - - required: false - type: any - - required: false - type: any - method: true - AttributeChanged: - struct: Event - Blockcast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BulkMoveTo: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CacheCurrentTerrain: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpDistance: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpHeight: - args: - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpPower: - args: - - required: false - type: any - - required: false - type: any - method: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - ClearCachedTerrain: - args: - - required: false - type: any - method: true - ClientAnimatorThrottling: - property: override-fields - Clone: - args: [] - method: true - CurrentCamera: - struct: Camera - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - DistributedGameTime: - property: override-fields - ExperimentalSolverIsEnabled: - args: [] - method: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FindPartOnRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartOnRayWithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartOnRayWithWhitelist: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3WithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3WithWhiteList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetBoundingBox: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetExtentsSize: - args: [] - method: true - GetFullName: - args: [] - method: true - GetModelCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetModelSize: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetNumAwakeParts: - args: [] - method: true - GetPartBoundsInBox: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - GetPartBoundsInRadius: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - GetPartsInPart: - args: - - required: false - type: any - - required: false - type: any - method: true - GetPhysicsThrottling: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPrimaryPartCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRealPhysicsFPS: - args: [] - method: true - GetScale: - args: [] - method: true - GetServerTimeNow: - args: [] - method: true - GlobalWind: - any: true - Gravity: - property: override-fields - HumanoidOnlySetCollisionsOnStateChange: - property: override-fields - IKMoveTo: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsRegion3Empty: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IsRegion3EmptyWithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - JoinToOutsiders: - args: - - required: false - type: any - - required: false - type: any - method: true - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - MeshPartHeadsAndAccessories: - property: override-fields - ModelStreamingMode: - property: override-fields - MoveTo: - args: - - required: false - type: any - method: true - Name: - property: override-fields - Origin: - any: true - PGSIsEnabled: - args: [] - method: true - Parent: - struct: Instance - PersistentLoaded: - struct: Event - PhysicsSteppingMethod: - property: override-fields - Pivot Offset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - PrimaryPart: - struct: BasePart - Raycast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - RaycastCachedTerrain: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - RejectCharacterDeletions: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - RemovePersistentPlayer: - args: - - required: false - type: any - method: true - ReplicateInstanceDestroySetting: - property: override-fields - ResetOrientationToIdentity: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Retargeting: - property: override-fields - Scale: - property: override-fields - ScaleTo: - args: - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetIdentityOrientation: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetInsertPoint: - args: - - required: false - type: any - - required: false - type: any - method: true - SetMeshPartHeadsAndAccessories: - args: - - required: false - type: any - method: true - SetPhysicsThrottleEnabled: - args: - - required: false - type: any - method: true - SetPrimaryPartCFrame: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SignalBehavior: - property: override-fields - Spherecast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - StreamOutBehavior: - property: override-fields - StreamingIntegrityMode: - property: override-fields - StreamingMinRadius: - property: override-fields - StreamingTargetRadius: - property: override-fields - Terrain: - struct: Terrain - TouchesUseCollisionGroups: - property: override-fields - TranslateBy: - args: - - required: false - type: any - method: true - UnjoinFromOutsiders: - args: - - required: false - type: any - method: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WorldPivot: - any: true - ZoomToExtents: - args: [] - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - findPartOnRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - findPartsInRegion3: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - move: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - moveTo: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] -last_updated: 1681227519 -last_selene_version: 0.25.0 -roblox_classes: - Accessory: - superclass: Accoutrement - events: [] - properties: - - AccessoryType - Accoutrement: - superclass: Instance - events: [] - properties: - - AttachmentForward - - AttachmentPoint - - AttachmentPos - - AttachmentRight - - AttachmentUp - Actor: - superclass: Model - events: [] - properties: [] - AdGui: - superclass: SurfaceGuiBase - events: [] - properties: - - AdShape - - Status - AdPortal: - superclass: Instance - events: [] - properties: - - PortalInvalidReason - - PortalStatus - - PortalVersion - - Status - AdService: - superclass: Instance - events: - - AdTeleportEnded - - AdTeleportInitiated - - VideoAdClosed - properties: [] - AdvancedDragger: - superclass: Instance - events: [] - properties: [] - AirController: - superclass: ControllerBase - events: [] - properties: - - MaintainAngularMomentum - - MaintainLinearMomentum - - MoveMaxForce - - OrientationMaxTorque - - OrientationSpeedFactor - - VectorForce - AlignOrientation: - superclass: Constraint - events: [] - properties: - - AlignType - - CFrame - - MaxAngularVelocity - - MaxTorque - - Mode - - PrimaryAxis - - PrimaryAxisOnly - - ReactionTorqueEnabled - - Responsiveness - - RigidityEnabled - - SecondaryAxis - AlignPosition: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - MaxForce - - MaxVelocity - - Mode - - Position - - ReactionForceEnabled - - Responsiveness - - RigidityEnabled - AnalysticsSettings: - superclass: GenericSettings - events: [] - properties: [] - AnalyticsService: - superclass: Instance - events: [] - properties: - - ApiKey - AngularVelocity: - superclass: Constraint - events: [] - properties: - - AngularVelocity - - MaxTorque - - ReactionTorqueEnabled - - RelativeTo - Animation: - superclass: Instance - events: [] - properties: - - AnimationId - AnimationClip: - superclass: Instance - events: [] - properties: - - Guid - - Loop - - Priority - AnimationClipProvider: - superclass: Instance - events: [] - properties: [] - AnimationConstraint: - superclass: Constraint - events: [] - properties: - - IsKinematic - - MaxForce - - MaxTorque - - Transform - AnimationController: - superclass: Instance - events: - - AnimationPlayed - properties: [] - AnimationFromVideoCreatorService: - superclass: Instance - events: [] - properties: [] - AnimationFromVideoCreatorStudioService: - superclass: Instance - events: [] - properties: [] - AnimationRigData: - superclass: Instance - events: [] - properties: [] - AnimationStreamTrack: - superclass: Instance - events: - - Stopped - properties: - - Animation - - IsPlaying - - Priority - - WeightCurrent - - WeightTarget - AnimationTrack: - superclass: Instance - events: - - DidLoop - - Ended - - KeyframeReached - - Stopped - properties: - - Animation - - IsPlaying - - Length - - Looped - - Priority - - Speed - - TimePosition - - WeightCurrent - - WeightTarget - Animator: - superclass: Instance - events: - - AnimationPlayed - - AnimationPlayedCoreScript - - AnimationStreamTrackPlayed - properties: - - EvaluationThrottled - - PreferLodEnabled - AppStorageService: - superclass: LocalStorageService - events: [] - properties: [] - AppUpdateService: - superclass: Instance - events: [] - properties: [] - ArcHandles: - superclass: HandlesBase - events: - - MouseButton1Down - - MouseButton1Up - - MouseDrag - - MouseEnter - - MouseLeave - properties: - - Axes - AssetCounterService: - superclass: Instance - events: [] - properties: [] - AssetDeliveryProxy: - superclass: Instance - events: [] - properties: - - Interface - - Port - - StartServer - AssetImportService: - superclass: Instance - events: [] - properties: [] - AssetImportSession: - superclass: Instance - events: - - UploadComplete - - UploadCompleteDeprecated - - UploadProgress - properties: [] - AssetManagerService: - superclass: Instance - events: - - AssetImportedSignal - - ImportSessionFinished - - ImportSessionStarted - - MayBeLinkedSourceModified - properties: [] - AssetPatchSettings: - superclass: Instance - events: [] - properties: - - ContentId - - OutputPath - - PatchId - AssetService: - superclass: Instance - events: - - OpenPublishResultModal - properties: [] - AssetSoundEffect: - superclass: CustomSoundEffect - events: [] - properties: [] - Atmosphere: - superclass: Instance - events: [] - properties: - - Color - - Decay - - Density - - Glare - - Haze - - Offset - Attachment: - superclass: Instance - events: [] - properties: - - Axis - - CFrame - - Orientation - - Position - - Rotation - - SecondaryAxis - - Visible - - WorldAxis - - WorldCFrame - - WorldOrientation - - WorldPosition - - WorldRotation - - WorldSecondaryAxis - AudioPages: - superclass: Pages - events: [] - properties: [] - AudioSearchParams: - superclass: Instance - events: [] - properties: - - Album - - Artist - - AudioSubtype - - MaxDuration - - MinDuration - - SearchKeyword - - Tag - - Title - AvatarEditorService: - superclass: Instance - events: - - OpenAllowInventoryReadAccess - - OpenPromptCreateOufit - - OpenPromptDeleteOutfit - - OpenPromptRenameOutfit - - OpenPromptSaveAvatar - - OpenPromptSetFavorite - - OpenPromptUpdateOutfit - - PromptAllowInventoryReadAccessCompleted - - PromptCreateOutfitCompleted - - PromptDeleteOutfitCompleted - - PromptRenameOutfitCompleted - - PromptSaveAvatarCompleted - - PromptSaveAvatarThumbnailCustomizationCompleted - - PromptSetFavoriteCompleted - - PromptUpdateOutfitCompleted - properties: [] - AvatarImportService: - superclass: Instance - events: [] - properties: [] - Backpack: - superclass: Instance - events: [] - properties: [] - BackpackItem: - superclass: Model - events: [] - properties: - - TextureId - BadgeService: - superclass: Instance - events: - - BadgeAwarded - - OnBadgeAwarded - properties: [] - BallSocketConstraint: - superclass: Constraint - events: [] - properties: - - LimitsEnabled - - MaxFrictionTorque - - Radius - - Restitution - - TwistLimitsEnabled - - TwistLowerAngle - - TwistUpperAngle - - UpperAngle - BasePart: - superclass: PVInstance - events: - - LocalSimulationTouched - - OutfitChanged - - StoppedTouching - - TouchEnded - - Touched - properties: - - Anchored - - AssemblyAngularVelocity - - AssemblyCenterOfMass - - AssemblyLinearVelocity - - AssemblyMass - - AssemblyRootPart - - BackParamA - - BackParamB - - BackSurface - - BackSurfaceInput - - BottomParamA - - BottomParamB - - BottomSurface - - BottomSurfaceInput - - BrickColor - - CFrame - - CanCollide - - CanQuery - - CanTouch - - CastShadow - - CenterOfMass - - CollisionGroup - - CollisionGroupId - - Color - - CurrentPhysicalProperties - - CustomPhysicalProperties - - Elasticity - - ExtentsCFrame - - ExtentsSize - - Friction - - FrontParamA - - FrontParamB - - FrontSurface - - FrontSurfaceInput - - LeftParamA - - LeftParamB - - LeftSurface - - LeftSurfaceInput - - LocalTransparencyModifier - - Locked - - Mass - - Massless - - Material - - MaterialVariant - - Orientation - - PivotOffset - - Position - - ReceiveAge - - Reflectance - - ResizeIncrement - - ResizeableFaces - - RightParamA - - RightParamB - - RightSurface - - RightSurfaceInput - - RootPriority - - RotVelocity - - Rotation - - Size - - SpecificGravity - - TopParamA - - TopParamB - - TopSurface - - TopSurfaceInput - - Transparency - - Velocity - - brickColor - BasePlayerGui: - superclass: Instance - events: [] - properties: [] - BaseScript: - superclass: LuaSourceContainer - events: [] - properties: - - Disabled - - Enabled - - LinkedSource - - RunContext - BaseWrap: - superclass: Instance - events: [] - properties: - - CageMeshId - - CageOrigin - - CageOriginWorld - - HSRAssetId - - ImportOrigin - - ImportOriginWorld - Beam: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - Brightness - - Color - - CurveSize0 - - CurveSize1 - - Enabled - - FaceCamera - - LightEmission - - LightInfluence - - Segments - - Texture - - TextureLength - - TextureMode - - TextureSpeed - - Transparency - - Width0 - - Width1 - - ZOffset - BevelMesh: - superclass: DataModelMesh - events: [] - properties: [] - BillboardGui: - superclass: LayerCollector - events: [] - properties: - - Active - - Adornee - - AlwaysOnTop - - Brightness - - ClipsDescendants - - CurrentDistance - - DistanceLowerLimit - - DistanceStep - - DistanceUpperLimit - - ExtentsOffset - - ExtentsOffsetWorldSpace - - LightInfluence - - MaxDistance - - PlayerToHideFrom - - Size - - SizeOffset - - StudsOffset - - StudsOffsetWorldSpace - BinaryStringValue: - superclass: ValueBase - events: - - Changed - properties: [] - BindableEvent: - superclass: Instance - events: - - Event - properties: [] - BindableFunction: - superclass: Instance - events: [] - properties: [] - BlockMesh: - superclass: BevelMesh - events: [] - properties: [] - BloomEffect: - superclass: PostEffect - events: [] - properties: - - Intensity - - Size - - Threshold - BlurEffect: - superclass: PostEffect - events: [] - properties: - - Size - BodyAngularVelocity: - superclass: BodyMover - events: [] - properties: - - AngularVelocity - - MaxTorque - - P - - angularvelocity - - maxTorque - BodyColors: - superclass: CharacterAppearance - events: [] - properties: - - HeadColor - - HeadColor3 - - LeftArmColor - - LeftArmColor3 - - LeftLegColor - - LeftLegColor3 - - RightArmColor - - RightArmColor3 - - RightLegColor - - RightLegColor3 - - TorsoColor - - TorsoColor3 - BodyForce: - superclass: BodyMover - events: [] - properties: - - Force - - force - BodyGyro: - superclass: BodyMover - events: [] - properties: - - CFrame - - D - - MaxTorque - - P - - cframe - - maxTorque - BodyMover: - superclass: Instance - events: [] - properties: [] - BodyPosition: - superclass: BodyMover - events: - - ReachedTarget - properties: - - D - - MaxForce - - P - - Position - - maxForce - - position - BodyThrust: - superclass: BodyMover - events: [] - properties: - - Force - - Location - - force - - location - BodyVelocity: - superclass: BodyMover - events: [] - properties: - - MaxForce - - P - - Velocity - - maxForce - - velocity - Bone: - superclass: Attachment - events: [] - properties: - - Transform - - TransformedCFrame - - TransformedWorldCFrame - BoolValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - BoxHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Size - Breakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - Enabled - - Id - - Line - - LogMessage - - MetaBreakpointId - - Script - - Valid - - Verified - BrickColorValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - BrowserService: - superclass: Instance - events: - - AuthCookieCopiedToEngine - - BrowserWindowClosed - - BrowserWindowWillNavigate - - JavaScriptCallback - properties: [] - BubbleChatConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AdorneeName - - BackgroundColor3 - - BackgroundTransparency - - BubbleDuration - - BubblesSpacing - - Enabled - - Font - - FontFace - - LocalPlayerStudsOffset - - MaxDistance - - MinimizeDistance - - TextColor3 - - TextSize - - VerticalStudsOffset - BulkImportService: - superclass: Instance - events: - - AssetImported - - BulkImportFinished - - BulkImportStarted - properties: [] - BuoyancySensor: - superclass: SensorBase - events: [] - properties: - - FullySubmerged - - TouchingSurface - CFrameValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - CSGDictionaryService: - superclass: FlyweightService - events: [] - properties: [] - CacheableContentProvider: - superclass: Instance - events: [] - properties: [] - CalloutService: - superclass: Instance - events: [] - properties: [] - Camera: - superclass: Instance - events: - - FirstPersonTransition - - InterpolationFinished - properties: - - CFrame - - CameraSubject - - CameraType - - CoordinateFrame - - DiagonalFieldOfView - - FieldOfView - - FieldOfViewMode - - Focus - - HeadLocked - - HeadScale - - MaxAxisFieldOfView - - NearPlaneZ - - ViewportSize - - focus - CanvasGroup: - superclass: GuiObject - events: [] - properties: - - GroupColor3 - - GroupTransparency - CatalogPages: - superclass: Pages - events: [] - properties: [] - ChangeHistoryService: - superclass: Instance - events: - - OnRedo - - OnUndo - properties: [] - ChannelSelectorSoundEffect: - superclass: CustomSoundEffect - events: [] - properties: - - Channel - CharacterAppearance: - superclass: Instance - events: [] - properties: [] - CharacterMesh: - superclass: CharacterAppearance - events: [] - properties: - - BaseTextureId - - BodyPart - - MeshId - - OverlayTextureId - Chat: - superclass: Instance - events: - - BubbleChatSettingsChanged - - Chatted - properties: - - BubbleChatEnabled - - LoadDefaultChat - ChatInputBarConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AbsolutePosition - - AbsolutePositionWrite - - AbsoluteSize - - AbsoluteSizeWrite - - BackgroundColor3 - - BackgroundTransparency - - Enabled - - FontFace - - PlaceholderColor3 - - TargetTextChannel - - TextBox - - TextColor3 - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - ChatWindowConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AbsolutePosition - - AbsolutePositionWrite - - AbsoluteSize - - AbsoluteSizeWrite - - BackgroundColor3 - - BackgroundTransparency - - Enabled - - FontFace - - HeightScale - - HorizontalAlignment - - TextColor3 - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - VerticalAlignment - - WidthScale - ChorusSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Mix - - Rate - ClickDetector: - superclass: Instance - events: - - MouseClick - - MouseHoverEnter - - MouseHoverLeave - - RightMouseClick - - mouseClick - properties: - - CursorIcon - - MaxActivationDistance - ClientReplicator: - superclass: NetworkReplicator - events: - - RCCProfilerDataComplete - - StatsReceived - properties: [] - ClimbController: - superclass: ControllerBase - events: [] - properties: - - AccelerationTime - - MoveMaxForce - - OrientationMaxTorque - - OrientationSpeedFactor - Clothing: - superclass: CharacterAppearance - events: [] - properties: - - Color3 - CloudLocalizationTable: - superclass: LocalizationTable - events: [] - properties: [] - Clouds: - superclass: Instance - events: [] - properties: - - Color - - Cover - - Density - - Enabled - ClusterPacketCache: - superclass: Instance - events: [] - properties: [] - CollectionService: - superclass: Instance - events: - - ItemAdded - - ItemRemoved - - TagAdded - - TagRemoved - properties: [] - Color3Value: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - ColorCorrectionEffect: - superclass: PostEffect - events: [] - properties: - - Brightness - - Contrast - - Saturation - - TintColor - CommandInstance: - superclass: Instance - events: [] - properties: - - AllowGUIAccessPoints - - Checked - - DefaultShortcut - - DisplayName - - Enabled - - Icon - - Name - - Permission - - StatusTip - CommandService: - superclass: Instance - events: - - CommandExecuting - properties: [] - CompressorSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Attack - - GainMakeup - - Ratio - - Release - - SideChain - - Threshold - ConeHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Height - - Radius - Configuration: - superclass: Instance - events: [] - properties: [] - ConfigureServerService: - superclass: Instance - events: [] - properties: [] - Constraint: - superclass: Instance - events: [] - properties: - - Active - - Attachment0 - - Attachment1 - - Color - - Enabled - - Visible - ContentProvider: - superclass: Instance - events: - - AssetFetchFailed - properties: - - BaseUrl - - RequestQueueSize - ContextActionService: - superclass: Instance - events: - - BoundActionAdded - - BoundActionChanged - - BoundActionRemoved - - GetActionButtonEvent - - LocalToolEquipped - - LocalToolUnequipped - properties: [] - Controller: - superclass: Instance - events: - - ButtonChanged - properties: [] - ControllerBase: - superclass: Instance - events: [] - properties: - - MoveSpeedFactor - - RigidityEnabled - ControllerManager: - superclass: Instance - events: [] - properties: - - ActiveController - - BaseMoveSpeed - - BaseTurnSpeed - - ClimbSensor - - FacingDirection - - GroundSensor - - MovingDirection - ControllerPartSensor: - superclass: ControllerSensor - events: [] - properties: - - HitFrame - - HitNormal - - SearchDistance - - SensedPart - - SensorMode - ControllerSensor: - superclass: SensorBase - events: [] - properties: [] - ControllerService: - superclass: Instance - events: [] - properties: [] - CookiesService: - superclass: Instance - events: [] - properties: [] - CoreGui: - superclass: BasePlayerGui - events: - - UserGuiRenderingChanged - properties: - - SelectionImageObject - - Version - CorePackages: - superclass: Instance - events: [] - properties: [] - CoreScript: - superclass: BaseScript - events: [] - properties: [] - CoreScriptDebuggingManagerHelper: - superclass: Instance - events: [] - properties: [] - CoreScriptSyncService: - superclass: Instance - events: [] - properties: [] - CornerWedgePart: - superclass: BasePart - events: [] - properties: [] - CrossDMScriptChangeListener: - superclass: Instance - events: - - GuidLineContentsChanged - - GuidNameChanged - properties: [] - CurveAnimation: - superclass: AnimationClip - events: [] - properties: [] - CustomEvent: - superclass: Instance - events: - - ReceiverConnected - - ReceiverDisconnected - properties: [] - CustomEventReceiver: - superclass: Instance - events: - - EventConnected - - EventDisconnected - - SourceValueChanged - properties: - - Source - CustomSoundEffect: - superclass: SoundEffect - events: [] - properties: [] - CylinderHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Angle - - Height - - InnerRadius - - Radius - CylinderMesh: - superclass: BevelMesh - events: [] - properties: [] - CylindricalConstraint: - superclass: SlidingBallConstraint - events: [] - properties: - - AngularActuatorType - - AngularLimitsEnabled - - AngularResponsiveness - - AngularRestitution - - AngularSpeed - - AngularVelocity - - CurrentAngle - - InclinationAngle - - LowerAngle - - MotorMaxAngularAcceleration - - MotorMaxTorque - - RotationAxisVisible - - ServoMaxTorque - - TargetAngle - - UpperAngle - - WorldRotationAxis - DataModel: - superclass: ServiceProvider - events: - - AllowedGearTypeChanged - - GraphicsQualityChangeRequest - - ItemChanged - - Loaded - - ScreenshotReady - - ScreenshotSavedToAlbum - - UniverseMetadataLoaded - properties: - - CreatorId - - CreatorType - - GameId - - GearGenreSetting - - Genre - - IsSFFlagsLoaded - - JobId - - PlaceId - - PlaceVersion - - PrivateServerId - - PrivateServerOwnerId - - VIPServerId - - VIPServerOwnerId - - Workspace - - lighting - - workspace - DataModelMesh: - superclass: Instance - events: [] - properties: - - Offset - - Scale - - VertexColor - DataModelPatchService: - superclass: Instance - events: [] - properties: [] - DataModelSession: - superclass: Instance - events: - - CurrentDataModelTypeAboutToChange - - CurrentDataModelTypeChanged - - DataModelCreated - - DataModelWillBeDestroyed - properties: - - CurrentDataModelType - - SessionId - DataStore: - superclass: GlobalDataStore - events: [] - properties: [] - DataStoreIncrementOptions: - superclass: Instance - events: [] - properties: [] - DataStoreInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - DataStoreName - - UpdatedTime - DataStoreKey: - superclass: Instance - events: [] - properties: - - KeyName - DataStoreKeyInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - UpdatedTime - - Version - DataStoreKeyPages: - superclass: Pages - events: [] - properties: - - Cursor - DataStoreListingPages: - superclass: Pages - events: [] - properties: - - Cursor - DataStoreObjectVersionInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - IsDeleted - - Version - DataStoreOptions: - superclass: Instance - events: [] - properties: - - AllScopes - DataStorePages: - superclass: Pages - events: [] - properties: [] - DataStoreService: - superclass: Instance - events: [] - properties: - - AutomaticRetry - - LegacyNamingScheme - DataStoreSetOptions: - superclass: Instance - events: [] - properties: [] - DataStoreVersionPages: - superclass: Pages - events: [] - properties: [] - Debris: - superclass: Instance - events: [] - properties: - - MaxItems - DebugSettings: - superclass: Instance - events: [] - properties: - - DataModel - - InstanceCount - - IsScriptStackTracingEnabled - - JobCount - - PlayerCount - - ReportSoundWarnings - - RobloxVersion - - TickCountPreciseOverride - DebuggablePluginWatcher: - superclass: Instance - events: [] - properties: [] - DebuggerBreakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - IsEnabled - - Line - - LogExpression - - isContextDependentBreakpoint - DebuggerConnection: - superclass: Instance - events: - - BreakpointAdded - - BreakpointChanged - - BreakpointRemoved - - Paused - - Resumed - properties: - - ErrorMessage - - HasError - - Id - - IsPaused - DebuggerConnectionManager: - superclass: Instance - events: - - ConnectionEnded - - ConnectionStarted - - FocusChanged - properties: - - Timeout - DebuggerLuaResponse: - superclass: Instance - events: [] - properties: - - IsError - - IsSuccess - - Message - - RequestId - - Status - DebuggerManager: - superclass: Instance - events: - - DebuggerAdded - - DebuggerRemoved - properties: - - DebuggingEnabled - DebuggerUIService: - superclass: Instance - events: - - ExpressionAdded - properties: [] - DebuggerVariable: - superclass: Instance - events: [] - properties: - - Name - - Populated - - Type - - Value - - VariableId - - VariablesCount - DebuggerWatch: - superclass: Instance - events: [] - properties: - - Expression - Decal: - superclass: FaceInstance - events: [] - properties: - - Color3 - - LocalTransparencyModifier - - Shiny - - Specular - - Texture - - Transparency - - ZIndex - DepthOfFieldEffect: - superclass: PostEffect - events: [] - properties: - - FarIntensity - - FocusDistance - - InFocusRadius - - NearIntensity - DeviceIdService: - superclass: Instance - events: [] - properties: [] - Dialog: - superclass: Instance - events: - - DialogChoiceSelected - properties: - - BehaviorType - - ConversationDistance - - GoodbyeChoiceActive - - GoodbyeDialog - - InUse - - InitialPrompt - - Purpose - - Tone - - TriggerDistance - - TriggerOffset - DialogChoice: - superclass: Instance - events: [] - properties: - - GoodbyeChoiceActive - - GoodbyeDialog - - ResponseDialog - - UserDialog - DistortionSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Level - DockWidgetPluginGui: - superclass: PluginGui - events: [] - properties: - - HostWidgetWasRestored - DoubleConstrainedValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - ConstrainedValue - - MaxValue - - MinValue - - Value - DraftsService: - superclass: Instance - events: - - CommitStatusChanged - - DraftAdded - - DraftRemoved - - DraftStatusChanged - - EditorsListChanged - - UpdateStatusChanged - properties: [] - Dragger: - superclass: Instance - events: [] - properties: [] - DraggerService: - superclass: Instance - events: [] - properties: - - AlignDraggedObjects - - AngleSnapEnabled - - AngleSnapIncrement - - AnimateHover - - CollisionsEnabled - - DraggerCoordinateSpace - - DraggerMovementMode - - GeometrySnapColor - - HoverAnimateFrequency - - HoverLineThickness - - HoverThickness - - JointsEnabled - - LinearSnapEnabled - - LinearSnapIncrement - - PivotSnapToGeometry - - ShowHover - - ShowPivotIndicator - DynamicRotate: - superclass: JointInstance - events: [] - properties: - - BaseAngle - EchoSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Delay - - DryLevel - - Feedback - - WetLevel - EmotesPages: - superclass: InventoryPages - events: [] - properties: [] - EqualizerSoundEffect: - superclass: SoundEffect - events: [] - properties: - - HighGain - - LowGain - - MidGain - EulerRotationCurve: - superclass: Instance - events: [] - properties: - - RotationOrder - EventIngestService: - superclass: Instance - events: [] - properties: [] - ExperienceAuthService: - superclass: Instance - events: - - OpenAuthPrompt - properties: [] - ExperienceInviteOptions: - superclass: Instance - events: [] - properties: - - InviteMessageId - - InviteUser - - LaunchData - - PromptMessage - Explosion: - superclass: Instance - events: - - Hit - properties: - - BlastPressure - - BlastRadius - - DestroyJointRadiusPercent - - ExplosionType - - Position - - TimeScale - - Visible - FaceAnimatorService: - superclass: Instance - events: - - TrackerError - - TrackerPrompt - properties: - - AudioAnimationEnabled - - FlipHeadOrientation - - VideoAnimationEnabled - FaceControls: - superclass: Instance - events: [] - properties: - - ChinRaiser - - ChinRaiserUpperLip - - Corrugator - - EyesLookDown - - EyesLookLeft - - EyesLookRight - - EyesLookUp - - FlatPucker - - Funneler - - JawDrop - - JawLeft - - JawRight - - LeftBrowLowerer - - LeftCheekPuff - - LeftCheekRaiser - - LeftDimpler - - LeftEyeClosed - - LeftEyeUpperLidRaiser - - LeftInnerBrowRaiser - - LeftLipCornerDown - - LeftLipCornerPuller - - LeftLipStretcher - - LeftLowerLipDepressor - - LeftNoseWrinkler - - LeftOuterBrowRaiser - - LeftUpperLipRaiser - - LipPresser - - LipsTogether - - LowerLipSuck - - MouthLeft - - MouthRight - - Pucker - - RightBrowLowerer - - RightCheekPuff - - RightCheekRaiser - - RightDimpler - - RightEyeClosed - - RightEyeUpperLidRaiser - - RightInnerBrowRaiser - - RightLipCornerDown - - RightLipCornerPuller - - RightLipStretcher - - RightLowerLipDepressor - - RightNoseWrinkler - - RightOuterBrowRaiser - - RightUpperLipRaiser - - TongueDown - - TongueOut - - TongueUp - - UpperLipSuck - FaceInstance: - superclass: Instance - events: [] - properties: - - Face - FacialAnimationRecordingService: - superclass: Instance - events: [] - properties: - - BiometricDataConsent - FacialAnimationStreamingService: - superclass: Instance - events: [] - properties: - - EnableFlags - - Enabled - FacialAnimationStreamingServiceStats: - superclass: Instance - events: - - isStreamingFacsUpdated - properties: [] - FacialAnimationStreamingServiceV2: - superclass: Instance - events: [] - properties: - - ServiceState - Feature: - superclass: Instance - events: [] - properties: - - FaceId - - InOut - - LeftRight - - TopBottom - File: - superclass: Instance - events: [] - properties: - - Size - FileMesh: - superclass: DataModelMesh - events: [] - properties: - - MeshId - - TextureId - Fire: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - Heat - - SecondaryColor - - Size - - TimeScale - - size - Flag: - superclass: Tool - events: [] - properties: - - TeamColor - FlagStand: - superclass: Part - events: - - FlagCaptured - properties: - - TeamColor - FlagStandService: - superclass: Instance - events: [] - properties: [] - FlangeSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Mix - - Rate - FloatCurve: - superclass: Instance - events: [] - properties: - - Length - FloorWire: - superclass: GuiBase3d - events: [] - properties: - - CycleOffset - - From - - StudsBetweenTextures - - Texture - - TextureSize - - To - - Velocity - - WireRadius - FlyweightService: - superclass: Instance - events: [] - properties: [] - Folder: - superclass: Instance - events: [] - properties: [] - ForceField: - superclass: Instance - events: [] - properties: - - Visible - FormFactorPart: - superclass: BasePart - events: [] - properties: - - FormFactor - - formFactor - Frame: - superclass: GuiObject - events: [] - properties: - - Style - FriendPages: - superclass: Pages - events: [] - properties: [] - FriendService: - superclass: Instance - events: - - FriendsUpdated - properties: [] - FunctionalTest: - superclass: Instance - events: [] - properties: - - Description - GamePassService: - superclass: Instance - events: [] - properties: [] - GameSettings: - superclass: Instance - events: - - VideoRecordingChangeRequest - properties: - - VideoCaptureEnabled - - VideoRecording - GamepadService: - superclass: Instance - events: - - GamepadThumbstick1Changed - properties: - - GamepadCursorEnabled - GenericSettings: - superclass: ServiceProvider - events: [] - properties: [] - Geometry: - superclass: Instance - events: [] - properties: [] - GetTextBoundsParams: - superclass: Instance - events: [] - properties: - - Font - - Size - - Text - - Width - GlobalDataStore: - superclass: Instance - events: [] - properties: [] - GlobalSettings: - superclass: GenericSettings - events: [] - properties: [] - Glue: - superclass: JointInstance - events: [] - properties: - - F0 - - F1 - - F2 - - F3 - GoogleAnalyticsConfiguration: - superclass: Instance - events: [] - properties: [] - GroundController: - superclass: ControllerBase - events: [] - properties: - - AccelerationLean - - AccelerationTime - - AlignSpeed - - AlignTorque - - DecelerationTime - - Friction - - FrictionWeight - - GroundOffset - - StandForce - - StandSpeed - - TurningFactor - GroupService: - superclass: Instance - events: [] - properties: [] - GuiBase: - superclass: Instance - events: [] - properties: [] - GuiBase2d: - superclass: GuiBase - events: - - SelectionChanged - properties: - - AbsolutePosition - - AbsoluteRotation - - AbsoluteSize - - AutoLocalize - - ClippedRect - - IsNotOccluded - - Localize - - RawRect2D - - RootLocalizationTable - - SelectionBehaviorDown - - SelectionBehaviorLeft - - SelectionBehaviorRight - - SelectionBehaviorUp - - SelectionGroup - - TotalGroupScale - GuiBase3d: - superclass: GuiBase - events: [] - properties: - - Color - - Color3 - - Transparency - - Visible - GuiButton: - superclass: GuiObject - events: - - Activated - - MouseButton1Click - - MouseButton1Down - - MouseButton1Up - - MouseButton2Click - - MouseButton2Down - - MouseButton2Up - properties: - - AutoButtonColor - - Modal - - Selected - - Style - GuiLabel: - superclass: GuiObject - events: [] - properties: [] - GuiMain: - superclass: ScreenGui - events: [] - properties: [] - GuiObject: - superclass: GuiBase2d - events: - - DragBegin - - DragStopped - - InputBegan - - InputChanged - - InputEnded - - MouseEnter - - MouseLeave - - MouseMoved - - MouseWheelBackward - - MouseWheelForward - - SelectionGained - - SelectionLost - - TouchLongPress - - TouchPan - - TouchPinch - - TouchRotate - - TouchSwipe - - TouchTap - properties: - - Active - - AnchorPoint - - AutomaticSize - - BackgroundColor - - BackgroundColor3 - - BackgroundTransparency - - BorderColor - - BorderColor3 - - BorderMode - - BorderSizePixel - - ClipsDescendants - - Draggable - - LayoutOrder - - NextSelectionDown - - NextSelectionLeft - - NextSelectionRight - - NextSelectionUp - - Position - - Rotation - - Selectable - - SelectionImageObject - - SelectionOrder - - Size - - SizeConstraint - - Transparency - - Visible - - ZIndex - GuiService: - superclass: Instance - events: - - BrowserWindowClosed - - CloseInspectMenuRequest - - CoreGuiRenderOverflowed - - EmotesMenuOpenChanged - - ErrorMessageChanged - - GuiVisibilityChangedSignal - - InspectMenuEnabledChangedSignal - - InspectPlayerFromHumanoidDescriptionRequest - - InspectPlayerFromUserIdWithCtxRequest - - KeyPressed - - MenuClosed - - MenuOpened - - NativeClose - - NetworkPausedEnabledChanged - - Open9SliceEditor - - PurchasePromptShown - - SafeZoneOffsetsChanged - - ShowLeaveConfirmation - - SpecialKeyPressed - - UiMessageChanged - properties: - - AutoSelectGuiEnabled - - CoreEffectFolder - - CoreGuiFolder - - CoreGuiNavigationEnabled - - GuiNavigationEnabled - - IsModalDialog - - IsWindows - - MenuIsOpen - - SelectedCoreObject - - SelectedObject - - TouchControlsEnabled - GuidRegistryService: - superclass: Instance - events: [] - properties: [] - HSRDataContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - HandleAdornment: - superclass: PVAdornment - events: - - MouseButton1Down - - MouseButton1Up - - MouseEnter - - MouseLeave - properties: - - AdornCullingMode - - AlwaysOnTop - - CFrame - - SizeRelativeOffset - - ZIndex - Handles: - superclass: HandlesBase - events: - - MouseButton1Down - - MouseButton1Up - - MouseDrag - - MouseEnter - - MouseLeave - properties: - - Faces - - Style - HandlesBase: - superclass: PartAdornment - events: [] - properties: [] - HapticService: - superclass: Instance - events: [] - properties: [] - Hat: - superclass: Accoutrement - events: [] - properties: [] - HeightmapImporterService: - superclass: Instance - events: - - ColormapHasUnknownPixels - - ProgressUpdate - properties: [] - HiddenSurfaceRemovalAsset: - superclass: Instance - events: [] - properties: [] - Highlight: - superclass: Instance - events: [] - properties: - - Adornee - - DepthMode - - Enabled - - FillColor - - FillTransparency - - LineThickness - - OutlineColor - - OutlineTransparency - - ReservedId - HingeConstraint: - superclass: Constraint - events: [] - properties: - - ActuatorType - - AngularResponsiveness - - AngularSpeed - - AngularVelocity - - CurrentAngle - - LimitsEnabled - - LowerAngle - - MotorMaxAcceleration - - MotorMaxTorque - - Radius - - Restitution - - ServoMaxTorque - - TargetAngle - - UpperAngle - Hint: - superclass: Message - events: [] - properties: [] - Hole: - superclass: Feature - events: [] - properties: [] - Hopper: - superclass: Instance - events: [] - properties: [] - HopperBin: - superclass: BackpackItem - events: - - Deselected - - Selected - properties: - - Active - - BinType - HttpRbxApiService: - superclass: Instance - events: [] - properties: [] - HttpRequest: - superclass: Instance - events: [] - properties: [] - HttpService: - superclass: Instance - events: [] - properties: - - HttpEnabled - Humanoid: - superclass: Instance - events: - - AnimationPlayed - - Climbing - - ClusterCompositionFinished - - CustomStatusAdded - - CustomStatusRemoved - - Died - - EmoteTriggered - - FallingDown - - FreeFalling - - GettingUp - - HealthChanged - - Jumping - - MoveToFinished - - PlatformStanding - - Ragdoll - - Running - - Seated - - StateChanged - - StateEnabledChanged - - StatusAdded - - StatusRemoved - - Strafing - - Swimming - - Touched - properties: - - AutoJumpEnabled - - AutoRotate - - AutomaticScalingEnabled - - BreakJointsOnDeath - - CameraOffset - - CollisionType - - DisplayDistanceType - - DisplayName - - EvaluateStateMachine - - FloorMaterial - - Health - - HealthDisplayDistance - - HealthDisplayType - - HipHeight - - Jump - - JumpHeight - - JumpPower - - LeftLeg - - MaxHealth - - MaxSlopeAngle - - MoveDirection - - NameDisplayDistance - - NameOcclusion - - PlatformStand - - RequiresNeck - - RigType - - RightLeg - - RootPart - - SeatPart - - Sit - - TargetPoint - - Torso - - UseJumpPower - - WalkSpeed - - WalkToPart - - WalkToPoint - - maxHealth - HumanoidController: - superclass: Controller - events: [] - properties: [] - HumanoidDescription: - superclass: Instance - events: - - EmotesChanged - - EquippedEmotesChanged - properties: - - AccessoryBlob - - BackAccessory - - BodyTypeScale - - ClimbAnimation - - DepthScale - - Face - - FaceAccessory - - FallAnimation - - FrontAccessory - - GraphicTShirt - - HairAccessory - - HatAccessory - - Head - - HeadColor - - HeadScale - - HeightScale - - IdleAnimation - - JumpAnimation - - LeftArm - - LeftArmColor - - LeftLeg - - LeftLegColor - - MoodAnimation - - NeckAccessory - - NumberEmotesLoaded - - Pants - - ProportionScale - - RightArm - - RightArmColor - - RightLeg - - RightLegColor - - RunAnimation - - Shirt - - ShouldersAccessory - - SwimAnimation - - Torso - - TorsoColor - - WaistAccessory - - WalkAnimation - - WidthScale - IKControl: - superclass: Instance - events: [] - properties: - - ChainRoot - - Enabled - - EndEffector - - EndEffectorOffset - - Offset - - Pole - - Priority - - SmoothTime - - Target - - Type - - Weight - ILegacyStudioBridge: - superclass: Instance - events: [] - properties: [] - IXPService: - superclass: Instance - events: - - OnBrowserTrackerLayerLoadingStatusChanged - - OnUserLayerLoadingStatusChanged - properties: [] - ImageButton: - superclass: GuiButton - events: [] - properties: - - ContentImageSize - - HoverImage - - Image - - ImageColor3 - - ImageRectOffset - - ImageRectSize - - ImageTransparency - - IsLoaded - - PressedImage - - ResampleMode - - ScaleType - - SliceCenter - - SliceScale - - TileSize - ImageDataExperimental: - superclass: Instance - events: [] - properties: - - Size - - TemporaryId - ImageHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Image - - Size - ImageLabel: - superclass: GuiLabel - events: [] - properties: - - ContentImageSize - - Image - - ImageColor3 - - ImageRectOffset - - ImageRectSize - - ImageTransparency - - IsLoaded - - ResampleMode - - ScaleType - - SliceCenter - - SliceScale - - TileSize - ImporterAnimationSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterBaseSettings: - superclass: Instance - events: [] - properties: - - Id - - ImportName - - ShouldImport - ImporterFacsSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterGroupSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - Anchored - - ImportAsModelAsset - - InsertInWorkspace - ImporterJointSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterMaterialSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - DiffuseFilePath - - IsPbr - - MetalnessFilePath - - NormalFilePath - - RoughnessFilePath - ImporterMeshSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - Anchored - - CageManifold - - CageMeshIntersectedPreview - - CageMeshNotIntersected - - CageNoOverlappingVertices - - CageNonManifoldPreview - - CageOverlappingVerticesPreview - - CageUVMatched - - CageUVMisMatchedPreview - - Dimensions - - DoubleSided - - IgnoreVertexColors - - IrrelevantCageModifiedPreview - - MeshHoleDetectedPreview - - MeshNoHoleDetected - - NoIrrelevantCageModified - - NoOuterCageFarExtendedFromMesh - - OuterCageFarExtendedFromMeshPreview - - PolygonCount - - UseImportedPivot - ImporterRootSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - AddModelToInventory - - Anchored - - ExistingPackageId - - FileDimensions - - ImportAsModelAsset - - ImportAsPackage - - InsertInWorkspace - - InsertWithScenePosition - - InvertNegativeFaces - - MergeMeshes - - PolygonCount - - RigScale - - RigType - - ScaleUnit - - UseSceneOriginAsCFrame - - UseSceneOriginAsPivot - - UsesCages - - WorldForward - - WorldUp - IncrementalPatchBuilder: - superclass: Instance - events: [] - properties: - - AddPathsToBundle - - BuildDebouncePeriod - - HighCompression - - SerializePatch - - ZstdCompression - InputObject: - superclass: Instance - events: [] - properties: - - Delta - - KeyCode - - Position - - UserInputState - - UserInputType - InsertService: - superclass: Instance - events: [] - properties: - - AllowClientInsertModels - - AllowInsertFreeModels - Instance: - superclass: <<>> - events: - - AncestryChanged - - AttributeChanged - - Changed - - ChildAdded - - ChildRemoved - - DescendantAdded - - DescendantRemoving - - Destroying - - childAdded - properties: - - Archivable - - ClassName - - DataCost - - Name - - Parent - - RobloxLocked - - SourceAssetId - - archivable - - className - InstanceAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - IntConstrainedValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - ConstrainedValue - - MaxValue - - MinValue - - Value - IntValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - IntersectOperation: - superclass: PartOperation - events: [] - properties: [] - InventoryPages: - superclass: Pages - events: [] - properties: [] - JointInstance: - superclass: Instance - events: [] - properties: - - Active - - C0 - - C1 - - Enabled - - Part0 - - Part1 - - part1 - JointsService: - superclass: Instance - events: [] - properties: [] - KeyboardService: - superclass: Instance - events: [] - properties: [] - Keyframe: - superclass: Instance - events: [] - properties: - - Time - KeyframeMarker: - superclass: Instance - events: [] - properties: - - Value - KeyframeSequence: - superclass: AnimationClip - events: [] - properties: - - AuthoredHipHeight - KeyframeSequenceProvider: - superclass: Instance - events: [] - properties: [] - LSPFileSyncService: - superclass: Instance - events: [] - properties: [] - LanguageService: - superclass: Instance - events: [] - properties: [] - LayerCollector: - superclass: GuiBase2d - events: [] - properties: - - Enabled - - ResetOnSpawn - - ZIndexBehavior - LegacyStudioBridge: - superclass: ILegacyStudioBridge - events: [] - properties: [] - Light: - superclass: Instance - events: [] - properties: - - Brightness - - Color - - Enabled - - Shadows - Lighting: - superclass: Instance - events: - - LightingChanged - properties: - - Ambient - - Brightness - - TimerTime - - ColorShift_Bottom - - ColorShift_Top - - EnvironmentDiffuseScale - - EnvironmentSpecularScale - - ExposureCompensation - - FogColor - - FogEnd - - FogStart - - GeographicLatitude - - GlobalShadows - - OutdoorAmbient - - Outlines - - ShadowColor - - ShadowSoftness - - Technology - - TempUseNewSkyRemovalBehaviour - - TimeOfDay - LineForce: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - InverseSquareLaw - - Magnitude - - MaxForce - - ReactionForceEnabled - LineHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Length - - Thickness - LinearVelocity: - superclass: Constraint - events: [] - properties: - - LineDirection - - LineVelocity - - MaxForce - - PlaneVelocity - - PrimaryTangentAxis - - RelativeTo - - SecondaryTangentAxis - - VectorVelocity - - VelocityConstraintMode - LiveScriptingService: - superclass: Instance - events: [] - properties: [] - LocalDebuggerConnection: - superclass: DebuggerConnection - events: [] - properties: [] - LocalScript: - superclass: Script - events: [] - properties: [] - LocalStorageService: - superclass: Instance - events: - - ItemWasSet - - StoreWasCleared - properties: [] - LocalizationService: - superclass: Instance - events: - - AutoTranslateWillRun - properties: - - ForcePlayModeGameLocaleId - - ForcePlayModeRobloxLocaleId - - IsTextScraperRunning - - RobloxForcePlayModeGameLocaleId - - RobloxForcePlayModeRobloxLocaleId - - RobloxLocaleId - - SystemLocaleId - LocalizationTable: - superclass: Instance - events: [] - properties: - - DevelopmentLanguage - - Root - - SourceLocaleId - LodDataEntity: - superclass: Instance - events: [] - properties: - - EntityLodEnabled - LodDataService: - superclass: Instance - events: [] - properties: [] - LogService: - superclass: Instance - events: - - HttpResultOut - - MessageOut - - OnHttpResultApproved - - ServerHttpResultOut - - ServerMessageOut - properties: [] - LoginService: - superclass: Instance - events: - - LoginFailed - - LoginSucceeded - properties: [] - LuaSettings: - superclass: Instance - events: [] - properties: [] - LuaSourceContainer: - superclass: Instance - events: [] - properties: - - CurrentEditor - - RuntimeSource - LuaWebService: - superclass: Instance - events: [] - properties: [] - LuauScriptAnalyzerService: - superclass: Instance - events: [] - properties: [] - ManualGlue: - superclass: ManualSurfaceJointInstance - events: [] - properties: [] - ManualSurfaceJointInstance: - superclass: JointInstance - events: [] - properties: [] - ManualWeld: - superclass: ManualSurfaceJointInstance - events: [] - properties: [] - MarkerCurve: - superclass: Instance - events: [] - properties: - - Length - MarketplaceService: - superclass: Instance - events: - - ClientLuaDialogRequested - - ClientPurchaseSuccess - - NativePurchaseFinished - - NativePurchaseFinishedWithLocalPlayer - - PromptBundlePurchaseFinished - - PromptBundlePurchaseRequested - - PromptGamePassPurchaseFinished - - PromptGamePassPurchaseRequested - - PromptPremiumPurchaseFinished - - PromptPremiumPurchaseRequested - - PromptProductPurchaseFinished - - PromptProductPurchaseRequested - - PromptPurchaseFinished - - PromptPurchaseRequested - - PromptRobloxPurchaseRequested - - PromptSubscriptionCancellationFinished - - PromptSubscriptionCancellationRequested - - PromptSubscriptionPurchaseFinished - - PromptSubscriptionPurchaseRequested - - ServerPurchaseVerification - - ThirdPartyPurchaseFinished - properties: [] - MaterialGenerationService: - superclass: Instance - events: [] - properties: [] - MaterialGenerationSession: - superclass: Instance - events: [] - properties: [] - MaterialService: - superclass: Instance - events: - - OverrideStatusChanged - properties: - - AsphaltName - - BasaltName - - BrickName - - CobblestoneName - - ConcreteName - - CorrodedMetalName - - CrackedLavaName - - DiamondPlateName - - FabricName - - FoilName - - GlacierName - - GraniteName - - GrassName - - GroundName - - IceName - - LeafyGrassName - - LimestoneName - - MarbleName - - MetalName - - MudName - - PavementName - - PebbleName - - PlasticName - - RockName - - SaltName - - SandName - - SandstoneName - - SlateName - - SmoothPlasticName - - SnowName - - Use2022Materials - - WoodName - - WoodPlanksName - MaterialVariant: - superclass: Instance - events: [] - properties: - - BaseMaterial - - ColorMap - - CustomPhysicalProperties - - MaterialPattern - - MetalnessMap - - NormalMap - - RoughnessMap - - StudsPerTile - MemStorageConnection: - superclass: Instance - events: [] - properties: [] - MemStorageService: - superclass: Instance - events: [] - properties: [] - MemoryStoreQueue: - superclass: Instance - events: [] - properties: [] - MemoryStoreService: - superclass: Instance - events: [] - properties: [] - MemoryStoreSortedMap: - superclass: Instance - events: [] - properties: [] - MeshContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - MeshDataExperimental: - superclass: Instance - events: [] - properties: - - Size - MeshPart: - superclass: TriangleMeshPart - events: [] - properties: - - DoubleSided - - HasJointOffset - - HasSkinnedMesh - - JointOffset - - MeshId - - RenderFidelity - - TextureID - Message: - superclass: Instance - events: [] - properties: - - Text - MessageBusConnection: - superclass: Instance - events: [] - properties: [] - MessageBusService: - superclass: Instance - events: [] - properties: [] - MessagingService: - superclass: Instance - events: [] - properties: [] - MetaBreakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - Enabled - - Id - - IsLogpoint - - Line - - LogMessage - - Script - - Valid - MetaBreakpointContext: - superclass: Instance - events: [] - properties: [] - MetaBreakpointManager: - superclass: Instance - events: - - MetaBreakpointAdded - - MetaBreakpointChanged - - MetaBreakpointRemoved - - MetaBreakpointSetChanged - properties: [] - Model: - superclass: PVInstance - events: [] - properties: - - LevelOfDetail - - ModelStreamingMode - - PrimaryPart - - Scale - - WorldPivot - ModuleScript: - superclass: LuaSourceContainer - events: [] - properties: - - LinkedSource - - Source - Motor: - superclass: JointInstance - events: [] - properties: - - CurrentAngle - - DesiredAngle - - MaxVelocity - Motor6D: - superclass: Motor - events: [] - properties: - - ChildName - - ParentName - - Transform - MotorFeature: - superclass: Feature - events: [] - properties: [] - Mouse: - superclass: Instance - events: - - Button1Down - - Button1Up - - Button2Down - - Button2Up - - Idle - - KeyDown - - KeyUp - - Move - - WheelBackward - - WheelForward - - keyDown - properties: - - Hit - - Icon - - Origin - - Target - - TargetFilter - - TargetSurface - - UnitRay - - ViewSizeX - - ViewSizeY - - X - - Y - - hit - - target - MouseService: - superclass: Instance - events: [] - properties: [] - MultipleDocumentInterfaceInstance: - superclass: Instance - events: - - DataModelSessionEnded - - DataModelSessionStarted - properties: - - FocusedDataModelSession - NegateOperation: - superclass: PartOperation - events: [] - properties: [] - NetworkClient: - superclass: NetworkPeer - events: - - ConnectionAccepted - - ConnectionFailed - properties: [] - NetworkMarker: - superclass: Instance - events: - - Received - properties: [] - NetworkPeer: - superclass: Instance - events: [] - properties: [] - NetworkReplicator: - superclass: Instance - events: [] - properties: [] - NetworkServer: - superclass: NetworkPeer - events: [] - properties: [] - NetworkSettings: - superclass: Instance - events: [] - properties: - - EmulatedTotalMemoryInMB - - FreeMemoryMBytes - - HttpProxyEnabled - - HttpProxyURL - - IncomingReplicationLag - - PrintJoinSizeBreakdown - - PrintPhysicsErrors - - PrintStreamInstanceQuota - - RandomizeJoinInstanceOrder - - RenderStreamedRegions - - ShowActiveAnimationAsset - NoCollisionConstraint: - superclass: Instance - events: [] - properties: - - Enabled - - Part0 - - Part1 - NonReplicatedCSGDictionaryService: - superclass: FlyweightService - events: [] - properties: [] - NotificationService: - superclass: Instance - events: - - Roblox17sConnectionChanged - - Roblox17sEventReceived - - RobloxConnectionChanged - - RobloxEventReceived - properties: - - IsConnected - - IsLuaChatEnabled - - IsLuaGameDetailsEnabled - - SelectedTheme - NumberPose: - superclass: PoseBase - events: [] - properties: - - Value - NumberValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - ObjectValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - OrderedDataStore: - superclass: GlobalDataStore - events: [] - properties: [] - OutfitPages: - superclass: Pages - events: [] - properties: [] - PVAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - PVInstance: - superclass: Instance - events: [] - properties: - - Origin - - Pivot Offset - PackageLink: - superclass: Instance - events: [] - properties: - - AutoUpdate - - Creator - - PackageAssetName - - PackageId - - PermissionLevel - - Status - - VersionNumber - PackageService: - superclass: Instance - events: [] - properties: [] - PackageUIService: - superclass: Instance - events: - - OnConvertToPackageResult - - OnOpenConvertToPackagePlugin - properties: [] - Pages: - superclass: Instance - events: [] - properties: - - IsFinished - Pants: - superclass: Clothing - events: [] - properties: - - PantsTemplate - ParabolaAdornment: - superclass: PVAdornment - events: [] - properties: - - A - - B - - C - - Range - - Thickness - Part: - superclass: FormFactorPart - events: [] - properties: - - Shape - PartAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - PartOperation: - superclass: TriangleMeshPart - events: [] - properties: - - RenderFidelity - - SmoothingAngle - - TriangleCount - - UsePartColor - PartOperationAsset: - superclass: Instance - events: [] - properties: [] - ParticleEmitter: - superclass: Instance - events: [] - properties: - - Acceleration - - Brightness - - Color - - Drag - - EmissionDirection - - Enabled - - FlipbookFramerate - - FlipbookIncompatible - - FlipbookLayout - - FlipbookMode - - FlipbookStartRandom - - Lifetime - - LightEmission - - LightInfluence - - LockedToPart - - Orientation - - Rate - - RotSpeed - - Rotation - - Shape - - ShapeInOut - - ShapePartial - - ShapeStyle - - Size - - Speed - - SpreadAngle - - Squash - - Texture - - TimeScale - - Transparency - - VelocityInheritance - - VelocitySpread - - ZOffset - PatchBundlerFileWatch: - superclass: Instance - events: [] - properties: [] - PatchMapping: - superclass: Instance - events: [] - properties: - - FlattenTree - - PatchId - - TargetPath - Path: - superclass: Instance - events: - - Blocked - - Unblocked - properties: - - Status - PathfindingLink: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - IsBidirectional - - Label - PathfindingModifier: - superclass: Instance - events: [] - properties: - - Label - - PassThrough - PathfindingService: - superclass: Instance - events: [] - properties: - - EmptyCutoff - PausedState: - superclass: Instance - events: [] - properties: - - AllThreadsPaused - - Reason - - ThreadId - PausedStateBreakpoint: - superclass: PausedState - events: [] - properties: - - Breakpoint - PausedStateException: - superclass: PausedState - events: [] - properties: - - ExceptionText - PermissionsService: - superclass: Instance - events: [] - properties: [] - PhysicsService: - superclass: Instance - events: [] - properties: [] - PhysicsSettings: - superclass: Instance - events: [] - properties: - - AllowSleep - - AreAnchorsShown - - AreAssembliesShown - - AreAwakePartsHighlighted - - AreBodyTypesShown - - AreConstraintForcesShownForSelectedOrHoveredInstances - - AreConstraintTorquesShownForSelectedOrHoveredInstances - - AreContactForcesShownForSelectedOrHoveredAssemblies - - AreContactIslandsShown - - AreContactPointsShown - - AreJointCoordinatesShown - - AreMagnitudesShownForDrawnForcesAndTorques - - AreMechanismsShown - - AreModelCoordsShown - - AreOwnersShown - - ArePartCoordsShown - - AreRegionsShown - - AreSolverIslandsShown - - AreTerrainReplicationRegionsShown - - AreTimestepsShown - - AreUnalignedPartsShown - - AreWorldCoordsShown - - DisableCSGv2 - - ForceCSGv2 - - ForceDrawScale - - IsInterpolationThrottleShown - - IsReceiveAgeShown - - IsTreeShown - - PhysicsEnvironmentalThrottle - - ShowDecompositionGeometry - - SolverConvergenceVisualizationMode - - ThrottleAdjustTime - - UseCSGv2 - PitchShiftSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Octave - Plane: - superclass: PlaneConstraint - events: [] - properties: [] - PlaneConstraint: - superclass: Constraint - events: [] - properties: [] - Platform: - superclass: Part - events: [] - properties: [] - Player: - superclass: Instance - events: - - CharacterAdded - - CharacterAppearanceLoaded - - CharacterRemoving - - Chatted - - FriendStatusChanged - - Idled - - OnTeleport - - SimulationRadiusChanged - properties: - - AccountAge - - AppearanceDidLoad - - AutoJumpEnabled - - CameraMaxZoomDistance - - CameraMinZoomDistance - - CameraMode - - CanLoadCharacterAppearance - - Character - - CharacterAppearance - - CharacterAppearanceId - - ChatMode - - DataComplexity - - DataComplexityLimit - - DataReady - - DevCameraOcclusionMode - - DevComputerCameraMode - - DevComputerMovementMode - - DevEnableMouseLock - - DevTouchCameraMode - - DevTouchMovementMode - - DisplayName - - FollowUserId - - GameplayPaused - - Guest - - HasVerifiedBadge - - HealthDisplayDistance - - LocaleId - - MaximumSimulationRadius - - MembershipType - - NameDisplayDistance - - Neutral - - OsPlatform - - PlatformName - - ReplicationFocus - - RespawnLocation - - SimulationRadius - - Team - - TeamColor - - Teleported - - TeleportedIn - - UnfilteredChat - - UserId - - VRDevice - - VREnabled - - userId - PlayerEmulatorService: - superclass: Instance - events: [] - properties: - - CustomPoliciesEnabled - - EmulatedCountryCode - - EmulatedGameLocale - - PlayerEmulationEnabled - - SerializedEmulatedPolicyInfo - PlayerGui: - superclass: BasePlayerGui - events: - - TopbarTransparencyChangedSignal - properties: - - CurrentScreenOrientation - - ScreenOrientation - - SelectionImageObject - PlayerMouse: - superclass: Mouse - events: [] - properties: [] - PlayerScripts: - superclass: Instance - events: - - ComputerCameraMovementModeRegistered - - ComputerMovementModeRegistered - - TouchCameraMovementModeRegistered - - TouchMovementModeRegistered - properties: [] - Players: - superclass: Instance - events: - - FriendRequestEvent - - GameAnnounce - - PlayerAdded - - PlayerChatted - - PlayerConnecting - - PlayerDisconnecting - - PlayerMembershipChanged - - PlayerRejoining - - PlayerRemoving - properties: - - BubbleChat - - CharacterAutoLoads - - ClassicChat - - LocalPlayer - - MaxPlayers - - MaxPlayersInternal - - NumPlayers - - PreferredPlayers - - PreferredPlayersInternal - - RespawnTime - - UseStrafingAnimations - - localPlayer - - numPlayers - Plugin: - superclass: Instance - events: - - Deactivation - - Ready - - Unloading - properties: - - CollisionEnabled - - GridSize - - HostDataModelType - - HostDataModelTypeIsCurrent - - MultipleDocumentInterfaceInstance - - UsesAssetInsertionDrag - PluginAction: - superclass: Instance - events: - - Triggered - properties: - - ActionId - - AllowBinding - - Checked - - DefaultShortcut - - Enabled - - StatusTip - - Text - PluginDebugService: - superclass: Instance - events: [] - properties: [] - PluginDragEvent: - superclass: Instance - events: [] - properties: - - Data - - MimeType - - Position - - Sender - PluginGui: - superclass: LayerCollector - events: - - PluginDragDropped - - PluginDragEntered - - PluginDragLeft - - PluginDragMoved - - WindowFocusReleased - - WindowFocused - properties: - - Title - PluginGuiService: - superclass: Instance - events: [] - properties: [] - PluginManagementService: - superclass: Instance - events: [] - properties: [] - PluginManager: - superclass: Instance - events: [] - properties: [] - PluginManagerInterface: - superclass: Instance - events: [] - properties: [] - PluginMenu: - superclass: Instance - events: [] - properties: - - Icon - - Title - PluginMouse: - superclass: Mouse - events: - - DragEnter - properties: [] - PluginPolicyService: - superclass: Instance - events: [] - properties: [] - PluginToolbar: - superclass: Instance - events: [] - properties: [] - PluginToolbarButton: - superclass: Instance - events: - - Click - properties: - - ClickableWhenViewportHidden - - Enabled - - Icon - PointLight: - superclass: Light - events: [] - properties: - - Range - PointsService: - superclass: Instance - events: - - PointsAwarded - properties: [] - PolicyService: - superclass: Instance - events: [] - properties: - - IsLuobuServer - - LuobuWhitelisted - Pose: - superclass: PoseBase - events: [] - properties: - - CFrame - - MaskWeight - PoseBase: - superclass: Instance - events: [] - properties: - - EasingDirection - - EasingStyle - - Weight - PostEffect: - superclass: Instance - events: [] - properties: - - Enabled - PrismaticConstraint: - superclass: SlidingBallConstraint - events: [] - properties: [] - ProcessInstancePhysicsService: - superclass: Instance - events: [] - properties: [] - ProximityPrompt: - superclass: Instance - events: - - PromptButtonHoldBegan - - PromptButtonHoldEnded - - PromptHidden - - PromptShown - - TriggerEnded - - Triggered - properties: - - ActionText - - AutoLocalize - - ClickablePrompt - - Enabled - - Exclusivity - - GamepadKeyCode - - HoldDuration - - KeyboardKeyCode - - MaxActivationDistance - - ObjectText - - RequiresLineOfSight - - RootLocalizationTable - - Style - - UIOffset - ProximityPromptService: - superclass: Instance - events: - - PromptButtonHoldBegan - - PromptButtonHoldEnded - - PromptHidden - - PromptShown - - PromptTriggerEnded - - PromptTriggered - properties: - - Enabled - - MaxPromptsVisible - PublishService: - superclass: Instance - events: [] - properties: [] - QWidgetPluginGui: - superclass: PluginGui - events: [] - properties: [] - RayValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - RbxAnalyticsService: - superclass: Instance - events: [] - properties: [] - ReflectionMetadata: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataCallbacks: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataClass: - superclass: ReflectionMetadataItem - events: [] - properties: - - ExplorerImageIndex - - ExplorerOrder - - Insertable - - PreferredParent - - ServiceVisibility - ReflectionMetadataClasses: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataEnum: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataEnumItem: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataEnums: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataEvents: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataFunctions: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataItem: - superclass: Instance - events: [] - properties: - - Browsable - - ClassCategory - - ClientOnly - - Constraint - - Deprecated - - EditingDisabled - - EditorType - - FFlag - - IsBackend - - PropertyOrder - - ScriptContext - - ServerOnly - - SliderScaling - - UIMaximum - - UIMinimum - - UINumTicks - ReflectionMetadataMember: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataProperties: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataYieldFunctions: - superclass: Instance - events: [] - properties: [] - RemoteCursorService: - superclass: Instance - events: [] - properties: [] - RemoteDebuggerServer: - superclass: Instance - events: [] - properties: [] - RemoteEvent: - superclass: Instance - events: - - OnClientEvent - - OnServerEvent - properties: [] - RemoteFunction: - superclass: Instance - events: [] - properties: [] - RenderSettings: - superclass: Instance - events: [] - properties: - - AutoFRMLevel - - EagerBulkExecution - - EditQualityLevel - - EnableFRM - - ExportMergeByMaterial - - FrameRateManager - - GraphicsMode - - MeshCacheSize - - MeshPartDetailLevel - - QualityLevel - - ReloadAssets - - RenderCSGTrianglesDebug - - ShowBoundingBoxes - RenderingTest: - superclass: Instance - events: [] - properties: - - CFrame - - ComparisonDiffThreshold - - ComparisonMethod - - ComparisonPsnrThreshold - - Description - - FieldOfView - - Orientation - - Position - - QualityLevel - - ShouldSkip - - Ticket - ReplicatedFirst: - superclass: Instance - events: - - DefaultLoadingGuiRemoved - - FinishedReplicating - - RemoveDefaultLoadingGuiSignal - properties: [] - ReplicatedStorage: - superclass: Instance - events: [] - properties: [] - ReverbSoundEffect: - superclass: SoundEffect - events: [] - properties: - - DecayTime - - Density - - Diffusion - - DryLevel - - WetLevel - RigidConstraint: - superclass: Constraint - events: [] - properties: [] - RobloxPluginGuiService: - superclass: Instance - events: [] - properties: [] - RobloxReplicatedStorage: - superclass: Instance - events: [] - properties: [] - RocketPropulsion: - superclass: BodyMover - events: - - ReachedTarget - properties: - - CartoonFactor - - MaxSpeed - - MaxThrust - - MaxTorque - - Target - - TargetOffset - - TargetRadius - - ThrustD - - ThrustP - - TurnD - - TurnP - RodConstraint: - superclass: Constraint - events: [] - properties: - - CurrentDistance - - Length - - LimitAngle0 - - LimitAngle1 - - LimitsEnabled - - Thickness - RopeConstraint: - superclass: Constraint - events: [] - properties: - - CurrentDistance - - Length - - Restitution - - Thickness - - WinchEnabled - - WinchForce - - WinchResponsiveness - - WinchSpeed - - WinchTarget - Rotate: - superclass: JointInstance - events: [] - properties: [] - RotateP: - superclass: DynamicRotate - events: [] - properties: [] - RotateV: - superclass: DynamicRotate - events: [] - properties: [] - RotationCurve: - superclass: Instance - events: [] - properties: - - Length - RtMessagingService: - superclass: Instance - events: [] - properties: [] - RunService: - superclass: Instance - events: - - Heartbeat - - PostSimulation - - PreAnimation - - PreRender - - PreSimulation - - RenderStepped - - Stepped - properties: - - ClientGitHash - RunningAverageItemDouble: - superclass: StatsItem - events: [] - properties: [] - RunningAverageItemInt: - superclass: StatsItem - events: [] - properties: [] - RunningAverageTimeIntervalItem: - superclass: StatsItem - events: [] - properties: [] - RuntimeScriptService: - superclass: Instance - events: [] - properties: [] - SafetyService: - superclass: Instance - events: - - ScreenshotContentReady - - ScreenshotUploaded - properties: [] - ScreenGui: - superclass: LayerCollector - events: [] - properties: - - ClipToDeviceSafeArea - - DisplayOrder - - IgnoreGuiInset - - OnTopOfCoreBlur - - SafeAreaCompatibility - - ScreenInsets - ScreenshotHud: - superclass: Instance - events: [] - properties: - - CameraButtonIcon - - CameraButtonPosition - - CloseButtonPosition - - CloseWhenScreenshotTaken - - ExperienceNameOverlayEnabled - - OverlayFont - - UsernameOverlayEnabled - - Visible - Script: - superclass: BaseScript - events: [] - properties: - - Source - ScriptBuilder: - superclass: Instance - events: [] - properties: [] - ScriptChangeService: - superclass: Instance - events: - - ScriptAdded - - ScriptBeingRemoved - - ScriptChanged - - ScriptFullNameChanged - - ScriptSourceChanged - properties: [] - ScriptCloneWatcher: - superclass: Instance - events: [] - properties: [] - ScriptCloneWatcherHelper: - superclass: Instance - events: [] - properties: [] - ScriptContext: - superclass: Instance - events: - - Error - - ErrorDetailed - properties: - - ScriptsDisabled - ScriptDebugger: - superclass: Instance - events: - - BreakpointAdded - - BreakpointRemoved - - EncounteredBreak - - Resuming - - WatchAdded - - WatchRemoved - properties: - - CurrentLine - - IsDebugging - - IsPaused - - Script - ScriptDocument: - superclass: Instance - events: - - SelectionChanged - - ViewportChanged - properties: [] - ScriptEditorService: - superclass: Instance - events: - - TextDocumentDidChange - - TextDocumentDidClose - - TextDocumentDidOpen - properties: [] - ScriptRegistrationService: - superclass: Instance - events: [] - properties: [] - ScriptRuntime: - superclass: Instance - events: [] - properties: [] - ScriptService: - superclass: Instance - events: [] - properties: [] - ScrollingFrame: - superclass: GuiObject - events: [] - properties: - - AbsoluteCanvasSize - - AbsoluteWindowSize - - AutomaticCanvasSize - - BottomImage - - CanvasPosition - - CanvasSize - - ElasticBehavior - - HorizontalBarRect - - HorizontalScrollBarInset - - MaxCanvasPosition - - MidImage - - ScrollBarImageColor3 - - ScrollBarImageTransparency - - ScrollBarThickness - - ScrollVelocity - - ScrollingDirection - - ScrollingEnabled - - TopImage - - VerticalBarRect - - VerticalScrollBarInset - - VerticalScrollBarPosition - Seat: - superclass: Part - events: [] - properties: - - Disabled - - Occupant - Selection: - superclass: Instance - events: - - SelectionChanged - properties: - - ActiveInstance - - SelectionBoxThickness - - SelectionLineThickness - - SelectionThickness - - ShowBoundingBox - SelectionBox: - superclass: InstanceAdornment - events: [] - properties: - - LineThickness - - StudioSelectionBox - - SurfaceColor - - SurfaceColor3 - - SurfaceTransparency - SelectionHighlightManager: - superclass: Instance - events: [] - properties: [] - SelectionLasso: - superclass: GuiBase3d - events: [] - properties: - - Humanoid - SelectionPartLasso: - superclass: SelectionLasso - events: [] - properties: - - Part - SelectionPointLasso: - superclass: SelectionLasso - events: [] - properties: - - Point - SelectionSphere: - superclass: PVAdornment - events: [] - properties: - - SurfaceColor - - SurfaceColor3 - - SurfaceTransparency - SensorBase: - superclass: Instance - events: - - OnSensorOutputChanged - properties: - - UpdateType - ServerReplicator: - superclass: NetworkReplicator - events: [] - properties: [] - ServerScriptService: - superclass: Instance - events: [] - properties: - - LoadStringEnabled - ServerStorage: - superclass: Instance - events: [] - properties: [] - ServiceProvider: - superclass: Instance - events: - - Close - - CloseLate - - ServiceAdded - - ServiceRemoving - properties: [] - ServiceVisibilityService: - superclass: Instance - events: [] - properties: - - VisibleServices - SessionService: - superclass: Instance - events: [] - properties: [] - SharedTableRegistry: - superclass: Instance - events: [] - properties: [] - Shirt: - superclass: Clothing - events: [] - properties: - - ShirtTemplate - ShirtGraphic: - superclass: CharacterAppearance - events: [] - properties: - - Color3 - - Graphic - ShorelineUpgraderService: - superclass: Instance - events: - - Status - properties: [] - SkateboardController: - superclass: Controller - events: - - AxisChanged - properties: - - Steer - - Throttle - SkateboardPlatform: - superclass: Part - events: - - Equipped - - MoveStateChanged - - Unequipped - - equipped - - unequipped - properties: - - Controller - - ControllingHumanoid - - Steer - - StickyWheels - - Throttle - Skin: - superclass: CharacterAppearance - events: [] - properties: - - SkinColor - Sky: - superclass: Instance - events: [] - properties: - - CelestialBodiesShown - - MoonAngularSize - - MoonTextureId - - SkyboxBk - - SkyboxDn - - SkyboxFt - - SkyboxLf - - SkyboxRt - - SkyboxUp - - StarCount - - SunAngularSize - - SunTextureId - SlidingBallConstraint: - superclass: Constraint - events: [] - properties: - - ActuatorType - - CurrentPosition - - LimitsEnabled - - LinearResponsiveness - - LowerLimit - - MotorMaxAcceleration - - MotorMaxForce - - Restitution - - ServoMaxForce - - Size - - Speed - - TargetPosition - - UpperLimit - - Velocity - Smoke: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - Opacity - - RiseVelocity - - Size - - TimeScale - SmoothVoxelsUpgraderService: - superclass: Instance - events: - - Status - properties: [] - Snap: - superclass: JointInstance - events: [] - properties: [] - SnippetService: - superclass: Instance - events: [] - properties: [] - SocialService: - superclass: Instance - events: - - GameInvitePromptClosed - - PromptInviteRequested - properties: [] - SolidModelContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - Sound: - superclass: Instance - events: - - DidLoop - - Ended - - Loaded - - Paused - - Played - - Resumed - - Stopped - properties: - - ChannelCount - - EmitterSize - - IsLoaded - - IsPaused - - IsPlaying - - IsSpatial - - LoopRegion - - Looped - - MaxDistance - - MinDistance - - Pitch - - PlayOnRemove - - PlaybackLoudness - - PlaybackRegion - - PlaybackRegionsEnabled - - PlaybackSpeed - - Playing - - RollOffGain - - RollOffMaxDistance - - RollOffMinDistance - - RollOffMode - - SoundGroup - - SoundId - - TimeLength - - TimePosition - - UsageContextPermission - - Volume - - isPlaying - SoundEffect: - superclass: Instance - events: [] - properties: - - Enabled - - Priority - SoundGroup: - superclass: Instance - events: [] - properties: - - Volume - SoundService: - superclass: Instance - events: - - DeviceListChanged - properties: - - AmbientReverb - - DistanceFactor - - DopplerScale - - RespectFilteringEnabled - - RolloffScale - - VolumetricAudio - Sparkles: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - SparkleColor - - TimeScale - SpawnLocation: - superclass: Part - events: [] - properties: - - AllowTeamChangeOnTouch - - Duration - - Enabled - - Neutral - - TeamColor - SpawnerService: - superclass: Instance - events: [] - properties: [] - Speaker: - superclass: Instance - events: [] - properties: - - ChannelCount - - PlaybackLoudness - - RollOffMaxDistance - - RollOffMinDistance - - RollOffMode - - SoundGroup - - Source - - Volume - SpecialMesh: - superclass: FileMesh - events: [] - properties: - - MeshType - SphereHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Radius - SpotLight: - superclass: Light - events: [] - properties: - - Angle - - Face - - Range - SpringConstraint: - superclass: Constraint - events: [] - properties: - - Coils - - CurrentLength - - Damping - - FreeLength - - LimitsEnabled - - MaxForce - - MaxLength - - MinLength - - Radius - - Stiffness - - Thickness - StackFrame: - superclass: Instance - events: [] - properties: - - FrameId - - FrameName - - FrameType - - Globals - - Line - - Locals - - Populated - - Script - - Upvalues - StandalonePluginScripts: - superclass: Instance - events: [] - properties: [] - StandardPages: - superclass: Pages - events: [] - properties: [] - StarterCharacterScripts: - superclass: StarterPlayerScripts - events: [] - properties: [] - StarterGear: - superclass: Instance - events: [] - properties: [] - StarterGui: - superclass: BasePlayerGui - events: - - CoreGuiChangedSignal - properties: - - ProcessUserInput - - ResetPlayerGuiOnSpawn - - RtlTextSupport - - ScreenOrientation - - ShowDevelopmentGui - - VirtualCursorMode - StarterPack: - superclass: Instance - events: [] - properties: [] - StarterPlayer: - superclass: Instance - events: [] - properties: - - AllowCustomAnimations - - AutoJumpEnabled - - CameraMaxZoomDistance - - CameraMinZoomDistance - - CameraMode - - CharacterJumpHeight - - CharacterJumpPower - - CharacterMaxSlopeAngle - - CharacterUseJumpPower - - CharacterWalkSpeed - - DevCameraOcclusionMode - - DevComputerCameraMovementMode - - DevComputerMovementMode - - DevTouchCameraMovementMode - - DevTouchMovementMode - - EnableDynamicHeads - - EnableMouseLockOption - - GameSettingsAssetIDFace - - GameSettingsAssetIDHead - - GameSettingsAssetIDLeftArm - - GameSettingsAssetIDLeftLeg - - GameSettingsAssetIDPants - - GameSettingsAssetIDRightArm - - GameSettingsAssetIDRightLeg - - GameSettingsAssetIDShirt - - GameSettingsAssetIDTeeShirt - - GameSettingsAssetIDTorso - - GameSettingsAvatar - - GameSettingsR15Collision - - GameSettingsScaleRangeBodyType - - GameSettingsScaleRangeHead - - GameSettingsScaleRangeHeight - - GameSettingsScaleRangeProportion - - GameSettingsScaleRangeWidth - - HealthDisplayDistance - - HumanoidStateMachineMode - - LoadCharacterAppearance - - 'LoadCharacterLayeredClothing ' - - NameDisplayDistance - - UserEmotesEnabled - StarterPlayerScripts: - superclass: Instance - events: [] - properties: [] - Stats: - superclass: Instance - events: [] - properties: - - ContactsCount - - DataReceiveKbps - - DataSendKbps - - HeartbeatTimeMs - - InstanceCount - - MovingPrimitivesCount - - PhysicsReceiveKbps - - PhysicsSendKbps - - PhysicsStepTimeMs - - PrimitivesCount - StatsItem: - superclass: Instance - events: [] - properties: - - DisplayName - Status: - superclass: Model - events: [] - properties: [] - StringValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - Studio: - superclass: Instance - events: - - ThemeChanged - properties: - - '"TODO" Color' - - '"function" Color' - - '"local" Color' - - '"nil" Color' - - '"self" Color' - - Active Color - - Active Hover Over Color - - Always Save Script Changes - - Animate Hover Over - - Auto Clean Empty Line - - Auto Closing Brackets - - Auto Closing Quotes - - Auto Delete Closing Brackets and Quotes - - Auto Indent Rule - - Auto-Recovery Enabled - - Auto-Recovery Interval (Minutes) - - Auto-Recovery Path - - Automatically commit locked scripts when you save or publish to Roblox - - Background Color - - Basic Objects Display Mode - - Bool Color - - Bracket Color - - Built-in Function Color - - Camera Mouse Wheel Speed - - Camera Pan Speed - - Camera Shift Speed - - Camera Speed - - Camera Zoom to Mouse Position - - Clear Output On Start - - CommandBarLocalState - - Comment Color - - Current Line Highlight Color - - Debugger Current Line Color - - Debugger Error Line Color - - DefaultScriptFileDir - - DeprecatedObjectsShown - - Display Team Create toggle when creating a new experience - - DisplayLanguage - - Doc View Code Background Color - - Drag Multiple Parts As Single Part - - Enable Autocomplete - - Enable Autocomplete Doc View - - Enable CoreScript Debugger - - Enable Http Sandboxing - - Enable Internal Beta Features - - Enable Internal Features - - Enable Script Analysis - - Enable Scrollbar Markers - - Enable Signature Help - - Enable Signature Help Doc View - - Enable Temporary Tabs - - Enable Temporary Tabs In Explorer - - Enable Type Hover - - EnableOnTypeAutocomplete - - Error Color - - File > New creates a place with Team Create off - - Find Selection Background Color - - Font - - Format On Paste - - Format On Type - - Function Name Color - - Highlight Current Line - - Highlight Occurances - - Hover Animate Speed - - Hover Box Thickness - - Hover Line Thickness - - Hover Over Color - - IconOverrideDir - - Indent Using Spaces - - Keyword Color - - Line Thickness - - LocalAssetsFolder - - LuaDebuggerEnabled - - LuaDebuggerEnabledAtStartup - - Luau Keyword Color - - Main Volume - - Matching Word Background Color - - Maximum Output Lines - - Menu Item Background Color - - Method Color - - Number Color - - Only Play Audio from Window in Focus - - Operator Color - - Output Font - - Output Layout Mode - - PermissionLevelShown - - Physical Draggers Select Scope By Default - - Pivot Snap To Geometry Color - - PluginDebuggingEnabled - - PluginsDir - - Primary Text Color - - Property Color - - Render Throttle Percentage - - Respect Studio shortcuts when game has focus - - Ruler Color - - Rulers - - RuntimeUndoBehavior - - Script Editor Color Preset - - Script Editor Scrollbar Background Color - - Script Editor Scrollbar Handle Color - - ScriptEditorMenuBorderColor - - ScriptEditorShouldShowPluginMethods - - ScriptTimeoutLength - - Scroll Past Last Line - - Search Content For Core Scripts - - Secondary Text Color - - Select Color - - Select/Hover Color - - Selected Menu Item Background Color - - Selected Text Color - - Selection Background Color - - Selection Box Thickness - - Selection Color - - Selection Highlight Thickness - - Selection Line Thickness - - Server Audio Behavior - - Set Pivot of Imported Parts - - Show Core GUI in Explorer while Playing - - Show Diagnostics Bar - - Show FileSyncService - - Show Hidden Objects in Explorer - - Show Hover Over - - Show Light Guides - - Show Navigation Labels - - Show Navigation Mesh - - Show Pathfinding Links - - Show Plugin GUI Service in Explorer - - Show QT warnings in output - - Show Whitespace - - Show plus button on hover in Explorer - - ShowCorePackagesInExplorer - - Skip Closing Brackets and Quotes - - String Color - - Tab Width - - Text Color - - Text Wrapping - - Theme - - UI Theme - - Use Bounding Box Move Handles - - Warning Color - - Whitespace Color - StudioAssetService: - superclass: Instance - events: - - OnConvertToPackageResult - - OnPublishPackageResult - - OnSaveToRoblox - properties: [] - StudioData: - superclass: Instance - events: [] - properties: - - EnableScriptCollabByDefaultOnLoad - StudioDeviceEmulatorService: - superclass: Instance - events: - - CurrentDeviceIdChanged - - OrientationChanged - - TouchInBoundsChanged - - TouchPositionsChanged - properties: - - HasMultiTouchStarted - - IsMultiTouchEmulationOn - - IsMultiTouchEnabled - - PivotPosition - StudioPublishService: - superclass: Instance - events: - - GameNameUpdated - - GamePublishCancelled - - GamePublishFinished - - OnSaveOrPublishPlaceToRoblox - properties: [] - StudioScriptDebugEventListener: - superclass: Instance - events: [] - properties: [] - StudioSdkService: - superclass: Instance - events: [] - properties: [] - StudioService: - superclass: Instance - events: - - OnImportFromRoblox - - OnOpenGameSettings - - OnOpenManagePackagePlugin - - OnPluginInstalledFromToolbox - - OnPluginInstalledFromWeb - - OnPublishAsPlugin - - OnSaveToRoblox - - PromptTransformPluginCheckEnable - - SaveLocallyAsComplete - properties: - - ActiveScript - - AlignDraggedObjects - - DraggerSolveConstraints - - DrawConstraintsOnTop - - GridSize - - HoverInstance - - InstalledPluginData - - PivotSnapToGeometry - - RotateIncrement - - ShowActiveInstanceHighlight - - ShowConstraintDetails - - StudioLocaleId - - UseLocalSpace - StudioTheme: - superclass: Instance - events: [] - properties: [] - SunRaysEffect: - superclass: PostEffect - events: [] - properties: - - Intensity - - Spread - SurfaceAppearance: - superclass: Instance - events: [] - properties: - - AlphaMode - - ColorMap - - MetalnessMap - - NormalMap - - RoughnessMap - - TexturePack - SurfaceGui: - superclass: SurfaceGuiBase - events: [] - properties: - - AlwaysOnTop - - Brightness - - CanvasSize - - ClipsDescendants - - HorizontalCurvature - - LightInfluence - - PixelsPerStud - - Shape - - SizingMode - - ToolPunchThroughDistance - - ZOffset - SurfaceGuiBase: - superclass: LayerCollector - events: [] - properties: - - Active - - Adornee - - Face - SurfaceLight: - superclass: Light - events: [] - properties: - - Angle - - Face - - Range - SurfaceSelection: - superclass: PartAdornment - events: [] - properties: - - TargetSurface - SwimController: - superclass: ControllerBase - events: [] - properties: - - AccelerationTime - - PitchMaxTorque - - PitchSpeedFactor - - RollMaxTorque - - RollSpeedFactor - SyncScriptBuilder: - superclass: ScriptBuilder - events: [] - properties: - - CoverageInfo - - DebugInfo - - PackAsSource - - RawBytecode - TaskScheduler: - superclass: Instance - events: [] - properties: - - SchedulerDutyCycle - - SchedulerRate - - ThreadPoolConfig - - ThreadPoolSize - Team: - superclass: Instance - events: - - PlayerAdded - - PlayerRemoved - properties: - - AutoAssignable - - AutoColorCharacters - - ChildOrder - - Score - - TeamColor - TeamCreateData: - superclass: Instance - events: [] - properties: [] - TeamCreatePublishService: - superclass: Instance - events: [] - properties: [] - TeamCreateService: - superclass: Instance - events: - - ToggleManageCollaborators - properties: [] - Teams: - superclass: Instance - events: [] - properties: [] - TeleportAsyncResult: - superclass: Instance - events: [] - properties: - - PrivateServerId - - ReservedServerAccessCode - TeleportOptions: - superclass: Instance - events: [] - properties: - - ReservedServerAccessCode - - ServerInstanceId - - ShouldReserveServer - TeleportService: - superclass: Instance - events: - - LocalPlayerArrivedFromTeleport - - MenuTeleportAttempt - - TeleportInitFailed - properties: - - CustomizedTeleportUI - TemporaryCageMeshProvider: - superclass: Instance - events: [] - properties: [] - TemporaryScriptService: - superclass: Instance - events: [] - properties: [] - Terrain: - superclass: BasePart - events: [] - properties: - - Decoration - - IsSmooth - - LastUsedModificationMethod - - MaterialColors - - MaxExtents - - ShorelinesUpgraded - - SmoothVoxelsUpgraded - - WaterColor - - WaterReflectance - - WaterTransparency - - WaterWaveSize - - WaterWaveSpeed - TerrainDetail: - superclass: Instance - events: [] - properties: - - ColorMap - - Face - - MaterialPattern - - MetalnessMap - - NormalMap - - RoughnessMap - - StudsPerTile - TerrainRegion: - superclass: Instance - events: [] - properties: - - IsSmooth - - SizeInCells - TestService: - superclass: Instance - events: - - ServerCollectConditionalResult - - ServerCollectResult - properties: - - AutoRuns - - Description - - ErrorCount - - ExecuteWithStudioRun - - Is30FpsThrottleEnabled - - IsPhysicsEnvironmentalThrottled - - IsSleepAllowed - - NumberOfPlayers - - SimulateSecondsLag - - TestCount - - Timeout - - WarnCount - TextBox: - superclass: GuiObject - events: - - FocusLost - - Focused - - ReturnPressedFromOnScreenKeyboard - properties: - - ClearTextOnFocus - - ContentText - - CursorPosition - - Font - - FontFace - - FontSize - - LineHeight - - ManualFocusRelease - - MaxVisibleGraphemes - - MultiLine - - OverlayNativeInput - - PlaceholderColor3 - - PlaceholderText - - ReturnKeyType - - RichText - - SelectionStart - - ShowNativeInput - - Text - - TextBounds - - TextColor - - TextColor3 - - TextEditable - - TextFits - - TextInputType - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextBoxService: - superclass: Instance - events: [] - properties: [] - TextButton: - superclass: GuiButton - events: [] - properties: - - ContentText - - Font - - FontFace - - FontSize - - LineHeight - - LocalizedText - - MaxVisibleGraphemes - - RichText - - Text - - TextBounds - - TextColor - - TextColor3 - - TextFits - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextChannel: - superclass: Instance - events: - - MessageReceived - properties: [] - TextChatCommand: - superclass: Instance - events: - - Triggered - properties: - - Enabled - - PrimaryAlias - - SecondaryAlias - TextChatConfigurations: - superclass: Instance - events: [] - properties: [] - TextChatMessage: - superclass: Instance - events: [] - properties: - - MessageId - - Metadata - - PrefixText - - Status - - Text - - TextChannel - - TextSource - - Timestamp - TextChatMessageProperties: - superclass: Instance - events: [] - properties: - - PrefixText - - Text - TextChatService: - superclass: Instance - events: - - MessageReceived - - SendingMessage - properties: - - ChatVersion - - CreateDefaultCommands - - CreateDefaultTextChannels - TextFilterResult: - superclass: Instance - events: [] - properties: [] - TextLabel: - superclass: GuiLabel - events: [] - properties: - - ContentText - - Font - - FontFace - - FontSize - - LineHeight - - LocalizedText - - MaxVisibleGraphemes - - RichText - - Text - - TextBounds - - TextColor - - TextColor3 - - TextFits - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextService: - superclass: Instance - events: [] - properties: [] - TextSource: - superclass: Instance - events: [] - properties: - - CanSend - - UserId - Texture: - superclass: Decal - events: [] - properties: - - OffsetStudsU - - OffsetStudsV - - StudsPerTileU - - StudsPerTileV - TextureGuiExperimental: - superclass: LayerCollector - events: [] - properties: - - Size - - TemporaryId - ThirdPartyUserService: - superclass: Instance - events: - - ActiveGamepadAdded - - ActiveGamepadRemoved - - ActiveUserSignedOut - properties: [] - ThreadState: - superclass: Instance - events: [] - properties: - - FrameCount - - Populated - - ThreadId - - ThreadName - TimerService: - superclass: Instance - events: [] - properties: [] - ToastNotificationService: - superclass: Instance - events: [] - properties: [] - Tool: - superclass: BackpackItem - events: - - Activated - - Deactivated - - Equipped - - Unequipped - properties: - - CanBeDropped - - Enabled - - Grip - - GripForward - - GripPos - - GripRight - - GripUp - - ManualActivationOnly - - RequiresHandle - - ToolTip - Torque: - superclass: Constraint - events: [] - properties: - - RelativeTo - - Torque - TorsionSpringConstraint: - superclass: Constraint - events: [] - properties: - - Coils - - CurrentAngle - - Damping - - LimitEnabled - - LimitsEnabled - - MaxAngle - - MaxTorque - - Radius - - Restitution - - Stiffness - TotalCountTimeIntervalItem: - superclass: StatsItem - events: [] - properties: [] - TouchInputService: - superclass: Instance - events: [] - properties: [] - TouchTransmitter: - superclass: Instance - events: [] - properties: [] - TracerService: - superclass: Instance - events: [] - properties: [] - TrackerLodController: - superclass: Instance - events: - - UpdateState - properties: - - AudioMode - - VideoExtrapolationMode - - VideoLodMode - - VideoMode - TrackerStreamAnimation: - superclass: Instance - events: [] - properties: [] - Trail: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - Brightness - - Color - - Enabled - - FaceCamera - - Lifetime - - LightEmission - - LightInfluence - - MaxLength - - MinLength - - Texture - - TextureLength - - TextureMode - - Transparency - - WidthScale - Translator: - superclass: Instance - events: [] - properties: - - LocaleId - TremoloSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Duty - - Frequency - TriangleMeshPart: - superclass: BasePart - events: [] - properties: - - CollisionFidelity - - MeshSize - TrussPart: - superclass: BasePart - events: [] - properties: - - Style - Tween: - superclass: TweenBase - events: [] - properties: - - Instance - - TweenInfo - TweenBase: - superclass: Instance - events: - - Completed - properties: - - PlaybackState - TweenService: - superclass: Instance - events: [] - properties: [] - UGCValidationService: - superclass: Instance - events: [] - properties: [] - UIAspectRatioConstraint: - superclass: UIConstraint - events: [] - properties: - - AspectRatio - - AspectType - - DominantAxis - UIBase: - superclass: Instance - events: [] - properties: [] - UIComponent: - superclass: UIBase - events: [] - properties: [] - UIConstraint: - superclass: UIComponent - events: [] - properties: [] - UICorner: - superclass: UIComponent - events: [] - properties: - - CornerRadius - UIGradient: - superclass: UIComponent - events: [] - properties: - - Color - - Enabled - - Offset - - Rotation - - Transparency - UIGridLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - AbsoluteCellCount - - AbsoluteCellSize - - CellPadding - - CellSize - - FillDirectionMaxCells - - StartCorner - UIGridStyleLayout: - superclass: UILayout - events: [] - properties: - - AbsoluteContentSize - - FillDirection - - HorizontalAlignment - - SortOrder - - VerticalAlignment - UILayout: - superclass: UIComponent - events: [] - properties: [] - UIListLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - Padding - UIPadding: - superclass: UIComponent - events: [] - properties: - - PaddingBottom - - PaddingLeft - - PaddingRight - - PaddingTop - UIPageLayout: - superclass: UIGridStyleLayout - events: - - PageEnter - - PageLeave - - Stopped - properties: - - Animated - - Circular - - CurrentPage - - EasingDirection - - EasingStyle - - GamepadInputEnabled - - Padding - - ScrollWheelInputEnabled - - TouchInputEnabled - - TweenTime - UIScale: - superclass: UIComponent - events: [] - properties: - - Scale - UISizeConstraint: - superclass: UIConstraint - events: [] - properties: - - MaxSize - - MinSize - UIStroke: - superclass: UIComponent - events: [] - properties: - - ApplyStrokeMode - - Color - - Enabled - - LineJoinMode - - Thickness - - Transparency - UITableLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - FillEmptySpaceColumns - - FillEmptySpaceRows - - MajorAxis - - Padding - UITextSizeConstraint: - superclass: UIConstraint - events: [] - properties: - - MaxTextSize - - MinTextSize - UnionOperation: - superclass: PartOperation - events: [] - properties: [] - UniversalConstraint: - superclass: Constraint - events: [] - properties: - - LimitsEnabled - - MaxAngle - - Radius - - Restitution - UnvalidatedAssetService: - superclass: Instance - events: [] - properties: [] - UserGameSettings: - superclass: Instance - events: - - FullscreenChanged - - PerformanceStatsVisibleChanged - - StudioModeChanged - properties: - - AllTutorialsDisabled - - CameraMode - - CameraYInverted - - ChatVisible - - ComputerCameraMovementMode - - ComputerMovementMode - - ControlMode - - DefaultCameraID - - Fullscreen - - GamepadCameraSensitivity - - GraphicsQualityLevel - - HasEverUsedVR - - IsUsingCameraYInverted - - IsUsingGamepadCameraSensitivity - - MasterVolume - - MicroProfilerWebServerEnabled - - MicroProfilerWebServerIP - - MicroProfilerWebServerPort - - MouseSensitivity - - MouseSensitivityFirstPerson - - MouseSensitivityThirdPerson - - OnScreenProfilerEnabled - - OnboardingsCompleted - - PerformanceStatsVisible - - PlayerHeight - - RCCProfilerRecordFrameRate - - RCCProfilerRecordTimeFrame - - RotationType - - SavedQualityLevel - - StartMaximized - - StartScreenPosition - - StartScreenSize - - TouchCameraMovementMode - - TouchMovementMode - - UsedCoreGuiIsVisibleToggle - - UsedCustomGuiIsVisibleToggle - - UsedHideHudShortcut - - VREnabled - - VRPlayMode - - VRRotationIntensity - - VRSafetyBubbleMode - - VRSmoothRotationEnabled - - VignetteEnabled - UserInputService: - superclass: Instance - events: - - DeviceAccelerationChanged - - DeviceGravityChanged - - DeviceRotationChanged - - GamepadConnected - - GamepadDisconnected - - InputBegan - - InputChanged - - InputEnded - - JumpRequest - - LastInputTypeChanged - - PointerAction - - StatusBarTapped - - TextBoxFocusReleased - - TextBoxFocused - - TouchEnded - - TouchLongPress - - TouchMoved - - TouchPan - - TouchPinch - - TouchRotate - - TouchStarted - - TouchSwipe - - TouchTap - - TouchTapInWorld - - UserCFrameChanged - - WindowFocusReleased - - WindowFocused - properties: - - AccelerometerEnabled - - BottomBarSize - - GamepadEnabled - - GazeSelectionEnabled - - GyroscopeEnabled - - KeyboardEnabled - - LegacyInputEventsEnabled - - ModalEnabled - - MouseBehavior - - MouseDeltaSensitivity - - MouseEnabled - - MouseIcon - - MouseIconEnabled - - NavBarSize - - OnScreenKeyboardAnimationDuration - - OnScreenKeyboardPosition - - OnScreenKeyboardSize - - OnScreenKeyboardVisible - - OverrideMouseIconBehavior - - RightBarSize - - StatusBarSize - - TouchEnabled - - UserHeadCFrame - - VREnabled - UserService: - superclass: Instance - events: [] - properties: [] - UserSettings: - superclass: GenericSettings - events: [] - properties: [] - UserStorageService: - superclass: LocalStorageService - events: [] - properties: [] - VRService: - superclass: Instance - events: - - NavigationRequested - - TouchpadModeChanged - - UserCFrameChanged - - UserCFrameEnabled - properties: - - AutomaticScaling - - DidPointerHit - - FadeOutViewOnCollision - - GuiInputUserCFrame - - LaserDistance - - PointerHitCFrame - - VRDeviceAvailable - - VRDeviceName - - VREnabled - - VRSessionState - ValueBase: - superclass: Instance - events: [] - properties: [] - Vector3Curve: - superclass: Instance - events: [] - properties: [] - Vector3Value: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - VectorForce: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - Force - - RelativeTo - VehicleController: - superclass: Controller - events: [] - properties: [] - VehicleSeat: - superclass: BasePart - events: [] - properties: - - AreHingesDetected - - Disabled - - HeadsUpDisplay - - MaxSpeed - - Occupant - - Steer - - SteerFloat - - Throttle - - ThrottleFloat - - Torque - - TurnSpeed - VelocityMotor: - superclass: JointInstance - events: [] - properties: - - CurrentAngle - - DesiredAngle - - Hole - - MaxVelocity - VersionControlService: - superclass: Instance - events: [] - properties: - - ScriptCollabEnabled - VideoCaptureService: - superclass: Instance - events: - - DevicesChanged - - Error - - Started - - Stopped - properties: - - Active - - CameraID - VideoFrame: - superclass: GuiObject - events: - - DidLoop - - Ended - - Loaded - - Paused - - Played - properties: - - IsLoaded - - Looped - - Playing - - Resolution - - TimeLength - - TimePosition - - Video - - Volume - ViewportFrame: - superclass: GuiObject - events: [] - properties: - - Ambient - - CurrentCamera - - ImageColor3 - - ImageTransparency - - IsMirrored - - LightColor - - LightDirection - VirtualInputManager: - superclass: Instance - events: - - PlaybackCompleted - - RecordingCompleted - properties: - - AdditionalLuaState - VirtualUser: - superclass: Instance - events: [] - properties: [] - VisibilityCheckDispatcher: - superclass: Instance - events: [] - properties: [] - VisibilityService: - superclass: Instance - events: [] - properties: [] - Visit: - superclass: Instance - events: [] - properties: [] - VoiceChatInternal: - superclass: Instance - events: - - LocalPlayerModerated - - ParticipantsStateChanged - - PlayerMicActivitySignalChange - - StateChanged - properties: - - VoiceChatState - VoiceChatService: - superclass: Instance - events: [] - properties: - - EnableDefaultVoice - - VoiceChatEnabledForPlaceOnRcc - - VoiceChatEnabledForUniverseOnRcc - VoiceSource: - superclass: Instance - events: [] - properties: - - UserId - WedgePart: - superclass: FormFactorPart - events: [] - properties: [] - Weld: - superclass: JointInstance - events: [] - properties: [] - WeldConstraint: - superclass: Instance - events: [] - properties: - - Active - - Enabled - - Part0 - - Part1 - WireframeHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Scale - Workspace: - superclass: WorldRoot - events: - - PersistentLoaded - properties: - - AllowThirdPartySales - - ClientAnimatorThrottling - - CurrentCamera - - DistributedGameTime - - FallenPartsDestroyHeight - - FilteringEnabled - - GlobalWind - - Gravity - - HumanoidOnlySetCollisionsOnStateChange - - InterpolationThrottling - - MeshPartHeadsAndAccessories - - PhysicsSteppingMethod - - RejectCharacterDeletions - - ReplicateInstanceDestroySetting - - Retargeting - - SignalBehavior - - StreamOutBehavior - - StreamingEnabled - - StreamingIntegrityMode - - StreamingMinRadius - - StreamingTargetRadius - - Terrain - - TouchesUseCollisionGroups - WorldModel: - superclass: WorldRoot - events: [] - properties: [] - WorldRoot: - superclass: Model - events: [] - properties: [] - WrapLayer: - superclass: BaseWrap - events: [] - properties: - - AutoSkin - - BindOffset - - Color - - DebugMode - - Enabled - - Order - - Puffiness - - ReferenceMeshId - - ReferenceOrigin - - ReferenceOriginWorld - - ShrinkFactor - WrapTarget: - superclass: BaseWrap - events: [] - properties: - - Color - - DebugMode - - Stiffness diff --git a/Modules/CameraProfiler/selene.toml b/Modules/CameraProfiler/selene.toml deleted file mode 100644 index c1911be..0000000 --- a/Modules/CameraProfiler/selene.toml +++ /dev/null @@ -1 +0,0 @@ -std = "roblox+testez" \ No newline at end of file diff --git a/Modules/CameraProfiler/testez.yml b/Modules/CameraProfiler/testez.yml deleted file mode 100644 index 5c1adda..0000000 --- a/Modules/CameraProfiler/testez.yml +++ /dev/null @@ -1,53 +0,0 @@ ---- -globals: - FIXME: - args: - - required: false - type: string - FOCUS: - args: [] - SKIP: - args: [] - afterAll: - args: - - type: function - afterEach: - args: - - type: function - beforeAll: - args: - - type: function - beforeEach: - args: - - type: function - describe: - args: - - type: string - - type: function - describeFOCUS: - args: - - type: string - - type: function - describeSKIP: - args: - - type: string - - type: function - expect: - args: - - type: any - it: - args: - - type: string - - type: function - itFIXME: - args: - - type: string - - type: function - itFOCUS: - args: - - type: string - - type: function - itSKIP: - args: - - type: string - - type: function \ No newline at end of file diff --git a/Modules/CameraProfiler/wally.toml b/Modules/CameraProfiler/wally.toml deleted file mode 100644 index 742c816..0000000 --- a/Modules/CameraProfiler/wally.toml +++ /dev/null @@ -1,19 +0,0 @@ -[package] -name = "4x8matrix/camera-profiler" -version = "1.0.6" -realm = "shared" -registry = "https://github.com/upliftgames/wally-index" -licence = "MIT" -authors = ["AsynchronousMatrix"] - -description = "A simple OOP module to allow developers to create camera profiles." - -exclude = ["**"] -include = ["Source", "Source/*", "default.project.json", "wally.toml"] - -[dev-dependencies] -TestEz = "roblox/testez@0.4.1" -EmoticonReporter = "4x8matrix/emoticon-reporter@1.0.0" - -[dependencies] -Signal = "sleitnick/signal@1.x.x" \ No newline at end of file diff --git a/Modules/ClassIndex/.lune/update-dump.luau b/Modules/ClassIndex/.lune/update-dump.luau deleted file mode 100644 index f380f72..0000000 --- a/Modules/ClassIndex/.lune/update-dump.luau +++ /dev/null @@ -1,72 +0,0 @@ -local net = require("@lune/net") -local process = require("@lune/process") -local fs = require("@lune/fs") -local serde = require("@lune/serde") - -local function fetchLatestStudioVersion() - local response = net.request({ - url = "https://s3.amazonaws.com/setup.roblox.com/versionQTStudio", - method = "GET", - }) - - if not response.ok then - print(`Failed to get latest studio version`) - - return process.exit(1) - end - - return response.body -end - -local function fetchLatestStudioDump(version: string) - local response = net.request({ - url = `https://s3.amazonaws.com/setup.roblox.com/{version}-API-Dump.json`, - method = "GET", - }) - - if not response.ok then - print(`Failed to get latest studio api dump`) - - return process.exit(1) - end - - local jsonData = net.jsonDecode(response.body) - local updatedClasses = {} - - jsonData.Enums = nil - - for index, classStruct in jsonData.Classes do - local updatedMembers = {} - - for _, memberStruct in classStruct.Members or {} do - local updatedTags = {} - - for _, tagString in memberStruct.Tags or {} do - updatedTags[tagString] = true - end - - memberStruct.Tags = updatedTags - - updatedMembers[memberStruct.Name] = memberStruct - end - - classStruct.Members = updatedMembers - - updatedClasses[classStruct.Name] = classStruct - end - - jsonData.Classes = updatedClasses - - jsonData = serde.encode("json", jsonData, true) - - return jsonData -end - -local function main() - local version = fetchLatestStudioVersion() - local apiDump = fetchLatestStudioDump(version) - - fs.writeFile(`Source/generated-api-dump.json`, apiDump) -end - -main() diff --git a/Modules/ClassIndex/.vscode/settings.json b/Modules/ClassIndex/.vscode/settings.json deleted file mode 100644 index 4f3cb02..0000000 --- a/Modules/ClassIndex/.vscode/settings.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "luau-lsp.require.mode": "relativeToFile", - "luau-lsp.sourcemap.rojoProjectFile": "development.project.json", - "luau-lsp.require.directoryAliases": { - "@lune/": "~/.lune/.typedefs/0.7.11/" - } -} \ No newline at end of file diff --git a/Modules/ClassIndex/.vscode/tasks.json b/Modules/ClassIndex/.vscode/tasks.json deleted file mode 100644 index 5c2c8ce..0000000 --- a/Modules/ClassIndex/.vscode/tasks.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "version": "2.0.0", - "inputs": [], - "tasks": [ - // Repository Setup - { - "label": "[🚀 - Lune]: Update Roblox API dump", - "type": "shell", - "command": "lune update-dump", - "group": { "kind": "build" } - }, - ] -} \ No newline at end of file diff --git a/Modules/ClassIndex/Source/generated-api-dump.json b/Modules/ClassIndex/Source/generated-api-dump.json deleted file mode 100644 index 1b808b6..0000000 --- a/Modules/ClassIndex/Source/generated-api-dump.json +++ /dev/null @@ -1,105238 +0,0 @@ -{ - "Classes": { - "Accessory": { - "Members": { - "AccessoryType": { - "Category": "Data", - "MemberType": "Property", - "Name": "AccessoryType", - "Security": { - "Read": "None", - "Write": "NotAccessibleSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "AccessoryType" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Accessory", - "Superclass": "Accoutrement" - }, - "Accoutrement": { - "Members": { - "AttachmentForward": { - "Category": "Transform", - "MemberType": "Property", - "Name": "AttachmentForward", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "AttachmentPoint": { - "Category": "Transform", - "MemberType": "Property", - "Name": "AttachmentPoint", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "AttachmentPos": { - "Category": "Transform", - "MemberType": "Property", - "Name": "AttachmentPos", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "AttachmentRight": { - "Category": "Transform", - "MemberType": "Property", - "Name": "AttachmentRight", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "AttachmentUp": { - "Category": "Transform", - "MemberType": "Property", - "Name": "AttachmentUp", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Accoutrement", - "Superclass": "Instance" - }, - "Actor": { - "Members": { - "BindToMessage": { - "MemberType": "Function", - "Name": "BindToMessage", - "Parameters": [ - { - "Name": "topic", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "function", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "RBXScriptConnection" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "BindToMessageParallel": { - "MemberType": "Function", - "Name": "BindToMessageParallel", - "Parameters": [ - { - "Name": "topic", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "function", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "RBXScriptConnection" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "SendMessage": { - "MemberType": "Function", - "Name": "SendMessage", - "Parameters": [ - { - "Name": "topic", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "message", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "Actor", - "Superclass": "Model" - }, - "AdGui": { - "Members": { - "AdShape": { - "Category": "Data", - "MemberType": "Property", - "Name": "AdShape", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "AdShape" - } - }, - "FallbackImage": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "FallbackImage", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "Status": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Status", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "AdUnitStatus" - } - } - }, - "MemoryCategory": "Internal", - "Name": "AdGui", - "Superclass": "SurfaceGuiBase" - }, - "AdPortal": { - "Members": { - "PortalInvalidReason": { - "Category": "State", - "MemberType": "Property", - "Name": "PortalInvalidReason", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "NotScriptable": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "PortalVersion": { - "Category": "State", - "MemberType": "Property", - "Name": "PortalVersion", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "Status": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Status", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "AdUnitStatus" - } - }, - "TeleportConfirmed": { - "MemberType": "Function", - "Name": "TeleportConfirmed", - "Parameters": [ - { - "Name": "placeId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TeleportRejected": { - "MemberType": "Function", - "Name": "TeleportRejected", - "Parameters": [ - { - "Name": "shouldCooldown", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "rejectedByDistance", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "AdPortal", - "Superclass": "Instance" - }, - "AdService": { - "Members": { - "AdTeleportEnded": { - "MemberType": "Event", - "Name": "AdTeleportEnded", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "AdTeleportInitiated": { - "MemberType": "Event", - "Name": "AdTeleportInitiated", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetAdTeleportInfo": { - "MemberType": "Function", - "Name": "GetAdTeleportInfo", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetReportAdInfo": { - "MemberType": "Function", - "Name": "GetReportAdInfo", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PortalPrompt": { - "MemberType": "Event", - "Name": "PortalPrompt", - "Parameters": [ - { - "Name": "destinationId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "portal", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "requiresNoButton", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ReturnToPublisherExperience": { - "MemberType": "Function", - "Name": "ReturnToPublisherExperience", - "Parameters": [ - { - "Name": "adTeleportMethod", - "Type": { - "Category": "Enum", - "Name": "AdTeleportMethod" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ShowVideoAd": { - "MemberType": "Function", - "Name": "ShowVideoAd", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "VideoAdClosed": { - "MemberType": "Event", - "Name": "VideoAdClosed", - "Parameters": [ - { - "Name": "adShown", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "AdService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "AdvancedDragger": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "AdvancedDragger", - "Superclass": "Instance" - }, - "AirController": { - "Members": { - "BalanceMaxTorque": { - "Category": "Balance", - "MemberType": "Property", - "Name": "BalanceMaxTorque", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "BalanceSpeed": { - "Category": "Balance", - "MemberType": "Property", - "Name": "BalanceSpeed", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LinearImpulse": { - "Category": "Movement", - "MemberType": "Property", - "Name": "LinearImpulse", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "MaintainAngularMomentum": { - "Category": "Turn", - "MemberType": "Property", - "Name": "MaintainAngularMomentum", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "MaintainLinearMomentum": { - "Category": "Movement", - "MemberType": "Property", - "Name": "MaintainLinearMomentum", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "MoveMaxForce": { - "Category": "Movement", - "MemberType": "Property", - "Name": "MoveMaxForce", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TurnMaxTorque": { - "Category": "Turn", - "MemberType": "Property", - "Name": "TurnMaxTorque", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TurnSpeedFactor": { - "Category": "Turn", - "MemberType": "Property", - "Name": "TurnSpeedFactor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "AirController", - "Superclass": "ControllerBase", - "Tags": [ - "NotBrowsable" - ] - }, - "AlignOrientation": { - "Members": { - "AlignType": { - "Category": "AlignOrientation", - "MemberType": "Property", - "Name": "AlignType", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "AlignType" - } - }, - "CFrame": { - "Category": "TargetOrientation", - "MemberType": "Property", - "Name": "CFrame", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "LookAtPosition": { - "Category": "TargetOrientation", - "MemberType": "Property", - "Name": "LookAtPosition", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "MaxAngularVelocity": { - "Category": "Compliance", - "MemberType": "Property", - "Name": "MaxAngularVelocity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MaxTorque": { - "Category": "Compliance", - "MemberType": "Property", - "Name": "MaxTorque", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Mode": { - "Category": "AlignmentMode", - "MemberType": "Property", - "Name": "Mode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "OrientationAlignmentMode" - } - }, - "PrimaryAxis": { - "Category": "TargetOrientation", - "MemberType": "Property", - "Name": "PrimaryAxis", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "PrimaryAxisOnly": { - "Category": "AlignOrientation", - "MemberType": "Property", - "Name": "PrimaryAxisOnly", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ReactionTorqueEnabled": { - "Category": "AlignOrientation", - "MemberType": "Property", - "Name": "ReactionTorqueEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Responsiveness": { - "Category": "Compliance", - "MemberType": "Property", - "Name": "Responsiveness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RigidityEnabled": { - "Category": "AlignOrientation", - "MemberType": "Property", - "Name": "RigidityEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "SecondaryAxis": { - "Category": "TargetOrientation", - "MemberType": "Property", - "Name": "SecondaryAxis", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "AlignOrientation", - "Superclass": "Constraint" - }, - "AlignPosition": { - "Members": { - "ApplyAtCenterOfMass": { - "Category": "AlignPosition", - "MemberType": "Property", - "Name": "ApplyAtCenterOfMass", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ForceLimitMode": { - "Category": "Compliance", - "MemberType": "Property", - "Name": "ForceLimitMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotBrowsable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ForceLimitMode" - } - }, - "ForceRelativeTo": { - "Category": "Compliance", - "MemberType": "Property", - "Name": "ForceRelativeTo", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ActuatorRelativeTo" - } - }, - "MaxAxesForce": { - "Category": "Compliance", - "MemberType": "Property", - "Name": "MaxAxesForce", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "MaxForce": { - "Category": "Compliance", - "MemberType": "Property", - "Name": "MaxForce", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MaxVelocity": { - "Category": "Compliance", - "MemberType": "Property", - "Name": "MaxVelocity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Mode": { - "Category": "AlignmentMode", - "MemberType": "Property", - "Name": "Mode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "PositionAlignmentMode" - } - }, - "Position": { - "Category": "AlignPosition", - "MemberType": "Property", - "Name": "Position", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "ReactionForceEnabled": { - "Category": "AlignPosition", - "MemberType": "Property", - "Name": "ReactionForceEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Responsiveness": { - "Category": "Compliance", - "MemberType": "Property", - "Name": "Responsiveness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RigidityEnabled": { - "Category": "AlignPosition", - "MemberType": "Property", - "Name": "RigidityEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "AlignPosition", - "Superclass": "Constraint" - }, - "AnalysticsSettings": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "AnalysticsSettings", - "Superclass": "GenericSettings", - "Tags": [ - "NotCreatable" - ] - }, - "AnalyticsService": { - "Members": { - "ApiKey": { - "Category": "Data", - "MemberType": "Property", - "Name": "ApiKey", - "Security": { - "Read": "LocalUserSecurity", - "Write": "LocalUserSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "FireCustomEvent": { - "MemberType": "Function", - "Name": "FireCustomEvent", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "eventCategory", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "customData", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "FireEvent": { - "MemberType": "Function", - "Name": "FireEvent", - "Parameters": [ - { - "Name": "category", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "value", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "FireInGameEconomyEvent": { - "MemberType": "Function", - "Name": "FireInGameEconomyEvent", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "itemName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "economyAction", - "Type": { - "Category": "Enum", - "Name": "AnalyticsEconomyAction" - } - }, - { - "Name": "itemCategory", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "amount", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "currency", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "location", - "Type": { - "Category": "Group", - "Name": "Variant" - } - }, - { - "Name": "customData", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "FireLogEvent": { - "MemberType": "Function", - "Name": "FireLogEvent", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "logLevel", - "Type": { - "Category": "Enum", - "Name": "AnalyticsLogLevel" - } - }, - { - "Name": "message", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "debugInfo", - "Type": { - "Category": "Group", - "Name": "Variant" - } - }, - { - "Name": "customData", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "FirePlayerProgressionEvent": { - "MemberType": "Function", - "Name": "FirePlayerProgressionEvent", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "category", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "progressionStatus", - "Type": { - "Category": "Enum", - "Name": "AnalyticsProgressionStatus" - } - }, - { - "Name": "location", - "Type": { - "Category": "Group", - "Name": "Variant" - } - }, - { - "Name": "statistics", - "Type": { - "Category": "Group", - "Name": "Variant" - } - }, - { - "Name": "customData", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "AnalyticsService", - "Superclass": "Instance", - "Tags": [ - "Service", - "Deprecated" - ] - }, - "AngularVelocity": { - "Members": { - "AngularVelocity": { - "Category": "Torque", - "MemberType": "Property", - "Name": "AngularVelocity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "MaxTorque": { - "Category": "Torque", - "MemberType": "Property", - "Name": "MaxTorque", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ReactionTorqueEnabled": { - "Category": "Torque", - "MemberType": "Property", - "Name": "ReactionTorqueEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "RelativeTo": { - "Category": "Torque", - "MemberType": "Property", - "Name": "RelativeTo", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ActuatorRelativeTo" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "AngularVelocity", - "Superclass": "Constraint" - }, - "Animation": { - "Members": { - "AnimationId": { - "Category": "Data", - "MemberType": "Property", - "Name": "AnimationId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - } - }, - "MemoryCategory": "Animation", - "Name": "Animation", - "Superclass": "Instance" - }, - "AnimationClip": { - "Members": { - "Guid": { - "Category": "Data", - "MemberType": "Property", - "Name": "Guid", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Loop": { - "Category": "Data", - "MemberType": "Property", - "Name": "Loop", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Priority": { - "Category": "Data", - "MemberType": "Property", - "Name": "Priority", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "AnimationPriority" - } - } - }, - "MemoryCategory": "Instances", - "Name": "AnimationClip", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "AnimationClipProvider": { - "Members": { - "GetAnimationClip": { - "MemberType": "Function", - "Name": "GetAnimationClip", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "DataType", - "Name": "Content" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "AnimationClip" - }, - "Security": "PluginSecurity", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetAnimationClipAsync": { - "MemberType": "Function", - "Name": "GetAnimationClipAsync", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "DataType", - "Name": "Content" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "AnimationClip" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetAnimationClipById": { - "MemberType": "Function", - "Name": "GetAnimationClipById", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "useCache", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "AnimationClip" - }, - "Security": "PluginSecurity", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetAnimations": { - "MemberType": "Function", - "Name": "GetAnimations", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetMemStats": { - "MemberType": "Function", - "Name": "GetMemStats", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RegisterActiveAnimationClip": { - "MemberType": "Function", - "Name": "RegisterActiveAnimationClip", - "Parameters": [ - { - "Name": "animationClip", - "Type": { - "Category": "Class", - "Name": "AnimationClip" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Content" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RegisterAnimationClip": { - "MemberType": "Function", - "Name": "RegisterAnimationClip", - "Parameters": [ - { - "Name": "animationClip", - "Type": { - "Category": "Class", - "Name": "AnimationClip" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Content" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Animation", - "Name": "AnimationClipProvider", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "AnimationConstraint": { - "Members": { - "IsKinematic": { - "Category": "Data", - "MemberType": "Property", - "Name": "IsKinematic", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "MaxForce": { - "Category": "Compliance", - "MemberType": "Property", - "Name": "MaxForce", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MaxTorque": { - "Category": "Compliance", - "MemberType": "Property", - "Name": "MaxTorque", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Transform": { - "Category": "Data", - "MemberType": "Property", - "Name": "Transform", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "AnimationConstraint", - "Superclass": "Constraint", - "Tags": [ - "NotBrowsable" - ] - }, - "AnimationController": { - "Members": { - "AnimationPlayed": { - "MemberType": "Event", - "Name": "AnimationPlayed", - "Parameters": [ - { - "Name": "animationTrack", - "Type": { - "Category": "Class", - "Name": "AnimationTrack" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetPlayingAnimationTracks": { - "MemberType": "Function", - "Name": "GetPlayingAnimationTracks", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "LoadAnimation": { - "MemberType": "Function", - "Name": "LoadAnimation", - "Parameters": [ - { - "Name": "animation", - "Type": { - "Category": "Class", - "Name": "Animation" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "AnimationTrack" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Animation", - "Name": "AnimationController", - "Superclass": "Instance" - }, - "AnimationFromVideoCreatorService": { - "Members": { - "CreateJob": { - "MemberType": "Function", - "Name": "CreateJob", - "Parameters": [ - { - "Name": "filePath", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "DownloadJobResult": { - "MemberType": "Function", - "Name": "DownloadJobResult", - "Parameters": [ - { - "Name": "jobId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "outputFilePath", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "FullProcess": { - "MemberType": "Function", - "Name": "FullProcess", - "Parameters": [ - { - "Name": "videoFilePath", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "progressCallback", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetJobStatus": { - "MemberType": "Function", - "Name": "GetJobStatus", - "Parameters": [ - { - "Name": "jobId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "AnimationFromVideoCreatorService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "AnimationFromVideoCreatorStudioService": { - "Members": { - "CreateAnimationByUploadingVideo": { - "MemberType": "Function", - "Name": "CreateAnimationByUploadingVideo", - "Parameters": [ - { - "Name": "progressCallback", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ImportVideoWithPrompt": { - "MemberType": "Function", - "Name": "ImportVideoWithPrompt", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "IsAgeRestricted": { - "MemberType": "Function", - "Name": "IsAgeRestricted", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "AnimationFromVideoCreatorStudioService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "AnimationImportData": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "AnimationImportData", - "Superclass": "BaseImportData", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "AnimationRigData": { - "Members": { - "LoadFromHumanoid": { - "MemberType": "Function", - "Name": "LoadFromHumanoid", - "Parameters": [ - { - "Name": "humanoid", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "AnimationRigData", - "Superclass": "Instance" - }, - "AnimationStreamTrack": { - "Members": { - "AdjustWeight": { - "MemberType": "Function", - "Name": "AdjustWeight", - "Parameters": [ - { - "Default": "1", - "Name": "weight", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Default": "0.100000001", - "Name": "fadeTime", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Animation": { - "Category": "Data", - "MemberType": "Property", - "Name": "Animation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "TrackerStreamAnimation" - } - }, - "GetTrackerData": { - "MemberType": "Function", - "Name": "GetTrackerData", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsPlaying": { - "Category": "Data", - "MemberType": "Property", - "Name": "IsPlaying", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Play": { - "MemberType": "Function", - "Name": "Play", - "Parameters": [ - { - "Default": "0.100000001", - "Name": "fadeTime", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Default": "1", - "Name": "weight", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Priority": { - "Category": "Data", - "MemberType": "Property", - "Name": "Priority", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "AnimationPriority" - } - }, - "Stop": { - "MemberType": "Function", - "Name": "Stop", - "Parameters": [ - { - "Default": "0.100000001", - "Name": "fadeTime", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Stopped": { - "MemberType": "Event", - "Name": "Stopped", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TogglePause": { - "MemberType": "Function", - "Name": "TogglePause", - "Parameters": [ - { - "Name": "paused", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "WeightCurrent": { - "Category": "Data", - "MemberType": "Property", - "Name": "WeightCurrent", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "WeightTarget": { - "Category": "Data", - "MemberType": "Property", - "Name": "WeightTarget", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Animation", - "Name": "AnimationStreamTrack", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "AnimationTrack": { - "Members": { - "AdjustSpeed": { - "MemberType": "Function", - "Name": "AdjustSpeed", - "Parameters": [ - { - "Default": "1", - "Name": "speed", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "CustomLuaState": true - }, - "ThreadSafety": "Unsafe" - }, - "AdjustWeight": { - "MemberType": "Function", - "Name": "AdjustWeight", - "Parameters": [ - { - "Default": "1", - "Name": "weight", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Default": "0.100000001", - "Name": "fadeTime", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "CustomLuaState": true - }, - "ThreadSafety": "Unsafe" - }, - "Animation": { - "Category": "Data", - "MemberType": "Property", - "Name": "Animation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Animation" - } - }, - "DidLoop": { - "MemberType": "Event", - "Name": "DidLoop", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Ended": { - "MemberType": "Event", - "Name": "Ended", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetMarkerReachedSignal": { - "MemberType": "Function", - "Name": "GetMarkerReachedSignal", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "RBXScriptSignal" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetTimeOfKeyframe": { - "MemberType": "Function", - "Name": "GetTimeOfKeyframe", - "Parameters": [ - { - "Name": "keyframeName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "double" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsPlaying": { - "Category": "Data", - "MemberType": "Property", - "Name": "IsPlaying", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "KeyframeReached": { - "MemberType": "Event", - "Name": "KeyframeReached", - "Parameters": [ - { - "Name": "keyframeName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Length": { - "Category": "Data", - "MemberType": "Property", - "Name": "Length", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Looped": { - "Category": "Data", - "MemberType": "Property", - "Name": "Looped", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Play": { - "MemberType": "Function", - "Name": "Play", - "Parameters": [ - { - "Default": "0.100000001", - "Name": "fadeTime", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Default": "1", - "Name": "weight", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Default": "1", - "Name": "speed", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "CustomLuaState": true - }, - "ThreadSafety": "Unsafe" - }, - "Priority": { - "Category": "Data", - "MemberType": "Property", - "Name": "Priority", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "AnimationPriority" - } - }, - "Speed": { - "Category": "Data", - "MemberType": "Property", - "Name": "Speed", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Stop": { - "MemberType": "Function", - "Name": "Stop", - "Parameters": [ - { - "Default": "0.100000001", - "Name": "fadeTime", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "CustomLuaState": true - }, - "ThreadSafety": "Unsafe" - }, - "Stopped": { - "MemberType": "Event", - "Name": "Stopped", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TimePosition": { - "Category": "Data", - "MemberType": "Property", - "Name": "TimePosition", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "WeightCurrent": { - "Category": "Data", - "MemberType": "Property", - "Name": "WeightCurrent", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "WeightTarget": { - "Category": "Data", - "MemberType": "Property", - "Name": "WeightTarget", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Animation", - "Name": "AnimationTrack", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "Animator": { - "Members": { - "AnimationPlayed": { - "MemberType": "Event", - "Name": "AnimationPlayed", - "Parameters": [ - { - "Name": "animationTrack", - "Type": { - "Category": "Class", - "Name": "AnimationTrack" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "AnimationPlayedCoreScript": { - "MemberType": "Event", - "Name": "AnimationPlayedCoreScript", - "Parameters": [ - { - "Name": "animationTrack", - "Type": { - "Category": "Class", - "Name": "AnimationTrack" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "AnimationStreamTrackPlayed": { - "MemberType": "Event", - "Name": "AnimationStreamTrackPlayed", - "Parameters": [ - { - "Name": "animationTrack", - "Type": { - "Category": "Class", - "Name": "AnimationStreamTrack" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ApplyJointVelocities": { - "MemberType": "Function", - "Name": "ApplyJointVelocities", - "Parameters": [ - { - "Name": "motors", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "EvaluationThrottled": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "EvaluationThrottled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotBrowsable": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "Safe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "GetPlayingAnimationTracks": { - "MemberType": "Function", - "Name": "GetPlayingAnimationTracks", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetPlayingAnimationTracksCoreScript": { - "MemberType": "Function", - "Name": "GetPlayingAnimationTracksCoreScript", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "LoadAnimation": { - "MemberType": "Function", - "Name": "LoadAnimation", - "Parameters": [ - { - "Name": "animation", - "Type": { - "Category": "Class", - "Name": "Animation" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "AnimationTrack" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "LoadAnimationCoreScript": { - "MemberType": "Function", - "Name": "LoadAnimationCoreScript", - "Parameters": [ - { - "Name": "animation", - "Type": { - "Category": "Class", - "Name": "Animation" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "AnimationTrack" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "LoadStreamAnimation": { - "MemberType": "Function", - "Name": "LoadStreamAnimation", - "Parameters": [ - { - "Name": "animation", - "Type": { - "Category": "Class", - "Name": "TrackerStreamAnimation" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "AnimationStreamTrack" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "LoadStreamAnimationForSelfieView_deprecated": { - "MemberType": "Function", - "Name": "LoadStreamAnimationForSelfieView_deprecated", - "Parameters": [ - { - "Name": "animation", - "Type": { - "Category": "Class", - "Name": "TrackerStreamAnimation" - } - }, - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "AnimationStreamTrack" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PreferLodEnabled": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "PreferLodEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "StepAnimations": { - "MemberType": "Function", - "Name": "StepAnimations", - "Parameters": [ - { - "Name": "deltaTime", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "Animator", - "Superclass": "Instance" - }, - "AppStorageService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "AppStorageService", - "Superclass": "LocalStorageService", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "AppUpdateService": { - "Members": { - "CheckForUpdate": { - "MemberType": "Function", - "Name": "CheckForUpdate", - "Parameters": [ - { - "Default": "nil", - "Name": "handler", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DisableDUAR": { - "MemberType": "Function", - "Name": "DisableDUAR", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DisableDUARAndOpenSurvey": { - "MemberType": "Function", - "Name": "DisableDUARAndOpenSurvey", - "Parameters": [ - { - "Name": "surveyUrl", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PerformManagedUpdate": { - "MemberType": "Function", - "Name": "PerformManagedUpdate", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "AppUpdateService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "ArcHandles": { - "Members": { - "Axes": { - "Category": "Data", - "MemberType": "Property", - "Name": "Axes", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Axes" - } - }, - "MouseButton1Down": { - "MemberType": "Event", - "Name": "MouseButton1Down", - "Parameters": [ - { - "Name": "axis", - "Type": { - "Category": "Enum", - "Name": "Axis" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MouseButton1Up": { - "MemberType": "Event", - "Name": "MouseButton1Up", - "Parameters": [ - { - "Name": "axis", - "Type": { - "Category": "Enum", - "Name": "Axis" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MouseDrag": { - "MemberType": "Event", - "Name": "MouseDrag", - "Parameters": [ - { - "Name": "axis", - "Type": { - "Category": "Enum", - "Name": "Axis" - } - }, - { - "Name": "relativeAngle", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "deltaRadius", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MouseEnter": { - "MemberType": "Event", - "Name": "MouseEnter", - "Parameters": [ - { - "Name": "axis", - "Type": { - "Category": "Enum", - "Name": "Axis" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MouseLeave": { - "MemberType": "Event", - "Name": "MouseLeave", - "Parameters": [ - { - "Name": "axis", - "Type": { - "Category": "Enum", - "Name": "Axis" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "ArcHandles", - "Superclass": "HandlesBase" - }, - "AssetCounterService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "AssetCounterService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "AssetDeliveryProxy": { - "Members": { - "Interface": { - "Category": "Data", - "MemberType": "Property", - "Name": "Interface", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Port": { - "Category": "Data", - "MemberType": "Property", - "Name": "Port", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "StartServer": { - "Category": "Data", - "MemberType": "Property", - "Name": "StartServer", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "AssetDeliveryProxy", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "AssetImportService": { - "Members": { - "GetAllTemplates": { - "MemberType": "Function", - "Name": "GetAllTemplates", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Map" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetTemplate": { - "MemberType": "Function", - "Name": "GetTemplate", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Map" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PickFileWithPrompt": { - "MemberType": "Function", - "Name": "PickFileWithPrompt", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "PickMultipleFilesWithPrompt": { - "MemberType": "Function", - "Name": "PickMultipleFilesWithPrompt", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "RemoveTemplate": { - "MemberType": "Function", - "Name": "RemoveTemplate", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SaveTemplate": { - "MemberType": "Function", - "Name": "SaveTemplate", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "importTemplate", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StartSessionWithPath": { - "MemberType": "Function", - "Name": "StartSessionWithPath", - "Parameters": [ - { - "Name": "filePath", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "AssetImportSession" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StartSessionWithPrompt": { - "MemberType": "Function", - "Name": "StartSessionWithPrompt", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "AssetImportSession" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "AssetImportService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "AssetImportSession": { - "Members": { - "ApplySettings": { - "MemberType": "Function", - "Name": "ApplySettings", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ApplyTemplate": { - "MemberType": "Function", - "Name": "ApplyTemplate", - "Parameters": [ - { - "Name": "template", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Cancel": { - "MemberType": "Function", - "Name": "Cancel", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetCurrentStatusTable": { - "MemberType": "Function", - "Name": "GetCurrentStatusTable", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetFilename": { - "MemberType": "Function", - "Name": "GetFilename", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetImportTree": { - "MemberType": "Function", - "Name": "GetImportTree", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetInstance": { - "MemberType": "Function", - "Name": "GetInstance", - "Parameters": [ - { - "Name": "nodeId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "HasAnimation": { - "MemberType": "Function", - "Name": "HasAnimation", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsAvatar": { - "MemberType": "Function", - "Name": "IsAvatar", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsGltf": { - "MemberType": "Function", - "Name": "IsGltf", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsR15": { - "MemberType": "Function", - "Name": "IsR15", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Reset": { - "MemberType": "Function", - "Name": "Reset", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Upload": { - "MemberType": "Function", - "Name": "Upload", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UploadComplete": { - "MemberType": "Event", - "Name": "UploadComplete", - "Parameters": [ - { - "Name": "results", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UploadCompleteDeprecated": { - "MemberType": "Event", - "Name": "UploadCompleteDeprecated", - "Parameters": [ - { - "Name": "succeeded", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "errorMap", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UploadProgress": { - "MemberType": "Event", - "Name": "UploadProgress", - "Parameters": [ - { - "Name": "progressRatio", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "usesCustomRestPoseLua": { - "MemberType": "Function", - "Name": "usesCustomRestPoseLua", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "AssetImportSession", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "AssetManagerService": { - "Members": { - "AddNewPlace": { - "MemberType": "Function", - "Name": "AddNewPlace", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "int64" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "AssetImportedSignal": { - "MemberType": "Event", - "Name": "AssetImportedSignal", - "Parameters": [ - { - "Name": "assetType", - "Type": { - "Category": "Enum", - "Name": "AssetType" - } - }, - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "assetName", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CreateAlias": { - "MemberType": "Function", - "Name": "CreateAlias", - "Parameters": [ - { - "Name": "assetType", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "aliasName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "DeleteAlias": { - "MemberType": "Function", - "Name": "DeleteAlias", - "Parameters": [ - { - "Name": "aliasName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetMeshIdFromAliasName": { - "MemberType": "Function", - "Name": "GetMeshIdFromAliasName", - "Parameters": [ - { - "Name": "aliasName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int64" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetMeshIdFromAssetId": { - "MemberType": "Function", - "Name": "GetMeshIdFromAssetId", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int64" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetTextureIdFromAliasName": { - "MemberType": "Function", - "Name": "GetTextureIdFromAliasName", - "Parameters": [ - { - "Name": "aliasName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int64" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetTextureIdFromAssetId": { - "MemberType": "Function", - "Name": "GetTextureIdFromAssetId", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int64" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "HasUnpublishedChangesForLinkedSource": { - "MemberType": "Function", - "Name": "HasUnpublishedChangesForLinkedSource", - "Parameters": [ - { - "Name": "aliasName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ImportSessionFinished": { - "MemberType": "Event", - "Name": "ImportSessionFinished", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ImportSessionStarted": { - "MemberType": "Event", - "Name": "ImportSessionStarted", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InsertAudio": { - "MemberType": "Function", - "Name": "InsertAudio", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "assetName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InsertImage": { - "MemberType": "Function", - "Name": "InsertImage", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InsertLinkedSourceAsLocalScript": { - "MemberType": "Function", - "Name": "InsertLinkedSourceAsLocalScript", - "Parameters": [ - { - "Name": "aliasName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InsertLinkedSourceAsModuleScript": { - "MemberType": "Function", - "Name": "InsertLinkedSourceAsModuleScript", - "Parameters": [ - { - "Name": "aliasName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InsertLinkedSourceAsScript": { - "MemberType": "Function", - "Name": "InsertLinkedSourceAsScript", - "Parameters": [ - { - "Name": "aliasName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InsertMesh": { - "MemberType": "Function", - "Name": "InsertMesh", - "Parameters": [ - { - "Name": "aliasName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "insertWithLocation", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InsertMeshesWithLocation": { - "MemberType": "Function", - "Name": "InsertMeshesWithLocation", - "Parameters": [ - { - "Name": "aliasNames", - "Type": { - "Category": "Group", - "Name": "Array" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InsertModel": { - "MemberType": "Function", - "Name": "InsertModel", - "Parameters": [ - { - "Name": "modelId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InsertPackage": { - "MemberType": "Function", - "Name": "InsertPackage", - "Parameters": [ - { - "Name": "packageId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InsertVideo": { - "MemberType": "Function", - "Name": "InsertVideo", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "assetName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MayBeLinkedSourceModified": { - "MemberType": "Event", - "Name": "MayBeLinkedSourceModified", - "Parameters": [ - { - "Name": "aliasName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OpenLinkedSource": { - "MemberType": "Function", - "Name": "OpenLinkedSource", - "Parameters": [ - { - "Name": "aliasName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OpenPlace": { - "MemberType": "Function", - "Name": "OpenPlace", - "Parameters": [ - { - "Name": "placeId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PublishLinkedSource": { - "MemberType": "Function", - "Name": "PublishLinkedSource", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "aliasName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "RefreshLinkedSource": { - "MemberType": "Function", - "Name": "RefreshLinkedSource", - "Parameters": [ - { - "Name": "aliasName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RemovePlace": { - "MemberType": "Function", - "Name": "RemovePlace", - "Parameters": [ - { - "Name": "placeId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "RenameAlias": { - "MemberType": "Function", - "Name": "RenameAlias", - "Parameters": [ - { - "Name": "assetType", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "oldAliasName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "newAliasName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "RenameModel": { - "MemberType": "Function", - "Name": "RenameModel", - "Parameters": [ - { - "Name": "modelId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "newName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "RenamePlace": { - "MemberType": "Function", - "Name": "RenamePlace", - "Parameters": [ - { - "Name": "placeId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "newName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "RevertLinkedSourceToLastPublishedVersion": { - "MemberType": "Function", - "Name": "RevertLinkedSourceToLastPublishedVersion", - "Parameters": [ - { - "Name": "aliasName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ShowPackageDetails": { - "MemberType": "Function", - "Name": "ShowPackageDetails", - "Parameters": [ - { - "Name": "packageId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UpdateAllPackages": { - "MemberType": "Function", - "Name": "UpdateAllPackages", - "Parameters": [ - { - "Name": "packageId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ViewPackageOnWebsite": { - "MemberType": "Function", - "Name": "ViewPackageOnWebsite", - "Parameters": [ - { - "Name": "packageId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "AssetManagerService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "AssetPatchSettings": { - "Members": { - "ContentId": { - "Category": "Data", - "MemberType": "Property", - "Name": "ContentId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "OutputPath": { - "Category": "Data", - "MemberType": "Property", - "Name": "OutputPath", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "PatchId": { - "Category": "Data", - "MemberType": "Property", - "Name": "PatchId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "AssetPatchSettings", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "AssetService": { - "Members": { - "CreatePlaceAsync": { - "MemberType": "Function", - "Name": "CreatePlaceAsync", - "Parameters": [ - { - "Name": "placeName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "templatePlaceID", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Default": "", - "Name": "description", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int64" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "CreatePlaceInPlayerInventoryAsync": { - "MemberType": "Function", - "Name": "CreatePlaceInPlayerInventoryAsync", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "placeName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "templatePlaceID", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Default": "", - "Name": "description", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int64" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "DeserializeInstance": { - "MemberType": "Function", - "Name": "DeserializeInstance", - "Parameters": [ - { - "Name": "serializedInstance", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetAssetIdsForPackage": { - "MemberType": "Function", - "Name": "GetAssetIdsForPackage", - "Parameters": [ - { - "Name": "packageAssetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetBundleDetailsAsync": { - "MemberType": "Function", - "Name": "GetBundleDetailsAsync", - "Parameters": [ - { - "Name": "bundleId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetBundleDetailsSync": { - "MemberType": "Function", - "Name": "GetBundleDetailsSync", - "Parameters": [ - { - "Name": "bundleId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetCreatorAssetID": { - "MemberType": "Function", - "Name": "GetCreatorAssetID", - "Parameters": [ - { - "Name": "creationID", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int64" - }, - "Security": "None", - "Tags": { - "Deprecated": true, - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetGamePlacesAsync": { - "MemberType": "Function", - "Name": "GetGamePlacesAsync", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "LoadImageAsync": { - "MemberType": "Function", - "Name": "LoadImageAsync", - "Parameters": [ - { - "Name": "textureId", - "Type": { - "Category": "DataType", - "Name": "Content" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "DynamicImage" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "OpenCreateResultModal": { - "MemberType": "Event", - "Name": "OpenCreateResultModal", - "Parameters": [ - { - "Name": "resultType", - "Type": { - "Category": "Enum", - "Name": "PromptCreateAssetResult" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OpenPublishResultModal": { - "MemberType": "Event", - "Name": "OpenPublishResultModal", - "Parameters": [ - { - "Name": "resultType", - "Type": { - "Category": "Enum", - "Name": "PromptPublishAssetResult" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptCreateAssetAsync": { - "MemberType": "Function", - "Name": "PromptCreateAssetAsync", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Player" - } - }, - { - "Name": "instance", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "assetType", - "Type": { - "Category": "Enum", - "Name": "AssetType" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "SavePlaceAsync": { - "MemberType": "Function", - "Name": "SavePlaceAsync", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "SearchAudio": { - "MemberType": "Function", - "Name": "SearchAudio", - "Parameters": [ - { - "Name": "searchParameters", - "Type": { - "Category": "Class", - "Name": "AudioSearchParams" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "AudioPages" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "AssetService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "AssetSoundEffect": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "AssetSoundEffect", - "Superclass": "CustomSoundEffect", - "Tags": [ - "NotCreatable" - ] - }, - "Atmosphere": { - "Members": { - "Color": { - "Category": "State", - "MemberType": "Property", - "Name": "Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Decay": { - "Category": "State", - "MemberType": "Property", - "Name": "Decay", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Density": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Density", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Glare": { - "Category": "State", - "MemberType": "Property", - "Name": "Glare", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Haze": { - "Category": "State", - "MemberType": "Property", - "Name": "Haze", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Offset": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Offset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Atmosphere", - "Superclass": "Instance" - }, - "Attachment": { - "Members": { - "Axis": { - "Category": "Derived Data", - "MemberType": "Property", - "Name": "Axis", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "CFrame": { - "Category": "Transform", - "MemberType": "Property", - "Name": "CFrame", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "GetAxis": { - "MemberType": "Function", - "Name": "GetAxis", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Vector3" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetConstraints": { - "MemberType": "Function", - "Name": "GetConstraints", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetSecondaryAxis": { - "MemberType": "Function", - "Name": "GetSecondaryAxis", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Vector3" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "Orientation": { - "Category": "Transform", - "MemberType": "Property", - "Name": "Orientation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "Position": { - "Category": "Transform", - "MemberType": "Property", - "Name": "Position", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "Rotation": { - "Category": "Transform", - "MemberType": "Property", - "Name": "Rotation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "SecondaryAxis": { - "Category": "Derived Data", - "MemberType": "Property", - "Name": "SecondaryAxis", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "SetAxis": { - "MemberType": "Function", - "Name": "SetAxis", - "Parameters": [ - { - "Name": "axis", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "SetSecondaryAxis": { - "MemberType": "Function", - "Name": "SetSecondaryAxis", - "Parameters": [ - { - "Name": "axis", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "Visible": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Visible", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "WorldAxis": { - "Category": "Derived World Data", - "MemberType": "Property", - "Name": "WorldAxis", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "WorldCFrame": { - "Category": "Derived World Data", - "MemberType": "Property", - "Name": "WorldCFrame", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "WorldOrientation": { - "Category": "Derived World Data", - "MemberType": "Property", - "Name": "WorldOrientation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "WorldPosition": { - "Category": "Derived World Data", - "MemberType": "Property", - "Name": "WorldPosition", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "WorldRotation": { - "Category": "Derived World Data", - "MemberType": "Property", - "Name": "WorldRotation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "WorldSecondaryAxis": { - "Category": "Derived World Data", - "MemberType": "Property", - "Name": "WorldSecondaryAxis", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Attachment", - "Superclass": "Instance" - }, - "AudioAnalyzer": { - "Members": { - "PeakLevel": { - "Category": "Data", - "MemberType": "Property", - "Name": "PeakLevel", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RmsLevel": { - "Category": "Data", - "MemberType": "Property", - "Name": "RmsLevel", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "AudioAnalyzer", - "Superclass": "Instance", - "Tags": [ - "NotBrowsable" - ] - }, - "AudioChorus": { - "Members": { - "Depth": { - "Category": "Data", - "MemberType": "Property", - "Name": "Depth", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Mix": { - "Category": "Data", - "MemberType": "Property", - "Name": "Mix", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Rate": { - "Category": "Data", - "MemberType": "Property", - "Name": "Rate", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "AudioChorus", - "Superclass": "Instance", - "Tags": [ - "NotBrowsable" - ] - }, - "AudioCompressor": { - "Members": { - "Attack": { - "Category": "Data", - "MemberType": "Property", - "Name": "Attack", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MakeupGain": { - "Category": "Data", - "MemberType": "Property", - "Name": "MakeupGain", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Ratio": { - "Category": "Data", - "MemberType": "Property", - "Name": "Ratio", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Release": { - "Category": "Data", - "MemberType": "Property", - "Name": "Release", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Threshold": { - "Category": "Data", - "MemberType": "Property", - "Name": "Threshold", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "AudioCompressor", - "Superclass": "Instance", - "Tags": [ - "NotBrowsable" - ] - }, - "AudioDeviceInput": { - "Members": { - "AccessType": { - "Category": "Data", - "MemberType": "Property", - "Name": "AccessType", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "AccessModifierType" - } - }, - "Active": { - "Category": "Data", - "MemberType": "Property", - "Name": "Active", - "Security": { - "Read": "None", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "GetUserIdAccessList": { - "MemberType": "Function", - "Name": "GetUserIdAccessList", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsReady": { - "Category": "Data", - "MemberType": "Property", - "Name": "IsReady", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Muted": { - "Category": "Data", - "MemberType": "Property", - "Name": "Muted", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Player": { - "Category": "Data", - "MemberType": "Property", - "Name": "Player", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Player" - } - }, - "SetUserIdAccessList": { - "MemberType": "Function", - "Name": "SetUserIdAccessList", - "Parameters": [ - { - "Name": "userIds", - "Type": { - "Category": "Group", - "Name": "Array" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "AudioDeviceInput", - "Superclass": "Instance", - "Tags": [ - "NotBrowsable" - ] - }, - "AudioDeviceOutput": { - "Members": { - "Player": { - "Category": "Data", - "MemberType": "Property", - "Name": "Player", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Player" - } - } - }, - "MemoryCategory": "Instances", - "Name": "AudioDeviceOutput", - "Superclass": "Instance", - "Tags": [ - "NotBrowsable" - ] - }, - "AudioDistortion": { - "Members": { - "Level": { - "Category": "Data", - "MemberType": "Property", - "Name": "Level", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "AudioDistortion", - "Superclass": "Instance", - "Tags": [ - "NotBrowsable" - ] - }, - "AudioEcho": { - "Members": { - "DelayTime": { - "Category": "Data", - "MemberType": "Property", - "Name": "DelayTime", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "DryLevel": { - "Category": "Data", - "MemberType": "Property", - "Name": "DryLevel", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Feedback": { - "Category": "Data", - "MemberType": "Property", - "Name": "Feedback", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "WetLevel": { - "Category": "Data", - "MemberType": "Property", - "Name": "WetLevel", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "AudioEcho", - "Superclass": "Instance", - "Tags": [ - "NotBrowsable" - ] - }, - "AudioEmitter": { - "Members": { - "AudioInteractionGroup": { - "Category": "Data", - "MemberType": "Property", - "Name": "AudioInteractionGroup", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "AudioEmitter", - "Superclass": "Instance", - "Tags": [ - "NotBrowsable" - ] - }, - "AudioEqualizer": { - "Members": { - "HighGain": { - "Category": "Data", - "MemberType": "Property", - "Name": "HighGain", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LowGain": { - "Category": "Data", - "MemberType": "Property", - "Name": "LowGain", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MidGain": { - "Category": "Data", - "MemberType": "Property", - "Name": "MidGain", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MidRange": { - "Category": "Data", - "MemberType": "Property", - "Name": "MidRange", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "NumberRange" - } - } - }, - "MemoryCategory": "Instances", - "Name": "AudioEqualizer", - "Superclass": "Instance", - "Tags": [ - "NotBrowsable" - ] - }, - "AudioFader": { - "Members": { - "Volume": { - "Category": "Data", - "MemberType": "Property", - "Name": "Volume", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "AudioFader", - "Superclass": "Instance", - "Tags": [ - "NotBrowsable" - ] - }, - "AudioFlanger": { - "Members": { - "Depth": { - "Category": "Data", - "MemberType": "Property", - "Name": "Depth", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Mix": { - "Category": "Data", - "MemberType": "Property", - "Name": "Mix", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Rate": { - "Category": "Data", - "MemberType": "Property", - "Name": "Rate", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "AudioFlanger", - "Superclass": "Instance", - "Tags": [ - "NotBrowsable" - ] - }, - "AudioListener": { - "Members": { - "AudioInteractionGroup": { - "Category": "Data", - "MemberType": "Property", - "Name": "AudioInteractionGroup", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "AudioListener", - "Superclass": "Instance", - "Tags": [ - "NotBrowsable" - ] - }, - "AudioPages": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "AudioPages", - "Superclass": "Pages", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "AudioPitchShifter": { - "Members": { - "Pitch": { - "Category": "Data", - "MemberType": "Property", - "Name": "Pitch", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "AudioPitchShifter", - "Superclass": "Instance", - "Tags": [ - "NotBrowsable" - ] - }, - "AudioPlayer": { - "Members": { - "AssetId": { - "Category": "Data", - "MemberType": "Property", - "Name": "AssetId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "AutoLoad": { - "Category": "Data", - "MemberType": "Property", - "Name": "AutoLoad", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "IsPlaying": { - "Category": "Data", - "MemberType": "Property", - "Name": "IsPlaying", - "Security": { - "Read": "None", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "IsReady": { - "Category": "Data", - "MemberType": "Property", - "Name": "IsReady", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "LoopRegion": { - "Category": "Data", - "MemberType": "Property", - "Name": "LoopRegion", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "NumberRange" - } - }, - "Looping": { - "Category": "Data", - "MemberType": "Property", - "Name": "Looping", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Play": { - "MemberType": "Function", - "Name": "Play", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PlaybackRegion": { - "Category": "Data", - "MemberType": "Property", - "Name": "PlaybackRegion", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "NumberRange" - } - }, - "PlaybackSpeed": { - "Category": "Data", - "MemberType": "Property", - "Name": "PlaybackSpeed", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "Stop": { - "MemberType": "Function", - "Name": "Stop", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TimeLength": { - "Category": "Data", - "MemberType": "Property", - "Name": "TimeLength", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "TimePosition": { - "Category": "Data", - "MemberType": "Property", - "Name": "TimePosition", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - } - }, - "MemoryCategory": "Instances", - "Name": "AudioPlayer", - "Superclass": "Instance", - "Tags": [ - "NotBrowsable" - ] - }, - "AudioReverb": { - "Members": { - "DecayRatio": { - "Category": "Data", - "MemberType": "Property", - "Name": "DecayRatio", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "DecayTime": { - "Category": "Data", - "MemberType": "Property", - "Name": "DecayTime", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Density": { - "Category": "Data", - "MemberType": "Property", - "Name": "Density", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Diffusion": { - "Category": "Data", - "MemberType": "Property", - "Name": "Diffusion", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "DryLevel": { - "Category": "Data", - "MemberType": "Property", - "Name": "DryLevel", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "EarlyDelayTime": { - "Category": "Data", - "MemberType": "Property", - "Name": "EarlyDelayTime", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "HighCutFrequency": { - "Category": "Data", - "MemberType": "Property", - "Name": "HighCutFrequency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LateDelayTime": { - "Category": "Data", - "MemberType": "Property", - "Name": "LateDelayTime", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LowShelfFrequency": { - "Category": "Data", - "MemberType": "Property", - "Name": "LowShelfFrequency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LowShelfGain": { - "Category": "Data", - "MemberType": "Property", - "Name": "LowShelfGain", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ReferenceFrequency": { - "Category": "Data", - "MemberType": "Property", - "Name": "ReferenceFrequency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "WetLevel": { - "Category": "Data", - "MemberType": "Property", - "Name": "WetLevel", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "AudioReverb", - "Superclass": "Instance", - "Tags": [ - "NotBrowsable" - ] - }, - "AudioSearchParams": { - "Members": { - "Album": { - "Category": "Data", - "MemberType": "Property", - "Name": "Album", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Artist": { - "Category": "Data", - "MemberType": "Property", - "Name": "Artist", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "AudioSubType": { - "Category": "Data", - "MemberType": "Property", - "Name": "AudioSubType", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "AudioSubType" - } - }, - "AudioSubtype": { - "Category": "Data", - "MemberType": "Property", - "Name": "AudioSubtype", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "AudioSubType" - } - }, - "MaxDuration": { - "Category": "Data", - "MemberType": "Property", - "Name": "MaxDuration", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "MinDuration": { - "Category": "Data", - "MemberType": "Property", - "Name": "MinDuration", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "SearchKeyword": { - "Category": "Data", - "MemberType": "Property", - "Name": "SearchKeyword", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Tag": { - "Category": "Data", - "MemberType": "Property", - "Name": "Tag", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Title": { - "Category": "Data", - "MemberType": "Property", - "Name": "Title", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "AudioSearchParams", - "Superclass": "Instance", - "Tags": [ - "NotReplicated" - ] - }, - "AvatarChatService": { - "Members": { - "ClientFeatures": { - "Category": "State", - "MemberType": "Property", - "Name": "ClientFeatures", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "ClientFeaturesInitialized": { - "Category": "State", - "MemberType": "Property", - "Name": "ClientFeaturesInitialized", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "GetClientFeaturesAsync": { - "MemberType": "Function", - "Name": "GetClientFeaturesAsync", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetServerFeaturesAsync": { - "MemberType": "Function", - "Name": "GetServerFeaturesAsync", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "IsEnabled": { - "MemberType": "Function", - "Name": "IsEnabled", - "Parameters": [ - { - "Name": "mask", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "feature", - "Type": { - "Category": "Enum", - "Name": "AvatarChatServiceFeature" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsPlaceEnabled": { - "MemberType": "Function", - "Name": "IsPlaceEnabled", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsUniverseEnabled": { - "MemberType": "Function", - "Name": "IsUniverseEnabled", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PollClientFeatures": { - "MemberType": "Function", - "Name": "PollClientFeatures", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PollServerFeatures": { - "MemberType": "Function", - "Name": "PollServerFeatures", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ServerFeatures": { - "Category": "State", - "MemberType": "Property", - "Name": "ServerFeatures", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - } - }, - "MemoryCategory": "Instances", - "Name": "AvatarChatService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "AvatarEditorService": { - "Members": { - "CheckApplyDefaultClothing": { - "MemberType": "Function", - "Name": "CheckApplyDefaultClothing", - "Parameters": [ - { - "Name": "humanoidDescription", - "Type": { - "Category": "Class", - "Name": "HumanoidDescription" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "HumanoidDescription" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ConformToAvatarRules": { - "MemberType": "Function", - "Name": "ConformToAvatarRules", - "Parameters": [ - { - "Name": "humanoidDescription", - "Type": { - "Category": "Class", - "Name": "HumanoidDescription" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "HumanoidDescription" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetAccessoryType": { - "MemberType": "Function", - "Name": "GetAccessoryType", - "Parameters": [ - { - "Name": "avatarAssetType", - "Type": { - "Category": "Enum", - "Name": "AvatarAssetType" - } - } - ], - "ReturnType": { - "Category": "Enum", - "Name": "AccessoryType" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetAvatarRules": { - "MemberType": "Function", - "Name": "GetAvatarRules", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetBatchItemDetails": { - "MemberType": "Function", - "Name": "GetBatchItemDetails", - "Parameters": [ - { - "Name": "itemIds", - "Type": { - "Category": "Group", - "Name": "Array" - } - }, - { - "Name": "itemType", - "Type": { - "Category": "Enum", - "Name": "AvatarItemType" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetFavorite": { - "MemberType": "Function", - "Name": "GetFavorite", - "Parameters": [ - { - "Name": "itemId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "itemType", - "Type": { - "Category": "Enum", - "Name": "AvatarItemType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetInventory": { - "MemberType": "Function", - "Name": "GetInventory", - "Parameters": [ - { - "Name": "assetTypes", - "Type": { - "Category": "Group", - "Name": "Array" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "InventoryPages" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetItemDetails": { - "MemberType": "Function", - "Name": "GetItemDetails", - "Parameters": [ - { - "Name": "itemId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "itemType", - "Type": { - "Category": "Enum", - "Name": "AvatarItemType" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetOutfitDetails": { - "MemberType": "Function", - "Name": "GetOutfitDetails", - "Parameters": [ - { - "Name": "outfitId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetOutfits": { - "MemberType": "Function", - "Name": "GetOutfits", - "Parameters": [ - { - "Default": "All", - "Name": "outfitSource", - "Type": { - "Category": "Enum", - "Name": "OutfitSource" - } - }, - { - "Default": "All", - "Name": "outfitType", - "Type": { - "Category": "Enum", - "Name": "OutfitType" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "OutfitPages" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetRecommendedAssets": { - "MemberType": "Function", - "Name": "GetRecommendedAssets", - "Parameters": [ - { - "Name": "assetType", - "Type": { - "Category": "Enum", - "Name": "AvatarAssetType" - } - }, - { - "Default": "0", - "Name": "contextAssetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetRecommendedBundles": { - "MemberType": "Function", - "Name": "GetRecommendedBundles", - "Parameters": [ - { - "Name": "bundleId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "NoPromptCreateOutfit": { - "MemberType": "Function", - "Name": "NoPromptCreateOutfit", - "Parameters": [ - { - "Name": "humanoidDescription", - "Type": { - "Category": "Class", - "Name": "HumanoidDescription" - } - }, - { - "Name": "rigType", - "Type": { - "Category": "Enum", - "Name": "HumanoidRigType" - } - }, - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "NoPromptDeleteOutfit": { - "MemberType": "Function", - "Name": "NoPromptDeleteOutfit", - "Parameters": [ - { - "Name": "outfitId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "NoPromptRenameOutfit": { - "MemberType": "Function", - "Name": "NoPromptRenameOutfit", - "Parameters": [ - { - "Name": "outfitId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "NoPromptSaveAvatar": { - "MemberType": "Function", - "Name": "NoPromptSaveAvatar", - "Parameters": [ - { - "Name": "humanoidDescription", - "Type": { - "Category": "Class", - "Name": "HumanoidDescription" - } - }, - { - "Name": "rigType", - "Type": { - "Category": "Enum", - "Name": "HumanoidRigType" - } - }, - { - "Name": "saveDict", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - }, - { - "Default": "0", - "Name": "gearAssetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "NoPromptSaveAvatarThumbnailCustomization": { - "MemberType": "Function", - "Name": "NoPromptSaveAvatarThumbnailCustomization", - "Parameters": [ - { - "Name": "thumbnailType", - "Type": { - "Category": "Enum", - "Name": "AvatarThumbnailCustomizationType" - } - }, - { - "Name": "emoteAssetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "cameraDistanceScale", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "yRotDeg", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Default": "0", - "Name": "fieldOfViewDeg", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "NoPromptSetFavorite": { - "MemberType": "Function", - "Name": "NoPromptSetFavorite", - "Parameters": [ - { - "Name": "itemId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "itemType", - "Type": { - "Category": "Enum", - "Name": "AvatarItemType" - } - }, - { - "Name": "shouldFavorite", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "NoPromptUpdateOutfit": { - "MemberType": "Function", - "Name": "NoPromptUpdateOutfit", - "Parameters": [ - { - "Name": "outfitId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "humanoidDescription", - "Type": { - "Category": "Class", - "Name": "HumanoidDescription" - } - }, - { - "Name": "rigType", - "Type": { - "Category": "Enum", - "Name": "HumanoidRigType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OpenAllowInventoryReadAccess": { - "MemberType": "Event", - "Name": "OpenAllowInventoryReadAccess", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OpenPromptCreateOufit": { - "MemberType": "Event", - "Name": "OpenPromptCreateOufit", - "Parameters": [ - { - "Name": "humanoidDescription", - "Type": { - "Category": "Class", - "Name": "HumanoidDescription" - } - }, - { - "Name": "rigType", - "Type": { - "Category": "Enum", - "Name": "HumanoidRigType" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OpenPromptDeleteOutfit": { - "MemberType": "Event", - "Name": "OpenPromptDeleteOutfit", - "Parameters": [ - { - "Name": "outfitId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OpenPromptRenameOutfit": { - "MemberType": "Event", - "Name": "OpenPromptRenameOutfit", - "Parameters": [ - { - "Name": "outfitId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OpenPromptSaveAvatar": { - "MemberType": "Event", - "Name": "OpenPromptSaveAvatar", - "Parameters": [ - { - "Name": "humanoidDescription", - "Type": { - "Category": "Class", - "Name": "HumanoidDescription" - } - }, - { - "Name": "rigType", - "Type": { - "Category": "Enum", - "Name": "HumanoidRigType" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OpenPromptSetFavorite": { - "MemberType": "Event", - "Name": "OpenPromptSetFavorite", - "Parameters": [ - { - "Name": "itemId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "itemType", - "Type": { - "Category": "Enum", - "Name": "AvatarItemType" - } - }, - { - "Name": "shouldFavorite", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OpenPromptUpdateOutfit": { - "MemberType": "Event", - "Name": "OpenPromptUpdateOutfit", - "Parameters": [ - { - "Name": "outfitId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "humanoidDescription", - "Type": { - "Category": "Class", - "Name": "HumanoidDescription" - } - }, - { - "Name": "rigType", - "Type": { - "Category": "Enum", - "Name": "HumanoidRigType" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PerformCreateOutfitWithDescription": { - "MemberType": "Function", - "Name": "PerformCreateOutfitWithDescription", - "Parameters": [ - { - "Name": "humanoidDescription", - "Type": { - "Category": "Class", - "Name": "HumanoidDescription" - } - }, - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PerformDeleteOutfit": { - "MemberType": "Function", - "Name": "PerformDeleteOutfit", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PerformRenameOutfit": { - "MemberType": "Function", - "Name": "PerformRenameOutfit", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PerformSaveAvatarWithDescription": { - "MemberType": "Function", - "Name": "PerformSaveAvatarWithDescription", - "Parameters": [ - { - "Name": "humanoidDescription", - "Type": { - "Category": "Class", - "Name": "HumanoidDescription" - } - }, - { - "Name": "addedAssets", - "Type": { - "Category": "Group", - "Name": "Array" - } - }, - { - "Name": "removedAssets", - "Type": { - "Category": "Group", - "Name": "Array" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PerformSetFavorite": { - "MemberType": "Function", - "Name": "PerformSetFavorite", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PerformUpdateOutfit": { - "MemberType": "Function", - "Name": "PerformUpdateOutfit", - "Parameters": [ - { - "Name": "humanoidDescription", - "Type": { - "Category": "Class", - "Name": "HumanoidDescription" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptAllowInventoryReadAccess": { - "MemberType": "Function", - "Name": "PromptAllowInventoryReadAccess", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptAllowInventoryReadAccessCompleted": { - "MemberType": "Event", - "Name": "PromptAllowInventoryReadAccessCompleted", - "Parameters": [ - { - "Name": "result", - "Type": { - "Category": "Enum", - "Name": "AvatarPromptResult" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptCreateOutfit": { - "MemberType": "Function", - "Name": "PromptCreateOutfit", - "Parameters": [ - { - "Name": "outfit", - "Type": { - "Category": "Class", - "Name": "HumanoidDescription" - } - }, - { - "Name": "rigType", - "Type": { - "Category": "Enum", - "Name": "HumanoidRigType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptCreateOutfitCompleted": { - "MemberType": "Event", - "Name": "PromptCreateOutfitCompleted", - "Parameters": [ - { - "Name": "result", - "Type": { - "Category": "Enum", - "Name": "AvatarPromptResult" - } - }, - { - "Name": "failureType", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptDeleteOutfit": { - "MemberType": "Function", - "Name": "PromptDeleteOutfit", - "Parameters": [ - { - "Name": "outfitId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptDeleteOutfitCompleted": { - "MemberType": "Event", - "Name": "PromptDeleteOutfitCompleted", - "Parameters": [ - { - "Name": "result", - "Type": { - "Category": "Enum", - "Name": "AvatarPromptResult" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptRenameOutfit": { - "MemberType": "Function", - "Name": "PromptRenameOutfit", - "Parameters": [ - { - "Name": "outfitId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptRenameOutfitCompleted": { - "MemberType": "Event", - "Name": "PromptRenameOutfitCompleted", - "Parameters": [ - { - "Name": "result", - "Type": { - "Category": "Enum", - "Name": "AvatarPromptResult" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptSaveAvatar": { - "MemberType": "Function", - "Name": "PromptSaveAvatar", - "Parameters": [ - { - "Name": "humanoidDescription", - "Type": { - "Category": "Class", - "Name": "HumanoidDescription" - } - }, - { - "Name": "rigType", - "Type": { - "Category": "Enum", - "Name": "HumanoidRigType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptSaveAvatarCompleted": { - "MemberType": "Event", - "Name": "PromptSaveAvatarCompleted", - "Parameters": [ - { - "Name": "result", - "Type": { - "Category": "Enum", - "Name": "AvatarPromptResult" - } - }, - { - "Name": "humanoidDescription", - "Type": { - "Category": "Class", - "Name": "HumanoidDescription" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptSaveAvatarThumbnailCustomizationCompleted": { - "MemberType": "Event", - "Name": "PromptSaveAvatarThumbnailCustomizationCompleted", - "Parameters": [ - { - "Name": "result", - "Type": { - "Category": "Enum", - "Name": "AvatarPromptResult" - } - }, - { - "Name": "failureType", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptSetFavorite": { - "MemberType": "Function", - "Name": "PromptSetFavorite", - "Parameters": [ - { - "Name": "itemId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "itemType", - "Type": { - "Category": "Enum", - "Name": "AvatarItemType" - } - }, - { - "Name": "shouldFavorite", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptSetFavoriteCompleted": { - "MemberType": "Event", - "Name": "PromptSetFavoriteCompleted", - "Parameters": [ - { - "Name": "result", - "Type": { - "Category": "Enum", - "Name": "AvatarPromptResult" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptUpdateOutfit": { - "MemberType": "Function", - "Name": "PromptUpdateOutfit", - "Parameters": [ - { - "Name": "outfitId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "updatedOutfit", - "Type": { - "Category": "Class", - "Name": "HumanoidDescription" - } - }, - { - "Name": "rigType", - "Type": { - "Category": "Enum", - "Name": "HumanoidRigType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptUpdateOutfitCompleted": { - "MemberType": "Event", - "Name": "PromptUpdateOutfitCompleted", - "Parameters": [ - { - "Name": "result", - "Type": { - "Category": "Enum", - "Name": "AvatarPromptResult" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SearchCatalog": { - "MemberType": "Function", - "Name": "SearchCatalog", - "Parameters": [ - { - "Name": "searchParameters", - "Type": { - "Category": "DataType", - "Name": "CatalogSearchParams" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "CatalogPages" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "SetAllowInventoryReadAccess": { - "MemberType": "Function", - "Name": "SetAllowInventoryReadAccess", - "Parameters": [ - { - "Name": "inventoryReadAccessGranted", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SignalCreateOutfitFailed": { - "MemberType": "Function", - "Name": "SignalCreateOutfitFailed", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SignalCreateOutfitPermissionDenied": { - "MemberType": "Function", - "Name": "SignalCreateOutfitPermissionDenied", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SignalDeleteOutfitFailed": { - "MemberType": "Function", - "Name": "SignalDeleteOutfitFailed", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SignalDeleteOutfitPermissionDenied": { - "MemberType": "Function", - "Name": "SignalDeleteOutfitPermissionDenied", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SignalRenameOutfitFailed": { - "MemberType": "Function", - "Name": "SignalRenameOutfitFailed", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SignalRenameOutfitPermissionDenied": { - "MemberType": "Function", - "Name": "SignalRenameOutfitPermissionDenied", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SignalSaveAvatarFailed": { - "MemberType": "Function", - "Name": "SignalSaveAvatarFailed", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SignalSaveAvatarPermissionDenied": { - "MemberType": "Function", - "Name": "SignalSaveAvatarPermissionDenied", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SignalSetFavoriteFailed": { - "MemberType": "Function", - "Name": "SignalSetFavoriteFailed", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SignalSetFavoritePermissionDenied": { - "MemberType": "Function", - "Name": "SignalSetFavoritePermissionDenied", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SignalUpdateOutfitFailed": { - "MemberType": "Function", - "Name": "SignalUpdateOutfitFailed", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SignalUpdateOutfitPermissionDenied": { - "MemberType": "Function", - "Name": "SignalUpdateOutfitPermissionDenied", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "AvatarEditorService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "AvatarImportService": { - "Members": { - "ImportFBXAnimationFromFilePathUserMayChooseModel": { - "MemberType": "Function", - "Name": "ImportFBXAnimationFromFilePathUserMayChooseModel", - "Parameters": [ - { - "Name": "fbxFilePath", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "selectedRig", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "userChooseModelThenImportCB", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ImportFBXAnimationUserMayChooseModel": { - "MemberType": "Function", - "Name": "ImportFBXAnimationUserMayChooseModel", - "Parameters": [ - { - "Name": "selectedRig", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "userChooseModelThenImportCB", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ImportFbxRigWithoutSceneLoad": { - "MemberType": "Function", - "Name": "ImportFbxRigWithoutSceneLoad", - "Parameters": [ - { - "Default": "true", - "Name": "isR15", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ImportLoadedFBXAnimation": { - "MemberType": "Function", - "Name": "ImportLoadedFBXAnimation", - "Parameters": [ - { - "Name": "useFBXModel", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "LoadRigAndDetectType": { - "MemberType": "Function", - "Name": "LoadRigAndDetectType", - "Parameters": [ - { - "Name": "promptR15Callback", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "AvatarImportService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "Backpack": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "Backpack", - "Superclass": "Instance" - }, - "BackpackItem": { - "Members": { - "TextureId": { - "Category": "Data", - "MemberType": "Property", - "Name": "TextureId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "BackpackItem", - "Superclass": "Model", - "Tags": [ - "NotCreatable" - ] - }, - "BadgeService": { - "Members": { - "AwardBadge": { - "MemberType": "Function", - "Name": "AwardBadge", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "badgeId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "BadgeAwarded": { - "MemberType": "Event", - "Name": "BadgeAwarded", - "Parameters": [ - { - "Name": "message", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "badgeId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetBadgeInfoAsync": { - "MemberType": "Function", - "Name": "GetBadgeInfoAsync", - "Parameters": [ - { - "Name": "badgeId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "IsDisabled": { - "MemberType": "Function", - "Name": "IsDisabled", - "Parameters": [ - { - "Name": "badgeId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true, - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "IsLegal": { - "MemberType": "Function", - "Name": "IsLegal", - "Parameters": [ - { - "Name": "badgeId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true, - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "OnBadgeAwarded": { - "MemberType": "Event", - "Name": "OnBadgeAwarded", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "creatorId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "badgeId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UserHasBadge": { - "MemberType": "Function", - "Name": "UserHasBadge", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "badgeId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true, - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "UserHasBadgeAsync": { - "MemberType": "Function", - "Name": "UserHasBadgeAsync", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "badgeId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "BadgeService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "BallSocketConstraint": { - "Members": { - "LimitsEnabled": { - "Category": "BallSocket", - "MemberType": "Property", - "Name": "LimitsEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "MaxFrictionTorque": { - "Category": "Friction", - "MemberType": "Property", - "Name": "MaxFrictionTorque", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Radius": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Radius", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Restitution": { - "Category": "Limits", - "MemberType": "Property", - "Name": "Restitution", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TwistLimitsEnabled": { - "Category": "Limits", - "MemberType": "Property", - "Name": "TwistLimitsEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "TwistLowerAngle": { - "Category": "TwistLimits", - "MemberType": "Property", - "Name": "TwistLowerAngle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TwistUpperAngle": { - "Category": "TwistLimits", - "MemberType": "Property", - "Name": "TwistUpperAngle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "UpperAngle": { - "Category": "Limits", - "MemberType": "Property", - "Name": "UpperAngle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "BallSocketConstraint", - "Superclass": "Constraint" - }, - "BaseImportData": { - "Members": { - "CreateTemplateFromData": { - "MemberType": "Function", - "Name": "CreateTemplateFromData", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Map" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetStatuses": { - "MemberType": "Function", - "Name": "GetStatuses", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Id": { - "Category": "Data", - "MemberType": "Property", - "Name": "Id", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "ImportName": { - "Category": "Data", - "MemberType": "Property", - "Name": "ImportName", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "ShouldImport": { - "Category": "Data", - "MemberType": "Property", - "Name": "ShouldImport", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "BaseImportData", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "BasePart": { - "Members": { - "Anchored": { - "Category": "Part", - "MemberType": "Property", - "Name": "Anchored", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ApplyAngularImpulse": { - "MemberType": "Function", - "Name": "ApplyAngularImpulse", - "Parameters": [ - { - "Name": "impulse", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ApplyImpulse": { - "MemberType": "Function", - "Name": "ApplyImpulse", - "Parameters": [ - { - "Name": "impulse", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ApplyImpulseAtPosition": { - "MemberType": "Function", - "Name": "ApplyImpulseAtPosition", - "Parameters": [ - { - "Name": "impulse", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "position", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "AssemblyAngularVelocity": { - "Category": "Assembly", - "MemberType": "Property", - "Name": "AssemblyAngularVelocity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "AssemblyCenterOfMass": { - "Category": "Assembly", - "MemberType": "Property", - "Name": "AssemblyCenterOfMass", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "AssemblyLinearVelocity": { - "Category": "Assembly", - "MemberType": "Property", - "Name": "AssemblyLinearVelocity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "AssemblyMass": { - "Category": "Assembly", - "MemberType": "Property", - "Name": "AssemblyMass", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "AssemblyRootPart": { - "Category": "Assembly", - "MemberType": "Property", - "Name": "AssemblyRootPart", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "BasePart" - } - }, - "BackParamA": { - "Category": "Surface Inputs", - "MemberType": "Property", - "Name": "BackParamA", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "BackParamB": { - "Category": "Surface Inputs", - "MemberType": "Property", - "Name": "BackParamB", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "BackSurface": { - "Category": "Surface", - "MemberType": "Property", - "Name": "BackSurface", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "SurfaceType" - } - }, - "BackSurfaceInput": { - "Category": "Surface Inputs", - "MemberType": "Property", - "Name": "BackSurfaceInput", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "InputType" - } - }, - "BottomParamA": { - "Category": "Surface Inputs", - "MemberType": "Property", - "Name": "BottomParamA", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "BottomParamB": { - "Category": "Surface Inputs", - "MemberType": "Property", - "Name": "BottomParamB", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "BottomSurface": { - "Category": "Surface", - "MemberType": "Property", - "Name": "BottomSurface", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "SurfaceType" - } - }, - "BottomSurfaceInput": { - "Category": "Surface Inputs", - "MemberType": "Property", - "Name": "BottomSurfaceInput", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "InputType" - } - }, - "BreakJoints": { - "MemberType": "Function", - "Name": "BreakJoints", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "BrickColor": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "BrickColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BrickColor" - } - }, - "CFrame": { - "Category": "Transform", - "MemberType": "Property", - "Name": "CFrame", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "CanCollide": { - "Category": "Collision", - "MemberType": "Property", - "Name": "CanCollide", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "CanCollideWith": { - "MemberType": "Function", - "Name": "CanCollideWith", - "Parameters": [ - { - "Name": "part", - "Type": { - "Category": "Class", - "Name": "BasePart" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "CanQuery": { - "Category": "Collision", - "MemberType": "Property", - "Name": "CanQuery", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "CanSetNetworkOwnership": { - "MemberType": "Function", - "Name": "CanSetNetworkOwnership", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CanTouch": { - "Category": "Collision", - "MemberType": "Property", - "Name": "CanTouch", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "CastShadow": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "CastShadow", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "CenterOfMass": { - "Category": "Part", - "MemberType": "Property", - "Name": "CenterOfMass", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "CollisionGroup": { - "Category": "Collision", - "MemberType": "Property", - "Name": "CollisionGroup", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "CollisionGroupId": { - "Category": "Collision", - "MemberType": "Property", - "Name": "CollisionGroupId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "Color": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "CurrentPhysicalProperties": { - "Category": "Part", - "MemberType": "Property", - "Name": "CurrentPhysicalProperties", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "PhysicalProperties" - } - }, - "CustomPhysicalProperties": { - "Category": "Part", - "MemberType": "Property", - "Name": "CustomPhysicalProperties", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "PhysicalProperties" - } - }, - "Elasticity": { - "Category": "Part", - "MemberType": "Property", - "Name": "Elasticity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "EnableFluidForces": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "EnableFluidForces", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ExtentsCFrame": { - "Category": "Transform", - "MemberType": "Property", - "Name": "ExtentsCFrame", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "ExtentsSize": { - "Category": "Transform", - "MemberType": "Property", - "Name": "ExtentsSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "Friction": { - "Category": "Part", - "MemberType": "Property", - "Name": "Friction", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "FrontParamA": { - "Category": "Surface Inputs", - "MemberType": "Property", - "Name": "FrontParamA", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "FrontParamB": { - "Category": "Surface Inputs", - "MemberType": "Property", - "Name": "FrontParamB", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "FrontSurface": { - "Category": "Surface", - "MemberType": "Property", - "Name": "FrontSurface", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "SurfaceType" - } - }, - "FrontSurfaceInput": { - "Category": "Surface Inputs", - "MemberType": "Property", - "Name": "FrontSurfaceInput", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "InputType" - } - }, - "GetClosestPointOnSurface": { - "MemberType": "Function", - "Name": "GetClosestPointOnSurface", - "Parameters": [ - { - "Name": "position", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Vector3" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetConnectedParts": { - "MemberType": "Function", - "Name": "GetConnectedParts", - "Parameters": [ - { - "Default": "false", - "Name": "recursive", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GetJoints": { - "MemberType": "Function", - "Name": "GetJoints", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GetMass": { - "MemberType": "Function", - "Name": "GetMass", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "float" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GetNetworkOwner": { - "MemberType": "Function", - "Name": "GetNetworkOwner", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GetNetworkOwnershipAuto": { - "MemberType": "Function", - "Name": "GetNetworkOwnershipAuto", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GetNoCollisionConstraints": { - "MemberType": "Function", - "Name": "GetNoCollisionConstraints", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetRenderCFrame": { - "MemberType": "Function", - "Name": "GetRenderCFrame", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "CFrame" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetRootPart": { - "MemberType": "Function", - "Name": "GetRootPart", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GetTouchingParts": { - "MemberType": "Function", - "Name": "GetTouchingParts", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetVelocityAtPosition": { - "MemberType": "Function", - "Name": "GetVelocityAtPosition", - "Parameters": [ - { - "Name": "position", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Vector3" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "IntersectAsync": { - "MemberType": "Function", - "Name": "IntersectAsync", - "Parameters": [ - { - "Name": "parts", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - }, - { - "Default": "Default", - "Name": "collisionfidelity", - "Type": { - "Category": "Enum", - "Name": "CollisionFidelity" - } - }, - { - "Default": "Automatic", - "Name": "renderFidelity", - "Type": { - "Category": "Enum", - "Name": "RenderFidelity" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "IsGrounded": { - "MemberType": "Function", - "Name": "IsGrounded", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "LeftParamA": { - "Category": "Surface Inputs", - "MemberType": "Property", - "Name": "LeftParamA", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LeftParamB": { - "Category": "Surface Inputs", - "MemberType": "Property", - "Name": "LeftParamB", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LeftSurface": { - "Category": "Surface", - "MemberType": "Property", - "Name": "LeftSurface", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "SurfaceType" - } - }, - "LeftSurfaceInput": { - "Category": "Surface Inputs", - "MemberType": "Property", - "Name": "LeftSurfaceInput", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "InputType" - } - }, - "LocalSimulationTouched": { - "MemberType": "Event", - "Name": "LocalSimulationTouched", - "Parameters": [ - { - "Name": "part", - "Type": { - "Category": "Class", - "Name": "BasePart" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "LocalTransparencyModifier": { - "Category": "Data", - "MemberType": "Property", - "Name": "LocalTransparencyModifier", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Locked": { - "Category": "Data", - "MemberType": "Property", - "Name": "Locked", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "MakeJoints": { - "MemberType": "Function", - "Name": "MakeJoints", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "Mass": { - "Category": "Part", - "MemberType": "Property", - "Name": "Mass", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Massless": { - "Category": "Part", - "MemberType": "Property", - "Name": "Massless", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Material": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Material", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "Material" - } - }, - "MaterialVariant": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "MaterialVariant", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Orientation": { - "Category": "Transform", - "MemberType": "Property", - "Name": "Orientation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "OutfitChanged": { - "MemberType": "Event", - "Name": "OutfitChanged", - "Parameters": {}, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "PivotOffset": { - "Category": "Pivot", - "MemberType": "Property", - "Name": "PivotOffset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "Position": { - "Category": "Transform", - "MemberType": "Property", - "Name": "Position", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "ReceiveAge": { - "Category": "Part", - "MemberType": "Property", - "Name": "ReceiveAge", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Reflectance": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Reflectance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Resize": { - "MemberType": "Function", - "Name": "Resize", - "Parameters": [ - { - "Name": "normalId", - "Type": { - "Category": "Enum", - "Name": "NormalId" - } - }, - { - "Name": "deltaAmount", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ResizeIncrement": { - "Category": "Data", - "MemberType": "Property", - "Name": "ResizeIncrement", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "ResizeableFaces": { - "Category": "Data", - "MemberType": "Property", - "Name": "ResizeableFaces", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Faces" - } - }, - "RightParamA": { - "Category": "Surface Inputs", - "MemberType": "Property", - "Name": "RightParamA", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RightParamB": { - "Category": "Surface Inputs", - "MemberType": "Property", - "Name": "RightParamB", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RightSurface": { - "Category": "Surface", - "MemberType": "Property", - "Name": "RightSurface", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "SurfaceType" - } - }, - "RightSurfaceInput": { - "Category": "Surface Inputs", - "MemberType": "Property", - "Name": "RightSurfaceInput", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "InputType" - } - }, - "RootPriority": { - "Category": "Part", - "MemberType": "Property", - "Name": "RootPriority", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "RotVelocity": { - "Category": "Data", - "MemberType": "Property", - "Name": "RotVelocity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "Rotation": { - "Category": "Data", - "MemberType": "Property", - "Name": "Rotation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "SetNetworkOwner": { - "MemberType": "Function", - "Name": "SetNetworkOwner", - "Parameters": [ - { - "Default": "nil", - "Name": "playerInstance", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetNetworkOwnershipAuto": { - "MemberType": "Function", - "Name": "SetNetworkOwnershipAuto", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Size": { - "Category": "Transform", - "MemberType": "Property", - "Name": "Size", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "SpecificGravity": { - "Category": "Data", - "MemberType": "Property", - "Name": "SpecificGravity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "StoppedTouching": { - "MemberType": "Event", - "Name": "StoppedTouching", - "Parameters": [ - { - "Name": "otherPart", - "Type": { - "Category": "Class", - "Name": "BasePart" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "SubtractAsync": { - "MemberType": "Function", - "Name": "SubtractAsync", - "Parameters": [ - { - "Name": "parts", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - }, - { - "Default": "Default", - "Name": "collisionfidelity", - "Type": { - "Category": "Enum", - "Name": "CollisionFidelity" - } - }, - { - "Default": "Automatic", - "Name": "renderFidelity", - "Type": { - "Category": "Enum", - "Name": "RenderFidelity" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "TopParamA": { - "Category": "Surface Inputs", - "MemberType": "Property", - "Name": "TopParamA", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TopParamB": { - "Category": "Surface Inputs", - "MemberType": "Property", - "Name": "TopParamB", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TopSurface": { - "Category": "Surface", - "MemberType": "Property", - "Name": "TopSurface", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "SurfaceType" - } - }, - "TopSurfaceInput": { - "Category": "Surface Inputs", - "MemberType": "Property", - "Name": "TopSurfaceInput", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "InputType" - } - }, - "TouchEnded": { - "MemberType": "Event", - "Name": "TouchEnded", - "Parameters": [ - { - "Name": "otherPart", - "Type": { - "Category": "Class", - "Name": "BasePart" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Touched": { - "MemberType": "Event", - "Name": "Touched", - "Parameters": [ - { - "Name": "otherPart", - "Type": { - "Category": "Class", - "Name": "BasePart" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Transparency": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Transparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "UnionAsync": { - "MemberType": "Function", - "Name": "UnionAsync", - "Parameters": [ - { - "Name": "parts", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - }, - { - "Default": "Default", - "Name": "collisionfidelity", - "Type": { - "Category": "Enum", - "Name": "CollisionFidelity" - } - }, - { - "Default": "Automatic", - "Name": "renderFidelity", - "Type": { - "Category": "Enum", - "Name": "RenderFidelity" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "Velocity": { - "Category": "Data", - "MemberType": "Property", - "Name": "Velocity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "breakJoints": { - "MemberType": "Function", - "Name": "breakJoints", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "brickColor": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "brickColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BrickColor" - } - }, - "getMass": { - "MemberType": "Function", - "Name": "getMass", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "float" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "makeJoints": { - "MemberType": "Function", - "Name": "makeJoints", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "resize": { - "MemberType": "Function", - "Name": "resize", - "Parameters": [ - { - "Name": "normalId", - "Type": { - "Category": "Enum", - "Name": "NormalId" - } - }, - { - "Name": "deltaAmount", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "BasePart", - "Superclass": "PVInstance", - "Tags": [ - "NotCreatable", - "NotBrowsable" - ] - }, - "BasePlayerGui": { - "Members": { - "GetGuiObjectsAtPosition": { - "MemberType": "Function", - "Name": "GetGuiObjectsAtPosition", - "Parameters": [ - { - "Name": "x", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "y", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetGuiObjectsInCircle": { - "MemberType": "Function", - "Name": "GetGuiObjectsInCircle", - "Parameters": [ - { - "Name": "position", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - }, - { - "Name": "radius", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "BasePlayerGui", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "BaseScript": { - "Members": { - "Disabled": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Disabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Enabled": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "LinkedSource": { - "Category": "Data", - "MemberType": "Property", - "Name": "LinkedSource", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "RunContext": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "RunContext", - "Security": { - "Read": "None", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "RunContext" - } - } - }, - "MemoryCategory": "Script", - "Name": "BaseScript", - "Superclass": "LuaSourceContainer", - "Tags": [ - "NotCreatable" - ] - }, - "BaseWrap": { - "Members": { - "CageMeshId": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "CageMeshId", - "Security": { - "Read": "None", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "CageOrigin": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "CageOrigin", - "Security": { - "Read": "None", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "CageOriginWorld": { - "Category": "Data", - "MemberType": "Property", - "Name": "CageOriginWorld", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "GetFaces": { - "MemberType": "Function", - "Name": "GetFaces", - "Parameters": [ - { - "Name": "cageType", - "Type": { - "Category": "Enum", - "Name": "CageType" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetVertices": { - "MemberType": "Function", - "Name": "GetVertices", - "Parameters": [ - { - "Name": "cageType", - "Type": { - "Category": "Enum", - "Name": "CageType" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "HSRAssetId": { - "Category": "Data", - "MemberType": "Property", - "Name": "HSRAssetId", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "ImportOrigin": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "ImportOrigin", - "Security": { - "Read": "None", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "ImportOriginWorld": { - "Category": "Data", - "MemberType": "Property", - "Name": "ImportOriginWorld", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "IsHSRReady": { - "MemberType": "Function", - "Name": "IsHSRReady", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ModifyVertices": { - "MemberType": "Function", - "Name": "ModifyVertices", - "Parameters": [ - { - "Name": "cageType", - "Type": { - "Category": "Enum", - "Name": "CageType" - } - }, - { - "Name": "vertices", - "Type": { - "Category": "Group", - "Name": "Array" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "BaseWrap", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "Beam": { - "Members": { - "Attachment0": { - "Category": "Shape", - "MemberType": "Property", - "Name": "Attachment0", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Attachment" - } - }, - "Attachment1": { - "Category": "Shape", - "MemberType": "Property", - "Name": "Attachment1", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Attachment" - } - }, - "Brightness": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Brightness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Color": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "ColorSequence" - } - }, - "CurveSize0": { - "Category": "Shape", - "MemberType": "Property", - "Name": "CurveSize0", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "CurveSize1": { - "Category": "Shape", - "MemberType": "Property", - "Name": "CurveSize1", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Enabled": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "FaceCamera": { - "Category": "Shape", - "MemberType": "Property", - "Name": "FaceCamera", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "LightEmission": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "LightEmission", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LightInfluence": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "LightInfluence", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Segments": { - "Category": "Shape", - "MemberType": "Property", - "Name": "Segments", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "SetTextureOffset": { - "MemberType": "Function", - "Name": "SetTextureOffset", - "Parameters": [ - { - "Default": "0", - "Name": "offset", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Texture": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Texture", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "TextureLength": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "TextureLength", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TextureMode": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "TextureMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TextureMode" - } - }, - "TextureSpeed": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "TextureSpeed", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Transparency": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Transparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "NumberSequence" - } - }, - "Width0": { - "Category": "Shape", - "MemberType": "Property", - "Name": "Width0", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Width1": { - "Category": "Shape", - "MemberType": "Property", - "Name": "Width1", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ZOffset": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "ZOffset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Beam", - "Superclass": "Instance" - }, - "BevelMesh": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "BevelMesh", - "Superclass": "DataModelMesh", - "Tags": [ - "NotCreatable", - "NotBrowsable", - "Deprecated" - ] - }, - "BillboardGui": { - "Members": { - "Active": { - "Category": "Data", - "MemberType": "Property", - "Name": "Active", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Adornee": { - "Category": "Data", - "MemberType": "Property", - "Name": "Adornee", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - }, - "AlwaysOnTop": { - "Category": "Data", - "MemberType": "Property", - "Name": "AlwaysOnTop", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Brightness": { - "Category": "Data", - "MemberType": "Property", - "Name": "Brightness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ClipsDescendants": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "ClipsDescendants", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "CurrentDistance": { - "Category": "Data", - "MemberType": "Property", - "Name": "CurrentDistance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "DistanceLowerLimit": { - "Category": "Data", - "MemberType": "Property", - "Name": "DistanceLowerLimit", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "DistanceStep": { - "Category": "Data", - "MemberType": "Property", - "Name": "DistanceStep", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "DistanceUpperLimit": { - "Category": "Data", - "MemberType": "Property", - "Name": "DistanceUpperLimit", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ExtentsOffset": { - "Category": "Data", - "MemberType": "Property", - "Name": "ExtentsOffset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "ExtentsOffsetWorldSpace": { - "Category": "Data", - "MemberType": "Property", - "Name": "ExtentsOffsetWorldSpace", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "GetScreenSpaceBounds": { - "MemberType": "Function", - "Name": "GetScreenSpaceBounds", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Variant" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "LightInfluence": { - "Category": "Data", - "MemberType": "Property", - "Name": "LightInfluence", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MaxDistance": { - "Category": "Data", - "MemberType": "Property", - "Name": "MaxDistance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "PlayerToHideFrom": { - "Category": "Data", - "MemberType": "Property", - "Name": "PlayerToHideFrom", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - }, - "Size": { - "Category": "Data", - "MemberType": "Property", - "Name": "Size", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "UDim2" - } - }, - "SizeOffset": { - "Category": "Data", - "MemberType": "Property", - "Name": "SizeOffset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "StudsOffset": { - "Category": "Data", - "MemberType": "Property", - "Name": "StudsOffset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "StudsOffsetWorldSpace": { - "Category": "Data", - "MemberType": "Property", - "Name": "StudsOffsetWorldSpace", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - } - }, - "MemoryCategory": "Instances", - "Name": "BillboardGui", - "Superclass": "LayerCollector" - }, - "BinaryStringValue": { - "Members": { - "Changed": { - "MemberType": "Event", - "Name": "Changed", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "DataType", - "Name": "BinaryString" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "BinaryStringValue", - "Superclass": "ValueBase" - }, - "BindableEvent": { - "Members": { - "Event": { - "MemberType": "Event", - "Name": "Event", - "Parameters": [ - { - "Name": "arguments", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Fire": { - "MemberType": "Function", - "Name": "Fire", - "Parameters": [ - { - "Name": "arguments", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - } - }, - "MemoryCategory": "Instances", - "Name": "BindableEvent", - "Superclass": "Instance" - }, - "BindableFunction": { - "Members": { - "Invoke": { - "MemberType": "Function", - "Name": "Invoke", - "Parameters": [ - { - "Name": "arguments", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "OnInvoke": { - "MemberType": "Callback", - "Name": "OnInvoke", - "Parameters": [ - { - "Name": "arguments", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "BindableFunction", - "Superclass": "Instance" - }, - "BlockMesh": { - "Members": {}, - "MemoryCategory": "PhysicsParts", - "Name": "BlockMesh", - "Superclass": "BevelMesh" - }, - "BloomEffect": { - "Members": { - "Intensity": { - "Category": "State", - "MemberType": "Property", - "Name": "Intensity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Size": { - "Category": "State", - "MemberType": "Property", - "Name": "Size", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Threshold": { - "Category": "State", - "MemberType": "Property", - "Name": "Threshold", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "BloomEffect", - "Superclass": "PostEffect" - }, - "BlurEffect": { - "Members": { - "Size": { - "Category": "State", - "MemberType": "Property", - "Name": "Size", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "BlurEffect", - "Superclass": "PostEffect" - }, - "BodyAngularVelocity": { - "Members": { - "AngularVelocity": { - "Category": "Goals", - "MemberType": "Property", - "Name": "AngularVelocity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "MaxTorque": { - "Category": "Goals", - "MemberType": "Property", - "Name": "MaxTorque", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "P": { - "Category": "Goals", - "MemberType": "Property", - "Name": "P", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "angularvelocity": { - "Category": "Goals", - "MemberType": "Property", - "Name": "angularvelocity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "maxTorque": { - "Category": "Goals", - "MemberType": "Property", - "Name": "maxTorque", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - } - }, - "MemoryCategory": "Instances", - "Name": "BodyAngularVelocity", - "Superclass": "BodyMover", - "Tags": [ - "Deprecated" - ] - }, - "BodyColors": { - "Members": { - "HeadColor": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "HeadColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BrickColor" - } - }, - "HeadColor3": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "HeadColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "LeftArmColor": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "LeftArmColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BrickColor" - } - }, - "LeftArmColor3": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "LeftArmColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "LeftLegColor": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "LeftLegColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BrickColor" - } - }, - "LeftLegColor3": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "LeftLegColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "RightArmColor": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "RightArmColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BrickColor" - } - }, - "RightArmColor3": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "RightArmColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "RightLegColor": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "RightLegColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BrickColor" - } - }, - "RightLegColor3": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "RightLegColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "TorsoColor": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "TorsoColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BrickColor" - } - }, - "TorsoColor3": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "TorsoColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - } - }, - "MemoryCategory": "Instances", - "Name": "BodyColors", - "Superclass": "CharacterAppearance" - }, - "BodyForce": { - "Members": { - "Force": { - "Category": "Goals", - "MemberType": "Property", - "Name": "Force", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "force": { - "Category": "Goals", - "MemberType": "Property", - "Name": "force", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - } - }, - "MemoryCategory": "Instances", - "Name": "BodyForce", - "Superclass": "BodyMover", - "Tags": [ - "Deprecated" - ] - }, - "BodyGyro": { - "Members": { - "CFrame": { - "Category": "Goals", - "MemberType": "Property", - "Name": "CFrame", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "D": { - "Category": "Goals", - "MemberType": "Property", - "Name": "D", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MaxTorque": { - "Category": "Goals", - "MemberType": "Property", - "Name": "MaxTorque", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "P": { - "Category": "Goals", - "MemberType": "Property", - "Name": "P", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "cframe": { - "Category": "Goals", - "MemberType": "Property", - "Name": "cframe", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "maxTorque": { - "Category": "Goals", - "MemberType": "Property", - "Name": "maxTorque", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - } - }, - "MemoryCategory": "Instances", - "Name": "BodyGyro", - "Superclass": "BodyMover", - "Tags": [ - "Deprecated" - ] - }, - "BodyMover": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "BodyMover", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Deprecated" - ] - }, - "BodyPosition": { - "Members": { - "D": { - "Category": "Goals", - "MemberType": "Property", - "Name": "D", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "GetLastForce": { - "MemberType": "Function", - "Name": "GetLastForce", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Vector3" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MaxForce": { - "Category": "Goals", - "MemberType": "Property", - "Name": "MaxForce", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "P": { - "Category": "Goals", - "MemberType": "Property", - "Name": "P", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Position": { - "Category": "Goals", - "MemberType": "Property", - "Name": "Position", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "ReachedTarget": { - "MemberType": "Event", - "Name": "ReachedTarget", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "lastForce": { - "MemberType": "Function", - "Name": "lastForce", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Vector3" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "maxForce": { - "Category": "Goals", - "MemberType": "Property", - "Name": "maxForce", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "position": { - "Category": "Goals", - "MemberType": "Property", - "Name": "position", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - } - }, - "MemoryCategory": "Instances", - "Name": "BodyPosition", - "Superclass": "BodyMover", - "Tags": [ - "Deprecated" - ] - }, - "BodyThrust": { - "Members": { - "Force": { - "Category": "Goals", - "MemberType": "Property", - "Name": "Force", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "Location": { - "Category": "Goals", - "MemberType": "Property", - "Name": "Location", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "force": { - "Category": "Goals", - "MemberType": "Property", - "Name": "force", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "location": { - "Category": "Goals", - "MemberType": "Property", - "Name": "location", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - } - }, - "MemoryCategory": "Instances", - "Name": "BodyThrust", - "Superclass": "BodyMover", - "Tags": [ - "Deprecated" - ] - }, - "BodyVelocity": { - "Members": { - "GetLastForce": { - "MemberType": "Function", - "Name": "GetLastForce", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Vector3" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MaxForce": { - "Category": "Goals", - "MemberType": "Property", - "Name": "MaxForce", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "P": { - "Category": "Goals", - "MemberType": "Property", - "Name": "P", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Velocity": { - "Category": "Goals", - "MemberType": "Property", - "Name": "Velocity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "lastForce": { - "MemberType": "Function", - "Name": "lastForce", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Vector3" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "maxForce": { - "Category": "Goals", - "MemberType": "Property", - "Name": "maxForce", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "velocity": { - "Category": "Goals", - "MemberType": "Property", - "Name": "velocity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - } - }, - "MemoryCategory": "Instances", - "Name": "BodyVelocity", - "Superclass": "BodyMover", - "Tags": [ - "Deprecated" - ] - }, - "Bone": { - "Members": { - "Transform": { - "Category": "Transform", - "MemberType": "Property", - "Name": "Transform", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "TransformedCFrame": { - "Category": "Derived Data", - "MemberType": "Property", - "Name": "TransformedCFrame", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "TransformedWorldCFrame": { - "Category": "Derived World Data", - "MemberType": "Property", - "Name": "TransformedWorldCFrame", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "Unsafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Bone", - "Superclass": "Attachment" - }, - "BoolValue": { - "Members": { - "Changed": { - "MemberType": "Event", - "Name": "Changed", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Value": { - "Category": "Data", - "MemberType": "Property", - "Name": "Value", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "changed": { - "MemberType": "Event", - "Name": "changed", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "BoolValue", - "Superclass": "ValueBase" - }, - "BoxHandleAdornment": { - "Members": { - "Size": { - "Category": "Data", - "MemberType": "Property", - "Name": "Size", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - } - }, - "MemoryCategory": "Instances", - "Name": "BoxHandleAdornment", - "Superclass": "HandleAdornment" - }, - "Breakpoint": { - "Members": { - "Condition": { - "Category": "Data", - "MemberType": "Property", - "Name": "Condition", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "ContinueExecution": { - "Category": "State", - "MemberType": "Property", - "Name": "ContinueExecution", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Enabled": { - "Category": "State", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Id": { - "Category": "Data", - "MemberType": "Property", - "Name": "Id", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "Line": { - "Category": "Data", - "MemberType": "Property", - "Name": "Line", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "LogMessage": { - "Category": "Data", - "MemberType": "Property", - "Name": "LogMessage", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "MetaBreakpointId": { - "Category": "Data", - "MemberType": "Property", - "Name": "MetaBreakpointId", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "RemoveOnHit": { - "Category": "State", - "MemberType": "Property", - "Name": "RemoveOnHit", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Script": { - "Category": "Data", - "MemberType": "Property", - "Name": "Script", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Valid": { - "Category": "State", - "MemberType": "Property", - "Name": "Valid", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Verified": { - "Category": "State", - "MemberType": "Property", - "Name": "Verified", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Breakpoint", - "Superclass": "Instance", - "Tags": [ - "NotReplicated" - ] - }, - "BrickColorValue": { - "Members": { - "Changed": { - "MemberType": "Event", - "Name": "Changed", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "DataType", - "Name": "BrickColor" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Value": { - "Category": "Data", - "MemberType": "Property", - "Name": "Value", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BrickColor" - } - }, - "changed": { - "MemberType": "Event", - "Name": "changed", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "DataType", - "Name": "BrickColor" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "BrickColorValue", - "Superclass": "ValueBase" - }, - "BrowserService": { - "Members": { - "AuthCookieCopiedToEngine": { - "MemberType": "Event", - "Name": "AuthCookieCopiedToEngine", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "BrowserWindowClosed": { - "MemberType": "Event", - "Name": "BrowserWindowClosed", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "BrowserWindowWillNavigate": { - "MemberType": "Event", - "Name": "BrowserWindowWillNavigate", - "Parameters": [ - { - "Name": "url", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CloseBrowserWindow": { - "MemberType": "Function", - "Name": "CloseBrowserWindow", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CopyAuthCookieFromBrowserToEngine": { - "MemberType": "Function", - "Name": "CopyAuthCookieFromBrowserToEngine", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "EmitHybridEvent": { - "MemberType": "Function", - "Name": "EmitHybridEvent", - "Parameters": [ - { - "Name": "moduleName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "eventName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "params", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ExecuteJavaScript": { - "MemberType": "Function", - "Name": "ExecuteJavaScript", - "Parameters": [ - { - "Name": "javascript", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "JavaScriptCallback": { - "MemberType": "Event", - "Name": "JavaScriptCallback", - "Parameters": [ - { - "Name": "content", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OpenBrowserWindow": { - "MemberType": "Function", - "Name": "OpenBrowserWindow", - "Parameters": [ - { - "Name": "url", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OpenNativeOverlay": { - "MemberType": "Function", - "Name": "OpenNativeOverlay", - "Parameters": [ - { - "Name": "title", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "url", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OpenWeChatAuthWindow": { - "MemberType": "Function", - "Name": "OpenWeChatAuthWindow", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ReturnToJavaScript": { - "MemberType": "Function", - "Name": "ReturnToJavaScript", - "Parameters": [ - { - "Name": "callbackId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "success", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "params", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SendCommand": { - "MemberType": "Function", - "Name": "SendCommand", - "Parameters": [ - { - "Name": "command", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "BrowserService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "BubbleChatConfiguration": { - "Members": { - "AdorneeName": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "AdorneeName", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "BackgroundColor3": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "BackgroundColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "BackgroundTransparency": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "BackgroundTransparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "BubbleDuration": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "BubbleDuration", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "BubblesSpacing": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "BubblesSpacing", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Enabled": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Font": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Font", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "Font" - } - }, - "FontFace": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "FontFace", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Font" - } - }, - "LocalPlayerStudsOffset": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "LocalPlayerStudsOffset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "MaxBubbles": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "MaxBubbles", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MaxDistance": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "MaxDistance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MinimizeDistance": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "MinimizeDistance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TailVisible": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "TailVisible", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "TextColor3": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "TextColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "TextSize": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "TextSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "VerticalStudsOffset": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "VerticalStudsOffset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "BubbleChatConfiguration", - "Superclass": "TextChatConfigurations", - "Tags": [ - "NotCreatable" - ] - }, - "BubbleChatMessageProperties": { - "Members": { - "BackgroundColor3": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "BackgroundColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "BackgroundTransparency": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "BackgroundTransparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "FontFace": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "FontFace", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Font" - } - }, - "TextColor3": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "TextColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "TextSize": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "TextSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - } - }, - "MemoryCategory": "Instances", - "Name": "BubbleChatMessageProperties", - "Superclass": "Instance" - }, - "BulkImportService": { - "Members": { - "AssetImported": { - "MemberType": "Event", - "Name": "AssetImported", - "Parameters": [ - { - "Name": "assetType", - "Type": { - "Category": "Enum", - "Name": "AssetType" - } - }, - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "id", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "BulkImportFinished": { - "MemberType": "Event", - "Name": "BulkImportFinished", - "Parameters": [ - { - "Name": "state", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "BulkImportStarted": { - "MemberType": "Event", - "Name": "BulkImportStarted", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "LaunchBulkImport": { - "MemberType": "Function", - "Name": "LaunchBulkImport", - "Parameters": [ - { - "Name": "assetTypeToImport", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ShowBulkImportView": { - "MemberType": "Function", - "Name": "ShowBulkImportView", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "BulkImportService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "BuoyancySensor": { - "Members": { - "FullySubmerged": { - "Category": "Output", - "MemberType": "Property", - "Name": "FullySubmerged", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "TouchingSurface": { - "Category": "Output", - "MemberType": "Property", - "Name": "TouchingSurface", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "BuoyancySensor", - "Superclass": "SensorBase", - "Tags": [ - "NotBrowsable" - ] - }, - "CFrameValue": { - "Members": { - "Changed": { - "MemberType": "Event", - "Name": "Changed", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Value": { - "Category": "Data", - "MemberType": "Property", - "Name": "Value", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "changed": { - "MemberType": "Event", - "Name": "changed", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "CFrameValue", - "Superclass": "ValueBase" - }, - "CSGDictionaryService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "CSGDictionaryService", - "Superclass": "FlyweightService", - "Tags": [ - "Service" - ] - }, - "CacheableContentProvider": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "CacheableContentProvider", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "CalloutService": { - "Members": { - "AttachCallout": { - "MemberType": "Function", - "Name": "AttachCallout", - "Parameters": [ - { - "Name": "definitionId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "locationId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "target", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DefineCallout": { - "MemberType": "Function", - "Name": "DefineCallout", - "Parameters": [ - { - "Name": "definitionId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "title", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "description", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "learnMoreURL", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DetachCalloutsByDefinitionId": { - "MemberType": "Function", - "Name": "DetachCalloutsByDefinitionId", - "Parameters": [ - { - "Name": "definitionId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "CalloutService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "Camera": { - "Members": { - "CFrame": { - "Category": "Data", - "MemberType": "Property", - "Name": "CFrame", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "CameraSubject": { - "Category": "Camera", - "MemberType": "Property", - "Name": "CameraSubject", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - }, - "CameraType": { - "Category": "Camera", - "MemberType": "Property", - "Name": "CameraType", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "CameraType" - } - }, - "CoordinateFrame": { - "Category": "Data", - "MemberType": "Property", - "Name": "CoordinateFrame", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "DiagonalFieldOfView": { - "Category": "Camera", - "MemberType": "Property", - "Name": "DiagonalFieldOfView", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "FieldOfView": { - "Category": "Camera", - "MemberType": "Property", - "Name": "FieldOfView", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "FieldOfViewMode": { - "Category": "Camera", - "MemberType": "Property", - "Name": "FieldOfViewMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "FieldOfViewMode" - } - }, - "FirstPersonTransition": { - "MemberType": "Event", - "Name": "FirstPersonTransition", - "Parameters": [ - { - "Name": "entering", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Focus": { - "Category": "Data", - "MemberType": "Property", - "Name": "Focus", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "GetLargestCutoffDistance": { - "MemberType": "Function", - "Name": "GetLargestCutoffDistance", - "Parameters": [ - { - "Name": "ignoreList", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "float" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetPanSpeed": { - "MemberType": "Function", - "Name": "GetPanSpeed", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "float" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetPartsObscuringTarget": { - "MemberType": "Function", - "Name": "GetPartsObscuringTarget", - "Parameters": [ - { - "Name": "castPoints", - "Type": { - "Category": "Group", - "Name": "Array" - } - }, - { - "Name": "ignoreList", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetRenderCFrame": { - "MemberType": "Function", - "Name": "GetRenderCFrame", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "CFrame" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetRoll": { - "MemberType": "Function", - "Name": "GetRoll", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "float" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetTiltSpeed": { - "MemberType": "Function", - "Name": "GetTiltSpeed", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "float" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "HeadLocked": { - "Category": "Data", - "MemberType": "Property", - "Name": "HeadLocked", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "HeadScale": { - "Category": "Data", - "MemberType": "Property", - "Name": "HeadScale", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Interpolate": { - "MemberType": "Function", - "Name": "Interpolate", - "Parameters": [ - { - "Name": "endPos", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - }, - { - "Name": "endFocus", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - }, - { - "Name": "duration", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "InterpolationFinished": { - "MemberType": "Event", - "Name": "InterpolationFinished", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MaxAxisFieldOfView": { - "Category": "Camera", - "MemberType": "Property", - "Name": "MaxAxisFieldOfView", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "NearPlaneZ": { - "Category": "Data", - "MemberType": "Property", - "Name": "NearPlaneZ", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "PanUnits": { - "MemberType": "Function", - "Name": "PanUnits", - "Parameters": [ - { - "Name": "units", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "ScreenPointToRay": { - "MemberType": "Function", - "Name": "ScreenPointToRay", - "Parameters": [ - { - "Name": "x", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "y", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Default": "0", - "Name": "depth", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Ray" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "SetCameraPanMode": { - "MemberType": "Function", - "Name": "SetCameraPanMode", - "Parameters": [ - { - "Default": "Classic", - "Name": "mode", - "Type": { - "Category": "Enum", - "Name": "CameraPanMode" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetImageServerView": { - "MemberType": "Function", - "Name": "SetImageServerView", - "Parameters": [ - { - "Name": "modelCoord", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetRoll": { - "MemberType": "Function", - "Name": "SetRoll", - "Parameters": [ - { - "Name": "rollAngle", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TiltUnits": { - "MemberType": "Function", - "Name": "TiltUnits", - "Parameters": [ - { - "Name": "units", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "VRTiltAndRollEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "VRTiltAndRollEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ViewportPointToRay": { - "MemberType": "Function", - "Name": "ViewportPointToRay", - "Parameters": [ - { - "Name": "x", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "y", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Default": "0", - "Name": "depth", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Ray" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "ViewportSize": { - "Category": "Data", - "MemberType": "Property", - "Name": "ViewportSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "WorldToScreenPoint": { - "MemberType": "Function", - "Name": "WorldToScreenPoint", - "Parameters": [ - { - "Name": "worldPoint", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "WorldToViewportPoint": { - "MemberType": "Function", - "Name": "WorldToViewportPoint", - "Parameters": [ - { - "Name": "worldPoint", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "Zoom": { - "MemberType": "Function", - "Name": "Zoom", - "Parameters": [ - { - "Name": "distance", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ZoomToExtents": { - "MemberType": "Function", - "Name": "ZoomToExtents", - "Parameters": [ - { - "Name": "boundingBoxCFrame", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - }, - { - "Name": "boundingBoxSize", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "focus": { - "Category": "Data", - "MemberType": "Property", - "Name": "focus", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Camera", - "Superclass": "Instance", - "Tags": [ - "NotReplicated" - ] - }, - "CanvasGroup": { - "Members": { - "GroupColor3": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "GroupColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "GroupTransparency": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "GroupTransparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Gui", - "Name": "CanvasGroup", - "Superclass": "GuiObject" - }, - "CaptureService": { - "Members": { - "CaptureSaved": { - "MemberType": "Event", - "Name": "CaptureSaved", - "Parameters": [ - { - "Name": "captureInfo", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetCaptureSizeAsync": { - "MemberType": "Function", - "Name": "GetCaptureSizeAsync", - "Parameters": [ - { - "Name": "captureContentId", - "Type": { - "Category": "DataType", - "Name": "Content" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Vector2" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "RetrieveCaptures": { - "MemberType": "Function", - "Name": "RetrieveCaptures", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SaveScreenshotCapture": { - "MemberType": "Function", - "Name": "SaveScreenshotCapture", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "CaptureService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "CatalogPages": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "CatalogPages", - "Superclass": "Pages", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "ChangeHistoryService": { - "Members": { - "FinishRecording": { - "MemberType": "Function", - "Name": "FinishRecording", - "Parameters": [ - { - "Name": "identifier", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "operation", - "Type": { - "Category": "Enum", - "Name": "FinishRecordingOperation" - } - }, - { - "Name": "finalOptions", - "Type": { - "Category": "Group", - "Name": "Dictionary?" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetCanRedo": { - "MemberType": "Function", - "Name": "GetCanRedo", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetCanUndo": { - "MemberType": "Function", - "Name": "GetCanUndo", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsRecordingInProgress": { - "MemberType": "Function", - "Name": "IsRecordingInProgress", - "Parameters": [ - { - "Name": "identifier", - "Type": { - "Category": "Primitive", - "Name": "string?" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnRecordingFinished": { - "MemberType": "Event", - "Name": "OnRecordingFinished", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "displayName", - "Type": { - "Category": "Primitive", - "Name": "string?" - } - }, - { - "Name": "identifier", - "Type": { - "Category": "Primitive", - "Name": "string?" - } - }, - { - "Name": "operationn", - "Type": { - "Category": "Enum", - "Name": "FinishRecordingOperation" - } - }, - { - "Name": "finalOptions", - "Type": { - "Category": "Group", - "Name": "Dictionary?" - } - } - ], - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnRecordingStarted": { - "MemberType": "Event", - "Name": "OnRecordingStarted", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "displayName", - "Type": { - "Category": "Primitive", - "Name": "string?" - } - } - ], - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnRedo": { - "MemberType": "Event", - "Name": "OnRedo", - "Parameters": [ - { - "Name": "waypoint", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnUndo": { - "MemberType": "Event", - "Name": "OnUndo", - "Parameters": [ - { - "Name": "waypoint", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Redo": { - "MemberType": "Function", - "Name": "Redo", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ResetWaypoints": { - "MemberType": "Function", - "Name": "ResetWaypoints", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetEnabled": { - "MemberType": "Function", - "Name": "SetEnabled", - "Parameters": [ - { - "Name": "state", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetWaypoint": { - "MemberType": "Function", - "Name": "SetWaypoint", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TryBeginRecording": { - "MemberType": "Function", - "Name": "TryBeginRecording", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "displayName", - "Type": { - "Category": "Primitive", - "Name": "string?" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string?" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Undo": { - "MemberType": "Function", - "Name": "Undo", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "ChangeHistoryService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "ChannelSelectorSoundEffect": { - "Members": { - "Channel": { - "Category": "State", - "MemberType": "Property", - "Name": "Channel", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - } - }, - "MemoryCategory": "Instances", - "Name": "ChannelSelectorSoundEffect", - "Superclass": "CustomSoundEffect", - "Tags": [ - "NotCreatable", - "NotBrowsable" - ] - }, - "CharacterAppearance": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "CharacterAppearance", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "CharacterMesh": { - "Members": { - "BaseTextureId": { - "Category": "Data", - "MemberType": "Property", - "Name": "BaseTextureId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "BodyPart": { - "Category": "Data", - "MemberType": "Property", - "Name": "BodyPart", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "BodyPart" - } - }, - "MeshId": { - "Category": "Data", - "MemberType": "Property", - "Name": "MeshId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "OverlayTextureId": { - "Category": "Data", - "MemberType": "Property", - "Name": "OverlayTextureId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - } - }, - "MemoryCategory": "Instances", - "Name": "CharacterMesh", - "Superclass": "CharacterAppearance" - }, - "Chat": { - "Members": { - "BubbleChatEnabled": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "BubbleChatEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "BubbleChatSettingsChanged": { - "MemberType": "Event", - "Name": "BubbleChatSettingsChanged", - "Parameters": [ - { - "Name": "settings", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CanUserChatAsync": { - "MemberType": "Function", - "Name": "CanUserChatAsync", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "CanUsersChatAsync": { - "MemberType": "Function", - "Name": "CanUsersChatAsync", - "Parameters": [ - { - "Name": "userIdFrom", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "userIdTo", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "Chat": { - "MemberType": "Function", - "Name": "Chat", - "Parameters": [ - { - "Name": "partOrCharacter", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "message", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "Blue", - "Name": "color", - "Type": { - "Category": "Enum", - "Name": "ChatColor" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ChatLocal": { - "MemberType": "Function", - "Name": "ChatLocal", - "Parameters": [ - { - "Name": "partOrCharacter", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "message", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "Blue", - "Name": "color", - "Type": { - "Category": "Enum", - "Name": "ChatColor" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Chatted": { - "MemberType": "Event", - "Name": "Chatted", - "Parameters": [ - { - "Name": "part", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "message", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "color", - "Type": { - "Category": "Enum", - "Name": "ChatColor" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "FilterStringAsync": { - "MemberType": "Function", - "Name": "FilterStringAsync", - "Parameters": [ - { - "Name": "stringToFilter", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "playerFrom", - "Type": { - "Category": "Class", - "Name": "Player" - } - }, - { - "Name": "playerTo", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "FilterStringForBroadcast": { - "MemberType": "Function", - "Name": "FilterStringForBroadcast", - "Parameters": [ - { - "Name": "stringToFilter", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "playerFrom", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "FilterStringForPlayerAsync": { - "MemberType": "Function", - "Name": "FilterStringForPlayerAsync", - "Parameters": [ - { - "Name": "stringToFilter", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "playerToFilterFor", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": { - "Deprecated": true, - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetShouldUseLuaChat": { - "MemberType": "Function", - "Name": "GetShouldUseLuaChat", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InvokeChatCallback": { - "MemberType": "Function", - "Name": "InvokeChatCallback", - "Parameters": [ - { - "Name": "callbackType", - "Type": { - "Category": "Enum", - "Name": "ChatCallbackType" - } - }, - { - "Name": "callbackArguments", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "LoadDefaultChat": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "LoadDefaultChat", - "Security": { - "Read": "None", - "Write": "NotAccessibleSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "RegisterChatCallback": { - "MemberType": "Function", - "Name": "RegisterChatCallback", - "Parameters": [ - { - "Name": "callbackType", - "Type": { - "Category": "Enum", - "Name": "ChatCallbackType" - } - }, - { - "Name": "callbackFunction", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetBubbleChatSettings": { - "MemberType": "Function", - "Name": "SetBubbleChatSettings", - "Parameters": [ - { - "Name": "settings", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "Chat", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "ChatInputBarConfiguration": { - "Members": { - "AbsolutePosition": { - "Category": "Data", - "MemberType": "Property", - "Name": "AbsolutePosition", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "Unsafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "AbsolutePositionWrite": { - "Category": "Data", - "MemberType": "Property", - "Name": "AbsolutePositionWrite", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "AbsoluteSize": { - "Category": "Data", - "MemberType": "Property", - "Name": "AbsoluteSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "Unsafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "AbsoluteSizeWrite": { - "Category": "Data", - "MemberType": "Property", - "Name": "AbsoluteSizeWrite", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "AutocompleteEnabled": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "AutocompleteEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "BackgroundColor3": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "BackgroundColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "BackgroundTransparency": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "BackgroundTransparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "Enabled": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "FontFace": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "FontFace", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Font" - } - }, - "IsFocused": { - "Category": "Data", - "MemberType": "Property", - "Name": "IsFocused", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "Unsafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "IsFocusedWrite": { - "Category": "Data", - "MemberType": "Property", - "Name": "IsFocusedWrite", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "KeyboardKeyCode": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "KeyboardKeyCode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "KeyCode" - } - }, - "PlaceholderColor3": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "PlaceholderColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "TargetTextChannel": { - "Category": "Data", - "MemberType": "Property", - "Name": "TargetTextChannel", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "TextChannel" - } - }, - "TextBox": { - "Category": "Data", - "MemberType": "Property", - "Name": "TextBox", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "TextBox" - } - }, - "TextColor3": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "TextColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "TextSize": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "TextSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "TextStrokeColor3": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "TextStrokeColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "TextStrokeTransparency": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "TextStrokeTransparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - } - }, - "MemoryCategory": "Instances", - "Name": "ChatInputBarConfiguration", - "Superclass": "TextChatConfigurations", - "Tags": [ - "NotCreatable" - ] - }, - "ChatWindowConfiguration": { - "Members": { - "AbsolutePosition": { - "Category": "Data", - "MemberType": "Property", - "Name": "AbsolutePosition", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "Unsafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "AbsolutePositionWrite": { - "Category": "Data", - "MemberType": "Property", - "Name": "AbsolutePositionWrite", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "AbsoluteSize": { - "Category": "Data", - "MemberType": "Property", - "Name": "AbsoluteSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "Unsafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "AbsoluteSizeWrite": { - "Category": "Data", - "MemberType": "Property", - "Name": "AbsoluteSizeWrite", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "BackgroundColor3": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "BackgroundColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "BackgroundTransparency": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "BackgroundTransparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "Enabled": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "FontFace": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "FontFace", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Font" - } - }, - "HeightScale": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "HeightScale", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "HorizontalAlignment": { - "Category": "Data", - "MemberType": "Property", - "Name": "HorizontalAlignment", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "Unsafe", - "ValueType": { - "Category": "Enum", - "Name": "HorizontalAlignment" - } - }, - "TextColor3": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "TextColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "TextSize": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "TextSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "TextStrokeColor3": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "TextStrokeColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "TextStrokeTransparency": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "TextStrokeTransparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "VerticalAlignment": { - "Category": "Data", - "MemberType": "Property", - "Name": "VerticalAlignment", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "Unsafe", - "ValueType": { - "Category": "Enum", - "Name": "VerticalAlignment" - } - }, - "WidthScale": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "WidthScale", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "ChatWindowConfiguration", - "Superclass": "TextChatConfigurations", - "Tags": [ - "NotCreatable" - ] - }, - "ChorusSoundEffect": { - "Members": { - "Depth": { - "Category": "State", - "MemberType": "Property", - "Name": "Depth", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Mix": { - "Category": "State", - "MemberType": "Property", - "Name": "Mix", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Rate": { - "Category": "State", - "MemberType": "Property", - "Name": "Rate", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "ChorusSoundEffect", - "Superclass": "SoundEffect" - }, - "ClickDetector": { - "Members": { - "CursorIcon": { - "Category": "Image", - "MemberType": "Property", - "Name": "CursorIcon", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "MaxActivationDistance": { - "Category": "Data", - "MemberType": "Property", - "Name": "MaxActivationDistance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MouseClick": { - "MemberType": "Event", - "Name": "MouseClick", - "Parameters": [ - { - "Name": "playerWhoClicked", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MouseHoverEnter": { - "MemberType": "Event", - "Name": "MouseHoverEnter", - "Parameters": [ - { - "Name": "playerWhoHovered", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MouseHoverLeave": { - "MemberType": "Event", - "Name": "MouseHoverLeave", - "Parameters": [ - { - "Name": "playerWhoHovered", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RightMouseClick": { - "MemberType": "Event", - "Name": "RightMouseClick", - "Parameters": [ - { - "Name": "playerWhoClicked", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "mouseClick": { - "MemberType": "Event", - "Name": "mouseClick", - "Parameters": [ - { - "Name": "playerWhoClicked", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "ClickDetector", - "Superclass": "Instance" - }, - "ClientReplicator": { - "Members": { - "RCCProfilerDataComplete": { - "MemberType": "Event", - "Name": "RCCProfilerDataComplete", - "Parameters": [ - { - "Name": "success", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "message", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RequestRCCProfilerData": { - "MemberType": "Function", - "Name": "RequestRCCProfilerData", - "Parameters": [ - { - "Name": "frameRate", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "timeFrame", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RequestServerScriptProfiling": { - "MemberType": "Function", - "Name": "RequestServerScriptProfiling", - "Parameters": [ - { - "Name": "start", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "frequency", - "Type": { - "Category": "Primitive", - "Name": "int?" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RequestServerStats": { - "MemberType": "Function", - "Name": "RequestServerStats", - "Parameters": [ - { - "Name": "request", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StatsReceived": { - "MemberType": "Event", - "Name": "StatsReceived", - "Parameters": [ - { - "Name": "stats", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "ClientReplicator", - "Superclass": "NetworkReplicator", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "ClimbController": { - "Members": { - "AccelerationTime": { - "Category": "Movement", - "MemberType": "Property", - "Name": "AccelerationTime", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "BalanceMaxTorque": { - "Category": "Balance", - "MemberType": "Property", - "Name": "BalanceMaxTorque", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "BalanceSpeed": { - "Category": "Balance", - "MemberType": "Property", - "Name": "BalanceSpeed", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MoveMaxForce": { - "Category": "Movement", - "MemberType": "Property", - "Name": "MoveMaxForce", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "ClimbController", - "Superclass": "ControllerBase", - "Tags": [ - "NotBrowsable" - ] - }, - "Clothing": { - "Members": { - "Color3": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Color3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Clothing", - "Superclass": "CharacterAppearance", - "Tags": [ - "NotCreatable" - ] - }, - "CloudLocalizationTable": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "CloudLocalizationTable", - "Superclass": "LocalizationTable", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "Clouds": { - "Members": { - "Color": { - "Category": "State", - "MemberType": "Property", - "Name": "Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Cover": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Cover", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Density": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Density", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Enabled": { - "Category": "State", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Clouds", - "Superclass": "Instance" - }, - "ClusterPacketCache": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "ClusterPacketCache", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "CollectionService": { - "Members": { - "AddTag": { - "MemberType": "Function", - "Name": "AddTag", - "Parameters": [ - { - "Name": "instance", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "tag", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetAllTags": { - "MemberType": "Function", - "Name": "GetAllTags", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GetCollection": { - "MemberType": "Function", - "Name": "GetCollection", - "Parameters": [ - { - "Name": "class", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetInstanceAddedSignal": { - "MemberType": "Function", - "Name": "GetInstanceAddedSignal", - "Parameters": [ - { - "Name": "tag", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "RBXScriptSignal" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetInstanceRemovedSignal": { - "MemberType": "Function", - "Name": "GetInstanceRemovedSignal", - "Parameters": [ - { - "Name": "tag", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "RBXScriptSignal" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetTagged": { - "MemberType": "Function", - "Name": "GetTagged", - "Parameters": [ - { - "Name": "tag", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GetTags": { - "MemberType": "Function", - "Name": "GetTags", - "Parameters": [ - { - "Name": "instance", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "HasTag": { - "MemberType": "Function", - "Name": "HasTag", - "Parameters": [ - { - "Name": "instance", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "tag", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "ItemAdded": { - "MemberType": "Event", - "Name": "ItemAdded", - "Parameters": [ - { - "Name": "instance", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "ItemRemoved": { - "MemberType": "Event", - "Name": "ItemRemoved", - "Parameters": [ - { - "Name": "instance", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "RemoveTag": { - "MemberType": "Function", - "Name": "RemoveTag", - "Parameters": [ - { - "Name": "instance", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "tag", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TagAdded": { - "MemberType": "Event", - "Name": "TagAdded", - "Parameters": [ - { - "Name": "tag", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TagRemoved": { - "MemberType": "Event", - "Name": "TagRemoved", - "Parameters": [ - { - "Name": "tag", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "CollectionService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "Color3Value": { - "Members": { - "Changed": { - "MemberType": "Event", - "Name": "Changed", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "DataType", - "Name": "Color3" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Value": { - "Category": "Data", - "MemberType": "Property", - "Name": "Value", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "changed": { - "MemberType": "Event", - "Name": "changed", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "DataType", - "Name": "Color3" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "Color3Value", - "Superclass": "ValueBase" - }, - "ColorCorrectionEffect": { - "Members": { - "Brightness": { - "Category": "State", - "MemberType": "Property", - "Name": "Brightness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Contrast": { - "Category": "State", - "MemberType": "Property", - "Name": "Contrast", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Saturation": { - "Category": "State", - "MemberType": "Property", - "Name": "Saturation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TintColor": { - "Category": "State", - "MemberType": "Property", - "Name": "TintColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - } - }, - "MemoryCategory": "Instances", - "Name": "ColorCorrectionEffect", - "Superclass": "PostEffect" - }, - "CommandInstance": { - "Members": { - "AllowGUIAccessPoints": { - "Category": "Data", - "MemberType": "Property", - "Name": "AllowGUIAccessPoints", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Checked": { - "Category": "Data", - "MemberType": "Property", - "Name": "Checked", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "DefaultShortcut": { - "Category": "Data", - "MemberType": "Property", - "Name": "DefaultShortcut", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "DisplayName": { - "Category": "Data", - "MemberType": "Property", - "Name": "DisplayName", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "EnableGuiAccess": { - "MemberType": "Function", - "Name": "EnableGuiAccess", - "Parameters": [ - { - "Name": "displayName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "statusTip", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "defaultShortcut", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Enabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Icon": { - "Category": "Data", - "MemberType": "Property", - "Name": "Icon", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Name": { - "Category": "Data", - "MemberType": "Property", - "Name": "Name", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Permission": { - "Category": "Data", - "MemberType": "Property", - "Name": "Permission", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "CommandPermission" - } - }, - "RegisterExecutionCallback": { - "MemberType": "Function", - "Name": "RegisterExecutionCallback", - "Parameters": [ - { - "Name": "callbackFunction", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StatusTip": { - "Category": "Data", - "MemberType": "Property", - "Name": "StatusTip", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "CommandInstance", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "CommandService": { - "Members": { - "CommandExecuting": { - "MemberType": "Event", - "Name": "CommandExecuting", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "params", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Execute": { - "MemberType": "Function", - "Name": "Execute", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "params", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Variant" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "RegisterCommand": { - "MemberType": "Function", - "Name": "RegisterCommand", - "Parameters": [ - { - "Name": "plugin", - "Type": { - "Category": "Class", - "Name": "Plugin" - } - }, - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "context", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "LocalUser", - "Name": "permission", - "Type": { - "Category": "Enum", - "Name": "CommandPermission" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "CommandInstance" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "CommandService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "CompressorSoundEffect": { - "Members": { - "Attack": { - "Category": "State", - "MemberType": "Property", - "Name": "Attack", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "GainMakeup": { - "Category": "State", - "MemberType": "Property", - "Name": "GainMakeup", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Ratio": { - "Category": "State", - "MemberType": "Property", - "Name": "Ratio", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Release": { - "Category": "State", - "MemberType": "Property", - "Name": "Release", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "SideChain": { - "Category": "State", - "MemberType": "Property", - "Name": "SideChain", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - }, - "Threshold": { - "Category": "State", - "MemberType": "Property", - "Name": "Threshold", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "CompressorSoundEffect", - "Superclass": "SoundEffect" - }, - "ConeHandleAdornment": { - "Members": { - "Height": { - "Category": "Data", - "MemberType": "Property", - "Name": "Height", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Radius": { - "Category": "Data", - "MemberType": "Property", - "Name": "Radius", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "ConeHandleAdornment", - "Superclass": "HandleAdornment" - }, - "Configuration": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "Configuration", - "Superclass": "Instance" - }, - "ConfigureServerService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "ConfigureServerService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "Constraint": { - "Members": { - "Active": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Active", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Attachment0": { - "Category": "Attachments", - "MemberType": "Property", - "Name": "Attachment0", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Attachment" - } - }, - "Attachment1": { - "Category": "Attachments", - "MemberType": "Property", - "Name": "Attachment1", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Attachment" - } - }, - "Color": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BrickColor" - } - }, - "Enabled": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Visible": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Visible", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "Constraint", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "ContentProvider": { - "Members": { - "AssetFetchFailed": { - "MemberType": "Event", - "Name": "AssetFetchFailed", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "DataType", - "Name": "Content" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "BaseUrl": { - "Category": "Data", - "MemberType": "Property", - "Name": "BaseUrl", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "CalculateNumTrianglesInMesh": { - "MemberType": "Function", - "Name": "CalculateNumTrianglesInMesh", - "Parameters": [ - { - "Name": "meshId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "CalculateNumTrianglesInMeshSync": { - "MemberType": "Function", - "Name": "CalculateNumTrianglesInMeshSync", - "Parameters": [ - { - "Name": "meshId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetAssetFetchStatus": { - "MemberType": "Function", - "Name": "GetAssetFetchStatus", - "Parameters": [ - { - "Name": "contentId", - "Type": { - "Category": "DataType", - "Name": "Content" - } - } - ], - "ReturnType": { - "Category": "Enum", - "Name": "AssetFetchStatus" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetAssetFetchStatusChangedSignal": { - "MemberType": "Function", - "Name": "GetAssetFetchStatusChangedSignal", - "Parameters": [ - { - "Name": "contentId", - "Type": { - "Category": "DataType", - "Name": "Content" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "RBXScriptSignal" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetDetailedFailedRequests": { - "MemberType": "Function", - "Name": "GetDetailedFailedRequests", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetFailedRequests": { - "MemberType": "Function", - "Name": "GetFailedRequests", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ListEncryptedAssets": { - "MemberType": "Function", - "Name": "ListEncryptedAssets", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Preload": { - "MemberType": "Function", - "Name": "Preload", - "Parameters": [ - { - "Name": "contentId", - "Type": { - "Category": "DataType", - "Name": "Content" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "PreloadAsync": { - "MemberType": "Function", - "Name": "PreloadAsync", - "Parameters": [ - { - "Name": "contentIdList", - "Type": { - "Category": "Group", - "Name": "Array" - } - }, - { - "Default": "nil", - "Name": "callbackFunction", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "RegisterDefaultEncryptionKey": { - "MemberType": "Function", - "Name": "RegisterDefaultEncryptionKey", - "Parameters": [ - { - "Name": "encryptionKey", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RegisterDefaultSessionKey": { - "MemberType": "Function", - "Name": "RegisterDefaultSessionKey", - "Parameters": [ - { - "Name": "sessionKey", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RegisterEncryptedAsset": { - "MemberType": "Function", - "Name": "RegisterEncryptedAsset", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "DataType", - "Name": "Content" - } - }, - { - "Name": "encryptionKey", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RegisterSessionEncryptedAsset": { - "MemberType": "Function", - "Name": "RegisterSessionEncryptedAsset", - "Parameters": [ - { - "Name": "contentId", - "Type": { - "Category": "DataType", - "Name": "Content" - } - }, - { - "Name": "sessionKey", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RequestQueueSize": { - "Category": "Data", - "MemberType": "Property", - "Name": "RequestQueueSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "SetBaseUrl": { - "MemberType": "Function", - "Name": "SetBaseUrl", - "Parameters": [ - { - "Name": "url", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UnregisterDefaultEncryptionKey": { - "MemberType": "Function", - "Name": "UnregisterDefaultEncryptionKey", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UnregisterEncryptedAsset": { - "MemberType": "Function", - "Name": "UnregisterEncryptedAsset", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "DataType", - "Name": "Content" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "ContentProvider", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "ContextActionService": { - "Members": { - "BindAction": { - "MemberType": "Function", - "Name": "BindAction", - "Parameters": [ - { - "Name": "actionName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "functionToBind", - "Type": { - "Category": "DataType", - "Name": "Function" - } - }, - { - "Name": "createTouchButton", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "inputTypes", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "BindActionAtPriority": { - "MemberType": "Function", - "Name": "BindActionAtPriority", - "Parameters": [ - { - "Name": "actionName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "functionToBind", - "Type": { - "Category": "DataType", - "Name": "Function" - } - }, - { - "Name": "createTouchButton", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "priorityLevel", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "inputTypes", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "BindActionToInputTypes": { - "MemberType": "Function", - "Name": "BindActionToInputTypes", - "Parameters": [ - { - "Name": "actionName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "functionToBind", - "Type": { - "Category": "DataType", - "Name": "Function" - } - }, - { - "Name": "createTouchButton", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "inputTypes", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "BindActivate": { - "MemberType": "Function", - "Name": "BindActivate", - "Parameters": [ - { - "Name": "userInputTypeForActivation", - "Type": { - "Category": "Enum", - "Name": "UserInputType" - } - }, - { - "Name": "keyCodesForActivation", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "BindCoreAction": { - "MemberType": "Function", - "Name": "BindCoreAction", - "Parameters": [ - { - "Name": "actionName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "functionToBind", - "Type": { - "Category": "DataType", - "Name": "Function" - } - }, - { - "Name": "createTouchButton", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "inputTypes", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "BindCoreActionAtPriority": { - "MemberType": "Function", - "Name": "BindCoreActionAtPriority", - "Parameters": [ - { - "Name": "actionName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "functionToBind", - "Type": { - "Category": "DataType", - "Name": "Function" - } - }, - { - "Name": "createTouchButton", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "priorityLevel", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "inputTypes", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "BindCoreActivate": { - "MemberType": "Function", - "Name": "BindCoreActivate", - "Parameters": [ - { - "Name": "userInputTypeForActivation", - "Type": { - "Category": "Enum", - "Name": "UserInputType" - } - }, - { - "Name": "keyCodesForActivation", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "BoundActionAdded": { - "MemberType": "Event", - "Name": "BoundActionAdded", - "Parameters": [ - { - "Name": "actionAdded", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "createTouchButton", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "functionInfoTable", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - }, - { - "Name": "isCore", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "BoundActionChanged": { - "MemberType": "Event", - "Name": "BoundActionChanged", - "Parameters": [ - { - "Name": "actionChanged", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "changeName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "changeTable", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "BoundActionRemoved": { - "MemberType": "Event", - "Name": "BoundActionRemoved", - "Parameters": [ - { - "Name": "actionRemoved", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "functionInfoTable", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - }, - { - "Name": "isCore", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CallFunction": { - "MemberType": "Function", - "Name": "CallFunction", - "Parameters": [ - { - "Name": "actionName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "state", - "Type": { - "Category": "Enum", - "Name": "UserInputState" - } - }, - { - "Name": "inputObject", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "FireActionButtonFoundSignal": { - "MemberType": "Function", - "Name": "FireActionButtonFoundSignal", - "Parameters": [ - { - "Name": "actionName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "actionButton", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetActionButtonEvent": { - "MemberType": "Event", - "Name": "GetActionButtonEvent", - "Parameters": [ - { - "Name": "actionName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetAllBoundActionInfo": { - "MemberType": "Function", - "Name": "GetAllBoundActionInfo", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetAllBoundCoreActionInfo": { - "MemberType": "Function", - "Name": "GetAllBoundCoreActionInfo", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetBoundActionInfo": { - "MemberType": "Function", - "Name": "GetBoundActionInfo", - "Parameters": [ - { - "Name": "actionName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetBoundCoreActionInfo": { - "MemberType": "Function", - "Name": "GetBoundCoreActionInfo", - "Parameters": [ - { - "Name": "actionName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetButton": { - "MemberType": "Function", - "Name": "GetButton", - "Parameters": [ - { - "Name": "actionName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetCurrentLocalToolIcon": { - "MemberType": "Function", - "Name": "GetCurrentLocalToolIcon", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "LocalToolEquipped": { - "MemberType": "Event", - "Name": "LocalToolEquipped", - "Parameters": [ - { - "Name": "toolEquipped", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "LocalToolUnequipped": { - "MemberType": "Event", - "Name": "LocalToolUnequipped", - "Parameters": [ - { - "Name": "toolUnequipped", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetDescription": { - "MemberType": "Function", - "Name": "SetDescription", - "Parameters": [ - { - "Name": "actionName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "description", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetImage": { - "MemberType": "Function", - "Name": "SetImage", - "Parameters": [ - { - "Name": "actionName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "image", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetPosition": { - "MemberType": "Function", - "Name": "SetPosition", - "Parameters": [ - { - "Name": "actionName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "position", - "Type": { - "Category": "DataType", - "Name": "UDim2" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetTitle": { - "MemberType": "Function", - "Name": "SetTitle", - "Parameters": [ - { - "Name": "actionName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "title", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UnbindAction": { - "MemberType": "Function", - "Name": "UnbindAction", - "Parameters": [ - { - "Name": "actionName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UnbindActivate": { - "MemberType": "Function", - "Name": "UnbindActivate", - "Parameters": [ - { - "Name": "userInputTypeForActivation", - "Type": { - "Category": "Enum", - "Name": "UserInputType" - } - }, - { - "Default": "Unknown", - "Name": "keyCodeForActivation", - "Type": { - "Category": "Enum", - "Name": "KeyCode" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UnbindAllActions": { - "MemberType": "Function", - "Name": "UnbindAllActions", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UnbindCoreAction": { - "MemberType": "Function", - "Name": "UnbindCoreAction", - "Parameters": [ - { - "Name": "actionName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UnbindCoreActivate": { - "MemberType": "Function", - "Name": "UnbindCoreActivate", - "Parameters": [ - { - "Name": "userInputTypeForActivation", - "Type": { - "Category": "Enum", - "Name": "UserInputType" - } - }, - { - "Default": "Unknown", - "Name": "keyCodeForActivation", - "Type": { - "Category": "Enum", - "Name": "KeyCode" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "ContextActionService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "Controller": { - "Members": { - "BindButton": { - "MemberType": "Function", - "Name": "BindButton", - "Parameters": [ - { - "Name": "button", - "Type": { - "Category": "Enum", - "Name": "Button" - } - }, - { - "Name": "caption", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ButtonChanged": { - "MemberType": "Event", - "Name": "ButtonChanged", - "Parameters": [ - { - "Name": "button", - "Type": { - "Category": "Enum", - "Name": "Button" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetButton": { - "MemberType": "Function", - "Name": "GetButton", - "Parameters": [ - { - "Name": "button", - "Type": { - "Category": "Enum", - "Name": "Button" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UnbindButton": { - "MemberType": "Function", - "Name": "UnbindButton", - "Parameters": [ - { - "Name": "button", - "Type": { - "Category": "Enum", - "Name": "Button" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "bindButton": { - "MemberType": "Function", - "Name": "bindButton", - "Parameters": [ - { - "Name": "button", - "Type": { - "Category": "Enum", - "Name": "Button" - } - }, - { - "Name": "caption", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "getButton": { - "MemberType": "Function", - "Name": "getButton", - "Parameters": [ - { - "Name": "button", - "Type": { - "Category": "Enum", - "Name": "Button" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "Controller", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "ControllerBase": { - "Members": { - "Active": { - "Category": "Data", - "MemberType": "Property", - "Name": "Active", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "BalanceRigidityEnabled": { - "Category": "Balance", - "MemberType": "Property", - "Name": "BalanceRigidityEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "MoveSpeedFactor": { - "Category": "Movement", - "MemberType": "Property", - "Name": "MoveSpeedFactor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "ControllerBase", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "ControllerManager": { - "Members": { - "ActiveController": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "ActiveController", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "ControllerBase" - } - }, - "BaseMoveSpeed": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "BaseMoveSpeed", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "BaseTurnSpeed": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "BaseTurnSpeed", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ClimbSensor": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "ClimbSensor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "ControllerSensor" - } - }, - "FacingDirection": { - "Category": "Input", - "MemberType": "Property", - "Name": "FacingDirection", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "GroundSensor": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "GroundSensor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "ControllerSensor" - } - }, - "MovingDirection": { - "Category": "Input", - "MemberType": "Property", - "Name": "MovingDirection", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "RootPart": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "RootPart", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "BasePart" - } - } - }, - "MemoryCategory": "Instances", - "Name": "ControllerManager", - "Superclass": "Instance", - "Tags": [ - "NotBrowsable" - ] - }, - "ControllerPartSensor": { - "Members": { - "HitFrame": { - "Category": "Output", - "MemberType": "Property", - "Name": "HitFrame", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "HitNormal": { - "Category": "Output", - "MemberType": "Property", - "Name": "HitNormal", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "SearchDistance": { - "Category": "Input", - "MemberType": "Property", - "Name": "SearchDistance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "SensedPart": { - "Category": "Output", - "MemberType": "Property", - "Name": "SensedPart", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "BasePart" - } - }, - "SensorMode": { - "Category": "Input", - "MemberType": "Property", - "Name": "SensorMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "SensorMode" - } - } - }, - "MemoryCategory": "Instances", - "Name": "ControllerPartSensor", - "Superclass": "ControllerSensor", - "Tags": [ - "NotBrowsable" - ] - }, - "ControllerSensor": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "ControllerSensor", - "Superclass": "SensorBase", - "Tags": [ - "NotCreatable" - ] - }, - "ControllerService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "ControllerService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "CookiesService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "CookiesService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "CoreGui": { - "Members": { - "SelectionImageObject": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "SelectionImageObject", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "GuiObject" - } - }, - "SetUserGuiRendering": { - "MemberType": "Function", - "Name": "SetUserGuiRendering", - "Parameters": [ - { - "Name": "enabled", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "guiAdornee", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "faceId", - "Type": { - "Category": "Enum", - "Name": "NormalId" - } - }, - { - "Default": "0", - "Name": "horizontalCurvature", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TakeScreenshot": { - "MemberType": "Function", - "Name": "TakeScreenshot", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ToggleRecording": { - "MemberType": "Function", - "Name": "ToggleRecording", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UserGuiRenderingChanged": { - "MemberType": "Event", - "Name": "UserGuiRenderingChanged", - "Parameters": [ - { - "Name": "enabled", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "guiAdornee", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "faceId", - "Type": { - "Category": "Enum", - "Name": "NormalId" - } - }, - { - "Name": "horizontalCurvature", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Version": { - "Category": "Data", - "MemberType": "Property", - "Name": "Version", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - } - }, - "MemoryCategory": "Instances", - "Name": "CoreGui", - "Superclass": "BasePlayerGui", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "CorePackages": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "CorePackages", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "CoreScript": { - "Members": {}, - "MemoryCategory": "Script", - "Name": "CoreScript", - "Superclass": "BaseScript", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "CoreScriptDebuggingManagerHelper": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "CoreScriptDebuggingManagerHelper", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "CoreScriptSyncService": { - "Members": { - "GetScriptFilePath": { - "MemberType": "Function", - "Name": "GetScriptFilePath", - "Parameters": [ - { - "Name": "script", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Variant" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "CoreScriptSyncService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "CornerWedgePart": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "CornerWedgePart", - "Superclass": "BasePart" - }, - "CrossDMScriptChangeListener": { - "Members": { - "GuidLineContentsChanged": { - "MemberType": "Event", - "Name": "GuidLineContentsChanged", - "Parameters": [ - { - "Name": "guid", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "lineNumber", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "contents", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GuidNameChanged": { - "MemberType": "Event", - "Name": "GuidNameChanged", - "Parameters": [ - { - "Name": "guid", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "fullName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsWatchingScriptLine": { - "MemberType": "Function", - "Name": "IsWatchingScriptLine", - "Parameters": [ - { - "Name": "scriptRef", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "lineNumber", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StartWatchingScriptLine": { - "MemberType": "Function", - "Name": "StartWatchingScriptLine", - "Parameters": [ - { - "Name": "scriptRef", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "debuggerConnectionId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "lineNumber", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "CrossDMScriptChangeListener", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "CurveAnimation": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "CurveAnimation", - "Superclass": "AnimationClip" - }, - "CustomEvent": { - "Members": { - "GetAttachedReceivers": { - "MemberType": "Function", - "Name": "GetAttachedReceivers", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ReceiverConnected": { - "MemberType": "Event", - "Name": "ReceiverConnected", - "Parameters": [ - { - "Name": "receiver", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ReceiverDisconnected": { - "MemberType": "Event", - "Name": "ReceiverDisconnected", - "Parameters": [ - { - "Name": "receiver", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetValue": { - "MemberType": "Function", - "Name": "SetValue", - "Parameters": [ - { - "Name": "newValue", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "CustomEvent", - "Superclass": "Instance", - "Tags": [ - "Deprecated" - ] - }, - "CustomEventReceiver": { - "Members": { - "EventConnected": { - "MemberType": "Event", - "Name": "EventConnected", - "Parameters": [ - { - "Name": "event", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "EventDisconnected": { - "MemberType": "Event", - "Name": "EventDisconnected", - "Parameters": [ - { - "Name": "event", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetCurrentValue": { - "MemberType": "Function", - "Name": "GetCurrentValue", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "float" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Source": { - "Category": "Data", - "MemberType": "Property", - "Name": "Source", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - }, - "SourceValueChanged": { - "MemberType": "Event", - "Name": "SourceValueChanged", - "Parameters": [ - { - "Name": "newValue", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "CustomEventReceiver", - "Superclass": "Instance", - "Tags": [ - "Deprecated" - ] - }, - "CustomSoundEffect": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "CustomSoundEffect", - "Superclass": "SoundEffect", - "Tags": [ - "NotCreatable" - ] - }, - "CylinderHandleAdornment": { - "Members": { - "Angle": { - "Category": "Data", - "MemberType": "Property", - "Name": "Angle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Height": { - "Category": "Data", - "MemberType": "Property", - "Name": "Height", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "InnerRadius": { - "Category": "Data", - "MemberType": "Property", - "Name": "InnerRadius", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Radius": { - "Category": "Data", - "MemberType": "Property", - "Name": "Radius", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "CylinderHandleAdornment", - "Superclass": "HandleAdornment" - }, - "CylinderMesh": { - "Members": {}, - "MemoryCategory": "PhysicsParts", - "Name": "CylinderMesh", - "Superclass": "BevelMesh", - "Tags": [ - "Deprecated" - ] - }, - "CylindricalConstraint": { - "Members": { - "AngularActuatorType": { - "Category": "Cylinder", - "MemberType": "Property", - "Name": "AngularActuatorType", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ActuatorType" - } - }, - "AngularLimitsEnabled": { - "Category": "Cylinder", - "MemberType": "Property", - "Name": "AngularLimitsEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AngularResponsiveness": { - "Category": "AngularServo", - "MemberType": "Property", - "Name": "AngularResponsiveness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "AngularRestitution": { - "Category": "AngularLimits", - "MemberType": "Property", - "Name": "AngularRestitution", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "AngularSpeed": { - "Category": "AngularServo", - "MemberType": "Property", - "Name": "AngularSpeed", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "AngularVelocity": { - "Category": "AngularMotor", - "MemberType": "Property", - "Name": "AngularVelocity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "CurrentAngle": { - "Category": "Derived", - "MemberType": "Property", - "Name": "CurrentAngle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "InclinationAngle": { - "Category": "Cylinder", - "MemberType": "Property", - "Name": "InclinationAngle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LowerAngle": { - "Category": "AngularLimits", - "MemberType": "Property", - "Name": "LowerAngle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MotorMaxAngularAcceleration": { - "Category": "AngularMotor", - "MemberType": "Property", - "Name": "MotorMaxAngularAcceleration", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MotorMaxTorque": { - "Category": "AngularMotor", - "MemberType": "Property", - "Name": "MotorMaxTorque", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RotationAxisVisible": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "RotationAxisVisible", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ServoMaxTorque": { - "Category": "AngularServo", - "MemberType": "Property", - "Name": "ServoMaxTorque", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TargetAngle": { - "Category": "AngularServo", - "MemberType": "Property", - "Name": "TargetAngle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "UpperAngle": { - "Category": "AngularLimits", - "MemberType": "Property", - "Name": "UpperAngle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "WorldRotationAxis": { - "Category": "Derived", - "MemberType": "Property", - "Name": "WorldRotationAxis", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "CylindricalConstraint", - "Superclass": "SlidingBallConstraint" - }, - "DataModel": { - "Members": { - "AllowedGearTypeChanged": { - "MemberType": "Event", - "Name": "AllowedGearTypeChanged", - "Parameters": {}, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "BindToClose": { - "MemberType": "Function", - "Name": "BindToClose", - "Parameters": [ - { - "Name": "function", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CreatorId": { - "Category": "State", - "MemberType": "Property", - "Name": "CreatorId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "CreatorType": { - "Category": "State", - "MemberType": "Property", - "Name": "CreatorType", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "CreatorType" - } - }, - "DefineFastFlag": { - "MemberType": "Function", - "Name": "DefineFastFlag", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "defaultValue", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DefineFastInt": { - "MemberType": "Function", - "Name": "DefineFastInt", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "defaultValue", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DefineFastString": { - "MemberType": "Function", - "Name": "DefineFastString", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "defaultValue", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GameId": { - "Category": "State", - "MemberType": "Property", - "Name": "GameId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "GearGenreSetting": { - "Category": "State", - "MemberType": "Property", - "Name": "GearGenreSetting", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "GearGenreSetting" - } - }, - "Genre": { - "Category": "State", - "MemberType": "Property", - "Name": "Genre", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "Genre" - } - }, - "GetEngineFeature": { - "MemberType": "Function", - "Name": "GetEngineFeature", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetFastFlag": { - "MemberType": "Function", - "Name": "GetFastFlag", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetFastInt": { - "MemberType": "Function", - "Name": "GetFastInt", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetFastString": { - "MemberType": "Function", - "Name": "GetFastString", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetJobsInfo": { - "MemberType": "Function", - "Name": "GetJobsInfo", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetMessage": { - "MemberType": "Function", - "Name": "GetMessage", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetObjects": { - "MemberType": "Function", - "Name": "GetObjects", - "Parameters": [ - { - "Name": "url", - "Type": { - "Category": "DataType", - "Name": "Content" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetObjectsAllOrNone": { - "MemberType": "Function", - "Name": "GetObjectsAllOrNone", - "Parameters": [ - { - "Name": "url", - "Type": { - "Category": "DataType", - "Name": "Content" - } - }, - { - "Default": "false", - "Name": "binaryFormatOnly", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetObjectsAsync": { - "MemberType": "Function", - "Name": "GetObjectsAsync", - "Parameters": [ - { - "Name": "url", - "Type": { - "Category": "DataType", - "Name": "Content" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetObjectsList": { - "MemberType": "Function", - "Name": "GetObjectsList", - "Parameters": [ - { - "Name": "urls", - "Type": { - "Category": "Group", - "Name": "Array" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetPlaySessionId": { - "MemberType": "Function", - "Name": "GetPlaySessionId", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetRemoteBuildMode": { - "MemberType": "Function", - "Name": "GetRemoteBuildMode", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GraphicsQualityChangeRequest": { - "MemberType": "Event", - "Name": "GraphicsQualityChangeRequest", - "Parameters": [ - { - "Name": "betterQuality", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "HttpGetAsync": { - "MemberType": "Function", - "Name": "HttpGetAsync", - "Parameters": [ - { - "Name": "url", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "Default", - "Name": "httpRequestType", - "Type": { - "Category": "Enum", - "Name": "HttpRequestType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "HttpPostAsync": { - "MemberType": "Function", - "Name": "HttpPostAsync", - "Parameters": [ - { - "Name": "url", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "data", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "*/*", - "Name": "contentType", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "Default", - "Name": "httpRequestType", - "Type": { - "Category": "Enum", - "Name": "HttpRequestType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "InsertObjectsAndJoinIfLegacyAsync": { - "MemberType": "Function", - "Name": "InsertObjectsAndJoinIfLegacyAsync", - "Parameters": [ - { - "Name": "url", - "Type": { - "Category": "DataType", - "Name": "Content" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "IsContentLoaded": { - "MemberType": "Function", - "Name": "IsContentLoaded", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsGearTypeAllowed": { - "MemberType": "Function", - "Name": "IsGearTypeAllowed", - "Parameters": [ - { - "Name": "gearType", - "Type": { - "Category": "Enum", - "Name": "GearType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "IsLoaded": { - "MemberType": "Function", - "Name": "IsLoaded", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsSFFlagsLoaded": { - "Category": "Data", - "MemberType": "Property", - "Name": "IsSFFlagsLoaded", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "IsUniverseMetadataLoaded": { - "MemberType": "Function", - "Name": "IsUniverseMetadataLoaded", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ItemChanged": { - "MemberType": "Event", - "Name": "ItemChanged", - "Parameters": [ - { - "Name": "object", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "descriptor", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "JobId": { - "Category": "JobInfo", - "MemberType": "Property", - "Name": "JobId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Load": { - "MemberType": "Function", - "Name": "Load", - "Parameters": [ - { - "Name": "url", - "Type": { - "Category": "DataType", - "Name": "Content" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Loaded": { - "MemberType": "Event", - "Name": "Loaded", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnClose": { - "MemberType": "Callback", - "Name": "OnClose", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "OpenScreenshotsFolder": { - "MemberType": "Function", - "Name": "OpenScreenshotsFolder", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OpenVideosFolder": { - "MemberType": "Function", - "Name": "OpenVideosFolder", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PlaceId": { - "Category": "State", - "MemberType": "Property", - "Name": "PlaceId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "PlaceVersion": { - "Category": "State", - "MemberType": "Property", - "Name": "PlaceVersion", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "PrivateServerId": { - "Category": "Data", - "MemberType": "Property", - "Name": "PrivateServerId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "PrivateServerOwnerId": { - "Category": "Data", - "MemberType": "Property", - "Name": "PrivateServerOwnerId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "ReportInGoogleAnalytics": { - "MemberType": "Function", - "Name": "ReportInGoogleAnalytics", - "Parameters": [ - { - "Name": "category", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "custom", - "Name": "action", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "none", - "Name": "label", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "0", - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SavePlace": { - "MemberType": "Function", - "Name": "SavePlace", - "Parameters": [ - { - "Default": "SaveAll", - "Name": "saveFilter", - "Type": { - "Category": "Enum", - "Name": "SaveFilter" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true, - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ScreenshotReady": { - "MemberType": "Event", - "Name": "ScreenshotReady", - "Parameters": [ - { - "Name": "path", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ScreenshotSavedToAlbum": { - "MemberType": "Event", - "Name": "ScreenshotSavedToAlbum", - "Parameters": [ - { - "Name": "filename", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "success", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "message", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetFastFlagForTesting": { - "MemberType": "Function", - "Name": "SetFastFlagForTesting", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "newValue", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetFastIntForTesting": { - "MemberType": "Function", - "Name": "SetFastIntForTesting", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "newValue", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetFastStringForTesting": { - "MemberType": "Function", - "Name": "SetFastStringForTesting", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "newValue", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetFlagVersion": { - "MemberType": "Function", - "Name": "SetFlagVersion", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "version", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetIsLoaded": { - "MemberType": "Function", - "Name": "SetIsLoaded", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "placeSizeInBytes", - "Type": { - "Category": "Primitive", - "Name": "int?" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetPlaceId": { - "MemberType": "Function", - "Name": "SetPlaceId", - "Parameters": [ - { - "Name": "placeId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetUniverseId": { - "MemberType": "Function", - "Name": "SetUniverseId", - "Parameters": [ - { - "Name": "universeId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Shutdown": { - "MemberType": "Function", - "Name": "Shutdown", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UniverseMetadataLoaded": { - "MemberType": "Event", - "Name": "UniverseMetadataLoaded", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "VIPServerId": { - "Category": "Data", - "MemberType": "Property", - "Name": "VIPServerId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "VIPServerOwnerId": { - "Category": "Data", - "MemberType": "Property", - "Name": "VIPServerOwnerId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "Workspace": { - "Category": "Data", - "MemberType": "Property", - "Name": "Workspace", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Workspace" - } - }, - "lighting": { - "Category": "Data", - "MemberType": "Property", - "Name": "lighting", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - }, - "workspace": { - "Category": "Data", - "MemberType": "Property", - "Name": "workspace", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Workspace" - } - } - }, - "MemoryCategory": "Instances", - "Name": "DataModel", - "Superclass": "ServiceProvider", - "Tags": [ - "NotCreatable" - ] - }, - "DataModelMesh": { - "Members": { - "Offset": { - "Category": "Data", - "MemberType": "Property", - "Name": "Offset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "Scale": { - "Category": "Data", - "MemberType": "Property", - "Name": "Scale", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "VertexColor": { - "Category": "Data", - "MemberType": "Property", - "Name": "VertexColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - } - }, - "MemoryCategory": "Instances", - "Name": "DataModelMesh", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotBrowsable" - ] - }, - "DataModelPatchService": { - "Members": { - "GetPatch": { - "MemberType": "Function", - "Name": "GetPatch", - "Parameters": [ - { - "Name": "patchName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RegisterPatch": { - "MemberType": "Function", - "Name": "RegisterPatch", - "Parameters": [ - { - "Name": "patchName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "behaviorName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "localConfigPath", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UpdatePatch": { - "MemberType": "Function", - "Name": "UpdatePatch", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "patchName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "callbackFunction", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "DataModelPatchService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "DataModelSession": { - "Members": { - "CurrentDataModelType": { - "Category": "Data", - "MemberType": "Property", - "Name": "CurrentDataModelType", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "StudioDataModelType" - } - }, - "CurrentDataModelTypeAboutToChange": { - "MemberType": "Event", - "Name": "CurrentDataModelTypeAboutToChange", - "Parameters": [ - { - "Name": "dataModelType", - "Type": { - "Category": "Enum", - "Name": "StudioDataModelType" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CurrentDataModelTypeChanged": { - "MemberType": "Event", - "Name": "CurrentDataModelTypeChanged", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DataModelCreated": { - "MemberType": "Event", - "Name": "DataModelCreated", - "Parameters": [ - { - "Name": "gameStateType", - "Type": { - "Category": "Enum", - "Name": "StudioDataModelType" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DataModelWillBeDestroyed": { - "MemberType": "Event", - "Name": "DataModelWillBeDestroyed", - "Parameters": [ - { - "Name": "gameStateType", - "Type": { - "Category": "Enum", - "Name": "StudioDataModelType" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SessionId": { - "Category": "Data", - "MemberType": "Property", - "Name": "SessionId", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "DataModelSession", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "DataStore": { - "Members": { - "GetVersionAsync": { - "MemberType": "Function", - "Name": "GetVersionAsync", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "version", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ListKeysAsync": { - "MemberType": "Function", - "Name": "ListKeysAsync", - "Parameters": [ - { - "Default": "", - "Name": "prefix", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "0", - "Name": "pageSize", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Default": "", - "Name": "cursor", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "false", - "Name": "excludeDeleted", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "DataStoreKeyPages" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ListVersionsAsync": { - "MemberType": "Function", - "Name": "ListVersionsAsync", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "Ascending", - "Name": "sortDirection", - "Type": { - "Category": "Enum", - "Name": "SortDirection" - } - }, - { - "Default": "0", - "Name": "minDate", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Default": "0", - "Name": "maxDate", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Default": "0", - "Name": "pageSize", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "DataStoreVersionPages" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "RemoveVersionAsync": { - "MemberType": "Function", - "Name": "RemoveVersionAsync", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "version", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "DataStore", - "Superclass": "GlobalDataStore", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "DataStoreIncrementOptions": { - "Members": { - "GetMetadata": { - "MemberType": "Function", - "Name": "GetMetadata", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetMetadata": { - "MemberType": "Function", - "Name": "SetMetadata", - "Parameters": [ - { - "Name": "attributes", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "DataStoreIncrementOptions", - "Superclass": "Instance", - "Tags": [ - "NotReplicated" - ] - }, - "DataStoreInfo": { - "Members": { - "CreatedTime": { - "Category": "Data", - "MemberType": "Property", - "Name": "CreatedTime", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "DataStoreName": { - "Category": "Data", - "MemberType": "Property", - "Name": "DataStoreName", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "UpdatedTime": { - "Category": "Data", - "MemberType": "Property", - "Name": "UpdatedTime", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - } - }, - "MemoryCategory": "Instances", - "Name": "DataStoreInfo", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "DataStoreKey": { - "Members": { - "KeyName": { - "Category": "Data", - "MemberType": "Property", - "Name": "KeyName", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "DataStoreKey", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "DataStoreKeyInfo": { - "Members": { - "CreatedTime": { - "Category": "Data", - "MemberType": "Property", - "Name": "CreatedTime", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "GetMetadata": { - "MemberType": "Function", - "Name": "GetMetadata", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetUserIds": { - "MemberType": "Function", - "Name": "GetUserIds", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UpdatedTime": { - "Category": "Data", - "MemberType": "Property", - "Name": "UpdatedTime", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "Version": { - "Category": "Data", - "MemberType": "Property", - "Name": "Version", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "DataStoreKeyInfo", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "DataStoreKeyPages": { - "Members": { - "Cursor": { - "Category": "Data", - "MemberType": "Property", - "Name": "Cursor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "DataStoreKeyPages", - "Superclass": "Pages", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "DataStoreListingPages": { - "Members": { - "Cursor": { - "Category": "Data", - "MemberType": "Property", - "Name": "Cursor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "DataStoreListingPages", - "Superclass": "Pages", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "DataStoreObjectVersionInfo": { - "Members": { - "CreatedTime": { - "Category": "Data", - "MemberType": "Property", - "Name": "CreatedTime", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "IsDeleted": { - "Category": "Data", - "MemberType": "Property", - "Name": "IsDeleted", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Version": { - "Category": "Data", - "MemberType": "Property", - "Name": "Version", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "DataStoreObjectVersionInfo", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "DataStoreOptions": { - "Members": { - "AllScopes": { - "Category": "Data", - "MemberType": "Property", - "Name": "AllScopes", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "SetExperimentalFeatures": { - "MemberType": "Function", - "Name": "SetExperimentalFeatures", - "Parameters": [ - { - "Name": "experimentalFeatures", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "DataStoreOptions", - "Superclass": "Instance", - "Tags": [ - "NotReplicated" - ] - }, - "DataStorePages": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "DataStorePages", - "Superclass": "Pages", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "DataStoreService": { - "Members": { - "AutomaticRetry": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "AutomaticRetry", - "Security": { - "Read": "LocalUserSecurity", - "Write": "LocalUserSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "GetDataStore": { - "MemberType": "Function", - "Name": "GetDataStore", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "global", - "Name": "scope", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "nil", - "Name": "options", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "GlobalDataStore" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetGlobalDataStore": { - "MemberType": "Function", - "Name": "GetGlobalDataStore", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "GlobalDataStore" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetOrderedDataStore": { - "MemberType": "Function", - "Name": "GetOrderedDataStore", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "global", - "Name": "scope", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "OrderedDataStore" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetRequestBudgetForRequestType": { - "MemberType": "Function", - "Name": "GetRequestBudgetForRequestType", - "Parameters": [ - { - "Name": "requestType", - "Type": { - "Category": "Enum", - "Name": "DataStoreRequestType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "LegacyNamingScheme": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "LegacyNamingScheme", - "Security": { - "Read": "LocalUserSecurity", - "Write": "LocalUserSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ListDataStoresAsync": { - "MemberType": "Function", - "Name": "ListDataStoresAsync", - "Parameters": [ - { - "Default": "", - "Name": "prefix", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "0", - "Name": "pageSize", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Default": "", - "Name": "cursor", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "DataStoreListingPages" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "DataStoreService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "DataStoreSetOptions": { - "Members": { - "GetMetadata": { - "MemberType": "Function", - "Name": "GetMetadata", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetMetadata": { - "MemberType": "Function", - "Name": "SetMetadata", - "Parameters": [ - { - "Name": "attributes", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "DataStoreSetOptions", - "Superclass": "Instance", - "Tags": [ - "NotReplicated" - ] - }, - "DataStoreVersionPages": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "DataStoreVersionPages", - "Superclass": "Pages", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "Debris": { - "Members": { - "AddItem": { - "MemberType": "Function", - "Name": "AddItem", - "Parameters": [ - { - "Name": "item", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Default": "10", - "Name": "lifetime", - "Type": { - "Category": "Primitive", - "Name": "double" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MaxItems": { - "Category": "Data", - "MemberType": "Property", - "Name": "MaxItems", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "SetLegacyMaxItems": { - "MemberType": "Function", - "Name": "SetLegacyMaxItems", - "Parameters": [ - { - "Name": "enabled", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "addItem": { - "MemberType": "Function", - "Name": "addItem", - "Parameters": [ - { - "Name": "item", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Default": "10", - "Name": "lifetime", - "Type": { - "Category": "Primitive", - "Name": "double" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "Debris", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "DebugSettings": { - "Members": { - "DataModel": { - "Category": "Performance", - "MemberType": "Property", - "Name": "DataModel", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "InstanceCount": { - "Category": "Performance", - "MemberType": "Property", - "Name": "InstanceCount", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "IsScriptStackTracingEnabled": { - "Category": "Errors", - "MemberType": "Property", - "Name": "IsScriptStackTracingEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "JobCount": { - "Category": "Performance", - "MemberType": "Property", - "Name": "JobCount", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "PlayerCount": { - "Category": "Performance", - "MemberType": "Property", - "Name": "PlayerCount", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "ReportSoundWarnings": { - "Category": "Errors", - "MemberType": "Property", - "Name": "ReportSoundWarnings", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "RobloxVersion": { - "Category": "Profile", - "MemberType": "Property", - "Name": "RobloxVersion", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "TickCountPreciseOverride": { - "Category": "Benchmarking", - "MemberType": "Property", - "Name": "TickCountPreciseOverride", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TickCountSampleMethod" - } - } - }, - "MemoryCategory": "Instances", - "Name": "DebugSettings", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Settings", - "NotBrowsable" - ] - }, - "DebuggablePluginWatcher": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "DebuggablePluginWatcher", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "DebuggerBreakpoint": { - "Members": { - "Condition": { - "Category": "Data", - "MemberType": "Property", - "Name": "Condition", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "ContinueExecution": { - "Category": "Data", - "MemberType": "Property", - "Name": "ContinueExecution", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "IsEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "IsEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Line": { - "Category": "Data", - "MemberType": "Property", - "Name": "Line", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "LogExpression": { - "Category": "Data", - "MemberType": "Property", - "Name": "LogExpression", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "isContextDependentBreakpoint": { - "Category": "Data", - "MemberType": "Property", - "Name": "isContextDependentBreakpoint", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "DebuggerBreakpoint", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "DebuggerConnection": { - "Members": { - "AddBreakpoint": { - "MemberType": "Function", - "Name": "AddBreakpoint", - "Parameters": [ - { - "Name": "script", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "line", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "breakpoint", - "Type": { - "Category": "Class", - "Name": "Breakpoint" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "BreakpointAdded": { - "MemberType": "Event", - "Name": "BreakpointAdded", - "Parameters": [ - { - "Name": "breakpoint", - "Type": { - "Category": "Class", - "Name": "Breakpoint" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "BreakpointChanged": { - "MemberType": "Event", - "Name": "BreakpointChanged", - "Parameters": [ - { - "Name": "breakpoint", - "Type": { - "Category": "Class", - "Name": "Breakpoint" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "BreakpointRemoved": { - "MemberType": "Event", - "Name": "BreakpointRemoved", - "Parameters": [ - { - "Name": "breakpoint", - "Type": { - "Category": "Class", - "Name": "Breakpoint" - } - }, - { - "Name": "reason", - "Type": { - "Category": "Enum", - "Name": "BreakpointRemoveReason" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Close": { - "MemberType": "Function", - "Name": "Close", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ErrorMessage": { - "Category": "Data", - "MemberType": "Property", - "Name": "ErrorMessage", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "EvaluateWatch": { - "MemberType": "Function", - "Name": "EvaluateWatch", - "Parameters": [ - { - "Name": "expression", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "frame", - "Type": { - "Category": "Class", - "Name": "StackFrame" - } - }, - { - "Name": "callback", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetFrameById": { - "MemberType": "Function", - "Name": "GetFrameById", - "Parameters": [ - { - "Name": "id", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "StackFrame" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetSource": { - "MemberType": "Function", - "Name": "GetSource", - "Parameters": [ - { - "Name": "scriptRef", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "status", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetThreadById": { - "MemberType": "Function", - "Name": "GetThreadById", - "Parameters": [ - { - "Name": "id", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "ThreadState" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetThreads": { - "MemberType": "Function", - "Name": "GetThreads", - "Parameters": [ - { - "Name": "callback", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetVariableById": { - "MemberType": "Function", - "Name": "GetVariableById", - "Parameters": [ - { - "Name": "id", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "DebuggerVariable" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "HasError": { - "Category": "State", - "MemberType": "Property", - "Name": "HasError", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Id": { - "Category": "Data", - "MemberType": "Property", - "Name": "Id", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "IsPaused": { - "Category": "State", - "MemberType": "Property", - "Name": "IsPaused", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Pause": { - "MemberType": "Function", - "Name": "Pause", - "Parameters": [ - { - "Name": "thread", - "Type": { - "Category": "Class", - "Name": "ThreadState" - } - }, - { - "Name": "status", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Paused": { - "MemberType": "Event", - "Name": "Paused", - "Parameters": [ - { - "Name": "pausedState", - "Type": { - "Category": "Class", - "Name": "PausedState" - } - }, - { - "Name": "reason", - "Type": { - "Category": "Enum", - "Name": "DebuggerPauseReason" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Populate": { - "MemberType": "Function", - "Name": "Populate", - "Parameters": [ - { - "Name": "instance", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "callback", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RemoveBreakpoint": { - "MemberType": "Function", - "Name": "RemoveBreakpoint", - "Parameters": [ - { - "Name": "breakpoint", - "Type": { - "Category": "Class", - "Name": "Breakpoint" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Resume": { - "MemberType": "Function", - "Name": "Resume", - "Parameters": [ - { - "Name": "thread", - "Type": { - "Category": "Class", - "Name": "ThreadState" - } - }, - { - "Name": "status", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Resumed": { - "MemberType": "Event", - "Name": "Resumed", - "Parameters": [ - { - "Name": "pausedState", - "Type": { - "Category": "Class", - "Name": "PausedState" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetExceptionBreakMode": { - "MemberType": "Function", - "Name": "SetExceptionBreakMode", - "Parameters": [ - { - "Name": "breakMode", - "Type": { - "Category": "Enum", - "Name": "DebuggerExceptionBreakMode" - } - }, - { - "Name": "callback", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetVariable": { - "MemberType": "Function", - "Name": "SetVariable", - "Parameters": [ - { - "Name": "variable", - "Type": { - "Category": "Class", - "Name": "DebuggerVariable" - } - }, - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "callback", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Step": { - "MemberType": "Function", - "Name": "Step", - "Parameters": [ - { - "Name": "thread", - "Type": { - "Category": "Class", - "Name": "ThreadState" - } - }, - { - "Name": "callback", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StepIn": { - "MemberType": "Function", - "Name": "StepIn", - "Parameters": [ - { - "Name": "thread", - "Type": { - "Category": "Class", - "Name": "ThreadState" - } - }, - { - "Name": "callback", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StepOut": { - "MemberType": "Function", - "Name": "StepOut", - "Parameters": [ - { - "Name": "thread", - "Type": { - "Category": "Class", - "Name": "ThreadState" - } - }, - { - "Name": "callback", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UpdateSelectedFrame": { - "MemberType": "Function", - "Name": "UpdateSelectedFrame", - "Parameters": [ - { - "Name": "threadId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "frameNumber", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "DebuggerConnection", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "DebuggerConnectionManager": { - "Members": { - "ConnectLocal": { - "MemberType": "Function", - "Name": "ConnectLocal", - "Parameters": [ - { - "Name": "dataModel", - "Type": { - "Category": "Class", - "Name": "DataModel" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ConnectRemote": { - "MemberType": "Function", - "Name": "ConnectRemote", - "Parameters": [ - { - "Name": "host", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "port", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ConnectionEnded": { - "MemberType": "Event", - "Name": "ConnectionEnded", - "Parameters": [ - { - "Name": "connection", - "Type": { - "Category": "Class", - "Name": "DebuggerConnection" - } - }, - { - "Name": "reason", - "Type": { - "Category": "Enum", - "Name": "DebuggerEndReason" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ConnectionStarted": { - "MemberType": "Event", - "Name": "ConnectionStarted", - "Parameters": [ - { - "Name": "connection", - "Type": { - "Category": "Class", - "Name": "DebuggerConnection" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "FocusChanged": { - "MemberType": "Event", - "Name": "FocusChanged", - "Parameters": [ - { - "Name": "connection", - "Type": { - "Category": "Class", - "Name": "DebuggerConnection" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "FocusConnection": { - "MemberType": "Function", - "Name": "FocusConnection", - "Parameters": [ - { - "Name": "connection", - "Type": { - "Category": "Class", - "Name": "DebuggerConnection" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetConnectionById": { - "MemberType": "Function", - "Name": "GetConnectionById", - "Parameters": [ - { - "Name": "id", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "DebuggerConnection" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Timeout": { - "Category": "Data", - "MemberType": "Property", - "Name": "Timeout", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - } - }, - "MemoryCategory": "Instances", - "Name": "DebuggerConnectionManager", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "DebuggerLuaResponse": { - "Members": { - "GetArg": { - "MemberType": "Function", - "Name": "GetArg", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Variant" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsError": { - "Category": "State", - "MemberType": "Property", - "Name": "IsError", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "IsSuccess": { - "Category": "State", - "MemberType": "Property", - "Name": "IsSuccess", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Message": { - "Category": "Data", - "MemberType": "Property", - "Name": "Message", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "RequestId": { - "Category": "Data", - "MemberType": "Property", - "Name": "RequestId", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "Status": { - "Category": "State", - "MemberType": "Property", - "Name": "Status", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "DebuggerStatus" - } - } - }, - "MemoryCategory": "Instances", - "Name": "DebuggerLuaResponse", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "DebuggerManager": { - "Members": { - "AddDebugger": { - "MemberType": "Function", - "Name": "AddDebugger", - "Parameters": [ - { - "Name": "script", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DebuggerAdded": { - "MemberType": "Event", - "Name": "DebuggerAdded", - "Parameters": [ - { - "Name": "debugger", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DebuggerRemoved": { - "MemberType": "Event", - "Name": "DebuggerRemoved", - "Parameters": [ - { - "Name": "debugger", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DebuggingEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "DebuggingEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "EnableDebugging": { - "MemberType": "Function", - "Name": "EnableDebugging", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetDebuggers": { - "MemberType": "Function", - "Name": "GetDebuggers", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Resume": { - "MemberType": "Function", - "Name": "Resume", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StepIn": { - "MemberType": "Function", - "Name": "StepIn", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "StepOut": { - "MemberType": "Function", - "Name": "StepOut", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "StepOver": { - "MemberType": "Function", - "Name": "StepOver", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "DebuggerManager", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "DebuggerUIService": { - "Members": { - "EditBreakpoint": { - "MemberType": "Function", - "Name": "EditBreakpoint", - "Parameters": [ - { - "Name": "metaBreakpointId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "EditWatch": { - "MemberType": "Function", - "Name": "EditWatch", - "Parameters": [ - { - "Name": "expression", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ExpressionAdded": { - "MemberType": "Event", - "Name": "ExpressionAdded", - "Parameters": [ - { - "Name": "expression", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ExpressionsCleared": { - "MemberType": "Event", - "Name": "ExpressionsCleared", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsConnectionForPlayDataModel": { - "MemberType": "Function", - "Name": "IsConnectionForPlayDataModel", - "Parameters": [ - { - "Name": "debuggerConnectionId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OpenExceptionMessagePopup": { - "MemberType": "Function", - "Name": "OpenExceptionMessagePopup", - "Parameters": [ - { - "Name": "exceptionMessage", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "pausedLine", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OpenScriptAtLine": { - "MemberType": "Function", - "Name": "OpenScriptAtLine", - "Parameters": [ - { - "Name": "guid", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "debuggerConnectionId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "line", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "showErrorOnFail", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Pause": { - "MemberType": "Function", - "Name": "Pause", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RemoveScriptLineMarkers": { - "MemberType": "Function", - "Name": "RemoveScriptLineMarkers", - "Parameters": [ - { - "Name": "debuggerConnectionId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "allMarkers", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Resume": { - "MemberType": "Function", - "Name": "Resume", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetCurrentThreadId": { - "MemberType": "Function", - "Name": "SetCurrentThreadId", - "Parameters": [ - { - "Name": "debuggerThreadId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetScriptLineMarker": { - "MemberType": "Function", - "Name": "SetScriptLineMarker", - "Parameters": [ - { - "Name": "guid", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "debuggerConnectionId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "line", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "lineMarkerType", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetWatchExpressions": { - "MemberType": "Function", - "Name": "SetWatchExpressions", - "Parameters": [ - { - "Name": "expressions", - "Type": { - "Category": "Group", - "Name": "Array" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "DebuggerUIService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "DebuggerVariable": { - "Members": { - "GetVariableByIndex": { - "MemberType": "Function", - "Name": "GetVariableByIndex", - "Parameters": [ - { - "Name": "index", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "DebuggerVariable" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetVariableByName": { - "MemberType": "Function", - "Name": "GetVariableByName", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "DebuggerVariable" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Name": { - "Category": "Data", - "MemberType": "Property", - "Name": "Name", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Populated": { - "Category": "State", - "MemberType": "Property", - "Name": "Populated", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Type": { - "Category": "Data", - "MemberType": "Property", - "Name": "Type", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Value": { - "Category": "Data", - "MemberType": "Property", - "Name": "Value", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "VariableId": { - "Category": "Data", - "MemberType": "Property", - "Name": "VariableId", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "VariablesCount": { - "Category": "Data", - "MemberType": "Property", - "Name": "VariablesCount", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - } - }, - "MemoryCategory": "Instances", - "Name": "DebuggerVariable", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "DebuggerWatch": { - "Members": { - "Expression": { - "Category": "Data", - "MemberType": "Property", - "Name": "Expression", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "DebuggerWatch", - "Superclass": "Instance" - }, - "Decal": { - "Members": { - "Color3": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Color3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "LocalTransparencyModifier": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "LocalTransparencyModifier", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Shiny": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Shiny", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Specular": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Specular", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Texture": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Texture", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "Transparency": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Transparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ZIndex": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "ZIndex", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - } - }, - "MemoryCategory": "GraphicsTexture", - "Name": "Decal", - "Superclass": "FaceInstance" - }, - "DepthOfFieldEffect": { - "Members": { - "FarIntensity": { - "Category": "State", - "MemberType": "Property", - "Name": "FarIntensity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "FocusDistance": { - "Category": "State", - "MemberType": "Property", - "Name": "FocusDistance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "InFocusRadius": { - "Category": "State", - "MemberType": "Property", - "Name": "InFocusRadius", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "NearIntensity": { - "Category": "State", - "MemberType": "Property", - "Name": "NearIntensity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "DepthOfFieldEffect", - "Superclass": "PostEffect" - }, - "DeviceIdService": { - "Members": { - "GetDeviceId": { - "MemberType": "Function", - "Name": "GetDeviceId", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "DeviceIdService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "Dialog": { - "Members": { - "BehaviorType": { - "Category": "Data", - "MemberType": "Property", - "Name": "BehaviorType", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "DialogBehaviorType" - } - }, - "ConversationDistance": { - "Category": "Data", - "MemberType": "Property", - "Name": "ConversationDistance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "DialogChoiceSelected": { - "MemberType": "Event", - "Name": "DialogChoiceSelected", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "dialogChoice", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetCurrentPlayers": { - "MemberType": "Function", - "Name": "GetCurrentPlayers", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GoodbyeChoiceActive": { - "Category": "Data", - "MemberType": "Property", - "Name": "GoodbyeChoiceActive", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "GoodbyeDialog": { - "Category": "Data", - "MemberType": "Property", - "Name": "GoodbyeDialog", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "InUse": { - "Category": "Data", - "MemberType": "Property", - "Name": "InUse", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "InitialPrompt": { - "Category": "Data", - "MemberType": "Property", - "Name": "InitialPrompt", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Purpose": { - "Category": "Data", - "MemberType": "Property", - "Name": "Purpose", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "DialogPurpose" - } - }, - "SetPlayerIsUsing": { - "MemberType": "Function", - "Name": "SetPlayerIsUsing", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "isUsing", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SignalDialogChoiceSelected": { - "MemberType": "Function", - "Name": "SignalDialogChoiceSelected", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "dialogChoice", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Tone": { - "Category": "Data", - "MemberType": "Property", - "Name": "Tone", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "DialogTone" - } - }, - "TriggerDistance": { - "Category": "Data", - "MemberType": "Property", - "Name": "TriggerDistance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TriggerOffset": { - "Category": "Data", - "MemberType": "Property", - "Name": "TriggerOffset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Dialog", - "Superclass": "Instance" - }, - "DialogChoice": { - "Members": { - "GoodbyeChoiceActive": { - "Category": "Data", - "MemberType": "Property", - "Name": "GoodbyeChoiceActive", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "GoodbyeDialog": { - "Category": "Data", - "MemberType": "Property", - "Name": "GoodbyeDialog", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "ResponseDialog": { - "Category": "Data", - "MemberType": "Property", - "Name": "ResponseDialog", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "UserDialog": { - "Category": "Data", - "MemberType": "Property", - "Name": "UserDialog", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "DialogChoice", - "Superclass": "Instance" - }, - "DistortionSoundEffect": { - "Members": { - "Level": { - "Category": "State", - "MemberType": "Property", - "Name": "Level", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "DistortionSoundEffect", - "Superclass": "SoundEffect" - }, - "DockWidgetPluginGui": { - "Members": { - "HostWidgetWasRestored": { - "Category": "Data", - "MemberType": "Property", - "Name": "HostWidgetWasRestored", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "RequestRaise": { - "MemberType": "Function", - "Name": "RequestRaise", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "DockWidgetPluginGui", - "Superclass": "PluginGui", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "DoubleConstrainedValue": { - "Members": { - "Changed": { - "MemberType": "Event", - "Name": "Changed", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "double" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ConstrainedValue": { - "Category": "Data", - "MemberType": "Property", - "Name": "ConstrainedValue", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "MaxValue": { - "Category": "Data", - "MemberType": "Property", - "Name": "MaxValue", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "MinValue": { - "Category": "Data", - "MemberType": "Property", - "Name": "MinValue", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "Value": { - "Category": "Data", - "MemberType": "Property", - "Name": "Value", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "changed": { - "MemberType": "Event", - "Name": "changed", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "double" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "DoubleConstrainedValue", - "Superclass": "ValueBase", - "Tags": [ - "Deprecated" - ] - }, - "DraftsService": { - "Members": { - "CommitEdits": { - "MemberType": "Function", - "Name": "CommitEdits", - "Parameters": [ - { - "Name": "scripts", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "CommitStatusChanged": { - "MemberType": "Event", - "Name": "CommitStatusChanged", - "Parameters": [ - { - "Name": "script", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "status", - "Type": { - "Category": "Enum", - "Name": "DraftStatusCode" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DiscardEdits": { - "MemberType": "Function", - "Name": "DiscardEdits", - "Parameters": [ - { - "Name": "scripts", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DraftAdded": { - "MemberType": "Event", - "Name": "DraftAdded", - "Parameters": [ - { - "Name": "script", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DraftRemoved": { - "MemberType": "Event", - "Name": "DraftRemoved", - "Parameters": [ - { - "Name": "script", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DraftStatusChanged": { - "MemberType": "Event", - "Name": "DraftStatusChanged", - "Parameters": [ - { - "Name": "script", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "EditorsListChanged": { - "MemberType": "Event", - "Name": "EditorsListChanged", - "Parameters": [ - { - "Name": "script", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetDraftStatus": { - "MemberType": "Function", - "Name": "GetDraftStatus", - "Parameters": [ - { - "Name": "script", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Enum", - "Name": "DraftStatusCode" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetDrafts": { - "MemberType": "Function", - "Name": "GetDrafts", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetEditors": { - "MemberType": "Function", - "Name": "GetEditors", - "Parameters": [ - { - "Name": "script", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RestoreScripts": { - "MemberType": "Function", - "Name": "RestoreScripts", - "Parameters": [ - { - "Name": "scripts", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ShowDiffsAgainstBase": { - "MemberType": "Function", - "Name": "ShowDiffsAgainstBase", - "Parameters": [ - { - "Name": "scripts", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ShowDiffsAgainstServer": { - "MemberType": "Function", - "Name": "ShowDiffsAgainstServer", - "Parameters": [ - { - "Name": "scripts", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UpdateStatusChanged": { - "MemberType": "Event", - "Name": "UpdateStatusChanged", - "Parameters": [ - { - "Name": "script", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "status", - "Type": { - "Category": "Enum", - "Name": "DraftStatusCode" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UpdateToLatestVersion": { - "MemberType": "Function", - "Name": "UpdateToLatestVersion", - "Parameters": [ - { - "Name": "scripts", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "DraftsService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "DragDetector": { - "Members": { - "ActivatedCursorIcon": { - "Category": "Image", - "MemberType": "Property", - "Name": "ActivatedCursorIcon", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "AddConstraintFunction": { - "MemberType": "Function", - "Name": "AddConstraintFunction", - "Parameters": [ - { - "Name": "priority", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "function", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "RBXScriptConnection" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ApplyAtCenterOfMass": { - "Category": "Physics Response", - "MemberType": "Property", - "Name": "ApplyAtCenterOfMass", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Axis": { - "Category": "Drag Directions", - "MemberType": "Property", - "Name": "Axis", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "DragContinue": { - "MemberType": "Event", - "Name": "DragContinue", - "Parameters": [ - { - "Name": "playerWhoDragged", - "Type": { - "Category": "Class", - "Name": "Player" - } - }, - { - "Name": "cursorRay", - "Type": { - "Category": "DataType", - "Name": "Ray" - } - }, - { - "Name": "viewFrame", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - }, - { - "Name": "vrInputFrame", - "Type": { - "Category": "DataType", - "Name": "OptionalCoordinateFrame" - } - }, - { - "Name": "isModeSwitchKeyDown", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DragEnd": { - "MemberType": "Event", - "Name": "DragEnd", - "Parameters": [ - { - "Name": "playerWhoDragged", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DragFrame": { - "Category": "Dragged Amount", - "MemberType": "Property", - "Name": "DragFrame", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "DragStart": { - "MemberType": "Event", - "Name": "DragStart", - "Parameters": [ - { - "Name": "playerWhoDragged", - "Type": { - "Category": "Class", - "Name": "Player" - } - }, - { - "Name": "cursorRay", - "Type": { - "Category": "DataType", - "Name": "Ray" - } - }, - { - "Name": "viewFrame", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - }, - { - "Name": "hitFrame", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - }, - { - "Name": "clickedPart", - "Type": { - "Category": "Class", - "Name": "BasePart" - } - }, - { - "Name": "vrInputFrame", - "Type": { - "Category": "DataType", - "Name": "OptionalCoordinateFrame" - } - }, - { - "Name": "isModeSwitchKeyDown", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DragStyle": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "DragStyle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "DragDetectorDragStyle" - } - }, - "Enabled": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "GamepadModeSwitchKeyCode": { - "Category": "Mode Switching", - "MemberType": "Property", - "Name": "GamepadModeSwitchKeyCode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "KeyCode" - } - }, - "GetReferenceFrame": { - "MemberType": "Function", - "Name": "GetReferenceFrame", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "CFrame" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "KeyboardModeSwitchKeyCode": { - "Category": "Mode Switching", - "MemberType": "Property", - "Name": "KeyboardModeSwitchKeyCode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "KeyCode" - } - }, - "MaxDragAngle": { - "Category": "Drag Limits", - "MemberType": "Property", - "Name": "MaxDragAngle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MaxDragTranslation": { - "Category": "Drag Limits", - "MemberType": "Property", - "Name": "MaxDragTranslation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "MaxForce": { - "Category": "Physics Response", - "MemberType": "Property", - "Name": "MaxForce", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MaxTorque": { - "Category": "Physics Response", - "MemberType": "Property", - "Name": "MaxTorque", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MinDragAngle": { - "Category": "Drag Limits", - "MemberType": "Property", - "Name": "MinDragAngle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MinDragTranslation": { - "Category": "Drag Limits", - "MemberType": "Property", - "Name": "MinDragTranslation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "Orientation": { - "Category": "Drag Directions", - "MemberType": "Property", - "Name": "Orientation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "ReferenceInstance": { - "Category": "Data", - "MemberType": "Property", - "Name": "ReferenceInstance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - }, - "ResponseStyle": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "ResponseStyle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "DragDetectorResponseStyle" - } - }, - "Responsiveness": { - "Category": "Physics Response", - "MemberType": "Property", - "Name": "Responsiveness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RestartDrag": { - "MemberType": "Function", - "Name": "RestartDrag", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RunLocally": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "RunLocally", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "SecondaryAxis": { - "Category": "Drag Directions", - "MemberType": "Property", - "Name": "SecondaryAxis", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "SetDragStyleFunction": { - "MemberType": "Function", - "Name": "SetDragStyleFunction", - "Parameters": [ - { - "Name": "function", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TrackballRadialPullFactor": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "TrackballRadialPullFactor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TrackballRollFactor": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "TrackballRollFactor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "VRSwitchKeyCode": { - "Category": "Mode Switching", - "MemberType": "Property", - "Name": "VRSwitchKeyCode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "KeyCode" - } - }, - "WorldAxis": { - "Category": "Drag Directions", - "MemberType": "Property", - "Name": "WorldAxis", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "WorldSecondaryAxis": { - "Category": "Drag Directions", - "MemberType": "Property", - "Name": "WorldSecondaryAxis", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - } - }, - "MemoryCategory": "Instances", - "Name": "DragDetector", - "Superclass": "ClickDetector", - "Tags": [ - "NotBrowsable" - ] - }, - "Dragger": { - "Members": { - "AxisRotate": { - "MemberType": "Function", - "Name": "AxisRotate", - "Parameters": [ - { - "Default": "X", - "Name": "axis", - "Type": { - "Category": "Enum", - "Name": "Axis" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MouseDown": { - "MemberType": "Function", - "Name": "MouseDown", - "Parameters": [ - { - "Name": "mousePart", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "pointOnMousePart", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "parts", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MouseMove": { - "MemberType": "Function", - "Name": "MouseMove", - "Parameters": [ - { - "Name": "mouseRay", - "Type": { - "Category": "DataType", - "Name": "Ray" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MouseUp": { - "MemberType": "Function", - "Name": "MouseUp", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "Dragger", - "Superclass": "Instance" - }, - "DraggerService": { - "Members": { - "AlignDraggedObjects": { - "Category": "Data", - "MemberType": "Property", - "Name": "AlignDraggedObjects", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AngleSnapEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "AngleSnapEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AngleSnapIncrement": { - "Category": "Data", - "MemberType": "Property", - "Name": "AngleSnapIncrement", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "AnimateHover": { - "Category": "Data", - "MemberType": "Property", - "Name": "AnimateHover", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "CollisionsEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "CollisionsEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "DraggerCoordinateSpace": { - "Category": "Data", - "MemberType": "Property", - "Name": "DraggerCoordinateSpace", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "DraggerCoordinateSpace" - } - }, - "DraggerMovementMode": { - "Category": "Data", - "MemberType": "Property", - "Name": "DraggerMovementMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "DraggerMovementMode" - } - }, - "GeometrySnapColor": { - "Category": "Data", - "MemberType": "Property", - "Name": "GeometrySnapColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "HoverAnimateFrequency": { - "Category": "Data", - "MemberType": "Property", - "Name": "HoverAnimateFrequency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "HoverLineThickness": { - "Category": "Data", - "MemberType": "Property", - "Name": "HoverLineThickness", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "HoverThickness": { - "Category": "Data", - "MemberType": "Property", - "Name": "HoverThickness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "JointsEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "JointsEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "LinearSnapEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "LinearSnapEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "LinearSnapIncrement": { - "Category": "Data", - "MemberType": "Property", - "Name": "LinearSnapIncrement", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "PivotSnapToGeometry": { - "Category": "Data", - "MemberType": "Property", - "Name": "PivotSnapToGeometry", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ShowHover": { - "Category": "Data", - "MemberType": "Property", - "Name": "ShowHover", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ShowPivotIndicator": { - "Category": "Data", - "MemberType": "Property", - "Name": "ShowPivotIndicator", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "DraggerService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "DynamicImage": { - "Members": { - "Clear": { - "MemberType": "Function", - "Name": "Clear", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DrawCircle": { - "MemberType": "Function", - "Name": "DrawCircle", - "Parameters": [ - { - "Name": "center", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - }, - { - "Name": "radius", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "color", - "Type": { - "Category": "DataType", - "Name": "Color3" - } - }, - { - "Name": "transparency", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ReadPixels": { - "MemberType": "Function", - "Name": "ReadPixels", - "Parameters": [ - { - "Name": "position", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - }, - { - "Name": "size", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": { - "CustomLuaState": true - }, - "ThreadSafety": "Unsafe" - }, - "Resize": { - "MemberType": "Function", - "Name": "Resize", - "Parameters": [ - { - "Name": "newSize", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Rotate": { - "MemberType": "Function", - "Name": "Rotate", - "Parameters": [ - { - "Name": "degrees", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Default": "true", - "Name": "resizeCanvas", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Size": { - "Category": "Data", - "MemberType": "Property", - "Name": "Size", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "WritePixels": { - "MemberType": "Function", - "Name": "WritePixels", - "Parameters": [ - { - "Name": "position", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - }, - { - "Name": "size", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - }, - { - "Name": "pixels", - "Type": { - "Category": "Group", - "Name": "Array" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "CustomLuaState": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "DynamicImage", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "DynamicMesh": { - "Members": { - "AddTriangle": { - "MemberType": "Function", - "Name": "AddTriangle", - "Parameters": [ - { - "Name": "vertexId0", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "vertexId1", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "vertexId2", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "AddVertex": { - "MemberType": "Function", - "Name": "AddVertex", - "Parameters": [ - { - "Name": "p", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CreateMeshPartAsync": { - "MemberType": "Function", - "Name": "CreateMeshPartAsync", - "Parameters": [ - { - "Name": "collisionFidelity", - "Type": { - "Category": "Enum", - "Name": "CollisionFidelity" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "MeshPart" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "FindClosestPointOnSurface": { - "MemberType": "Function", - "Name": "FindClosestPointOnSurface", - "Parameters": [ - { - "Name": "point", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "FindClosestVertex": { - "MemberType": "Function", - "Name": "FindClosestVertex", - "Parameters": [ - { - "Name": "toThisPoint", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "FindVerticesWithinSphere": { - "MemberType": "Function", - "Name": "FindVerticesWithinSphere", - "Parameters": [ - { - "Name": "center", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "radius", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetAdjacentTriangles": { - "MemberType": "Function", - "Name": "GetAdjacentTriangles", - "Parameters": [ - { - "Name": "triangleId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetAdjacentVertices": { - "MemberType": "Function", - "Name": "GetAdjacentVertices", - "Parameters": [ - { - "Name": "vertexId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetPosition": { - "MemberType": "Function", - "Name": "GetPosition", - "Parameters": [ - { - "Name": "vertexId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Vector3" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetTriangleVertices": { - "MemberType": "Function", - "Name": "GetTriangleVertices", - "Parameters": [ - { - "Name": "triangleId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetTriangles": { - "MemberType": "Function", - "Name": "GetTriangles", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetUV": { - "MemberType": "Function", - "Name": "GetUV", - "Parameters": [ - { - "Name": "vertexId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Vector2" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetVertexColor": { - "MemberType": "Function", - "Name": "GetVertexColor", - "Parameters": [ - { - "Name": "vertexId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Color3" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetVertexColorAlpha": { - "MemberType": "Function", - "Name": "GetVertexColorAlpha", - "Parameters": [ - { - "Name": "vertexId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "float" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetVertexNormal": { - "MemberType": "Function", - "Name": "GetVertexNormal", - "Parameters": [ - { - "Name": "vertexId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Vector3" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetVertices": { - "MemberType": "Function", - "Name": "GetVertices", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InitializeFromMeshIdAsync": { - "MemberType": "Function", - "Name": "InitializeFromMeshIdAsync", - "Parameters": [ - { - "Name": "meshId", - "Type": { - "Category": "DataType", - "Name": "Content" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InitializeFromMeshPartAsync": { - "MemberType": "Function", - "Name": "InitializeFromMeshPartAsync", - "Parameters": [ - { - "Name": "meshPart", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Raycast": { - "MemberType": "Function", - "Name": "Raycast", - "Parameters": [ - { - "Name": "origin", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "direction", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RemoveTriangle": { - "MemberType": "Function", - "Name": "RemoveTriangle", - "Parameters": [ - { - "Name": "triangleId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RemoveVertex": { - "MemberType": "Function", - "Name": "RemoveVertex", - "Parameters": [ - { - "Name": "vertexId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetPosition": { - "MemberType": "Function", - "Name": "SetPosition", - "Parameters": [ - { - "Name": "vertexId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "p", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetUV": { - "MemberType": "Function", - "Name": "SetUV", - "Parameters": [ - { - "Name": "vertexId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "uv", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetVertexColor": { - "MemberType": "Function", - "Name": "SetVertexColor", - "Parameters": [ - { - "Name": "vertexId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "color", - "Type": { - "Category": "DataType", - "Name": "Color3" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetVertexColorAlpha": { - "MemberType": "Function", - "Name": "SetVertexColorAlpha", - "Parameters": [ - { - "Name": "vertexId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "alpha", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetVertexNormal": { - "MemberType": "Function", - "Name": "SetVertexNormal", - "Parameters": [ - { - "Name": "vertexId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "vnormal", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "DynamicMesh", - "Superclass": "DataModelMesh" - }, - "DynamicRotate": { - "Members": { - "BaseAngle": { - "Category": "Data", - "MemberType": "Property", - "Name": "BaseAngle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "DynamicRotate", - "Superclass": "JointInstance", - "Tags": [ - "NotCreatable" - ] - }, - "EchoSoundEffect": { - "Members": { - "Delay": { - "Category": "State", - "MemberType": "Property", - "Name": "Delay", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "DryLevel": { - "Category": "State", - "MemberType": "Property", - "Name": "DryLevel", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Feedback": { - "Category": "State", - "MemberType": "Property", - "Name": "Feedback", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "WetLevel": { - "Category": "State", - "MemberType": "Property", - "Name": "WetLevel", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "EchoSoundEffect", - "Superclass": "SoundEffect" - }, - "EmotesPages": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "EmotesPages", - "Superclass": "InventoryPages", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "EqualizerSoundEffect": { - "Members": { - "HighGain": { - "Category": "State", - "MemberType": "Property", - "Name": "HighGain", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LowGain": { - "Category": "State", - "MemberType": "Property", - "Name": "LowGain", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MidGain": { - "Category": "State", - "MemberType": "Property", - "Name": "MidGain", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "EqualizerSoundEffect", - "Superclass": "SoundEffect" - }, - "EulerRotationCurve": { - "Members": { - "GetAnglesAtTime": { - "MemberType": "Function", - "Name": "GetAnglesAtTime", - "Parameters": [ - { - "Name": "time", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetRotationAtTime": { - "MemberType": "Function", - "Name": "GetRotationAtTime", - "Parameters": [ - { - "Name": "time", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "CFrame" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RotationOrder": { - "Category": "Data", - "MemberType": "Property", - "Name": "RotationOrder", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "RotationOrder" - } - }, - "X": { - "MemberType": "Function", - "Name": "X", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "FloatCurve" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Y": { - "MemberType": "Function", - "Name": "Y", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "FloatCurve" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Z": { - "MemberType": "Function", - "Name": "Z", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "FloatCurve" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "EulerRotationCurve", - "Superclass": "Instance" - }, - "EventIngestService": { - "Members": { - "SendEventDeferred": { - "MemberType": "Function", - "Name": "SendEventDeferred", - "Parameters": [ - { - "Name": "target", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "eventContext", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "eventName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "additionalArgs", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SendEventImmediately": { - "MemberType": "Function", - "Name": "SendEventImmediately", - "Parameters": [ - { - "Name": "target", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "eventContext", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "eventName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "additionalArgs", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetRBXEvent": { - "MemberType": "Function", - "Name": "SetRBXEvent", - "Parameters": [ - { - "Name": "target", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "eventContext", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "eventName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "additionalArgs", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetRBXEventStream": { - "MemberType": "Function", - "Name": "SetRBXEventStream", - "Parameters": [ - { - "Name": "target", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "eventContext", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "eventName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "additionalArgs", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "EventIngestService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "ExperienceAuthService": { - "Members": { - "OpenAuthPrompt": { - "MemberType": "Event", - "Name": "OpenAuthPrompt", - "Parameters": [ - { - "Name": "guid", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "scopes", - "Type": { - "Category": "Group", - "Name": "Array" - } - }, - { - "Name": "metadata", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ScopeCheckUIComplete": { - "MemberType": "Function", - "Name": "ScopeCheckUIComplete", - "Parameters": [ - { - "Name": "guid", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "scopes", - "Type": { - "Category": "Group", - "Name": "Array" - } - }, - { - "Name": "result", - "Type": { - "Category": "Enum", - "Name": "ScopeCheckResult" - } - }, - { - "Name": "metadata", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "ExperienceAuthService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "ExperienceInviteOptions": { - "Members": { - "InviteMessageId": { - "Category": "Data", - "MemberType": "Property", - "Name": "InviteMessageId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "InviteUser": { - "Category": "Data", - "MemberType": "Property", - "Name": "InviteUser", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "LaunchData": { - "Category": "Data", - "MemberType": "Property", - "Name": "LaunchData", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "PromptMessage": { - "Category": "Data", - "MemberType": "Property", - "Name": "PromptMessage", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "ExperienceInviteOptions", - "Superclass": "Instance", - "Tags": [ - "NotReplicated" - ] - }, - "Explosion": { - "Members": { - "BlastPressure": { - "Category": "Data", - "MemberType": "Property", - "Name": "BlastPressure", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "BlastRadius": { - "Category": "Data", - "MemberType": "Property", - "Name": "BlastRadius", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "DestroyJointRadiusPercent": { - "Category": "Data", - "MemberType": "Property", - "Name": "DestroyJointRadiusPercent", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ExplosionType": { - "Category": "Data", - "MemberType": "Property", - "Name": "ExplosionType", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ExplosionType" - } - }, - "Hit": { - "MemberType": "Event", - "Name": "Hit", - "Parameters": [ - { - "Name": "part", - "Type": { - "Category": "Class", - "Name": "BasePart" - } - }, - { - "Name": "distance", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Position": { - "Category": "Data", - "MemberType": "Property", - "Name": "Position", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "TimeScale": { - "Category": "Data", - "MemberType": "Property", - "Name": "TimeScale", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Visible": { - "Category": "Data", - "MemberType": "Property", - "Name": "Visible", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Explosion", - "Superclass": "Instance" - }, - "FaceAnimatorService": { - "Members": { - "AudioAnimationEnabled": { - "Category": "Control", - "MemberType": "Property", - "Name": "AudioAnimationEnabled", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "FlipHeadOrientation": { - "Category": "Control", - "MemberType": "Property", - "Name": "FlipHeadOrientation", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "GetTrackerLodController": { - "MemberType": "Function", - "Name": "GetTrackerLodController", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "TrackerLodController" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Init": { - "MemberType": "Function", - "Name": "Init", - "Parameters": [ - { - "Name": "videoEnabled", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "audioEnabled", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsStarted": { - "MemberType": "Function", - "Name": "IsStarted", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Start": { - "MemberType": "Function", - "Name": "Start", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Step": { - "MemberType": "Function", - "Name": "Step", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Stop": { - "MemberType": "Function", - "Name": "Stop", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TrackerError": { - "MemberType": "Event", - "Name": "TrackerError", - "Parameters": [ - { - "Name": "error", - "Type": { - "Category": "Enum", - "Name": "TrackerError" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TrackerPrompt": { - "MemberType": "Event", - "Name": "TrackerPrompt", - "Parameters": [ - { - "Name": "prompt", - "Type": { - "Category": "Enum", - "Name": "TrackerPromptEvent" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "VideoAnimationEnabled": { - "Category": "Control", - "MemberType": "Property", - "Name": "VideoAnimationEnabled", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "FaceAnimatorService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "FaceControls": { - "Members": { - "ChinRaiser": { - "Category": "Mouth", - "MemberType": "Property", - "Name": "ChinRaiser", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ChinRaiserUpperLip": { - "Category": "Mouth", - "MemberType": "Property", - "Name": "ChinRaiserUpperLip", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Corrugator": { - "Category": "Brows", - "MemberType": "Property", - "Name": "Corrugator", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "EyesLookDown": { - "Category": "Eyes", - "MemberType": "Property", - "Name": "EyesLookDown", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "EyesLookLeft": { - "Category": "Eyes", - "MemberType": "Property", - "Name": "EyesLookLeft", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "EyesLookRight": { - "Category": "Eyes", - "MemberType": "Property", - "Name": "EyesLookRight", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "EyesLookUp": { - "Category": "Eyes", - "MemberType": "Property", - "Name": "EyesLookUp", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "FlatPucker": { - "Category": "Mouth", - "MemberType": "Property", - "Name": "FlatPucker", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Funneler": { - "Category": "Mouth", - "MemberType": "Property", - "Name": "Funneler", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "JawDrop": { - "Category": "Jaw", - "MemberType": "Property", - "Name": "JawDrop", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "JawLeft": { - "Category": "Jaw", - "MemberType": "Property", - "Name": "JawLeft", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "JawRight": { - "Category": "Jaw", - "MemberType": "Property", - "Name": "JawRight", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LeftBrowLowerer": { - "Category": "Brows", - "MemberType": "Property", - "Name": "LeftBrowLowerer", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LeftCheekPuff": { - "Category": "Mouth", - "MemberType": "Property", - "Name": "LeftCheekPuff", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LeftCheekRaiser": { - "Category": "Eyes", - "MemberType": "Property", - "Name": "LeftCheekRaiser", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LeftDimpler": { - "Category": "Mouth", - "MemberType": "Property", - "Name": "LeftDimpler", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LeftEyeClosed": { - "Category": "Eyes", - "MemberType": "Property", - "Name": "LeftEyeClosed", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LeftEyeUpperLidRaiser": { - "Category": "Eyes", - "MemberType": "Property", - "Name": "LeftEyeUpperLidRaiser", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LeftInnerBrowRaiser": { - "Category": "Brows", - "MemberType": "Property", - "Name": "LeftInnerBrowRaiser", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LeftLipCornerDown": { - "Category": "Mouth", - "MemberType": "Property", - "Name": "LeftLipCornerDown", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LeftLipCornerPuller": { - "Category": "Mouth", - "MemberType": "Property", - "Name": "LeftLipCornerPuller", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LeftLipStretcher": { - "Category": "Mouth", - "MemberType": "Property", - "Name": "LeftLipStretcher", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LeftLowerLipDepressor": { - "Category": "Mouth", - "MemberType": "Property", - "Name": "LeftLowerLipDepressor", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LeftNoseWrinkler": { - "Category": "Brows", - "MemberType": "Property", - "Name": "LeftNoseWrinkler", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LeftOuterBrowRaiser": { - "Category": "Brows", - "MemberType": "Property", - "Name": "LeftOuterBrowRaiser", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LeftUpperLipRaiser": { - "Category": "Mouth", - "MemberType": "Property", - "Name": "LeftUpperLipRaiser", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LipPresser": { - "Category": "Mouth", - "MemberType": "Property", - "Name": "LipPresser", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LipsTogether": { - "Category": "Mouth", - "MemberType": "Property", - "Name": "LipsTogether", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LowerLipSuck": { - "Category": "Mouth", - "MemberType": "Property", - "Name": "LowerLipSuck", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MouthLeft": { - "Category": "Mouth", - "MemberType": "Property", - "Name": "MouthLeft", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MouthRight": { - "Category": "Mouth", - "MemberType": "Property", - "Name": "MouthRight", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Pucker": { - "Category": "Mouth", - "MemberType": "Property", - "Name": "Pucker", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RightBrowLowerer": { - "Category": "Brows", - "MemberType": "Property", - "Name": "RightBrowLowerer", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RightCheekPuff": { - "Category": "Mouth", - "MemberType": "Property", - "Name": "RightCheekPuff", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RightCheekRaiser": { - "Category": "Eyes", - "MemberType": "Property", - "Name": "RightCheekRaiser", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RightDimpler": { - "Category": "Mouth", - "MemberType": "Property", - "Name": "RightDimpler", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RightEyeClosed": { - "Category": "Eyes", - "MemberType": "Property", - "Name": "RightEyeClosed", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RightEyeUpperLidRaiser": { - "Category": "Eyes", - "MemberType": "Property", - "Name": "RightEyeUpperLidRaiser", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RightInnerBrowRaiser": { - "Category": "Brows", - "MemberType": "Property", - "Name": "RightInnerBrowRaiser", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RightLipCornerDown": { - "Category": "Mouth", - "MemberType": "Property", - "Name": "RightLipCornerDown", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RightLipCornerPuller": { - "Category": "Mouth", - "MemberType": "Property", - "Name": "RightLipCornerPuller", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RightLipStretcher": { - "Category": "Mouth", - "MemberType": "Property", - "Name": "RightLipStretcher", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RightLowerLipDepressor": { - "Category": "Mouth", - "MemberType": "Property", - "Name": "RightLowerLipDepressor", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RightNoseWrinkler": { - "Category": "Brows", - "MemberType": "Property", - "Name": "RightNoseWrinkler", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RightOuterBrowRaiser": { - "Category": "Brows", - "MemberType": "Property", - "Name": "RightOuterBrowRaiser", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RightUpperLipRaiser": { - "Category": "Mouth", - "MemberType": "Property", - "Name": "RightUpperLipRaiser", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TongueDown": { - "Category": "Tongue", - "MemberType": "Property", - "Name": "TongueDown", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TongueOut": { - "Category": "Tongue", - "MemberType": "Property", - "Name": "TongueOut", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TongueUp": { - "Category": "Tongue", - "MemberType": "Property", - "Name": "TongueUp", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "UpperLipSuck": { - "Category": "Mouth", - "MemberType": "Property", - "Name": "UpperLipSuck", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Animation", - "Name": "FaceControls", - "Superclass": "Instance" - }, - "FaceInstance": { - "Members": { - "Face": { - "Category": "Data", - "MemberType": "Property", - "Name": "Face", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "NormalId" - } - } - }, - "MemoryCategory": "Instances", - "Name": "FaceInstance", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotBrowsable" - ] - }, - "FacialAnimationRecordingService": { - "Members": { - "BiometricDataConsent": { - "Category": "State", - "MemberType": "Property", - "Name": "BiometricDataConsent", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "CheckOrRequestCameraPermission": { - "MemberType": "Function", - "Name": "CheckOrRequestCameraPermission", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "IsAgeRestricted": { - "MemberType": "Function", - "Name": "IsAgeRestricted", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "FacialAnimationRecordingService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "FacialAnimationStreamingServiceStats": { - "Members": { - "Get": { - "MemberType": "Function", - "Name": "Get", - "Parameters": [ - { - "Name": "label", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int64" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetWithPlayerId": { - "MemberType": "Function", - "Name": "GetWithPlayerId", - "Parameters": [ - { - "Name": "label", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "playerId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int64" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "FacialAnimationStreamingServiceStats", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "FacialAnimationStreamingServiceV2": { - "Members": { - "GetStats": { - "MemberType": "Function", - "Name": "GetStats", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "FacialAnimationStreamingServiceStats" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsAudioEnabled": { - "MemberType": "Function", - "Name": "IsAudioEnabled", - "Parameters": [ - { - "Name": "mask", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsPlaceEnabled": { - "MemberType": "Function", - "Name": "IsPlaceEnabled", - "Parameters": [ - { - "Name": "mask", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsServerEnabled": { - "MemberType": "Function", - "Name": "IsServerEnabled", - "Parameters": [ - { - "Name": "mask", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsVideoEnabled": { - "MemberType": "Function", - "Name": "IsVideoEnabled", - "Parameters": [ - { - "Name": "mask", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ResolveStateForUser": { - "MemberType": "Function", - "Name": "ResolveStateForUser", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ServiceState": { - "Category": "State", - "MemberType": "Property", - "Name": "ServiceState", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - } - }, - "MemoryCategory": "Instances", - "Name": "FacialAnimationStreamingServiceV2", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "FacialAnimationStreamingSubsessionStats": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "FacialAnimationStreamingSubsessionStats", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "FacsImportData": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "FacsImportData", - "Superclass": "BaseImportData", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "Feature": { - "Members": { - "FaceId": { - "Category": "Data", - "MemberType": "Property", - "Name": "FaceId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "NormalId" - } - }, - "InOut": { - "Category": "Data", - "MemberType": "Property", - "Name": "InOut", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "InOut" - } - }, - "LeftRight": { - "Category": "Data", - "MemberType": "Property", - "Name": "LeftRight", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "LeftRight" - } - }, - "TopBottom": { - "Category": "Data", - "MemberType": "Property", - "Name": "TopBottom", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TopBottom" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Feature", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "File": { - "Members": { - "GetBinaryContents": { - "MemberType": "Function", - "Name": "GetBinaryContents", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetTemporaryId": { - "MemberType": "Function", - "Name": "GetTemporaryId", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Content" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Size": { - "Category": "Data", - "MemberType": "Property", - "Name": "Size", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - } - }, - "MemoryCategory": "Instances", - "Name": "File", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "FileMesh": { - "Members": { - "MeshId": { - "Category": "Data", - "MemberType": "Property", - "Name": "MeshId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "TextureId": { - "Category": "Data", - "MemberType": "Property", - "Name": "TextureId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "FileMesh", - "Superclass": "DataModelMesh" - }, - "Fire": { - "Members": { - "Color": { - "Category": "Data", - "MemberType": "Property", - "Name": "Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Enabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "FastForward": { - "MemberType": "Function", - "Name": "FastForward", - "Parameters": [ - { - "Name": "numFrames", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Heat": { - "Category": "Data", - "MemberType": "Property", - "Name": "Heat", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "SecondaryColor": { - "Category": "Data", - "MemberType": "Property", - "Name": "SecondaryColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Size": { - "Category": "Data", - "MemberType": "Property", - "Name": "Size", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TimeScale": { - "Category": "Data", - "MemberType": "Property", - "Name": "TimeScale", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "size": { - "Category": "Data", - "MemberType": "Property", - "Name": "size", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Fire", - "Superclass": "Instance" - }, - "Flag": { - "Members": { - "TeamColor": { - "Category": "Data", - "MemberType": "Property", - "Name": "TeamColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BrickColor" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "Flag", - "Superclass": "Tool", - "Tags": [ - "Deprecated" - ] - }, - "FlagStand": { - "Members": { - "FlagCaptured": { - "MemberType": "Event", - "Name": "FlagCaptured", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TeamColor": { - "Category": "Data", - "MemberType": "Property", - "Name": "TeamColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BrickColor" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "FlagStand", - "Superclass": "Part", - "Tags": [ - "Deprecated" - ] - }, - "FlagStandService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "FlagStandService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "FlangeSoundEffect": { - "Members": { - "Depth": { - "Category": "State", - "MemberType": "Property", - "Name": "Depth", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Mix": { - "Category": "State", - "MemberType": "Property", - "Name": "Mix", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Rate": { - "Category": "State", - "MemberType": "Property", - "Name": "Rate", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "FlangeSoundEffect", - "Superclass": "SoundEffect" - }, - "FloatCurve": { - "Members": { - "GetKeyAtIndex": { - "MemberType": "Function", - "Name": "GetKeyAtIndex", - "Parameters": [ - { - "Name": "index", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "FloatCurveKey" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetKeyIndicesAtTime": { - "MemberType": "Function", - "Name": "GetKeyIndicesAtTime", - "Parameters": [ - { - "Name": "time", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetKeys": { - "MemberType": "Function", - "Name": "GetKeys", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetValueAtTime": { - "MemberType": "Function", - "Name": "GetValueAtTime", - "Parameters": [ - { - "Name": "time", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "float?" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InsertKey": { - "MemberType": "Function", - "Name": "InsertKey", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "DataType", - "Name": "FloatCurveKey" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Length": { - "Category": "Data", - "MemberType": "Property", - "Name": "Length", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "RemoveKeyAtIndex": { - "MemberType": "Function", - "Name": "RemoveKeyAtIndex", - "Parameters": [ - { - "Name": "startingIndex", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Default": "1", - "Name": "count", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetKeys": { - "MemberType": "Function", - "Name": "SetKeys", - "Parameters": [ - { - "Name": "keys", - "Type": { - "Category": "Group", - "Name": "Array" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "FloatCurve", - "Superclass": "Instance" - }, - "FloorWire": { - "Members": { - "CycleOffset": { - "Category": "Data", - "MemberType": "Property", - "Name": "CycleOffset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "From": { - "Category": "Data", - "MemberType": "Property", - "Name": "From", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "BasePart" - } - }, - "StudsBetweenTextures": { - "Category": "Data", - "MemberType": "Property", - "Name": "StudsBetweenTextures", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Texture": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Texture", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "TextureSize": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "TextureSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "To": { - "Category": "Data", - "MemberType": "Property", - "Name": "To", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "BasePart" - } - }, - "Velocity": { - "Category": "Data", - "MemberType": "Property", - "Name": "Velocity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "WireRadius": { - "Category": "Data", - "MemberType": "Property", - "Name": "WireRadius", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "FloorWire", - "Superclass": "GuiBase3d", - "Tags": [ - "Deprecated" - ] - }, - "FlyweightService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "FlyweightService", - "Superclass": "Instance", - "Tags": [ - "Service" - ] - }, - "Folder": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "Folder", - "Superclass": "Instance" - }, - "ForceField": { - "Members": { - "Visible": { - "Category": "Data", - "MemberType": "Property", - "Name": "Visible", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "ForceField", - "Superclass": "Instance" - }, - "FormFactorPart": { - "Members": { - "FormFactor": { - "Category": "Part", - "MemberType": "Property", - "Name": "FormFactor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "FormFactor" - } - }, - "formFactor": { - "Category": "Part", - "MemberType": "Property", - "Name": "formFactor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "FormFactor" - } - } - }, - "MemoryCategory": "Instances", - "Name": "FormFactorPart", - "Superclass": "BasePart", - "Tags": [ - "NotCreatable" - ] - }, - "Frame": { - "Members": { - "Style": { - "Category": "Data", - "MemberType": "Property", - "Name": "Style", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "FrameStyle" - } - } - }, - "MemoryCategory": "Gui", - "Name": "Frame", - "Superclass": "GuiObject" - }, - "FriendPages": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "FriendPages", - "Superclass": "Pages", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "FriendService": { - "Members": { - "FriendsUpdated": { - "MemberType": "Event", - "Name": "FriendsUpdated", - "Parameters": [ - { - "Name": "friendData", - "Type": { - "Category": "Group", - "Name": "Array" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetPlatformFriends": { - "MemberType": "Function", - "Name": "GetPlatformFriends", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "FriendService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "FunctionalTest": { - "Members": { - "Description": { - "Category": "Data", - "MemberType": "Property", - "Name": "Description", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Error": { - "MemberType": "Function", - "Name": "Error", - "Parameters": [ - { - "Default": "", - "Name": "message", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Failed": { - "MemberType": "Function", - "Name": "Failed", - "Parameters": [ - { - "Default": "", - "Name": "message", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Pass": { - "MemberType": "Function", - "Name": "Pass", - "Parameters": [ - { - "Default": "", - "Name": "message", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Passed": { - "MemberType": "Function", - "Name": "Passed", - "Parameters": [ - { - "Default": "", - "Name": "message", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Warn": { - "MemberType": "Function", - "Name": "Warn", - "Parameters": [ - { - "Default": "", - "Name": "message", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "FunctionalTest", - "Superclass": "Instance", - "Tags": [ - "Deprecated" - ] - }, - "GamePassService": { - "Members": { - "PlayerHasPass": { - "MemberType": "Function", - "Name": "PlayerHasPass", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Player" - } - }, - { - "Name": "gamePassId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true, - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "GamePassService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "GameSettings": { - "Members": { - "VideoCaptureEnabled": { - "Category": "Video", - "MemberType": "Property", - "Name": "VideoCaptureEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "VideoRecording": { - "Category": "Video", - "MemberType": "Property", - "Name": "VideoRecording", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "VideoRecordingChangeRequest": { - "MemberType": "Event", - "Name": "VideoRecordingChangeRequest", - "Parameters": [ - { - "Name": "recording", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "GameSettings", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Settings", - "NotBrowsable" - ] - }, - "GamepadService": { - "Members": { - "DisableGamepadCursor": { - "MemberType": "Function", - "Name": "DisableGamepadCursor", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "EnableGamepadCursor": { - "MemberType": "Function", - "Name": "EnableGamepadCursor", - "Parameters": [ - { - "Name": "guiObject", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GamepadCursorEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "GamepadCursorEnabled", - "Security": { - "Read": "None", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "GamepadThumbstick1Changed": { - "MemberType": "Event", - "Name": "GamepadThumbstick1Changed", - "Parameters": [ - { - "Name": "event", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetGamepadCursorPosition": { - "MemberType": "Function", - "Name": "GetGamepadCursorPosition", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Vector2" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetGamepadCursorPosition": { - "MemberType": "Function", - "Name": "SetGamepadCursorPosition", - "Parameters": [ - { - "Name": "position", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "GamepadService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "GenericSettings": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "GenericSettings", - "Superclass": "ServiceProvider", - "Tags": [ - "NotCreatable" - ] - }, - "Geometry": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "Geometry", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "GeometryService": { - "Members": { - "CalculateConstraintsToPreserve": { - "MemberType": "Function", - "Name": "CalculateConstraintsToPreserve", - "Parameters": [ - { - "Name": "source", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "destination", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - }, - { - "Name": "options", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IntersectAsync": { - "MemberType": "Function", - "Name": "IntersectAsync", - "Parameters": [ - { - "Name": "part", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "parts", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - }, - { - "Name": "options", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "SubtractAsync": { - "MemberType": "Function", - "Name": "SubtractAsync", - "Parameters": [ - { - "Name": "part", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "parts", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - }, - { - "Name": "options", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "UnionAsync": { - "MemberType": "Function", - "Name": "UnionAsync", - "Parameters": [ - { - "Name": "part", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "parts", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - }, - { - "Name": "options", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "GeometryService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "GetTextBoundsParams": { - "Members": { - "Font": { - "Category": "Data", - "MemberType": "Property", - "Name": "Font", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Font" - } - }, - "Size": { - "Category": "Data", - "MemberType": "Property", - "Name": "Size", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Text": { - "Category": "Data", - "MemberType": "Property", - "Name": "Text", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Width": { - "Category": "Data", - "MemberType": "Property", - "Name": "Width", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "GetTextBoundsParams", - "Superclass": "Instance", - "Tags": [ - "NotReplicated" - ] - }, - "GlobalDataStore": { - "Members": { - "GetAsync": { - "MemberType": "Function", - "Name": "GetAsync", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "IncrementAsync": { - "MemberType": "Function", - "Name": "IncrementAsync", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "1", - "Name": "delta", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Default": "{}", - "Name": "userIds", - "Type": { - "Category": "Group", - "Name": "Array" - } - }, - { - "Default": "nil", - "Name": "options", - "Type": { - "Category": "Class", - "Name": "DataStoreIncrementOptions" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Variant" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "OnUpdate": { - "MemberType": "Function", - "Name": "OnUpdate", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "callback", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "RBXScriptConnection" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "RemoveAsync": { - "MemberType": "Function", - "Name": "RemoveAsync", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "SetAsync": { - "MemberType": "Function", - "Name": "SetAsync", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "value", - "Type": { - "Category": "Group", - "Name": "Variant" - } - }, - { - "Default": "{}", - "Name": "userIds", - "Type": { - "Category": "Group", - "Name": "Array" - } - }, - { - "Default": "nil", - "Name": "options", - "Type": { - "Category": "Class", - "Name": "DataStoreSetOptions" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Variant" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "UpdateAsync": { - "MemberType": "Function", - "Name": "UpdateAsync", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "transformFunction", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "GlobalDataStore", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "GlobalSettings": { - "Members": { - "GetFFlag": { - "MemberType": "Function", - "Name": "GetFFlag", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetFVariable": { - "MemberType": "Function", - "Name": "GetFVariable", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "GlobalSettings", - "Superclass": "GenericSettings", - "Tags": [ - "NotCreatable", - "NotBrowsable" - ] - }, - "Glue": { - "Members": { - "F0": { - "Category": "Data", - "MemberType": "Property", - "Name": "F0", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "F1": { - "Category": "Data", - "MemberType": "Property", - "Name": "F1", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "F2": { - "Category": "Data", - "MemberType": "Property", - "Name": "F2", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "F3": { - "Category": "Data", - "MemberType": "Property", - "Name": "F3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "Glue", - "Superclass": "JointInstance", - "Tags": [ - "Deprecated" - ] - }, - "GoogleAnalyticsConfiguration": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "GoogleAnalyticsConfiguration", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "GroundController": { - "Members": { - "AccelerationLean": { - "Category": "Balance", - "MemberType": "Property", - "Name": "AccelerationLean", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "AccelerationTime": { - "Category": "Movement", - "MemberType": "Property", - "Name": "AccelerationTime", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "BalanceMaxTorque": { - "Category": "Balance", - "MemberType": "Property", - "Name": "BalanceMaxTorque", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "BalanceSpeed": { - "Category": "Balance", - "MemberType": "Property", - "Name": "BalanceSpeed", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "DecelerationTime": { - "Category": "Movement", - "MemberType": "Property", - "Name": "DecelerationTime", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Friction": { - "Category": "Movement", - "MemberType": "Property", - "Name": "Friction", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "FrictionWeight": { - "Category": "Movement", - "MemberType": "Property", - "Name": "FrictionWeight", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "GroundOffset": { - "Category": "Movement", - "MemberType": "Property", - "Name": "GroundOffset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "StandForce": { - "Category": "Movement", - "MemberType": "Property", - "Name": "StandForce", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "StandSpeed": { - "Category": "Movement", - "MemberType": "Property", - "Name": "StandSpeed", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TurnSpeedFactor": { - "Category": "Movement", - "MemberType": "Property", - "Name": "TurnSpeedFactor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "GroundController", - "Superclass": "ControllerBase", - "Tags": [ - "NotBrowsable" - ] - }, - "GroupImportData": { - "Members": { - "Anchored": { - "Category": "Data", - "MemberType": "Property", - "Name": "Anchored", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ImportAsModelAsset": { - "Category": "Data", - "MemberType": "Property", - "Name": "ImportAsModelAsset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "InsertInWorkspace": { - "Category": "Data", - "MemberType": "Property", - "Name": "InsertInWorkspace", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "GroupImportData", - "Superclass": "BaseImportData", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "GroupService": { - "Members": { - "GetAlliesAsync": { - "MemberType": "Function", - "Name": "GetAlliesAsync", - "Parameters": [ - { - "Name": "groupId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "StandardPages" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetEnemiesAsync": { - "MemberType": "Function", - "Name": "GetEnemiesAsync", - "Parameters": [ - { - "Name": "groupId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "StandardPages" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetGroupInfoAsync": { - "MemberType": "Function", - "Name": "GetGroupInfoAsync", - "Parameters": [ - { - "Name": "groupId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Variant" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetGroupsAsync": { - "MemberType": "Function", - "Name": "GetGroupsAsync", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "GroupService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "GuiBase": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "GuiBase", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "GuiBase2d": { - "Members": { - "AbsolutePosition": { - "Category": "Data", - "MemberType": "Property", - "Name": "AbsolutePosition", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "Unsafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "AbsoluteRotation": { - "Category": "Data", - "MemberType": "Property", - "Name": "AbsoluteRotation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "Unsafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "AbsoluteSize": { - "Category": "Data", - "MemberType": "Property", - "Name": "AbsoluteSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "Unsafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "AutoLocalize": { - "Category": "Localization", - "MemberType": "Property", - "Name": "AutoLocalize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ClippedRect": { - "Category": "Debugging", - "MemberType": "Property", - "Name": "ClippedRect", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Rect" - } - }, - "IsNotOccluded": { - "Category": "Debugging", - "MemberType": "Property", - "Name": "IsNotOccluded", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Localize": { - "Category": "Localization", - "MemberType": "Property", - "Name": "Localize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "RawRect2D": { - "Category": "Debugging", - "MemberType": "Property", - "Name": "RawRect2D", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Rect" - } - }, - "RootLocalizationTable": { - "Category": "Localization", - "MemberType": "Property", - "Name": "RootLocalizationTable", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "LocalizationTable" - } - }, - "SelectionBehaviorDown": { - "Category": "Selection", - "MemberType": "Property", - "Name": "SelectionBehaviorDown", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "SelectionBehavior" - } - }, - "SelectionBehaviorLeft": { - "Category": "Selection", - "MemberType": "Property", - "Name": "SelectionBehaviorLeft", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "SelectionBehavior" - } - }, - "SelectionBehaviorRight": { - "Category": "Selection", - "MemberType": "Property", - "Name": "SelectionBehaviorRight", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "SelectionBehavior" - } - }, - "SelectionBehaviorUp": { - "Category": "Selection", - "MemberType": "Property", - "Name": "SelectionBehaviorUp", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "SelectionBehavior" - } - }, - "SelectionChanged": { - "MemberType": "Event", - "Name": "SelectionChanged", - "Parameters": [ - { - "Name": "amISelected", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "previousSelection", - "Type": { - "Category": "Class", - "Name": "GuiObject" - } - }, - { - "Name": "newSelection", - "Type": { - "Category": "Class", - "Name": "GuiObject" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SelectionGroup": { - "Category": "Selection", - "MemberType": "Property", - "Name": "SelectionGroup", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "TotalGroupScale": { - "Category": "Debugging", - "MemberType": "Property", - "Name": "TotalGroupScale", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "GuiBase2d", - "Superclass": "GuiBase", - "Tags": [ - "NotCreatable", - "NotBrowsable" - ] - }, - "GuiBase3d": { - "Members": { - "Color": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BrickColor" - } - }, - "Color3": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Color3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Transparency": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Transparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Visible": { - "Category": "Data", - "MemberType": "Property", - "Name": "Visible", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "GuiBase3d", - "Superclass": "GuiBase", - "Tags": [ - "NotCreatable" - ] - }, - "GuiButton": { - "Members": { - "Activated": { - "MemberType": "Event", - "Name": "Activated", - "Parameters": [ - { - "Name": "inputObject", - "Type": { - "Category": "Class", - "Name": "InputObject" - } - }, - { - "Name": "clickCount", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "AutoButtonColor": { - "Category": "Data", - "MemberType": "Property", - "Name": "AutoButtonColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Modal": { - "Category": "Data", - "MemberType": "Property", - "Name": "Modal", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "MouseButton1Click": { - "MemberType": "Event", - "Name": "MouseButton1Click", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MouseButton1Down": { - "MemberType": "Event", - "Name": "MouseButton1Down", - "Parameters": [ - { - "Name": "x", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "y", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MouseButton1Up": { - "MemberType": "Event", - "Name": "MouseButton1Up", - "Parameters": [ - { - "Name": "x", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "y", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MouseButton2Click": { - "MemberType": "Event", - "Name": "MouseButton2Click", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MouseButton2Down": { - "MemberType": "Event", - "Name": "MouseButton2Down", - "Parameters": [ - { - "Name": "x", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "y", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MouseButton2Up": { - "MemberType": "Event", - "Name": "MouseButton2Up", - "Parameters": [ - { - "Name": "x", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "y", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Selected": { - "Category": "Selection", - "MemberType": "Property", - "Name": "Selected", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Style": { - "Category": "Data", - "MemberType": "Property", - "Name": "Style", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ButtonStyle" - } - } - }, - "MemoryCategory": "Gui", - "Name": "GuiButton", - "Superclass": "GuiObject", - "Tags": [ - "NotCreatable", - "NotBrowsable" - ] - }, - "GuiLabel": { - "Members": {}, - "MemoryCategory": "Gui", - "Name": "GuiLabel", - "Superclass": "GuiObject", - "Tags": [ - "NotCreatable" - ] - }, - "GuiMain": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "GuiMain", - "Superclass": "ScreenGui", - "Tags": [ - "Deprecated" - ] - }, - "GuiObject": { - "Members": { - "Active": { - "Category": "Data", - "MemberType": "Property", - "Name": "Active", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AnchorPoint": { - "Category": "Data", - "MemberType": "Property", - "Name": "AnchorPoint", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "AutomaticSize": { - "Category": "Data", - "MemberType": "Property", - "Name": "AutomaticSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "AutomaticSize" - } - }, - "BackgroundColor": { - "Category": "Data", - "MemberType": "Property", - "Name": "BackgroundColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BrickColor" - } - }, - "BackgroundColor3": { - "Category": "Data", - "MemberType": "Property", - "Name": "BackgroundColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "BackgroundTransparency": { - "Category": "Data", - "MemberType": "Property", - "Name": "BackgroundTransparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "BorderColor": { - "Category": "Data", - "MemberType": "Property", - "Name": "BorderColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BrickColor" - } - }, - "BorderColor3": { - "Category": "Data", - "MemberType": "Property", - "Name": "BorderColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "BorderMode": { - "Category": "Data", - "MemberType": "Property", - "Name": "BorderMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "BorderMode" - } - }, - "BorderSizePixel": { - "Category": "Data", - "MemberType": "Property", - "Name": "BorderSizePixel", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "ClipsDescendants": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "ClipsDescendants", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "DragBegin": { - "MemberType": "Event", - "Name": "DragBegin", - "Parameters": [ - { - "Name": "initialPosition", - "Type": { - "Category": "DataType", - "Name": "UDim2" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "DragStopped": { - "MemberType": "Event", - "Name": "DragStopped", - "Parameters": [ - { - "Name": "x", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "y", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "Draggable": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Draggable", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "GuiState": { - "Category": "State", - "MemberType": "Property", - "Name": "GuiState", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "GuiState" - } - }, - "InputBegan": { - "MemberType": "Event", - "Name": "InputBegan", - "Parameters": [ - { - "Name": "input", - "Type": { - "Category": "Class", - "Name": "InputObject" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InputChanged": { - "MemberType": "Event", - "Name": "InputChanged", - "Parameters": [ - { - "Name": "input", - "Type": { - "Category": "Class", - "Name": "InputObject" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InputEnded": { - "MemberType": "Event", - "Name": "InputEnded", - "Parameters": [ - { - "Name": "input", - "Type": { - "Category": "Class", - "Name": "InputObject" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "LayoutOrder": { - "Category": "Data", - "MemberType": "Property", - "Name": "LayoutOrder", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "MouseEnter": { - "MemberType": "Event", - "Name": "MouseEnter", - "Parameters": [ - { - "Name": "x", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "y", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MouseLeave": { - "MemberType": "Event", - "Name": "MouseLeave", - "Parameters": [ - { - "Name": "x", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "y", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MouseMoved": { - "MemberType": "Event", - "Name": "MouseMoved", - "Parameters": [ - { - "Name": "x", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "y", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MouseWheelBackward": { - "MemberType": "Event", - "Name": "MouseWheelBackward", - "Parameters": [ - { - "Name": "x", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "y", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MouseWheelForward": { - "MemberType": "Event", - "Name": "MouseWheelForward", - "Parameters": [ - { - "Name": "x", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "y", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "NextSelectionDown": { - "Category": "Selection", - "MemberType": "Property", - "Name": "NextSelectionDown", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "GuiObject" - } - }, - "NextSelectionLeft": { - "Category": "Selection", - "MemberType": "Property", - "Name": "NextSelectionLeft", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "GuiObject" - } - }, - "NextSelectionRight": { - "Category": "Selection", - "MemberType": "Property", - "Name": "NextSelectionRight", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "GuiObject" - } - }, - "NextSelectionUp": { - "Category": "Selection", - "MemberType": "Property", - "Name": "NextSelectionUp", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "GuiObject" - } - }, - "Position": { - "Category": "Data", - "MemberType": "Property", - "Name": "Position", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "UDim2" - } - }, - "Rotation": { - "Category": "Data", - "MemberType": "Property", - "Name": "Rotation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Selectable": { - "Category": "Selection", - "MemberType": "Property", - "Name": "Selectable", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "SelectionGained": { - "MemberType": "Event", - "Name": "SelectionGained", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SelectionImageObject": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "SelectionImageObject", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "GuiObject" - } - }, - "SelectionLost": { - "MemberType": "Event", - "Name": "SelectionLost", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SelectionOrder": { - "Category": "Selection", - "MemberType": "Property", - "Name": "SelectionOrder", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "Size": { - "Category": "Data", - "MemberType": "Property", - "Name": "Size", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "UDim2" - } - }, - "SizeConstraint": { - "Category": "Data", - "MemberType": "Property", - "Name": "SizeConstraint", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "SizeConstraint" - } - }, - "TouchLongPress": { - "MemberType": "Event", - "Name": "TouchLongPress", - "Parameters": [ - { - "Name": "touchPositions", - "Type": { - "Category": "Group", - "Name": "Array" - } - }, - { - "Name": "state", - "Type": { - "Category": "Enum", - "Name": "UserInputState" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TouchPan": { - "MemberType": "Event", - "Name": "TouchPan", - "Parameters": [ - { - "Name": "touchPositions", - "Type": { - "Category": "Group", - "Name": "Array" - } - }, - { - "Name": "totalTranslation", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - }, - { - "Name": "velocity", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - }, - { - "Name": "state", - "Type": { - "Category": "Enum", - "Name": "UserInputState" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TouchPinch": { - "MemberType": "Event", - "Name": "TouchPinch", - "Parameters": [ - { - "Name": "touchPositions", - "Type": { - "Category": "Group", - "Name": "Array" - } - }, - { - "Name": "scale", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "velocity", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "state", - "Type": { - "Category": "Enum", - "Name": "UserInputState" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TouchRotate": { - "MemberType": "Event", - "Name": "TouchRotate", - "Parameters": [ - { - "Name": "touchPositions", - "Type": { - "Category": "Group", - "Name": "Array" - } - }, - { - "Name": "rotation", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "velocity", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "state", - "Type": { - "Category": "Enum", - "Name": "UserInputState" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TouchSwipe": { - "MemberType": "Event", - "Name": "TouchSwipe", - "Parameters": [ - { - "Name": "swipeDirection", - "Type": { - "Category": "Enum", - "Name": "SwipeDirection" - } - }, - { - "Name": "numberOfTouches", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TouchTap": { - "MemberType": "Event", - "Name": "TouchTap", - "Parameters": [ - { - "Name": "touchPositions", - "Type": { - "Category": "Group", - "Name": "Array" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Transparency": { - "Category": "Data", - "MemberType": "Property", - "Name": "Transparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TweenPosition": { - "MemberType": "Function", - "Name": "TweenPosition", - "Parameters": [ - { - "Name": "endPosition", - "Type": { - "Category": "DataType", - "Name": "UDim2" - } - }, - { - "Default": "Out", - "Name": "easingDirection", - "Type": { - "Category": "Enum", - "Name": "EasingDirection" - } - }, - { - "Default": "Quad", - "Name": "easingStyle", - "Type": { - "Category": "Enum", - "Name": "EasingStyle" - } - }, - { - "Default": "1", - "Name": "time", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Default": "false", - "Name": "override", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Default": "nil", - "Name": "callback", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TweenSize": { - "MemberType": "Function", - "Name": "TweenSize", - "Parameters": [ - { - "Name": "endSize", - "Type": { - "Category": "DataType", - "Name": "UDim2" - } - }, - { - "Default": "Out", - "Name": "easingDirection", - "Type": { - "Category": "Enum", - "Name": "EasingDirection" - } - }, - { - "Default": "Quad", - "Name": "easingStyle", - "Type": { - "Category": "Enum", - "Name": "EasingStyle" - } - }, - { - "Default": "1", - "Name": "time", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Default": "false", - "Name": "override", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Default": "nil", - "Name": "callback", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TweenSizeAndPosition": { - "MemberType": "Function", - "Name": "TweenSizeAndPosition", - "Parameters": [ - { - "Name": "endSize", - "Type": { - "Category": "DataType", - "Name": "UDim2" - } - }, - { - "Name": "endPosition", - "Type": { - "Category": "DataType", - "Name": "UDim2" - } - }, - { - "Default": "Out", - "Name": "easingDirection", - "Type": { - "Category": "Enum", - "Name": "EasingDirection" - } - }, - { - "Default": "Quad", - "Name": "easingStyle", - "Type": { - "Category": "Enum", - "Name": "EasingStyle" - } - }, - { - "Default": "1", - "Name": "time", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Default": "false", - "Name": "override", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Default": "nil", - "Name": "callback", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Visible": { - "Category": "Data", - "MemberType": "Property", - "Name": "Visible", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ZIndex": { - "Category": "Data", - "MemberType": "Property", - "Name": "ZIndex", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - } - }, - "MemoryCategory": "Gui", - "Name": "GuiObject", - "Superclass": "GuiBase2d", - "Tags": [ - "NotCreatable", - "NotBrowsable" - ] - }, - "GuiService": { - "Members": { - "AddCenterDialog": { - "MemberType": "Function", - "Name": "AddCenterDialog", - "Parameters": [ - { - "Name": "dialog", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "centerDialogType", - "Type": { - "Category": "Enum", - "Name": "CenterDialogType" - } - }, - { - "Name": "showFunction", - "Type": { - "Category": "DataType", - "Name": "Function" - } - }, - { - "Name": "hideFunction", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "AddKey": { - "MemberType": "Function", - "Name": "AddKey", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "AddSelectionParent": { - "MemberType": "Function", - "Name": "AddSelectionParent", - "Parameters": [ - { - "Name": "selectionName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "selectionParent", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "AddSelectionTuple": { - "MemberType": "Function", - "Name": "AddSelectionTuple", - "Parameters": [ - { - "Name": "selectionName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "selections", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "AddSpecialKey": { - "MemberType": "Function", - "Name": "AddSpecialKey", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Enum", - "Name": "SpecialKey" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "AutoSelectGuiEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "AutoSelectGuiEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "BroadcastNotification": { - "MemberType": "Function", - "Name": "BroadcastNotification", - "Parameters": [ - { - "Name": "data", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "notificationType", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "BrowserWindowClosed": { - "MemberType": "Event", - "Name": "BrowserWindowClosed", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "ClearError": { - "MemberType": "Function", - "Name": "ClearError", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CloseInspectMenu": { - "MemberType": "Function", - "Name": "CloseInspectMenu", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CloseInspectMenuRequest": { - "MemberType": "Event", - "Name": "CloseInspectMenuRequest", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CloseStatsBasedOnInputString": { - "MemberType": "Function", - "Name": "CloseStatsBasedOnInputString", - "Parameters": [ - { - "Name": "input", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CoreEffectFolder": { - "Category": "Data", - "MemberType": "Property", - "Name": "CoreEffectFolder", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Folder" - } - }, - "CoreGuiFolder": { - "Category": "Data", - "MemberType": "Property", - "Name": "CoreGuiFolder", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Folder" - } - }, - "CoreGuiNavigationEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "CoreGuiNavigationEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "CoreGuiRenderOverflowed": { - "MemberType": "Event", - "Name": "CoreGuiRenderOverflowed", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "EmotesMenuOpenChanged": { - "MemberType": "Event", - "Name": "EmotesMenuOpenChanged", - "Parameters": [ - { - "Name": "isOpen", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ErrorMessageChanged": { - "MemberType": "Event", - "Name": "ErrorMessageChanged", - "Parameters": [ - { - "Name": "newErrorMessage", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "ForceTenFootInterface": { - "MemberType": "Function", - "Name": "ForceTenFootInterface", - "Parameters": [ - { - "Name": "isForced", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetBrickCount": { - "MemberType": "Function", - "Name": "GetBrickCount", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetClosestDialogToPosition": { - "MemberType": "Function", - "Name": "GetClosestDialogToPosition", - "Parameters": [ - { - "Name": "position", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetEmotesMenuOpen": { - "MemberType": "Function", - "Name": "GetEmotesMenuOpen", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetErrorCode": { - "MemberType": "Function", - "Name": "GetErrorCode", - "Parameters": {}, - "ReturnType": { - "Category": "Enum", - "Name": "ConnectionError" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetErrorMessage": { - "MemberType": "Function", - "Name": "GetErrorMessage", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetErrorType": { - "MemberType": "Function", - "Name": "GetErrorType", - "Parameters": {}, - "ReturnType": { - "Category": "Enum", - "Name": "ConnectionError" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetGameplayPausedNotificationEnabled": { - "MemberType": "Function", - "Name": "GetGameplayPausedNotificationEnabled", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetGuiInset": { - "MemberType": "Function", - "Name": "GetGuiInset", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetGuiIsVisible": { - "MemberType": "Function", - "Name": "GetGuiIsVisible", - "Parameters": [ - { - "Name": "guiType", - "Type": { - "Category": "Enum", - "Name": "GuiType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetInspectMenuEnabled": { - "MemberType": "Function", - "Name": "GetInspectMenuEnabled", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetNotificationTypeList": { - "MemberType": "Function", - "Name": "GetNotificationTypeList", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetResolutionScale": { - "MemberType": "Function", - "Name": "GetResolutionScale", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetSafeZoneOffsets": { - "MemberType": "Function", - "Name": "GetSafeZoneOffsets", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetScreenResolution": { - "MemberType": "Function", - "Name": "GetScreenResolution", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Vector2" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetUiMessage": { - "MemberType": "Function", - "Name": "GetUiMessage", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GuiNavigationEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "GuiNavigationEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "GuiVisibilityChangedSignal": { - "MemberType": "Event", - "Name": "GuiVisibilityChangedSignal", - "Parameters": [ - { - "Name": "guiType", - "Type": { - "Category": "Enum", - "Name": "GuiType" - } - }, - { - "Name": "visible", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InspectMenuEnabledChangedSignal": { - "MemberType": "Event", - "Name": "InspectMenuEnabledChangedSignal", - "Parameters": [ - { - "Name": "enabled", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InspectPlayerFromHumanoidDescription": { - "MemberType": "Function", - "Name": "InspectPlayerFromHumanoidDescription", - "Parameters": [ - { - "Name": "humanoidDescription", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InspectPlayerFromHumanoidDescriptionRequest": { - "MemberType": "Event", - "Name": "InspectPlayerFromHumanoidDescriptionRequest", - "Parameters": [ - { - "Name": "humanoidDescription", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InspectPlayerFromUserId": { - "MemberType": "Function", - "Name": "InspectPlayerFromUserId", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InspectPlayerFromUserIdWithCtx": { - "MemberType": "Function", - "Name": "InspectPlayerFromUserIdWithCtx", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "ctx", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InspectPlayerFromUserIdWithCtxRequest": { - "MemberType": "Event", - "Name": "InspectPlayerFromUserIdWithCtxRequest", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "ctx", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsMemoryTrackerEnabled": { - "MemberType": "Function", - "Name": "IsMemoryTrackerEnabled", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsModalDialog": { - "Category": "Data", - "MemberType": "Property", - "Name": "IsModalDialog", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "IsTenFootInterface": { - "MemberType": "Function", - "Name": "IsTenFootInterface", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsWindows": { - "Category": "Data", - "MemberType": "Property", - "Name": "IsWindows", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "KeyPressed": { - "MemberType": "Event", - "Name": "KeyPressed", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "modifiers", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MenuClosed": { - "MemberType": "Event", - "Name": "MenuClosed", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MenuIsOpen": { - "Category": "Data", - "MemberType": "Property", - "Name": "MenuIsOpen", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "MenuOpened": { - "MemberType": "Event", - "Name": "MenuOpened", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "NativeClose": { - "MemberType": "Event", - "Name": "NativeClose", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "NetworkPausedEnabledChanged": { - "MemberType": "Event", - "Name": "NetworkPausedEnabledChanged", - "Parameters": [ - { - "Name": "enabled", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Open9SliceEditor": { - "MemberType": "Event", - "Name": "Open9SliceEditor", - "Parameters": [ - { - "Name": "selectedImageObject", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OpenBrowserWindow": { - "MemberType": "Function", - "Name": "OpenBrowserWindow", - "Parameters": [ - { - "Name": "url", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "OpenNativeOverlay": { - "MemberType": "Function", - "Name": "OpenNativeOverlay", - "Parameters": [ - { - "Name": "title", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "url", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "PreferredTransparency": { - "Category": "Data", - "MemberType": "Property", - "Name": "PreferredTransparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "PurchasePromptShown": { - "MemberType": "Event", - "Name": "PurchasePromptShown", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ReducedMotionEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "ReducedMotionEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "RemoveCenterDialog": { - "MemberType": "Function", - "Name": "RemoveCenterDialog", - "Parameters": [ - { - "Name": "dialog", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RemoveKey": { - "MemberType": "Function", - "Name": "RemoveKey", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RemoveSelectionGroup": { - "MemberType": "Function", - "Name": "RemoveSelectionGroup", - "Parameters": [ - { - "Name": "selectionName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RemoveSpecialKey": { - "MemberType": "Function", - "Name": "RemoveSpecialKey", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Enum", - "Name": "SpecialKey" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SafeZoneOffsetsChanged": { - "MemberType": "Event", - "Name": "SafeZoneOffsetsChanged", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Select": { - "MemberType": "Function", - "Name": "Select", - "Parameters": [ - { - "Name": "selectionParent", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SelectedCoreObject": { - "Category": "Data", - "MemberType": "Property", - "Name": "SelectedCoreObject", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "GuiObject" - } - }, - "SelectedObject": { - "Category": "Data", - "MemberType": "Property", - "Name": "SelectedObject", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "GuiObject" - } - }, - "SendCoreUiNotification": { - "MemberType": "Callback", - "Name": "SendCoreUiNotification", - "Parameters": [ - { - "Name": "title", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "text", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetEmotesMenuOpen": { - "MemberType": "Function", - "Name": "SetEmotesMenuOpen", - "Parameters": [ - { - "Name": "isOpen", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetGameplayPausedNotificationEnabled": { - "MemberType": "Function", - "Name": "SetGameplayPausedNotificationEnabled", - "Parameters": [ - { - "Name": "enabled", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetGlobalGuiInset": { - "MemberType": "Function", - "Name": "SetGlobalGuiInset", - "Parameters": [ - { - "Name": "x1", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "y1", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "x2", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "y2", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetHardwareSafeAreaInsets": { - "MemberType": "Function", - "Name": "SetHardwareSafeAreaInsets", - "Parameters": [ - { - "Name": "left", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "top", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "right", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "bottom", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetInspectMenuEnabled": { - "MemberType": "Function", - "Name": "SetInspectMenuEnabled", - "Parameters": [ - { - "Name": "enabled", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetMenuIsOpen": { - "MemberType": "Function", - "Name": "SetMenuIsOpen", - "Parameters": [ - { - "Name": "open", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Default": "default", - "Name": "menuName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetPurchasePromptIsShown": { - "MemberType": "Function", - "Name": "SetPurchasePromptIsShown", - "Parameters": [ - { - "Name": "isShown", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetSafeZoneOffsets": { - "MemberType": "Function", - "Name": "SetSafeZoneOffsets", - "Parameters": [ - { - "Name": "top", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "bottom", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "left", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "right", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetUiMessage": { - "MemberType": "Function", - "Name": "SetUiMessage", - "Parameters": [ - { - "Name": "msgType", - "Type": { - "Category": "Enum", - "Name": "UiMessageType" - } - }, - { - "Default": "errorCode", - "Name": "uiMessage", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ShowLeaveConfirmation": { - "MemberType": "Event", - "Name": "ShowLeaveConfirmation", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ShowStatsBasedOnInputString": { - "MemberType": "Function", - "Name": "ShowStatsBasedOnInputString", - "Parameters": [ - { - "Name": "input", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SpecialKeyPressed": { - "MemberType": "Event", - "Name": "SpecialKeyPressed", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Enum", - "Name": "SpecialKey" - } - }, - { - "Name": "modifiers", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ToggleFullscreen": { - "MemberType": "Function", - "Name": "ToggleFullscreen", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ToggleGuiIsVisibleForCaptures": { - "MemberType": "Function", - "Name": "ToggleGuiIsVisibleForCaptures", - "Parameters": [ - { - "Name": "guiType", - "Type": { - "Category": "Enum", - "Name": "GuiType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ToggleGuiIsVisibleIfAllowed": { - "MemberType": "Function", - "Name": "ToggleGuiIsVisibleIfAllowed", - "Parameters": [ - { - "Name": "guiType", - "Type": { - "Category": "Enum", - "Name": "GuiType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TouchControlsEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "TouchControlsEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "UiMessageChanged": { - "MemberType": "Event", - "Name": "UiMessageChanged", - "Parameters": [ - { - "Name": "msgType", - "Type": { - "Category": "Enum", - "Name": "UiMessageType" - } - }, - { - "Name": "newUiMessage", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "GuiService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "GuidRegistryService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "GuidRegistryService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "HSRDataContentProvider": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "HSRDataContentProvider", - "Superclass": "CacheableContentProvider", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "HandleAdornment": { - "Members": { - "AdornCullingMode": { - "Category": "Data", - "MemberType": "Property", - "Name": "AdornCullingMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "AdornCullingMode" - } - }, - "AlwaysOnTop": { - "Category": "Data", - "MemberType": "Property", - "Name": "AlwaysOnTop", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "CFrame": { - "Category": "Data", - "MemberType": "Property", - "Name": "CFrame", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "MouseButton1Down": { - "MemberType": "Event", - "Name": "MouseButton1Down", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MouseButton1Up": { - "MemberType": "Event", - "Name": "MouseButton1Up", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MouseEnter": { - "MemberType": "Event", - "Name": "MouseEnter", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MouseLeave": { - "MemberType": "Event", - "Name": "MouseLeave", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SizeRelativeOffset": { - "Category": "Data", - "MemberType": "Property", - "Name": "SizeRelativeOffset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "ZIndex": { - "Category": "Data", - "MemberType": "Property", - "Name": "ZIndex", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - } - }, - "MemoryCategory": "Instances", - "Name": "HandleAdornment", - "Superclass": "PVAdornment", - "Tags": [ - "NotCreatable" - ] - }, - "Handles": { - "Members": { - "Faces": { - "Category": "Data", - "MemberType": "Property", - "Name": "Faces", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Faces" - } - }, - "MouseButton1Down": { - "MemberType": "Event", - "Name": "MouseButton1Down", - "Parameters": [ - { - "Name": "face", - "Type": { - "Category": "Enum", - "Name": "NormalId" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MouseButton1Up": { - "MemberType": "Event", - "Name": "MouseButton1Up", - "Parameters": [ - { - "Name": "face", - "Type": { - "Category": "Enum", - "Name": "NormalId" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MouseDrag": { - "MemberType": "Event", - "Name": "MouseDrag", - "Parameters": [ - { - "Name": "face", - "Type": { - "Category": "Enum", - "Name": "NormalId" - } - }, - { - "Name": "distance", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MouseEnter": { - "MemberType": "Event", - "Name": "MouseEnter", - "Parameters": [ - { - "Name": "face", - "Type": { - "Category": "Enum", - "Name": "NormalId" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MouseLeave": { - "MemberType": "Event", - "Name": "MouseLeave", - "Parameters": [ - { - "Name": "face", - "Type": { - "Category": "Enum", - "Name": "NormalId" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Style": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Style", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "HandlesStyle" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Handles", - "Superclass": "HandlesBase" - }, - "HandlesBase": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "HandlesBase", - "Superclass": "PartAdornment", - "Tags": [ - "NotCreatable" - ] - }, - "HapticService": { - "Members": { - "GetMotor": { - "MemberType": "Function", - "Name": "GetMotor", - "Parameters": [ - { - "Name": "inputType", - "Type": { - "Category": "Enum", - "Name": "UserInputType" - } - }, - { - "Name": "vibrationMotor", - "Type": { - "Category": "Enum", - "Name": "VibrationMotor" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsMotorSupported": { - "MemberType": "Function", - "Name": "IsMotorSupported", - "Parameters": [ - { - "Name": "inputType", - "Type": { - "Category": "Enum", - "Name": "UserInputType" - } - }, - { - "Name": "vibrationMotor", - "Type": { - "Category": "Enum", - "Name": "VibrationMotor" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsVibrationSupported": { - "MemberType": "Function", - "Name": "IsVibrationSupported", - "Parameters": [ - { - "Name": "inputType", - "Type": { - "Category": "Enum", - "Name": "UserInputType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetMotor": { - "MemberType": "Function", - "Name": "SetMotor", - "Parameters": [ - { - "Name": "inputType", - "Type": { - "Category": "Enum", - "Name": "UserInputType" - } - }, - { - "Name": "vibrationMotor", - "Type": { - "Category": "Enum", - "Name": "VibrationMotor" - } - }, - { - "Name": "vibrationValues", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "HapticService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "Hat": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "Hat", - "Superclass": "Accoutrement", - "Tags": [ - "Deprecated" - ] - }, - "HeightmapImporterService": { - "Members": { - "CancelImportHeightmap": { - "MemberType": "Function", - "Name": "CancelImportHeightmap", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ColormapHasUnknownPixels": { - "MemberType": "Event", - "Name": "ColormapHasUnknownPixels", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetHeightmapPreviewAsync": { - "MemberType": "Function", - "Name": "GetHeightmapPreviewAsync", - "Parameters": [ - { - "Name": "heightmapAssetId", - "Type": { - "Category": "DataType", - "Name": "Content" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ImportHeightmap": { - "MemberType": "Function", - "Name": "ImportHeightmap", - "Parameters": [ - { - "Name": "region", - "Type": { - "Category": "DataType", - "Name": "Region3" - } - }, - { - "Name": "heightmapAssetId", - "Type": { - "Category": "DataType", - "Name": "Content" - } - }, - { - "Name": "colormapAssetId", - "Type": { - "Category": "DataType", - "Name": "Content" - } - }, - { - "Name": "defaultMaterial", - "Type": { - "Category": "Enum", - "Name": "Material" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "IsValidColormap": { - "MemberType": "Function", - "Name": "IsValidColormap", - "Parameters": [ - { - "Name": "colormapAssetId", - "Type": { - "Category": "DataType", - "Name": "Content" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsValidHeightmap": { - "MemberType": "Function", - "Name": "IsValidHeightmap", - "Parameters": [ - { - "Name": "heightmapAssetId", - "Type": { - "Category": "DataType", - "Name": "Content" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ProgressUpdate": { - "MemberType": "Event", - "Name": "ProgressUpdate", - "Parameters": [ - { - "Name": "progressRatio", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "operation", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetImportHeightmapPaused": { - "MemberType": "Function", - "Name": "SetImportHeightmapPaused", - "Parameters": [ - { - "Name": "paused", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "HeightmapImporterService", - "Superclass": "Instance", - "Tags": [ - "Service", - "NotReplicated" - ] - }, - "HiddenSurfaceRemovalAsset": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "HiddenSurfaceRemovalAsset", - "Superclass": "Instance" - }, - "Highlight": { - "Members": { - "Adornee": { - "Category": "Data", - "MemberType": "Property", - "Name": "Adornee", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - }, - "DepthMode": { - "Category": "Data", - "MemberType": "Property", - "Name": "DepthMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "HighlightDepthMode" - } - }, - "Enabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "FillColor": { - "Category": "Data", - "MemberType": "Property", - "Name": "FillColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "FillTransparency": { - "Category": "Data", - "MemberType": "Property", - "Name": "FillTransparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LineThickness": { - "Category": "Data", - "MemberType": "Property", - "Name": "LineThickness", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "OutlineColor": { - "Category": "Data", - "MemberType": "Property", - "Name": "OutlineColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "OutlineTransparency": { - "Category": "Data", - "MemberType": "Property", - "Name": "OutlineTransparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ReservedId": { - "Category": "Data", - "MemberType": "Property", - "Name": "ReservedId", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ReservedHighlightId" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Highlight", - "Superclass": "Instance" - }, - "HingeConstraint": { - "Members": { - "ActuatorType": { - "Category": "Hinge", - "MemberType": "Property", - "Name": "ActuatorType", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ActuatorType" - } - }, - "AngularResponsiveness": { - "Category": "Servo", - "MemberType": "Property", - "Name": "AngularResponsiveness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "AngularSpeed": { - "Category": "Servo", - "MemberType": "Property", - "Name": "AngularSpeed", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "AngularVelocity": { - "Category": "Motor", - "MemberType": "Property", - "Name": "AngularVelocity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "CurrentAngle": { - "Category": "Derived", - "MemberType": "Property", - "Name": "CurrentAngle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LimitsEnabled": { - "Category": "Hinge", - "MemberType": "Property", - "Name": "LimitsEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "LowerAngle": { - "Category": "Limits", - "MemberType": "Property", - "Name": "LowerAngle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MotorMaxAcceleration": { - "Category": "Motor", - "MemberType": "Property", - "Name": "MotorMaxAcceleration", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MotorMaxTorque": { - "Category": "Motor", - "MemberType": "Property", - "Name": "MotorMaxTorque", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Radius": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Radius", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Restitution": { - "Category": "Limits", - "MemberType": "Property", - "Name": "Restitution", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ServoMaxTorque": { - "Category": "Servo", - "MemberType": "Property", - "Name": "ServoMaxTorque", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TargetAngle": { - "Category": "Servo", - "MemberType": "Property", - "Name": "TargetAngle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "UpperAngle": { - "Category": "Limits", - "MemberType": "Property", - "Name": "UpperAngle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "HingeConstraint", - "Superclass": "Constraint" - }, - "Hint": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "Hint", - "Superclass": "Message", - "Tags": [ - "Deprecated" - ] - }, - "Hole": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "Hole", - "Superclass": "Feature", - "Tags": [ - "Deprecated" - ] - }, - "Hopper": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "Hopper", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "Deprecated" - ] - }, - "HopperBin": { - "Members": { - "Active": { - "Category": "Data", - "MemberType": "Property", - "Name": "Active", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "BinType": { - "Category": "Data", - "MemberType": "Property", - "Name": "BinType", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "BinType" - } - }, - "Deselected": { - "MemberType": "Event", - "Name": "Deselected", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Disable": { - "MemberType": "Function", - "Name": "Disable", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Selected": { - "MemberType": "Event", - "Name": "Selected", - "Parameters": [ - { - "Name": "mouse", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ToggleSelect": { - "MemberType": "Function", - "Name": "ToggleSelect", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "HopperBin", - "Superclass": "BackpackItem", - "Tags": [ - "Deprecated" - ] - }, - "HttpRbxApiService": { - "Members": { - "GetAsync": { - "MemberType": "Function", - "Name": "GetAsync", - "Parameters": [ - { - "Name": "apiUrlPath", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "Default", - "Name": "priority", - "Type": { - "Category": "Enum", - "Name": "ThrottlingPriority" - } - }, - { - "Default": "Default", - "Name": "httpRequestType", - "Type": { - "Category": "Enum", - "Name": "HttpRequestType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetAsyncFullUrl": { - "MemberType": "Function", - "Name": "GetAsyncFullUrl", - "Parameters": [ - { - "Name": "apiUrl", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "Default", - "Name": "priority", - "Type": { - "Category": "Enum", - "Name": "ThrottlingPriority" - } - }, - { - "Default": "Default", - "Name": "httpRequestType", - "Type": { - "Category": "Enum", - "Name": "HttpRequestType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetDocumentationUrl": { - "MemberType": "Function", - "Name": "GetDocumentationUrl", - "Parameters": [ - { - "Name": "partialUrl", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PostAsync": { - "MemberType": "Function", - "Name": "PostAsync", - "Parameters": [ - { - "Name": "apiUrlPath", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "data", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "Default", - "Name": "priority", - "Type": { - "Category": "Enum", - "Name": "ThrottlingPriority" - } - }, - { - "Default": "ApplicationJson", - "Name": "content_type", - "Type": { - "Category": "Enum", - "Name": "HttpContentType" - } - }, - { - "Default": "Default", - "Name": "httpRequestType", - "Type": { - "Category": "Enum", - "Name": "HttpRequestType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "PostAsyncFullUrl": { - "MemberType": "Function", - "Name": "PostAsyncFullUrl", - "Parameters": [ - { - "Name": "apiUrl", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "data", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "Default", - "Name": "priority", - "Type": { - "Category": "Enum", - "Name": "ThrottlingPriority" - } - }, - { - "Default": "ApplicationJson", - "Name": "content_type", - "Type": { - "Category": "Enum", - "Name": "HttpContentType" - } - }, - { - "Default": "Default", - "Name": "httpRequestType", - "Type": { - "Category": "Enum", - "Name": "HttpRequestType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "RequestAsync": { - "MemberType": "Function", - "Name": "RequestAsync", - "Parameters": [ - { - "Name": "requestOptions", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - }, - { - "Default": "Default", - "Name": "priority", - "Type": { - "Category": "Enum", - "Name": "ThrottlingPriority" - } - }, - { - "Default": "ApplicationJson", - "Name": "content_type", - "Type": { - "Category": "Enum", - "Name": "HttpContentType" - } - }, - { - "Default": "Default", - "Name": "httpRequestType", - "Type": { - "Category": "Enum", - "Name": "HttpRequestType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "RequestLimitedAsync": { - "MemberType": "Function", - "Name": "RequestLimitedAsync", - "Parameters": [ - { - "Name": "requestOptions", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - }, - { - "Default": "Default", - "Name": "priority", - "Type": { - "Category": "Enum", - "Name": "ThrottlingPriority" - } - }, - { - "Default": "ApplicationJson", - "Name": "content_type", - "Type": { - "Category": "Enum", - "Name": "HttpContentType" - } - }, - { - "Default": "Default", - "Name": "httpRequestType", - "Type": { - "Category": "Enum", - "Name": "HttpRequestType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "HttpRbxApiService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "HttpRequest": { - "Members": { - "Cancel": { - "MemberType": "Function", - "Name": "Cancel", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Start": { - "MemberType": "Function", - "Name": "Start", - "Parameters": [ - { - "Name": "callback", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "HttpRequest", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "HttpService": { - "Members": { - "GenerateGUID": { - "MemberType": "Function", - "Name": "GenerateGUID", - "Parameters": [ - { - "Default": "true", - "Name": "wrapInCurlyBraces", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GetAsync": { - "MemberType": "Function", - "Name": "GetAsync", - "Parameters": [ - { - "Name": "url", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "false", - "Name": "nocache", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "headers", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetHttpEnabled": { - "MemberType": "Function", - "Name": "GetHttpEnabled", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetUserAgent": { - "MemberType": "Function", - "Name": "GetUserAgent", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "HttpEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "HttpEnabled", - "Security": { - "Read": "LocalUserSecurity", - "Write": "LocalUserSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "JSONDecode": { - "MemberType": "Function", - "Name": "JSONDecode", - "Parameters": [ - { - "Name": "input", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Variant" - }, - "Security": "None", - "Tags": { - "CustomLuaState": true - }, - "ThreadSafety": "Safe" - }, - "JSONEncode": { - "MemberType": "Function", - "Name": "JSONEncode", - "Parameters": [ - { - "Name": "input", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": { - "CustomLuaState": true - }, - "ThreadSafety": "Safe" - }, - "PostAsync": { - "MemberType": "Function", - "Name": "PostAsync", - "Parameters": [ - { - "Name": "url", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "data", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "ApplicationJson", - "Name": "content_type", - "Type": { - "Category": "Enum", - "Name": "HttpContentType" - } - }, - { - "Default": "false", - "Name": "compress", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "headers", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "RequestAsync": { - "MemberType": "Function", - "Name": "RequestAsync", - "Parameters": [ - { - "Name": "requestOptions", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "RequestInternal": { - "MemberType": "Function", - "Name": "RequestInternal", - "Parameters": [ - { - "Name": "options", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetHttpEnabled": { - "MemberType": "Function", - "Name": "SetHttpEnabled", - "Parameters": [ - { - "Name": "enabled", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UrlEncode": { - "MemberType": "Function", - "Name": "UrlEncode", - "Parameters": [ - { - "Name": "input", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - } - }, - "MemoryCategory": "Instances", - "Name": "HttpService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "Humanoid": { - "Members": { - "AddAccessory": { - "MemberType": "Function", - "Name": "AddAccessory", - "Parameters": [ - { - "Name": "accessory", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "AddCustomStatus": { - "MemberType": "Function", - "Name": "AddCustomStatus", - "Parameters": [ - { - "Name": "status", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "AddStatus": { - "MemberType": "Function", - "Name": "AddStatus", - "Parameters": [ - { - "Default": "Poison", - "Name": "status", - "Type": { - "Category": "Enum", - "Name": "Status" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "AnimationPlayed": { - "MemberType": "Event", - "Name": "AnimationPlayed", - "Parameters": [ - { - "Name": "animationTrack", - "Type": { - "Category": "Class", - "Name": "AnimationTrack" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "ApplyDescription": { - "MemberType": "Function", - "Name": "ApplyDescription", - "Parameters": [ - { - "Name": "humanoidDescription", - "Type": { - "Category": "Class", - "Name": "HumanoidDescription" - } - }, - { - "Default": "Default", - "Name": "assetTypeVerification", - "Type": { - "Category": "Enum", - "Name": "AssetTypeVerification" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ApplyDescriptionBlocking": { - "MemberType": "Function", - "Name": "ApplyDescriptionBlocking", - "Parameters": [ - { - "Name": "humanoidDescription", - "Type": { - "Category": "Class", - "Name": "HumanoidDescription" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ApplyDescriptionClientServer": { - "MemberType": "Function", - "Name": "ApplyDescriptionClientServer", - "Parameters": [ - { - "Name": "humanoidDescription", - "Type": { - "Category": "Class", - "Name": "HumanoidDescription" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ApplyDescriptionReset": { - "MemberType": "Function", - "Name": "ApplyDescriptionReset", - "Parameters": [ - { - "Name": "humanoidDescription", - "Type": { - "Category": "Class", - "Name": "HumanoidDescription" - } - }, - { - "Default": "Default", - "Name": "assetTypeVerification", - "Type": { - "Category": "Enum", - "Name": "AssetTypeVerification" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "AutoJumpEnabled": { - "Category": "Jump Settings", - "MemberType": "Property", - "Name": "AutoJumpEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AutoRotate": { - "Category": "Control", - "MemberType": "Property", - "Name": "AutoRotate", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AutomaticScalingEnabled": { - "Category": "Game", - "MemberType": "Property", - "Name": "AutomaticScalingEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "BreakJointsOnDeath": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "BreakJointsOnDeath", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "BuildRigFromAttachments": { - "MemberType": "Function", - "Name": "BuildRigFromAttachments", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CacheDefaults": { - "MemberType": "Function", - "Name": "CacheDefaults", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CameraOffset": { - "Category": "Data", - "MemberType": "Property", - "Name": "CameraOffset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "ChangeState": { - "MemberType": "Function", - "Name": "ChangeState", - "Parameters": [ - { - "Default": "None", - "Name": "state", - "Type": { - "Category": "Enum", - "Name": "HumanoidStateType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Climbing": { - "MemberType": "Event", - "Name": "Climbing", - "Parameters": [ - { - "Name": "speed", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ClusterCompositionFinished": { - "MemberType": "Event", - "Name": "ClusterCompositionFinished", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CollisionType": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "CollisionType", - "Security": { - "Read": "None", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "HumanoidCollisionType" - } - }, - "CustomStatusAdded": { - "MemberType": "Event", - "Name": "CustomStatusAdded", - "Parameters": [ - { - "Name": "status", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "CustomStatusRemoved": { - "MemberType": "Event", - "Name": "CustomStatusRemoved", - "Parameters": [ - { - "Name": "status", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "Died": { - "MemberType": "Event", - "Name": "Died", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DisplayDistanceType": { - "Category": "Data", - "MemberType": "Property", - "Name": "DisplayDistanceType", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "HumanoidDisplayDistanceType" - } - }, - "DisplayName": { - "Category": "Data", - "MemberType": "Property", - "Name": "DisplayName", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "EmoteTriggered": { - "MemberType": "Event", - "Name": "EmoteTriggered", - "Parameters": [ - { - "Name": "success", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "animationTrack", - "Type": { - "Category": "Class", - "Name": "AnimationTrack" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "EquipTool": { - "MemberType": "Function", - "Name": "EquipTool", - "Parameters": [ - { - "Name": "tool", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "EvaluateStateMachine": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "EvaluateStateMachine", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotBrowsable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "FallingDown": { - "MemberType": "Event", - "Name": "FallingDown", - "Parameters": [ - { - "Name": "active", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "FloorMaterial": { - "Category": "Control", - "MemberType": "Property", - "Name": "FloorMaterial", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "Material" - } - }, - "FreeFalling": { - "MemberType": "Event", - "Name": "FreeFalling", - "Parameters": [ - { - "Name": "active", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetAccessories": { - "MemberType": "Function", - "Name": "GetAccessories", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetAccessoryHandleScale": { - "MemberType": "Function", - "Name": "GetAccessoryHandleScale", - "Parameters": [ - { - "Name": "instance", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "partType", - "Type": { - "Category": "Enum", - "Name": "BodyPartR15" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Vector3" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetAppliedDescription": { - "MemberType": "Function", - "Name": "GetAppliedDescription", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "HumanoidDescription" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetBodyPartR15": { - "MemberType": "Function", - "Name": "GetBodyPartR15", - "Parameters": [ - { - "Name": "part", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Enum", - "Name": "BodyPartR15" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetLimb": { - "MemberType": "Function", - "Name": "GetLimb", - "Parameters": [ - { - "Name": "part", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Enum", - "Name": "Limb" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetMoveVelocity": { - "MemberType": "Function", - "Name": "GetMoveVelocity", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Vector3" - }, - "Security": "None", - "Tags": { - "NotBrowsable": true - }, - "ThreadSafety": "Unsafe" - }, - "GetPlayingAnimationTracks": { - "MemberType": "Function", - "Name": "GetPlayingAnimationTracks", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetState": { - "MemberType": "Function", - "Name": "GetState", - "Parameters": {}, - "ReturnType": { - "Category": "Enum", - "Name": "HumanoidStateType" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GetStateEnabled": { - "MemberType": "Function", - "Name": "GetStateEnabled", - "Parameters": [ - { - "Name": "state", - "Type": { - "Category": "Enum", - "Name": "HumanoidStateType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GetStatuses": { - "MemberType": "Function", - "Name": "GetStatuses", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GettingUp": { - "MemberType": "Event", - "Name": "GettingUp", - "Parameters": [ - { - "Name": "active", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "HasCustomStatus": { - "MemberType": "Function", - "Name": "HasCustomStatus", - "Parameters": [ - { - "Name": "status", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "HasStatus": { - "MemberType": "Function", - "Name": "HasStatus", - "Parameters": [ - { - "Default": "Poison", - "Name": "status", - "Type": { - "Category": "Enum", - "Name": "Status" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "Health": { - "Category": "Game", - "MemberType": "Property", - "Name": "Health", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "HealthChanged": { - "MemberType": "Event", - "Name": "HealthChanged", - "Parameters": [ - { - "Name": "health", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "HealthDisplayDistance": { - "Category": "Data", - "MemberType": "Property", - "Name": "HealthDisplayDistance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "HealthDisplayType": { - "Category": "Data", - "MemberType": "Property", - "Name": "HealthDisplayType", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "HumanoidHealthDisplayType" - } - }, - "HipHeight": { - "Category": "Game", - "MemberType": "Property", - "Name": "HipHeight", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "InternalDisplayName": { - "Category": "Data", - "MemberType": "Property", - "Name": "InternalDisplayName", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Jump": { - "Category": "Control", - "MemberType": "Property", - "Name": "Jump", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "JumpHeight": { - "Category": "Jump Settings", - "MemberType": "Property", - "Name": "JumpHeight", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "JumpPower": { - "Category": "Jump Settings", - "MemberType": "Property", - "Name": "JumpPower", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Jumping": { - "MemberType": "Event", - "Name": "Jumping", - "Parameters": [ - { - "Name": "active", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "LeftLeg": { - "Category": "Data", - "MemberType": "Property", - "Name": "LeftLeg", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "BasePart" - } - }, - "LoadAnimation": { - "MemberType": "Function", - "Name": "LoadAnimation", - "Parameters": [ - { - "Name": "animation", - "Type": { - "Category": "Class", - "Name": "Animation" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "AnimationTrack" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "MaxHealth": { - "Category": "Game", - "MemberType": "Property", - "Name": "MaxHealth", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MaxSlopeAngle": { - "Category": "Game", - "MemberType": "Property", - "Name": "MaxSlopeAngle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Move": { - "MemberType": "Function", - "Name": "Move", - "Parameters": [ - { - "Name": "moveDirection", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Default": "false", - "Name": "relativeToCamera", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MoveDirection": { - "Category": "Control", - "MemberType": "Property", - "Name": "MoveDirection", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "MoveTo": { - "MemberType": "Function", - "Name": "MoveTo", - "Parameters": [ - { - "Name": "location", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Default": "nil", - "Name": "part", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MoveToFinished": { - "MemberType": "Event", - "Name": "MoveToFinished", - "Parameters": [ - { - "Name": "reached", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "NameDisplayDistance": { - "Category": "Data", - "MemberType": "Property", - "Name": "NameDisplayDistance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "NameOcclusion": { - "Category": "Data", - "MemberType": "Property", - "Name": "NameOcclusion", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "NameOcclusion" - } - }, - "PlatformStand": { - "Category": "Control", - "MemberType": "Property", - "Name": "PlatformStand", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "PlatformStanding": { - "MemberType": "Event", - "Name": "PlatformStanding", - "Parameters": [ - { - "Name": "active", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PlayEmote": { - "MemberType": "Function", - "Name": "PlayEmote", - "Parameters": [ - { - "Name": "emoteName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "PlayEmoteAndGetAnimTrackById": { - "MemberType": "Function", - "Name": "PlayEmoteAndGetAnimTrackById", - "Parameters": [ - { - "Name": "emoteId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "Ragdoll": { - "MemberType": "Event", - "Name": "Ragdoll", - "Parameters": [ - { - "Name": "active", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RemoveAccessories": { - "MemberType": "Function", - "Name": "RemoveAccessories", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RemoveCustomStatus": { - "MemberType": "Function", - "Name": "RemoveCustomStatus", - "Parameters": [ - { - "Name": "status", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "RemoveStatus": { - "MemberType": "Function", - "Name": "RemoveStatus", - "Parameters": [ - { - "Default": "Poison", - "Name": "status", - "Type": { - "Category": "Enum", - "Name": "Status" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "ReplaceBodyPartR15": { - "MemberType": "Function", - "Name": "ReplaceBodyPartR15", - "Parameters": [ - { - "Name": "bodyPart", - "Type": { - "Category": "Enum", - "Name": "BodyPartR15" - } - }, - { - "Name": "part", - "Type": { - "Category": "Class", - "Name": "BasePart" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RequiresNeck": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "RequiresNeck", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "RigType": { - "Category": "Data", - "MemberType": "Property", - "Name": "RigType", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "HumanoidRigType" - } - }, - "RightLeg": { - "Category": "Data", - "MemberType": "Property", - "Name": "RightLeg", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "BasePart" - } - }, - "RootPart": { - "Category": "Data", - "MemberType": "Property", - "Name": "RootPart", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "BasePart" - } - }, - "Running": { - "MemberType": "Event", - "Name": "Running", - "Parameters": [ - { - "Name": "speed", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SeatPart": { - "Category": "Control", - "MemberType": "Property", - "Name": "SeatPart", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "BasePart" - } - }, - "Seated": { - "MemberType": "Event", - "Name": "Seated", - "Parameters": [ - { - "Name": "active", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "currentSeatPart", - "Type": { - "Category": "Class", - "Name": "BasePart" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetClickToWalkEnabled": { - "MemberType": "Function", - "Name": "SetClickToWalkEnabled", - "Parameters": [ - { - "Name": "enabled", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetStateEnabled": { - "MemberType": "Function", - "Name": "SetStateEnabled", - "Parameters": [ - { - "Name": "state", - "Type": { - "Category": "Enum", - "Name": "HumanoidStateType" - } - }, - { - "Name": "enabled", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Sit": { - "Category": "Control", - "MemberType": "Property", - "Name": "Sit", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "StateChanged": { - "MemberType": "Event", - "Name": "StateChanged", - "Parameters": [ - { - "Name": "old", - "Type": { - "Category": "Enum", - "Name": "HumanoidStateType" - } - }, - { - "Name": "new", - "Type": { - "Category": "Enum", - "Name": "HumanoidStateType" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StateEnabledChanged": { - "MemberType": "Event", - "Name": "StateEnabledChanged", - "Parameters": [ - { - "Name": "state", - "Type": { - "Category": "Enum", - "Name": "HumanoidStateType" - } - }, - { - "Name": "isEnabled", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StatusAdded": { - "MemberType": "Event", - "Name": "StatusAdded", - "Parameters": [ - { - "Name": "status", - "Type": { - "Category": "Enum", - "Name": "Status" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "StatusRemoved": { - "MemberType": "Event", - "Name": "StatusRemoved", - "Parameters": [ - { - "Name": "status", - "Type": { - "Category": "Enum", - "Name": "Status" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "Strafing": { - "MemberType": "Event", - "Name": "Strafing", - "Parameters": [ - { - "Name": "active", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Swimming": { - "MemberType": "Event", - "Name": "Swimming", - "Parameters": [ - { - "Name": "speed", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TakeDamage": { - "MemberType": "Function", - "Name": "TakeDamage", - "Parameters": [ - { - "Name": "amount", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TargetPoint": { - "Category": "Control", - "MemberType": "Property", - "Name": "TargetPoint", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "Torso": { - "Category": "Data", - "MemberType": "Property", - "Name": "Torso", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "BasePart" - } - }, - "Touched": { - "MemberType": "Event", - "Name": "Touched", - "Parameters": [ - { - "Name": "touchingPart", - "Type": { - "Category": "Class", - "Name": "BasePart" - } - }, - { - "Name": "humanoidPart", - "Type": { - "Category": "Class", - "Name": "BasePart" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UnequipTools": { - "MemberType": "Function", - "Name": "UnequipTools", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UseJumpPower": { - "Category": "Jump Settings", - "MemberType": "Property", - "Name": "UseJumpPower", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "WalkSpeed": { - "Category": "Game", - "MemberType": "Property", - "Name": "WalkSpeed", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "WalkToPart": { - "Category": "Control", - "MemberType": "Property", - "Name": "WalkToPart", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "BasePart" - } - }, - "WalkToPoint": { - "Category": "Control", - "MemberType": "Property", - "Name": "WalkToPoint", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "loadAnimation": { - "MemberType": "Function", - "Name": "loadAnimation", - "Parameters": [ - { - "Name": "animation", - "Type": { - "Category": "Class", - "Name": "Animation" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "AnimationTrack" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "maxHealth": { - "Category": "Game", - "MemberType": "Property", - "Name": "maxHealth", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "takeDamage": { - "MemberType": "Function", - "Name": "takeDamage", - "Parameters": [ - { - "Name": "amount", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "Humanoid", - "Superclass": "Instance" - }, - "HumanoidController": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "HumanoidController", - "Superclass": "Controller" - }, - "HumanoidDescription": { - "Members": { - "AccessoryBlob": { - "Category": "Accessories", - "MemberType": "Property", - "Name": "AccessoryBlob", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "AddEmote": { - "MemberType": "Function", - "Name": "AddEmote", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "BackAccessory": { - "Category": "Accessories", - "MemberType": "Property", - "Name": "BackAccessory", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "BodyTypeScale": { - "Category": "Scale", - "MemberType": "Property", - "Name": "BodyTypeScale", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ClimbAnimation": { - "Category": "Animation", - "MemberType": "Property", - "Name": "ClimbAnimation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "DepthScale": { - "Category": "Scale", - "MemberType": "Property", - "Name": "DepthScale", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "EmotesChanged": { - "MemberType": "Event", - "Name": "EmotesChanged", - "Parameters": [ - { - "Name": "newEmotes", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "EquippedEmotesChanged": { - "MemberType": "Event", - "Name": "EquippedEmotesChanged", - "Parameters": [ - { - "Name": "newEquippedEmotes", - "Type": { - "Category": "Group", - "Name": "Array" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Face": { - "Category": "Body Parts", - "MemberType": "Property", - "Name": "Face", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "FaceAccessory": { - "Category": "Accessories", - "MemberType": "Property", - "Name": "FaceAccessory", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "FallAnimation": { - "Category": "Animation", - "MemberType": "Property", - "Name": "FallAnimation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "FrontAccessory": { - "Category": "Accessories", - "MemberType": "Property", - "Name": "FrontAccessory", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "GetAccessories": { - "MemberType": "Function", - "Name": "GetAccessories", - "Parameters": [ - { - "Name": "includeRigidAccessories", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetEmotes": { - "MemberType": "Function", - "Name": "GetEmotes", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetEquippedEmotes": { - "MemberType": "Function", - "Name": "GetEquippedEmotes", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GraphicTShirt": { - "Category": "Clothes", - "MemberType": "Property", - "Name": "GraphicTShirt", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "HairAccessory": { - "Category": "Accessories", - "MemberType": "Property", - "Name": "HairAccessory", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "HatAccessory": { - "Category": "Accessories", - "MemberType": "Property", - "Name": "HatAccessory", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Head": { - "Category": "Body Parts", - "MemberType": "Property", - "Name": "Head", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "HeadColor": { - "Category": "Body Colors", - "MemberType": "Property", - "Name": "HeadColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "HeadScale": { - "Category": "Scale", - "MemberType": "Property", - "Name": "HeadScale", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "HeightScale": { - "Category": "Scale", - "MemberType": "Property", - "Name": "HeightScale", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "IdleAnimation": { - "Category": "Animation", - "MemberType": "Property", - "Name": "IdleAnimation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "JumpAnimation": { - "Category": "Animation", - "MemberType": "Property", - "Name": "JumpAnimation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "LeftArm": { - "Category": "Body Parts", - "MemberType": "Property", - "Name": "LeftArm", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "LeftArmColor": { - "Category": "Body Colors", - "MemberType": "Property", - "Name": "LeftArmColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "LeftLeg": { - "Category": "Body Parts", - "MemberType": "Property", - "Name": "LeftLeg", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "LeftLegColor": { - "Category": "Body Colors", - "MemberType": "Property", - "Name": "LeftLegColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "MoodAnimation": { - "Category": "Animation", - "MemberType": "Property", - "Name": "MoodAnimation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "NeckAccessory": { - "Category": "Accessories", - "MemberType": "Property", - "Name": "NeckAccessory", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "NumberEmotesLoaded": { - "Category": "Animation", - "MemberType": "Property", - "Name": "NumberEmotesLoaded", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "Pants": { - "Category": "Clothes", - "MemberType": "Property", - "Name": "Pants", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "ProportionScale": { - "Category": "Scale", - "MemberType": "Property", - "Name": "ProportionScale", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RemoveEmote": { - "MemberType": "Function", - "Name": "RemoveEmote", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RightArm": { - "Category": "Body Parts", - "MemberType": "Property", - "Name": "RightArm", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "RightArmColor": { - "Category": "Body Colors", - "MemberType": "Property", - "Name": "RightArmColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "RightLeg": { - "Category": "Body Parts", - "MemberType": "Property", - "Name": "RightLeg", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "RightLegColor": { - "Category": "Body Colors", - "MemberType": "Property", - "Name": "RightLegColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "RunAnimation": { - "Category": "Animation", - "MemberType": "Property", - "Name": "RunAnimation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "SetAccessories": { - "MemberType": "Function", - "Name": "SetAccessories", - "Parameters": [ - { - "Name": "accessories", - "Type": { - "Category": "Group", - "Name": "Array" - } - }, - { - "Name": "includeRigidAccessories", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetEmotes": { - "MemberType": "Function", - "Name": "SetEmotes", - "Parameters": [ - { - "Name": "emotes", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetEquippedEmotes": { - "MemberType": "Function", - "Name": "SetEquippedEmotes", - "Parameters": [ - { - "Name": "equippedEmotes", - "Type": { - "Category": "Group", - "Name": "Array" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Shirt": { - "Category": "Clothes", - "MemberType": "Property", - "Name": "Shirt", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "ShouldersAccessory": { - "Category": "Accessories", - "MemberType": "Property", - "Name": "ShouldersAccessory", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "SwimAnimation": { - "Category": "Animation", - "MemberType": "Property", - "Name": "SwimAnimation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "Torso": { - "Category": "Body Parts", - "MemberType": "Property", - "Name": "Torso", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "TorsoColor": { - "Category": "Body Colors", - "MemberType": "Property", - "Name": "TorsoColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "WaistAccessory": { - "Category": "Accessories", - "MemberType": "Property", - "Name": "WaistAccessory", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "WalkAnimation": { - "Category": "Animation", - "MemberType": "Property", - "Name": "WalkAnimation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "WidthScale": { - "Category": "Scale", - "MemberType": "Property", - "Name": "WidthScale", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "HumanoidDescription", - "Superclass": "Instance" - }, - "IKControl": { - "Members": { - "ChainRoot": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "ChainRoot", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - }, - "Enabled": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "EndEffector": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "EndEffector", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - }, - "EndEffectorOffset": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "EndEffectorOffset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "GetChainCount": { - "MemberType": "Function", - "Name": "GetChainCount", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetChainLength": { - "MemberType": "Function", - "Name": "GetChainLength", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "float" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetNodeLocalCFrame": { - "MemberType": "Function", - "Name": "GetNodeLocalCFrame", - "Parameters": [ - { - "Name": "index", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "CFrame" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetNodeWorldCFrame": { - "MemberType": "Function", - "Name": "GetNodeWorldCFrame", - "Parameters": [ - { - "Name": "index", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "CFrame" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetRawFinalTarget": { - "MemberType": "Function", - "Name": "GetRawFinalTarget", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "CFrame" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetSmoothedFinalTarget": { - "MemberType": "Function", - "Name": "GetSmoothedFinalTarget", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "CFrame" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Offset": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Offset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "Pole": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Pole", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - }, - "Priority": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Priority", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "SmoothTime": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "SmoothTime", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Target": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Target", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - }, - "Type": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Type", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "IKControlType" - } - }, - "Weight": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Weight", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Animation", - "Name": "IKControl", - "Superclass": "Instance" - }, - "ILegacyStudioBridge": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "ILegacyStudioBridge", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "IXPService": { - "Members": { - "ClearUserLayers": { - "MemberType": "Function", - "Name": "ClearUserLayers", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetBrowserTrackerLayerLoadingStatus": { - "MemberType": "Function", - "Name": "GetBrowserTrackerLayerLoadingStatus", - "Parameters": {}, - "ReturnType": { - "Category": "Enum", - "Name": "IXPLoadingStatus" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetBrowserTrackerLayerVariables": { - "MemberType": "Function", - "Name": "GetBrowserTrackerLayerVariables", - "Parameters": [ - { - "Name": "layerName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetBrowserTrackerStatusForLayer": { - "MemberType": "Function", - "Name": "GetBrowserTrackerStatusForLayer", - "Parameters": [ - { - "Name": "layerName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Enum", - "Name": "IXPLoadingStatus?" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetRegisteredUserLayersToStatus": { - "MemberType": "Function", - "Name": "GetRegisteredUserLayersToStatus", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetUserLayerLoadingStatus": { - "MemberType": "Function", - "Name": "GetUserLayerLoadingStatus", - "Parameters": {}, - "ReturnType": { - "Category": "Enum", - "Name": "IXPLoadingStatus" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetUserLayerVariables": { - "MemberType": "Function", - "Name": "GetUserLayerVariables", - "Parameters": [ - { - "Name": "layerName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetUserStatusForLayer": { - "MemberType": "Function", - "Name": "GetUserStatusForLayer", - "Parameters": [ - { - "Name": "layerName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Enum", - "Name": "IXPLoadingStatus?" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InitializeUserLayers": { - "MemberType": "Function", - "Name": "InitializeUserLayers", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "LogBrowserTrackerLayerExposure": { - "MemberType": "Function", - "Name": "LogBrowserTrackerLayerExposure", - "Parameters": [ - { - "Name": "layerName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "LogUserLayerExposure": { - "MemberType": "Function", - "Name": "LogUserLayerExposure", - "Parameters": [ - { - "Name": "layerName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnBrowserTrackerLayerLoadingStatusChanged": { - "MemberType": "Event", - "Name": "OnBrowserTrackerLayerLoadingStatusChanged", - "Parameters": [ - { - "Name": "status", - "Type": { - "Category": "Enum", - "Name": "IXPLoadingStatus" - } - } - ], - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnUserLayerLoadingStatusChanged": { - "MemberType": "Event", - "Name": "OnUserLayerLoadingStatusChanged", - "Parameters": [ - { - "Name": "status", - "Type": { - "Category": "Enum", - "Name": "IXPLoadingStatus" - } - } - ], - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RegisterUserLayers": { - "MemberType": "Function", - "Name": "RegisterUserLayers", - "Parameters": [ - { - "Name": "userLayers", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "IXPService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "ImageButton": { - "Members": { - "ContentImageSize": { - "Category": "Image", - "MemberType": "Property", - "Name": "ContentImageSize", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "HoverImage": { - "Category": "Image", - "MemberType": "Property", - "Name": "HoverImage", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "Image": { - "Category": "Image", - "MemberType": "Property", - "Name": "Image", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "ImageColor3": { - "Category": "Image", - "MemberType": "Property", - "Name": "ImageColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "ImageRectOffset": { - "Category": "Image", - "MemberType": "Property", - "Name": "ImageRectOffset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "ImageRectSize": { - "Category": "Image", - "MemberType": "Property", - "Name": "ImageRectSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "ImageTransparency": { - "Category": "Image", - "MemberType": "Property", - "Name": "ImageTransparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "IsLoaded": { - "Category": "Image", - "MemberType": "Property", - "Name": "IsLoaded", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "PressedImage": { - "Category": "Image", - "MemberType": "Property", - "Name": "PressedImage", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "ResampleMode": { - "Category": "Image", - "MemberType": "Property", - "Name": "ResampleMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ResamplerMode" - } - }, - "ScaleType": { - "Category": "Image", - "MemberType": "Property", - "Name": "ScaleType", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ScaleType" - } - }, - "SetEnableContentImageSizeChangedEvents": { - "MemberType": "Function", - "Name": "SetEnableContentImageSizeChangedEvents", - "Parameters": [ - { - "Name": "enabled", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SliceCenter": { - "Category": "Image", - "MemberType": "Property", - "Name": "SliceCenter", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Rect" - } - }, - "SliceScale": { - "Category": "Image", - "MemberType": "Property", - "Name": "SliceScale", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TileSize": { - "Category": "Image", - "MemberType": "Property", - "Name": "TileSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "UDim2" - } - } - }, - "MemoryCategory": "Gui", - "Name": "ImageButton", - "Superclass": "GuiButton" - }, - "ImageHandleAdornment": { - "Members": { - "Image": { - "Category": "Data", - "MemberType": "Property", - "Name": "Image", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "Size": { - "Category": "Data", - "MemberType": "Property", - "Name": "Size", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - } - }, - "MemoryCategory": "Instances", - "Name": "ImageHandleAdornment", - "Superclass": "HandleAdornment" - }, - "ImageLabel": { - "Members": { - "ContentImageSize": { - "Category": "Image", - "MemberType": "Property", - "Name": "ContentImageSize", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "Image": { - "Category": "Image", - "MemberType": "Property", - "Name": "Image", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "ImageColor3": { - "Category": "Image", - "MemberType": "Property", - "Name": "ImageColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "ImageRectOffset": { - "Category": "Image", - "MemberType": "Property", - "Name": "ImageRectOffset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "ImageRectSize": { - "Category": "Image", - "MemberType": "Property", - "Name": "ImageRectSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "ImageTransparency": { - "Category": "Image", - "MemberType": "Property", - "Name": "ImageTransparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "IsLoaded": { - "Category": "Image", - "MemberType": "Property", - "Name": "IsLoaded", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ResampleMode": { - "Category": "Image", - "MemberType": "Property", - "Name": "ResampleMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ResamplerMode" - } - }, - "ScaleType": { - "Category": "Image", - "MemberType": "Property", - "Name": "ScaleType", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ScaleType" - } - }, - "SetEnableContentImageSizeChangedEvents": { - "MemberType": "Function", - "Name": "SetEnableContentImageSizeChangedEvents", - "Parameters": [ - { - "Name": "enabled", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SliceCenter": { - "Category": "Image", - "MemberType": "Property", - "Name": "SliceCenter", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Rect" - } - }, - "SliceScale": { - "Category": "Image", - "MemberType": "Property", - "Name": "SliceScale", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TileSize": { - "Category": "Image", - "MemberType": "Property", - "Name": "TileSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "UDim2" - } - } - }, - "MemoryCategory": "Gui", - "Name": "ImageLabel", - "Superclass": "GuiLabel" - }, - "IncrementalPatchBuilder": { - "Members": { - "AddPathsToBundle": { - "Category": "Data", - "MemberType": "Property", - "Name": "AddPathsToBundle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "BuildDebouncePeriod": { - "Category": "Data", - "MemberType": "Property", - "Name": "BuildDebouncePeriod", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "HighCompression": { - "Category": "Data", - "MemberType": "Property", - "Name": "HighCompression", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "SerializePatch": { - "Category": "Data", - "MemberType": "Property", - "Name": "SerializePatch", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ZstdCompression": { - "Category": "Data", - "MemberType": "Property", - "Name": "ZstdCompression", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "IncrementalPatchBuilder", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "InputObject": { - "Members": { - "Delta": { - "Category": "Data", - "MemberType": "Property", - "Name": "Delta", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "IsModifierKeyDown": { - "MemberType": "Function", - "Name": "IsModifierKeyDown", - "Parameters": [ - { - "Name": "modifierKey", - "Type": { - "Category": "Enum", - "Name": "ModifierKey" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "KeyCode": { - "Category": "Data", - "MemberType": "Property", - "Name": "KeyCode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "KeyCode" - } - }, - "Position": { - "Category": "Data", - "MemberType": "Property", - "Name": "Position", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "UserInputState": { - "Category": "State", - "MemberType": "Property", - "Name": "UserInputState", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "UserInputState" - } - }, - "UserInputType": { - "Category": "Data", - "MemberType": "Property", - "Name": "UserInputType", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "UserInputType" - } - } - }, - "MemoryCategory": "Instances", - "Name": "InputObject", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "InsertService": { - "Members": { - "AllowClientInsertModels": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "AllowClientInsertModels", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AllowInsertFreeModels": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "AllowInsertFreeModels", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "NotBrowsable": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ApproveAssetId": { - "MemberType": "Function", - "Name": "ApproveAssetId", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "ApproveAssetVersionId": { - "MemberType": "Function", - "Name": "ApproveAssetVersionId", - "Parameters": [ - { - "Name": "assetVersionId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "CreateMeshPartAsync": { - "MemberType": "Function", - "Name": "CreateMeshPartAsync", - "Parameters": [ - { - "Name": "meshId", - "Type": { - "Category": "DataType", - "Name": "Content" - } - }, - { - "Name": "collisionFidelity", - "Type": { - "Category": "Enum", - "Name": "CollisionFidelity" - } - }, - { - "Name": "renderFidelity", - "Type": { - "Category": "Enum", - "Name": "RenderFidelity" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "MeshPart" - }, - "Security": "PluginSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetBaseCategories": { - "MemberType": "Function", - "Name": "GetBaseCategories", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": { - "Deprecated": true, - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetBaseSets": { - "MemberType": "Function", - "Name": "GetBaseSets", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetCollection": { - "MemberType": "Function", - "Name": "GetCollection", - "Parameters": [ - { - "Name": "categoryId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetFreeDecals": { - "MemberType": "Function", - "Name": "GetFreeDecals", - "Parameters": [ - { - "Name": "searchText", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "pageNum", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetFreeModels": { - "MemberType": "Function", - "Name": "GetFreeModels", - "Parameters": [ - { - "Name": "searchText", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "pageNum", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetLatestAssetVersionAsync": { - "MemberType": "Function", - "Name": "GetLatestAssetVersionAsync", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int64" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetLocalFileContents": { - "MemberType": "Function", - "Name": "GetLocalFileContents", - "Parameters": [ - { - "Name": "contentId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetUserCategories": { - "MemberType": "Function", - "Name": "GetUserCategories", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": { - "Deprecated": true, - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetUserSets": { - "MemberType": "Function", - "Name": "GetUserSets", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "Insert": { - "MemberType": "Function", - "Name": "Insert", - "Parameters": [ - { - "Name": "instance", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "LoadAsset": { - "MemberType": "Function", - "Name": "LoadAsset", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "LoadAssetVersion": { - "MemberType": "Function", - "Name": "LoadAssetVersion", - "Parameters": [ - { - "Name": "assetVersionId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "LoadAssetWithFormat": { - "MemberType": "Function", - "Name": "LoadAssetWithFormat", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "format", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "LoadLocalAsset": { - "MemberType": "Function", - "Name": "LoadLocalAsset", - "Parameters": [ - { - "Name": "assetPath", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "LoadPackageAsset": { - "MemberType": "Function", - "Name": "LoadPackageAsset", - "Parameters": [ - { - "Name": "url", - "Type": { - "Category": "DataType", - "Name": "Content" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "LoadPackageAssetAsync": { - "MemberType": "Function", - "Name": "LoadPackageAssetAsync", - "Parameters": [ - { - "Name": "url", - "Type": { - "Category": "DataType", - "Name": "Content" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "loadAsset": { - "MemberType": "Function", - "Name": "loadAsset", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "Deprecated": true, - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "InsertService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "Instance": { - "Members": { - "AddTag": { - "MemberType": "Function", - "Name": "AddTag", - "Parameters": [ - { - "Name": "tag", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "AncestryChanged": { - "MemberType": "Event", - "Name": "AncestryChanged", - "Parameters": [ - { - "Name": "child", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "parent", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Archivable": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Archivable", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AttributeChanged": { - "MemberType": "Event", - "Name": "AttributeChanged", - "Parameters": [ - { - "Name": "attribute", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Changed": { - "MemberType": "Event", - "Name": "Changed", - "Parameters": [ - { - "Name": "property", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ChildAdded": { - "MemberType": "Event", - "Name": "ChildAdded", - "Parameters": [ - { - "Name": "child", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ChildRemoved": { - "MemberType": "Event", - "Name": "ChildRemoved", - "Parameters": [ - { - "Name": "child", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ClassName": { - "Category": "Data", - "MemberType": "Property", - "Name": "ClassName", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "ClearAllChildren": { - "MemberType": "Function", - "Name": "ClearAllChildren", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Clone": { - "MemberType": "Function", - "Name": "Clone", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DataCost": { - "Category": "Data", - "MemberType": "Property", - "Name": "DataCost", - "Security": { - "Read": "LocalUserSecurity", - "Write": "LocalUserSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "DescendantAdded": { - "MemberType": "Event", - "Name": "DescendantAdded", - "Parameters": [ - { - "Name": "descendant", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DescendantRemoving": { - "MemberType": "Event", - "Name": "DescendantRemoving", - "Parameters": [ - { - "Name": "descendant", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Destroy": { - "MemberType": "Function", - "Name": "Destroy", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Destroying": { - "MemberType": "Event", - "Name": "Destroying", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "FindFirstAncestor": { - "MemberType": "Function", - "Name": "FindFirstAncestor", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "FindFirstAncestorOfClass": { - "MemberType": "Function", - "Name": "FindFirstAncestorOfClass", - "Parameters": [ - { - "Name": "className", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "FindFirstAncestorWhichIsA": { - "MemberType": "Function", - "Name": "FindFirstAncestorWhichIsA", - "Parameters": [ - { - "Name": "className", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "FindFirstChild": { - "MemberType": "Function", - "Name": "FindFirstChild", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "false", - "Name": "recursive", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "FindFirstChildOfClass": { - "MemberType": "Function", - "Name": "FindFirstChildOfClass", - "Parameters": [ - { - "Name": "className", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "FindFirstChildWhichIsA": { - "MemberType": "Function", - "Name": "FindFirstChildWhichIsA", - "Parameters": [ - { - "Name": "className", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "false", - "Name": "recursive", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "FindFirstDescendant": { - "MemberType": "Function", - "Name": "FindFirstDescendant", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GetActor": { - "MemberType": "Function", - "Name": "GetActor", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "Actor" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GetAttribute": { - "MemberType": "Function", - "Name": "GetAttribute", - "Parameters": [ - { - "Name": "attribute", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Variant" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GetAttributeChangedSignal": { - "MemberType": "Function", - "Name": "GetAttributeChangedSignal", - "Parameters": [ - { - "Name": "attribute", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "RBXScriptSignal" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetAttributes": { - "MemberType": "Function", - "Name": "GetAttributes", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GetChildren": { - "MemberType": "Function", - "Name": "GetChildren", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GetDebugId": { - "MemberType": "Function", - "Name": "GetDebugId", - "Parameters": [ - { - "Default": "4", - "Name": "scopeLength", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "PluginSecurity", - "Tags": { - "NotBrowsable": true - }, - "ThreadSafety": "Unsafe" - }, - "GetDescendants": { - "MemberType": "Function", - "Name": "GetDescendants", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": { - "CustomLuaState": true - }, - "ThreadSafety": "Safe" - }, - "GetFullName": { - "MemberType": "Function", - "Name": "GetFullName", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GetPropertyChangedSignal": { - "MemberType": "Function", - "Name": "GetPropertyChangedSignal", - "Parameters": [ - { - "Name": "property", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "RBXScriptSignal" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetTags": { - "MemberType": "Function", - "Name": "GetTags", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "HasTag": { - "MemberType": "Function", - "Name": "HasTag", - "Parameters": [ - { - "Name": "tag", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "IsA": { - "MemberType": "Function", - "Name": "IsA", - "Parameters": [ - { - "Name": "className", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "CustomLuaState": true - }, - "ThreadSafety": "Safe" - }, - "IsAncestorOf": { - "MemberType": "Function", - "Name": "IsAncestorOf", - "Parameters": [ - { - "Name": "descendant", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "IsDescendantOf": { - "MemberType": "Function", - "Name": "IsDescendantOf", - "Parameters": [ - { - "Name": "ancestor", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "IsPropertyModified": { - "MemberType": "Function", - "Name": "IsPropertyModified", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Name": { - "Category": "Data", - "MemberType": "Property", - "Name": "Name", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Parent": { - "Category": "Data", - "MemberType": "Property", - "Name": "Parent", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - }, - "Remove": { - "MemberType": "Function", - "Name": "Remove", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "RemoveTag": { - "MemberType": "Function", - "Name": "RemoveTag", - "Parameters": [ - { - "Name": "tag", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ResetPropertyToDefault": { - "MemberType": "Function", - "Name": "ResetPropertyToDefault", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RobloxLocked": { - "Category": "Data", - "MemberType": "Property", - "Name": "RobloxLocked", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "SetAttribute": { - "MemberType": "Function", - "Name": "SetAttribute", - "Parameters": [ - { - "Name": "attribute", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "value", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SourceAssetId": { - "Category": "Data", - "MemberType": "Property", - "Name": "SourceAssetId", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "WaitForChild": { - "MemberType": "Function", - "Name": "WaitForChild", - "Parameters": [ - { - "Name": "childName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "timeOut", - "Type": { - "Category": "Primitive", - "Name": "double" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "CanYield": true, - "CustomLuaState": true - }, - "ThreadSafety": "Unsafe" - }, - "archivable": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "archivable", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "childAdded": { - "MemberType": "Event", - "Name": "childAdded", - "Parameters": [ - { - "Name": "child", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "children": { - "MemberType": "Function", - "Name": "children", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "className": { - "Category": "Data", - "MemberType": "Property", - "Name": "className", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "clone": { - "MemberType": "Function", - "Name": "clone", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "destroy": { - "MemberType": "Function", - "Name": "destroy", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "findFirstChild": { - "MemberType": "Function", - "Name": "findFirstChild", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "false", - "Name": "recursive", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "getChildren": { - "MemberType": "Function", - "Name": "getChildren", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "isA": { - "MemberType": "Function", - "Name": "isA", - "Parameters": [ - { - "Name": "className", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "CustomLuaState": true, - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "isDescendantOf": { - "MemberType": "Function", - "Name": "isDescendantOf", - "Parameters": [ - { - "Name": "ancestor", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "remove": { - "MemberType": "Function", - "Name": "remove", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "Instance", - "Superclass": "<<>>", - "Tags": [ - "NotCreatable", - "NotBrowsable" - ] - }, - "InstanceAdornment": { - "Members": { - "Adornee": { - "Category": "Data", - "MemberType": "Property", - "Name": "Adornee", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - } - }, - "MemoryCategory": "Instances", - "Name": "InstanceAdornment", - "Superclass": "GuiBase3d", - "Tags": [ - "NotCreatable" - ] - }, - "IntConstrainedValue": { - "Members": { - "Changed": { - "MemberType": "Event", - "Name": "Changed", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ConstrainedValue": { - "Category": "Data", - "MemberType": "Property", - "Name": "ConstrainedValue", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "MaxValue": { - "Category": "Data", - "MemberType": "Property", - "Name": "MaxValue", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "MinValue": { - "Category": "Data", - "MemberType": "Property", - "Name": "MinValue", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "Value": { - "Category": "Data", - "MemberType": "Property", - "Name": "Value", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "changed": { - "MemberType": "Event", - "Name": "changed", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "IntConstrainedValue", - "Superclass": "ValueBase", - "Tags": [ - "Deprecated" - ] - }, - "IntValue": { - "Members": { - "Changed": { - "MemberType": "Event", - "Name": "Changed", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Value": { - "Category": "Data", - "MemberType": "Property", - "Name": "Value", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "changed": { - "MemberType": "Event", - "Name": "changed", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "IntValue", - "Superclass": "ValueBase" - }, - "IntersectOperation": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "IntersectOperation", - "Superclass": "PartOperation" - }, - "InventoryPages": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "InventoryPages", - "Superclass": "Pages", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "JointImportData": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "JointImportData", - "Superclass": "BaseImportData", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "JointInstance": { - "Members": { - "Active": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Active", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "C0": { - "Category": "Data", - "MemberType": "Property", - "Name": "C0", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "C1": { - "Category": "Data", - "MemberType": "Property", - "Name": "C1", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "Enabled": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Part0": { - "Category": "Data", - "MemberType": "Property", - "Name": "Part0", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "BasePart" - } - }, - "Part1": { - "Category": "Data", - "MemberType": "Property", - "Name": "Part1", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "BasePart" - } - }, - "part1": { - "Category": "Data", - "MemberType": "Property", - "Name": "part1", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "BasePart" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "JointInstance", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "JointsService": { - "Members": { - "ClearJoinAfterMoveJoints": { - "MemberType": "Function", - "Name": "ClearJoinAfterMoveJoints", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CreateJoinAfterMoveJoints": { - "MemberType": "Function", - "Name": "CreateJoinAfterMoveJoints", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetJoinAfterMoveInstance": { - "MemberType": "Function", - "Name": "SetJoinAfterMoveInstance", - "Parameters": [ - { - "Name": "joinInstance", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetJoinAfterMoveTarget": { - "MemberType": "Function", - "Name": "SetJoinAfterMoveTarget", - "Parameters": [ - { - "Name": "joinTarget", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ShowPermissibleJoints": { - "MemberType": "Function", - "Name": "ShowPermissibleJoints", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "JointsService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "Deprecated" - ] - }, - "KeyboardService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "KeyboardService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "Keyframe": { - "Members": { - "AddMarker": { - "MemberType": "Function", - "Name": "AddMarker", - "Parameters": [ - { - "Name": "marker", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "AddPose": { - "MemberType": "Function", - "Name": "AddPose", - "Parameters": [ - { - "Name": "pose", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetMarkers": { - "MemberType": "Function", - "Name": "GetMarkers", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetPoses": { - "MemberType": "Function", - "Name": "GetPoses", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RemoveMarker": { - "MemberType": "Function", - "Name": "RemoveMarker", - "Parameters": [ - { - "Name": "marker", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RemovePose": { - "MemberType": "Function", - "Name": "RemovePose", - "Parameters": [ - { - "Name": "pose", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Time": { - "Category": "Data", - "MemberType": "Property", - "Name": "Time", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Animation", - "Name": "Keyframe", - "Superclass": "Instance" - }, - "KeyframeMarker": { - "Members": { - "Value": { - "Category": "Data", - "MemberType": "Property", - "Name": "Value", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Animation", - "Name": "KeyframeMarker", - "Superclass": "Instance" - }, - "KeyframeSequence": { - "Members": { - "AddKeyframe": { - "MemberType": "Function", - "Name": "AddKeyframe", - "Parameters": [ - { - "Name": "keyframe", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "AuthoredHipHeight": { - "Category": "Data", - "MemberType": "Property", - "Name": "AuthoredHipHeight", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "GetKeyframes": { - "MemberType": "Function", - "Name": "GetKeyframes", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RemoveKeyframe": { - "MemberType": "Function", - "Name": "RemoveKeyframe", - "Parameters": [ - { - "Name": "keyframe", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Animation", - "Name": "KeyframeSequence", - "Superclass": "AnimationClip" - }, - "KeyframeSequenceProvider": { - "Members": { - "GetAnimations": { - "MemberType": "Function", - "Name": "GetAnimations", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetKeyframeSequence": { - "MemberType": "Function", - "Name": "GetKeyframeSequence", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "DataType", - "Name": "Content" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "PluginSecurity", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetKeyframeSequenceAsync": { - "MemberType": "Function", - "Name": "GetKeyframeSequenceAsync", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "DataType", - "Name": "Content" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetKeyframeSequenceById": { - "MemberType": "Function", - "Name": "GetKeyframeSequenceById", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "useCache", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "PluginSecurity", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetMemStats": { - "MemberType": "Function", - "Name": "GetMemStats", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RegisterActiveKeyframeSequence": { - "MemberType": "Function", - "Name": "RegisterActiveKeyframeSequence", - "Parameters": [ - { - "Name": "keyframeSequence", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Content" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RegisterKeyframeSequence": { - "MemberType": "Function", - "Name": "RegisterKeyframeSequence", - "Parameters": [ - { - "Name": "keyframeSequence", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Content" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Animation", - "Name": "KeyframeSequenceProvider", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "LSPFileSyncService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "LSPFileSyncService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "LanguageService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "LanguageService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "LayerCollector": { - "Members": { - "Enabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "GetLayoutNodeTree": { - "MemberType": "Function", - "Name": "GetLayoutNodeTree", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "ResetOnSpawn": { - "Category": "Data", - "MemberType": "Property", - "Name": "ResetOnSpawn", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ZIndexBehavior": { - "Category": "Data", - "MemberType": "Property", - "Name": "ZIndexBehavior", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ZIndexBehavior" - } - } - }, - "MemoryCategory": "Instances", - "Name": "LayerCollector", - "Superclass": "GuiBase2d", - "Tags": [ - "NotCreatable", - "NotBrowsable" - ] - }, - "LegacyStudioBridge": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "LegacyStudioBridge", - "Superclass": "ILegacyStudioBridge", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "Light": { - "Members": { - "Brightness": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Brightness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Color": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Enabled": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Shadows": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Shadows", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Light", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "Lighting": { - "Members": { - "Ambient": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Ambient", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Brightness": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Brightness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ClockTime": { - "Category": "Data", - "MemberType": "Property", - "Name": "ClockTime", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ColorShift_Bottom": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "ColorShift_Bottom", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "ColorShift_Top": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "ColorShift_Top", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "EnvironmentDiffuseScale": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "EnvironmentDiffuseScale", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "EnvironmentSpecularScale": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "EnvironmentSpecularScale", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ExposureCompensation": { - "Category": "Exposure", - "MemberType": "Property", - "Name": "ExposureCompensation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "FogColor": { - "Category": "Fog", - "MemberType": "Property", - "Name": "FogColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "FogEnd": { - "Category": "Fog", - "MemberType": "Property", - "Name": "FogEnd", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "FogStart": { - "Category": "Fog", - "MemberType": "Property", - "Name": "FogStart", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "GeographicLatitude": { - "Category": "Data", - "MemberType": "Property", - "Name": "GeographicLatitude", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "GetMinutesAfterMidnight": { - "MemberType": "Function", - "Name": "GetMinutesAfterMidnight", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "double" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetMoonDirection": { - "MemberType": "Function", - "Name": "GetMoonDirection", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Vector3" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetMoonPhase": { - "MemberType": "Function", - "Name": "GetMoonPhase", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "float" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetSunDirection": { - "MemberType": "Function", - "Name": "GetSunDirection", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Vector3" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GlobalShadows": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "GlobalShadows", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "LightingChanged": { - "MemberType": "Event", - "Name": "LightingChanged", - "Parameters": [ - { - "Name": "skyChanged", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OutdoorAmbient": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "OutdoorAmbient", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Outlines": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Outlines", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "SetMinutesAfterMidnight": { - "MemberType": "Function", - "Name": "SetMinutesAfterMidnight", - "Parameters": [ - { - "Name": "minutes", - "Type": { - "Category": "Primitive", - "Name": "double" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ShadowColor": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "ShadowColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "ShadowSoftness": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "ShadowSoftness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Technology": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Technology", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "Technology" - } - }, - "TempUseNewSkyRemovalBehaviour": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "TempUseNewSkyRemovalBehaviour", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "TimeOfDay": { - "Category": "Data", - "MemberType": "Property", - "Name": "TimeOfDay", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "getMinutesAfterMidnight": { - "MemberType": "Function", - "Name": "getMinutesAfterMidnight", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "double" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "setMinutesAfterMidnight": { - "MemberType": "Function", - "Name": "setMinutesAfterMidnight", - "Parameters": [ - { - "Name": "minutes", - "Type": { - "Category": "Primitive", - "Name": "double" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "Lighting", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "LineForce": { - "Members": { - "ApplyAtCenterOfMass": { - "Category": "LineForce", - "MemberType": "Property", - "Name": "ApplyAtCenterOfMass", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "InverseSquareLaw": { - "Category": "LineForce", - "MemberType": "Property", - "Name": "InverseSquareLaw", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Magnitude": { - "Category": "LineForce", - "MemberType": "Property", - "Name": "Magnitude", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MaxForce": { - "Category": "LineForce", - "MemberType": "Property", - "Name": "MaxForce", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ReactionForceEnabled": { - "Category": "LineForce", - "MemberType": "Property", - "Name": "ReactionForceEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "LineForce", - "Superclass": "Constraint" - }, - "LineHandleAdornment": { - "Members": { - "Length": { - "Category": "Data", - "MemberType": "Property", - "Name": "Length", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Thickness": { - "Category": "Data", - "MemberType": "Property", - "Name": "Thickness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "LineHandleAdornment", - "Superclass": "HandleAdornment" - }, - "LinearVelocity": { - "Members": { - "ForceLimitMode": { - "Category": "Limits", - "MemberType": "Property", - "Name": "ForceLimitMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ForceLimitMode" - } - }, - "LineDirection": { - "Category": "Line", - "MemberType": "Property", - "Name": "LineDirection", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "LineVelocity": { - "Category": "Line", - "MemberType": "Property", - "Name": "LineVelocity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MaxAxesForce": { - "Category": "Limits", - "MemberType": "Property", - "Name": "MaxAxesForce", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "MaxForce": { - "Category": "Limits", - "MemberType": "Property", - "Name": "MaxForce", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MaxPlanarAxesForce": { - "Category": "Limits", - "MemberType": "Property", - "Name": "MaxPlanarAxesForce", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "PlaneVelocity": { - "Category": "Plane", - "MemberType": "Property", - "Name": "PlaneVelocity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "PrimaryTangentAxis": { - "Category": "Plane", - "MemberType": "Property", - "Name": "PrimaryTangentAxis", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "RelativeTo": { - "Category": "Mode", - "MemberType": "Property", - "Name": "RelativeTo", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ActuatorRelativeTo" - } - }, - "SecondaryTangentAxis": { - "Category": "Plane", - "MemberType": "Property", - "Name": "SecondaryTangentAxis", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "VectorVelocity": { - "Category": "Vector", - "MemberType": "Property", - "Name": "VectorVelocity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "VelocityConstraintMode": { - "Category": "Mode", - "MemberType": "Property", - "Name": "VelocityConstraintMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "VelocityConstraintMode" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "LinearVelocity", - "Superclass": "Constraint" - }, - "LiveScriptingService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "LiveScriptingService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "LocalDebuggerConnection": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "LocalDebuggerConnection", - "Superclass": "DebuggerConnection", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "LocalScript": { - "Members": {}, - "MemoryCategory": "Script", - "Name": "LocalScript", - "Superclass": "Script" - }, - "LocalStorageService": { - "Members": { - "Flush": { - "MemberType": "Function", - "Name": "Flush", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetItem": { - "MemberType": "Function", - "Name": "GetItem", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ItemWasSet": { - "MemberType": "Event", - "Name": "ItemWasSet", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetItem": { - "MemberType": "Function", - "Name": "SetItem", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StoreWasCleared": { - "MemberType": "Event", - "Name": "StoreWasCleared", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "WhenLoaded": { - "MemberType": "Function", - "Name": "WhenLoaded", - "Parameters": [ - { - "Name": "callback", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "LocalStorageService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "LocalizationService": { - "Members": { - "AutoTranslateWillRun": { - "MemberType": "Event", - "Name": "AutoTranslateWillRun", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ForcePlayModeGameLocaleId": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "ForcePlayModeGameLocaleId", - "Security": { - "Read": "LocalUserSecurity", - "Write": "LocalUserSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "ForcePlayModeRobloxLocaleId": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "ForcePlayModeRobloxLocaleId", - "Security": { - "Read": "LocalUserSecurity", - "Write": "LocalUserSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "GetCorescriptLocalizations": { - "MemberType": "Function", - "Name": "GetCorescriptLocalizations", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetCountryRegionForPlayerAsync": { - "MemberType": "Function", - "Name": "GetCountryRegionForPlayerAsync", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetTableEntries": { - "MemberType": "Function", - "Name": "GetTableEntries", - "Parameters": [ - { - "Default": "nil", - "Name": "instance", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetTranslatorForLocaleAsync": { - "MemberType": "Function", - "Name": "GetTranslatorForLocaleAsync", - "Parameters": [ - { - "Name": "locale", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetTranslatorForPlayer": { - "MemberType": "Function", - "Name": "GetTranslatorForPlayer", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetTranslatorForPlayerAsync": { - "MemberType": "Function", - "Name": "GetTranslatorForPlayerAsync", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "IsTextScraperRunning": { - "Category": "Localization", - "MemberType": "Property", - "Name": "IsTextScraperRunning", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "PromptDownloadGameTableToCSV": { - "MemberType": "Function", - "Name": "PromptDownloadGameTableToCSV", - "Parameters": [ - { - "Name": "table", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "PromptExportToCSVs": { - "MemberType": "Function", - "Name": "PromptExportToCSVs", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "PromptImportFromCSVs": { - "MemberType": "Function", - "Name": "PromptImportFromCSVs", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "PromptUploadCSVToGameTable": { - "MemberType": "Function", - "Name": "PromptUploadCSVToGameTable", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "RobloxForcePlayModeGameLocaleId": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "RobloxForcePlayModeGameLocaleId", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "RobloxForcePlayModeRobloxLocaleId": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "RobloxForcePlayModeRobloxLocaleId", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "RobloxLocaleId": { - "Category": "Localization", - "MemberType": "Property", - "Name": "RobloxLocaleId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "SetRobloxLocaleId": { - "MemberType": "Function", - "Name": "SetRobloxLocaleId", - "Parameters": [ - { - "Name": "locale", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StartTextScraper": { - "MemberType": "Function", - "Name": "StartTextScraper", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StopTextScraper": { - "MemberType": "Function", - "Name": "StopTextScraper", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SystemLocaleId": { - "Category": "Localization", - "MemberType": "Property", - "Name": "SystemLocaleId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "LocalizationService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "LocalizationTable": { - "Members": { - "DevelopmentLanguage": { - "Category": "Localization", - "MemberType": "Property", - "Name": "DevelopmentLanguage", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "GetContents": { - "MemberType": "Function", - "Name": "GetContents", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetEntries": { - "MemberType": "Function", - "Name": "GetEntries", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetString": { - "MemberType": "Function", - "Name": "GetString", - "Parameters": [ - { - "Name": "targetLocaleId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetTranslator": { - "MemberType": "Function", - "Name": "GetTranslator", - "Parameters": [ - { - "Name": "localeId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RemoveEntry": { - "MemberType": "Function", - "Name": "RemoveEntry", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "source", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "context", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RemoveEntryValue": { - "MemberType": "Function", - "Name": "RemoveEntryValue", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "source", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "context", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "localeId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RemoveKey": { - "MemberType": "Function", - "Name": "RemoveKey", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "RemoveTargetLocale": { - "MemberType": "Function", - "Name": "RemoveTargetLocale", - "Parameters": [ - { - "Name": "localeId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Root": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Root", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - }, - "SetContents": { - "MemberType": "Function", - "Name": "SetContents", - "Parameters": [ - { - "Name": "contents", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "SetEntries": { - "MemberType": "Function", - "Name": "SetEntries", - "Parameters": [ - { - "Name": "entries", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetEntry": { - "MemberType": "Function", - "Name": "SetEntry", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "targetLocaleId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "text", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "SetEntryContext": { - "MemberType": "Function", - "Name": "SetEntryContext", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "source", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "context", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "newContext", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetEntryExample": { - "MemberType": "Function", - "Name": "SetEntryExample", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "source", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "context", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "example", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetEntryKey": { - "MemberType": "Function", - "Name": "SetEntryKey", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "source", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "context", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "newKey", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetEntrySource": { - "MemberType": "Function", - "Name": "SetEntrySource", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "source", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "context", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "newSource", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetEntryValue": { - "MemberType": "Function", - "Name": "SetEntryValue", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "source", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "context", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "localeId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "text", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetIsExemptFromUGCAnalytics": { - "MemberType": "Function", - "Name": "SetIsExemptFromUGCAnalytics", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SourceLocaleId": { - "Category": "Localization", - "MemberType": "Property", - "Name": "SourceLocaleId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "LocalizationTable", - "Superclass": "Instance" - }, - "LodDataEntity": { - "Members": { - "EntityLodEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "EntityLodEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "LodDataEntity", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "LodDataService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "LodDataService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "LogService": { - "Members": { - "ClearOutput": { - "MemberType": "Function", - "Name": "ClearOutput", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ExecuteScript": { - "MemberType": "Function", - "Name": "ExecuteScript", - "Parameters": [ - { - "Name": "source", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetHttpResultHistory": { - "MemberType": "Function", - "Name": "GetHttpResultHistory", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetLogHistory": { - "MemberType": "Function", - "Name": "GetLogHistory", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "HttpResultOut": { - "MemberType": "Event", - "Name": "HttpResultOut", - "Parameters": [ - { - "Name": "httpResult", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MessageOut": { - "MemberType": "Event", - "Name": "MessageOut", - "Parameters": [ - { - "Name": "message", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "messageType", - "Type": { - "Category": "Enum", - "Name": "MessageType" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnHttpResultApproved": { - "MemberType": "Event", - "Name": "OnHttpResultApproved", - "Parameters": [ - { - "Name": "isApproved", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RequestHttpResultApproved": { - "MemberType": "Function", - "Name": "RequestHttpResultApproved", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RequestServerHttpResult": { - "MemberType": "Function", - "Name": "RequestServerHttpResult", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RequestServerOutput": { - "MemberType": "Function", - "Name": "RequestServerOutput", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ServerHttpResultOut": { - "MemberType": "Event", - "Name": "ServerHttpResultOut", - "Parameters": [ - { - "Name": "httpResult", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ServerMessageOut": { - "MemberType": "Event", - "Name": "ServerMessageOut", - "Parameters": [ - { - "Name": "message", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "messageType", - "Type": { - "Category": "Enum", - "Name": "MessageType" - } - }, - { - "Name": "timestamp", - "Type": { - "Category": "Primitive", - "Name": "double" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "LogService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "LoginService": { - "Members": { - "LoginFailed": { - "MemberType": "Event", - "Name": "LoginFailed", - "Parameters": [ - { - "Name": "loginError", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "LoginSucceeded": { - "MemberType": "Event", - "Name": "LoginSucceeded", - "Parameters": [ - { - "Name": "username", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Logout": { - "MemberType": "Function", - "Name": "Logout", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptLogin": { - "MemberType": "Function", - "Name": "PromptLogin", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "LoginService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "LuaSettings": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "LuaSettings", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Settings" - ] - }, - "LuaSourceContainer": { - "Members": { - "CurrentEditor": { - "Category": "Data", - "MemberType": "Property", - "Name": "CurrentEditor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - }, - "RuntimeSource": { - "Category": "Data", - "MemberType": "Property", - "Name": "RuntimeSource", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "LuaSourceContainer", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotBrowsable" - ] - }, - "LuaWebService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "LuaWebService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "LuauScriptAnalyzerService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "LuauScriptAnalyzerService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "ManualGlue": { - "Members": {}, - "MemoryCategory": "PhysicsParts", - "Name": "ManualGlue", - "Superclass": "ManualSurfaceJointInstance", - "Tags": [ - "Deprecated" - ] - }, - "ManualSurfaceJointInstance": { - "Members": {}, - "MemoryCategory": "PhysicsParts", - "Name": "ManualSurfaceJointInstance", - "Superclass": "JointInstance", - "Tags": [ - "NotCreatable", - "Deprecated" - ] - }, - "ManualWeld": { - "Members": {}, - "MemoryCategory": "PhysicsParts", - "Name": "ManualWeld", - "Superclass": "ManualSurfaceJointInstance", - "Tags": [ - "Deprecated" - ] - }, - "MarkerCurve": { - "Members": { - "GetMarkerAtIndex": { - "MemberType": "Function", - "Name": "GetMarkerAtIndex", - "Parameters": [ - { - "Name": "index", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetMarkers": { - "MemberType": "Function", - "Name": "GetMarkers", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InsertMarkerAtTime": { - "MemberType": "Function", - "Name": "InsertMarkerAtTime", - "Parameters": [ - { - "Name": "time", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "marker", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Length": { - "Category": "Data", - "MemberType": "Property", - "Name": "Length", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "RemoveMarkerAtIndex": { - "MemberType": "Function", - "Name": "RemoveMarkerAtIndex", - "Parameters": [ - { - "Name": "startingIndex", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Default": "1", - "Name": "count", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "MarkerCurve", - "Superclass": "Instance" - }, - "MarketplaceService": { - "Members": { - "ClientLuaDialogRequested": { - "MemberType": "Event", - "Name": "ClientLuaDialogRequested", - "Parameters": [ - { - "Name": "arguments", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ClientPurchaseSuccess": { - "MemberType": "Event", - "Name": "ClientPurchaseSuccess", - "Parameters": [ - { - "Name": "ticket", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "playerId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "productId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetDeveloperProductsAsync": { - "MemberType": "Function", - "Name": "GetDeveloperProductsAsync", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetProductInfo": { - "MemberType": "Function", - "Name": "GetProductInfo", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Default": "Asset", - "Name": "infoType", - "Type": { - "Category": "Enum", - "Name": "InfoType" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetRobuxBalance": { - "MemberType": "Function", - "Name": "GetRobuxBalance", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "IsPlayerSubscribed": { - "MemberType": "Function", - "Name": "IsPlayerSubscribed", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "subscriptionId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true, - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "NativePurchaseFinished": { - "MemberType": "Event", - "Name": "NativePurchaseFinished", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "productId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "wasPurchased", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "NativePurchaseFinishedWithLocalPlayer": { - "MemberType": "Event", - "Name": "NativePurchaseFinishedWithLocalPlayer", - "Parameters": [ - { - "Name": "productId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "wasPurchased", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PerformPurchase": { - "MemberType": "Function", - "Name": "PerformPurchase", - "Parameters": [ - { - "Name": "infoType", - "Type": { - "Category": "Enum", - "Name": "InfoType" - } - }, - { - "Name": "productId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "expectedPrice", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "requestId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "isRobloxPurchase", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Default": "", - "Name": "collectibleItemId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "", - "Name": "collectibleProductId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "", - "Name": "idempotencyKey", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "", - "Name": "purchaseAuthToken", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "PerformPurchaseV2": { - "MemberType": "Function", - "Name": "PerformPurchaseV2", - "Parameters": [ - { - "Name": "infoType", - "Type": { - "Category": "Enum", - "Name": "InfoType" - } - }, - { - "Name": "productId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "expectedPrice", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "requestId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "isRobloxPurchase", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "collectiblesProductDetails", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "PlayerCanMakePurchases": { - "MemberType": "Function", - "Name": "PlayerCanMakePurchases", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PlayerOwnsAsset": { - "MemberType": "Function", - "Name": "PlayerOwnsAsset", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "PlayerOwnsBundle": { - "MemberType": "Function", - "Name": "PlayerOwnsBundle", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Player" - } - }, - { - "Name": "bundleId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "PrepareCollectiblesPurchase": { - "MemberType": "Function", - "Name": "PrepareCollectiblesPurchase", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "collectibleItemId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "collectibleItemInstanceId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "collectibleProductId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "expectedPrice", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PrepareCollectiblesPurchaseRequested": { - "MemberType": "Event", - "Name": "PrepareCollectiblesPurchaseRequested", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "collectibleItemId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "collectibleItemInstanceId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "collectibleProductId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "expectedPrice", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ProcessReceipt": { - "MemberType": "Callback", - "Name": "ProcessReceipt", - "Parameters": [ - { - "Name": "receiptInfo", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Enum", - "Name": "ProductPurchaseDecision" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptBundlePurchase": { - "MemberType": "Function", - "Name": "PromptBundlePurchase", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "bundleId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptBundlePurchaseFinished": { - "MemberType": "Event", - "Name": "PromptBundlePurchaseFinished", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "bundleId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "wasPurchased", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptBundlePurchaseRequested": { - "MemberType": "Event", - "Name": "PromptBundlePurchaseRequested", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "bundleId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptCollectiblesPurchase": { - "MemberType": "Function", - "Name": "PromptCollectiblesPurchase", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "collectibleItemId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "collectibleItemInstanceId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "collectibleProductId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "expectedPrice", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptCollectiblesPurchaseRequested": { - "MemberType": "Event", - "Name": "PromptCollectiblesPurchaseRequested", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "collectibleItemId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "collectibleItemInstanceId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "collectibleProductId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "expectedPrice", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "idempotencyKey", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "purchaseAuthToken", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptGamePassPurchase": { - "MemberType": "Function", - "Name": "PromptGamePassPurchase", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "gamePassId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptGamePassPurchaseFinished": { - "MemberType": "Event", - "Name": "PromptGamePassPurchaseFinished", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "gamePassId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "wasPurchased", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptGamePassPurchaseRequested": { - "MemberType": "Event", - "Name": "PromptGamePassPurchaseRequested", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "gamePassId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptNativePurchase": { - "MemberType": "Function", - "Name": "PromptNativePurchase", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "productId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptNativePurchaseWithLocalPlayer": { - "MemberType": "Function", - "Name": "PromptNativePurchaseWithLocalPlayer", - "Parameters": [ - { - "Name": "productId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptPremiumPurchase": { - "MemberType": "Function", - "Name": "PromptPremiumPurchase", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptPremiumPurchaseFinished": { - "MemberType": "Event", - "Name": "PromptPremiumPurchaseFinished", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptPremiumPurchaseRequested": { - "MemberType": "Event", - "Name": "PromptPremiumPurchaseRequested", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptProductPurchase": { - "MemberType": "Function", - "Name": "PromptProductPurchase", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "productId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Default": "true", - "Name": "equipIfPurchased", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Default": "Default", - "Name": "currencyType", - "Type": { - "Category": "Enum", - "Name": "CurrencyType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptProductPurchaseFinished": { - "MemberType": "Event", - "Name": "PromptProductPurchaseFinished", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "productId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "isPurchased", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptProductPurchaseRequested": { - "MemberType": "Event", - "Name": "PromptProductPurchaseRequested", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "productId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "equipIfPurchased", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "currencyType", - "Type": { - "Category": "Enum", - "Name": "CurrencyType" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptPurchase": { - "MemberType": "Function", - "Name": "PromptPurchase", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Default": "true", - "Name": "equipIfPurchased", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Default": "Default", - "Name": "currencyType", - "Type": { - "Category": "Enum", - "Name": "CurrencyType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptPurchaseFinished": { - "MemberType": "Event", - "Name": "PromptPurchaseFinished", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "isPurchased", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptPurchaseRequested": { - "MemberType": "Event", - "Name": "PromptPurchaseRequested", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "equipIfPurchased", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "currencyType", - "Type": { - "Category": "Enum", - "Name": "CurrencyType" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptPurchaseRequestedV2": { - "MemberType": "Event", - "Name": "PromptPurchaseRequestedV2", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "equipIfPurchased", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "currencyType", - "Type": { - "Category": "Enum", - "Name": "CurrencyType" - } - }, - { - "Name": "idempotencyKey", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "purchaseAuthToken", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptRobloxPurchase": { - "MemberType": "Function", - "Name": "PromptRobloxPurchase", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "equipIfPurchased", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptRobloxPurchaseRequested": { - "MemberType": "Event", - "Name": "PromptRobloxPurchaseRequested", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "equipIfPurchased", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptSubscriptionCancellation": { - "MemberType": "Function", - "Name": "PromptSubscriptionCancellation", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "subscriptionId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "PromptSubscriptionCancellationFinished": { - "MemberType": "Event", - "Name": "PromptSubscriptionCancellationFinished", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "subscriptionId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "wasCanceled", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "PromptSubscriptionCancellationRequested": { - "MemberType": "Event", - "Name": "PromptSubscriptionCancellationRequested", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "subscriptionId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptSubscriptionPurchase": { - "MemberType": "Function", - "Name": "PromptSubscriptionPurchase", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "subscriptionId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "PromptSubscriptionPurchaseFinished": { - "MemberType": "Event", - "Name": "PromptSubscriptionPurchaseFinished", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "subscriptionId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "wasPurchased", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "PromptSubscriptionPurchaseRequested": { - "MemberType": "Event", - "Name": "PromptSubscriptionPurchaseRequested", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "subscriptionId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptThirdPartyPurchase": { - "MemberType": "Function", - "Name": "PromptThirdPartyPurchase", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "productId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ReportAssetSale": { - "MemberType": "Function", - "Name": "ReportAssetSale", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "robuxAmount", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ReportRobuxUpsellStarted": { - "MemberType": "Function", - "Name": "ReportRobuxUpsellStarted", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ServerPurchaseVerification": { - "MemberType": "Event", - "Name": "ServerPurchaseVerification", - "Parameters": [ - { - "Name": "serverResponseTable", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SignalAssetTypePurchased": { - "MemberType": "Function", - "Name": "SignalAssetTypePurchased", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "assetType", - "Type": { - "Category": "Enum", - "Name": "AssetType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SignalClientPurchaseSuccess": { - "MemberType": "Function", - "Name": "SignalClientPurchaseSuccess", - "Parameters": [ - { - "Name": "ticket", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "playerId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "productId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SignalMockPurchasePremium": { - "MemberType": "Function", - "Name": "SignalMockPurchasePremium", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SignalPromptBundlePurchaseFinished": { - "MemberType": "Function", - "Name": "SignalPromptBundlePurchaseFinished", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "bundleId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "success", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SignalPromptGamePassPurchaseFinished": { - "MemberType": "Function", - "Name": "SignalPromptGamePassPurchaseFinished", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "gamePassId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "success", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SignalPromptPremiumPurchaseFinished": { - "MemberType": "Function", - "Name": "SignalPromptPremiumPurchaseFinished", - "Parameters": [ - { - "Name": "didTryPurchasing", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SignalPromptProductPurchaseFinished": { - "MemberType": "Function", - "Name": "SignalPromptProductPurchaseFinished", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "productId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "success", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SignalPromptPurchaseFinished": { - "MemberType": "Function", - "Name": "SignalPromptPurchaseFinished", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "success", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SignalPromptSubscriptionCancellationFinished": { - "MemberType": "Function", - "Name": "SignalPromptSubscriptionCancellationFinished", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "subscriptionId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "wasCanceled", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SignalPromptSubscriptionPurchaseFinished": { - "MemberType": "Function", - "Name": "SignalPromptSubscriptionPurchaseFinished", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "subscriptionId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "wasPurchased", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SignalServerLuaDialogClosed": { - "MemberType": "Function", - "Name": "SignalServerLuaDialogClosed", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ThirdPartyPurchaseFinished": { - "MemberType": "Event", - "Name": "ThirdPartyPurchaseFinished", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "productId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "receipt", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "wasPurchased", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UserOwnsGamePassAsync": { - "MemberType": "Function", - "Name": "UserOwnsGamePassAsync", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "gamePassId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "MarketplaceService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "MaterialGenerationService": { - "Members": { - "GetAccountingBalanceAsync": { - "MemberType": "Function", - "Name": "GetAccountingBalanceAsync", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "double" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "RefillAccountingBalanceAsync": { - "MemberType": "Function", - "Name": "RefillAccountingBalanceAsync", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "double" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "StartSession": { - "MemberType": "Function", - "Name": "StartSession", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "MaterialGenerationSession" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "MaterialGenerationService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "MaterialGenerationSession": { - "Members": { - "GenerateImagesAsync": { - "MemberType": "Function", - "Name": "GenerateImagesAsync", - "Parameters": [ - { - "Name": "prompt", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "options", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GenerateMaterialMapsAsync": { - "MemberType": "Function", - "Name": "GenerateMaterialMapsAsync", - "Parameters": [ - { - "Name": "imageId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "UploadMaterialAsync": { - "MemberType": "Function", - "Name": "UploadMaterialAsync", - "Parameters": [ - { - "Name": "imageId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "MaterialGenerationSession", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "MaterialImportData": { - "Members": { - "DiffuseFilePath": { - "Category": "Data", - "MemberType": "Property", - "Name": "DiffuseFilePath", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "IsPbr": { - "Category": "Data", - "MemberType": "Property", - "Name": "IsPbr", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "MetalnessFilePath": { - "Category": "Data", - "MemberType": "Property", - "Name": "MetalnessFilePath", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "NormalFilePath": { - "Category": "Data", - "MemberType": "Property", - "Name": "NormalFilePath", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "RoughnessFilePath": { - "Category": "Data", - "MemberType": "Property", - "Name": "RoughnessFilePath", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "MaterialImportData", - "Superclass": "BaseImportData", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "MaterialService": { - "Members": { - "AsphaltName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "AsphaltName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "BasaltName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "BasaltName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "BrickName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "BrickName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "CardboardName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "CardboardName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "CarpetName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "CarpetName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "CeramicTilesName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "CeramicTilesName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "ClayRoofTilesName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "ClayRoofTilesName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "CobblestoneName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "CobblestoneName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "ConcreteName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "ConcreteName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "CorrodedMetalName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "CorrodedMetalName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "CrackedLavaName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "CrackedLavaName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "DiamondPlateName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "DiamondPlateName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "FabricName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "FabricName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "FoilName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "FoilName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "GetBaseMaterialOverride": { - "MemberType": "Function", - "Name": "GetBaseMaterialOverride", - "Parameters": [ - { - "Name": "material", - "Type": { - "Category": "Enum", - "Name": "Material" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetMaterialOverrideChanged": { - "MemberType": "Function", - "Name": "GetMaterialOverrideChanged", - "Parameters": [ - { - "Name": "material", - "Type": { - "Category": "Enum", - "Name": "Material" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "RBXScriptSignal" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetMaterialVariant": { - "MemberType": "Function", - "Name": "GetMaterialVariant", - "Parameters": [ - { - "Name": "material", - "Type": { - "Category": "Enum", - "Name": "Material" - } - }, - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "MaterialVariant" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetOverrideStatus": { - "MemberType": "Function", - "Name": "GetOverrideStatus", - "Parameters": [ - { - "Name": "material", - "Type": { - "Category": "Enum", - "Name": "Material" - } - } - ], - "ReturnType": { - "Category": "Enum", - "Name": "PropertyStatus" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GlacierName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "GlacierName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "GraniteName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "GraniteName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "GrassName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "GrassName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "GroundName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "GroundName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "IceName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "IceName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "LeafyGrassName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "LeafyGrassName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "LeatherName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "LeatherName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "LimestoneName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "LimestoneName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "MarbleName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "MarbleName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "MetalName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "MetalName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "MudName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "MudName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "OverrideStatusChanged": { - "MemberType": "Event", - "Name": "OverrideStatusChanged", - "Parameters": [ - { - "Name": "material", - "Type": { - "Category": "Enum", - "Name": "Material" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PavementName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "PavementName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "PebbleName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "PebbleName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "PlasterName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "PlasterName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "PlasticName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "PlasticName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "RockName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "RockName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "RoofShinglesName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "RoofShinglesName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "RubberName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "RubberName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "SaltName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "SaltName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "SandName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "SandName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "SandstoneName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "SandstoneName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "SetBaseMaterialOverride": { - "MemberType": "Function", - "Name": "SetBaseMaterialOverride", - "Parameters": [ - { - "Name": "material", - "Type": { - "Category": "Enum", - "Name": "Material" - } - }, - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SlateName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "SlateName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "SmoothPlasticName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "SmoothPlasticName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "SnowName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "SnowName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Use2022Materials": { - "Category": "Material Pack", - "MemberType": "Property", - "Name": "Use2022Materials", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "WoodName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "WoodName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "WoodPlanksName": { - "Category": "Material Overrides", - "MemberType": "Property", - "Name": "WoodPlanksName", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "MaterialService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "MaterialVariant": { - "Members": { - "BaseMaterial": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "BaseMaterial", - "Security": { - "Read": "None", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "Material" - } - }, - "ColorMap": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "ColorMap", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "CustomPhysicalProperties": { - "Category": "Material", - "MemberType": "Property", - "Name": "CustomPhysicalProperties", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "PhysicalProperties" - } - }, - "MaterialPattern": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "MaterialPattern", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "MaterialPattern" - } - }, - "MetalnessMap": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "MetalnessMap", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "NormalMap": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "NormalMap", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "RoughnessMap": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "RoughnessMap", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "StudsPerTile": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "StudsPerTile", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "MaterialVariant", - "Superclass": "Instance" - }, - "MemStorageConnection": { - "Members": { - "Disconnect": { - "MemberType": "Function", - "Name": "Disconnect", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "MemStorageConnection", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "MemStorageService": { - "Members": { - "Bind": { - "MemberType": "Function", - "Name": "Bind", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "callback", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "MemStorageConnection" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "BindAndFire": { - "MemberType": "Function", - "Name": "BindAndFire", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "callback", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "MemStorageConnection" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Call": { - "MemberType": "Function", - "Name": "Call", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "input", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Variant" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Fire": { - "MemberType": "Function", - "Name": "Fire", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "", - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetItem": { - "MemberType": "Function", - "Name": "GetItem", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "", - "Name": "defaultValue", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "HasItem": { - "MemberType": "Function", - "Name": "HasItem", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RemoveItem": { - "MemberType": "Function", - "Name": "RemoveItem", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetItem": { - "MemberType": "Function", - "Name": "SetItem", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "", - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "MemStorageService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "MemoryStoreQueue": { - "Members": { - "AddAsync": { - "MemberType": "Function", - "Name": "AddAsync", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "Group", - "Name": "Variant" - } - }, - { - "Name": "expiration", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Default": "0", - "Name": "priority", - "Type": { - "Category": "Primitive", - "Name": "double" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ReadAsync": { - "MemberType": "Function", - "Name": "ReadAsync", - "Parameters": [ - { - "Name": "count", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Default": "false", - "Name": "allOrNothing", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Default": "-1", - "Name": "waitTimeout", - "Type": { - "Category": "Primitive", - "Name": "double" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "RemoveAsync": { - "MemberType": "Function", - "Name": "RemoveAsync", - "Parameters": [ - { - "Name": "id", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "MemoryStoreQueue", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "MemoryStoreService": { - "Members": { - "GetQueue": { - "MemberType": "Function", - "Name": "GetQueue", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "30", - "Name": "invisibilityTimeout", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "MemoryStoreQueue" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetSortedMap": { - "MemberType": "Function", - "Name": "GetSortedMap", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "MemoryStoreSortedMap" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "MemoryStoreService", - "Superclass": "Instance", - "Tags": [ - "Service" - ] - }, - "MemoryStoreSortedMap": { - "Members": { - "GetAsync": { - "MemberType": "Function", - "Name": "GetAsync", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Variant" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetRangeAsync": { - "MemberType": "Function", - "Name": "GetRangeAsync", - "Parameters": [ - { - "Name": "direction", - "Type": { - "Category": "Enum", - "Name": "SortDirection" - } - }, - { - "Name": "count", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Default": "", - "Name": "exclusiveLowerBound", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "", - "Name": "exclusiveUpperBound", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "RemoveAsync": { - "MemberType": "Function", - "Name": "RemoveAsync", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "SetAsync": { - "MemberType": "Function", - "Name": "SetAsync", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "value", - "Type": { - "Category": "Group", - "Name": "Variant" - } - }, - { - "Name": "expiration", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "UpdateAsync": { - "MemberType": "Function", - "Name": "UpdateAsync", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "transformFunction", - "Type": { - "Category": "DataType", - "Name": "Function" - } - }, - { - "Name": "expiration", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Variant" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "MemoryStoreSortedMap", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "MeshContentProvider": { - "Members": { - "GetContentMemoryData": { - "MemberType": "Function", - "Name": "GetContentMemoryData", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "MeshContentProvider", - "Superclass": "CacheableContentProvider", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "MeshImportData": { - "Members": { - "Anchored": { - "Category": "Data", - "MemberType": "Property", - "Name": "Anchored", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "CageManifold": { - "Category": "Data", - "MemberType": "Property", - "Name": "CageManifold", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "CageMeshIntersectedPreview": { - "Category": "Data", - "MemberType": "Property", - "Name": "CageMeshIntersectedPreview", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "CageMeshNotIntersected": { - "Category": "Data", - "MemberType": "Property", - "Name": "CageMeshNotIntersected", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "CageNoOverlappingVertices": { - "Category": "Data", - "MemberType": "Property", - "Name": "CageNoOverlappingVertices", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "CageNonManifoldPreview": { - "Category": "Data", - "MemberType": "Property", - "Name": "CageNonManifoldPreview", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "CageOverlappingVerticesPreview": { - "Category": "Data", - "MemberType": "Property", - "Name": "CageOverlappingVerticesPreview", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "CageUVMatched": { - "Category": "Data", - "MemberType": "Property", - "Name": "CageUVMatched", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "CageUVMisMatchedPreview": { - "Category": "Data", - "MemberType": "Property", - "Name": "CageUVMisMatchedPreview", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Dimensions": { - "Category": "Data", - "MemberType": "Property", - "Name": "Dimensions", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "DoubleSided": { - "Category": "Data", - "MemberType": "Property", - "Name": "DoubleSided", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "IgnoreVertexColors": { - "Category": "Data", - "MemberType": "Property", - "Name": "IgnoreVertexColors", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "IrrelevantCageModifiedPreview": { - "Category": "Data", - "MemberType": "Property", - "Name": "IrrelevantCageModifiedPreview", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "MeshHoleDetectedPreview": { - "Category": "Data", - "MemberType": "Property", - "Name": "MeshHoleDetectedPreview", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "MeshNoHoleDetected": { - "Category": "Data", - "MemberType": "Property", - "Name": "MeshNoHoleDetected", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "NoIrrelevantCageModified": { - "Category": "Data", - "MemberType": "Property", - "Name": "NoIrrelevantCageModified", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "NoOuterCageFarExtendedFromMesh": { - "Category": "Data", - "MemberType": "Property", - "Name": "NoOuterCageFarExtendedFromMesh", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "OuterCageFarExtendedFromMeshPreview": { - "Category": "Data", - "MemberType": "Property", - "Name": "OuterCageFarExtendedFromMeshPreview", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "PolygonCount": { - "Category": "Data", - "MemberType": "Property", - "Name": "PolygonCount", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "UseImportedPivot": { - "Category": "Data", - "MemberType": "Property", - "Name": "UseImportedPivot", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "MeshImportData", - "Superclass": "BaseImportData", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "MeshPart": { - "Members": { - "ApplyMesh": { - "MemberType": "Function", - "Name": "ApplyMesh", - "Parameters": [ - { - "Name": "meshPart", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DoubleSided": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "DoubleSided", - "Security": { - "Read": "None", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "HasJointOffset": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "HasJointOffset", - "Security": { - "Read": "None", - "Write": "NotAccessibleSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "HasSkinnedMesh": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "HasSkinnedMesh", - "Security": { - "Read": "None", - "Write": "NotAccessibleSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "JointOffset": { - "Category": "Data", - "MemberType": "Property", - "Name": "JointOffset", - "Security": { - "Read": "None", - "Write": "NotAccessibleSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "MeshId": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "MeshId", - "Security": { - "Read": "None", - "Write": "NotAccessibleSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "RenderFidelity": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "RenderFidelity", - "Security": { - "Read": "None", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "RenderFidelity" - } - }, - "TextureID": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "TextureID", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "MeshPart", - "Superclass": "TriangleMeshPart" - }, - "Message": { - "Members": { - "Text": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Text", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Message", - "Superclass": "Instance", - "Tags": [ - "Deprecated" - ] - }, - "MessageBusConnection": { - "Members": { - "Disconnect": { - "MemberType": "Function", - "Name": "Disconnect", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "MessageBusConnection", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "MessageBusService": { - "Members": { - "Call": { - "MemberType": "Function", - "Name": "Call", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "input", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Variant" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetLast": { - "MemberType": "Function", - "Name": "GetLast", - "Parameters": [ - { - "Name": "mid", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Variant" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetMessageId": { - "MemberType": "Function", - "Name": "GetMessageId", - "Parameters": [ - { - "Name": "domainName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "messageName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetProtocolMethodRequestMessageId": { - "MemberType": "Function", - "Name": "GetProtocolMethodRequestMessageId", - "Parameters": [ - { - "Name": "protocolName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "methodName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetProtocolMethodResponseMessageId": { - "MemberType": "Function", - "Name": "GetProtocolMethodResponseMessageId", - "Parameters": [ - { - "Name": "protocolName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "methodName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MakeRequest": { - "MemberType": "Function", - "Name": "MakeRequest", - "Parameters": [ - { - "Name": "protocolName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "methodName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "message", - "Type": { - "Category": "Group", - "Name": "Variant" - } - }, - { - "Name": "callback", - "Type": { - "Category": "DataType", - "Name": "Function" - } - }, - { - "Name": "customTelemetryData", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Publish": { - "MemberType": "Function", - "Name": "Publish", - "Parameters": [ - { - "Name": "mid", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "params", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PublishProtocolMethodRequest": { - "MemberType": "Function", - "Name": "PublishProtocolMethodRequest", - "Parameters": [ - { - "Name": "protocolName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "methodName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "message", - "Type": { - "Category": "Group", - "Name": "Variant" - } - }, - { - "Name": "customTelemetryData", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PublishProtocolMethodResponse": { - "MemberType": "Function", - "Name": "PublishProtocolMethodResponse", - "Parameters": [ - { - "Name": "protocolName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "methodName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "message", - "Type": { - "Category": "Group", - "Name": "Variant" - } - }, - { - "Name": "responseCode", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "customTelemetryData", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetRequestHandler": { - "MemberType": "Function", - "Name": "SetRequestHandler", - "Parameters": [ - { - "Name": "protocolName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "methodName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "callback", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Subscribe": { - "MemberType": "Function", - "Name": "Subscribe", - "Parameters": [ - { - "Name": "mid", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "callback", - "Type": { - "Category": "DataType", - "Name": "Function" - } - }, - { - "Name": "once", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "sticky", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SubscribeToProtocolMethodRequest": { - "MemberType": "Function", - "Name": "SubscribeToProtocolMethodRequest", - "Parameters": [ - { - "Name": "protocolName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "methodName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "callback", - "Type": { - "Category": "DataType", - "Name": "Function" - } - }, - { - "Name": "once", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "sticky", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SubscribeToProtocolMethodResponse": { - "MemberType": "Function", - "Name": "SubscribeToProtocolMethodResponse", - "Parameters": [ - { - "Name": "protocolName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "methodName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "callback", - "Type": { - "Category": "DataType", - "Name": "Function" - } - }, - { - "Name": "once", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "sticky", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "MessageBusService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "MessagingService": { - "Members": { - "PublishAsync": { - "MemberType": "Function", - "Name": "PublishAsync", - "Parameters": [ - { - "Name": "topic", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "message", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "SubscribeAsync": { - "MemberType": "Function", - "Name": "SubscribeAsync", - "Parameters": [ - { - "Name": "topic", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "callback", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "RBXScriptConnection" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "MessagingService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "MetaBreakpoint": { - "Members": { - "Condition": { - "Category": "Data", - "MemberType": "Property", - "Name": "Condition", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "ContinueExecution": { - "Category": "State", - "MemberType": "Property", - "Name": "ContinueExecution", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Enabled": { - "Category": "State", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "GetContextBreakpoints": { - "MemberType": "Function", - "Name": "GetContextBreakpoints", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Id": { - "Category": "Data", - "MemberType": "Property", - "Name": "Id", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "IsLogpoint": { - "Category": "State", - "MemberType": "Property", - "Name": "IsLogpoint", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Line": { - "Category": "Data", - "MemberType": "Property", - "Name": "Line", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "LogMessage": { - "Category": "Data", - "MemberType": "Property", - "Name": "LogMessage", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Remove": { - "MemberType": "Function", - "Name": "Remove", - "Parameters": [ - { - "Name": "status", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RemoveOnHit": { - "Category": "State", - "MemberType": "Property", - "Name": "RemoveOnHit", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Script": { - "Category": "Data", - "MemberType": "Property", - "Name": "Script", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "SetChildBreakpointEnabledByScriptAndContext": { - "MemberType": "Function", - "Name": "SetChildBreakpointEnabledByScriptAndContext", - "Parameters": [ - { - "Name": "script", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "contextGST", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "enabled", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetContextEnabled": { - "MemberType": "Function", - "Name": "SetContextEnabled", - "Parameters": [ - { - "Name": "context", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "enabled", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetContinueExecution": { - "MemberType": "Function", - "Name": "SetContinueExecution", - "Parameters": [ - { - "Name": "enabled", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetEnabled": { - "MemberType": "Function", - "Name": "SetEnabled", - "Parameters": [ - { - "Name": "enabled", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetLine": { - "MemberType": "Function", - "Name": "SetLine", - "Parameters": [ - { - "Name": "line", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "status", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetRemoveOnHit": { - "MemberType": "Function", - "Name": "SetRemoveOnHit", - "Parameters": [ - { - "Name": "enabled", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Valid": { - "Category": "State", - "MemberType": "Property", - "Name": "Valid", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "MetaBreakpoint", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "MetaBreakpointContext": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "MetaBreakpointContext", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "MetaBreakpointManager": { - "Members": { - "AddBreakpoint": { - "MemberType": "Function", - "Name": "AddBreakpoint", - "Parameters": [ - { - "Name": "script", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "line", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "condition", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetBreakpointById": { - "MemberType": "Function", - "Name": "GetBreakpointById", - "Parameters": [ - { - "Name": "metaBreakpointId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "MetaBreakpoint" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MetaBreakpointAdded": { - "MemberType": "Event", - "Name": "MetaBreakpointAdded", - "Parameters": [ - { - "Name": "breakpoint", - "Type": { - "Category": "Class", - "Name": "MetaBreakpoint" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MetaBreakpointChanged": { - "MemberType": "Event", - "Name": "MetaBreakpointChanged", - "Parameters": [ - { - "Name": "breakpoint", - "Type": { - "Category": "Class", - "Name": "MetaBreakpoint" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MetaBreakpointRemoved": { - "MemberType": "Event", - "Name": "MetaBreakpointRemoved", - "Parameters": [ - { - "Name": "breakpoint", - "Type": { - "Category": "Class", - "Name": "MetaBreakpoint" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MetaBreakpointSetChanged": { - "MemberType": "Event", - "Name": "MetaBreakpointSetChanged", - "Parameters": [ - { - "Name": "breakpoint", - "Type": { - "Category": "Class", - "Name": "MetaBreakpoint" - } - }, - { - "Name": "detail", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RemoveBreakpointById": { - "MemberType": "Function", - "Name": "RemoveBreakpointById", - "Parameters": [ - { - "Name": "metaBreakpointId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "MetaBreakpointManager", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "Model": { - "Members": { - "AddPersistentPlayer": { - "MemberType": "Function", - "Name": "AddPersistentPlayer", - "Parameters": [ - { - "Default": "nil", - "Name": "playerInstance", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "BreakJoints": { - "MemberType": "Function", - "Name": "BreakJoints", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetBoundingBox": { - "MemberType": "Function", - "Name": "GetBoundingBox", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetExtentsSize": { - "MemberType": "Function", - "Name": "GetExtentsSize", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Vector3" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetModelCFrame": { - "MemberType": "Function", - "Name": "GetModelCFrame", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "CFrame" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetModelSize": { - "MemberType": "Function", - "Name": "GetModelSize", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Vector3" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetPersistentPlayers": { - "MemberType": "Function", - "Name": "GetPersistentPlayers", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetPrimaryPartCFrame": { - "MemberType": "Function", - "Name": "GetPrimaryPartCFrame", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "CFrame" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetScale": { - "MemberType": "Function", - "Name": "GetScale", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "float" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "LevelOfDetail": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "LevelOfDetail", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ModelLevelOfDetail" - } - }, - "MakeJoints": { - "MemberType": "Function", - "Name": "MakeJoints", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "ModelStreamingMode": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "ModelStreamingMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ModelStreamingMode" - } - }, - "MoveTo": { - "MemberType": "Function", - "Name": "MoveTo", - "Parameters": [ - { - "Name": "position", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PrimaryPart": { - "Category": "Pivot", - "MemberType": "Property", - "Name": "PrimaryPart", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "BasePart" - } - }, - "RemovePersistentPlayer": { - "MemberType": "Function", - "Name": "RemovePersistentPlayer", - "Parameters": [ - { - "Default": "nil", - "Name": "playerInstance", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ResetOrientationToIdentity": { - "MemberType": "Function", - "Name": "ResetOrientationToIdentity", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "Scale": { - "Category": "Pivot", - "MemberType": "Property", - "Name": "Scale", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ScaleTo": { - "MemberType": "Function", - "Name": "ScaleTo", - "Parameters": [ - { - "Name": "newScaleFactor", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetIdentityOrientation": { - "MemberType": "Function", - "Name": "SetIdentityOrientation", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "SetPrimaryPartCFrame": { - "MemberType": "Function", - "Name": "SetPrimaryPartCFrame", - "Parameters": [ - { - "Name": "cframe", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "TranslateBy": { - "MemberType": "Function", - "Name": "TranslateBy", - "Parameters": [ - { - "Name": "delta", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "WorldPivot": { - "Category": "Pivot", - "MemberType": "Property", - "Name": "WorldPivot", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "breakJoints": { - "MemberType": "Function", - "Name": "breakJoints", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "makeJoints": { - "MemberType": "Function", - "Name": "makeJoints", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "move": { - "MemberType": "Function", - "Name": "move", - "Parameters": [ - { - "Name": "location", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "moveTo": { - "MemberType": "Function", - "Name": "moveTo", - "Parameters": [ - { - "Name": "location", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "Model", - "Superclass": "PVInstance" - }, - "ModuleScript": { - "Members": { - "LinkedSource": { - "Category": "Data", - "MemberType": "Property", - "Name": "LinkedSource", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "Source": { - "Category": "Data", - "MemberType": "Property", - "Name": "Source", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "ProtectedString" - } - } - }, - "MemoryCategory": "Script", - "Name": "ModuleScript", - "Superclass": "LuaSourceContainer" - }, - "Motor": { - "Members": { - "CurrentAngle": { - "Category": "Data", - "MemberType": "Property", - "Name": "CurrentAngle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "DesiredAngle": { - "Category": "Data", - "MemberType": "Property", - "Name": "DesiredAngle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MaxVelocity": { - "Category": "Data", - "MemberType": "Property", - "Name": "MaxVelocity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "SetDesiredAngle": { - "MemberType": "Function", - "Name": "SetDesiredAngle", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "Motor", - "Superclass": "JointInstance" - }, - "Motor6D": { - "Members": { - "ChildName": { - "Category": "Animatable", - "MemberType": "Property", - "Name": "ChildName", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "NotScriptable": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "ParentName": { - "Category": "Animatable", - "MemberType": "Property", - "Name": "ParentName", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "NotScriptable": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Transform": { - "Category": "Data", - "MemberType": "Property", - "Name": "Transform", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "Motor6D", - "Superclass": "Motor" - }, - "MotorFeature": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "MotorFeature", - "Superclass": "Feature", - "Tags": [ - "Deprecated" - ] - }, - "Mouse": { - "Members": { - "Button1Down": { - "MemberType": "Event", - "Name": "Button1Down", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Button1Up": { - "MemberType": "Event", - "Name": "Button1Up", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Button2Down": { - "MemberType": "Event", - "Name": "Button2Down", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Button2Up": { - "MemberType": "Event", - "Name": "Button2Up", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Hit": { - "Category": "Data", - "MemberType": "Property", - "Name": "Hit", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "Icon": { - "Category": "Data", - "MemberType": "Property", - "Name": "Icon", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "Idle": { - "MemberType": "Event", - "Name": "Idle", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "KeyDown": { - "MemberType": "Event", - "Name": "KeyDown", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "KeyUp": { - "MemberType": "Event", - "Name": "KeyUp", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "Move": { - "MemberType": "Event", - "Name": "Move", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Origin": { - "Category": "Data", - "MemberType": "Property", - "Name": "Origin", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "Target": { - "Category": "Data", - "MemberType": "Property", - "Name": "Target", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "BasePart" - } - }, - "TargetFilter": { - "Category": "Data", - "MemberType": "Property", - "Name": "TargetFilter", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - }, - "TargetSurface": { - "Category": "Data", - "MemberType": "Property", - "Name": "TargetSurface", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "NormalId" - } - }, - "UnitRay": { - "Category": "Data", - "MemberType": "Property", - "Name": "UnitRay", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Ray" - } - }, - "ViewSizeX": { - "Category": "Data", - "MemberType": "Property", - "Name": "ViewSizeX", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "ViewSizeY": { - "Category": "Data", - "MemberType": "Property", - "Name": "ViewSizeY", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "WheelBackward": { - "MemberType": "Event", - "Name": "WheelBackward", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "WheelForward": { - "MemberType": "Event", - "Name": "WheelForward", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "X": { - "Category": "Data", - "MemberType": "Property", - "Name": "X", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "Y": { - "Category": "Data", - "MemberType": "Property", - "Name": "Y", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "hit": { - "Category": "Data", - "MemberType": "Property", - "Name": "hit", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "keyDown": { - "MemberType": "Event", - "Name": "keyDown", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "target": { - "Category": "Data", - "MemberType": "Property", - "Name": "target", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "BasePart" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Mouse", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "MouseService": { - "Members": { - "MouseEnterStudioViewport": { - "MemberType": "Event", - "Name": "MouseEnterStudioViewport", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MouseLeaveStudioViewport": { - "MemberType": "Event", - "Name": "MouseLeaveStudioViewport", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "MouseService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "MultipleDocumentInterfaceInstance": { - "Members": { - "DataModelSessionEnded": { - "MemberType": "Event", - "Name": "DataModelSessionEnded", - "Parameters": [ - { - "Name": "dataModelSession", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DataModelSessionStarted": { - "MemberType": "Event", - "Name": "DataModelSessionStarted", - "Parameters": [ - { - "Name": "dataModelSession", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "FocusedDataModelSession": { - "Category": "Data", - "MemberType": "Property", - "Name": "FocusedDataModelSession", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - } - }, - "MemoryCategory": "Instances", - "Name": "MultipleDocumentInterfaceInstance", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "NegateOperation": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "NegateOperation", - "Superclass": "PartOperation" - }, - "NetworkClient": { - "Members": { - "ConnectionAccepted": { - "MemberType": "Event", - "Name": "ConnectionAccepted", - "Parameters": [ - { - "Name": "peer", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "replicator", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ConnectionFailed": { - "MemberType": "Event", - "Name": "ConnectionFailed", - "Parameters": [ - { - "Name": "peer", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "code", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "reason", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "NetworkClient", - "Superclass": "NetworkPeer", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "NetworkMarker": { - "Members": { - "Received": { - "MemberType": "Event", - "Name": "Received", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "NetworkMarker", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotBrowsable" - ] - }, - "NetworkPeer": { - "Members": { - "SetOutgoingKBPSLimit": { - "MemberType": "Function", - "Name": "SetOutgoingKBPSLimit", - "Parameters": [ - { - "Name": "limit", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "NetworkPeer", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotBrowsable" - ] - }, - "NetworkReplicator": { - "Members": { - "GetPlayer": { - "MemberType": "Function", - "Name": "GetPlayer", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "NetworkReplicator", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "NetworkServer": { - "Members": { - "EncryptStringForPlayerId": { - "MemberType": "Function", - "Name": "EncryptStringForPlayerId", - "Parameters": [ - { - "Name": "toEncrypt", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "playerId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "NetworkServer", - "Superclass": "NetworkPeer", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "NetworkSettings": { - "Members": { - "EmulatedTotalMemoryInMB": { - "Category": "Data", - "MemberType": "Property", - "Name": "EmulatedTotalMemoryInMB", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "FreeMemoryMBytes": { - "Category": "Data", - "MemberType": "Property", - "Name": "FreeMemoryMBytes", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "HttpProxyEnabled": { - "Category": "Proxy Settings", - "MemberType": "Property", - "Name": "HttpProxyEnabled", - "Security": { - "Read": "None", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "HttpProxyURL": { - "Category": "Proxy Settings", - "MemberType": "Property", - "Name": "HttpProxyURL", - "Security": { - "Read": "None", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "IncomingReplicationLag": { - "Category": "Diagnostics", - "MemberType": "Property", - "Name": "IncomingReplicationLag", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "PrintJoinSizeBreakdown": { - "Category": "Diagnostics", - "MemberType": "Property", - "Name": "PrintJoinSizeBreakdown", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "PrintPhysicsErrors": { - "Category": "Diagnostics", - "MemberType": "Property", - "Name": "PrintPhysicsErrors", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "PrintStreamInstanceQuota": { - "Category": "Diagnostics", - "MemberType": "Property", - "Name": "PrintStreamInstanceQuota", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "RandomizeJoinInstanceOrder": { - "Category": "Advanced", - "MemberType": "Property", - "Name": "RandomizeJoinInstanceOrder", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "RenderStreamedRegions": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "RenderStreamedRegions", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ShowActiveAnimationAsset": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "ShowActiveAnimationAsset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "NetworkSettings", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotBrowsable" - ] - }, - "NoCollisionConstraint": { - "Members": { - "Enabled": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Part0": { - "Category": "Parts", - "MemberType": "Property", - "Name": "Part0", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "BasePart" - } - }, - "Part1": { - "Category": "Parts", - "MemberType": "Property", - "Name": "Part1", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "BasePart" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "NoCollisionConstraint", - "Superclass": "Instance" - }, - "NonReplicatedCSGDictionaryService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "NonReplicatedCSGDictionaryService", - "Superclass": "FlyweightService", - "Tags": [ - "Service" - ] - }, - "NotificationService": { - "Members": { - "ActionEnabled": { - "MemberType": "Function", - "Name": "ActionEnabled", - "Parameters": [ - { - "Name": "actionType", - "Type": { - "Category": "Enum", - "Name": "AppShellActionType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ActionTaken": { - "MemberType": "Function", - "Name": "ActionTaken", - "Parameters": [ - { - "Name": "actionType", - "Type": { - "Category": "Enum", - "Name": "AppShellActionType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CancelAllNotification": { - "MemberType": "Function", - "Name": "CancelAllNotification", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CancelNotification": { - "MemberType": "Function", - "Name": "CancelNotification", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "alertId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetScheduledNotifications": { - "MemberType": "Function", - "Name": "GetScheduledNotifications", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "LocalUserSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "IsConnected": { - "Category": "Data", - "MemberType": "Property", - "Name": "IsConnected", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "IsLuaChatEnabled": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "IsLuaChatEnabled", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "IsLuaGameDetailsEnabled": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "IsLuaGameDetailsEnabled", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Roblox17sConnectionChanged": { - "MemberType": "Event", - "Name": "Roblox17sConnectionChanged", - "Parameters": [ - { - "Name": "connectionName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "connectionState", - "Type": { - "Category": "Enum", - "Name": "ConnectionState" - } - }, - { - "Name": "namespaceSequenceNumbers", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Roblox17sEventReceived": { - "MemberType": "Event", - "Name": "Roblox17sEventReceived", - "Parameters": [ - { - "Name": "eventData", - "Type": { - "Category": "Group", - "Name": "Map" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RobloxConnectionChanged": { - "MemberType": "Event", - "Name": "RobloxConnectionChanged", - "Parameters": [ - { - "Name": "connectionName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "connectionState", - "Type": { - "Category": "Enum", - "Name": "ConnectionState" - } - }, - { - "Name": "sequenceNumber", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "namespaceSequenceNumbers", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RobloxEventReceived": { - "MemberType": "Event", - "Name": "RobloxEventReceived", - "Parameters": [ - { - "Name": "eventData", - "Type": { - "Category": "Group", - "Name": "Map" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ScheduleNotification": { - "MemberType": "Function", - "Name": "ScheduleNotification", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "alertId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "alertMsg", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "minutesToFire", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SelectedTheme": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "SelectedTheme", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "SwitchedToAppShellFeature": { - "MemberType": "Function", - "Name": "SwitchedToAppShellFeature", - "Parameters": [ - { - "Name": "appShellFeature", - "Type": { - "Category": "Enum", - "Name": "AppShellFeature" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "NotificationService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "NumberPose": { - "Members": { - "Value": { - "Category": "Data", - "MemberType": "Property", - "Name": "Value", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - } - }, - "MemoryCategory": "Animation", - "Name": "NumberPose", - "Superclass": "PoseBase" - }, - "NumberValue": { - "Members": { - "Changed": { - "MemberType": "Event", - "Name": "Changed", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "double" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Value": { - "Category": "Data", - "MemberType": "Property", - "Name": "Value", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "changed": { - "MemberType": "Event", - "Name": "changed", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "double" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "NumberValue", - "Superclass": "ValueBase" - }, - "ObjectValue": { - "Members": { - "Changed": { - "MemberType": "Event", - "Name": "Changed", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Value": { - "Category": "Data", - "MemberType": "Property", - "Name": "Value", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - }, - "changed": { - "MemberType": "Event", - "Name": "changed", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "ObjectValue", - "Superclass": "ValueBase" - }, - "OmniRecommendationsService": { - "Members": { - "ClearSessionId": { - "MemberType": "Function", - "Name": "ClearSessionId", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetSessionId": { - "MemberType": "Function", - "Name": "GetSessionId", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MakeRequest": { - "MemberType": "Function", - "Name": "MakeRequest", - "Parameters": [ - { - "Name": "nextPageToken", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "HttpRequest" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "OmniRecommendationsService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "OpenCloudApiV1": { - "Members": { - "CreateModel": { - "MemberType": "Function", - "Name": "CreateModel", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "OpenCloudModel" - }, - "Security": "None", - "Tags": { - "CustomLuaState": true - }, - "ThreadSafety": "Unsafe" - }, - "CreateUserNotificationAsync": { - "MemberType": "Function", - "Name": "CreateUserNotificationAsync", - "Parameters": [ - { - "Name": "user", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "userNotification", - "Type": { - "Category": "DataType", - "Name": "OpenCloudModel" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "OpenCloudModel" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "OpenCloudApiV1", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "OpenCloudService": { - "Members": { - "GetApiV1": { - "MemberType": "Function", - "Name": "GetApiV1", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "OpenCloudApiV1" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "OpenCloudService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "OrderedDataStore": { - "Members": { - "GetSortedAsync": { - "MemberType": "Function", - "Name": "GetSortedAsync", - "Parameters": [ - { - "Name": "ascending", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "pagesize", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "minValue", - "Type": { - "Category": "Group", - "Name": "Variant" - } - }, - { - "Name": "maxValue", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "OrderedDataStore", - "Superclass": "GlobalDataStore", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "OutfitPages": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "OutfitPages", - "Superclass": "Pages", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "PVAdornment": { - "Members": { - "Adornee": { - "Category": "Data", - "MemberType": "Property", - "Name": "Adornee", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "PVInstance" - } - } - }, - "MemoryCategory": "Instances", - "Name": "PVAdornment", - "Superclass": "GuiBase3d", - "Tags": [ - "NotCreatable" - ] - }, - "PVInstance": { - "Members": { - "GetPivot": { - "MemberType": "Function", - "Name": "GetPivot", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "CFrame" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "Origin": { - "Category": "Transform", - "MemberType": "Property", - "Name": "Origin", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "Pivot Offset": { - "Category": "Pivot", - "MemberType": "Property", - "Name": "Pivot Offset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "PivotTo": { - "MemberType": "Function", - "Name": "PivotTo", - "Parameters": [ - { - "Name": "targetCFrame", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "PVInstance", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotBrowsable" - ] - }, - "PackageLink": { - "Members": { - "AutoUpdate": { - "Category": "Link", - "MemberType": "Property", - "Name": "AutoUpdate", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Creator": { - "Category": "Data", - "MemberType": "Property", - "Name": "Creator", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "NotScriptable": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "PackageAssetName": { - "Category": "Data", - "MemberType": "Property", - "Name": "PackageAssetName", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "NotScriptable": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "PackageId": { - "Category": "Link", - "MemberType": "Property", - "Name": "PackageId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "PermissionLevel": { - "Category": "Data", - "MemberType": "Property", - "Name": "PermissionLevel", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "NotScriptable": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "PackagePermission" - } - }, - "Status": { - "Category": "Link", - "MemberType": "Property", - "Name": "Status", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "VersionNumber": { - "Category": "Link", - "MemberType": "Property", - "Name": "VersionNumber", - "Security": { - "Read": "None", - "Write": "NotAccessibleSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - } - }, - "MemoryCategory": "Instances", - "Name": "PackageLink", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotBrowsable" - ] - }, - "PackageService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "PackageService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "PackageUIService": { - "Members": { - "ConvertToPackageUpload": { - "MemberType": "Function", - "Name": "ConvertToPackageUpload", - "Parameters": [ - { - "Name": "uploadUrl", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "cloneInstances", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - }, - { - "Name": "originalInstances", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetPackageInfo": { - "MemberType": "Function", - "Name": "GetPackageInfo", - "Parameters": [ - { - "Name": "packageAssetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "OnConvertToPackageResult": { - "MemberType": "Event", - "Name": "OnConvertToPackageResult", - "Parameters": [ - { - "Name": "isSuccessful", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "errorMessage", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnOpenConvertToPackagePlugin": { - "MemberType": "Event", - "Name": "OnOpenConvertToPackagePlugin", - "Parameters": [ - { - "Name": "instances", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - }, - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "cloneInstances", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PublishPackage": { - "MemberType": "Function", - "Name": "PublishPackage", - "Parameters": [ - { - "Name": "packageInstance", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "SetPackageVersion": { - "MemberType": "Function", - "Name": "SetPackageVersion", - "Parameters": [ - { - "Name": "packageInstance", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "versionNumber", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "PackageUIService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "Pages": { - "Members": { - "AdvanceToNextPageAsync": { - "MemberType": "Function", - "Name": "AdvanceToNextPageAsync", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetCurrentPage": { - "MemberType": "Function", - "Name": "GetCurrentPage", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsFinished": { - "Category": "Data", - "MemberType": "Property", - "Name": "IsFinished", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Pages", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "Pants": { - "Members": { - "PantsTemplate": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "PantsTemplate", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Pants", - "Superclass": "Clothing" - }, - "ParabolaAdornment": { - "Members": { - "A": { - "Category": "Data", - "MemberType": "Property", - "Name": "A", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "B": { - "Category": "Data", - "MemberType": "Property", - "Name": "B", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "C": { - "Category": "Data", - "MemberType": "Property", - "Name": "C", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "FindPartOnParabola": { - "MemberType": "Function", - "Name": "FindPartOnParabola", - "Parameters": [ - { - "Name": "ignoreDescendentsTable", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Range": { - "Category": "Data", - "MemberType": "Property", - "Name": "Range", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Thickness": { - "Category": "Data", - "MemberType": "Property", - "Name": "Thickness", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "ParabolaAdornment", - "Superclass": "PVAdornment" - }, - "Part": { - "Members": { - "Shape": { - "Category": "Part", - "MemberType": "Property", - "Name": "Shape", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "PartType" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "Part", - "Superclass": "FormFactorPart" - }, - "PartAdornment": { - "Members": { - "Adornee": { - "Category": "Data", - "MemberType": "Property", - "Name": "Adornee", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "BasePart" - } - } - }, - "MemoryCategory": "Instances", - "Name": "PartAdornment", - "Superclass": "GuiBase3d", - "Tags": [ - "NotCreatable" - ] - }, - "PartOperation": { - "Members": { - "RenderFidelity": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "RenderFidelity", - "Security": { - "Read": "None", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "RenderFidelity" - } - }, - "SmoothingAngle": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "SmoothingAngle", - "Security": { - "Read": "None", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "SubstituteGeometry": { - "MemberType": "Function", - "Name": "SubstituteGeometry", - "Parameters": [ - { - "Name": "source", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TriangleCount": { - "Category": "Data", - "MemberType": "Property", - "Name": "TriangleCount", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "UsePartColor": { - "Category": "Data", - "MemberType": "Property", - "Name": "UsePartColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "PartOperation", - "Superclass": "TriangleMeshPart" - }, - "PartOperationAsset": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "PartOperationAsset", - "Superclass": "Instance" - }, - "ParticleEmitter": { - "Members": { - "Acceleration": { - "Category": "Motion", - "MemberType": "Property", - "Name": "Acceleration", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "Brightness": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Brightness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Clear": { - "MemberType": "Function", - "Name": "Clear", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Color": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "ColorSequence" - } - }, - "Drag": { - "Category": "Particles", - "MemberType": "Property", - "Name": "Drag", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "EmissionDirection": { - "Category": "Emission", - "MemberType": "Property", - "Name": "EmissionDirection", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "NormalId" - } - }, - "Emit": { - "MemberType": "Function", - "Name": "Emit", - "Parameters": [ - { - "Default": "16", - "Name": "particleCount", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Enabled": { - "Category": "Emission", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "FastForward": { - "MemberType": "Function", - "Name": "FastForward", - "Parameters": [ - { - "Name": "numFrames", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "FlipbookFramerate": { - "Category": "Flipbook", - "MemberType": "Property", - "Name": "FlipbookFramerate", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "NumberRange" - } - }, - "FlipbookIncompatible": { - "Category": "Flipbook", - "MemberType": "Property", - "Name": "FlipbookIncompatible", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "FlipbookLayout": { - "Category": "Flipbook", - "MemberType": "Property", - "Name": "FlipbookLayout", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ParticleFlipbookLayout" - } - }, - "FlipbookMode": { - "Category": "Flipbook", - "MemberType": "Property", - "Name": "FlipbookMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ParticleFlipbookMode" - } - }, - "FlipbookStartRandom": { - "Category": "Flipbook", - "MemberType": "Property", - "Name": "FlipbookStartRandom", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Lifetime": { - "Category": "Emission", - "MemberType": "Property", - "Name": "Lifetime", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "NumberRange" - } - }, - "LightEmission": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "LightEmission", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LightInfluence": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "LightInfluence", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LockedToPart": { - "Category": "Particles", - "MemberType": "Property", - "Name": "LockedToPart", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Orientation": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Orientation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ParticleOrientation" - } - }, - "Rate": { - "Category": "Emission", - "MemberType": "Property", - "Name": "Rate", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RotSpeed": { - "Category": "Emission", - "MemberType": "Property", - "Name": "RotSpeed", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "NumberRange" - } - }, - "Rotation": { - "Category": "Emission", - "MemberType": "Property", - "Name": "Rotation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "NumberRange" - } - }, - "Shape": { - "Category": "EmitterShape", - "MemberType": "Property", - "Name": "Shape", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ParticleEmitterShape" - } - }, - "ShapeInOut": { - "Category": "EmitterShape", - "MemberType": "Property", - "Name": "ShapeInOut", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ParticleEmitterShapeInOut" - } - }, - "ShapePartial": { - "Category": "EmitterShape", - "MemberType": "Property", - "Name": "ShapePartial", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ShapeStyle": { - "Category": "EmitterShape", - "MemberType": "Property", - "Name": "ShapeStyle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ParticleEmitterShapeStyle" - } - }, - "Size": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Size", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "NumberSequence" - } - }, - "Speed": { - "Category": "Emission", - "MemberType": "Property", - "Name": "Speed", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "NumberRange" - } - }, - "SpreadAngle": { - "Category": "Emission", - "MemberType": "Property", - "Name": "SpreadAngle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "Squash": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Squash", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "NumberSequence" - } - }, - "Texture": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Texture", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "TimeScale": { - "Category": "Particles", - "MemberType": "Property", - "Name": "TimeScale", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Transparency": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Transparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "NumberSequence" - } - }, - "VelocityInheritance": { - "Category": "Particles", - "MemberType": "Property", - "Name": "VelocityInheritance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "VelocitySpread": { - "Category": "Emission", - "MemberType": "Property", - "Name": "VelocitySpread", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "WindAffectsDrag": { - "Category": "Particles", - "MemberType": "Property", - "Name": "WindAffectsDrag", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ZOffset": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "ZOffset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "ParticleEmitter", - "Superclass": "Instance" - }, - "PatchBundlerFileWatch": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "PatchBundlerFileWatch", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "PatchMapping": { - "Members": { - "FlattenTree": { - "Category": "Data", - "MemberType": "Property", - "Name": "FlattenTree", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "PatchId": { - "Category": "Data", - "MemberType": "Property", - "Name": "PatchId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "TargetPath": { - "Category": "Data", - "MemberType": "Property", - "Name": "TargetPath", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "PatchMapping", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "Path": { - "Members": { - "Blocked": { - "MemberType": "Event", - "Name": "Blocked", - "Parameters": [ - { - "Name": "blockedWaypointIdx", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CheckOcclusionAsync": { - "MemberType": "Function", - "Name": "CheckOcclusionAsync", - "Parameters": [ - { - "Name": "start", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ComputeAsync": { - "MemberType": "Function", - "Name": "ComputeAsync", - "Parameters": [ - { - "Name": "start", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "finish", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetPointCoordinates": { - "MemberType": "Function", - "Name": "GetPointCoordinates", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetWaypoints": { - "MemberType": "Function", - "Name": "GetWaypoints", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Status": { - "Category": "Data", - "MemberType": "Property", - "Name": "Status", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "PathStatus" - } - }, - "Unblocked": { - "MemberType": "Event", - "Name": "Unblocked", - "Parameters": [ - { - "Name": "unblockedWaypointIdx", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "Path", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "PathfindingLink": { - "Members": { - "Attachment0": { - "Category": "Data", - "MemberType": "Property", - "Name": "Attachment0", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Attachment" - } - }, - "Attachment1": { - "Category": "Data", - "MemberType": "Property", - "Name": "Attachment1", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Attachment" - } - }, - "IsBidirectional": { - "Category": "Data", - "MemberType": "Property", - "Name": "IsBidirectional", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Label": { - "Category": "Data", - "MemberType": "Property", - "Name": "Label", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "PathfindingLink", - "Superclass": "Instance" - }, - "PathfindingModifier": { - "Members": { - "Label": { - "Category": "Data", - "MemberType": "Property", - "Name": "Label", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "PassThrough": { - "Category": "Data", - "MemberType": "Property", - "Name": "PassThrough", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "PathfindingModifier", - "Superclass": "Instance" - }, - "PathfindingService": { - "Members": { - "ComputeRawPathAsync": { - "MemberType": "Function", - "Name": "ComputeRawPathAsync", - "Parameters": [ - { - "Name": "start", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "finish", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "maxDistance", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "Deprecated": true, - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ComputeSmoothPathAsync": { - "MemberType": "Function", - "Name": "ComputeSmoothPathAsync", - "Parameters": [ - { - "Name": "start", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "finish", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "maxDistance", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "Deprecated": true, - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "CreatePath": { - "MemberType": "Function", - "Name": "CreatePath", - "Parameters": [ - { - "Default": "nil", - "Name": "agentParameters", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "EmptyCutoff": { - "Category": "Data", - "MemberType": "Property", - "Name": "EmptyCutoff", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "FindPathAsync": { - "MemberType": "Function", - "Name": "FindPathAsync", - "Parameters": [ - { - "Name": "start", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "finish", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "PathfindingService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "PausedState": { - "Members": { - "AllThreadsPaused": { - "Category": "State", - "MemberType": "Property", - "Name": "AllThreadsPaused", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Reason": { - "Category": "Data", - "MemberType": "Property", - "Name": "Reason", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "DebuggerPauseReason" - } - }, - "ThreadId": { - "Category": "Data", - "MemberType": "Property", - "Name": "ThreadId", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - } - }, - "MemoryCategory": "Instances", - "Name": "PausedState", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "PausedStateBreakpoint": { - "Members": { - "Breakpoint": { - "Category": "Data", - "MemberType": "Property", - "Name": "Breakpoint", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Breakpoint" - } - } - }, - "MemoryCategory": "Instances", - "Name": "PausedStateBreakpoint", - "Superclass": "PausedState", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "PausedStateException": { - "Members": { - "ExceptionText": { - "Category": "Data", - "MemberType": "Property", - "Name": "ExceptionText", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "PausedStateException", - "Superclass": "PausedState", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "PermissionsService": { - "Members": { - "GetIsThirdPartyAssetAllowed": { - "MemberType": "Function", - "Name": "GetIsThirdPartyAssetAllowed", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetIsThirdPartyPurchaseAllowed": { - "MemberType": "Function", - "Name": "GetIsThirdPartyPurchaseAllowed", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetIsThirdPartyTeleportAllowed": { - "MemberType": "Function", - "Name": "GetIsThirdPartyTeleportAllowed", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetPermissions": { - "MemberType": "Function", - "Name": "GetPermissions", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetPermissions": { - "MemberType": "Function", - "Name": "SetPermissions", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "permissions", - "Type": { - "Category": "Group", - "Name": "Array" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "PermissionsService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "PhysicsService": { - "Members": { - "CollisionGroupContainsPart": { - "MemberType": "Function", - "Name": "CollisionGroupContainsPart", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "part", - "Type": { - "Category": "Class", - "Name": "BasePart" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "CollisionGroupSetCollidable": { - "MemberType": "Function", - "Name": "CollisionGroupSetCollidable", - "Parameters": [ - { - "Name": "name1", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "name2", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "collidable", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CollisionGroupsAreCollidable": { - "MemberType": "Function", - "Name": "CollisionGroupsAreCollidable", - "Parameters": [ - { - "Name": "name1", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "name2", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CreateCollisionGroup": { - "MemberType": "Function", - "Name": "CreateCollisionGroup", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetCollisionGroupId": { - "MemberType": "Function", - "Name": "GetCollisionGroupId", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetCollisionGroupName": { - "MemberType": "Function", - "Name": "GetCollisionGroupName", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetCollisionGroups": { - "MemberType": "Function", - "Name": "GetCollisionGroups", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetMaxCollisionGroups": { - "MemberType": "Function", - "Name": "GetMaxCollisionGroups", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetRegisteredCollisionGroups": { - "MemberType": "Function", - "Name": "GetRegisteredCollisionGroups", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IkSolve": { - "MemberType": "Function", - "Name": "IkSolve", - "Parameters": [ - { - "Name": "part", - "Type": { - "Category": "Class", - "Name": "BasePart" - } - }, - { - "Name": "target", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - }, - { - "Name": "translateStiffness", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "rotateStiffness", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsCollisionGroupRegistered": { - "MemberType": "Function", - "Name": "IsCollisionGroupRegistered", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "LocalIkSolve": { - "MemberType": "Function", - "Name": "LocalIkSolve", - "Parameters": [ - { - "Name": "part", - "Type": { - "Category": "Class", - "Name": "BasePart" - } - }, - { - "Name": "target", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - }, - { - "Name": "translateStiffness", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "rotateStiffness", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RegisterCollisionGroup": { - "MemberType": "Function", - "Name": "RegisterCollisionGroup", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RemoveCollisionGroup": { - "MemberType": "Function", - "Name": "RemoveCollisionGroup", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "RenameCollisionGroup": { - "MemberType": "Function", - "Name": "RenameCollisionGroup", - "Parameters": [ - { - "Name": "from", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "to", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetPartCollisionGroup": { - "MemberType": "Function", - "Name": "SetPartCollisionGroup", - "Parameters": [ - { - "Name": "part", - "Type": { - "Category": "Class", - "Name": "BasePart" - } - }, - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "UnregisterCollisionGroup": { - "MemberType": "Function", - "Name": "UnregisterCollisionGroup", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "PhysicsService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "PhysicsSettings": { - "Members": { - "AllowSleep": { - "Category": "Performance", - "MemberType": "Property", - "Name": "AllowSleep", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AreAnchorsShown": { - "Category": "Display", - "MemberType": "Property", - "Name": "AreAnchorsShown", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AreAssembliesShown": { - "Category": "Display", - "MemberType": "Property", - "Name": "AreAssembliesShown", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AreAssemblyCentersOfMassShown": { - "Category": "Display", - "MemberType": "Property", - "Name": "AreAssemblyCentersOfMassShown", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AreAwakePartsHighlighted": { - "Category": "Display", - "MemberType": "Property", - "Name": "AreAwakePartsHighlighted", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AreBodyTypesShown": { - "Category": "Display", - "MemberType": "Property", - "Name": "AreBodyTypesShown", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AreCollisionCostsShown": { - "Category": "Display", - "MemberType": "Property", - "Name": "AreCollisionCostsShown", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AreConstraintForcesShownForSelectedOrHoveredInstances": { - "Category": "Display", - "MemberType": "Property", - "Name": "AreConstraintForcesShownForSelectedOrHoveredInstances", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AreConstraintTorquesShownForSelectedOrHoveredInstances": { - "Category": "Display", - "MemberType": "Property", - "Name": "AreConstraintTorquesShownForSelectedOrHoveredInstances", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AreContactForcesShownForSelectedOrHoveredAssemblies": { - "Category": "Display", - "MemberType": "Property", - "Name": "AreContactForcesShownForSelectedOrHoveredAssemblies", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AreContactIslandsShown": { - "Category": "Display", - "MemberType": "Property", - "Name": "AreContactIslandsShown", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AreContactPointsShown": { - "Category": "Display", - "MemberType": "Property", - "Name": "AreContactPointsShown", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AreJointCoordinatesShown": { - "Category": "Display", - "MemberType": "Property", - "Name": "AreJointCoordinatesShown", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AreMagnitudesShownForDrawnForcesAndTorques": { - "Category": "Display", - "MemberType": "Property", - "Name": "AreMagnitudesShownForDrawnForcesAndTorques", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AreMechanismsShown": { - "Category": "Display", - "MemberType": "Property", - "Name": "AreMechanismsShown", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AreModelCoordsShown": { - "Category": "Display", - "MemberType": "Property", - "Name": "AreModelCoordsShown", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AreOwnersShown": { - "Category": "Display", - "MemberType": "Property", - "Name": "AreOwnersShown", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ArePartCoordsShown": { - "Category": "Display", - "MemberType": "Property", - "Name": "ArePartCoordsShown", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AreRegionsShown": { - "Category": "Display", - "MemberType": "Property", - "Name": "AreRegionsShown", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AreSolverIslandsShown": { - "Category": "Display", - "MemberType": "Property", - "Name": "AreSolverIslandsShown", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AreTerrainReplicationRegionsShown": { - "Category": "Display", - "MemberType": "Property", - "Name": "AreTerrainReplicationRegionsShown", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AreTimestepsShown": { - "Category": "Display", - "MemberType": "Property", - "Name": "AreTimestepsShown", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AreUnalignedPartsShown": { - "Category": "Display", - "MemberType": "Property", - "Name": "AreUnalignedPartsShown", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AreWorldCoordsShown": { - "Category": "Display", - "MemberType": "Property", - "Name": "AreWorldCoordsShown", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "DisableCSGv2": { - "Category": "Display", - "MemberType": "Property", - "Name": "DisableCSGv2", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "DisableCSGv3ForPlugins": { - "Category": "Display", - "MemberType": "Property", - "Name": "DisableCSGv3ForPlugins", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ForceCSGv2": { - "Category": "Display", - "MemberType": "Property", - "Name": "ForceCSGv2", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ForceDrawScale": { - "Category": "Display", - "MemberType": "Property", - "Name": "ForceDrawScale", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "IsInterpolationThrottleShown": { - "Category": "Display", - "MemberType": "Property", - "Name": "IsInterpolationThrottleShown", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "IsReceiveAgeShown": { - "Category": "Display", - "MemberType": "Property", - "Name": "IsReceiveAgeShown", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "IsTreeShown": { - "Category": "Display", - "MemberType": "Property", - "Name": "IsTreeShown", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "PhysicsEnvironmentalThrottle": { - "Category": "Performance", - "MemberType": "Property", - "Name": "PhysicsEnvironmentalThrottle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "EnviromentalPhysicsThrottle" - } - }, - "ShowDecompositionGeometry": { - "Category": "Display", - "MemberType": "Property", - "Name": "ShowDecompositionGeometry", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "SolverConvergenceVisualizationMode": { - "Category": "Display", - "MemberType": "Property", - "Name": "SolverConvergenceVisualizationMode", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "SolverConvergenceVisualizationMode" - } - }, - "ThrottleAdjustTime": { - "Category": "Performance", - "MemberType": "Property", - "Name": "ThrottleAdjustTime", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "UseCSGv2": { - "Category": "Display", - "MemberType": "Property", - "Name": "UseCSGv2", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "PhysicsSettings", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Settings" - ] - }, - "PitchShiftSoundEffect": { - "Members": { - "Octave": { - "Category": "State", - "MemberType": "Property", - "Name": "Octave", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "PitchShiftSoundEffect", - "Superclass": "SoundEffect" - }, - "PlaceStatsService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "PlaceStatsService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "PlacesService": { - "Members": { - "StartPlaySolo": { - "MemberType": "Function", - "Name": "StartPlaySolo", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "PlacesService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "Plane": { - "Members": {}, - "MemoryCategory": "PhysicsParts", - "Name": "Plane", - "Superclass": "PlaneConstraint", - "Tags": [ - "Deprecated" - ] - }, - "PlaneConstraint": { - "Members": {}, - "MemoryCategory": "PhysicsParts", - "Name": "PlaneConstraint", - "Superclass": "Constraint" - }, - "Platform": { - "Members": {}, - "MemoryCategory": "PhysicsParts", - "Name": "Platform", - "Superclass": "Part", - "Tags": [ - "NotCreatable" - ] - }, - "Player": { - "Members": { - "AccountAge": { - "Category": "Data", - "MemberType": "Property", - "Name": "AccountAge", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "AddToBlockList": { - "MemberType": "Function", - "Name": "AddToBlockList", - "Parameters": [ - { - "Name": "userIds", - "Type": { - "Category": "Group", - "Name": "Array" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "AppearanceDidLoad": { - "Category": "Data", - "MemberType": "Property", - "Name": "AppearanceDidLoad", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AutoJumpEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "AutoJumpEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "CameraMaxZoomDistance": { - "Category": "Camera", - "MemberType": "Property", - "Name": "CameraMaxZoomDistance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "CameraMinZoomDistance": { - "Category": "Camera", - "MemberType": "Property", - "Name": "CameraMinZoomDistance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "CameraMode": { - "Category": "Camera", - "MemberType": "Property", - "Name": "CameraMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "CameraMode" - } - }, - "CanLoadCharacterAppearance": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "CanLoadCharacterAppearance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Character": { - "Category": "Data", - "MemberType": "Property", - "Name": "Character", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Model" - } - }, - "CharacterAdded": { - "MemberType": "Event", - "Name": "CharacterAdded", - "Parameters": [ - { - "Name": "character", - "Type": { - "Category": "Class", - "Name": "Model" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CharacterAppearance": { - "Category": "Data", - "MemberType": "Property", - "Name": "CharacterAppearance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "NotBrowsable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "CharacterAppearanceId": { - "Category": "Data", - "MemberType": "Property", - "Name": "CharacterAppearanceId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "CharacterAppearanceLoaded": { - "MemberType": "Event", - "Name": "CharacterAppearanceLoaded", - "Parameters": [ - { - "Name": "character", - "Type": { - "Category": "Class", - "Name": "Model" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CharacterRemoving": { - "MemberType": "Event", - "Name": "CharacterRemoving", - "Parameters": [ - { - "Name": "character", - "Type": { - "Category": "Class", - "Name": "Model" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ChatMode": { - "Category": "Data", - "MemberType": "Property", - "Name": "ChatMode", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ChatMode" - } - }, - "Chatted": { - "MemberType": "Event", - "Name": "Chatted", - "Parameters": [ - { - "Name": "message", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "recipient", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ClearCharacterAppearance": { - "MemberType": "Function", - "Name": "ClearCharacterAppearance", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DataComplexity": { - "Category": "Data", - "MemberType": "Property", - "Name": "DataComplexity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "DataComplexityLimit": { - "Category": "Data", - "MemberType": "Property", - "Name": "DataComplexityLimit", - "Security": { - "Read": "LocalUserSecurity", - "Write": "LocalUserSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "DataReady": { - "Category": "Data", - "MemberType": "Property", - "Name": "DataReady", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "DevCameraOcclusionMode": { - "Category": "Camera", - "MemberType": "Property", - "Name": "DevCameraOcclusionMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "DevCameraOcclusionMode" - } - }, - "DevComputerCameraMode": { - "Category": "Camera", - "MemberType": "Property", - "Name": "DevComputerCameraMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "DevComputerCameraMovementMode" - } - }, - "DevComputerMovementMode": { - "Category": "Control", - "MemberType": "Property", - "Name": "DevComputerMovementMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "DevComputerMovementMode" - } - }, - "DevEnableMouseLock": { - "Category": "Camera", - "MemberType": "Property", - "Name": "DevEnableMouseLock", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "DevTouchCameraMode": { - "Category": "Camera", - "MemberType": "Property", - "Name": "DevTouchCameraMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "DevTouchCameraMovementMode" - } - }, - "DevTouchMovementMode": { - "Category": "Control", - "MemberType": "Property", - "Name": "DevTouchMovementMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "DevTouchMovementMode" - } - }, - "DisplayName": { - "Category": "Data", - "MemberType": "Property", - "Name": "DisplayName", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "DistanceFromCharacter": { - "MemberType": "Function", - "Name": "DistanceFromCharacter", - "Parameters": [ - { - "Name": "point", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "float" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "FollowUserId": { - "Category": "Data", - "MemberType": "Property", - "Name": "FollowUserId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "FriendStatusChanged": { - "MemberType": "Event", - "Name": "FriendStatusChanged", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Player" - } - }, - { - "Name": "friendStatus", - "Type": { - "Category": "Enum", - "Name": "FriendStatus" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GameplayPaused": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "GameplayPaused", - "Security": { - "Read": "None", - "Write": "NotAccessibleSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "GetFriendStatus": { - "MemberType": "Function", - "Name": "GetFriendStatus", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "ReturnType": { - "Category": "Enum", - "Name": "FriendStatus" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetFriendsOnline": { - "MemberType": "Function", - "Name": "GetFriendsOnline", - "Parameters": [ - { - "Default": "200", - "Name": "maxFriends", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetGameSessionID": { - "MemberType": "Function", - "Name": "GetGameSessionID", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetJoinData": { - "MemberType": "Function", - "Name": "GetJoinData", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetMouse": { - "MemberType": "Function", - "Name": "GetMouse", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "Mouse" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetNetworkPing": { - "MemberType": "Function", - "Name": "GetNetworkPing", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "float" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GetRankInGroup": { - "MemberType": "Function", - "Name": "GetRankInGroup", - "Parameters": [ - { - "Name": "groupId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetRoleInGroup": { - "MemberType": "Function", - "Name": "GetRoleInGroup", - "Parameters": [ - { - "Name": "groupId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetUnder13": { - "MemberType": "Function", - "Name": "GetUnder13", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Guest": { - "Category": "Data", - "MemberType": "Property", - "Name": "Guest", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "HasAppearanceLoaded": { - "MemberType": "Function", - "Name": "HasAppearanceLoaded", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "HasVerifiedBadge": { - "Category": "Data", - "MemberType": "Property", - "Name": "HasVerifiedBadge", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "HealthDisplayDistance": { - "Category": "Camera", - "MemberType": "Property", - "Name": "HealthDisplayDistance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Idled": { - "MemberType": "Event", - "Name": "Idled", - "Parameters": [ - { - "Name": "time", - "Type": { - "Category": "Primitive", - "Name": "double" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsBestFriendsWith": { - "MemberType": "Function", - "Name": "IsBestFriendsWith", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true, - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "IsFriendsWith": { - "MemberType": "Function", - "Name": "IsFriendsWith", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "IsInGroup": { - "MemberType": "Function", - "Name": "IsInGroup", - "Parameters": [ - { - "Name": "groupId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "IsVerified": { - "MemberType": "Function", - "Name": "IsVerified", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Kick": { - "MemberType": "Function", - "Name": "Kick", - "Parameters": [ - { - "Default": "", - "Name": "message", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "LoadBoolean": { - "MemberType": "Function", - "Name": "LoadBoolean", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "LoadCharacter": { - "MemberType": "Function", - "Name": "LoadCharacter", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "LoadCharacterAppearance": { - "MemberType": "Function", - "Name": "LoadCharacterAppearance", - "Parameters": [ - { - "Name": "assetInstance", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "LoadCharacterBlocking": { - "MemberType": "Function", - "Name": "LoadCharacterBlocking", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "LoadCharacterWithHumanoidDescription": { - "MemberType": "Function", - "Name": "LoadCharacterWithHumanoidDescription", - "Parameters": [ - { - "Name": "humanoidDescription", - "Type": { - "Category": "Class", - "Name": "HumanoidDescription" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "LoadData": { - "MemberType": "Function", - "Name": "LoadData", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "LoadInstance": { - "MemberType": "Function", - "Name": "LoadInstance", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "LoadNumber": { - "MemberType": "Function", - "Name": "LoadNumber", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "double" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "LoadString": { - "MemberType": "Function", - "Name": "LoadString", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "LocaleId": { - "Category": "Data", - "MemberType": "Property", - "Name": "LocaleId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "MaximumSimulationRadius": { - "Category": "Data", - "MemberType": "Property", - "Name": "MaximumSimulationRadius", - "Security": { - "Read": "LocalUserSecurity", - "Write": "LocalUserSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MembershipType": { - "Category": "Data", - "MemberType": "Property", - "Name": "MembershipType", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "MembershipType" - } - }, - "Move": { - "MemberType": "Function", - "Name": "Move", - "Parameters": [ - { - "Name": "walkDirection", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Default": "false", - "Name": "relativeToCamera", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "NameDisplayDistance": { - "Category": "Camera", - "MemberType": "Property", - "Name": "NameDisplayDistance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Neutral": { - "Category": "Team", - "MemberType": "Property", - "Name": "Neutral", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "OnTeleport": { - "MemberType": "Event", - "Name": "OnTeleport", - "Parameters": [ - { - "Name": "teleportState", - "Type": { - "Category": "Enum", - "Name": "TeleportState" - } - }, - { - "Name": "placeId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "spawnName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OsPlatform": { - "Category": "Data", - "MemberType": "Property", - "Name": "OsPlatform", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "PlatformName": { - "Category": "Data", - "MemberType": "Property", - "Name": "PlatformName", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "RemoveCharacter": { - "MemberType": "Function", - "Name": "RemoveCharacter", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ReplicationFocus": { - "Category": "Data", - "MemberType": "Property", - "Name": "ReplicationFocus", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - }, - "RequestFriendship": { - "MemberType": "Function", - "Name": "RequestFriendship", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RequestStreamAroundAsync": { - "MemberType": "Function", - "Name": "RequestStreamAroundAsync", - "Parameters": [ - { - "Name": "position", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Default": "0", - "Name": "timeOut", - "Type": { - "Category": "Primitive", - "Name": "double" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "RespawnLocation": { - "Category": "Data", - "MemberType": "Property", - "Name": "RespawnLocation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "SpawnLocation" - } - }, - "RevokeFriendship": { - "MemberType": "Function", - "Name": "RevokeFriendship", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SaveBoolean": { - "MemberType": "Function", - "Name": "SaveBoolean", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "SaveData": { - "MemberType": "Function", - "Name": "SaveData", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "SaveInstance": { - "MemberType": "Function", - "Name": "SaveInstance", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "value", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "SaveNumber": { - "MemberType": "Function", - "Name": "SaveNumber", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "double" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "SaveString": { - "MemberType": "Function", - "Name": "SaveString", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "SetAccountAge": { - "MemberType": "Function", - "Name": "SetAccountAge", - "Parameters": [ - { - "Name": "accountAge", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetCharacterAppearanceJson": { - "MemberType": "Function", - "Name": "SetCharacterAppearanceJson", - "Parameters": [ - { - "Name": "jsonBlob", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetExperienceSettingsLocaleId": { - "MemberType": "Function", - "Name": "SetExperienceSettingsLocaleId", - "Parameters": [ - { - "Name": "locale", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetMembershipType": { - "MemberType": "Function", - "Name": "SetMembershipType", - "Parameters": [ - { - "Name": "membershipType", - "Type": { - "Category": "Enum", - "Name": "MembershipType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetModerationAccessKey": { - "MemberType": "Function", - "Name": "SetModerationAccessKey", - "Parameters": [ - { - "Name": "moderationAccessKey", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetSuperSafeChat": { - "MemberType": "Function", - "Name": "SetSuperSafeChat", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetUnder13": { - "MemberType": "Function", - "Name": "SetUnder13", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxSecurity", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "SimulationRadius": { - "Category": "Data", - "MemberType": "Property", - "Name": "SimulationRadius", - "Security": { - "Read": "LocalUserSecurity", - "Write": "LocalUserSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "SimulationRadiusChanged": { - "MemberType": "Event", - "Name": "SimulationRadiusChanged", - "Parameters": [ - { - "Name": "radius", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Team": { - "Category": "Team", - "MemberType": "Property", - "Name": "Team", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Team" - } - }, - "TeamColor": { - "Category": "Team", - "MemberType": "Property", - "Name": "TeamColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BrickColor" - } - }, - "Teleported": { - "Category": "Data", - "MemberType": "Property", - "Name": "Teleported", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "TeleportedIn": { - "Category": "Data", - "MemberType": "Property", - "Name": "TeleportedIn", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "UnfilteredChat": { - "Category": "Data", - "MemberType": "Property", - "Name": "UnfilteredChat", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "UpdatePlayerBlocked": { - "MemberType": "Function", - "Name": "UpdatePlayerBlocked", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "blocked", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UserId": { - "Category": "Data", - "MemberType": "Property", - "Name": "UserId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "VRDevice": { - "Category": "Data", - "MemberType": "Property", - "Name": "VRDevice", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "VREnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "VREnabled", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "WaitForDataReady": { - "MemberType": "Function", - "Name": "WaitForDataReady", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true, - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "isFriendsWith": { - "MemberType": "Function", - "Name": "isFriendsWith", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true, - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "loadBoolean": { - "MemberType": "Function", - "Name": "loadBoolean", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "loadInstance": { - "MemberType": "Function", - "Name": "loadInstance", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "loadNumber": { - "MemberType": "Function", - "Name": "loadNumber", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "double" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "loadString": { - "MemberType": "Function", - "Name": "loadString", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "saveBoolean": { - "MemberType": "Function", - "Name": "saveBoolean", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "saveInstance": { - "MemberType": "Function", - "Name": "saveInstance", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "value", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "saveNumber": { - "MemberType": "Function", - "Name": "saveNumber", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "double" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "saveString": { - "MemberType": "Function", - "Name": "saveString", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "userId": { - "Category": "Data", - "MemberType": "Property", - "Name": "userId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "waitForDataReady": { - "MemberType": "Function", - "Name": "waitForDataReady", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true, - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "Player", - "Superclass": "Instance" - }, - "PlayerEmulatorService": { - "Members": { - "CustomPoliciesEnabled": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "CustomPoliciesEnabled", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "EmulatedCountryCode": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "EmulatedCountryCode", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "EmulatedGameLocale": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "EmulatedGameLocale", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "GetEmulatedPolicyInfo": { - "MemberType": "Function", - "Name": "GetEmulatedPolicyInfo", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PlayerEmulationEnabled": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "PlayerEmulationEnabled", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "RegionCodeWillHaveAutomaticNonCustomPolicies": { - "MemberType": "Function", - "Name": "RegionCodeWillHaveAutomaticNonCustomPolicies", - "Parameters": [ - { - "Name": "regionCode", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SerializedEmulatedPolicyInfo": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "SerializedEmulatedPolicyInfo", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BinaryString" - } - }, - "SetEmulatedPolicyInfo": { - "MemberType": "Function", - "Name": "SetEmulatedPolicyInfo", - "Parameters": [ - { - "Name": "emulatedPolicyInfo", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "PlayerEmulatorService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "PlayerGui": { - "Members": { - "CurrentScreenOrientation": { - "Category": "Data", - "MemberType": "Property", - "Name": "CurrentScreenOrientation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ScreenOrientation" - } - }, - "GetTopbarTransparency": { - "MemberType": "Function", - "Name": "GetTopbarTransparency", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "float" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "ScreenOrientation": { - "Category": "Data", - "MemberType": "Property", - "Name": "ScreenOrientation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ScreenOrientation" - } - }, - "SelectionImageObject": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "SelectionImageObject", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "GuiObject" - } - }, - "SetTopbarTransparency": { - "MemberType": "Function", - "Name": "SetTopbarTransparency", - "Parameters": [ - { - "Name": "transparency", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "TopbarTransparencyChangedSignal": { - "MemberType": "Event", - "Name": "TopbarTransparencyChangedSignal", - "Parameters": [ - { - "Name": "transparency", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "PlayerGui", - "Superclass": "BasePlayerGui", - "Tags": [ - "NotCreatable", - "PlayerReplicated" - ] - }, - "PlayerMouse": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "PlayerMouse", - "Superclass": "Mouse", - "Tags": [ - "NotCreatable" - ] - }, - "PlayerScripts": { - "Members": { - "ClearComputerCameraMovementModes": { - "MemberType": "Function", - "Name": "ClearComputerCameraMovementModes", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ClearComputerMovementModes": { - "MemberType": "Function", - "Name": "ClearComputerMovementModes", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ClearTouchCameraMovementModes": { - "MemberType": "Function", - "Name": "ClearTouchCameraMovementModes", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ClearTouchMovementModes": { - "MemberType": "Function", - "Name": "ClearTouchMovementModes", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ComputerCameraMovementModeRegistered": { - "MemberType": "Event", - "Name": "ComputerCameraMovementModeRegistered", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ComputerMovementModeRegistered": { - "MemberType": "Event", - "Name": "ComputerMovementModeRegistered", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetRegisteredComputerCameraMovementModes": { - "MemberType": "Function", - "Name": "GetRegisteredComputerCameraMovementModes", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetRegisteredComputerMovementModes": { - "MemberType": "Function", - "Name": "GetRegisteredComputerMovementModes", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetRegisteredTouchCameraMovementModes": { - "MemberType": "Function", - "Name": "GetRegisteredTouchCameraMovementModes", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetRegisteredTouchMovementModes": { - "MemberType": "Function", - "Name": "GetRegisteredTouchMovementModes", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RegisterComputerCameraMovementMode": { - "MemberType": "Function", - "Name": "RegisterComputerCameraMovementMode", - "Parameters": [ - { - "Name": "cameraMovementMode", - "Type": { - "Category": "Enum", - "Name": "ComputerCameraMovementMode" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RegisterComputerMovementMode": { - "MemberType": "Function", - "Name": "RegisterComputerMovementMode", - "Parameters": [ - { - "Name": "movementMode", - "Type": { - "Category": "Enum", - "Name": "ComputerMovementMode" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RegisterTouchCameraMovementMode": { - "MemberType": "Function", - "Name": "RegisterTouchCameraMovementMode", - "Parameters": [ - { - "Name": "cameraMovementMode", - "Type": { - "Category": "Enum", - "Name": "TouchCameraMovementMode" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RegisterTouchMovementMode": { - "MemberType": "Function", - "Name": "RegisterTouchMovementMode", - "Parameters": [ - { - "Name": "movementMode", - "Type": { - "Category": "Enum", - "Name": "TouchMovementMode" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TouchCameraMovementModeRegistered": { - "MemberType": "Event", - "Name": "TouchCameraMovementModeRegistered", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TouchMovementModeRegistered": { - "MemberType": "Event", - "Name": "TouchMovementModeRegistered", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "PlayerScripts", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "Players": { - "Members": { - "BubbleChat": { - "Category": "Data", - "MemberType": "Property", - "Name": "BubbleChat", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "CharacterAutoLoads": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "CharacterAutoLoads", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Chat": { - "MemberType": "Function", - "Name": "Chat", - "Parameters": [ - { - "Name": "message", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ClassicChat": { - "Category": "Data", - "MemberType": "Property", - "Name": "ClassicChat", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "CreateHumanoidModelFromDescription": { - "MemberType": "Function", - "Name": "CreateHumanoidModelFromDescription", - "Parameters": [ - { - "Name": "description", - "Type": { - "Category": "Class", - "Name": "HumanoidDescription" - } - }, - { - "Name": "rigType", - "Type": { - "Category": "Enum", - "Name": "HumanoidRigType" - } - }, - { - "Default": "Default", - "Name": "assetTypeVerification", - "Type": { - "Category": "Enum", - "Name": "AssetTypeVerification" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Model" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "CreateHumanoidModelFromUserId": { - "MemberType": "Function", - "Name": "CreateHumanoidModelFromUserId", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Model" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "CreateLocalPlayer": { - "MemberType": "Function", - "Name": "CreateLocalPlayer", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "Player" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "FriendRequestEvent": { - "MemberType": "Event", - "Name": "FriendRequestEvent", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Player" - } - }, - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Player" - } - }, - { - "Name": "friendRequestEvent", - "Type": { - "Category": "Enum", - "Name": "FriendRequestEvent" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GameAnnounce": { - "MemberType": "Event", - "Name": "GameAnnounce", - "Parameters": [ - { - "Name": "message", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetCharacterAppearanceAsync": { - "MemberType": "Function", - "Name": "GetCharacterAppearanceAsync", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Model" - }, - "Security": "None", - "Tags": { - "Deprecated": true, - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetCharacterAppearanceInfoAsync": { - "MemberType": "Function", - "Name": "GetCharacterAppearanceInfoAsync", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetFriendsAsync": { - "MemberType": "Function", - "Name": "GetFriendsAsync", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "FriendPages" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetHumanoidDescriptionFromOutfitId": { - "MemberType": "Function", - "Name": "GetHumanoidDescriptionFromOutfitId", - "Parameters": [ - { - "Name": "outfitId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "HumanoidDescription" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetHumanoidDescriptionFromUserId": { - "MemberType": "Function", - "Name": "GetHumanoidDescriptionFromUserId", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "HumanoidDescription" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetNameFromUserIdAsync": { - "MemberType": "Function", - "Name": "GetNameFromUserIdAsync", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetPlayerByUserId": { - "MemberType": "Function", - "Name": "GetPlayerByUserId", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Player" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GetPlayerFromCharacter": { - "MemberType": "Function", - "Name": "GetPlayerFromCharacter", - "Parameters": [ - { - "Name": "character", - "Type": { - "Category": "Class", - "Name": "Model" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Player" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetPlayers": { - "MemberType": "Function", - "Name": "GetPlayers", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GetUserIdFromNameAsync": { - "MemberType": "Function", - "Name": "GetUserIdFromNameAsync", - "Parameters": [ - { - "Name": "userName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int64" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetUserThumbnailAsync": { - "MemberType": "Function", - "Name": "GetUserThumbnailAsync", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "thumbnailType", - "Type": { - "Category": "Enum", - "Name": "ThumbnailType" - } - }, - { - "Name": "thumbnailSize", - "Type": { - "Category": "Enum", - "Name": "ThumbnailSize" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "LocalPlayer": { - "Category": "Data", - "MemberType": "Property", - "Name": "LocalPlayer", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Player" - } - }, - "MaxPlayers": { - "Category": "Data", - "MemberType": "Property", - "Name": "MaxPlayers", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "MaxPlayersInternal": { - "Category": "Data", - "MemberType": "Property", - "Name": "MaxPlayersInternal", - "Security": { - "Read": "LocalUserSecurity", - "Write": "LocalUserSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "NumPlayers": { - "Category": "Data", - "MemberType": "Property", - "Name": "NumPlayers", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "PlayerAdded": { - "MemberType": "Event", - "Name": "PlayerAdded", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PlayerChatted": { - "MemberType": "Event", - "Name": "PlayerChatted", - "Parameters": [ - { - "Name": "chatType", - "Type": { - "Category": "Enum", - "Name": "PlayerChatType" - } - }, - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Player" - } - }, - { - "Name": "message", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "targetPlayer", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PlayerConnecting": { - "MemberType": "Event", - "Name": "PlayerConnecting", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PlayerDisconnecting": { - "MemberType": "Event", - "Name": "PlayerDisconnecting", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PlayerMembershipChanged": { - "MemberType": "Event", - "Name": "PlayerMembershipChanged", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PlayerRejoining": { - "MemberType": "Event", - "Name": "PlayerRejoining", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PlayerRemoving": { - "MemberType": "Event", - "Name": "PlayerRemoving", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PreferredPlayers": { - "Category": "Data", - "MemberType": "Property", - "Name": "PreferredPlayers", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "PreferredPlayersInternal": { - "Category": "Data", - "MemberType": "Property", - "Name": "PreferredPlayersInternal", - "Security": { - "Read": "LocalUserSecurity", - "Write": "LocalUserSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "ReportAbuse": { - "MemberType": "Function", - "Name": "ReportAbuse", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Player" - } - }, - { - "Name": "reason", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "optionalMessage", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ReportAbuseV3": { - "MemberType": "Function", - "Name": "ReportAbuseV3", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Player" - } - }, - { - "Name": "jsonTags", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ResetLocalPlayer": { - "MemberType": "Function", - "Name": "ResetLocalPlayer", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RespawnTime": { - "Category": "Data", - "MemberType": "Property", - "Name": "RespawnTime", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "SetChatStyle": { - "MemberType": "Function", - "Name": "SetChatStyle", - "Parameters": [ - { - "Default": "Classic", - "Name": "style", - "Type": { - "Category": "Enum", - "Name": "ChatStyle" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetLocalPlayerInfo": { - "MemberType": "Function", - "Name": "SetLocalPlayerInfo", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "userName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "displayName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "membershipType", - "Type": { - "Category": "Enum", - "Name": "MembershipType" - } - }, - { - "Name": "isUnder13", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TeamChat": { - "MemberType": "Function", - "Name": "TeamChat", - "Parameters": [ - { - "Name": "message", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UseStrafingAnimations": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "UseStrafingAnimations", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "WhisperChat": { - "MemberType": "Function", - "Name": "WhisperChat", - "Parameters": [ - { - "Name": "message", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "getPlayers": { - "MemberType": "Function", - "Name": "getPlayers", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "localPlayer": { - "Category": "Data", - "MemberType": "Property", - "Name": "localPlayer", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Player" - } - }, - "numPlayers": { - "Category": "Data", - "MemberType": "Property", - "Name": "numPlayers", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "playerFromCharacter": { - "MemberType": "Function", - "Name": "playerFromCharacter", - "Parameters": [ - { - "Name": "character", - "Type": { - "Category": "Class", - "Name": "Model" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Player" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "players": { - "MemberType": "Function", - "Name": "players", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "Players", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "Plugin": { - "Members": { - "Activate": { - "MemberType": "Function", - "Name": "Activate", - "Parameters": [ - { - "Name": "exclusiveMouse", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CollisionEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "CollisionEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "CreateDockWidgetPluginGui": { - "MemberType": "Function", - "Name": "CreateDockWidgetPluginGui", - "Parameters": [ - { - "Name": "pluginGuiId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "dockWidgetPluginGuiInfo", - "Type": { - "Category": "DataType", - "Name": "DockWidgetPluginGuiInfo" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "DockWidgetPluginGui" - }, - "Security": "PluginSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "CreatePluginAction": { - "MemberType": "Function", - "Name": "CreatePluginAction", - "Parameters": [ - { - "Name": "actionId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "text", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "statusTip", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "", - "Name": "iconName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "true", - "Name": "allowBinding", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "PluginAction" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CreatePluginMenu": { - "MemberType": "Function", - "Name": "CreatePluginMenu", - "Parameters": [ - { - "Name": "id", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "", - "Name": "title", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "", - "Name": "icon", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "PluginMenu" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CreateQWidgetPluginGui": { - "MemberType": "Function", - "Name": "CreateQWidgetPluginGui", - "Parameters": [ - { - "Name": "pluginGuiId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "pluginGuiOptions", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "QWidgetPluginGui" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "CreateToolbar": { - "MemberType": "Function", - "Name": "CreateToolbar", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "PluginToolbar" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Deactivate": { - "MemberType": "Function", - "Name": "Deactivate", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Deactivation": { - "MemberType": "Event", - "Name": "Deactivation", - "Parameters": {}, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetItem": { - "MemberType": "Function", - "Name": "GetItem", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "defaultValue", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Variant" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetJoinMode": { - "MemberType": "Function", - "Name": "GetJoinMode", - "Parameters": {}, - "ReturnType": { - "Category": "Enum", - "Name": "JointCreationMode" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetMouse": { - "MemberType": "Function", - "Name": "GetMouse", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "PluginMouse" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetSelectedRibbonTool": { - "MemberType": "Function", - "Name": "GetSelectedRibbonTool", - "Parameters": {}, - "ReturnType": { - "Category": "Enum", - "Name": "RibbonTool" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetSetting": { - "MemberType": "Function", - "Name": "GetSetting", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Variant" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetStudioUserId": { - "MemberType": "Function", - "Name": "GetStudioUserId", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "int64" - }, - "Security": "PluginSecurity", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GridSize": { - "Category": "Data", - "MemberType": "Property", - "Name": "GridSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "HostDataModelType": { - "Category": "Data", - "MemberType": "Property", - "Name": "HostDataModelType", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "StudioDataModelType" - } - }, - "HostDataModelTypeIsCurrent": { - "Category": "Data", - "MemberType": "Property", - "Name": "HostDataModelTypeIsCurrent", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ImportFbxAnimation": { - "MemberType": "Function", - "Name": "ImportFbxAnimation", - "Parameters": [ - { - "Name": "rigModel", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Default": "true", - "Name": "isR15", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "PluginSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ImportFbxRig": { - "MemberType": "Function", - "Name": "ImportFbxRig", - "Parameters": [ - { - "Default": "true", - "Name": "isR15", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "PluginSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "Intersect": { - "MemberType": "Function", - "Name": "Intersect", - "Parameters": [ - { - "Name": "objects", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Invoke": { - "MemberType": "Function", - "Name": "Invoke", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "arguments", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsActivated": { - "MemberType": "Function", - "Name": "IsActivated", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsActivatedWithExclusiveMouse": { - "MemberType": "Function", - "Name": "IsActivatedWithExclusiveMouse", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MultipleDocumentInterfaceInstance": { - "Category": "Data", - "MemberType": "Property", - "Name": "MultipleDocumentInterfaceInstance", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "MultipleDocumentInterfaceInstance" - } - }, - "Negate": { - "MemberType": "Function", - "Name": "Negate", - "Parameters": [ - { - "Name": "objects", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnInvoke": { - "MemberType": "Function", - "Name": "OnInvoke", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "callback", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnSetItem": { - "MemberType": "Function", - "Name": "OnSetItem", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "callback", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OpenScript": { - "MemberType": "Function", - "Name": "OpenScript", - "Parameters": [ - { - "Name": "script", - "Type": { - "Category": "Class", - "Name": "LuaSourceContainer" - } - }, - { - "Default": "1", - "Name": "lineNumber", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OpenWikiPage": { - "MemberType": "Function", - "Name": "OpenWikiPage", - "Parameters": [ - { - "Name": "url", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PauseSound": { - "MemberType": "Function", - "Name": "PauseSound", - "Parameters": [ - { - "Name": "sound", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PlaySound": { - "MemberType": "Function", - "Name": "PlaySound", - "Parameters": [ - { - "Name": "sound", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Default": "0", - "Name": "normalizedTimePosition", - "Type": { - "Category": "Primitive", - "Name": "double" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ProcessAssetInsertionDrag": { - "MemberType": "Callback", - "Name": "ProcessAssetInsertionDrag", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "assetTypeId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "instances", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "NoYield": true - }, - "ThreadSafety": "Unsafe" - }, - "ProcessAssetInsertionDrop": { - "MemberType": "Callback", - "Name": "ProcessAssetInsertionDrop", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "NoYield": true - }, - "ThreadSafety": "Unsafe" - }, - "PromptForExistingAssetId": { - "MemberType": "Function", - "Name": "PromptForExistingAssetId", - "Parameters": [ - { - "Name": "assetType", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int64" - }, - "Security": "PluginSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "PromptSaveSelection": { - "MemberType": "Function", - "Name": "PromptSaveSelection", - "Parameters": [ - { - "Default": "", - "Name": "suggestedFileName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "PluginSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "Ready": { - "MemberType": "Event", - "Name": "Ready", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ResumeSound": { - "MemberType": "Function", - "Name": "ResumeSound", - "Parameters": [ - { - "Name": "sound", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SaveSelectedToRoblox": { - "MemberType": "Function", - "Name": "SaveSelectedToRoblox", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SelectRibbonTool": { - "MemberType": "Function", - "Name": "SelectRibbonTool", - "Parameters": [ - { - "Name": "tool", - "Type": { - "Category": "Enum", - "Name": "RibbonTool" - } - }, - { - "Name": "position", - "Type": { - "Category": "DataType", - "Name": "UDim2" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Separate": { - "MemberType": "Function", - "Name": "Separate", - "Parameters": [ - { - "Name": "objects", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetItem": { - "MemberType": "Function", - "Name": "SetItem", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "value", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetReady": { - "MemberType": "Function", - "Name": "SetReady", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetSetting": { - "MemberType": "Function", - "Name": "SetSetting", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "value", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StartDecalDrag": { - "MemberType": "Function", - "Name": "StartDecalDrag", - "Parameters": [ - { - "Name": "decal", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StartDrag": { - "MemberType": "Function", - "Name": "StartDrag", - "Parameters": [ - { - "Name": "dragData", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StopAllSounds": { - "MemberType": "Function", - "Name": "StopAllSounds", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Union": { - "MemberType": "Function", - "Name": "Union", - "Parameters": [ - { - "Name": "objects", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Unloading": { - "MemberType": "Event", - "Name": "Unloading", - "Parameters": {}, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UsesAssetInsertionDrag": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "UsesAssetInsertionDrag", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Plugin", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "PluginAction": { - "Members": { - "ActionId": { - "Category": "Data", - "MemberType": "Property", - "Name": "ActionId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "AllowBinding": { - "Category": "Data", - "MemberType": "Property", - "Name": "AllowBinding", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Checked": { - "Category": "Data", - "MemberType": "Property", - "Name": "Checked", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "DefaultShortcut": { - "Category": "Data", - "MemberType": "Property", - "Name": "DefaultShortcut", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Enabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "StatusTip": { - "Category": "Data", - "MemberType": "Property", - "Name": "StatusTip", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Text": { - "Category": "Data", - "MemberType": "Property", - "Name": "Text", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Triggered": { - "MemberType": "Event", - "Name": "Triggered", - "Parameters": {}, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "PluginAction", - "Superclass": "Instance", - "Tags": [ - "NotReplicated" - ] - }, - "PluginCapabilities": { - "Members": { - "Manifest": { - "Category": "Data", - "MemberType": "Property", - "Name": "Manifest", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "PluginCapabilities", - "Superclass": "Instance" - }, - "PluginDebugService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "PluginDebugService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "PluginDragEvent": { - "Members": { - "Data": { - "Category": "Data", - "MemberType": "Property", - "Name": "Data", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "MimeType": { - "Category": "Data", - "MemberType": "Property", - "Name": "MimeType", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Position": { - "Category": "Data", - "MemberType": "Property", - "Name": "Position", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "Sender": { - "Category": "Data", - "MemberType": "Property", - "Name": "Sender", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "PluginDragEvent", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "PluginGui": { - "Members": { - "BindToClose": { - "MemberType": "Function", - "Name": "BindToClose", - "Parameters": [ - { - "Default": "nil", - "Name": "function", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetRelativeMousePosition": { - "MemberType": "Function", - "Name": "GetRelativeMousePosition", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Vector2" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PluginDragDropped": { - "MemberType": "Event", - "Name": "PluginDragDropped", - "Parameters": [ - { - "Name": "dragData", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PluginDragEntered": { - "MemberType": "Event", - "Name": "PluginDragEntered", - "Parameters": [ - { - "Name": "dragData", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PluginDragLeft": { - "MemberType": "Event", - "Name": "PluginDragLeft", - "Parameters": [ - { - "Name": "dragData", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PluginDragMoved": { - "MemberType": "Event", - "Name": "PluginDragMoved", - "Parameters": [ - { - "Name": "dragData", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Title": { - "Category": "Data", - "MemberType": "Property", - "Name": "Title", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "WindowFocusReleased": { - "MemberType": "Event", - "Name": "WindowFocusReleased", - "Parameters": {}, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "WindowFocused": { - "MemberType": "Event", - "Name": "WindowFocused", - "Parameters": {}, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "PluginGui", - "Superclass": "LayerCollector", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "PluginGuiService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "PluginGuiService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "PluginManagementService": { - "Members": { - "GetOTAPluginVersion": { - "MemberType": "Function", - "Name": "GetOTAPluginVersion", - "Parameters": [ - { - "Default": "", - "Name": "pluginName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int64" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "SetAutoUpdate": { - "MemberType": "Function", - "Name": "SetAutoUpdate", - "Parameters": [ - { - "Name": "pluginId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "state", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "PluginManagementService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "PluginManager": { - "Members": { - "CreatePlugin": { - "MemberType": "Function", - "Name": "CreatePlugin", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "PluginSecurity", - "Tags": { - "CustomLuaState": true, - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "ExportPlace": { - "MemberType": "Function", - "Name": "ExportPlace", - "Parameters": [ - { - "Default": "", - "Name": "filePath", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ExportSelection": { - "MemberType": "Function", - "Name": "ExportSelection", - "Parameters": [ - { - "Default": "", - "Name": "filePath", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "PluginManager", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "PluginManagerInterface": { - "Members": { - "CreatePlugin": { - "MemberType": "Function", - "Name": "CreatePlugin", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "PluginSecurity", - "Tags": { - "CustomLuaState": true, - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "ExportPlace": { - "MemberType": "Function", - "Name": "ExportPlace", - "Parameters": [ - { - "Default": "", - "Name": "filePath", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ExportSelection": { - "MemberType": "Function", - "Name": "ExportSelection", - "Parameters": [ - { - "Default": "", - "Name": "filePath", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "PluginManagerInterface", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "PluginMenu": { - "Members": { - "AddAction": { - "MemberType": "Function", - "Name": "AddAction", - "Parameters": [ - { - "Name": "action", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "AddMenu": { - "MemberType": "Function", - "Name": "AddMenu", - "Parameters": [ - { - "Name": "menu", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "AddNewAction": { - "MemberType": "Function", - "Name": "AddNewAction", - "Parameters": [ - { - "Name": "actionId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "text", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "", - "Name": "icon", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "AddSeparator": { - "MemberType": "Function", - "Name": "AddSeparator", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Clear": { - "MemberType": "Function", - "Name": "Clear", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Icon": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Icon", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "ShowAsync": { - "MemberType": "Function", - "Name": "ShowAsync", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "PluginSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "Title": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Title", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "PluginMenu", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "PluginMouse": { - "Members": { - "DragEnter": { - "MemberType": "Event", - "Name": "DragEnter", - "Parameters": [ - { - "Name": "instances", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "PluginMouse", - "Superclass": "Mouse", - "Tags": [ - "NotCreatable" - ] - }, - "PluginPolicyService": { - "Members": { - "GetPluginPolicy": { - "MemberType": "Function", - "Name": "GetPluginPolicy", - "Parameters": [ - { - "Name": "pluginName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "PluginPolicyService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "PluginToolbar": { - "Members": { - "CreateButton": { - "MemberType": "Function", - "Name": "CreateButton", - "Parameters": [ - { - "Name": "buttonId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "tooltip", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "iconname", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "", - "Name": "text", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "PluginToolbar", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "PluginToolbarButton": { - "Members": { - "Click": { - "MemberType": "Event", - "Name": "Click", - "Parameters": {}, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ClickableWhenViewportHidden": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "ClickableWhenViewportHidden", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Enabled": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Icon": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Icon", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "SetActive": { - "MemberType": "Function", - "Name": "SetActive", - "Parameters": [ - { - "Name": "active", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "PluginToolbarButton", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "PointLight": { - "Members": { - "Range": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Range", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "PointLight", - "Superclass": "Light" - }, - "PointsService": { - "Members": { - "AwardPoints": { - "MemberType": "Function", - "Name": "AwardPoints", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "amount", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": { - "Deprecated": true, - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetAwardablePoints": { - "MemberType": "Function", - "Name": "GetAwardablePoints", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetGamePointBalance": { - "MemberType": "Function", - "Name": "GetGamePointBalance", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "None", - "Tags": { - "Deprecated": true, - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetPointBalance": { - "MemberType": "Function", - "Name": "GetPointBalance", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "None", - "Tags": { - "Deprecated": true, - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "PointsAwarded": { - "MemberType": "Event", - "Name": "PointsAwarded", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "pointsAwarded", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "userBalanceInGame", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "userTotalBalance", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "PointsService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "Deprecated" - ] - }, - "PolicyService": { - "Members": { - "GetPolicyInfoForPlayerAsync": { - "MemberType": "Function", - "Name": "GetPolicyInfoForPlayerAsync", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetPolicyInfoForServerRobloxOnlyAsync": { - "MemberType": "Function", - "Name": "GetPolicyInfoForServerRobloxOnlyAsync", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "IsLuobuServer": { - "Category": "Data", - "MemberType": "Property", - "Name": "IsLuobuServer", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TriStateBoolean" - } - }, - "LuobuWhitelisted": { - "Category": "Data", - "MemberType": "Property", - "Name": "LuobuWhitelisted", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TriStateBoolean" - } - } - }, - "MemoryCategory": "Instances", - "Name": "PolicyService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "Pose": { - "Members": { - "AddSubPose": { - "MemberType": "Function", - "Name": "AddSubPose", - "Parameters": [ - { - "Name": "pose", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CFrame": { - "Category": "Data", - "MemberType": "Property", - "Name": "CFrame", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "GetSubPoses": { - "MemberType": "Function", - "Name": "GetSubPoses", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MaskWeight": { - "Category": "Data", - "MemberType": "Property", - "Name": "MaskWeight", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RemoveSubPose": { - "MemberType": "Function", - "Name": "RemoveSubPose", - "Parameters": [ - { - "Name": "pose", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Animation", - "Name": "Pose", - "Superclass": "PoseBase" - }, - "PoseBase": { - "Members": { - "EasingDirection": { - "Category": "Data", - "MemberType": "Property", - "Name": "EasingDirection", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "PoseEasingDirection" - } - }, - "EasingStyle": { - "Category": "Data", - "MemberType": "Property", - "Name": "EasingStyle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "PoseEasingStyle" - } - }, - "Weight": { - "Category": "Data", - "MemberType": "Property", - "Name": "Weight", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "PoseBase", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "PostEffect": { - "Members": { - "Enabled": { - "Category": "State", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "PostEffect", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "PrismaticConstraint": { - "Members": {}, - "MemoryCategory": "PhysicsParts", - "Name": "PrismaticConstraint", - "Superclass": "SlidingBallConstraint" - }, - "ProcessInstancePhysicsService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "ProcessInstancePhysicsService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "ProximityPrompt": { - "Members": { - "ActionText": { - "Category": "Data", - "MemberType": "Property", - "Name": "ActionText", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "AutoLocalize": { - "Category": "Localization", - "MemberType": "Property", - "Name": "AutoLocalize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ClickablePrompt": { - "Category": "Data", - "MemberType": "Property", - "Name": "ClickablePrompt", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Enabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Exclusivity": { - "Category": "Data", - "MemberType": "Property", - "Name": "Exclusivity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ProximityPromptExclusivity" - } - }, - "GamepadKeyCode": { - "Category": "Data", - "MemberType": "Property", - "Name": "GamepadKeyCode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "KeyCode" - } - }, - "HoldDuration": { - "Category": "Data", - "MemberType": "Property", - "Name": "HoldDuration", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "InputHoldBegin": { - "MemberType": "Function", - "Name": "InputHoldBegin", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InputHoldEnd": { - "MemberType": "Function", - "Name": "InputHoldEnd", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "KeyboardKeyCode": { - "Category": "Data", - "MemberType": "Property", - "Name": "KeyboardKeyCode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "KeyCode" - } - }, - "MaxActivationDistance": { - "Category": "Data", - "MemberType": "Property", - "Name": "MaxActivationDistance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ObjectText": { - "Category": "Data", - "MemberType": "Property", - "Name": "ObjectText", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "PromptButtonHoldBegan": { - "MemberType": "Event", - "Name": "PromptButtonHoldBegan", - "Parameters": [ - { - "Name": "playerWhoTriggered", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptButtonHoldEnded": { - "MemberType": "Event", - "Name": "PromptButtonHoldEnded", - "Parameters": [ - { - "Name": "playerWhoTriggered", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptHidden": { - "MemberType": "Event", - "Name": "PromptHidden", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptShown": { - "MemberType": "Event", - "Name": "PromptShown", - "Parameters": [ - { - "Name": "inputType", - "Type": { - "Category": "Enum", - "Name": "ProximityPromptInputType" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RequiresLineOfSight": { - "Category": "Data", - "MemberType": "Property", - "Name": "RequiresLineOfSight", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "RootLocalizationTable": { - "Category": "Localization", - "MemberType": "Property", - "Name": "RootLocalizationTable", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "LocalizationTable" - } - }, - "Style": { - "Category": "Data", - "MemberType": "Property", - "Name": "Style", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ProximityPromptStyle" - } - }, - "TriggerEnded": { - "MemberType": "Event", - "Name": "TriggerEnded", - "Parameters": [ - { - "Name": "playerWhoTriggered", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Triggered": { - "MemberType": "Event", - "Name": "Triggered", - "Parameters": [ - { - "Name": "playerWhoTriggered", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UIOffset": { - "Category": "Data", - "MemberType": "Property", - "Name": "UIOffset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - } - }, - "MemoryCategory": "Instances", - "Name": "ProximityPrompt", - "Superclass": "Instance" - }, - "ProximityPromptService": { - "Members": { - "Enabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "MaxPromptsVisible": { - "Category": "Data", - "MemberType": "Property", - "Name": "MaxPromptsVisible", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "PromptButtonHoldBegan": { - "MemberType": "Event", - "Name": "PromptButtonHoldBegan", - "Parameters": [ - { - "Name": "prompt", - "Type": { - "Category": "Class", - "Name": "ProximityPrompt" - } - }, - { - "Name": "playerWhoTriggered", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptButtonHoldEnded": { - "MemberType": "Event", - "Name": "PromptButtonHoldEnded", - "Parameters": [ - { - "Name": "prompt", - "Type": { - "Category": "Class", - "Name": "ProximityPrompt" - } - }, - { - "Name": "playerWhoTriggered", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptHidden": { - "MemberType": "Event", - "Name": "PromptHidden", - "Parameters": [ - { - "Name": "prompt", - "Type": { - "Category": "Class", - "Name": "ProximityPrompt" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptShown": { - "MemberType": "Event", - "Name": "PromptShown", - "Parameters": [ - { - "Name": "prompt", - "Type": { - "Category": "Class", - "Name": "ProximityPrompt" - } - }, - { - "Name": "inputType", - "Type": { - "Category": "Enum", - "Name": "ProximityPromptInputType" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptTriggerEnded": { - "MemberType": "Event", - "Name": "PromptTriggerEnded", - "Parameters": [ - { - "Name": "prompt", - "Type": { - "Category": "Class", - "Name": "ProximityPrompt" - } - }, - { - "Name": "playerWhoTriggered", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptTriggered": { - "MemberType": "Event", - "Name": "PromptTriggered", - "Parameters": [ - { - "Name": "prompt", - "Type": { - "Category": "Class", - "Name": "ProximityPrompt" - } - }, - { - "Name": "playerWhoTriggered", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "ProximityPromptService", - "Superclass": "Instance", - "Tags": [ - "Service", - "NotBrowsable" - ] - }, - "PublishService": { - "Members": { - "CreateAssetAndWaitForAssetId": { - "MemberType": "Function", - "Name": "CreateAssetAndWaitForAssetId", - "Parameters": [ - { - "Name": "instances", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - }, - { - "Name": "operationId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "creatorId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "assetType", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "description", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int64" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "PublishCageMeshAsync": { - "MemberType": "Function", - "Name": "PublishCageMeshAsync", - "Parameters": [ - { - "Name": "wrap", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "cageType", - "Type": { - "Category": "Enum", - "Name": "CageType" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Content" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "PublishDescendantAssets": { - "MemberType": "Function", - "Name": "PublishDescendantAssets", - "Parameters": [ - { - "Name": "instance", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "PublishService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "QWidgetPluginGui": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "QWidgetPluginGui", - "Superclass": "PluginGui", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "RayValue": { - "Members": { - "Changed": { - "MemberType": "Event", - "Name": "Changed", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "DataType", - "Name": "Ray" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Value": { - "Category": "Data", - "MemberType": "Property", - "Name": "Value", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Ray" - } - }, - "changed": { - "MemberType": "Event", - "Name": "changed", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "DataType", - "Name": "Ray" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "RayValue", - "Superclass": "ValueBase" - }, - "RbxAnalyticsService": { - "Members": { - "AddGlobalPointsField": { - "MemberType": "Function", - "Name": "AddGlobalPointsField", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "AddGlobalPointsTag": { - "MemberType": "Function", - "Name": "AddGlobalPointsTag", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DEPRECATED_TrackEvent": { - "MemberType": "Function", - "Name": "DEPRECATED_TrackEvent", - "Parameters": [ - { - "Name": "category", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "action", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "label", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "0", - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DEPRECATED_TrackEventWithArgs": { - "MemberType": "Function", - "Name": "DEPRECATED_TrackEventWithArgs", - "Parameters": [ - { - "Name": "category", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "action", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "label", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "args", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - }, - { - "Default": "0", - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetClientId": { - "MemberType": "Function", - "Name": "GetClientId", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetPlaySessionId": { - "MemberType": "Function", - "Name": "GetPlaySessionId", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetSessionId": { - "MemberType": "Function", - "Name": "GetSessionId", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ReleaseRBXEventStream": { - "MemberType": "Function", - "Name": "ReleaseRBXEventStream", - "Parameters": [ - { - "Name": "target", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RemoveGlobalPointsField": { - "MemberType": "Function", - "Name": "RemoveGlobalPointsField", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RemoveGlobalPointsTag": { - "MemberType": "Function", - "Name": "RemoveGlobalPointsTag", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ReportCounter": { - "MemberType": "Function", - "Name": "ReportCounter", - "Parameters": [ - { - "Name": "counterName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "1", - "Name": "amount", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ReportInfluxSeries": { - "MemberType": "Function", - "Name": "ReportInfluxSeries", - "Parameters": [ - { - "Name": "seriesName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "points", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - }, - { - "Name": "throttlingPercentage", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ReportStats": { - "MemberType": "Function", - "Name": "ReportStats", - "Parameters": [ - { - "Name": "category", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ReportToDiagByCountryCode": { - "MemberType": "Function", - "Name": "ReportToDiagByCountryCode", - "Parameters": [ - { - "Name": "featureName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "measureName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "seconds", - "Type": { - "Category": "Primitive", - "Name": "double" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SendEventDeferred": { - "MemberType": "Function", - "Name": "SendEventDeferred", - "Parameters": [ - { - "Name": "target", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "eventContext", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "eventName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "additionalArgs", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SendEventImmediately": { - "MemberType": "Function", - "Name": "SendEventImmediately", - "Parameters": [ - { - "Name": "target", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "eventContext", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "eventName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "additionalArgs", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetRBXEvent": { - "MemberType": "Function", - "Name": "SetRBXEvent", - "Parameters": [ - { - "Name": "target", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "eventContext", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "eventName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "additionalArgs", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetRBXEventStream": { - "MemberType": "Function", - "Name": "SetRBXEventStream", - "Parameters": [ - { - "Name": "target", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "eventContext", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "eventName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "additionalArgs", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TrackEvent": { - "MemberType": "Function", - "Name": "TrackEvent", - "Parameters": [ - { - "Name": "category", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "action", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "label", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "0", - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TrackEventWithArgs": { - "MemberType": "Function", - "Name": "TrackEventWithArgs", - "Parameters": [ - { - "Name": "category", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "action", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "label", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "args", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - }, - { - "Default": "0", - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UpdateHeartbeatObject": { - "MemberType": "Function", - "Name": "UpdateHeartbeatObject", - "Parameters": [ - { - "Name": "args", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "RbxAnalyticsService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "ReflectionMetadata": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "ReflectionMetadata", - "Superclass": "Instance" - }, - "ReflectionMetadataCallbacks": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "ReflectionMetadataCallbacks", - "Superclass": "Instance" - }, - "ReflectionMetadataClass": { - "Members": { - "ExplorerImageIndex": { - "Category": "Reflection", - "MemberType": "Property", - "Name": "ExplorerImageIndex", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "ExplorerOrder": { - "Category": "Reflection", - "MemberType": "Property", - "Name": "ExplorerOrder", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "Insertable": { - "Category": "Reflection", - "MemberType": "Property", - "Name": "Insertable", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "PreferredParent": { - "Category": "Reflection", - "MemberType": "Property", - "Name": "PreferredParent", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "ServiceVisibility": { - "Category": "Reflection", - "MemberType": "Property", - "Name": "ServiceVisibility", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ServiceVisibility" - } - } - }, - "MemoryCategory": "Instances", - "Name": "ReflectionMetadataClass", - "Superclass": "ReflectionMetadataItem" - }, - "ReflectionMetadataClasses": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "ReflectionMetadataClasses", - "Superclass": "Instance" - }, - "ReflectionMetadataEnum": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "ReflectionMetadataEnum", - "Superclass": "ReflectionMetadataItem" - }, - "ReflectionMetadataEnumItem": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "ReflectionMetadataEnumItem", - "Superclass": "ReflectionMetadataItem" - }, - "ReflectionMetadataEnums": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "ReflectionMetadataEnums", - "Superclass": "Instance" - }, - "ReflectionMetadataEvents": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "ReflectionMetadataEvents", - "Superclass": "Instance" - }, - "ReflectionMetadataFunctions": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "ReflectionMetadataFunctions", - "Superclass": "Instance" - }, - "ReflectionMetadataItem": { - "Members": { - "Browsable": { - "Category": "Reflection", - "MemberType": "Property", - "Name": "Browsable", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ClassCategory": { - "Category": "Reflection", - "MemberType": "Property", - "Name": "ClassCategory", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "ClientOnly": { - "Category": "Reflection", - "MemberType": "Property", - "Name": "ClientOnly", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Constraint": { - "Category": "Reflection", - "MemberType": "Property", - "Name": "Constraint", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Deprecated": { - "Category": "Reflection", - "MemberType": "Property", - "Name": "Deprecated", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "EditingDisabled": { - "Category": "Reflection", - "MemberType": "Property", - "Name": "EditingDisabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "EditorType": { - "Category": "Reflection", - "MemberType": "Property", - "Name": "EditorType", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "FFlag": { - "Category": "Reflection", - "MemberType": "Property", - "Name": "FFlag", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "IsBackend": { - "Category": "Reflection", - "MemberType": "Property", - "Name": "IsBackend", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "PropertyOrder": { - "Category": "Reflection", - "MemberType": "Property", - "Name": "PropertyOrder", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "ScriptContext": { - "Category": "Reflection", - "MemberType": "Property", - "Name": "ScriptContext", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "ServerOnly": { - "Category": "Reflection", - "MemberType": "Property", - "Name": "ServerOnly", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "SliderScaling": { - "Category": "Reflection", - "MemberType": "Property", - "Name": "SliderScaling", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "UIMaximum": { - "Category": "Reflection", - "MemberType": "Property", - "Name": "UIMaximum", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "UIMinimum": { - "Category": "Reflection", - "MemberType": "Property", - "Name": "UIMinimum", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "UINumTicks": { - "Category": "Reflection", - "MemberType": "Property", - "Name": "UINumTicks", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - } - }, - "MemoryCategory": "Instances", - "Name": "ReflectionMetadataItem", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "ReflectionMetadataMember": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "ReflectionMetadataMember", - "Superclass": "ReflectionMetadataItem" - }, - "ReflectionMetadataProperties": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "ReflectionMetadataProperties", - "Superclass": "Instance" - }, - "ReflectionMetadataYieldFunctions": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "ReflectionMetadataYieldFunctions", - "Superclass": "Instance" - }, - "RemoteCursorService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "RemoteCursorService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "RemoteDebuggerServer": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "RemoteDebuggerServer", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "RemoteEvent": { - "Members": { - "FireAllClients": { - "MemberType": "Function", - "Name": "FireAllClients", - "Parameters": [ - { - "Name": "arguments", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "FireClient": { - "MemberType": "Function", - "Name": "FireClient", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Player" - } - }, - { - "Name": "arguments", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "FireServer": { - "MemberType": "Function", - "Name": "FireServer", - "Parameters": [ - { - "Name": "arguments", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnClientEvent": { - "MemberType": "Event", - "Name": "OnClientEvent", - "Parameters": [ - { - "Name": "arguments", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnServerEvent": { - "MemberType": "Event", - "Name": "OnServerEvent", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Player" - } - }, - { - "Name": "arguments", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "RemoteEvent", - "Superclass": "Instance" - }, - "RemoteFunction": { - "Members": { - "InvokeClient": { - "MemberType": "Function", - "Name": "InvokeClient", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Player" - } - }, - { - "Name": "arguments", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "InvokeServer": { - "MemberType": "Function", - "Name": "InvokeServer", - "Parameters": [ - { - "Name": "arguments", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "OnClientInvoke": { - "MemberType": "Callback", - "Name": "OnClientInvoke", - "Parameters": [ - { - "Name": "arguments", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnServerInvoke": { - "MemberType": "Callback", - "Name": "OnServerInvoke", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Player" - } - }, - { - "Name": "arguments", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "RemoteFunction", - "Superclass": "Instance" - }, - "RenderSettings": { - "Members": { - "AutoFRMLevel": { - "Category": "Debug", - "MemberType": "Property", - "Name": "AutoFRMLevel", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "EagerBulkExecution": { - "Category": "Performance", - "MemberType": "Property", - "Name": "EagerBulkExecution", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "EditQualityLevel": { - "Category": "Performance", - "MemberType": "Property", - "Name": "EditQualityLevel", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "QualityLevel" - } - }, - "Enable VR Mode": { - "Category": "General", - "MemberType": "Property", - "Name": "Enable VR Mode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "EnableFRM": { - "Category": "Debug", - "MemberType": "Property", - "Name": "EnableFRM", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ExportMergeByMaterial": { - "Category": "General", - "MemberType": "Property", - "Name": "ExportMergeByMaterial", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "FrameRateManager": { - "Category": "General", - "MemberType": "Property", - "Name": "FrameRateManager", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "FramerateManagerMode" - } - }, - "GetMaxQualityLevel": { - "MemberType": "Function", - "Name": "GetMaxQualityLevel", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GraphicsMode": { - "Category": "General", - "MemberType": "Property", - "Name": "GraphicsMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "GraphicsMode" - } - }, - "MeshCacheSize": { - "Category": "Cache", - "MemberType": "Property", - "Name": "MeshCacheSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "MeshPartDetailLevel": { - "Category": "Debug", - "MemberType": "Property", - "Name": "MeshPartDetailLevel", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "MeshPartDetailLevel" - } - }, - "QualityLevel": { - "Category": "Performance", - "MemberType": "Property", - "Name": "QualityLevel", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "QualityLevel" - } - }, - "ReloadAssets": { - "Category": "Debug", - "MemberType": "Property", - "Name": "ReloadAssets", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "RenderCSGTrianglesDebug": { - "Category": "Debug", - "MemberType": "Property", - "Name": "RenderCSGTrianglesDebug", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ShowBoundingBoxes": { - "Category": "Debug", - "MemberType": "Property", - "Name": "ShowBoundingBoxes", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ViewMode": { - "Category": "Debug", - "MemberType": "Property", - "Name": "ViewMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ViewMode" - } - } - }, - "MemoryCategory": "Instances", - "Name": "RenderSettings", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotBrowsable" - ] - }, - "RenderingTest": { - "Members": { - "CFrame": { - "Category": "RenderingTest", - "MemberType": "Property", - "Name": "CFrame", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "ComparisonDiffThreshold": { - "Category": "RenderingTest", - "MemberType": "Property", - "Name": "ComparisonDiffThreshold", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "ComparisonMethod": { - "Category": "RenderingTest", - "MemberType": "Property", - "Name": "ComparisonMethod", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "RenderingTestComparisonMethod" - } - }, - "ComparisonPsnrThreshold": { - "Category": "RenderingTest", - "MemberType": "Property", - "Name": "ComparisonPsnrThreshold", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Description": { - "Category": "RenderingTest", - "MemberType": "Property", - "Name": "Description", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "FieldOfView": { - "Category": "RenderingTest", - "MemberType": "Property", - "Name": "FieldOfView", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Orientation": { - "Category": "RenderingTest", - "MemberType": "Property", - "Name": "Orientation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "PerfTest": { - "Category": "RenderingTest", - "MemberType": "Property", - "Name": "PerfTest", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Position": { - "Category": "RenderingTest", - "MemberType": "Property", - "Name": "Position", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "QualityLevel": { - "Category": "RenderingTest", - "MemberType": "Property", - "Name": "QualityLevel", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "RenderdocTriggerCapture": { - "MemberType": "Function", - "Name": "RenderdocTriggerCapture", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ShouldSkip": { - "Category": "RenderingTest", - "MemberType": "Property", - "Name": "ShouldSkip", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Ticket": { - "Category": "RenderingTest", - "MemberType": "Property", - "Name": "Ticket", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Timeout": { - "Category": "RenderingTest", - "MemberType": "Property", - "Name": "Timeout", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - } - }, - "MemoryCategory": "Instances", - "Name": "RenderingTest", - "Superclass": "Instance" - }, - "ReplicatedFirst": { - "Members": { - "DefaultLoadingGuiRemoved": { - "MemberType": "Event", - "Name": "DefaultLoadingGuiRemoved", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "FinishedReplicating": { - "MemberType": "Event", - "Name": "FinishedReplicating", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsDefaultLoadingGuiRemoved": { - "MemberType": "Function", - "Name": "IsDefaultLoadingGuiRemoved", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsFinishedReplicating": { - "MemberType": "Function", - "Name": "IsFinishedReplicating", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RemoveDefaultLoadingGuiSignal": { - "MemberType": "Event", - "Name": "RemoveDefaultLoadingGuiSignal", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RemoveDefaultLoadingScreen": { - "MemberType": "Function", - "Name": "RemoveDefaultLoadingScreen", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetDefaultLoadingGuiRemoved": { - "MemberType": "Function", - "Name": "SetDefaultLoadingGuiRemoved", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "ReplicatedFirst", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "ReplicatedStorage": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "ReplicatedStorage", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "ReverbSoundEffect": { - "Members": { - "DecayTime": { - "Category": "State", - "MemberType": "Property", - "Name": "DecayTime", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Density": { - "Category": "State", - "MemberType": "Property", - "Name": "Density", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Diffusion": { - "Category": "State", - "MemberType": "Property", - "Name": "Diffusion", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "DryLevel": { - "Category": "State", - "MemberType": "Property", - "Name": "DryLevel", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "WetLevel": { - "Category": "State", - "MemberType": "Property", - "Name": "WetLevel", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "ReverbSoundEffect", - "Superclass": "SoundEffect" - }, - "RigidConstraint": { - "Members": {}, - "MemoryCategory": "PhysicsParts", - "Name": "RigidConstraint", - "Superclass": "Constraint" - }, - "RobloxPluginGuiService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "RobloxPluginGuiService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "RobloxReplicatedStorage": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "RobloxReplicatedStorage", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotBrowsable" - ] - }, - "RobloxServerStorage": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "RobloxServerStorage", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "RocketPropulsion": { - "Members": { - "Abort": { - "MemberType": "Function", - "Name": "Abort", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CartoonFactor": { - "Category": "Goals", - "MemberType": "Property", - "Name": "CartoonFactor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Fire": { - "MemberType": "Function", - "Name": "Fire", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MaxSpeed": { - "Category": "Thrust", - "MemberType": "Property", - "Name": "MaxSpeed", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MaxThrust": { - "Category": "Thrust", - "MemberType": "Property", - "Name": "MaxThrust", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MaxTorque": { - "Category": "Turn", - "MemberType": "Property", - "Name": "MaxTorque", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "ReachedTarget": { - "MemberType": "Event", - "Name": "ReachedTarget", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Target": { - "Category": "Goals", - "MemberType": "Property", - "Name": "Target", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "BasePart" - } - }, - "TargetOffset": { - "Category": "Goals", - "MemberType": "Property", - "Name": "TargetOffset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "TargetRadius": { - "Category": "Goals", - "MemberType": "Property", - "Name": "TargetRadius", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ThrustD": { - "Category": "Thrust", - "MemberType": "Property", - "Name": "ThrustD", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ThrustP": { - "Category": "Thrust", - "MemberType": "Property", - "Name": "ThrustP", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TurnD": { - "Category": "Turn", - "MemberType": "Property", - "Name": "TurnD", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TurnP": { - "Category": "Turn", - "MemberType": "Property", - "Name": "TurnP", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "fire": { - "MemberType": "Function", - "Name": "fire", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "RocketPropulsion", - "Superclass": "BodyMover", - "Tags": [ - "Deprecated" - ] - }, - "RodConstraint": { - "Members": { - "CurrentDistance": { - "Category": "Derived", - "MemberType": "Property", - "Name": "CurrentDistance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Length": { - "Category": "Rod", - "MemberType": "Property", - "Name": "Length", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LimitAngle0": { - "Category": "Limits", - "MemberType": "Property", - "Name": "LimitAngle0", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LimitAngle1": { - "Category": "Limits", - "MemberType": "Property", - "Name": "LimitAngle1", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LimitsEnabled": { - "Category": "Rod", - "MemberType": "Property", - "Name": "LimitsEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Thickness": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Thickness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "RodConstraint", - "Superclass": "Constraint" - }, - "RomarkService": { - "Members": { - "EndRemoteRomarkTest": { - "MemberType": "Function", - "Name": "EndRemoteRomarkTest", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "RomarkService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "RootImportData": { - "Members": { - "AddModelToInventory": { - "Category": "Data", - "MemberType": "Property", - "Name": "AddModelToInventory", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Anchored": { - "Category": "Data", - "MemberType": "Property", - "Name": "Anchored", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AnimationIdForRestPose": { - "Category": "Data", - "MemberType": "Property", - "Name": "AnimationIdForRestPose", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ExistingPackageId": { - "Category": "Data", - "MemberType": "Property", - "Name": "ExistingPackageId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "FileDimensions": { - "Category": "Data", - "MemberType": "Property", - "Name": "FileDimensions", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "ImportAsModelAsset": { - "Category": "Data", - "MemberType": "Property", - "Name": "ImportAsModelAsset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ImportAsPackage": { - "Category": "Data", - "MemberType": "Property", - "Name": "ImportAsPackage", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "InsertInWorkspace": { - "Category": "Data", - "MemberType": "Property", - "Name": "InsertInWorkspace", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "InsertWithScenePosition": { - "Category": "Data", - "MemberType": "Property", - "Name": "InsertWithScenePosition", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "InvertNegativeFaces": { - "Category": "Data", - "MemberType": "Property", - "Name": "InvertNegativeFaces", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "MergeMeshes": { - "Category": "Data", - "MemberType": "Property", - "Name": "MergeMeshes", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "PolygonCount": { - "Category": "Data", - "MemberType": "Property", - "Name": "PolygonCount", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RestPose": { - "Category": "Data", - "MemberType": "Property", - "Name": "RestPose", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "RestPose" - } - }, - "RigScale": { - "Category": "Data", - "MemberType": "Property", - "Name": "RigScale", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "RigScale" - } - }, - "RigType": { - "Category": "Data", - "MemberType": "Property", - "Name": "RigType", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "RigType" - } - }, - "RigVisualization": { - "Category": "Data", - "MemberType": "Property", - "Name": "RigVisualization", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ScaleUnit": { - "Category": "Data", - "MemberType": "Property", - "Name": "ScaleUnit", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "MeshScaleUnit" - } - }, - "UseSceneOriginAsCFrame": { - "Category": "Data", - "MemberType": "Property", - "Name": "UseSceneOriginAsCFrame", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "UseSceneOriginAsPivot": { - "Category": "Data", - "MemberType": "Property", - "Name": "UseSceneOriginAsPivot", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "UsesCages": { - "Category": "Data", - "MemberType": "Property", - "Name": "UsesCages", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "WorldForward": { - "Category": "Data", - "MemberType": "Property", - "Name": "WorldForward", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "NormalId" - } - }, - "WorldUp": { - "Category": "Data", - "MemberType": "Property", - "Name": "WorldUp", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "NormalId" - } - } - }, - "MemoryCategory": "Instances", - "Name": "RootImportData", - "Superclass": "BaseImportData", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "RopeConstraint": { - "Members": { - "CurrentDistance": { - "Category": "Derived", - "MemberType": "Property", - "Name": "CurrentDistance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Length": { - "Category": "Rope", - "MemberType": "Property", - "Name": "Length", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Restitution": { - "Category": "Rope", - "MemberType": "Property", - "Name": "Restitution", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Thickness": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Thickness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "WinchEnabled": { - "Category": "Rope", - "MemberType": "Property", - "Name": "WinchEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "WinchForce": { - "Category": "Winch", - "MemberType": "Property", - "Name": "WinchForce", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "WinchResponsiveness": { - "Category": "Winch", - "MemberType": "Property", - "Name": "WinchResponsiveness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "WinchSpeed": { - "Category": "Winch", - "MemberType": "Property", - "Name": "WinchSpeed", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "WinchTarget": { - "Category": "Winch", - "MemberType": "Property", - "Name": "WinchTarget", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "RopeConstraint", - "Superclass": "Constraint" - }, - "Rotate": { - "Members": {}, - "MemoryCategory": "PhysicsParts", - "Name": "Rotate", - "Superclass": "JointInstance", - "Tags": [ - "Deprecated" - ] - }, - "RotateP": { - "Members": {}, - "MemoryCategory": "PhysicsParts", - "Name": "RotateP", - "Superclass": "DynamicRotate", - "Tags": [ - "Deprecated" - ] - }, - "RotateV": { - "Members": {}, - "MemoryCategory": "PhysicsParts", - "Name": "RotateV", - "Superclass": "DynamicRotate", - "Tags": [ - "Deprecated" - ] - }, - "RotationCurve": { - "Members": { - "GetKeyAtIndex": { - "MemberType": "Function", - "Name": "GetKeyAtIndex", - "Parameters": [ - { - "Name": "index", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "RotationCurveKey" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetKeyIndicesAtTime": { - "MemberType": "Function", - "Name": "GetKeyIndicesAtTime", - "Parameters": [ - { - "Name": "time", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetKeys": { - "MemberType": "Function", - "Name": "GetKeys", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetValueAtTime": { - "MemberType": "Function", - "Name": "GetValueAtTime", - "Parameters": [ - { - "Name": "time", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "CoordinateFrame?" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InsertKey": { - "MemberType": "Function", - "Name": "InsertKey", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "DataType", - "Name": "RotationCurveKey" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Length": { - "Category": "Data", - "MemberType": "Property", - "Name": "Length", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "RemoveKeyAtIndex": { - "MemberType": "Function", - "Name": "RemoveKeyAtIndex", - "Parameters": [ - { - "Name": "startingIndex", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Default": "1", - "Name": "count", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetKeys": { - "MemberType": "Function", - "Name": "SetKeys", - "Parameters": [ - { - "Name": "keys", - "Type": { - "Category": "Group", - "Name": "Array" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "RotationCurve", - "Superclass": "Instance" - }, - "RtMessagingService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "RtMessagingService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "RunService": { - "Members": { - "BindToRenderStep": { - "MemberType": "Function", - "Name": "BindToRenderStep", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "priority", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "function", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ClientGitHash": { - "Category": "Data", - "MemberType": "Property", - "Name": "ClientGitHash", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "GetCoreScriptVersion": { - "MemberType": "Function", - "Name": "GetCoreScriptVersion", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetRobloxClientChannel": { - "MemberType": "Function", - "Name": "GetRobloxClientChannel", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetRobloxVersion": { - "MemberType": "Function", - "Name": "GetRobloxVersion", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Heartbeat": { - "MemberType": "Event", - "Name": "Heartbeat", - "Parameters": [ - { - "Name": "deltaTime", - "Type": { - "Category": "Primitive", - "Name": "double" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsClient": { - "MemberType": "Function", - "Name": "IsClient", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "IsEdit": { - "MemberType": "Function", - "Name": "IsEdit", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "IsRunMode": { - "MemberType": "Function", - "Name": "IsRunMode", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "IsRunning": { - "MemberType": "Function", - "Name": "IsRunning", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsServer": { - "MemberType": "Function", - "Name": "IsServer", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "IsStudio": { - "MemberType": "Function", - "Name": "IsStudio", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "Pause": { - "MemberType": "Function", - "Name": "Pause", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PostSimulation": { - "MemberType": "Event", - "Name": "PostSimulation", - "Parameters": [ - { - "Name": "deltaTimeSim", - "Type": { - "Category": "Primitive", - "Name": "double" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PreAnimation": { - "MemberType": "Event", - "Name": "PreAnimation", - "Parameters": [ - { - "Name": "deltaTimeSim", - "Type": { - "Category": "Primitive", - "Name": "double" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PreRender": { - "MemberType": "Event", - "Name": "PreRender", - "Parameters": [ - { - "Name": "deltaTimeRender", - "Type": { - "Category": "Primitive", - "Name": "double" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PreSimulation": { - "MemberType": "Event", - "Name": "PreSimulation", - "Parameters": [ - { - "Name": "deltaTimeSim", - "Type": { - "Category": "Primitive", - "Name": "double" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RenderStepped": { - "MemberType": "Event", - "Name": "RenderStepped", - "Parameters": [ - { - "Name": "deltaTime", - "Type": { - "Category": "Primitive", - "Name": "double" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Reset": { - "MemberType": "Function", - "Name": "Reset", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "Run": { - "MemberType": "Function", - "Name": "Run", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Set3dRenderingEnabled": { - "MemberType": "Function", - "Name": "Set3dRenderingEnabled", - "Parameters": [ - { - "Name": "enable", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetRobloxGuiFocused": { - "MemberType": "Function", - "Name": "SetRobloxGuiFocused", - "Parameters": [ - { - "Name": "focus", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Stepped": { - "MemberType": "Event", - "Name": "Stepped", - "Parameters": [ - { - "Name": "time", - "Type": { - "Category": "Primitive", - "Name": "double" - } - }, - { - "Name": "deltaTime", - "Type": { - "Category": "Primitive", - "Name": "double" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Stop": { - "MemberType": "Function", - "Name": "Stop", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UnbindFromRenderStep": { - "MemberType": "Function", - "Name": "UnbindFromRenderStep", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "setThrottleFramerateEnabled": { - "MemberType": "Function", - "Name": "setThrottleFramerateEnabled", - "Parameters": [ - { - "Name": "enable", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "RunService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "RunningAverageItemDouble": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "RunningAverageItemDouble", - "Superclass": "StatsItem", - "Tags": [ - "NotCreatable" - ] - }, - "RunningAverageItemInt": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "RunningAverageItemInt", - "Superclass": "StatsItem", - "Tags": [ - "NotCreatable" - ] - }, - "RunningAverageTimeIntervalItem": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "RunningAverageTimeIntervalItem", - "Superclass": "StatsItem", - "Tags": [ - "NotCreatable" - ] - }, - "RuntimeScriptService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "RuntimeScriptService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "SafetyService": { - "Members": { - "ScreenshotContentReady": { - "MemberType": "Event", - "Name": "ScreenshotContentReady", - "Parameters": [ - { - "Name": "screenshotJobId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "contentId", - "Type": { - "Category": "DataType", - "Name": "Content" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ScreenshotUploaded": { - "MemberType": "Event", - "Name": "ScreenshotUploaded", - "Parameters": [ - { - "Name": "screenshotJobId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "screenshotId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TakeScreenshot": { - "MemberType": "Function", - "Name": "TakeScreenshot", - "Parameters": [ - { - "Name": "screenshotOptions", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int64" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "SafetyService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "ScreenGui": { - "Members": { - "ClipToDeviceSafeArea": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "ClipToDeviceSafeArea", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotBrowsable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "DisplayOrder": { - "Category": "Data", - "MemberType": "Property", - "Name": "DisplayOrder", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "IgnoreGuiInset": { - "Category": "Data", - "MemberType": "Property", - "Name": "IgnoreGuiInset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "OnTopOfCoreBlur": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "OnTopOfCoreBlur", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "SafeAreaCompatibility": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "SafeAreaCompatibility", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotBrowsable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "SafeAreaCompatibility" - } - }, - "ScreenInsets": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "ScreenInsets", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotBrowsable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ScreenInsets" - } - } - }, - "MemoryCategory": "Instances", - "Name": "ScreenGui", - "Superclass": "LayerCollector" - }, - "ScreenshotHud": { - "Members": { - "CameraButtonIcon": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "CameraButtonIcon", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "CameraButtonPosition": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "CameraButtonPosition", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "UDim2" - } - }, - "CloseButtonPosition": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "CloseButtonPosition", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "UDim2" - } - }, - "CloseWhenScreenshotTaken": { - "Category": "Data", - "MemberType": "Property", - "Name": "CloseWhenScreenshotTaken", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ExperienceNameOverlayEnabled": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "ExperienceNameOverlayEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "OverlayFont": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "OverlayFont", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "Font" - } - }, - "UsernameOverlayEnabled": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "UsernameOverlayEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Visible": { - "Category": "State", - "MemberType": "Property", - "Name": "Visible", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "ScreenshotHud", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "Script": { - "Members": { - "GetHash": { - "MemberType": "Function", - "Name": "GetHash", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Source": { - "Category": "Data", - "MemberType": "Property", - "Name": "Source", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "ProtectedString" - } - } - }, - "MemoryCategory": "Script", - "Name": "Script", - "Superclass": "BaseScript" - }, - "ScriptBuilder": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "ScriptBuilder", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "ScriptChangeService": { - "Members": { - "ScriptAdded": { - "MemberType": "Event", - "Name": "ScriptAdded", - "Parameters": [ - { - "Name": "script", - "Type": { - "Category": "Class", - "Name": "LuaSourceContainer" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ScriptBeingRemoved": { - "MemberType": "Event", - "Name": "ScriptBeingRemoved", - "Parameters": [ - { - "Name": "script", - "Type": { - "Category": "Class", - "Name": "LuaSourceContainer" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ScriptChanged": { - "MemberType": "Event", - "Name": "ScriptChanged", - "Parameters": [ - { - "Name": "script", - "Type": { - "Category": "Class", - "Name": "LuaSourceContainer" - } - }, - { - "Name": "property", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ScriptFullNameChanged": { - "MemberType": "Event", - "Name": "ScriptFullNameChanged", - "Parameters": [ - { - "Name": "script", - "Type": { - "Category": "Class", - "Name": "LuaSourceContainer" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ScriptSourceChanged": { - "MemberType": "Event", - "Name": "ScriptSourceChanged", - "Parameters": [ - { - "Name": "script", - "Type": { - "Category": "Class", - "Name": "LuaSourceContainer" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "ScriptChangeService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "ScriptCloneWatcher": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "ScriptCloneWatcher", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "ScriptCloneWatcherHelper": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "ScriptCloneWatcherHelper", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "ScriptCommitService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "ScriptCommitService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "ScriptContext": { - "Members": { - "AddCoreScriptLocal": { - "MemberType": "Function", - "Name": "AddCoreScriptLocal", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "parent", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ClearScriptProfilingData": { - "MemberType": "Function", - "Name": "ClearScriptProfilingData", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DeserializeScriptProfilerString": { - "MemberType": "Function", - "Name": "DeserializeScriptProfilerString", - "Parameters": [ - { - "Name": "jsonString", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "CustomLuaState": true - }, - "ThreadSafety": "Unsafe" - }, - "Error": { - "MemberType": "Event", - "Name": "Error", - "Parameters": [ - { - "Name": "message", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "stackTrace", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "script", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ErrorDetailed": { - "MemberType": "Event", - "Name": "ErrorDetailed", - "Parameters": [ - { - "Name": "message", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "stackTrace", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "script", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "details", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "securityLevel", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetCoverageStats": { - "MemberType": "Function", - "Name": "GetCoverageStats", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SaveScriptProfilingData": { - "MemberType": "Function", - "Name": "SaveScriptProfilingData", - "Parameters": [ - { - "Name": "filename", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ScriptsDisabled": { - "Category": "State", - "MemberType": "Property", - "Name": "ScriptsDisabled", - "Security": { - "Read": "LocalUserSecurity", - "Write": "LocalUserSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "SetTimeout": { - "MemberType": "Function", - "Name": "SetTimeout", - "Parameters": [ - { - "Name": "seconds", - "Type": { - "Category": "Primitive", - "Name": "double" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StartScriptProfiling": { - "MemberType": "Function", - "Name": "StartScriptProfiling", - "Parameters": [ - { - "Name": "frequency", - "Type": { - "Category": "Primitive", - "Name": "int?" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StopScriptProfiling": { - "MemberType": "Function", - "Name": "StopScriptProfiling", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "ScriptContext", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "ScriptDebugger": { - "Members": { - "AddWatch": { - "MemberType": "Function", - "Name": "AddWatch", - "Parameters": [ - { - "Name": "expression", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "BreakpointAdded": { - "MemberType": "Event", - "Name": "BreakpointAdded", - "Parameters": [ - { - "Name": "breakpoint", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "BreakpointRemoved": { - "MemberType": "Event", - "Name": "BreakpointRemoved", - "Parameters": [ - { - "Name": "breakpoint", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CurrentLine": { - "Category": "Data", - "MemberType": "Property", - "Name": "CurrentLine", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "EncounteredBreak": { - "MemberType": "Event", - "Name": "EncounteredBreak", - "Parameters": [ - { - "Name": "line", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "breakReason", - "Type": { - "Category": "Enum", - "Name": "BreakReason" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetBreakpoints": { - "MemberType": "Function", - "Name": "GetBreakpoints", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetGlobals": { - "MemberType": "Function", - "Name": "GetGlobals", - "Parameters": [ - { - "Default": "0", - "Name": "stackFrame", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Map" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetLocals": { - "MemberType": "Function", - "Name": "GetLocals", - "Parameters": [ - { - "Default": "0", - "Name": "stackFrame", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Map" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetStack": { - "MemberType": "Function", - "Name": "GetStack", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetUpvalues": { - "MemberType": "Function", - "Name": "GetUpvalues", - "Parameters": [ - { - "Default": "0", - "Name": "stackFrame", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Map" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetWatchValue": { - "MemberType": "Function", - "Name": "GetWatchValue", - "Parameters": [ - { - "Name": "watch", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Variant" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetWatches": { - "MemberType": "Function", - "Name": "GetWatches", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsDebugging": { - "Category": "Data", - "MemberType": "Property", - "Name": "IsDebugging", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "IsPaused": { - "Category": "Data", - "MemberType": "Property", - "Name": "IsPaused", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Resuming": { - "MemberType": "Event", - "Name": "Resuming", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Script": { - "Category": "Data", - "MemberType": "Property", - "Name": "Script", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - }, - "SetBreakpoint": { - "MemberType": "Function", - "Name": "SetBreakpoint", - "Parameters": [ - { - "Name": "line", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "isContextDependentBreakpoint", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetGlobal": { - "MemberType": "Function", - "Name": "SetGlobal", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "value", - "Type": { - "Category": "Group", - "Name": "Variant" - } - }, - { - "Name": "stackFrame", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetLocal": { - "MemberType": "Function", - "Name": "SetLocal", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "value", - "Type": { - "Category": "Group", - "Name": "Variant" - } - }, - { - "Default": "0", - "Name": "stackFrame", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetUpvalue": { - "MemberType": "Function", - "Name": "SetUpvalue", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "value", - "Type": { - "Category": "Group", - "Name": "Variant" - } - }, - { - "Default": "0", - "Name": "stackFrame", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "WatchAdded": { - "MemberType": "Event", - "Name": "WatchAdded", - "Parameters": [ - { - "Name": "watch", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "WatchRemoved": { - "MemberType": "Event", - "Name": "WatchRemoved", - "Parameters": [ - { - "Name": "watch", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "ScriptDebugger", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "ScriptDocument": { - "Members": { - "CloseAsync": { - "MemberType": "Function", - "Name": "CloseAsync", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "PluginSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "EditTextAsync": { - "MemberType": "Function", - "Name": "EditTextAsync", - "Parameters": [ - { - "Name": "newText", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "startLine", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "startCharacter", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "endLine", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "endCharacter", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "PluginSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ForceSetSelectionAsync": { - "MemberType": "Function", - "Name": "ForceSetSelectionAsync", - "Parameters": [ - { - "Name": "cursorLine", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "cursorCharacter", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Default": "nil", - "Name": "anchorLine", - "Type": { - "Category": "Primitive", - "Name": "int?" - } - }, - { - "Default": "nil", - "Name": "anchorCharacter", - "Type": { - "Category": "Primitive", - "Name": "int?" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "PluginSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetInternalUri": { - "MemberType": "Function", - "Name": "GetInternalUri", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetLine": { - "MemberType": "Function", - "Name": "GetLine", - "Parameters": [ - { - "Default": "nil", - "Name": "lineIndex", - "Type": { - "Category": "Primitive", - "Name": "int?" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetLineCount": { - "MemberType": "Function", - "Name": "GetLineCount", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetScript": { - "MemberType": "Function", - "Name": "GetScript", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "LuaSourceContainer" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetSelectedText": { - "MemberType": "Function", - "Name": "GetSelectedText", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetSelection": { - "MemberType": "Function", - "Name": "GetSelection", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetSelectionEnd": { - "MemberType": "Function", - "Name": "GetSelectionEnd", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetSelectionStart": { - "MemberType": "Function", - "Name": "GetSelectionStart", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetText": { - "MemberType": "Function", - "Name": "GetText", - "Parameters": [ - { - "Default": "nil", - "Name": "startLine", - "Type": { - "Category": "Primitive", - "Name": "int?" - } - }, - { - "Default": "nil", - "Name": "startCharacter", - "Type": { - "Category": "Primitive", - "Name": "int?" - } - }, - { - "Default": "nil", - "Name": "endLine", - "Type": { - "Category": "Primitive", - "Name": "int?" - } - }, - { - "Default": "nil", - "Name": "endCharacter", - "Type": { - "Category": "Primitive", - "Name": "int?" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetViewport": { - "MemberType": "Function", - "Name": "GetViewport", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "HasSelectedText": { - "MemberType": "Function", - "Name": "HasSelectedText", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsCommandBar": { - "MemberType": "Function", - "Name": "IsCommandBar", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RequestSetSelectionAsync": { - "MemberType": "Function", - "Name": "RequestSetSelectionAsync", - "Parameters": [ - { - "Name": "cursorLine", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "cursorCharacter", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Default": "nil", - "Name": "anchorLine", - "Type": { - "Category": "Primitive", - "Name": "int?" - } - }, - { - "Default": "nil", - "Name": "anchorCharacter", - "Type": { - "Category": "Primitive", - "Name": "int?" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "PluginSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "SelectionChanged": { - "MemberType": "Event", - "Name": "SelectionChanged", - "Parameters": [ - { - "Name": "positionLine", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "positionCharacter", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "anchorLine", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "anchorCharacter", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ViewportChanged": { - "MemberType": "Event", - "Name": "ViewportChanged", - "Parameters": [ - { - "Name": "startLine", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "endLine", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "ScriptDocument", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "ScriptEditorService": { - "Members": { - "DeregisterAutocompleteCallback": { - "MemberType": "Function", - "Name": "DeregisterAutocompleteCallback", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DeregisterScriptAnalysisCallback": { - "MemberType": "Function", - "Name": "DeregisterScriptAnalysisCallback", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "FindScriptDocument": { - "MemberType": "Function", - "Name": "FindScriptDocument", - "Parameters": [ - { - "Name": "script", - "Type": { - "Category": "Class", - "Name": "LuaSourceContainer" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "ScriptDocument" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ForceReloadSource": { - "MemberType": "Function", - "Name": "ForceReloadSource", - "Parameters": [ - { - "Name": "uri", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "newsrc", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetEditorSource": { - "MemberType": "Function", - "Name": "GetEditorSource", - "Parameters": [ - { - "Name": "script", - "Type": { - "Category": "Class", - "Name": "LuaSourceContainer" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetScriptDocuments": { - "MemberType": "Function", - "Name": "GetScriptDocuments", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OpenScriptDocumentAsync": { - "MemberType": "Function", - "Name": "OpenScriptDocumentAsync", - "Parameters": [ - { - "Name": "script", - "Type": { - "Category": "Class", - "Name": "LuaSourceContainer" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "PluginSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "RegisterAutocompleteCallback": { - "MemberType": "Function", - "Name": "RegisterAutocompleteCallback", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "priority", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "callbackFunction", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RegisterScriptAnalysisCallback": { - "MemberType": "Function", - "Name": "RegisterScriptAnalysisCallback", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "priority", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "callbackFunction", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TextDocumentDidChange": { - "MemberType": "Event", - "Name": "TextDocumentDidChange", - "Parameters": [ - { - "Name": "document", - "Type": { - "Category": "Class", - "Name": "ScriptDocument" - } - }, - { - "Name": "changesArray", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TextDocumentDidClose": { - "MemberType": "Event", - "Name": "TextDocumentDidClose", - "Parameters": [ - { - "Name": "oldDocument", - "Type": { - "Category": "Class", - "Name": "ScriptDocument" - } - } - ], - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TextDocumentDidOpen": { - "MemberType": "Event", - "Name": "TextDocumentDidOpen", - "Parameters": [ - { - "Name": "newDocument", - "Type": { - "Category": "Class", - "Name": "ScriptDocument" - } - } - ], - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "ScriptEditorService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "ScriptRegistrationService": { - "Members": { - "GetSourceContainerByScriptGuid": { - "MemberType": "Function", - "Name": "GetSourceContainerByScriptGuid", - "Parameters": [ - { - "Name": "guid", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "LuaSourceContainer" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "ScriptRegistrationService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "ScriptRuntime": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "ScriptRuntime", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "ScriptService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "ScriptService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "ScrollingFrame": { - "Members": { - "AbsoluteCanvasSize": { - "Category": "Scrolling", - "MemberType": "Property", - "Name": "AbsoluteCanvasSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "Unsafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "AbsoluteWindowSize": { - "Category": "Scrolling", - "MemberType": "Property", - "Name": "AbsoluteWindowSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "Unsafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "AutomaticCanvasSize": { - "Category": "Scrolling", - "MemberType": "Property", - "Name": "AutomaticCanvasSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "AutomaticSize" - } - }, - "BottomImage": { - "Category": "Scrolling", - "MemberType": "Property", - "Name": "BottomImage", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "CanvasPosition": { - "Category": "Scrolling", - "MemberType": "Property", - "Name": "CanvasPosition", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "CanvasSize": { - "Category": "Scrolling", - "MemberType": "Property", - "Name": "CanvasSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "UDim2" - } - }, - "ClearInertialScrolling": { - "MemberType": "Function", - "Name": "ClearInertialScrolling", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ElasticBehavior": { - "Category": "Scrolling", - "MemberType": "Property", - "Name": "ElasticBehavior", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ElasticBehavior" - } - }, - "GetSampledInertialVelocity": { - "MemberType": "Function", - "Name": "GetSampledInertialVelocity", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Vector2" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "HorizontalBarRect": { - "Category": "Debugging", - "MemberType": "Property", - "Name": "HorizontalBarRect", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Rect" - } - }, - "HorizontalScrollBarInset": { - "Category": "Scrolling", - "MemberType": "Property", - "Name": "HorizontalScrollBarInset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ScrollBarInset" - } - }, - "MaxCanvasPosition": { - "Category": "Debugging", - "MemberType": "Property", - "Name": "MaxCanvasPosition", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "MidImage": { - "Category": "Scrolling", - "MemberType": "Property", - "Name": "MidImage", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "ScrollBarImageColor3": { - "Category": "Scrolling", - "MemberType": "Property", - "Name": "ScrollBarImageColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "ScrollBarImageTransparency": { - "Category": "Scrolling", - "MemberType": "Property", - "Name": "ScrollBarImageTransparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ScrollBarThickness": { - "Category": "Scrolling", - "MemberType": "Property", - "Name": "ScrollBarThickness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "ScrollToTop": { - "MemberType": "Function", - "Name": "ScrollToTop", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ScrollVelocity": { - "Category": "Scrolling", - "MemberType": "Property", - "Name": "ScrollVelocity", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "ScrollingDirection": { - "Category": "Scrolling", - "MemberType": "Property", - "Name": "ScrollingDirection", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ScrollingDirection" - } - }, - "ScrollingEnabled": { - "Category": "Scrolling", - "MemberType": "Property", - "Name": "ScrollingEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "TopImage": { - "Category": "Scrolling", - "MemberType": "Property", - "Name": "TopImage", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "VerticalBarRect": { - "Category": "Debugging", - "MemberType": "Property", - "Name": "VerticalBarRect", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Rect" - } - }, - "VerticalScrollBarInset": { - "Category": "Scrolling", - "MemberType": "Property", - "Name": "VerticalScrollBarInset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ScrollBarInset" - } - }, - "VerticalScrollBarPosition": { - "Category": "Scrolling", - "MemberType": "Property", - "Name": "VerticalScrollBarPosition", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "VerticalScrollBarPosition" - } - } - }, - "MemoryCategory": "Gui", - "Name": "ScrollingFrame", - "Superclass": "GuiObject" - }, - "Seat": { - "Members": { - "Disabled": { - "Category": "Control", - "MemberType": "Property", - "Name": "Disabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Occupant": { - "Category": "Control", - "MemberType": "Property", - "Name": "Occupant", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Humanoid" - } - }, - "Sit": { - "MemberType": "Function", - "Name": "Sit", - "Parameters": [ - { - "Name": "humanoid", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "Seat", - "Superclass": "Part" - }, - "Selection": { - "Members": { - "ActiveInstance": { - "Category": "Data", - "MemberType": "Property", - "Name": "ActiveInstance", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - }, - "Add": { - "MemberType": "Function", - "Name": "Add", - "Parameters": [ - { - "Name": "instancesToAdd", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ClearTerrainSelectionHack": { - "MemberType": "Function", - "Name": "ClearTerrainSelectionHack", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Get": { - "MemberType": "Function", - "Name": "Get", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Remove": { - "MemberType": "Function", - "Name": "Remove", - "Parameters": [ - { - "Name": "instancesToRemove", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RenderMode": { - "Category": "Data", - "MemberType": "Property", - "Name": "RenderMode", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "SelectionRenderMode" - } - }, - "SelectionBoxThickness": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "SelectionBoxThickness", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "SelectionChanged": { - "MemberType": "Event", - "Name": "SelectionChanged", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SelectionLineThickness": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "SelectionLineThickness", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "SelectionThickness": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "SelectionThickness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Set": { - "MemberType": "Function", - "Name": "Set", - "Parameters": [ - { - "Name": "selection", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetTerrainSelectionHack": { - "MemberType": "Function", - "Name": "SetTerrainSelectionHack", - "Parameters": [ - { - "Name": "center", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "size", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ShowActiveInstanceHighlight": { - "Category": "Data", - "MemberType": "Property", - "Name": "ShowActiveInstanceHighlight", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Selection", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "SelectionBox": { - "Members": { - "LineThickness": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "LineThickness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "StudioSelectionBox": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "StudioSelectionBox", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "SurfaceColor": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "SurfaceColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BrickColor" - } - }, - "SurfaceColor3": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "SurfaceColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "SurfaceTransparency": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "SurfaceTransparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "SelectionBox", - "Superclass": "InstanceAdornment" - }, - "SelectionHighlightManager": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "SelectionHighlightManager", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "SelectionLasso": { - "Members": { - "Humanoid": { - "Category": "Data", - "MemberType": "Property", - "Name": "Humanoid", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Humanoid" - } - } - }, - "MemoryCategory": "Instances", - "Name": "SelectionLasso", - "Superclass": "GuiBase3d", - "Tags": [ - "NotCreatable" - ] - }, - "SelectionPartLasso": { - "Members": { - "Part": { - "Category": "Data", - "MemberType": "Property", - "Name": "Part", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "BasePart" - } - } - }, - "MemoryCategory": "Instances", - "Name": "SelectionPartLasso", - "Superclass": "SelectionLasso", - "Tags": [ - "Deprecated" - ] - }, - "SelectionPointLasso": { - "Members": { - "Point": { - "Category": "Data", - "MemberType": "Property", - "Name": "Point", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - } - }, - "MemoryCategory": "Instances", - "Name": "SelectionPointLasso", - "Superclass": "SelectionLasso", - "Tags": [ - "Deprecated" - ] - }, - "SelectionSphere": { - "Members": { - "SurfaceColor": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "SurfaceColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BrickColor" - } - }, - "SurfaceColor3": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "SurfaceColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "SurfaceTransparency": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "SurfaceTransparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "SelectionSphere", - "Superclass": "PVAdornment" - }, - "SensorBase": { - "Members": { - "OnSensorOutputChanged": { - "MemberType": "Event", - "Name": "OnSensorOutputChanged", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Sense": { - "MemberType": "Function", - "Name": "Sense", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "UpdateType": { - "Category": "Settings", - "MemberType": "Property", - "Name": "UpdateType", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "SensorUpdateType" - } - } - }, - "MemoryCategory": "Instances", - "Name": "SensorBase", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "ServerReplicator": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "ServerReplicator", - "Superclass": "NetworkReplicator", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "ServerScriptService": { - "Members": { - "LoadStringEnabled": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "LoadStringEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "ServerScriptService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "ServerStorage": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "ServerStorage", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "ServiceProvider": { - "Members": { - "Close": { - "MemberType": "Event", - "Name": "Close", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CloseLate": { - "MemberType": "Event", - "Name": "CloseLate", - "Parameters": {}, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "FindService": { - "MemberType": "Function", - "Name": "FindService", - "Parameters": [ - { - "Name": "className", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GetService": { - "MemberType": "Function", - "Name": "GetService", - "Parameters": [ - { - "Name": "className", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ServiceAdded": { - "MemberType": "Event", - "Name": "ServiceAdded", - "Parameters": [ - { - "Name": "service", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ServiceRemoving": { - "MemberType": "Event", - "Name": "ServiceRemoving", - "Parameters": [ - { - "Name": "service", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "getService": { - "MemberType": "Function", - "Name": "getService", - "Parameters": [ - { - "Name": "className", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "service": { - "MemberType": "Function", - "Name": "service", - "Parameters": [ - { - "Name": "className", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "ServiceProvider", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotBrowsable" - ] - }, - "ServiceVisibilityService": { - "Members": { - "HiddenServices": { - "Category": "Data", - "MemberType": "Property", - "Name": "HiddenServices", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BinaryString" - } - }, - "VisibleServices": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "VisibleServices", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BinaryString" - } - } - }, - "MemoryCategory": "Instances", - "Name": "ServiceVisibilityService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "SessionService": { - "Members": { - "GetCreatedTimestampUtcMs": { - "MemberType": "Function", - "Name": "GetCreatedTimestampUtcMs", - "Parameters": [ - { - "Name": "sid", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int64" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetMetadata": { - "MemberType": "Function", - "Name": "GetMetadata", - "Parameters": [ - { - "Name": "sid", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Variant" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetRootSID": { - "MemberType": "Function", - "Name": "GetRootSID", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RemoveMetadata": { - "MemberType": "Function", - "Name": "RemoveMetadata", - "Parameters": [ - { - "Name": "sid", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RemoveSession": { - "MemberType": "Function", - "Name": "RemoveSession", - "Parameters": [ - { - "Name": "sid", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RemoveSessionsWithMetadataKey": { - "MemberType": "Function", - "Name": "RemoveSessionsWithMetadataKey", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ReplaceSession": { - "MemberType": "Function", - "Name": "ReplaceSession", - "Parameters": [ - { - "Name": "sid", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "tag", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SessionExists": { - "MemberType": "Function", - "Name": "SessionExists", - "Parameters": [ - { - "Name": "sid", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetMetadata": { - "MemberType": "Function", - "Name": "SetMetadata", - "Parameters": [ - { - "Name": "sid", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "value", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetSession": { - "MemberType": "Function", - "Name": "SetSession", - "Parameters": [ - { - "Name": "parentSid", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "childSid", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "tag", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "SessionService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "SharedTableRegistry": { - "Members": { - "GetSharedTable": { - "MemberType": "Function", - "Name": "GetSharedTable", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "SharedTable" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "SetSharedTable": { - "MemberType": "Function", - "Name": "SetSharedTable", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "st", - "Type": { - "Category": "DataType", - "Name": "SharedTable?" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - } - }, - "MemoryCategory": "Instances", - "Name": "SharedTableRegistry", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "Shirt": { - "Members": { - "ShirtTemplate": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "ShirtTemplate", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Shirt", - "Superclass": "Clothing" - }, - "ShirtGraphic": { - "Members": { - "Color3": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Color3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Graphic": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Graphic", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - } - }, - "MemoryCategory": "Instances", - "Name": "ShirtGraphic", - "Superclass": "CharacterAppearance" - }, - "ShorelineUpgraderService": { - "Members": { - "Cancel": { - "MemberType": "Function", - "Name": "Cancel", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Start": { - "MemberType": "Function", - "Name": "Start", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Status": { - "MemberType": "Event", - "Name": "Status", - "Parameters": [ - { - "Name": "progressRatio", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "ShorelineUpgraderService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "SkateboardController": { - "Members": { - "AxisChanged": { - "MemberType": "Event", - "Name": "AxisChanged", - "Parameters": [ - { - "Name": "axis", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Steer": { - "Category": "Axes", - "MemberType": "Property", - "Name": "Steer", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Throttle": { - "Category": "Axes", - "MemberType": "Property", - "Name": "Throttle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "SkateboardController", - "Superclass": "Controller" - }, - "SkateboardPlatform": { - "Members": { - "ApplySpecificImpulse": { - "MemberType": "Function", - "Name": "ApplySpecificImpulse", - "Parameters": [ - { - "Name": "impulseWorld", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Controller": { - "Category": "Control", - "MemberType": "Property", - "Name": "Controller", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "SkateboardController" - } - }, - "ControllingHumanoid": { - "Category": "Control", - "MemberType": "Property", - "Name": "ControllingHumanoid", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Humanoid" - } - }, - "Equipped": { - "MemberType": "Event", - "Name": "Equipped", - "Parameters": [ - { - "Name": "humanoid", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "skateboardController", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MoveStateChanged": { - "MemberType": "Event", - "Name": "MoveStateChanged", - "Parameters": [ - { - "Name": "newState", - "Type": { - "Category": "Enum", - "Name": "MoveState" - } - }, - { - "Name": "oldState", - "Type": { - "Category": "Enum", - "Name": "MoveState" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Steer": { - "Category": "Control", - "MemberType": "Property", - "Name": "Steer", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "StickyWheels": { - "Category": "Control", - "MemberType": "Property", - "Name": "StickyWheels", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Throttle": { - "Category": "Control", - "MemberType": "Property", - "Name": "Throttle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "Unequipped": { - "MemberType": "Event", - "Name": "Unequipped", - "Parameters": [ - { - "Name": "humanoid", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "equipped": { - "MemberType": "Event", - "Name": "equipped", - "Parameters": [ - { - "Name": "humanoid", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "skateboardController", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "unequipped": { - "MemberType": "Event", - "Name": "unequipped", - "Parameters": [ - { - "Name": "humanoid", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "SkateboardPlatform", - "Superclass": "Part", - "Tags": [ - "Deprecated" - ] - }, - "Skin": { - "Members": { - "SkinColor": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "SkinColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BrickColor" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Skin", - "Superclass": "CharacterAppearance", - "Tags": [ - "Deprecated" - ] - }, - "Sky": { - "Members": { - "CelestialBodiesShown": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "CelestialBodiesShown", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "MoonAngularSize": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "MoonAngularSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MoonTextureId": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "MoonTextureId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "SkyboxBk": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "SkyboxBk", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "SkyboxDn": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "SkyboxDn", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "SkyboxFt": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "SkyboxFt", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "SkyboxLf": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "SkyboxLf", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "SkyboxRt": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "SkyboxRt", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "SkyboxUp": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "SkyboxUp", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "StarCount": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "StarCount", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "SunAngularSize": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "SunAngularSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "SunTextureId": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "SunTextureId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Sky", - "Superclass": "Instance" - }, - "SlidingBallConstraint": { - "Members": { - "ActuatorType": { - "Category": "Slider", - "MemberType": "Property", - "Name": "ActuatorType", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ActuatorType" - } - }, - "CurrentPosition": { - "Category": "Derived", - "MemberType": "Property", - "Name": "CurrentPosition", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LimitsEnabled": { - "Category": "Slider", - "MemberType": "Property", - "Name": "LimitsEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "LinearResponsiveness": { - "Category": "Servo", - "MemberType": "Property", - "Name": "LinearResponsiveness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LowerLimit": { - "Category": "Limits", - "MemberType": "Property", - "Name": "LowerLimit", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MotorMaxAcceleration": { - "Category": "Motor", - "MemberType": "Property", - "Name": "MotorMaxAcceleration", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MotorMaxForce": { - "Category": "Motor", - "MemberType": "Property", - "Name": "MotorMaxForce", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Restitution": { - "Category": "Limits", - "MemberType": "Property", - "Name": "Restitution", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ServoMaxForce": { - "Category": "Servo", - "MemberType": "Property", - "Name": "ServoMaxForce", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Size": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Size", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Speed": { - "Category": "Servo", - "MemberType": "Property", - "Name": "Speed", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TargetPosition": { - "Category": "Servo", - "MemberType": "Property", - "Name": "TargetPosition", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "UpperLimit": { - "Category": "Limits", - "MemberType": "Property", - "Name": "UpperLimit", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Velocity": { - "Category": "Motor", - "MemberType": "Property", - "Name": "Velocity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "SlidingBallConstraint", - "Superclass": "Constraint", - "Tags": [ - "NotCreatable" - ] - }, - "Smoke": { - "Members": { - "Color": { - "Category": "Data", - "MemberType": "Property", - "Name": "Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Enabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "FastForward": { - "MemberType": "Function", - "Name": "FastForward", - "Parameters": [ - { - "Name": "numFrames", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Opacity": { - "Category": "Data", - "MemberType": "Property", - "Name": "Opacity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RiseVelocity": { - "Category": "Data", - "MemberType": "Property", - "Name": "RiseVelocity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Size": { - "Category": "Data", - "MemberType": "Property", - "Name": "Size", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TimeScale": { - "Category": "Data", - "MemberType": "Property", - "Name": "TimeScale", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Smoke", - "Superclass": "Instance" - }, - "SmoothVoxelsUpgraderService": { - "Members": { - "Cancel": { - "MemberType": "Function", - "Name": "Cancel", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Start": { - "MemberType": "Function", - "Name": "Start", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Status": { - "MemberType": "Event", - "Name": "Status", - "Parameters": [ - { - "Name": "progressRatio", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "SmoothVoxelsUpgraderService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "Snap": { - "Members": {}, - "MemoryCategory": "PhysicsParts", - "Name": "Snap", - "Superclass": "JointInstance", - "Tags": [ - "Deprecated" - ] - }, - "SnippetService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "SnippetService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "SocialService": { - "Members": { - "CanSendGameInviteAsync": { - "MemberType": "Function", - "Name": "CanSendGameInviteAsync", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Default": "0", - "Name": "recipientId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "CanSendIrisInviteAsync": { - "MemberType": "Function", - "Name": "CanSendIrisInviteAsync", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GameInvitePromptClosed": { - "MemberType": "Event", - "Name": "GameInvitePromptClosed", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "recipientIds", - "Type": { - "Category": "Group", - "Name": "Array" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "HideSelfView": { - "MemberType": "Function", - "Name": "HideSelfView", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InvokeGameInvitePromptClosed": { - "MemberType": "Function", - "Name": "InvokeGameInvitePromptClosed", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "recipientIds", - "Type": { - "Category": "Group", - "Name": "Array" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InvokeIrisInvite": { - "MemberType": "Function", - "Name": "InvokeIrisInvite", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "tag", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "irisParticipantIds", - "Type": { - "Category": "Group", - "Name": "Array" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InvokeIrisInvitePromptClosed": { - "MemberType": "Function", - "Name": "InvokeIrisInvitePromptClosed", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IrisInvitePromptClosed": { - "MemberType": "Event", - "Name": "IrisInvitePromptClosed", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnIrisInviteInvoked": { - "MemberType": "Callback", - "Name": "OnIrisInviteInvoked", - "Parameters": [ - { - "Name": "tag", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "irisParticipantIds", - "Type": { - "Category": "Group", - "Name": "Array" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptGameInvite": { - "MemberType": "Function", - "Name": "PromptGameInvite", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Default": "nil", - "Name": "experienceInviteOptions", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptInviteRequested": { - "MemberType": "Event", - "Name": "PromptInviteRequested", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "experienceInviteOptions", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptIrisInvite": { - "MemberType": "Function", - "Name": "PromptIrisInvite", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "tag", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptIrisInviteRequested": { - "MemberType": "Event", - "Name": "PromptIrisInviteRequested", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "tag", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SelfViewHidden": { - "MemberType": "Event", - "Name": "SelfViewHidden", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SelfViewVisible": { - "MemberType": "Event", - "Name": "SelfViewVisible", - "Parameters": [ - { - "Name": "selfViewPosition", - "Type": { - "Category": "Enum", - "Name": "SelfViewPosition" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ShowSelfView": { - "MemberType": "Function", - "Name": "ShowSelfView", - "Parameters": [ - { - "Default": "LastPosition", - "Name": "selfViewPosition", - "Type": { - "Category": "Enum", - "Name": "SelfViewPosition" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "SocialService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "SolidModelContentProvider": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "SolidModelContentProvider", - "Superclass": "CacheableContentProvider", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "Sound": { - "Members": { - "ChannelCount": { - "Category": "Asset", - "MemberType": "Property", - "Name": "ChannelCount", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotBrowsable": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "DidLoop": { - "MemberType": "Event", - "Name": "DidLoop", - "Parameters": [ - { - "Name": "soundId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "numOfTimesLooped", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "EmitterSize": { - "Category": "Data", - "MemberType": "Property", - "Name": "EmitterSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Ended": { - "MemberType": "Event", - "Name": "Ended", - "Parameters": [ - { - "Name": "soundId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsLoaded": { - "Category": "Asset", - "MemberType": "Property", - "Name": "IsLoaded", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "IsPaused": { - "Category": "Playback", - "MemberType": "Property", - "Name": "IsPaused", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "IsPlaying": { - "Category": "Playback", - "MemberType": "Property", - "Name": "IsPlaying", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "IsSpatial": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "IsSpatial", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Loaded": { - "MemberType": "Event", - "Name": "Loaded", - "Parameters": [ - { - "Name": "soundId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "LoopRegion": { - "Category": "Regions", - "MemberType": "Property", - "Name": "LoopRegion", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "NumberRange" - } - }, - "Looped": { - "Category": "Playback", - "MemberType": "Property", - "Name": "Looped", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "MaxDistance": { - "Category": "Data", - "MemberType": "Property", - "Name": "MaxDistance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MinDistance": { - "Category": "Data", - "MemberType": "Property", - "Name": "MinDistance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Pause": { - "MemberType": "Function", - "Name": "Pause", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Paused": { - "MemberType": "Event", - "Name": "Paused", - "Parameters": [ - { - "Name": "soundId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Pitch": { - "Category": "Data", - "MemberType": "Property", - "Name": "Pitch", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Play": { - "MemberType": "Function", - "Name": "Play", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PlayOnRemove": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "PlayOnRemove", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "PlaybackLoudness": { - "Category": "Playback", - "MemberType": "Property", - "Name": "PlaybackLoudness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "PlaybackRegion": { - "Category": "Regions", - "MemberType": "Property", - "Name": "PlaybackRegion", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "NumberRange" - } - }, - "PlaybackRegionsEnabled": { - "Category": "Playback", - "MemberType": "Property", - "Name": "PlaybackRegionsEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "PlaybackSpeed": { - "Category": "Playback", - "MemberType": "Property", - "Name": "PlaybackSpeed", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Played": { - "MemberType": "Event", - "Name": "Played", - "Parameters": [ - { - "Name": "soundId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Playing": { - "Category": "Playback", - "MemberType": "Property", - "Name": "Playing", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Resume": { - "MemberType": "Function", - "Name": "Resume", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Resumed": { - "MemberType": "Event", - "Name": "Resumed", - "Parameters": [ - { - "Name": "soundId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RollOffGain": { - "Category": "Playback", - "MemberType": "Property", - "Name": "RollOffGain", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RollOffMaxDistance": { - "Category": "Emitter", - "MemberType": "Property", - "Name": "RollOffMaxDistance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RollOffMinDistance": { - "Category": "Emitter", - "MemberType": "Property", - "Name": "RollOffMinDistance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RollOffMode": { - "Category": "Emitter", - "MemberType": "Property", - "Name": "RollOffMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "RollOffMode" - } - }, - "SoundGroup": { - "Category": "Routing", - "MemberType": "Property", - "Name": "SoundGroup", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "SoundGroup" - } - }, - "SoundId": { - "Category": "Asset", - "MemberType": "Property", - "Name": "SoundId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "Stop": { - "MemberType": "Function", - "Name": "Stop", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Stopped": { - "MemberType": "Event", - "Name": "Stopped", - "Parameters": [ - { - "Name": "soundId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TimeLength": { - "Category": "Asset", - "MemberType": "Property", - "Name": "TimeLength", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "TimePosition": { - "Category": "Playback", - "MemberType": "Property", - "Name": "TimePosition", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "UsageContextPermission": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "UsageContextPermission", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "UsageContext" - } - }, - "Volume": { - "Category": "Playback", - "MemberType": "Property", - "Name": "Volume", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "isPlaying": { - "Category": "Data", - "MemberType": "Property", - "Name": "isPlaying", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "pause": { - "MemberType": "Function", - "Name": "pause", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "play": { - "MemberType": "Function", - "Name": "play", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "stop": { - "MemberType": "Function", - "Name": "stop", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Internal", - "Name": "Sound", - "Superclass": "Instance" - }, - "SoundEffect": { - "Members": { - "Enabled": { - "Category": "State", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Priority": { - "Category": "State", - "MemberType": "Property", - "Name": "Priority", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - } - }, - "MemoryCategory": "Instances", - "Name": "SoundEffect", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "SoundGroup": { - "Members": { - "Volume": { - "Category": "State", - "MemberType": "Property", - "Name": "Volume", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Internal", - "Name": "SoundGroup", - "Superclass": "Instance" - }, - "SoundService": { - "Members": { - "AmbientReverb": { - "Category": "Data", - "MemberType": "Property", - "Name": "AmbientReverb", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ReverbType" - } - }, - "BeginRecording": { - "MemberType": "Function", - "Name": "BeginRecording", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DeviceListChanged": { - "MemberType": "Event", - "Name": "DeviceListChanged", - "Parameters": [ - { - "Name": "newDevices", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DistanceFactor": { - "Category": "Data", - "MemberType": "Property", - "Name": "DistanceFactor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "DopplerScale": { - "Category": "Data", - "MemberType": "Property", - "Name": "DopplerScale", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "EndRecording": { - "MemberType": "Function", - "Name": "EndRecording", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetInputDevice": { - "MemberType": "Function", - "Name": "GetInputDevice", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetInputDevices": { - "MemberType": "Function", - "Name": "GetInputDevices", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetListener": { - "MemberType": "Function", - "Name": "GetListener", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetOutputDevice": { - "MemberType": "Function", - "Name": "GetOutputDevice", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetOutputDevices": { - "MemberType": "Function", - "Name": "GetOutputDevices", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetRecordingDevices": { - "MemberType": "Function", - "Name": "GetRecordingDevices", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetSoundMemoryData": { - "MemberType": "Function", - "Name": "GetSoundMemoryData", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PlayLocalSound": { - "MemberType": "Function", - "Name": "PlayLocalSound", - "Parameters": [ - { - "Name": "sound", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RespectFilteringEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "RespectFilteringEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "RolloffScale": { - "Category": "Data", - "MemberType": "Property", - "Name": "RolloffScale", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "SetInputDevice": { - "MemberType": "Function", - "Name": "SetInputDevice", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "guid", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetListener": { - "MemberType": "Function", - "Name": "SetListener", - "Parameters": [ - { - "Name": "listenerType", - "Type": { - "Category": "Enum", - "Name": "ListenerType" - } - }, - { - "Name": "listener", - "Type": { - "Category": "Group", - "Name": "Tuple" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetOutputDevice": { - "MemberType": "Function", - "Name": "SetOutputDevice", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "guid", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetRecordingDevice": { - "MemberType": "Function", - "Name": "SetRecordingDevice", - "Parameters": [ - { - "Name": "deviceIndex", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "VolumetricAudio": { - "Category": "Data", - "MemberType": "Property", - "Name": "VolumetricAudio", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "VolumetricAudio" - } - } - }, - "MemoryCategory": "Instances", - "Name": "SoundService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "Sparkles": { - "Members": { - "Color": { - "Category": "Data", - "MemberType": "Property", - "Name": "Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Enabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "FastForward": { - "MemberType": "Function", - "Name": "FastForward", - "Parameters": [ - { - "Name": "numFrames", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SparkleColor": { - "Category": "Data", - "MemberType": "Property", - "Name": "SparkleColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "TimeScale": { - "Category": "Data", - "MemberType": "Property", - "Name": "TimeScale", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Sparkles", - "Superclass": "Instance" - }, - "SpawnLocation": { - "Members": { - "AllowTeamChangeOnTouch": { - "Category": "Teams", - "MemberType": "Property", - "Name": "AllowTeamChangeOnTouch", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Duration": { - "Category": "Forcefield", - "MemberType": "Property", - "Name": "Duration", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "Enabled": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Neutral": { - "Category": "Teams", - "MemberType": "Property", - "Name": "Neutral", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "TeamColor": { - "Category": "Teams", - "MemberType": "Property", - "Name": "TeamColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BrickColor" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "SpawnLocation", - "Superclass": "Part" - }, - "SpawnerService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "SpawnerService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "SpecialMesh": { - "Members": { - "MeshType": { - "Category": "Data", - "MemberType": "Property", - "Name": "MeshType", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "MeshType" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "SpecialMesh", - "Superclass": "FileMesh" - }, - "SphereHandleAdornment": { - "Members": { - "Radius": { - "Category": "Data", - "MemberType": "Property", - "Name": "Radius", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "SphereHandleAdornment", - "Superclass": "HandleAdornment" - }, - "SpotLight": { - "Members": { - "Angle": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Angle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Face": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Face", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "NormalId" - } - }, - "Range": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Range", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "SpotLight", - "Superclass": "Light" - }, - "SpringConstraint": { - "Members": { - "Coils": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Coils", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "CurrentLength": { - "Category": "Derived", - "MemberType": "Property", - "Name": "CurrentLength", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Damping": { - "Category": "Spring", - "MemberType": "Property", - "Name": "Damping", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "FreeLength": { - "Category": "Spring", - "MemberType": "Property", - "Name": "FreeLength", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LimitsEnabled": { - "Category": "Spring", - "MemberType": "Property", - "Name": "LimitsEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "MaxForce": { - "Category": "Spring", - "MemberType": "Property", - "Name": "MaxForce", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MaxLength": { - "Category": "Limits", - "MemberType": "Property", - "Name": "MaxLength", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MinLength": { - "Category": "Limits", - "MemberType": "Property", - "Name": "MinLength", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Radius": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Radius", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Stiffness": { - "Category": "Spring", - "MemberType": "Property", - "Name": "Stiffness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Thickness": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Thickness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "SpringConstraint", - "Superclass": "Constraint" - }, - "StackFrame": { - "Members": { - "FrameId": { - "Category": "Data", - "MemberType": "Property", - "Name": "FrameId", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "FrameName": { - "Category": "Data", - "MemberType": "Property", - "Name": "FrameName", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "FrameType": { - "Category": "Data", - "MemberType": "Property", - "Name": "FrameType", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "DebuggerFrameType" - } - }, - "Globals": { - "Category": "Data", - "MemberType": "Property", - "Name": "Globals", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "DebuggerVariable" - } - }, - "Line": { - "Category": "Data", - "MemberType": "Property", - "Name": "Line", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "Locals": { - "Category": "Data", - "MemberType": "Property", - "Name": "Locals", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "DebuggerVariable" - } - }, - "Populated": { - "Category": "State", - "MemberType": "Property", - "Name": "Populated", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Script": { - "Category": "Data", - "MemberType": "Property", - "Name": "Script", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Upvalues": { - "Category": "Data", - "MemberType": "Property", - "Name": "Upvalues", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "DebuggerVariable" - } - } - }, - "MemoryCategory": "Instances", - "Name": "StackFrame", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "StandalonePluginScripts": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "StandalonePluginScripts", - "Superclass": "Instance" - }, - "StandardPages": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "StandardPages", - "Superclass": "Pages", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "StarterCharacterScripts": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "StarterCharacterScripts", - "Superclass": "StarterPlayerScripts", - "Tags": [ - "NotCreatable" - ] - }, - "StarterGear": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "StarterGear", - "Superclass": "Instance" - }, - "StarterGui": { - "Members": { - "CoreGuiChangedSignal": { - "MemberType": "Event", - "Name": "CoreGuiChangedSignal", - "Parameters": [ - { - "Name": "coreGuiType", - "Type": { - "Category": "Enum", - "Name": "CoreGuiType" - } - }, - { - "Name": "enabled", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetCore": { - "MemberType": "Function", - "Name": "GetCore", - "Parameters": [ - { - "Name": "parameterName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Variant" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetCoreGuiEnabled": { - "MemberType": "Function", - "Name": "GetCoreGuiEnabled", - "Parameters": [ - { - "Name": "coreGuiType", - "Type": { - "Category": "Enum", - "Name": "CoreGuiType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ProcessUserInput": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "ProcessUserInput", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "RegisterGetCore": { - "MemberType": "Function", - "Name": "RegisterGetCore", - "Parameters": [ - { - "Name": "parameterName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "getFunction", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RegisterSetCore": { - "MemberType": "Function", - "Name": "RegisterSetCore", - "Parameters": [ - { - "Name": "parameterName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "setFunction", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ResetPlayerGuiOnSpawn": { - "Category": "Data", - "MemberType": "Property", - "Name": "ResetPlayerGuiOnSpawn", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "RtlTextSupport": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "RtlTextSupport", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "RtlTextSupport" - } - }, - "ScreenOrientation": { - "Category": "Data", - "MemberType": "Property", - "Name": "ScreenOrientation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ScreenOrientation" - } - }, - "SetCore": { - "MemberType": "Function", - "Name": "SetCore", - "Parameters": [ - { - "Name": "parameterName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "value", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetCoreGuiEnabled": { - "MemberType": "Function", - "Name": "SetCoreGuiEnabled", - "Parameters": [ - { - "Name": "coreGuiType", - "Type": { - "Category": "Enum", - "Name": "CoreGuiType" - } - }, - { - "Name": "enabled", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ShowDevelopmentGui": { - "Category": "Data", - "MemberType": "Property", - "Name": "ShowDevelopmentGui", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "VirtualCursorMode": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "VirtualCursorMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "VirtualCursorMode" - } - } - }, - "MemoryCategory": "Instances", - "Name": "StarterGui", - "Superclass": "BasePlayerGui", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "StarterPack": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "StarterPack", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "StarterPlayer": { - "Members": { - "AllowCustomAnimations": { - "Category": "Character", - "MemberType": "Property", - "Name": "AllowCustomAnimations", - "Security": { - "Read": "None", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AutoJumpEnabled": { - "Category": "Mobile", - "MemberType": "Property", - "Name": "AutoJumpEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AvatarJointUpgrade": { - "Category": "Character", - "MemberType": "Property", - "Name": "AvatarJointUpgrade", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotBrowsable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "AvatarJointUpgrade" - } - }, - "CameraMaxZoomDistance": { - "Category": "Camera", - "MemberType": "Property", - "Name": "CameraMaxZoomDistance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "CameraMinZoomDistance": { - "Category": "Camera", - "MemberType": "Property", - "Name": "CameraMinZoomDistance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "CameraMode": { - "Category": "Camera", - "MemberType": "Property", - "Name": "CameraMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "CameraMode" - } - }, - "CharacterJumpHeight": { - "Category": "Character Jump Settings", - "MemberType": "Property", - "Name": "CharacterJumpHeight", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "CharacterJumpPower": { - "Category": "Character Jump Settings", - "MemberType": "Property", - "Name": "CharacterJumpPower", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "CharacterMaxSlopeAngle": { - "Category": "Character", - "MemberType": "Property", - "Name": "CharacterMaxSlopeAngle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "CharacterUseJumpPower": { - "Category": "Character Jump Settings", - "MemberType": "Property", - "Name": "CharacterUseJumpPower", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "CharacterWalkSpeed": { - "Category": "Character", - "MemberType": "Property", - "Name": "CharacterWalkSpeed", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ClearDefaults": { - "MemberType": "Function", - "Name": "ClearDefaults", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DeathStyle": { - "Category": "Character", - "MemberType": "Property", - "Name": "DeathStyle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotBrowsable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "DeathStyle" - } - }, - "DevCameraOcclusionMode": { - "Category": "Camera", - "MemberType": "Property", - "Name": "DevCameraOcclusionMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "DevCameraOcclusionMode" - } - }, - "DevComputerCameraMovementMode": { - "Category": "Camera", - "MemberType": "Property", - "Name": "DevComputerCameraMovementMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "DevComputerCameraMovementMode" - } - }, - "DevComputerMovementMode": { - "Category": "Controls", - "MemberType": "Property", - "Name": "DevComputerMovementMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "DevComputerMovementMode" - } - }, - "DevTouchCameraMovementMode": { - "Category": "Camera", - "MemberType": "Property", - "Name": "DevTouchCameraMovementMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "DevTouchCameraMovementMode" - } - }, - "DevTouchMovementMode": { - "Category": "Controls", - "MemberType": "Property", - "Name": "DevTouchMovementMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "DevTouchMovementMode" - } - }, - "EnableDynamicHeads": { - "Category": "Character", - "MemberType": "Property", - "Name": "EnableDynamicHeads", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "LoadDynamicHeads" - } - }, - "EnableMouseLockOption": { - "Category": "Controls", - "MemberType": "Property", - "Name": "EnableMouseLockOption", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "GameSettingsAssetIDFace": { - "Category": "Character", - "MemberType": "Property", - "Name": "GameSettingsAssetIDFace", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "GameSettingsAssetIDHead": { - "Category": "Character", - "MemberType": "Property", - "Name": "GameSettingsAssetIDHead", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "GameSettingsAssetIDLeftArm": { - "Category": "Character", - "MemberType": "Property", - "Name": "GameSettingsAssetIDLeftArm", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "GameSettingsAssetIDLeftLeg": { - "Category": "Character", - "MemberType": "Property", - "Name": "GameSettingsAssetIDLeftLeg", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "GameSettingsAssetIDPants": { - "Category": "Character", - "MemberType": "Property", - "Name": "GameSettingsAssetIDPants", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "GameSettingsAssetIDRightArm": { - "Category": "Character", - "MemberType": "Property", - "Name": "GameSettingsAssetIDRightArm", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "GameSettingsAssetIDRightLeg": { - "Category": "Character", - "MemberType": "Property", - "Name": "GameSettingsAssetIDRightLeg", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "GameSettingsAssetIDShirt": { - "Category": "Character", - "MemberType": "Property", - "Name": "GameSettingsAssetIDShirt", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "GameSettingsAssetIDTeeShirt": { - "Category": "Character", - "MemberType": "Property", - "Name": "GameSettingsAssetIDTeeShirt", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "GameSettingsAssetIDTorso": { - "Category": "Character", - "MemberType": "Property", - "Name": "GameSettingsAssetIDTorso", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - }, - "GameSettingsAvatar": { - "Category": "Character", - "MemberType": "Property", - "Name": "GameSettingsAvatar", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "GameAvatarType" - } - }, - "GameSettingsR15Collision": { - "Category": "Character", - "MemberType": "Property", - "Name": "GameSettingsR15Collision", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "R15CollisionType" - } - }, - "GameSettingsScaleRangeBodyType": { - "Category": "Character", - "MemberType": "Property", - "Name": "GameSettingsScaleRangeBodyType", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "NumberRange" - } - }, - "GameSettingsScaleRangeHead": { - "Category": "Character", - "MemberType": "Property", - "Name": "GameSettingsScaleRangeHead", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "NumberRange" - } - }, - "GameSettingsScaleRangeHeight": { - "Category": "Character", - "MemberType": "Property", - "Name": "GameSettingsScaleRangeHeight", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "NumberRange" - } - }, - "GameSettingsScaleRangeProportion": { - "Category": "Character", - "MemberType": "Property", - "Name": "GameSettingsScaleRangeProportion", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "NumberRange" - } - }, - "GameSettingsScaleRangeWidth": { - "Category": "Character", - "MemberType": "Property", - "Name": "GameSettingsScaleRangeWidth", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "NumberRange" - } - }, - "HealthDisplayDistance": { - "Category": "Data", - "MemberType": "Property", - "Name": "HealthDisplayDistance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "HumanoidStateMachineMode": { - "Category": "Controls", - "MemberType": "Property", - "Name": "HumanoidStateMachineMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotBrowsable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "HumanoidStateMachineMode" - } - }, - "LoadCharacterAppearance": { - "Category": "Character", - "MemberType": "Property", - "Name": "LoadCharacterAppearance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "LoadCharacterLayeredClothing ": { - "Category": "Character", - "MemberType": "Property", - "Name": "LoadCharacterLayeredClothing ", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "LoadCharacterLayeredClothing" - } - }, - "NameDisplayDistance": { - "Category": "Data", - "MemberType": "Property", - "Name": "NameDisplayDistance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "UserEmotesEnabled": { - "Category": "Character", - "MemberType": "Property", - "Name": "UserEmotesEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "StarterPlayer", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "StarterPlayerScripts": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "StarterPlayerScripts", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "Stats": { - "Members": { - "ContactsCount": { - "Category": "Data", - "MemberType": "Property", - "Name": "ContactsCount", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "DataReceiveKbps": { - "Category": "Data", - "MemberType": "Property", - "Name": "DataReceiveKbps", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "DataSendKbps": { - "Category": "Data", - "MemberType": "Property", - "Name": "DataSendKbps", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "GetBrowserTrackerId": { - "MemberType": "Function", - "Name": "GetBrowserTrackerId", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetMemoryUsageMbForTag": { - "MemberType": "Function", - "Name": "GetMemoryUsageMbForTag", - "Parameters": [ - { - "Name": "tag", - "Type": { - "Category": "Enum", - "Name": "DeveloperMemoryTag" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "float" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetPaginatedMemoryByTexture": { - "MemberType": "Function", - "Name": "GetPaginatedMemoryByTexture", - "Parameters": [ - { - "Name": "queryType", - "Type": { - "Category": "Enum", - "Name": "TextureQueryType" - } - }, - { - "Name": "pageIndex", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "pageSize", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetTotalMemoryUsageMb": { - "MemberType": "Function", - "Name": "GetTotalMemoryUsageMb", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "float" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "HeartbeatTimeMs": { - "Category": "Data", - "MemberType": "Property", - "Name": "HeartbeatTimeMs", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "InstanceCount": { - "Category": "Data", - "MemberType": "Property", - "Name": "InstanceCount", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "MovingPrimitivesCount": { - "Category": "Data", - "MemberType": "Property", - "Name": "MovingPrimitivesCount", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "PhysicsReceiveKbps": { - "Category": "Data", - "MemberType": "Property", - "Name": "PhysicsReceiveKbps", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "PhysicsSendKbps": { - "Category": "Data", - "MemberType": "Property", - "Name": "PhysicsSendKbps", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "PhysicsStepTimeMs": { - "Category": "Data", - "MemberType": "Property", - "Name": "PhysicsStepTimeMs", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "PrimitivesCount": { - "Category": "Data", - "MemberType": "Property", - "Name": "PrimitivesCount", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Stats", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "StatsItem": { - "Members": { - "DisplayName": { - "Category": "Data", - "MemberType": "Property", - "Name": "DisplayName", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "GetValue": { - "MemberType": "Function", - "Name": "GetValue", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "double" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetValueString": { - "MemberType": "Function", - "Name": "GetValueString", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "StatsItem", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "Status": { - "Members": {}, - "MemoryCategory": "PhysicsParts", - "Name": "Status", - "Superclass": "Model", - "Tags": [ - "NotCreatable", - "Deprecated" - ] - }, - "StopWatchReporter": { - "Members": { - "FinishTask": { - "MemberType": "Function", - "Name": "FinishTask", - "Parameters": [ - { - "Name": "taskId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SendReport": { - "MemberType": "Function", - "Name": "SendReport", - "Parameters": [ - { - "Name": "reportName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StartTask": { - "MemberType": "Function", - "Name": "StartTask", - "Parameters": [ - { - "Name": "reportName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "taskName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "StopWatchReporter", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "StringValue": { - "Members": { - "Changed": { - "MemberType": "Event", - "Name": "Changed", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Value": { - "Category": "Data", - "MemberType": "Property", - "Name": "Value", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "changed": { - "MemberType": "Event", - "Name": "changed", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "StringValue", - "Superclass": "ValueBase" - }, - "Studio": { - "Members": { - "\"TODO\" Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "\"TODO\" Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "\"function\" Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "\"function\" Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "\"local\" Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "\"local\" Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "\"nil\" Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "\"nil\" Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "\"self\" Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "\"self\" Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Active Color": { - "Category": "Tools", - "MemberType": "Property", - "Name": "Active Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Active Hover Over Color": { - "Category": "Tools", - "MemberType": "Property", - "Name": "Active Hover Over Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Always Save Script Changes": { - "Category": "General", - "MemberType": "Property", - "Name": "Always Save Script Changes", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Animate Hover Over": { - "Category": "Tools", - "MemberType": "Property", - "Name": "Animate Hover Over", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Auto Clean Empty Line": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Auto Clean Empty Line", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Auto Closing Brackets": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Auto Closing Brackets", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Auto Closing Quotes": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Auto Closing Quotes", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Auto Delete Closing Brackets and Quotes": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Auto Delete Closing Brackets and Quotes", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Auto Indent Rule": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Auto Indent Rule", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "AutoIndentRule" - } - }, - "Auto-Recovery Enabled": { - "Category": "Auto-Recovery", - "MemberType": "Property", - "Name": "Auto-Recovery Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Auto-Recovery Interval (Minutes)": { - "Category": "Auto-Recovery", - "MemberType": "Property", - "Name": "Auto-Recovery Interval (Minutes)", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "Auto-Recovery Path": { - "Category": "Auto-Recovery", - "MemberType": "Property", - "Name": "Auto-Recovery Path", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "QDir" - } - }, - "Automatically commit locked scripts when you save or publish to Roblox": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Automatically commit locked scripts when you save or publish to Roblox", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Automatically trigger AI Code Completion": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Automatically trigger AI Code Completion", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Background Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Background Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Basic Objects Display Mode": { - "Category": "General", - "MemberType": "Property", - "Name": "Basic Objects Display Mode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ListDisplayMode" - } - }, - "Bool Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Bool Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Bracket Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Bracket Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Built-in Function Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Built-in Function Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Camera Mouse Wheel Speed": { - "Category": "Camera", - "MemberType": "Property", - "Name": "Camera Mouse Wheel Speed", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Camera Pan Speed": { - "Category": "Camera", - "MemberType": "Property", - "Name": "Camera Pan Speed", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Camera Shift Speed": { - "Category": "Camera", - "MemberType": "Property", - "Name": "Camera Shift Speed", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Camera Speed": { - "Category": "Camera", - "MemberType": "Property", - "Name": "Camera Speed", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Camera Zoom to Mouse Position": { - "Category": "Camera", - "MemberType": "Property", - "Name": "Camera Zoom to Mouse Position", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Clear Output On Start": { - "Category": "Output", - "MemberType": "Property", - "Name": "Clear Output On Start", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "CommandBarLocalState": { - "Category": "Lua Debugger", - "MemberType": "Property", - "Name": "CommandBarLocalState", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Comment Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Comment Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Current Line Highlight Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Current Line Highlight Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Debugger Current Line Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Debugger Current Line Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Debugger Error Line Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Debugger Error Line Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "DefaultScriptFileDir": { - "Category": "Directories", - "MemberType": "Property", - "Name": "DefaultScriptFileDir", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "QDir" - } - }, - "DeprecatedObjectsShown": { - "Category": "Browsing", - "MemberType": "Property", - "Name": "DeprecatedObjectsShown", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "DisplayLanguage": { - "Category": "General", - "MemberType": "Property", - "Name": "DisplayLanguage", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Doc View Code Background Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Doc View Code Background Color", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Enable Autocomplete": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Enable Autocomplete", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Enable Autocomplete Doc View": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Enable Autocomplete Doc View", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Enable CoreScript Debugger": { - "Category": "Advanced", - "MemberType": "Property", - "Name": "Enable CoreScript Debugger", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Enable Http Sandboxing": { - "Category": "Advanced", - "MemberType": "Property", - "Name": "Enable Http Sandboxing", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Enable Internal Beta Features": { - "Category": "Advanced", - "MemberType": "Property", - "Name": "Enable Internal Beta Features", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Enable Internal Features": { - "Category": "Advanced", - "MemberType": "Property", - "Name": "Enable Internal Features", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Enable Script Analysis": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Enable Script Analysis", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Enable Scrollbar Markers": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Enable Scrollbar Markers", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Enable Signature Help": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Enable Signature Help", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Enable Signature Help Doc View": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Enable Signature Help Doc View", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Enable Temporary Tabs": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Enable Temporary Tabs", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Enable Temporary Tabs In Explorer": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Enable Temporary Tabs In Explorer", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Enable Type Hover": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Enable Type Hover", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "EnableIndentationRulers": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "EnableIndentationRulers", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "EnableOnTypeAutocomplete": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "EnableOnTypeAutocomplete", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Error Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Error Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Find Selection Background Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Find Selection Background Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Font": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Font", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "QFont" - } - }, - "Format On Paste": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Format On Paste", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Format On Type": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Format On Type", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Function Name Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Function Name Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "GetAvailableThemes": { - "MemberType": "Function", - "Name": "GetAvailableThemes", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Highlight Current Line": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Highlight Current Line", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Highlight Occurances": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Highlight Occurances", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "HintColor": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "HintColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Hover Animate Speed": { - "Category": "Tools", - "MemberType": "Property", - "Name": "Hover Animate Speed", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "HoverAnimateSpeed" - } - }, - "Hover Box Thickness": { - "Category": "Tools", - "MemberType": "Property", - "Name": "Hover Box Thickness", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Hover Line Thickness": { - "Category": "Tools", - "MemberType": "Property", - "Name": "Hover Line Thickness", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "Hover Over Color": { - "Category": "Tools", - "MemberType": "Property", - "Name": "Hover Over Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "IconOverrideDir": { - "Category": "Directories", - "MemberType": "Property", - "Name": "IconOverrideDir", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "QDir" - } - }, - "Indent Using Spaces": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Indent Using Spaces", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "IndentationRulerColor": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "IndentationRulerColor", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "InformationColor": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "InformationColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Keyword Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Keyword Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Line Thickness": { - "Category": "Primary Part", - "MemberType": "Property", - "Name": "Line Thickness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LocalAssetsFolder": { - "Category": "Directories", - "MemberType": "Property", - "Name": "LocalAssetsFolder", - "Security": { - "Read": "None", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "QDir" - } - }, - "LuaDebuggerEnabled": { - "Category": "Lua Debugger", - "MemberType": "Property", - "Name": "LuaDebuggerEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "LuaDebuggerEnabledAtStartup": { - "Category": "Lua Debugger", - "MemberType": "Property", - "Name": "LuaDebuggerEnabledAtStartup", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Luau Keyword Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Luau Keyword Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Main Volume": { - "Category": "Audio", - "MemberType": "Property", - "Name": "Main Volume", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Matching Word Background Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Matching Word Background Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Maximum Output Lines": { - "Category": "Output", - "MemberType": "Property", - "Name": "Maximum Output Lines", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "Menu Item Background Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Menu Item Background Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Method Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Method Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Number Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Number Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Only Play Audio from Window in Focus": { - "Category": "Audio", - "MemberType": "Property", - "Name": "Only Play Audio from Window in Focus", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Operator Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Operator Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Output Font": { - "Category": "Output", - "MemberType": "Property", - "Name": "Output Font", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "QFont" - } - }, - "Output Layout Mode": { - "Category": "Output", - "MemberType": "Property", - "Name": "Output Layout Mode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "OutputLayoutMode" - } - }, - "PermissionLevelShown": { - "Category": "Browsing", - "MemberType": "Property", - "Name": "PermissionLevelShown", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "PermissionLevelShown" - } - }, - "Physical Draggers Select Scope By Default": { - "Category": "Tools", - "MemberType": "Property", - "Name": "Physical Draggers Select Scope By Default", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Pivot Snap To Geometry Color": { - "Category": "Tools", - "MemberType": "Property", - "Name": "Pivot Snap To Geometry Color", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "PluginDebuggingEnabled": { - "Category": "Lua Debugger", - "MemberType": "Property", - "Name": "PluginDebuggingEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "PluginsDir": { - "Category": "Directories", - "MemberType": "Property", - "Name": "PluginsDir", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "QDir" - } - }, - "Primary Text Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Primary Text Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Property Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Property Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "ReloadBuiltinPluginsOnChange": { - "Category": "Directories", - "MemberType": "Property", - "Name": "ReloadBuiltinPluginsOnChange", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ReloadLocalPluginsOnChange": { - "Category": "Directories", - "MemberType": "Property", - "Name": "ReloadLocalPluginsOnChange", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Render Throttle Percentage": { - "Category": "General", - "MemberType": "Property", - "Name": "Render Throttle Percentage", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "Respect Studio shortcuts when game has focus": { - "Category": "Advanced", - "MemberType": "Property", - "Name": "Respect Studio shortcuts when game has focus", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Ruler Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Ruler Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Rulers": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Rulers", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "RuntimeUndoBehavior": { - "Category": "Undo", - "MemberType": "Property", - "Name": "RuntimeUndoBehavior", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "RuntimeUndoBehavior" - } - }, - "Script Editor Color Preset": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Script Editor Color Preset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "StudioScriptEditorColorPresets" - } - }, - "Script Editor Scrollbar Background Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Script Editor Scrollbar Background Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Script Editor Scrollbar Handle Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Script Editor Scrollbar Handle Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "ScriptEditorMenuBorderColor": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "ScriptEditorMenuBorderColor", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "ScriptEditorShouldShowPluginMethods": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "ScriptEditorShouldShowPluginMethods", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ScriptTimeoutLength": { - "Category": "Lua Debugger", - "MemberType": "Property", - "Name": "ScriptTimeoutLength", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "Scroll Past Last Line": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Scroll Past Last Line", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Secondary Text Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Secondary Text Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Select Color": { - "Category": "Tools", - "MemberType": "Property", - "Name": "Select Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Select/Hover Color": { - "Category": "Primary Part", - "MemberType": "Property", - "Name": "Select/Hover Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Selected Menu Item Background Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Selected Menu Item Background Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Selected Text Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Selected Text Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Selection Background Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Selection Background Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Selection Box Thickness": { - "Category": "Tools", - "MemberType": "Property", - "Name": "Selection Box Thickness", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Selection Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Selection Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Selection Line Thickness": { - "Category": "Tools", - "MemberType": "Property", - "Name": "Selection Line Thickness", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "Server Audio Behavior": { - "Category": "Audio", - "MemberType": "Property", - "Name": "Server Audio Behavior", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ServerAudioBehavior" - } - }, - "Set Pivot of Imported Parts": { - "Category": "Advanced", - "MemberType": "Property", - "Name": "Set Pivot of Imported Parts", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Show Core GUI in Explorer while Playing": { - "Category": "Explorer", - "MemberType": "Property", - "Name": "Show Core GUI in Explorer while Playing", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Show Diagnostics Bar": { - "Category": "Advanced", - "MemberType": "Property", - "Name": "Show Diagnostics Bar", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Show FileSyncService": { - "Category": "Explorer", - "MemberType": "Property", - "Name": "Show FileSyncService", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Show Hidden Objects in Explorer": { - "Category": "Explorer", - "MemberType": "Property", - "Name": "Show Hidden Objects in Explorer", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Show Hover Over": { - "Category": "Tools", - "MemberType": "Property", - "Name": "Show Hover Over", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Show Light Guides": { - "Category": "Visualization", - "MemberType": "Property", - "Name": "Show Light Guides", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Show Navigation Labels": { - "Category": "Visualization", - "MemberType": "Property", - "Name": "Show Navigation Labels", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Show Navigation Mesh": { - "Category": "Visualization", - "MemberType": "Property", - "Name": "Show Navigation Mesh", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Show Pathfinding Links": { - "Category": "Visualization", - "MemberType": "Property", - "Name": "Show Pathfinding Links", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Show Plugin GUI Service in Explorer": { - "Category": "Explorer", - "MemberType": "Property", - "Name": "Show Plugin GUI Service in Explorer", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Show Singly Selected Attachment Parent Frame": { - "Category": "Visualization", - "MemberType": "Property", - "Name": "Show Singly Selected Attachment Parent Frame", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Show Whitespace": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Show Whitespace", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Show plus button on hover in Explorer": { - "Category": "Explorer", - "MemberType": "Property", - "Name": "Show plus button on hover in Explorer", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ShowCorePackagesInExplorer": { - "Category": "Explorer", - "MemberType": "Property", - "Name": "ShowCorePackagesInExplorer", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Skip Closing Brackets and Quotes": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Skip Closing Brackets and Quotes", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "String Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "String Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Tab Width": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Tab Width", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "Text Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Text Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Text Wrapping": { - "Category": "Script Editor", - "MemberType": "Property", - "Name": "Text Wrapping", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Theme": { - "Category": "General", - "MemberType": "Property", - "Name": "Theme", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - }, - "ThemeChanged": { - "MemberType": "Event", - "Name": "ThemeChanged", - "Parameters": {}, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UI Theme": { - "Category": "General", - "MemberType": "Property", - "Name": "UI Theme", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "UITheme" - } - }, - "Use Bounding Box Move Handles": { - "Category": "Tools", - "MemberType": "Property", - "Name": "Use Bounding Box Move Handles", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Warning Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Warning Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Whitespace Color": { - "Category": "Script Editor Colors", - "MemberType": "Property", - "Name": "Whitespace Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Studio", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "StudioAssetService": { - "Members": { - "ConvertToPackageUpload": { - "MemberType": "Function", - "Name": "ConvertToPackageUpload", - "Parameters": [ - { - "Name": "uploadUrl", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "cloneInstances", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - }, - { - "Name": "originalInstances", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnConvertToPackageResult": { - "MemberType": "Event", - "Name": "OnConvertToPackageResult", - "Parameters": [ - { - "Name": "isSuccessful", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "errorMessage", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnPublishPackageResult": { - "MemberType": "Event", - "Name": "OnPublishPackageResult", - "Parameters": [ - { - "Name": "result", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - }, - { - "Name": "errorMessage", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnSaveToRoblox": { - "MemberType": "Event", - "Name": "OnSaveToRoblox", - "Parameters": [ - { - "Name": "instances", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - }, - { - "Name": "assetType", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PublishPackage": { - "MemberType": "Function", - "Name": "PublishPackage", - "Parameters": [ - { - "Name": "instance", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "publishInfo", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SerializeInstances": { - "MemberType": "Function", - "Name": "SerializeInstances", - "Parameters": [ - { - "Name": "instances", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ShowSaveToRoblox": { - "MemberType": "Function", - "Name": "ShowSaveToRoblox", - "Parameters": [ - { - "Name": "instances", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - }, - { - "Name": "assetType", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "StudioAssetService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "StudioCallout": { - "Members": { - "AnchorPoint": { - "Category": "Data", - "MemberType": "Property", - "Name": "AnchorPoint", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "IsArrowVisible": { - "Category": "Data", - "MemberType": "Property", - "Name": "IsArrowVisible", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "IsNextVisible": { - "Category": "Data", - "MemberType": "Property", - "Name": "IsNextVisible", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "RowName": { - "Category": "Data", - "MemberType": "Property", - "Name": "RowName", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "SetOnNextClicked": { - "MemberType": "Function", - "Name": "SetOnNextClicked", - "Parameters": [ - { - "Name": "onClick", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Text": { - "Category": "Data", - "MemberType": "Property", - "Name": "Text", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Title": { - "Category": "Data", - "MemberType": "Property", - "Name": "Title", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "StudioCallout", - "Superclass": "Instance" - }, - "StudioData": { - "Members": { - "EnableScriptCollabByDefaultOnLoad": { - "Category": "Data", - "MemberType": "Property", - "Name": "EnableScriptCollabByDefaultOnLoad", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "StudioData", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "StudioDeviceEmulatorService": { - "Members": { - "CurrentDeviceIdChanged": { - "MemberType": "Event", - "Name": "CurrentDeviceIdChanged", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "EmulatePCDeviceWithResolution": { - "MemberType": "Function", - "Name": "EmulatePCDeviceWithResolution", - "Parameters": [ - { - "Name": "deviceId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "resolution", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetCurrentDeviceId": { - "MemberType": "Function", - "Name": "GetCurrentDeviceId", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetCurrentOrientation": { - "MemberType": "Function", - "Name": "GetCurrentOrientation", - "Parameters": {}, - "ReturnType": { - "Category": "Enum", - "Name": "ScreenOrientation" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetMaxNumTouches": { - "MemberType": "Function", - "Name": "GetMaxNumTouches", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetTouchInBounds": { - "MemberType": "Function", - "Name": "GetTouchInBounds", - "Parameters": [ - { - "Name": "index", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetTouchPosition": { - "MemberType": "Function", - "Name": "GetTouchPosition", - "Parameters": [ - { - "Name": "index", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Vector2" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "HasDeviceWithId": { - "MemberType": "Function", - "Name": "HasDeviceWithId", - "Parameters": [ - { - "Name": "deviceId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "HasMultiTouchStarted": { - "Category": "State", - "MemberType": "Property", - "Name": "HasMultiTouchStarted", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "IsMultiTouchEmulationOn": { - "Category": "State", - "MemberType": "Property", - "Name": "IsMultiTouchEmulationOn", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "IsMultiTouchEnabled": { - "Category": "State", - "MemberType": "Property", - "Name": "IsMultiTouchEnabled", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "OrientationChanged": { - "MemberType": "Event", - "Name": "OrientationChanged", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PivotPosition": { - "Category": "State", - "MemberType": "Property", - "Name": "PivotPosition", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "SetCurrentDeviceId": { - "MemberType": "Function", - "Name": "SetCurrentDeviceId", - "Parameters": [ - { - "Name": "deviceId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "SetCurrentOrientation": { - "MemberType": "Function", - "Name": "SetCurrentOrientation", - "Parameters": [ - { - "Name": "orientation", - "Type": { - "Category": "Enum", - "Name": "ScreenOrientation" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "TouchInBoundsChanged": { - "MemberType": "Event", - "Name": "TouchInBoundsChanged", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TouchPositionsChanged": { - "MemberType": "Event", - "Name": "TouchPositionsChanged", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "StudioDeviceEmulatorService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "StudioObjectBase": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "StudioObjectBase", - "Superclass": "Instance" - }, - "StudioPublishService": { - "Members": { - "ClearUploadNames": { - "MemberType": "Function", - "Name": "ClearUploadNames", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GameNameUpdated": { - "MemberType": "Event", - "Name": "GameNameUpdated", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GamePublishCancelled": { - "MemberType": "Event", - "Name": "GamePublishCancelled", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GamePublishFinished": { - "MemberType": "Event", - "Name": "GamePublishFinished", - "Parameters": [ - { - "Name": "success", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "gameId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "message", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnSaveOrPublishPlaceToRoblox": { - "MemberType": "Event", - "Name": "OnSaveOrPublishPlaceToRoblox", - "Parameters": [ - { - "Name": "showGameSelect", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "isPublish", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "closeMode", - "Type": { - "Category": "Enum", - "Name": "StudioCloseMode" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PublishAs": { - "MemberType": "Function", - "Name": "PublishAs", - "Parameters": [ - { - "Name": "universeId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "placeId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "groupId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "isPublish", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "publishParameters", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PublishThenTurnOnTeamCreate": { - "MemberType": "Function", - "Name": "PublishThenTurnOnTeamCreate", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RefreshDocumentDisplayName": { - "MemberType": "Function", - "Name": "RefreshDocumentDisplayName", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetTeamCreateOnPublishInfo": { - "MemberType": "Function", - "Name": "SetTeamCreateOnPublishInfo", - "Parameters": [ - { - "Name": "shouldTurnOnTcOnPublish", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "newPlaceName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetUniverseDisplayName": { - "MemberType": "Function", - "Name": "SetUniverseDisplayName", - "Parameters": [ - { - "Name": "newName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetUploadNames": { - "MemberType": "Function", - "Name": "SetUploadNames", - "Parameters": [ - { - "Name": "placeName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "universeName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ShowSaveOrPublishPlaceToRoblox": { - "MemberType": "Function", - "Name": "ShowSaveOrPublishPlaceToRoblox", - "Parameters": [ - { - "Name": "showGameSelect", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "isPublish", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "closeMode", - "Type": { - "Category": "Enum", - "Name": "StudioCloseMode" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "StudioPublishService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "StudioScriptDebugEventListener": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "StudioScriptDebugEventListener", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "StudioSdkService": { - "Members": { - "GetSdk": { - "MemberType": "Function", - "Name": "GetSdk", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetSdk": { - "MemberType": "Function", - "Name": "SetSdk", - "Parameters": [ - { - "Name": "sdk", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "StudioSdkService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "StudioService": { - "Members": { - "ActiveScript": { - "Category": "State", - "MemberType": "Property", - "Name": "ActiveScript", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - }, - "AlignDraggedObjects": { - "Category": "Data", - "MemberType": "Property", - "Name": "AlignDraggedObjects", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AnimationIdSelected": { - "MemberType": "Function", - "Name": "AnimationIdSelected", - "Parameters": [ - { - "Name": "id", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CopyToClipboard": { - "MemberType": "Function", - "Name": "CopyToClipboard", - "Parameters": [ - { - "Name": "stringToCopy", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DraggerSolveConstraints": { - "Category": "Data", - "MemberType": "Property", - "Name": "DraggerSolveConstraints", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "DrawConstraintsOnTop": { - "Category": "Data", - "MemberType": "Property", - "Name": "DrawConstraintsOnTop", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "GetBadgeConfigureUrl": { - "MemberType": "Function", - "Name": "GetBadgeConfigureUrl", - "Parameters": [ - { - "Name": "badgeId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetBadgeUploadUrl": { - "MemberType": "Function", - "Name": "GetBadgeUploadUrl", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetClassIcon": { - "MemberType": "Function", - "Name": "GetClassIcon", - "Parameters": [ - { - "Name": "className", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetPlaceIsPersistedToCloud": { - "MemberType": "Function", - "Name": "GetPlaceIsPersistedToCloud", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetResourceByCategory": { - "MemberType": "Function", - "Name": "GetResourceByCategory", - "Parameters": [ - { - "Name": "category", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetStartupAssetId": { - "MemberType": "Function", - "Name": "GetStartupAssetId", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetStartupPluginId": { - "MemberType": "Function", - "Name": "GetStartupPluginId", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetTermsOfUseUrl": { - "MemberType": "Function", - "Name": "GetTermsOfUseUrl", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetUserId": { - "MemberType": "Function", - "Name": "GetUserId", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "int64" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GizmoRaycast": { - "MemberType": "Function", - "Name": "GizmoRaycast", - "Parameters": [ - { - "Name": "origin", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "direction", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Default": "RaycastParams{IgnoreWater=false, BruteForceAllSlow=false, RespectCanCollide=false, CollisionGroup=Default, FilterDescendantsInstances={}}", - "Name": "raycastParams", - "Type": { - "Category": "DataType", - "Name": "RaycastParams" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "RaycastResult" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GridSize": { - "Category": "Data", - "MemberType": "Property", - "Name": "GridSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "HasInternalPermission": { - "MemberType": "Function", - "Name": "HasInternalPermission", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "HoverInstance": { - "Category": "Data", - "MemberType": "Property", - "Name": "HoverInstance", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - }, - "InstalledPluginData": { - "Category": "Data", - "MemberType": "Property", - "Name": "InstalledPluginData", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "IsPluginInstalled": { - "MemberType": "Function", - "Name": "IsPluginInstalled", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsPluginUpToDate": { - "MemberType": "Function", - "Name": "IsPluginUpToDate", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "currentAssetVersion", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnImportFromRoblox": { - "MemberType": "Event", - "Name": "OnImportFromRoblox", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnOpenGameSettings": { - "MemberType": "Event", - "Name": "OnOpenGameSettings", - "Parameters": [ - { - "Name": "pageIdentifier", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnOpenManagePackagePlugin": { - "MemberType": "Event", - "Name": "OnOpenManagePackagePlugin", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnPluginInstalledFromToolbox": { - "MemberType": "Event", - "Name": "OnPluginInstalledFromToolbox", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnPluginInstalledFromWeb": { - "MemberType": "Event", - "Name": "OnPluginInstalledFromWeb", - "Parameters": [ - { - "Name": "pluginId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnPublishAsPlugin": { - "MemberType": "Event", - "Name": "OnPublishAsPlugin", - "Parameters": [ - { - "Name": "instances", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnSaveToRoblox": { - "MemberType": "Event", - "Name": "OnSaveToRoblox", - "Parameters": [ - { - "Name": "instances", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OpenInBrowser_DONOTUSE": { - "MemberType": "Function", - "Name": "OpenInBrowser_DONOTUSE", - "Parameters": [ - { - "Name": "url", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PivotSnapToGeometry": { - "Category": "Data", - "MemberType": "Property", - "Name": "PivotSnapToGeometry", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "PromptImportFile": { - "MemberType": "Function", - "Name": "PromptImportFile", - "Parameters": [ - { - "Default": "{}", - "Name": "fileTypeFilter", - "Type": { - "Category": "Group", - "Name": "Array" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "PluginSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "PromptImportFiles": { - "MemberType": "Function", - "Name": "PromptImportFiles", - "Parameters": [ - { - "Default": "{}", - "Name": "fileTypeFilter", - "Type": { - "Category": "Group", - "Name": "Array" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "PluginSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "PromptTransformPluginCheckEnable": { - "MemberType": "Event", - "Name": "PromptTransformPluginCheckEnable", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RequestClose": { - "MemberType": "Function", - "Name": "RequestClose", - "Parameters": [ - { - "Name": "closeMode", - "Type": { - "Category": "Enum", - "Name": "StudioCloseMode" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RotateIncrement": { - "Category": "Data", - "MemberType": "Property", - "Name": "RotateIncrement", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "SaveLocallyAsComplete": { - "MemberType": "Event", - "Name": "SaveLocallyAsComplete", - "Parameters": [ - { - "Name": "success", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetPluginEnabled": { - "MemberType": "Function", - "Name": "SetPluginEnabled", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "state", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ShowConstraintDetails": { - "Category": "Data", - "MemberType": "Property", - "Name": "ShowConstraintDetails", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ShowPlaceVersionHistoryDialog": { - "MemberType": "Function", - "Name": "ShowPlaceVersionHistoryDialog", - "Parameters": [ - { - "Name": "placeId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ShowPublishToRoblox": { - "MemberType": "Function", - "Name": "ShowPublishToRoblox", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StudioLocaleId": { - "Category": "State", - "MemberType": "Property", - "Name": "StudioLocaleId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "TryInstallPlugin": { - "MemberType": "Function", - "Name": "TryInstallPlugin", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "assetVersionId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "UninstallPlugin": { - "MemberType": "Function", - "Name": "UninstallPlugin", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UpdatePluginManagement": { - "MemberType": "Function", - "Name": "UpdatePluginManagement", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UseLocalSpace": { - "Category": "Data", - "MemberType": "Property", - "Name": "UseLocalSpace", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "StudioService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "StudioTheme": { - "Members": { - "GetColor": { - "MemberType": "Function", - "Name": "GetColor", - "Parameters": [ - { - "Name": "styleguideitem", - "Type": { - "Category": "Enum", - "Name": "StudioStyleGuideColor" - } - }, - { - "Default": "Default", - "Name": "modifier", - "Type": { - "Category": "Enum", - "Name": "StudioStyleGuideModifier" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Color3" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "StudioTheme", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "StudioWidget": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "StudioWidget", - "Superclass": "StudioObjectBase" - }, - "StyleBase": { - "Members": { - "GetStyleRules": { - "MemberType": "Function", - "Name": "GetStyleRules", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InsertStyleRule": { - "MemberType": "Function", - "Name": "InsertStyleRule", - "Parameters": [ - { - "Name": "rule", - "Type": { - "Category": "Class", - "Name": "StyleRule" - } - }, - { - "Name": "index", - "Type": { - "Category": "Primitive", - "Name": "int?" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetStyleRules": { - "MemberType": "Function", - "Name": "SetStyleRules", - "Parameters": [ - { - "Name": "rules", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StyleRulesChanged": { - "MemberType": "Event", - "Name": "StyleRulesChanged", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Gui", - "Name": "StyleBase", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "StyleDerive": { - "Members": { - "StyleSheet": { - "Category": "Data", - "MemberType": "Property", - "Name": "StyleSheet", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "StyleSheet" - } - } - }, - "MemoryCategory": "Gui", - "Name": "StyleDerive", - "Superclass": "Instance" - }, - "StyleLink": { - "Members": { - "StyleSheet": { - "Category": "Data", - "MemberType": "Property", - "Name": "StyleSheet", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "StyleSheet" - } - } - }, - "MemoryCategory": "Gui", - "Name": "StyleLink", - "Superclass": "Instance" - }, - "StyleRule": { - "Members": { - "GetProperties": { - "MemberType": "Function", - "Name": "GetProperties", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetPropertiesResolved": { - "MemberType": "Function", - "Name": "GetPropertiesResolved", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetProperty": { - "MemberType": "Function", - "Name": "GetProperty", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Variant" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetPropertyResolved": { - "MemberType": "Function", - "Name": "GetPropertyResolved", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Variant" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Selector": { - "Category": "Data", - "MemberType": "Property", - "Name": "Selector", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "SelectorError": { - "Category": "Data", - "MemberType": "Property", - "Name": "SelectorError", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "SetProperties": { - "MemberType": "Function", - "Name": "SetProperties", - "Parameters": [ - { - "Name": "table", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetProperty": { - "MemberType": "Function", - "Name": "SetProperty", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "value", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Gui", - "Name": "StyleRule", - "Superclass": "StyleBase" - }, - "StyleSheet": { - "Members": { - "GetDerives": { - "MemberType": "Function", - "Name": "GetDerives", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetDerives": { - "MemberType": "Function", - "Name": "SetDerives", - "Parameters": [ - { - "Name": "derives", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Gui", - "Name": "StyleSheet", - "Superclass": "StyleBase" - }, - "StylingService": { - "Members": { - "GetAppliedStyles": { - "MemberType": "Function", - "Name": "GetAppliedStyles", - "Parameters": [ - { - "Name": "instance", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetStyleInfo": { - "MemberType": "Function", - "Name": "GetStyleInfo", - "Parameters": [ - { - "Name": "style", - "Type": { - "Category": "Class", - "Name": "StyleRule" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetStyleSheetDerivesChain": { - "MemberType": "Function", - "Name": "GetStyleSheetDerivesChain", - "Parameters": [ - { - "Name": "styleSheet", - "Type": { - "Category": "Class", - "Name": "StyleSheet" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetStyleSheetInfo": { - "MemberType": "Function", - "Name": "GetStyleSheetInfo", - "Parameters": [ - { - "Name": "styleSheet", - "Type": { - "Category": "Class", - "Name": "StyleSheet" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Gui", - "Name": "StylingService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "SunRaysEffect": { - "Members": { - "Intensity": { - "Category": "State", - "MemberType": "Property", - "Name": "Intensity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Spread": { - "Category": "State", - "MemberType": "Property", - "Name": "Spread", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "SunRaysEffect", - "Superclass": "PostEffect" - }, - "SurfaceAppearance": { - "Members": { - "AlphaMode": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "AlphaMode", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "AlphaMode" - } - }, - "ColorMap": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "ColorMap", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "MetalnessMap": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "MetalnessMap", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "NormalMap": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "NormalMap", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "RoughnessMap": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "RoughnessMap", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "TexturePack": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "TexturePack", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - } - }, - "MemoryCategory": "Instances", - "Name": "SurfaceAppearance", - "Superclass": "Instance" - }, - "SurfaceGui": { - "Members": { - "AlwaysOnTop": { - "Category": "Data", - "MemberType": "Property", - "Name": "AlwaysOnTop", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Brightness": { - "Category": "Data", - "MemberType": "Property", - "Name": "Brightness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "CanvasSize": { - "Category": "Sizing", - "MemberType": "Property", - "Name": "CanvasSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "ClipsDescendants": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "ClipsDescendants", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "HorizontalCurvature": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "HorizontalCurvature", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LightInfluence": { - "Category": "Data", - "MemberType": "Property", - "Name": "LightInfluence", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "PixelsPerStud": { - "Category": "Sizing", - "MemberType": "Property", - "Name": "PixelsPerStud", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Shape": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Shape", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "SurfaceGuiShape" - } - }, - "SizingMode": { - "Category": "Sizing", - "MemberType": "Property", - "Name": "SizingMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "SurfaceGuiSizingMode" - } - }, - "ToolPunchThroughDistance": { - "Category": "Data", - "MemberType": "Property", - "Name": "ToolPunchThroughDistance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ZOffset": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "ZOffset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "SurfaceGui", - "Superclass": "SurfaceGuiBase" - }, - "SurfaceGuiBase": { - "Members": { - "Active": { - "Category": "Data", - "MemberType": "Property", - "Name": "Active", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Adornee": { - "Category": "Data", - "MemberType": "Property", - "Name": "Adornee", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - }, - "Face": { - "Category": "Data", - "MemberType": "Property", - "Name": "Face", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "NormalId" - } - } - }, - "MemoryCategory": "Instances", - "Name": "SurfaceGuiBase", - "Superclass": "LayerCollector", - "Tags": [ - "NotCreatable" - ] - }, - "SurfaceLight": { - "Members": { - "Angle": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Angle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Face": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Face", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "NormalId" - } - }, - "Range": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Range", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "SurfaceLight", - "Superclass": "Light" - }, - "SurfaceSelection": { - "Members": { - "TargetSurface": { - "Category": "Data", - "MemberType": "Property", - "Name": "TargetSurface", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "NormalId" - } - } - }, - "MemoryCategory": "Instances", - "Name": "SurfaceSelection", - "Superclass": "PartAdornment" - }, - "SwimController": { - "Members": { - "AccelerationTime": { - "Category": "Movement", - "MemberType": "Property", - "Name": "AccelerationTime", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "PitchMaxTorque": { - "Category": "Balance", - "MemberType": "Property", - "Name": "PitchMaxTorque", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "PitchSpeedFactor": { - "Category": "Balance", - "MemberType": "Property", - "Name": "PitchSpeedFactor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RollMaxTorque": { - "Category": "Balance", - "MemberType": "Property", - "Name": "RollMaxTorque", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RollSpeedFactor": { - "Category": "Balance", - "MemberType": "Property", - "Name": "RollSpeedFactor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "SwimController", - "Superclass": "ControllerBase", - "Tags": [ - "NotBrowsable" - ] - }, - "SyncScriptBuilder": { - "Members": { - "CompileTarget": { - "Category": "Data", - "MemberType": "Property", - "Name": "CompileTarget", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "CompileTarget" - } - }, - "CoverageInfo": { - "Category": "Data", - "MemberType": "Property", - "Name": "CoverageInfo", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "DebugInfo": { - "Category": "Data", - "MemberType": "Property", - "Name": "DebugInfo", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "PackAsSource": { - "Category": "Data", - "MemberType": "Property", - "Name": "PackAsSource", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "RawBytecode": { - "Category": "Data", - "MemberType": "Property", - "Name": "RawBytecode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "SyncScriptBuilder", - "Superclass": "ScriptBuilder", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "TaskScheduler": { - "Members": { - "SchedulerDutyCycle": { - "Category": "Diagnostics", - "MemberType": "Property", - "Name": "SchedulerDutyCycle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "SchedulerRate": { - "Category": "Diagnostics", - "MemberType": "Property", - "Name": "SchedulerRate", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "ThreadPoolConfig": { - "Category": "Configuration", - "MemberType": "Property", - "Name": "ThreadPoolConfig", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ThreadPoolConfig" - } - }, - "ThreadPoolSize": { - "Category": "Diagnostics", - "MemberType": "Property", - "Name": "ThreadPoolSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - } - }, - "MemoryCategory": "Instances", - "Name": "TaskScheduler", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "Team": { - "Members": { - "AutoAssignable": { - "Category": "Data", - "MemberType": "Property", - "Name": "AutoAssignable", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AutoColorCharacters": { - "Category": "Data", - "MemberType": "Property", - "Name": "AutoColorCharacters", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ChildOrder": { - "Category": "Data", - "MemberType": "Property", - "Name": "ChildOrder", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "GetPlayers": { - "MemberType": "Function", - "Name": "GetPlayers", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "PlayerAdded": { - "MemberType": "Event", - "Name": "PlayerAdded", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PlayerRemoved": { - "MemberType": "Event", - "Name": "PlayerRemoved", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Score": { - "Category": "Data", - "MemberType": "Property", - "Name": "Score", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "TeamColor": { - "Category": "Data", - "MemberType": "Property", - "Name": "TeamColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BrickColor" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Team", - "Superclass": "Instance" - }, - "TeamCreateData": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "TeamCreateData", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "TeamCreatePublishService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "TeamCreatePublishService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "TeamCreateService": { - "Members": { - "CloseGameIfUserDoesntHavePerms": { - "MemberType": "Function", - "Name": "CloseGameIfUserDoesntHavePerms", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ToggleManageCollaborators": { - "MemberType": "Event", - "Name": "ToggleManageCollaborators", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "TeamCreateService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "Teams": { - "Members": { - "GetTeams": { - "MemberType": "Function", - "Name": "GetTeams", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RebalanceTeams": { - "MemberType": "Function", - "Name": "RebalanceTeams", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "Teams", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "TeleportAsyncResult": { - "Members": { - "PrivateServerId": { - "Category": "Data", - "MemberType": "Property", - "Name": "PrivateServerId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "ReservedServerAccessCode": { - "Category": "Data", - "MemberType": "Property", - "Name": "ReservedServerAccessCode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "TeleportAsyncResult", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "TeleportOptions": { - "Members": { - "GetTeleportData": { - "MemberType": "Function", - "Name": "GetTeleportData", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Variant" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ReservedServerAccessCode": { - "Category": "Data", - "MemberType": "Property", - "Name": "ReservedServerAccessCode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "ServerInstanceId": { - "Category": "Data", - "MemberType": "Property", - "Name": "ServerInstanceId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "SetTeleportData": { - "MemberType": "Function", - "Name": "SetTeleportData", - "Parameters": [ - { - "Name": "teleportData", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ShouldReserveServer": { - "Category": "Data", - "MemberType": "Property", - "Name": "ShouldReserveServer", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "TeleportOptions", - "Superclass": "Instance" - }, - "TeleportService": { - "Members": { - "Block": { - "MemberType": "Function", - "Name": "Block", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CustomizedTeleportUI": { - "Category": "Data", - "MemberType": "Property", - "Name": "CustomizedTeleportUI", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "GetArrivingTeleportGui": { - "MemberType": "Function", - "Name": "GetArrivingTeleportGui", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetLocalPlayerTeleportData": { - "MemberType": "Function", - "Name": "GetLocalPlayerTeleportData", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Variant" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetPlayerPlaceInstanceAsync": { - "MemberType": "Function", - "Name": "GetPlayerPlaceInstanceAsync", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetTeleportSetting": { - "MemberType": "Function", - "Name": "GetTeleportSetting", - "Parameters": [ - { - "Name": "setting", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Variant" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "LocalPlayerArrivedFromTeleport": { - "MemberType": "Event", - "Name": "LocalPlayerArrivedFromTeleport", - "Parameters": [ - { - "Name": "loadingGui", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "dataTable", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MenuTeleportAttempt": { - "MemberType": "Event", - "Name": "MenuTeleportAttempt", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ReserveServer": { - "MemberType": "Function", - "Name": "ReserveServer", - "Parameters": [ - { - "Name": "placeId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "SetTeleportGui": { - "MemberType": "Function", - "Name": "SetTeleportGui", - "Parameters": [ - { - "Name": "gui", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetTeleportSetting": { - "MemberType": "Function", - "Name": "SetTeleportSetting", - "Parameters": [ - { - "Name": "setting", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "value", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Teleport": { - "MemberType": "Function", - "Name": "Teleport", - "Parameters": [ - { - "Name": "placeId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Default": "nil", - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "teleportData", - "Type": { - "Category": "Group", - "Name": "Variant" - } - }, - { - "Default": "nil", - "Name": "customLoadingScreen", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TeleportAsync": { - "MemberType": "Function", - "Name": "TeleportAsync", - "Parameters": [ - { - "Name": "placeId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "players", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - }, - { - "Default": "nil", - "Name": "teleportOptions", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "TeleportCancel": { - "MemberType": "Function", - "Name": "TeleportCancel", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TeleportInitFailed": { - "MemberType": "Event", - "Name": "TeleportInitFailed", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "teleportResult", - "Type": { - "Category": "Enum", - "Name": "TeleportResult" - } - }, - { - "Name": "errorMessage", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "placeId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "teleportOptions", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TeleportPartyAsync": { - "MemberType": "Function", - "Name": "TeleportPartyAsync", - "Parameters": [ - { - "Name": "placeId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "players", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - }, - { - "Name": "teleportData", - "Type": { - "Category": "Group", - "Name": "Variant" - } - }, - { - "Default": "nil", - "Name": "customLoadingScreen", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "TeleportToPlaceInstance": { - "MemberType": "Function", - "Name": "TeleportToPlaceInstance", - "Parameters": [ - { - "Name": "placeId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "instanceId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "nil", - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Default": "", - "Name": "spawnName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "teleportData", - "Type": { - "Category": "Group", - "Name": "Variant" - } - }, - { - "Default": "nil", - "Name": "customLoadingScreen", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TeleportToPrivateServer": { - "MemberType": "Function", - "Name": "TeleportToPrivateServer", - "Parameters": [ - { - "Name": "placeId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "reservedServerAccessCode", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "players", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - }, - { - "Default": "", - "Name": "spawnName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "teleportData", - "Type": { - "Category": "Group", - "Name": "Variant" - } - }, - { - "Default": "nil", - "Name": "customLoadingScreen", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TeleportToSpawnByName": { - "MemberType": "Function", - "Name": "TeleportToSpawnByName", - "Parameters": [ - { - "Name": "placeId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "spawnName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "nil", - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "teleportData", - "Type": { - "Category": "Group", - "Name": "Variant" - } - }, - { - "Default": "nil", - "Name": "customLoadingScreen", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UnblockAsync": { - "MemberType": "Function", - "Name": "UnblockAsync", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "TeleportService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "TemporaryCageMeshProvider": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "TemporaryCageMeshProvider", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "TemporaryScriptService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "TemporaryScriptService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "Terrain": { - "Members": { - "AutowedgeCell": { - "MemberType": "Function", - "Name": "AutowedgeCell", - "Parameters": [ - { - "Name": "x", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "y", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "z", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "AutowedgeCells": { - "MemberType": "Function", - "Name": "AutowedgeCells", - "Parameters": [ - { - "Name": "region", - "Type": { - "Category": "DataType", - "Name": "Region3int16" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "CanShorelinesBeUpgraded": { - "MemberType": "Function", - "Name": "CanShorelinesBeUpgraded", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CanSmoothVoxelsBeUpgraded": { - "MemberType": "Function", - "Name": "CanSmoothVoxelsBeUpgraded", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CellCenterToWorld": { - "MemberType": "Function", - "Name": "CellCenterToWorld", - "Parameters": [ - { - "Name": "x", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "y", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "z", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Vector3" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CellCornerToWorld": { - "MemberType": "Function", - "Name": "CellCornerToWorld", - "Parameters": [ - { - "Name": "x", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "y", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "z", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Vector3" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Clear": { - "MemberType": "Function", - "Name": "Clear", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ConvertToSmooth": { - "MemberType": "Function", - "Name": "ConvertToSmooth", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "CopyRegion": { - "MemberType": "Function", - "Name": "CopyRegion", - "Parameters": [ - { - "Name": "region", - "Type": { - "Category": "DataType", - "Name": "Region3int16" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "TerrainRegion" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CountCells": { - "MemberType": "Function", - "Name": "CountCells", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Decoration": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Decoration", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "FillBall": { - "MemberType": "Function", - "Name": "FillBall", - "Parameters": [ - { - "Name": "center", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "radius", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "material", - "Type": { - "Category": "Enum", - "Name": "Material" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "FillBlock": { - "MemberType": "Function", - "Name": "FillBlock", - "Parameters": [ - { - "Name": "cframe", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - }, - { - "Name": "size", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "material", - "Type": { - "Category": "Enum", - "Name": "Material" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "FillCylinder": { - "MemberType": "Function", - "Name": "FillCylinder", - "Parameters": [ - { - "Name": "cframe", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - }, - { - "Name": "height", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "radius", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "material", - "Type": { - "Category": "Enum", - "Name": "Material" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "FillRegion": { - "MemberType": "Function", - "Name": "FillRegion", - "Parameters": [ - { - "Name": "region", - "Type": { - "Category": "DataType", - "Name": "Region3" - } - }, - { - "Name": "resolution", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "material", - "Type": { - "Category": "Enum", - "Name": "Material" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "FillWedge": { - "MemberType": "Function", - "Name": "FillWedge", - "Parameters": [ - { - "Name": "cframe", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - }, - { - "Name": "size", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "material", - "Type": { - "Category": "Enum", - "Name": "Material" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetCell": { - "MemberType": "Function", - "Name": "GetCell", - "Parameters": [ - { - "Name": "x", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "y", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "z", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetMaterialColor": { - "MemberType": "Function", - "Name": "GetMaterialColor", - "Parameters": [ - { - "Name": "material", - "Type": { - "Category": "Enum", - "Name": "Material" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Color3" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GetTerrainWireframe": { - "MemberType": "Function", - "Name": "GetTerrainWireframe", - "Parameters": [ - { - "Name": "cframe", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - }, - { - "Name": "size", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetWaterCell": { - "MemberType": "Function", - "Name": "GetWaterCell", - "Parameters": [ - { - "Name": "x", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "y", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "z", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "IsSmooth": { - "Category": "Data", - "MemberType": "Property", - "Name": "IsSmooth", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "LastUsedModificationMethod": { - "Category": "Data", - "MemberType": "Property", - "Name": "LastUsedModificationMethod", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TerrainAcquisitionMethod" - } - }, - "MaterialColors": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "MaterialColors", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BinaryString" - } - }, - "MaxExtents": { - "Category": "Data", - "MemberType": "Property", - "Name": "MaxExtents", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Region3int16" - } - }, - "PasteRegion": { - "MemberType": "Function", - "Name": "PasteRegion", - "Parameters": [ - { - "Name": "region", - "Type": { - "Category": "Class", - "Name": "TerrainRegion" - } - }, - { - "Name": "corner", - "Type": { - "Category": "DataType", - "Name": "Vector3int16" - } - }, - { - "Name": "pasteEmptyCells", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ReadVoxels": { - "MemberType": "Function", - "Name": "ReadVoxels", - "Parameters": [ - { - "Name": "region", - "Type": { - "Category": "DataType", - "Name": "Region3" - } - }, - { - "Name": "resolution", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": { - "CustomLuaState": true - }, - "ThreadSafety": "Safe" - }, - "ReplaceMaterial": { - "MemberType": "Function", - "Name": "ReplaceMaterial", - "Parameters": [ - { - "Name": "region", - "Type": { - "Category": "DataType", - "Name": "Region3" - } - }, - { - "Name": "resolution", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "sourceMaterial", - "Type": { - "Category": "Enum", - "Name": "Material" - } - }, - { - "Name": "targetMaterial", - "Type": { - "Category": "Enum", - "Name": "Material" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ReplaceMaterialInTransform": { - "MemberType": "Function", - "Name": "ReplaceMaterialInTransform", - "Parameters": [ - { - "Name": "cframe", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - }, - { - "Name": "size", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "sourceMaterial", - "Type": { - "Category": "Enum", - "Name": "Material" - } - }, - { - "Name": "targetMaterial", - "Type": { - "Category": "Enum", - "Name": "Material" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ReplaceMaterialInTransformSubregion": { - "MemberType": "Function", - "Name": "ReplaceMaterialInTransformSubregion", - "Parameters": [ - { - "Name": "cframe", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - }, - { - "Name": "size", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "sourceMaterial", - "Type": { - "Category": "Enum", - "Name": "Material" - } - }, - { - "Name": "targetMaterial", - "Type": { - "Category": "Enum", - "Name": "Material" - } - }, - { - "Name": "targetRegion", - "Type": { - "Category": "DataType", - "Name": "Region3int16" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetCell": { - "MemberType": "Function", - "Name": "SetCell", - "Parameters": [ - { - "Name": "x", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "y", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "z", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "material", - "Type": { - "Category": "Enum", - "Name": "CellMaterial" - } - }, - { - "Name": "block", - "Type": { - "Category": "Enum", - "Name": "CellBlock" - } - }, - { - "Name": "orientation", - "Type": { - "Category": "Enum", - "Name": "CellOrientation" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "SetCells": { - "MemberType": "Function", - "Name": "SetCells", - "Parameters": [ - { - "Name": "region", - "Type": { - "Category": "DataType", - "Name": "Region3int16" - } - }, - { - "Name": "material", - "Type": { - "Category": "Enum", - "Name": "CellMaterial" - } - }, - { - "Name": "block", - "Type": { - "Category": "Enum", - "Name": "CellBlock" - } - }, - { - "Name": "orientation", - "Type": { - "Category": "Enum", - "Name": "CellOrientation" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "SetMaterialColor": { - "MemberType": "Function", - "Name": "SetMaterialColor", - "Parameters": [ - { - "Name": "material", - "Type": { - "Category": "Enum", - "Name": "Material" - } - }, - { - "Name": "value", - "Type": { - "Category": "DataType", - "Name": "Color3" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetMaterialInTransform": { - "MemberType": "Function", - "Name": "SetMaterialInTransform", - "Parameters": [ - { - "Name": "cframe", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - }, - { - "Name": "size", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "targetMaterial", - "Type": { - "Category": "Enum", - "Name": "Material" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetMaterialInTransformSubregion": { - "MemberType": "Function", - "Name": "SetMaterialInTransformSubregion", - "Parameters": [ - { - "Name": "cframe", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - }, - { - "Name": "size", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "targetMaterial", - "Type": { - "Category": "Enum", - "Name": "Material" - } - }, - { - "Name": "targetRegion", - "Type": { - "Category": "DataType", - "Name": "Region3int16" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetWaterCell": { - "MemberType": "Function", - "Name": "SetWaterCell", - "Parameters": [ - { - "Name": "x", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "y", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "z", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "force", - "Type": { - "Category": "Enum", - "Name": "WaterForce" - } - }, - { - "Name": "direction", - "Type": { - "Category": "Enum", - "Name": "WaterDirection" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "ShorelinesUpgraded": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "ShorelinesUpgraded", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "SmoothRegion": { - "MemberType": "Function", - "Name": "SmoothRegion", - "Parameters": [ - { - "Name": "region", - "Type": { - "Category": "DataType", - "Name": "Region3" - } - }, - { - "Name": "resolution", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "strength", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "CustomLuaState": true - }, - "ThreadSafety": "Safe" - }, - "SmoothVoxelsUpgraded": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "SmoothVoxelsUpgraded", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "WaterColor": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "WaterColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "WaterReflectance": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "WaterReflectance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "WaterTransparency": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "WaterTransparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "WaterWaveSize": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "WaterWaveSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "WaterWaveSpeed": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "WaterWaveSpeed", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "WorldToCell": { - "MemberType": "Function", - "Name": "WorldToCell", - "Parameters": [ - { - "Name": "position", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Vector3" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "WorldToCellPreferEmpty": { - "MemberType": "Function", - "Name": "WorldToCellPreferEmpty", - "Parameters": [ - { - "Name": "position", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Vector3" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "WorldToCellPreferSolid": { - "MemberType": "Function", - "Name": "WorldToCellPreferSolid", - "Parameters": [ - { - "Name": "position", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Vector3" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "WriteVoxels": { - "MemberType": "Function", - "Name": "WriteVoxels", - "Parameters": [ - { - "Name": "region", - "Type": { - "Category": "DataType", - "Name": "Region3" - } - }, - { - "Name": "resolution", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "materials", - "Type": { - "Category": "Group", - "Name": "Array" - } - }, - { - "Name": "occupancy", - "Type": { - "Category": "Group", - "Name": "Array" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "CustomLuaState": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "Terrain", - "Superclass": "BasePart", - "Tags": [ - "NotCreatable" - ] - }, - "TerrainDetail": { - "Members": { - "ColorMap": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "ColorMap", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "Face": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Face", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TerrainFace" - } - }, - "MaterialPattern": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "MaterialPattern", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "MaterialPattern" - } - }, - "MetalnessMap": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "MetalnessMap", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "NormalMap": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "NormalMap", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "RoughnessMap": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "RoughnessMap", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "StudsPerTile": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "StudsPerTile", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "TerrainDetail", - "Superclass": "Instance" - }, - "TerrainRegion": { - "Members": { - "ApplyTransform": { - "MemberType": "Function", - "Name": "ApplyTransform", - "Parameters": [ - { - "Name": "rotation", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - }, - { - "Name": "size", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ApplyTransformSubregion": { - "MemberType": "Function", - "Name": "ApplyTransformSubregion", - "Parameters": [ - { - "Name": "rotation", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - }, - { - "Name": "size", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "region", - "Type": { - "Category": "DataType", - "Name": "Region3int16" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "TerrainRegion" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ConvertToSmooth": { - "MemberType": "Function", - "Name": "ConvertToSmooth", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetRegionWireframe": { - "MemberType": "Function", - "Name": "GetRegionWireframe", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsSmooth": { - "Category": "Data", - "MemberType": "Property", - "Name": "IsSmooth", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "SizeInCells": { - "Category": "Data", - "MemberType": "Property", - "Name": "SizeInCells", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - } - }, - "MemoryCategory": "Instances", - "Name": "TerrainRegion", - "Superclass": "Instance" - }, - "TestService": { - "Members": { - "AutoRuns": { - "Category": "Physics", - "MemberType": "Property", - "Name": "AutoRuns", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Check": { - "MemberType": "Function", - "Name": "Check", - "Parameters": [ - { - "Name": "condition", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "description", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "nil", - "Name": "source", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Default": "0", - "Name": "line", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Checkpoint": { - "MemberType": "Function", - "Name": "Checkpoint", - "Parameters": [ - { - "Name": "text", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "nil", - "Name": "source", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Default": "0", - "Name": "line", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Description": { - "Category": "Data", - "MemberType": "Property", - "Name": "Description", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Done": { - "MemberType": "Function", - "Name": "Done", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Error": { - "MemberType": "Function", - "Name": "Error", - "Parameters": [ - { - "Name": "description", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "nil", - "Name": "source", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Default": "0", - "Name": "line", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ErrorCount": { - "Category": "Results", - "MemberType": "Property", - "Name": "ErrorCount", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "ExecuteWithStudioRun": { - "Category": "Settings", - "MemberType": "Property", - "Name": "ExecuteWithStudioRun", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Fail": { - "MemberType": "Function", - "Name": "Fail", - "Parameters": [ - { - "Name": "description", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "nil", - "Name": "source", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Default": "0", - "Name": "line", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Is30FpsThrottleEnabled": { - "Category": "Physics", - "MemberType": "Property", - "Name": "Is30FpsThrottleEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "IsPhysicsEnvironmentalThrottled": { - "Category": "Physics", - "MemberType": "Property", - "Name": "IsPhysicsEnvironmentalThrottled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "IsSleepAllowed": { - "Category": "Physics", - "MemberType": "Property", - "Name": "IsSleepAllowed", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Message": { - "MemberType": "Function", - "Name": "Message", - "Parameters": [ - { - "Name": "text", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "nil", - "Name": "source", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Default": "0", - "Name": "line", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "NumberOfPlayers": { - "Category": "Settings", - "MemberType": "Property", - "Name": "NumberOfPlayers", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "Require": { - "MemberType": "Function", - "Name": "Require", - "Parameters": [ - { - "Name": "condition", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "description", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "nil", - "Name": "source", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Default": "0", - "Name": "line", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Run": { - "MemberType": "Function", - "Name": "Run", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ScopeTime": { - "MemberType": "Function", - "Name": "ScopeTime", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ServerCollectConditionalResult": { - "MemberType": "Event", - "Name": "ServerCollectConditionalResult", - "Parameters": [ - { - "Name": "condition", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "text", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "script", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "line", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ServerCollectResult": { - "MemberType": "Event", - "Name": "ServerCollectResult", - "Parameters": [ - { - "Name": "text", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "script", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "line", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SimulateSecondsLag": { - "Category": "Settings", - "MemberType": "Property", - "Name": "SimulateSecondsLag", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "TestCount": { - "Category": "Results", - "MemberType": "Property", - "Name": "TestCount", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "Timeout": { - "Category": "Settings", - "MemberType": "Property", - "Name": "Timeout", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "Warn": { - "MemberType": "Function", - "Name": "Warn", - "Parameters": [ - { - "Name": "condition", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "description", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "nil", - "Name": "source", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Default": "0", - "Name": "line", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "WarnCount": { - "Category": "Results", - "MemberType": "Property", - "Name": "WarnCount", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "isFeatureEnabled": { - "MemberType": "Function", - "Name": "isFeatureEnabled", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "TestService", - "Superclass": "Instance", - "Tags": [ - "Service" - ] - }, - "TextBox": { - "Members": { - "CaptureFocus": { - "MemberType": "Function", - "Name": "CaptureFocus", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ClearTextOnFocus": { - "Category": "Data", - "MemberType": "Property", - "Name": "ClearTextOnFocus", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ContentText": { - "Category": "Text", - "MemberType": "Property", - "Name": "ContentText", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "CursorPosition": { - "Category": "Data", - "MemberType": "Property", - "Name": "CursorPosition", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "FocusLost": { - "MemberType": "Event", - "Name": "FocusLost", - "Parameters": [ - { - "Name": "enterPressed", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "inputThatCausedFocusLoss", - "Type": { - "Category": "Class", - "Name": "InputObject" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Focused": { - "MemberType": "Event", - "Name": "Focused", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Font": { - "Category": "Text", - "MemberType": "Property", - "Name": "Font", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "Font" - } - }, - "FontFace": { - "Category": "Text", - "MemberType": "Property", - "Name": "FontFace", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Font" - } - }, - "FontSize": { - "Category": "Text", - "MemberType": "Property", - "Name": "FontSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "FontSize" - } - }, - "IsFocused": { - "MemberType": "Function", - "Name": "IsFocused", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "LineHeight": { - "Category": "Text", - "MemberType": "Property", - "Name": "LineHeight", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ManualFocusRelease": { - "Category": "Data", - "MemberType": "Property", - "Name": "ManualFocusRelease", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "MaxVisibleGraphemes": { - "Category": "Text", - "MemberType": "Property", - "Name": "MaxVisibleGraphemes", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "MultiLine": { - "Category": "Data", - "MemberType": "Property", - "Name": "MultiLine", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "OverlayNativeInput": { - "Category": "Data", - "MemberType": "Property", - "Name": "OverlayNativeInput", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "PlaceholderColor3": { - "Category": "Text", - "MemberType": "Property", - "Name": "PlaceholderColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "PlaceholderText": { - "Category": "Text", - "MemberType": "Property", - "Name": "PlaceholderText", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "ReleaseFocus": { - "MemberType": "Function", - "Name": "ReleaseFocus", - "Parameters": [ - { - "Default": "false", - "Name": "submitted", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ResetKeyboardMode": { - "MemberType": "Function", - "Name": "ResetKeyboardMode", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ReturnKeyType": { - "Category": "Data", - "MemberType": "Property", - "Name": "ReturnKeyType", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ReturnKeyType" - } - }, - "ReturnPressedFromOnScreenKeyboard": { - "MemberType": "Event", - "Name": "ReturnPressedFromOnScreenKeyboard", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RichText": { - "Category": "Text", - "MemberType": "Property", - "Name": "RichText", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "SelectionStart": { - "Category": "Data", - "MemberType": "Property", - "Name": "SelectionStart", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "SetTextFromInput": { - "MemberType": "Function", - "Name": "SetTextFromInput", - "Parameters": [ - { - "Name": "text", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ShowNativeInput": { - "Category": "Data", - "MemberType": "Property", - "Name": "ShowNativeInput", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Text": { - "Category": "Text", - "MemberType": "Property", - "Name": "Text", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "TextBounds": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextBounds", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "TextColor": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BrickColor" - } - }, - "TextColor3": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "TextDirection": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextDirection", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TextDirection" - } - }, - "TextEditable": { - "Category": "Data", - "MemberType": "Property", - "Name": "TextEditable", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "TextFits": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextFits", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "TextInputType": { - "Category": "Data", - "MemberType": "Property", - "Name": "TextInputType", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TextInputType" - } - }, - "TextScaled": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextScaled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "TextSize": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TextStrokeColor3": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextStrokeColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "TextStrokeTransparency": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextStrokeTransparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TextTransparency": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextTransparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TextTruncate": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextTruncate", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TextTruncate" - } - }, - "TextWrap": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextWrap", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "TextWrapped": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextWrapped", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "TextXAlignment": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextXAlignment", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TextXAlignment" - } - }, - "TextYAlignment": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextYAlignment", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TextYAlignment" - } - } - }, - "MemoryCategory": "Gui", - "Name": "TextBox", - "Superclass": "GuiObject" - }, - "TextBoxService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "TextBoxService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "TextButton": { - "Members": { - "ContentText": { - "Category": "Text", - "MemberType": "Property", - "Name": "ContentText", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Font": { - "Category": "Text", - "MemberType": "Property", - "Name": "Font", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "Font" - } - }, - "FontFace": { - "Category": "Text", - "MemberType": "Property", - "Name": "FontFace", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Font" - } - }, - "FontSize": { - "Category": "Text", - "MemberType": "Property", - "Name": "FontSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "FontSize" - } - }, - "LineHeight": { - "Category": "Text", - "MemberType": "Property", - "Name": "LineHeight", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LocalizedText": { - "Category": "Data", - "MemberType": "Property", - "Name": "LocalizedText", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "MaxVisibleGraphemes": { - "Category": "Text", - "MemberType": "Property", - "Name": "MaxVisibleGraphemes", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "RichText": { - "Category": "Text", - "MemberType": "Property", - "Name": "RichText", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "SetTextFromInput": { - "MemberType": "Function", - "Name": "SetTextFromInput", - "Parameters": [ - { - "Name": "text", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Text": { - "Category": "Text", - "MemberType": "Property", - "Name": "Text", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "TextBounds": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextBounds", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "TextColor": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BrickColor" - } - }, - "TextColor3": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "TextDirection": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextDirection", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TextDirection" - } - }, - "TextFits": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextFits", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "TextScaled": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextScaled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "TextSize": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TextStrokeColor3": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextStrokeColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "TextStrokeTransparency": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextStrokeTransparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TextTransparency": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextTransparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TextTruncate": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextTruncate", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TextTruncate" - } - }, - "TextWrap": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextWrap", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "TextWrapped": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextWrapped", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "TextXAlignment": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextXAlignment", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TextXAlignment" - } - }, - "TextYAlignment": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextYAlignment", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TextYAlignment" - } - } - }, - "MemoryCategory": "Gui", - "Name": "TextButton", - "Superclass": "GuiButton" - }, - "TextChannel": { - "Members": { - "AddUserAsync": { - "MemberType": "Function", - "Name": "AddUserAsync", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "DisplaySystemMessage": { - "MemberType": "Function", - "Name": "DisplaySystemMessage", - "Parameters": [ - { - "Name": "systemMessage", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "", - "Name": "metadata", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "TextChatMessage" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MessageReceived": { - "MemberType": "Event", - "Name": "MessageReceived", - "Parameters": [ - { - "Name": "incomingMessage", - "Type": { - "Category": "Class", - "Name": "TextChatMessage" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnIncomingMessage": { - "MemberType": "Callback", - "Name": "OnIncomingMessage", - "Parameters": [ - { - "Name": "message", - "Type": { - "Category": "Class", - "Name": "TextChatMessage" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SendAsync": { - "MemberType": "Function", - "Name": "SendAsync", - "Parameters": [ - { - "Name": "message", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "", - "Name": "metadata", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "TextChatMessage" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ShouldDeliverCallback": { - "MemberType": "Callback", - "Name": "ShouldDeliverCallback", - "Parameters": [ - { - "Name": "message", - "Type": { - "Category": "Class", - "Name": "TextChatMessage" - } - }, - { - "Name": "textSource", - "Type": { - "Category": "Class", - "Name": "TextSource" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "TextChannel", - "Superclass": "Instance" - }, - "TextChatCommand": { - "Members": { - "Enabled": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "PrimaryAlias": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "PrimaryAlias", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "SecondaryAlias": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "SecondaryAlias", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Triggered": { - "MemberType": "Event", - "Name": "Triggered", - "Parameters": [ - { - "Name": "originTextSource", - "Type": { - "Category": "Class", - "Name": "TextSource" - } - }, - { - "Name": "unfilteredText", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "TextChatCommand", - "Superclass": "Instance" - }, - "TextChatConfigurations": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "TextChatConfigurations", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "TextChatMessage": { - "Members": { - "BubbleChatMessageProperties": { - "Category": "Data", - "MemberType": "Property", - "Name": "BubbleChatMessageProperties", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "BubbleChatMessageProperties" - } - }, - "MessageId": { - "Category": "Data", - "MemberType": "Property", - "Name": "MessageId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Metadata": { - "Category": "Data", - "MemberType": "Property", - "Name": "Metadata", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "PrefixText": { - "Category": "Data", - "MemberType": "Property", - "Name": "PrefixText", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Status": { - "Category": "Data", - "MemberType": "Property", - "Name": "Status", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TextChatMessageStatus" - } - }, - "Text": { - "Category": "Data", - "MemberType": "Property", - "Name": "Text", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "TextChannel": { - "Category": "Data", - "MemberType": "Property", - "Name": "TextChannel", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "TextChannel" - } - }, - "TextSource": { - "Category": "Data", - "MemberType": "Property", - "Name": "TextSource", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "TextSource" - } - }, - "Timestamp": { - "Category": "Data", - "MemberType": "Property", - "Name": "Timestamp", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "DateTime" - } - } - }, - "MemoryCategory": "Instances", - "Name": "TextChatMessage", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "TextChatMessageProperties": { - "Members": { - "PrefixText": { - "Category": "Data", - "MemberType": "Property", - "Name": "PrefixText", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Text": { - "Category": "Data", - "MemberType": "Property", - "Name": "Text", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "TextChatMessageProperties", - "Superclass": "Instance" - }, - "TextChatService": { - "Members": { - "BubbleDisplayed": { - "MemberType": "Event", - "Name": "BubbleDisplayed", - "Parameters": [ - { - "Name": "partOrCharacter", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "textChatMessage", - "Type": { - "Category": "Class", - "Name": "TextChatMessage" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CanUserChatAsync": { - "MemberType": "Function", - "Name": "CanUserChatAsync", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "CanUsersChatAsync": { - "MemberType": "Function", - "Name": "CanUsersChatAsync", - "Parameters": [ - { - "Name": "userIdFrom", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "userIdTo", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ChatVersion": { - "Category": "Data", - "MemberType": "Property", - "Name": "ChatVersion", - "Security": { - "Read": "None", - "Write": "NotAccessibleSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ChatVersion" - } - }, - "CreateDefaultCommands": { - "Category": "Data", - "MemberType": "Property", - "Name": "CreateDefaultCommands", - "Security": { - "Read": "None", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "CreateDefaultTextChannels": { - "Category": "Data", - "MemberType": "Property", - "Name": "CreateDefaultTextChannels", - "Security": { - "Read": "None", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "DisplayBubble": { - "MemberType": "Function", - "Name": "DisplayBubble", - "Parameters": [ - { - "Name": "partOrCharacter", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "message", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MessageReceived": { - "MemberType": "Event", - "Name": "MessageReceived", - "Parameters": [ - { - "Name": "textChatMessage", - "Type": { - "Category": "Class", - "Name": "TextChatMessage" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnBubbleAdded": { - "MemberType": "Callback", - "Name": "OnBubbleAdded", - "Parameters": [ - { - "Name": "message", - "Type": { - "Category": "Class", - "Name": "TextChatMessage" - } - }, - { - "Name": "adornee", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "OnIncomingMessage": { - "MemberType": "Callback", - "Name": "OnIncomingMessage", - "Parameters": [ - { - "Name": "message", - "Type": { - "Category": "Class", - "Name": "TextChatMessage" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SendingMessage": { - "MemberType": "Event", - "Name": "SendingMessage", - "Parameters": [ - { - "Name": "textChatMessage", - "Type": { - "Category": "Class", - "Name": "TextChatMessage" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "TextChatService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "TextFilterResult": { - "Members": { - "GetChatForUserAsync": { - "MemberType": "Function", - "Name": "GetChatForUserAsync", - "Parameters": [ - { - "Name": "toUserId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetNonChatStringForBroadcastAsync": { - "MemberType": "Function", - "Name": "GetNonChatStringForBroadcastAsync", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetNonChatStringForUserAsync": { - "MemberType": "Function", - "Name": "GetNonChatStringForUserAsync", - "Parameters": [ - { - "Name": "toUserId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "TextFilterResult", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "TextFilterTranslatedResult": { - "Members": { - "GetTranslationForLocale": { - "MemberType": "Function", - "Name": "GetTranslationForLocale", - "Parameters": [ - { - "Name": "locale", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "TextFilterResult" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetTranslations": { - "MemberType": "Function", - "Name": "GetTranslations", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SourceLanguage": { - "Category": "Data", - "MemberType": "Property", - "Name": "SourceLanguage", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "SourceText": { - "Category": "Data", - "MemberType": "Property", - "Name": "SourceText", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "TextFilterResult" - } - } - }, - "MemoryCategory": "Instances", - "Name": "TextFilterTranslatedResult", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "TextLabel": { - "Members": { - "ContentText": { - "Category": "Text", - "MemberType": "Property", - "Name": "ContentText", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Font": { - "Category": "Text", - "MemberType": "Property", - "Name": "Font", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "Font" - } - }, - "FontFace": { - "Category": "Text", - "MemberType": "Property", - "Name": "FontFace", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Font" - } - }, - "FontSize": { - "Category": "Text", - "MemberType": "Property", - "Name": "FontSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "FontSize" - } - }, - "LineHeight": { - "Category": "Text", - "MemberType": "Property", - "Name": "LineHeight", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LocalizedText": { - "Category": "Data", - "MemberType": "Property", - "Name": "LocalizedText", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "MaxVisibleGraphemes": { - "Category": "Text", - "MemberType": "Property", - "Name": "MaxVisibleGraphemes", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "RichText": { - "Category": "Text", - "MemberType": "Property", - "Name": "RichText", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "SetTextFromInput": { - "MemberType": "Function", - "Name": "SetTextFromInput", - "Parameters": [ - { - "Name": "text", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Text": { - "Category": "Text", - "MemberType": "Property", - "Name": "Text", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "TextBounds": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextBounds", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "TextColor": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "BrickColor" - } - }, - "TextColor3": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "TextDirection": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextDirection", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TextDirection" - } - }, - "TextFits": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextFits", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "TextScaled": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextScaled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "TextSize": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TextStrokeColor3": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextStrokeColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "TextStrokeTransparency": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextStrokeTransparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TextTransparency": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextTransparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TextTruncate": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextTruncate", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TextTruncate" - } - }, - "TextWrap": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextWrap", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "TextWrapped": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextWrapped", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "TextXAlignment": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextXAlignment", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TextXAlignment" - } - }, - "TextYAlignment": { - "Category": "Text", - "MemberType": "Property", - "Name": "TextYAlignment", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TextYAlignment" - } - } - }, - "MemoryCategory": "Gui", - "Name": "TextLabel", - "Superclass": "GuiLabel" - }, - "TextService": { - "Members": { - "FilterAndTranslateStringAsync": { - "MemberType": "Function", - "Name": "FilterAndTranslateStringAsync", - "Parameters": [ - { - "Name": "stringToFilter", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "fromUserId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "targetLocales", - "Type": { - "Category": "Group", - "Name": "Array" - } - }, - { - "Default": "PrivateChat", - "Name": "textContext", - "Type": { - "Category": "Enum", - "Name": "TextFilterContext" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "FilterStringAsync": { - "MemberType": "Function", - "Name": "FilterStringAsync", - "Parameters": [ - { - "Name": "stringToFilter", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "fromUserId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Default": "PrivateChat", - "Name": "textContext", - "Type": { - "Category": "Enum", - "Name": "TextFilterContext" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetFamilyInfoAsync": { - "MemberType": "Function", - "Name": "GetFamilyInfoAsync", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "DataType", - "Name": "Content" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetFontMemoryData": { - "MemberType": "Function", - "Name": "GetFontMemoryData", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Dictionary" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetTextBoundsAsync": { - "MemberType": "Function", - "Name": "GetTextBoundsAsync", - "Parameters": [ - { - "Name": "params", - "Type": { - "Category": "Class", - "Name": "GetTextBoundsParams" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Vector2" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetTextSize": { - "MemberType": "Function", - "Name": "GetTextSize", - "Parameters": [ - { - "Name": "string", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "fontSize", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "font", - "Type": { - "Category": "Enum", - "Name": "Font" - } - }, - { - "Name": "frameSize", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Vector2" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetResolutionScale": { - "MemberType": "Function", - "Name": "SetResolutionScale", - "Parameters": [ - { - "Name": "scale", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "TextService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "TextSource": { - "Members": { - "CanSend": { - "Category": "Data", - "MemberType": "Property", - "Name": "CanSend", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "UserId": { - "Category": "Data", - "MemberType": "Property", - "Name": "UserId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int64" - } - } - }, - "MemoryCategory": "Instances", - "Name": "TextSource", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "Texture": { - "Members": { - "OffsetStudsU": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "OffsetStudsU", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "OffsetStudsV": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "OffsetStudsV", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "StudsPerTileU": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "StudsPerTileU", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "StudsPerTileV": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "StudsPerTileV", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "GraphicsTexture", - "Name": "Texture", - "Superclass": "Decal" - }, - "ThirdPartyUserService": { - "Members": { - "ActiveUserSignedOut": { - "MemberType": "Event", - "Name": "ActiveUserSignedOut", - "Parameters": [ - { - "Name": "signOutStatus", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetUserPlatformId": { - "MemberType": "Function", - "Name": "GetUserPlatformId", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetUserPlatformName": { - "MemberType": "Function", - "Name": "GetUserPlatformName", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "HaveActiveUser": { - "MemberType": "Function", - "Name": "HaveActiveUser", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsOver13": { - "MemberType": "Function", - "Name": "IsOver13", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RegisterActiveUser": { - "MemberType": "Function", - "Name": "RegisterActiveUser", - "Parameters": [ - { - "Name": "gamepadId", - "Type": { - "Category": "Enum", - "Name": "UserInputType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ReturnToEngagement": { - "MemberType": "Function", - "Name": "ReturnToEngagement", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ShowAccountPicker": { - "MemberType": "Function", - "Name": "ShowAccountPicker", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "ThirdPartyUserService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "ThreadState": { - "Members": { - "FrameCount": { - "Category": "Data", - "MemberType": "Property", - "Name": "FrameCount", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "GetFrame": { - "MemberType": "Function", - "Name": "GetFrame", - "Parameters": [ - { - "Name": "index", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Instance" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Populated": { - "Category": "State", - "MemberType": "Property", - "Name": "Populated", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ThreadId": { - "Category": "Data", - "MemberType": "Property", - "Name": "ThreadId", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "ThreadName": { - "Category": "Data", - "MemberType": "Property", - "Name": "ThreadName", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "ThreadState", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "TimerService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "TimerService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "ToastNotificationService": { - "Members": { - "HideNotification": { - "MemberType": "Function", - "Name": "HideNotification", - "Parameters": [ - { - "Name": "notificationId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ShowNotification": { - "MemberType": "Function", - "Name": "ShowNotification", - "Parameters": [ - { - "Name": "message", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "notificationId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "ToastNotificationService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "Tool": { - "Members": { - "Activate": { - "MemberType": "Function", - "Name": "Activate", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Activated": { - "MemberType": "Event", - "Name": "Activated", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CanBeDropped": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "CanBeDropped", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Deactivate": { - "MemberType": "Function", - "Name": "Deactivate", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Deactivated": { - "MemberType": "Event", - "Name": "Deactivated", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Enabled": { - "Category": "State", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Equipped": { - "MemberType": "Event", - "Name": "Equipped", - "Parameters": [ - { - "Name": "mouse", - "Type": { - "Category": "Class", - "Name": "Mouse" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Grip": { - "Category": "Transform", - "MemberType": "Property", - "Name": "Grip", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "GripForward": { - "Category": "Transform", - "MemberType": "Property", - "Name": "GripForward", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "GripPos": { - "Category": "Transform", - "MemberType": "Property", - "Name": "GripPos", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "GripRight": { - "Category": "Transform", - "MemberType": "Property", - "Name": "GripRight", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "GripUp": { - "Category": "Transform", - "MemberType": "Property", - "Name": "GripUp", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "ManualActivationOnly": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "ManualActivationOnly", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "RequiresHandle": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "RequiresHandle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ToolTip": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "ToolTip", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Unequipped": { - "MemberType": "Event", - "Name": "Unequipped", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "Tool", - "Superclass": "BackpackItem" - }, - "Torque": { - "Members": { - "RelativeTo": { - "Category": "Torque", - "MemberType": "Property", - "Name": "RelativeTo", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ActuatorRelativeTo" - } - }, - "Torque": { - "Category": "Torque", - "MemberType": "Property", - "Name": "Torque", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "Torque", - "Superclass": "Constraint" - }, - "TorsionSpringConstraint": { - "Members": { - "Coils": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Coils", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "CurrentAngle": { - "Category": "Derived", - "MemberType": "Property", - "Name": "CurrentAngle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Damping": { - "Category": "Spring", - "MemberType": "Property", - "Name": "Damping", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LimitEnabled": { - "Category": "Spring", - "MemberType": "Property", - "Name": "LimitEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Deprecated": true, - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "LimitsEnabled": { - "Category": "Spring", - "MemberType": "Property", - "Name": "LimitsEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "MaxAngle": { - "Category": "Limits", - "MemberType": "Property", - "Name": "MaxAngle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MaxTorque": { - "Category": "Spring", - "MemberType": "Property", - "Name": "MaxTorque", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Radius": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Radius", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Restitution": { - "Category": "Limits", - "MemberType": "Property", - "Name": "Restitution", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Stiffness": { - "Category": "Spring", - "MemberType": "Property", - "Name": "Stiffness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "TorsionSpringConstraint", - "Superclass": "Constraint" - }, - "TotalCountTimeIntervalItem": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "TotalCountTimeIntervalItem", - "Superclass": "StatsItem", - "Tags": [ - "NotCreatable" - ] - }, - "TouchInputService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "TouchInputService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "TouchTransmitter": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "TouchTransmitter", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotBrowsable" - ] - }, - "TracerService": { - "Members": { - "FinishSpan": { - "MemberType": "Function", - "Name": "FinishSpan", - "Parameters": [ - { - "Name": "spanId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StartSpan": { - "MemberType": "Function", - "Name": "StartSpan", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "parentId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "TracerService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "TrackerLodController": { - "Members": { - "AudioMode": { - "Category": "Control", - "MemberType": "Property", - "Name": "AudioMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TrackerLodFlagMode" - } - }, - "UpdateState": { - "MemberType": "Event", - "Name": "UpdateState", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "VideoExtrapolationMode": { - "Category": "Control", - "MemberType": "Property", - "Name": "VideoExtrapolationMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TrackerExtrapolationFlagMode" - } - }, - "VideoLodMode": { - "Category": "Control", - "MemberType": "Property", - "Name": "VideoLodMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TrackerLodValueMode" - } - }, - "VideoMode": { - "Category": "Control", - "MemberType": "Property", - "Name": "VideoMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TrackerLodFlagMode" - } - }, - "getExtrapolation": { - "MemberType": "Function", - "Name": "getExtrapolation", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "getVideoLod": { - "MemberType": "Function", - "Name": "getVideoLod", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "isAudioEnabled": { - "MemberType": "Function", - "Name": "isAudioEnabled", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "isVideoEnabled": { - "MemberType": "Function", - "Name": "isVideoEnabled", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "TrackerLodController", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "TrackerStreamAnimation": { - "Members": {}, - "MemoryCategory": "Animation", - "Name": "TrackerStreamAnimation", - "Superclass": "Instance", - "Tags": [ - "NotReplicated" - ] - }, - "Trail": { - "Members": { - "Attachment0": { - "Category": "Data", - "MemberType": "Property", - "Name": "Attachment0", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Attachment" - } - }, - "Attachment1": { - "Category": "Data", - "MemberType": "Property", - "Name": "Attachment1", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Attachment" - } - }, - "Brightness": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Brightness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Clear": { - "MemberType": "Function", - "Name": "Clear", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Color": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "ColorSequence" - } - }, - "Enabled": { - "Category": "Emission", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "FaceCamera": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "FaceCamera", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Lifetime": { - "Category": "Emission", - "MemberType": "Property", - "Name": "Lifetime", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LightEmission": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "LightEmission", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LightInfluence": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "LightInfluence", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MaxLength": { - "Category": "Emission", - "MemberType": "Property", - "Name": "MaxLength", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MinLength": { - "Category": "Emission", - "MemberType": "Property", - "Name": "MinLength", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Texture": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Texture", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "TextureLength": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "TextureLength", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TextureMode": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "TextureMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TextureMode" - } - }, - "Transparency": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Transparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "NumberSequence" - } - }, - "WidthScale": { - "Category": "Emission", - "MemberType": "Property", - "Name": "WidthScale", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "NumberSequence" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Trail", - "Superclass": "Instance" - }, - "Translator": { - "Members": { - "FormatByKey": { - "MemberType": "Function", - "Name": "FormatByKey", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "args", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "LocaleId": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "LocaleId", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "RobloxOnlyTranslate": { - "MemberType": "Function", - "Name": "RobloxOnlyTranslate", - "Parameters": [ - { - "Name": "context", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "text", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Translate": { - "MemberType": "Function", - "Name": "Translate", - "Parameters": [ - { - "Name": "context", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "text", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "Translator", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotReplicated" - ] - }, - "TremoloSoundEffect": { - "Members": { - "Depth": { - "Category": "State", - "MemberType": "Property", - "Name": "Depth", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Duty": { - "Category": "State", - "MemberType": "Property", - "Name": "Duty", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Frequency": { - "Category": "State", - "MemberType": "Property", - "Name": "Frequency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "TremoloSoundEffect", - "Superclass": "SoundEffect" - }, - "TriangleMeshPart": { - "Members": { - "CollisionFidelity": { - "Category": "Collision", - "MemberType": "Property", - "Name": "CollisionFidelity", - "Security": { - "Read": "None", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "CollisionFidelity" - } - }, - "MeshSize": { - "Category": "Data", - "MemberType": "Property", - "Name": "MeshSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - } - }, - "MemoryCategory": "Instances", - "Name": "TriangleMeshPart", - "Superclass": "BasePart", - "Tags": [ - "NotCreatable" - ] - }, - "TrussPart": { - "Members": { - "Style": { - "Category": "Part", - "MemberType": "Property", - "Name": "Style", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "Style" - } - } - }, - "MemoryCategory": "Instances", - "Name": "TrussPart", - "Superclass": "BasePart" - }, - "TutorialService": { - "Members": { - "GetMainViewSessionId": { - "MemberType": "Function", - "Name": "GetMainViewSessionId", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetStudioWidgetFromLabel": { - "MemberType": "Function", - "Name": "GetStudioWidgetFromLabel", - "Parameters": [ - { - "Name": "label", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "StudioWidget" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "HasUserCompletedTutorial": { - "MemberType": "Function", - "Name": "HasUserCompletedTutorial", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PromptClosePlace": { - "MemberType": "Function", - "Name": "PromptClosePlace", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetTutorialCompletionStatus": { - "MemberType": "Function", - "Name": "SetTutorialCompletionStatus", - "Parameters": [ - { - "Name": "completed", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ShouldLaunchTutorial": { - "MemberType": "Function", - "Name": "ShouldLaunchTutorial", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "TutorialService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "Tween": { - "Members": { - "Instance": { - "Category": "Data", - "MemberType": "Property", - "Name": "Instance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - }, - "TweenInfo": { - "Category": "Data", - "MemberType": "Property", - "Name": "TweenInfo", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "TweenInfo" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Tween", - "Superclass": "TweenBase" - }, - "TweenBase": { - "Members": { - "Cancel": { - "MemberType": "Function", - "Name": "Cancel", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Completed": { - "MemberType": "Event", - "Name": "Completed", - "Parameters": [ - { - "Name": "playbackState", - "Type": { - "Category": "Enum", - "Name": "PlaybackState" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Pause": { - "MemberType": "Function", - "Name": "Pause", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Play": { - "MemberType": "Function", - "Name": "Play", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PlaybackState": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "PlaybackState", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "PlaybackState" - } - } - }, - "MemoryCategory": "Instances", - "Name": "TweenBase", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "NotBrowsable" - ] - }, - "TweenService": { - "Members": { - "Create": { - "MemberType": "Function", - "Name": "Create", - "Parameters": [ - { - "Name": "instance", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "tweenInfo", - "Type": { - "Category": "DataType", - "Name": "TweenInfo" - } - }, - { - "Name": "propertyTable", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "ReturnType": { - "Category": "Class", - "Name": "Tween" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetValue": { - "MemberType": "Function", - "Name": "GetValue", - "Parameters": [ - { - "Name": "alpha", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "easingStyle", - "Type": { - "Category": "Enum", - "Name": "EasingStyle" - } - }, - { - "Name": "easingDirection", - "Type": { - "Category": "Enum", - "Name": "EasingDirection" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "float" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "TweenService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "UGCAvatarService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "UGCAvatarService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "UGCValidationService": { - "Members": { - "CalculateUniqueUVCount": { - "MemberType": "Function", - "Name": "CalculateUniqueUVCount", - "Parameters": [ - { - "Name": "meshId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "CanLoadAsset": { - "MemberType": "Function", - "Name": "CanLoadAsset", - "Parameters": [ - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "FetchAssetWithFormat": { - "MemberType": "Function", - "Name": "FetchAssetWithFormat", - "Parameters": [ - { - "Name": "url", - "Type": { - "Category": "DataType", - "Name": "Content" - } - }, - { - "Name": "assetFormat", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetMeshTriCount": { - "MemberType": "Function", - "Name": "GetMeshTriCount", - "Parameters": [ - { - "Name": "meshId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetMeshVertColors": { - "MemberType": "Function", - "Name": "GetMeshVertColors", - "Parameters": [ - { - "Name": "meshId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetMeshVerts": { - "MemberType": "Function", - "Name": "GetMeshVerts", - "Parameters": [ - { - "Name": "meshId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "GetPropertyValue": { - "MemberType": "Function", - "Name": "GetPropertyValue", - "Parameters": [ - { - "Name": "instance", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "property", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Variant" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetTextureSize": { - "MemberType": "Function", - "Name": "GetTextureSize", - "Parameters": [ - { - "Name": "textureId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Vector2" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ResetCollisionFidelity": { - "MemberType": "Function", - "Name": "ResetCollisionFidelity", - "Parameters": [ - { - "Name": "meshPart", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetMeshIdBlocking": { - "MemberType": "Function", - "Name": "SetMeshIdBlocking", - "Parameters": [ - { - "Name": "meshPart", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "meshId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ValidateCageMeshIntersection": { - "MemberType": "Function", - "Name": "ValidateCageMeshIntersection", - "Parameters": [ - { - "Name": "innerCageMeshId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "outerCageMeshId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "refMeshId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ValidateCageNonManifoldAndHoles": { - "MemberType": "Function", - "Name": "ValidateCageNonManifoldAndHoles", - "Parameters": [ - { - "Name": "meshId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ValidateDynamicHeadMesh": { - "MemberType": "Function", - "Name": "ValidateDynamicHeadMesh", - "Parameters": [ - { - "Name": "meshId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ValidateFullBodyCageDeletion": { - "MemberType": "Function", - "Name": "ValidateFullBodyCageDeletion", - "Parameters": [ - { - "Name": "meshId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ValidateMeshBounds": { - "MemberType": "Function", - "Name": "ValidateMeshBounds", - "Parameters": [ - { - "Name": "meshId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "meshScale", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "boundsOffset", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "attachmentCF", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - }, - { - "Name": "handleCF", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ValidateMeshTriangles": { - "MemberType": "Function", - "Name": "ValidateMeshTriangles", - "Parameters": [ - { - "Name": "meshId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ValidateMeshVertColors": { - "MemberType": "Function", - "Name": "ValidateMeshVertColors", - "Parameters": [ - { - "Name": "meshId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "true", - "Name": "includeAlpha", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ValidateMisMatchUV": { - "MemberType": "Function", - "Name": "ValidateMisMatchUV", - "Parameters": [ - { - "Name": "innerCageMeshId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "outerCageMeshId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ValidateNumTextureChannels": { - "MemberType": "Function", - "Name": "ValidateNumTextureChannels", - "Parameters": [ - { - "Name": "textureId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "numChannelsRequired", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ValidateOverlappingVertices": { - "MemberType": "Function", - "Name": "ValidateOverlappingVertices", - "Parameters": [ - { - "Name": "meshId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ValidateSkinnedMesh": { - "MemberType": "Function", - "Name": "ValidateSkinnedMesh", - "Parameters": [ - { - "Name": "meshId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ValidateTextureSize": { - "MemberType": "Function", - "Name": "ValidateTextureSize", - "Parameters": [ - { - "Name": "textureId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ValidateUVSpace": { - "MemberType": "Function", - "Name": "ValidateUVSpace", - "Parameters": [ - { - "Name": "meshId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "ValidateUniqueUVCount": { - "MemberType": "Function", - "Name": "ValidateUniqueUVCount", - "Parameters": [ - { - "Name": "meshId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "numRequired", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "UGCValidationService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "UIAspectRatioConstraint": { - "Members": { - "AspectRatio": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "AspectRatio", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "AspectType": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "AspectType", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "AspectType" - } - }, - "DominantAxis": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "DominantAxis", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "DominantAxis" - } - } - }, - "MemoryCategory": "Instances", - "Name": "UIAspectRatioConstraint", - "Superclass": "UIConstraint" - }, - "UIBase": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "UIBase", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "UIComponent": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "UIComponent", - "Superclass": "UIBase", - "Tags": [ - "NotCreatable" - ] - }, - "UIConstraint": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "UIConstraint", - "Superclass": "UIComponent", - "Tags": [ - "NotCreatable" - ] - }, - "UICorner": { - "Members": { - "CornerRadius": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "CornerRadius", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "UDim" - } - } - }, - "MemoryCategory": "Instances", - "Name": "UICorner", - "Superclass": "UIComponent" - }, - "UIGradient": { - "Members": { - "Color": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "ColorSequence" - } - }, - "Enabled": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Offset": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Offset", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "Rotation": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Rotation", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Transparency": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Transparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "NumberSequence" - } - } - }, - "MemoryCategory": "Instances", - "Name": "UIGradient", - "Superclass": "UIComponent" - }, - "UIGridLayout": { - "Members": { - "AbsoluteCellCount": { - "Category": "Data", - "MemberType": "Property", - "Name": "AbsoluteCellCount", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "Unsafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "AbsoluteCellSize": { - "Category": "Data", - "MemberType": "Property", - "Name": "AbsoluteCellSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "Unsafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "CellPadding": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "CellPadding", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "UDim2" - } - }, - "CellSize": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "CellSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "UDim2" - } - }, - "FillDirectionMaxCells": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "FillDirectionMaxCells", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "StartCorner": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "StartCorner", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "StartCorner" - } - } - }, - "MemoryCategory": "Instances", - "Name": "UIGridLayout", - "Superclass": "UIGridStyleLayout" - }, - "UIGridStyleLayout": { - "Members": { - "AbsoluteContentSize": { - "Category": "Data", - "MemberType": "Property", - "Name": "AbsoluteContentSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "Unsafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "ApplyLayout": { - "MemberType": "Function", - "Name": "ApplyLayout", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "FillDirection": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "FillDirection", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "FillDirection" - } - }, - "HorizontalAlignment": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "HorizontalAlignment", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "HorizontalAlignment" - } - }, - "SetCustomSortFunction": { - "MemberType": "Function", - "Name": "SetCustomSortFunction", - "Parameters": [ - { - "Default": "nil", - "Name": "function", - "Type": { - "Category": "DataType", - "Name": "Function" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "SortOrder": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "SortOrder", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "SortOrder" - } - }, - "VerticalAlignment": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "VerticalAlignment", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "VerticalAlignment" - } - } - }, - "MemoryCategory": "Instances", - "Name": "UIGridStyleLayout", - "Superclass": "UILayout", - "Tags": [ - "NotCreatable", - "NotBrowsable" - ] - }, - "UILayout": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "UILayout", - "Superclass": "UIComponent", - "Tags": [ - "NotCreatable" - ] - }, - "UIListLayout": { - "Members": { - "Padding": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Padding", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "UDim" - } - } - }, - "MemoryCategory": "Instances", - "Name": "UIListLayout", - "Superclass": "UIGridStyleLayout" - }, - "UIPadding": { - "Members": { - "PaddingBottom": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "PaddingBottom", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "UDim" - } - }, - "PaddingLeft": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "PaddingLeft", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "UDim" - } - }, - "PaddingRight": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "PaddingRight", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "UDim" - } - }, - "PaddingTop": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "PaddingTop", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "UDim" - } - } - }, - "MemoryCategory": "Instances", - "Name": "UIPadding", - "Superclass": "UIComponent" - }, - "UIPageLayout": { - "Members": { - "Animated": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Animated", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Circular": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Circular", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "CurrentPage": { - "Category": "Data", - "MemberType": "Property", - "Name": "CurrentPage", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "GuiObject" - } - }, - "EasingDirection": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "EasingDirection", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "EasingDirection" - } - }, - "EasingStyle": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "EasingStyle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "EasingStyle" - } - }, - "GamepadInputEnabled": { - "Category": "Input", - "MemberType": "Property", - "Name": "GamepadInputEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "JumpTo": { - "MemberType": "Function", - "Name": "JumpTo", - "Parameters": [ - { - "Name": "page", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "JumpToIndex": { - "MemberType": "Function", - "Name": "JumpToIndex", - "Parameters": [ - { - "Name": "index", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Next": { - "MemberType": "Function", - "Name": "Next", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Padding": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Padding", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "UDim" - } - }, - "PageEnter": { - "MemberType": "Event", - "Name": "PageEnter", - "Parameters": [ - { - "Name": "page", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PageLeave": { - "MemberType": "Event", - "Name": "PageLeave", - "Parameters": [ - { - "Name": "page", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Previous": { - "MemberType": "Function", - "Name": "Previous", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ScrollWheelInputEnabled": { - "Category": "Input", - "MemberType": "Property", - "Name": "ScrollWheelInputEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Stopped": { - "MemberType": "Event", - "Name": "Stopped", - "Parameters": [ - { - "Name": "currentPage", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TouchInputEnabled": { - "Category": "Input", - "MemberType": "Property", - "Name": "TouchInputEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "TweenTime": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "TweenTime", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "UIPageLayout", - "Superclass": "UIGridStyleLayout" - }, - "UIScale": { - "Members": { - "Scale": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Scale", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "UIScale", - "Superclass": "UIComponent" - }, - "UISizeConstraint": { - "Members": { - "MaxSize": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "MaxSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "MinSize": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "MinSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - } - }, - "MemoryCategory": "Instances", - "Name": "UISizeConstraint", - "Superclass": "UIConstraint" - }, - "UIStroke": { - "Members": { - "ApplyStrokeMode": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "ApplyStrokeMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ApplyStrokeMode" - } - }, - "Color": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "Enabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "LineJoinMode": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "LineJoinMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "LineJoinMode" - } - }, - "Thickness": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Thickness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Transparency": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Transparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "UIStroke", - "Superclass": "UIComponent" - }, - "UITableLayout": { - "Members": { - "FillEmptySpaceColumns": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "FillEmptySpaceColumns", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "FillEmptySpaceRows": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "FillEmptySpaceRows", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "MajorAxis": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "MajorAxis", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TableMajorAxis" - } - }, - "Padding": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Padding", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "UDim2" - } - } - }, - "MemoryCategory": "Instances", - "Name": "UITableLayout", - "Superclass": "UIGridStyleLayout" - }, - "UITextSizeConstraint": { - "Members": { - "MaxTextSize": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "MaxTextSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "MinTextSize": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "MinTextSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - } - }, - "MemoryCategory": "Instances", - "Name": "UITextSizeConstraint", - "Superclass": "UIConstraint" - }, - "UnionOperation": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "UnionOperation", - "Superclass": "PartOperation" - }, - "UniversalConstraint": { - "Members": { - "LimitsEnabled": { - "Category": "Universal", - "MemberType": "Property", - "Name": "LimitsEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "MaxAngle": { - "Category": "Limits", - "MemberType": "Property", - "Name": "MaxAngle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Radius": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Radius", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Restitution": { - "Category": "Limits", - "MemberType": "Property", - "Name": "Restitution", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "UniversalConstraint", - "Superclass": "Constraint" - }, - "UnvalidatedAssetService": { - "Members": { - "AppendTempAssetId": { - "MemberType": "Function", - "Name": "AppendTempAssetId", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "id", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "lookAt", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "camPos", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "usage", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "AppendVantagePoint": { - "MemberType": "Function", - "Name": "AppendVantagePoint", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "id", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "lookAt", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "camPos", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UpgradeTempAssetId": { - "MemberType": "Function", - "Name": "UpgradeTempAssetId", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "tempId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "assetId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "UnvalidatedAssetService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "UserGameSettings": { - "Members": { - "AllTutorialsDisabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "AllTutorialsDisabled", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "CameraMode": { - "Category": "Control", - "MemberType": "Property", - "Name": "CameraMode", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "CustomCameraMode" - } - }, - "CameraYInverted": { - "Category": "Data", - "MemberType": "Property", - "Name": "CameraYInverted", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ChatVisible": { - "Category": "Data", - "MemberType": "Property", - "Name": "ChatVisible", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ComputerCameraMovementMode": { - "Category": "Control", - "MemberType": "Property", - "Name": "ComputerCameraMovementMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ComputerCameraMovementMode" - } - }, - "ComputerMovementMode": { - "Category": "Control", - "MemberType": "Property", - "Name": "ComputerMovementMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ComputerMovementMode" - } - }, - "ControlMode": { - "Category": "Control", - "MemberType": "Property", - "Name": "ControlMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ControlMode" - } - }, - "DefaultCameraID": { - "Category": "Data", - "MemberType": "Property", - "Name": "DefaultCameraID", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Fullscreen": { - "Category": "Data", - "MemberType": "Property", - "Name": "Fullscreen", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "FullscreenChanged": { - "MemberType": "Event", - "Name": "FullscreenChanged", - "Parameters": [ - { - "Name": "isFullscreen", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GamepadCameraSensitivity": { - "Category": "Data", - "MemberType": "Property", - "Name": "GamepadCameraSensitivity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "GetCameraYInvertValue": { - "MemberType": "Function", - "Name": "GetCameraYInvertValue", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetOnboardingCompleted": { - "MemberType": "Function", - "Name": "GetOnboardingCompleted", - "Parameters": [ - { - "Name": "onboardingId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetTutorialState": { - "MemberType": "Function", - "Name": "GetTutorialState", - "Parameters": [ - { - "Name": "tutorialId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GraphicsQualityLevel": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "GraphicsQualityLevel", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "HasEverUsedVR": { - "Category": "Data", - "MemberType": "Property", - "Name": "HasEverUsedVR", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "InFullScreen": { - "MemberType": "Function", - "Name": "InFullScreen", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InStudioMode": { - "MemberType": "Function", - "Name": "InStudioMode", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsUsingCameraYInverted": { - "Category": "Data", - "MemberType": "Property", - "Name": "IsUsingCameraYInverted", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "IsUsingGamepadCameraSensitivity": { - "Category": "Data", - "MemberType": "Property", - "Name": "IsUsingGamepadCameraSensitivity", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "MasterVolume": { - "Category": "Data", - "MemberType": "Property", - "Name": "MasterVolume", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MicroProfilerWebServerEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "MicroProfilerWebServerEnabled", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "MicroProfilerWebServerIP": { - "Category": "Data", - "MemberType": "Property", - "Name": "MicroProfilerWebServerIP", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "MicroProfilerWebServerPort": { - "Category": "Data", - "MemberType": "Property", - "Name": "MicroProfilerWebServerPort", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "MouseSensitivity": { - "Category": "Data", - "MemberType": "Property", - "Name": "MouseSensitivity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MouseSensitivityFirstPerson": { - "Category": "Data", - "MemberType": "Property", - "Name": "MouseSensitivityFirstPerson", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "MouseSensitivityThirdPerson": { - "Category": "Data", - "MemberType": "Property", - "Name": "MouseSensitivityThirdPerson", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "OnScreenProfilerEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "OnScreenProfilerEnabled", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "OnboardingsCompleted": { - "Category": "Data", - "MemberType": "Property", - "Name": "OnboardingsCompleted", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "PerformanceStatsVisible": { - "Category": "Data", - "MemberType": "Property", - "Name": "PerformanceStatsVisible", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "PerformanceStatsVisibleChanged": { - "MemberType": "Event", - "Name": "PerformanceStatsVisibleChanged", - "Parameters": [ - { - "Name": "isPerformanceStatsVisible", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PlayerHeight": { - "Category": "Data", - "MemberType": "Property", - "Name": "PlayerHeight", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "PreferredTransparency": { - "Category": "Data", - "MemberType": "Property", - "Name": "PreferredTransparency", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "RCCProfilerRecordFrameRate": { - "Category": "Data", - "MemberType": "Property", - "Name": "RCCProfilerRecordFrameRate", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "RCCProfilerRecordTimeFrame": { - "Category": "Data", - "MemberType": "Property", - "Name": "RCCProfilerRecordTimeFrame", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "ReducedMotion": { - "Category": "Data", - "MemberType": "Property", - "Name": "ReducedMotion", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ResetOnboardingCompleted": { - "MemberType": "Function", - "Name": "ResetOnboardingCompleted", - "Parameters": [ - { - "Name": "onboardingId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RotationType": { - "Category": "Control", - "MemberType": "Property", - "Name": "RotationType", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "RotationType" - } - }, - "SavedQualityLevel": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "SavedQualityLevel", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "SavedQualitySetting" - } - }, - "SetCameraYInvertVisible": { - "MemberType": "Function", - "Name": "SetCameraYInvertVisible", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetGamepadCameraSensitivityVisible": { - "MemberType": "Function", - "Name": "SetGamepadCameraSensitivityVisible", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetOnboardingCompleted": { - "MemberType": "Function", - "Name": "SetOnboardingCompleted", - "Parameters": [ - { - "Name": "onboardingId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetTutorialState": { - "MemberType": "Function", - "Name": "SetTutorialState", - "Parameters": [ - { - "Name": "tutorialId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StartMaximized": { - "Category": "Data", - "MemberType": "Property", - "Name": "StartMaximized", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "StartScreenPosition": { - "Category": "Data", - "MemberType": "Property", - "Name": "StartScreenPosition", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "StartScreenSize": { - "Category": "Data", - "MemberType": "Property", - "Name": "StartScreenSize", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "StudioModeChanged": { - "MemberType": "Event", - "Name": "StudioModeChanged", - "Parameters": [ - { - "Name": "isStudioMode", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TouchCameraMovementMode": { - "Category": "Control", - "MemberType": "Property", - "Name": "TouchCameraMovementMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TouchCameraMovementMode" - } - }, - "TouchMovementMode": { - "Category": "Control", - "MemberType": "Property", - "Name": "TouchMovementMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "TouchMovementMode" - } - }, - "UiNavigationKeyBindEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "UiNavigationKeyBindEnabled", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "UsedCoreGuiIsVisibleToggle": { - "Category": "Data", - "MemberType": "Property", - "Name": "UsedCoreGuiIsVisibleToggle", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "UsedCustomGuiIsVisibleToggle": { - "Category": "Data", - "MemberType": "Property", - "Name": "UsedCustomGuiIsVisibleToggle", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "UsedHideHudShortcut": { - "Category": "Data", - "MemberType": "Property", - "Name": "UsedHideHudShortcut", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "VREnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "VREnabled", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "VRRotationIntensity": { - "Category": "Data", - "MemberType": "Property", - "Name": "VRRotationIntensity", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "VRSafetyBubbleMode": { - "Category": "Control", - "MemberType": "Property", - "Name": "VRSafetyBubbleMode", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "VRSafetyBubbleMode" - } - }, - "VRSmoothRotationEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "VRSmoothRotationEnabled", - "Security": { - "Read": "None", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "VignetteEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "VignetteEnabled", - "Security": { - "Read": "None", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "UserGameSettings", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "UserSettings" - ] - }, - "UserInputService": { - "Members": { - "AccelerometerEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "AccelerometerEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "BottomBarSize": { - "Category": "Data", - "MemberType": "Property", - "Name": "BottomBarSize", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "DeviceAccelerationChanged": { - "MemberType": "Event", - "Name": "DeviceAccelerationChanged", - "Parameters": [ - { - "Name": "acceleration", - "Type": { - "Category": "Class", - "Name": "InputObject" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DeviceGravityChanged": { - "MemberType": "Event", - "Name": "DeviceGravityChanged", - "Parameters": [ - { - "Name": "gravity", - "Type": { - "Category": "Class", - "Name": "InputObject" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "DeviceRotationChanged": { - "MemberType": "Event", - "Name": "DeviceRotationChanged", - "Parameters": [ - { - "Name": "rotation", - "Type": { - "Category": "Class", - "Name": "InputObject" - } - }, - { - "Name": "cframe", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GamepadConnected": { - "MemberType": "Event", - "Name": "GamepadConnected", - "Parameters": [ - { - "Name": "gamepadNum", - "Type": { - "Category": "Enum", - "Name": "UserInputType" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GamepadDisconnected": { - "MemberType": "Event", - "Name": "GamepadDisconnected", - "Parameters": [ - { - "Name": "gamepadNum", - "Type": { - "Category": "Enum", - "Name": "UserInputType" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GamepadEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "GamepadEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "GamepadSupports": { - "MemberType": "Function", - "Name": "GamepadSupports", - "Parameters": [ - { - "Name": "gamepadNum", - "Type": { - "Category": "Enum", - "Name": "UserInputType" - } - }, - { - "Name": "gamepadKeyCode", - "Type": { - "Category": "Enum", - "Name": "KeyCode" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetConnectedGamepads": { - "MemberType": "Function", - "Name": "GetConnectedGamepads", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetDeviceAcceleration": { - "MemberType": "Function", - "Name": "GetDeviceAcceleration", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "InputObject" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetDeviceGravity": { - "MemberType": "Function", - "Name": "GetDeviceGravity", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "InputObject" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetDeviceRotation": { - "MemberType": "Function", - "Name": "GetDeviceRotation", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetDeviceType": { - "MemberType": "Function", - "Name": "GetDeviceType", - "Parameters": {}, - "ReturnType": { - "Category": "Enum", - "Name": "DeviceType" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetFocusedTextBox": { - "MemberType": "Function", - "Name": "GetFocusedTextBox", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "TextBox" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetGamepadConnected": { - "MemberType": "Function", - "Name": "GetGamepadConnected", - "Parameters": [ - { - "Name": "gamepadNum", - "Type": { - "Category": "Enum", - "Name": "UserInputType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetGamepadState": { - "MemberType": "Function", - "Name": "GetGamepadState", - "Parameters": [ - { - "Name": "gamepadNum", - "Type": { - "Category": "Enum", - "Name": "UserInputType" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetKeysPressed": { - "MemberType": "Function", - "Name": "GetKeysPressed", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetLastInputType": { - "MemberType": "Function", - "Name": "GetLastInputType", - "Parameters": {}, - "ReturnType": { - "Category": "Enum", - "Name": "UserInputType" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetMouseButtonsPressed": { - "MemberType": "Function", - "Name": "GetMouseButtonsPressed", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetMouseDelta": { - "MemberType": "Function", - "Name": "GetMouseDelta", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Vector2" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetMouseLocation": { - "MemberType": "Function", - "Name": "GetMouseLocation", - "Parameters": {}, - "ReturnType": { - "Category": "DataType", - "Name": "Vector2" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetNavigationGamepads": { - "MemberType": "Function", - "Name": "GetNavigationGamepads", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetPlatform": { - "MemberType": "Function", - "Name": "GetPlatform", - "Parameters": {}, - "ReturnType": { - "Category": "Enum", - "Name": "Platform" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetStringForKeyCode": { - "MemberType": "Function", - "Name": "GetStringForKeyCode", - "Parameters": [ - { - "Name": "keyCode", - "Type": { - "Category": "Enum", - "Name": "KeyCode" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetSupportedGamepadKeyCodes": { - "MemberType": "Function", - "Name": "GetSupportedGamepadKeyCodes", - "Parameters": [ - { - "Name": "gamepadNum", - "Type": { - "Category": "Enum", - "Name": "UserInputType" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetUserCFrame": { - "MemberType": "Function", - "Name": "GetUserCFrame", - "Parameters": [ - { - "Name": "type", - "Type": { - "Category": "Enum", - "Name": "UserCFrame" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "CFrame" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GyroscopeEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "GyroscopeEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "InputBegan": { - "MemberType": "Event", - "Name": "InputBegan", - "Parameters": [ - { - "Name": "input", - "Type": { - "Category": "Class", - "Name": "InputObject" - } - }, - { - "Name": "gameProcessedEvent", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InputChanged": { - "MemberType": "Event", - "Name": "InputChanged", - "Parameters": [ - { - "Name": "input", - "Type": { - "Category": "Class", - "Name": "InputObject" - } - }, - { - "Name": "gameProcessedEvent", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "InputEnded": { - "MemberType": "Event", - "Name": "InputEnded", - "Parameters": [ - { - "Name": "input", - "Type": { - "Category": "Class", - "Name": "InputObject" - } - }, - { - "Name": "gameProcessedEvent", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsGamepadButtonDown": { - "MemberType": "Function", - "Name": "IsGamepadButtonDown", - "Parameters": [ - { - "Name": "gamepadNum", - "Type": { - "Category": "Enum", - "Name": "UserInputType" - } - }, - { - "Name": "gamepadKeyCode", - "Type": { - "Category": "Enum", - "Name": "KeyCode" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsKeyDown": { - "MemberType": "Function", - "Name": "IsKeyDown", - "Parameters": [ - { - "Name": "keyCode", - "Type": { - "Category": "Enum", - "Name": "KeyCode" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsMouseButtonPressed": { - "MemberType": "Function", - "Name": "IsMouseButtonPressed", - "Parameters": [ - { - "Name": "mouseButton", - "Type": { - "Category": "Enum", - "Name": "UserInputType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsNavigationGamepad": { - "MemberType": "Function", - "Name": "IsNavigationGamepad", - "Parameters": [ - { - "Name": "gamepadEnum", - "Type": { - "Category": "Enum", - "Name": "UserInputType" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "JumpRequest": { - "MemberType": "Event", - "Name": "JumpRequest", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "KeyboardEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "KeyboardEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "LastInputTypeChanged": { - "MemberType": "Event", - "Name": "LastInputTypeChanged", - "Parameters": [ - { - "Name": "lastInputType", - "Type": { - "Category": "Enum", - "Name": "UserInputType" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "LegacyInputEventsEnabled": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "LegacyInputEventsEnabled", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "ModalEnabled": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "ModalEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "MouseBehavior": { - "Category": "Data", - "MemberType": "Property", - "Name": "MouseBehavior", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "MouseBehavior" - } - }, - "MouseDeltaSensitivity": { - "Category": "Data", - "MemberType": "Property", - "Name": "MouseDeltaSensitivity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "MouseEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "MouseEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "MouseIcon": { - "Category": "Data", - "MemberType": "Property", - "Name": "MouseIcon", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "MouseIconEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "MouseIconEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "NavBarSize": { - "Category": "Data", - "MemberType": "Property", - "Name": "NavBarSize", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "OnScreenKeyboardAnimationDuration": { - "Category": "Data", - "MemberType": "Property", - "Name": "OnScreenKeyboardAnimationDuration", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "OnScreenKeyboardPosition": { - "Category": "Data", - "MemberType": "Property", - "Name": "OnScreenKeyboardPosition", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "OnScreenKeyboardSize": { - "Category": "Data", - "MemberType": "Property", - "Name": "OnScreenKeyboardSize", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "OnScreenKeyboardVisible": { - "Category": "Data", - "MemberType": "Property", - "Name": "OnScreenKeyboardVisible", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "OverrideMouseIconBehavior": { - "Category": "Data", - "MemberType": "Property", - "Name": "OverrideMouseIconBehavior", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "OverrideMouseIconBehavior" - } - }, - "PointerAction": { - "MemberType": "Event", - "Name": "PointerAction", - "Parameters": [ - { - "Name": "wheel", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "pan", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - }, - { - "Name": "pinch", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "gameProcessedEvent", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RecenterUserHeadCFrame": { - "MemberType": "Function", - "Name": "RecenterUserHeadCFrame", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RightBarSize": { - "Category": "Data", - "MemberType": "Property", - "Name": "RightBarSize", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "SendAppUISizes": { - "MemberType": "Function", - "Name": "SendAppUISizes", - "Parameters": [ - { - "Name": "statusBarSize", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - }, - { - "Name": "navBarSize", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - }, - { - "Name": "bottomBarSize", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - }, - { - "Name": "rightBarSize", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetNavigationGamepad": { - "MemberType": "Function", - "Name": "SetNavigationGamepad", - "Parameters": [ - { - "Name": "gamepadEnum", - "Type": { - "Category": "Enum", - "Name": "UserInputType" - } - }, - { - "Name": "enabled", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StatusBarSize": { - "Category": "Data", - "MemberType": "Property", - "Name": "StatusBarSize", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "StatusBarTapped": { - "MemberType": "Event", - "Name": "StatusBarTapped", - "Parameters": [ - { - "Name": "position", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TextBoxFocusReleased": { - "MemberType": "Event", - "Name": "TextBoxFocusReleased", - "Parameters": [ - { - "Name": "textboxReleased", - "Type": { - "Category": "Class", - "Name": "TextBox" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TextBoxFocused": { - "MemberType": "Event", - "Name": "TextBoxFocused", - "Parameters": [ - { - "Name": "textboxFocused", - "Type": { - "Category": "Class", - "Name": "TextBox" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TouchEnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "TouchEnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "TouchEnded": { - "MemberType": "Event", - "Name": "TouchEnded", - "Parameters": [ - { - "Name": "touch", - "Type": { - "Category": "Class", - "Name": "InputObject" - } - }, - { - "Name": "gameProcessedEvent", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TouchLongPress": { - "MemberType": "Event", - "Name": "TouchLongPress", - "Parameters": [ - { - "Name": "touchPositions", - "Type": { - "Category": "Group", - "Name": "Array" - } - }, - { - "Name": "state", - "Type": { - "Category": "Enum", - "Name": "UserInputState" - } - }, - { - "Name": "gameProcessedEvent", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TouchMoved": { - "MemberType": "Event", - "Name": "TouchMoved", - "Parameters": [ - { - "Name": "touch", - "Type": { - "Category": "Class", - "Name": "InputObject" - } - }, - { - "Name": "gameProcessedEvent", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TouchPan": { - "MemberType": "Event", - "Name": "TouchPan", - "Parameters": [ - { - "Name": "touchPositions", - "Type": { - "Category": "Group", - "Name": "Array" - } - }, - { - "Name": "totalTranslation", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - }, - { - "Name": "velocity", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - }, - { - "Name": "state", - "Type": { - "Category": "Enum", - "Name": "UserInputState" - } - }, - { - "Name": "gameProcessedEvent", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TouchPinch": { - "MemberType": "Event", - "Name": "TouchPinch", - "Parameters": [ - { - "Name": "touchPositions", - "Type": { - "Category": "Group", - "Name": "Array" - } - }, - { - "Name": "scale", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "velocity", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "state", - "Type": { - "Category": "Enum", - "Name": "UserInputState" - } - }, - { - "Name": "gameProcessedEvent", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TouchRotate": { - "MemberType": "Event", - "Name": "TouchRotate", - "Parameters": [ - { - "Name": "touchPositions", - "Type": { - "Category": "Group", - "Name": "Array" - } - }, - { - "Name": "rotation", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "velocity", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "state", - "Type": { - "Category": "Enum", - "Name": "UserInputState" - } - }, - { - "Name": "gameProcessedEvent", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TouchStarted": { - "MemberType": "Event", - "Name": "TouchStarted", - "Parameters": [ - { - "Name": "touch", - "Type": { - "Category": "Class", - "Name": "InputObject" - } - }, - { - "Name": "gameProcessedEvent", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TouchSwipe": { - "MemberType": "Event", - "Name": "TouchSwipe", - "Parameters": [ - { - "Name": "swipeDirection", - "Type": { - "Category": "Enum", - "Name": "SwipeDirection" - } - }, - { - "Name": "numberOfTouches", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "gameProcessedEvent", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TouchTap": { - "MemberType": "Event", - "Name": "TouchTap", - "Parameters": [ - { - "Name": "touchPositions", - "Type": { - "Category": "Group", - "Name": "Array" - } - }, - { - "Name": "gameProcessedEvent", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TouchTapInWorld": { - "MemberType": "Event", - "Name": "TouchTapInWorld", - "Parameters": [ - { - "Name": "position", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - }, - { - "Name": "processedByUI", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UserCFrameChanged": { - "MemberType": "Event", - "Name": "UserCFrameChanged", - "Parameters": [ - { - "Name": "type", - "Type": { - "Category": "Enum", - "Name": "UserCFrame" - } - }, - { - "Name": "value", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UserHeadCFrame": { - "Category": "Data", - "MemberType": "Property", - "Name": "UserHeadCFrame", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "VREnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "VREnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "WindowFocusReleased": { - "MemberType": "Event", - "Name": "WindowFocusReleased", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "WindowFocused": { - "MemberType": "Event", - "Name": "WindowFocused", - "Parameters": {}, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "UserInputService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "UserService": { - "Members": { - "GetUserInfosByUserIdsAsync": { - "MemberType": "Function", - "Name": "GetUserInfosByUserIdsAsync", - "Parameters": [ - { - "Name": "userIds", - "Type": { - "Category": "Group", - "Name": "Array" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "UserService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "UserSettings": { - "Members": { - "IsUserFeatureEnabled": { - "MemberType": "Function", - "Name": "IsUserFeatureEnabled", - "Parameters": [ - { - "Name": "name", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Reset": { - "MemberType": "Function", - "Name": "Reset", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SaveState": { - "MemberType": "Function", - "Name": "SaveState", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "UserSettings", - "Superclass": "GenericSettings", - "Tags": [ - "NotCreatable" - ] - }, - "UserStorageService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "UserStorageService", - "Superclass": "LocalStorageService", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "VRService": { - "Members": { - "AutomaticScaling": { - "Category": "Data", - "MemberType": "Property", - "Name": "AutomaticScaling", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "VRScaling" - } - }, - "DidPointerHit": { - "Category": "Data", - "MemberType": "Property", - "Name": "DidPointerHit", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "FadeOutViewOnCollision": { - "Category": "Data", - "MemberType": "Property", - "Name": "FadeOutViewOnCollision", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "GetTouchpadMode": { - "MemberType": "Function", - "Name": "GetTouchpadMode", - "Parameters": [ - { - "Name": "pad", - "Type": { - "Category": "Enum", - "Name": "VRTouchpad" - } - } - ], - "ReturnType": { - "Category": "Enum", - "Name": "VRTouchpadMode" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetUserCFrame": { - "MemberType": "Function", - "Name": "GetUserCFrame", - "Parameters": [ - { - "Name": "type", - "Type": { - "Category": "Enum", - "Name": "UserCFrame" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "CFrame" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetUserCFrameEnabled": { - "MemberType": "Function", - "Name": "GetUserCFrameEnabled", - "Parameters": [ - { - "Name": "type", - "Type": { - "Category": "Enum", - "Name": "UserCFrame" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GuiInputUserCFrame": { - "Category": "Data", - "MemberType": "Property", - "Name": "GuiInputUserCFrame", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "UserCFrame" - } - }, - "IsMaquettes": { - "MemberType": "Function", - "Name": "IsMaquettes", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsVRAppBuild": { - "MemberType": "Function", - "Name": "IsVRAppBuild", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "LaserDistance": { - "Category": "Data", - "MemberType": "Property", - "Name": "LaserDistance", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "LaserPointerTriggered": { - "MemberType": "Event", - "Name": "LaserPointerTriggered", - "Parameters": [ - { - "Name": "input", - "Type": { - "Category": "Class", - "Name": "InputObject" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "NavigationRequested": { - "MemberType": "Event", - "Name": "NavigationRequested", - "Parameters": [ - { - "Name": "cframe", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - }, - { - "Name": "inputUserCFrame", - "Type": { - "Category": "Enum", - "Name": "UserCFrame" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PointerHitCFrame": { - "Category": "Data", - "MemberType": "Property", - "Name": "PointerHitCFrame", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "RecenterUserHeadCFrame": { - "MemberType": "Function", - "Name": "RecenterUserHeadCFrame", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RequestNavigation": { - "MemberType": "Function", - "Name": "RequestNavigation", - "Parameters": [ - { - "Name": "cframe", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - }, - { - "Name": "inputUserCFrame", - "Type": { - "Category": "Enum", - "Name": "UserCFrame" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetTouchpadMode": { - "MemberType": "Function", - "Name": "SetTouchpadMode", - "Parameters": [ - { - "Name": "pad", - "Type": { - "Category": "Enum", - "Name": "VRTouchpad" - } - }, - { - "Name": "mode", - "Type": { - "Category": "Enum", - "Name": "VRTouchpadMode" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TouchpadModeChanged": { - "MemberType": "Event", - "Name": "TouchpadModeChanged", - "Parameters": [ - { - "Name": "pad", - "Type": { - "Category": "Enum", - "Name": "VRTouchpad" - } - }, - { - "Name": "mode", - "Type": { - "Category": "Enum", - "Name": "VRTouchpadMode" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UserCFrameChanged": { - "MemberType": "Event", - "Name": "UserCFrameChanged", - "Parameters": [ - { - "Name": "type", - "Type": { - "Category": "Enum", - "Name": "UserCFrame" - } - }, - { - "Name": "value", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "UserCFrameEnabled": { - "MemberType": "Event", - "Name": "UserCFrameEnabled", - "Parameters": [ - { - "Name": "type", - "Type": { - "Category": "Enum", - "Name": "UserCFrame" - } - }, - { - "Name": "enabled", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "VRDeviceAvailable": { - "Category": "Data", - "MemberType": "Property", - "Name": "VRDeviceAvailable", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "VRDeviceName": { - "Category": "Data", - "MemberType": "Property", - "Name": "VRDeviceName", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "VREnabled": { - "Category": "Data", - "MemberType": "Property", - "Name": "VREnabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "VRSessionState": { - "Category": "Data", - "MemberType": "Property", - "Name": "VRSessionState", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "VRSessionState" - } - } - }, - "MemoryCategory": "Instances", - "Name": "VRService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "VRStatusService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "VRStatusService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "ValueBase": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "ValueBase", - "Superclass": "Instance", - "Tags": [ - "NotCreatable" - ] - }, - "Vector3Curve": { - "Members": { - "GetValueAtTime": { - "MemberType": "Function", - "Name": "GetValueAtTime", - "Parameters": [ - { - "Name": "time", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "X": { - "MemberType": "Function", - "Name": "X", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "FloatCurve" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Y": { - "MemberType": "Function", - "Name": "Y", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "FloatCurve" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Z": { - "MemberType": "Function", - "Name": "Z", - "Parameters": {}, - "ReturnType": { - "Category": "Class", - "Name": "FloatCurve" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "Vector3Curve", - "Superclass": "Instance" - }, - "Vector3Value": { - "Members": { - "Changed": { - "MemberType": "Event", - "Name": "Changed", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Value": { - "Category": "Data", - "MemberType": "Property", - "Name": "Value", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "changed": { - "MemberType": "Event", - "Name": "changed", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "Vector3Value", - "Superclass": "ValueBase" - }, - "VectorForce": { - "Members": { - "ApplyAtCenterOfMass": { - "Category": "VectorForce", - "MemberType": "Property", - "Name": "ApplyAtCenterOfMass", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Force": { - "Category": "VectorForce", - "MemberType": "Property", - "Name": "Force", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "RelativeTo": { - "Category": "VectorForce", - "MemberType": "Property", - "Name": "RelativeTo", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ActuatorRelativeTo" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "VectorForce", - "Superclass": "Constraint" - }, - "VehicleController": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "VehicleController", - "Superclass": "Controller" - }, - "VehicleSeat": { - "Members": { - "AreHingesDetected": { - "Category": "Control", - "MemberType": "Property", - "Name": "AreHingesDetected", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "Disabled": { - "Category": "Control", - "MemberType": "Property", - "Name": "Disabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "HeadsUpDisplay": { - "Category": "Control", - "MemberType": "Property", - "Name": "HeadsUpDisplay", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "MaxSpeed": { - "Category": "Control", - "MemberType": "Property", - "Name": "MaxSpeed", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Occupant": { - "Category": "Control", - "MemberType": "Property", - "Name": "Occupant", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Humanoid" - } - }, - "Sit": { - "MemberType": "Function", - "Name": "Sit", - "Parameters": [ - { - "Name": "humanoid", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Steer": { - "Category": "Control", - "MemberType": "Property", - "Name": "Steer", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "SteerFloat": { - "Category": "Control", - "MemberType": "Property", - "Name": "SteerFloat", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Throttle": { - "Category": "Control", - "MemberType": "Property", - "Name": "Throttle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "ThrottleFloat": { - "Category": "Control", - "MemberType": "Property", - "Name": "ThrottleFloat", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Torque": { - "Category": "Control", - "MemberType": "Property", - "Name": "Torque", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "TurnSpeed": { - "Category": "Control", - "MemberType": "Property", - "Name": "TurnSpeed", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "VehicleSeat", - "Superclass": "BasePart" - }, - "VelocityMotor": { - "Members": { - "CurrentAngle": { - "Category": "Data", - "MemberType": "Property", - "Name": "CurrentAngle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "DesiredAngle": { - "Category": "Data", - "MemberType": "Property", - "Name": "DesiredAngle", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "Hole": { - "Category": "Data", - "MemberType": "Property", - "Name": "Hole", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Hole" - } - }, - "MaxVelocity": { - "Category": "Data", - "MemberType": "Property", - "Name": "MaxVelocity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "VelocityMotor", - "Superclass": "JointInstance" - }, - "VersionControlService": { - "Members": { - "ScriptCollabEnabled": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "ScriptCollabEnabled", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "VersionControlService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "VideoCaptureService": { - "Members": { - "Active": { - "Category": "Data", - "MemberType": "Property", - "Name": "Active", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "CameraID": { - "Category": "Data", - "MemberType": "Property", - "Name": "CameraID", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "DevicesChanged": { - "MemberType": "Event", - "Name": "DevicesChanged", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Error": { - "MemberType": "Event", - "Name": "Error", - "Parameters": [ - { - "Name": "cameraid", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "errorcode", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetCameraDevices": { - "MemberType": "Function", - "Name": "GetCameraDevices", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Map" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Started": { - "MemberType": "Event", - "Name": "Started", - "Parameters": [ - { - "Name": "cameraid", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Stopped": { - "MemberType": "Event", - "Name": "Stopped", - "Parameters": [ - { - "Name": "cameraid", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "VideoCaptureService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "VideoFrame": { - "Members": { - "DidLoop": { - "MemberType": "Event", - "Name": "DidLoop", - "Parameters": [ - { - "Name": "video", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Ended": { - "MemberType": "Event", - "Name": "Ended", - "Parameters": [ - { - "Name": "video", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsLoaded": { - "Category": "Video", - "MemberType": "Property", - "Name": "IsLoaded", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Loaded": { - "MemberType": "Event", - "Name": "Loaded", - "Parameters": [ - { - "Name": "video", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Looped": { - "Category": "Video", - "MemberType": "Property", - "Name": "Looped", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Pause": { - "MemberType": "Function", - "Name": "Pause", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Paused": { - "MemberType": "Event", - "Name": "Paused", - "Parameters": [ - { - "Name": "video", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Play": { - "MemberType": "Function", - "Name": "Play", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Played": { - "MemberType": "Event", - "Name": "Played", - "Parameters": [ - { - "Name": "video", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Playing": { - "Category": "Video", - "MemberType": "Property", - "Name": "Playing", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Resolution": { - "Category": "Video", - "MemberType": "Property", - "Name": "Resolution", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector2" - } - }, - "TimeLength": { - "Category": "Video", - "MemberType": "Property", - "Name": "TimeLength", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "TimePosition": { - "Category": "Video", - "MemberType": "Property", - "Name": "TimePosition", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "Video": { - "Category": "Video", - "MemberType": "Property", - "Name": "Video", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "Volume": { - "Category": "Video", - "MemberType": "Property", - "Name": "Volume", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Gui", - "Name": "VideoFrame", - "Superclass": "GuiObject" - }, - "VideoService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "VideoService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "ViewportFrame": { - "Members": { - "Ambient": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Ambient", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "CurrentCamera": { - "Category": "Data", - "MemberType": "Property", - "Name": "CurrentCamera", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Camera" - } - }, - "ImageColor3": { - "Category": "Image", - "MemberType": "Property", - "Name": "ImageColor3", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "ImageTransparency": { - "Category": "Image", - "MemberType": "Property", - "Name": "ImageTransparency", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "IsMirrored": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "IsMirrored", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "LightColor": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "LightColor", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "LightDirection": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "LightDirection", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - } - }, - "MemoryCategory": "Gui", - "Name": "ViewportFrame", - "Superclass": "GuiObject" - }, - "VirtualInputManager": { - "Members": { - "AdditionalLuaState": { - "Category": "Data", - "MemberType": "Property", - "Name": "AdditionalLuaState", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "Dump": { - "MemberType": "Function", - "Name": "Dump", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "HandleGamepadAxisInput": { - "MemberType": "Function", - "Name": "HandleGamepadAxisInput", - "Parameters": [ - { - "Name": "objectId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "keyCode", - "Type": { - "Category": "Enum", - "Name": "KeyCode" - } - }, - { - "Name": "x", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "y", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "z", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "HandleGamepadButtonInput": { - "MemberType": "Function", - "Name": "HandleGamepadButtonInput", - "Parameters": [ - { - "Name": "deviceId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "keyCode", - "Type": { - "Category": "Enum", - "Name": "KeyCode" - } - }, - { - "Name": "buttonState", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "HandleGamepadConnect": { - "MemberType": "Function", - "Name": "HandleGamepadConnect", - "Parameters": [ - { - "Name": "deviceId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "HandleGamepadDisconnect": { - "MemberType": "Function", - "Name": "HandleGamepadDisconnect", - "Parameters": [ - { - "Name": "deviceId", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PlaybackCompleted": { - "MemberType": "Event", - "Name": "PlaybackCompleted", - "Parameters": [ - { - "Name": "additionalLuaState", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "RecordingCompleted": { - "MemberType": "Event", - "Name": "RecordingCompleted", - "Parameters": [ - { - "Name": "result", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SendAccelerometerEvent": { - "MemberType": "Function", - "Name": "SendAccelerometerEvent", - "Parameters": [ - { - "Name": "x", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "y", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "z", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SendGravityEvent": { - "MemberType": "Function", - "Name": "SendGravityEvent", - "Parameters": [ - { - "Name": "x", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "y", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "z", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SendGyroscopeEvent": { - "MemberType": "Function", - "Name": "SendGyroscopeEvent", - "Parameters": [ - { - "Name": "quatX", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "quatY", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "quatZ", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "quatW", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SendKeyEvent": { - "MemberType": "Function", - "Name": "SendKeyEvent", - "Parameters": [ - { - "Name": "isPressed", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "keyCode", - "Type": { - "Category": "Enum", - "Name": "KeyCode" - } - }, - { - "Name": "isRepeatedKey", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "layerCollector", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SendMouseButtonEvent": { - "MemberType": "Function", - "Name": "SendMouseButtonEvent", - "Parameters": [ - { - "Name": "x", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "y", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "mouseButton", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "isDown", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "layerCollector", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Name": "repeatCount", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SendMouseMoveEvent": { - "MemberType": "Function", - "Name": "SendMouseMoveEvent", - "Parameters": [ - { - "Name": "x", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "y", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "layerCollector", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SendMouseWheelEvent": { - "MemberType": "Function", - "Name": "SendMouseWheelEvent", - "Parameters": [ - { - "Name": "x", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "y", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "isForwardScroll", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Name": "layerCollector", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SendTextInputCharacterEvent": { - "MemberType": "Function", - "Name": "SendTextInputCharacterEvent", - "Parameters": [ - { - "Name": "str", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "layerCollector", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SendTouchEvent": { - "MemberType": "Function", - "Name": "SendTouchEvent", - "Parameters": [ - { - "Name": "touchId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "state", - "Type": { - "Category": "Primitive", - "Name": "int" - } - }, - { - "Name": "x", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "y", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetInputTypesToIgnore": { - "MemberType": "Function", - "Name": "SetInputTypesToIgnore", - "Parameters": [ - { - "Name": "inputTypesToIgnore", - "Type": { - "Category": "Group", - "Name": "Variant" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StartPlaying": { - "MemberType": "Function", - "Name": "StartPlaying", - "Parameters": [ - { - "Name": "fileName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StartPlayingJSON": { - "MemberType": "Function", - "Name": "StartPlayingJSON", - "Parameters": [ - { - "Name": "string", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StartRecording": { - "MemberType": "Function", - "Name": "StartRecording", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StopPlaying": { - "MemberType": "Function", - "Name": "StopPlaying", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StopRecording": { - "MemberType": "Function", - "Name": "StopRecording", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "WaitForInputEventsProcessed": { - "MemberType": "Function", - "Name": "WaitForInputEventsProcessed", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "sendRobloxEvent": { - "MemberType": "Function", - "Name": "sendRobloxEvent", - "Parameters": [ - { - "Name": "namespace", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "detail", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "detailType", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "sendThemeChangeEvent": { - "MemberType": "Function", - "Name": "sendThemeChangeEvent", - "Parameters": [ - { - "Name": "themeName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "VirtualInputManager", - "Superclass": "Instance", - "Tags": [ - "Service" - ] - }, - "VirtualUser": { - "Members": { - "Button1Down": { - "MemberType": "Function", - "Name": "Button1Down", - "Parameters": [ - { - "Name": "position", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - }, - { - "Default": "Identity", - "Name": "camera", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Button1Up": { - "MemberType": "Function", - "Name": "Button1Up", - "Parameters": [ - { - "Name": "position", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - }, - { - "Default": "Identity", - "Name": "camera", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Button2Down": { - "MemberType": "Function", - "Name": "Button2Down", - "Parameters": [ - { - "Name": "position", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - }, - { - "Default": "Identity", - "Name": "camera", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Button2Up": { - "MemberType": "Function", - "Name": "Button2Up", - "Parameters": [ - { - "Name": "position", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - }, - { - "Default": "Identity", - "Name": "camera", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CaptureController": { - "MemberType": "Function", - "Name": "CaptureController", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ClickButton1": { - "MemberType": "Function", - "Name": "ClickButton1", - "Parameters": [ - { - "Name": "position", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - }, - { - "Default": "Identity", - "Name": "camera", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ClickButton2": { - "MemberType": "Function", - "Name": "ClickButton2", - "Parameters": [ - { - "Name": "position", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - }, - { - "Default": "Identity", - "Name": "camera", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MoveMouse": { - "MemberType": "Function", - "Name": "MoveMouse", - "Parameters": [ - { - "Name": "position", - "Type": { - "Category": "DataType", - "Name": "Vector2" - } - }, - { - "Default": "Identity", - "Name": "camera", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetKeyDown": { - "MemberType": "Function", - "Name": "SetKeyDown", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetKeyUp": { - "MemberType": "Function", - "Name": "SetKeyUp", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StartRecording": { - "MemberType": "Function", - "Name": "StartRecording", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "StopRecording": { - "MemberType": "Function", - "Name": "StopRecording", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "TypeKey": { - "MemberType": "Function", - "Name": "TypeKey", - "Parameters": [ - { - "Name": "key", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "Instances", - "Name": "VirtualUser", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "VisibilityCheckDispatcher": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "VisibilityCheckDispatcher", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "VisibilityService": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "VisibilityService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "Visit": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "Visit", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotReplicated" - ] - }, - "VoiceChatInternal": { - "Members": { - "GetAndClearCallFailureMessage": { - "MemberType": "Function", - "Name": "GetAndClearCallFailureMessage", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetAudioProcessingSettings": { - "MemberType": "Function", - "Name": "GetAudioProcessingSettings", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetChannelId": { - "MemberType": "Function", - "Name": "GetChannelId", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetGroupId": { - "MemberType": "Function", - "Name": "GetGroupId", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetMicDevices": { - "MemberType": "Function", - "Name": "GetMicDevices", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetParticipants": { - "MemberType": "Function", - "Name": "GetParticipants", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Array" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetSessionId": { - "MemberType": "Function", - "Name": "GetSessionId", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "GetSpeakerDevices": { - "MemberType": "Function", - "Name": "GetSpeakerDevices", - "Parameters": {}, - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetVoiceChatApiVersion": { - "MemberType": "Function", - "Name": "GetVoiceChatApiVersion", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetVoiceChatAvailable": { - "MemberType": "Function", - "Name": "GetVoiceChatAvailable", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetVoiceExperienceId": { - "MemberType": "Function", - "Name": "GetVoiceExperienceId", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsContextVoiceEnabled": { - "MemberType": "Function", - "Name": "IsContextVoiceEnabled", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsPublishPaused": { - "MemberType": "Function", - "Name": "IsPublishPaused", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "IsSubscribePaused": { - "MemberType": "Function", - "Name": "IsSubscribePaused", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "IsVoiceEnabledForUserIdAsync": { - "MemberType": "Function", - "Name": "IsVoiceEnabledForUserIdAsync", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "JoinByGroupId": { - "MemberType": "Function", - "Name": "JoinByGroupId", - "Parameters": [ - { - "Name": "groupId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Default": "false", - "Name": "isMicMuted", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "JoinByGroupIdToken": { - "MemberType": "Function", - "Name": "JoinByGroupIdToken", - "Parameters": [ - { - "Name": "groupId", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "isMicMuted", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Default": "false", - "Name": "isRetry", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "Leave": { - "MemberType": "Function", - "Name": "Leave", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "LocalPlayerModerated": { - "MemberType": "Event", - "Name": "LocalPlayerModerated", - "Parameters": {}, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ParticipantsStateChanged": { - "MemberType": "Event", - "Name": "ParticipantsStateChanged", - "Parameters": [ - { - "Name": "participantsLeft", - "Type": { - "Category": "Group", - "Name": "Array" - } - }, - { - "Name": "participantsJoined", - "Type": { - "Category": "Group", - "Name": "Array" - } - }, - { - "Name": "updatedStates", - "Type": { - "Category": "Group", - "Name": "Array" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "PlayerMicActivitySignalChange": { - "MemberType": "Event", - "Name": "PlayerMicActivitySignalChange", - "Parameters": [ - { - "Name": "activityInfo", - "Type": { - "Category": "Group", - "Name": "Dictionary" - } - } - ], - "Security": "RobloxScriptSecurity", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "PublishPause": { - "MemberType": "Function", - "Name": "PublishPause", - "Parameters": [ - { - "Name": "paused", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "SetMicDevice": { - "MemberType": "Function", - "Name": "SetMicDevice", - "Parameters": [ - { - "Name": "micDeviceName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "micDeviceGuid", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "SetSpeakerDevice": { - "MemberType": "Function", - "Name": "SetSpeakerDevice", - "Parameters": [ - { - "Name": "speakerDeviceName", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "speakerDeviceGuid", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "StateChanged": { - "MemberType": "Event", - "Name": "StateChanged", - "Parameters": [ - { - "Name": "old", - "Type": { - "Category": "Enum", - "Name": "VoiceChatState" - } - }, - { - "Name": "new", - "Type": { - "Category": "Enum", - "Name": "VoiceChatState" - } - } - ], - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "SubscribeBlock": { - "MemberType": "Function", - "Name": "SubscribeBlock", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SubscribePause": { - "MemberType": "Function", - "Name": "SubscribePause", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - }, - { - "Name": "paused", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "SubscribePauseAll": { - "MemberType": "Function", - "Name": "SubscribePauseAll", - "Parameters": [ - { - "Name": "paused", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "SubscribeRetry": { - "MemberType": "Function", - "Name": "SubscribeRetry", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SubscribeUnblock": { - "MemberType": "Function", - "Name": "SubscribeUnblock", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "VoiceChatState": { - "Category": "State", - "MemberType": "Property", - "Name": "VoiceChatState", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "VoiceChatState" - } - } - }, - "MemoryCategory": "Instances", - "Name": "VoiceChatInternal", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service", - "NotBrowsable" - ] - }, - "VoiceChatService": { - "Members": { - "EnableDefaultVoice": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "EnableDefaultVoice", - "Security": { - "Read": "PluginSecurity", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "IsVoiceEnabledForUserIdAsync": { - "MemberType": "Function", - "Name": "IsVoiceEnabledForUserIdAsync", - "Parameters": [ - { - "Name": "userId", - "Type": { - "Category": "Primitive", - "Name": "int64" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Yields": true - }, - "ThreadSafety": "Unsafe" - }, - "UseNewJoinFlow": { - "Category": "Data", - "MemberType": "Property", - "Name": "UseNewJoinFlow", - "Security": { - "Read": "RobloxSecurity", - "Write": "RobloxSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "VoiceChatEnabledForPlaceOnRcc": { - "Category": "State", - "MemberType": "Property", - "Name": "VoiceChatEnabledForPlaceOnRcc", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "VoiceChatEnabledForUniverseOnRcc": { - "Category": "State", - "MemberType": "Property", - "Name": "VoiceChatEnabledForUniverseOnRcc", - "Security": { - "Read": "RobloxScriptSecurity", - "Write": "RobloxScriptSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Hidden": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - } - }, - "MemoryCategory": "Instances", - "Name": "VoiceChatService", - "Superclass": "Instance", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "WedgePart": { - "Members": {}, - "MemoryCategory": "Instances", - "Name": "WedgePart", - "Superclass": "FormFactorPart" - }, - "Weld": { - "Members": {}, - "MemoryCategory": "PhysicsParts", - "Name": "Weld", - "Superclass": "JointInstance" - }, - "WeldConstraint": { - "Members": { - "Active": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Active", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Enabled": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Part0": { - "Category": "Parts", - "MemberType": "Property", - "Name": "Part0", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "BasePart" - } - }, - "Part1": { - "Category": "Parts", - "MemberType": "Property", - "Name": "Part1", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": false - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "BasePart" - } - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "WeldConstraint", - "Superclass": "Instance" - }, - "Wire": { - "Members": { - "Connected": { - "Category": "Data", - "MemberType": "Property", - "Name": "Connected", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": true - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "SourceInstance": { - "Category": "Data", - "MemberType": "Property", - "Name": "SourceInstance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - }, - "SourceName": { - "Category": "Data", - "MemberType": "Property", - "Name": "SourceName", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - }, - "TargetInstance": { - "Category": "Data", - "MemberType": "Property", - "Name": "TargetInstance", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Instance" - } - }, - "TargetName": { - "Category": "Data", - "MemberType": "Property", - "Name": "TargetName", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "string" - } - } - }, - "MemoryCategory": "Instances", - "Name": "Wire", - "Superclass": "Instance", - "Tags": [ - "NotBrowsable" - ] - }, - "WireframeHandleAdornment": { - "Members": { - "AddLine": { - "MemberType": "Function", - "Name": "AddLine", - "Parameters": [ - { - "Name": "from", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "to", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "AddLines": { - "MemberType": "Function", - "Name": "AddLines", - "Parameters": [ - { - "Name": "points", - "Type": { - "Category": "Group", - "Name": "Array" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "AddPath": { - "MemberType": "Function", - "Name": "AddPath", - "Parameters": [ - { - "Name": "points", - "Type": { - "Category": "Group", - "Name": "Array" - } - }, - { - "Name": "loop", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Clear": { - "MemberType": "Function", - "Name": "Clear", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Scale": { - "Category": "Data", - "MemberType": "Property", - "Name": "Scale", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - } - }, - "MemoryCategory": "Instances", - "Name": "WireframeHandleAdornment", - "Superclass": "HandleAdornment" - }, - "Workspace": { - "Members": { - "AirDensity": { - "Category": "AirProperties", - "MemberType": "Property", - "Name": "AirDensity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "AllowThirdPartySales": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "AllowThirdPartySales", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "AvatarUnificationMode": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "AvatarUnificationMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "AvatarUnificationMode" - } - }, - "BreakJoints": { - "MemberType": "Function", - "Name": "BreakJoints", - "Parameters": [ - { - "Name": "objects", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "CalculateJumpDistance": { - "MemberType": "Function", - "Name": "CalculateJumpDistance", - "Parameters": [ - { - "Name": "gravity", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "jumpPower", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "walkSpeed", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "float" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CalculateJumpHeight": { - "MemberType": "Function", - "Name": "CalculateJumpHeight", - "Parameters": [ - { - "Name": "gravity", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "jumpPower", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "float" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CalculateJumpPower": { - "MemberType": "Function", - "Name": "CalculateJumpPower", - "Parameters": [ - { - "Name": "gravity", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "jumpHeight", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "float" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ClientAnimatorThrottling": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "ClientAnimatorThrottling", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ClientAnimatorThrottlingMode" - } - }, - "CurrentCamera": { - "Category": "Data", - "MemberType": "Property", - "Name": "CurrentCamera", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Camera" - } - }, - "DistributedGameTime": { - "Category": "Data", - "MemberType": "Property", - "Name": "DistributedGameTime", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "double" - } - }, - "ExperimentalSolverIsEnabled": { - "MemberType": "Function", - "Name": "ExperimentalSolverIsEnabled", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "FallenPartsDestroyHeight": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "FallenPartsDestroyHeight", - "Security": { - "Read": "None", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "FilteringEnabled": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "FilteringEnabled", - "Security": { - "Read": "None", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "Deprecated": true, - "Hidden": true, - "NotReplicated": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "FluidForces": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "FluidForces", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "FluidForces" - } - }, - "GetNumAwakeParts": { - "MemberType": "Function", - "Name": "GetNumAwakeParts", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GetPhysicsThrottling": { - "MemberType": "Function", - "Name": "GetPhysicsThrottling", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "int" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GetRealPhysicsFPS": { - "MemberType": "Function", - "Name": "GetRealPhysicsFPS", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "double" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GetServerTimeNow": { - "MemberType": "Function", - "Name": "GetServerTimeNow", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "double" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GlobalWind": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "GlobalWind", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Vector3" - } - }, - "Gravity": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Gravity", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "HumanoidOnlySetCollisionsOnStateChange": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "HumanoidOnlySetCollisionsOnStateChange", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "HumanoidOnlySetCollisionsOnStateChange" - } - }, - "IKControlConstraintSupport": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "IKControlConstraintSupport", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "IKControlConstraintSupport" - } - }, - "InterpolationThrottling": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "InterpolationThrottling", - "Security": { - "Read": "None", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "InterpolationThrottlingMode" - } - }, - "JoinToOutsiders": { - "MemberType": "Function", - "Name": "JoinToOutsiders", - "Parameters": [ - { - "Name": "objects", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - }, - { - "Name": "jointType", - "Type": { - "Category": "Enum", - "Name": "JointCreationMode" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "MakeJoints": { - "MemberType": "Function", - "Name": "MakeJoints", - "Parameters": [ - { - "Name": "objects", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "MeshPartHeadsAndAccessories": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "MeshPartHeadsAndAccessories", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "MeshPartHeadsAndAccessories" - } - }, - "ModelStreamingBehavior": { - "Category": "Streaming", - "MemberType": "Property", - "Name": "ModelStreamingBehavior", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ModelStreamingBehavior" - } - }, - "PGSIsEnabled": { - "MemberType": "Function", - "Name": "PGSIsEnabled", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PersistentLoaded": { - "MemberType": "Event", - "Name": "PersistentLoaded", - "Parameters": [ - { - "Name": "player", - "Type": { - "Category": "Class", - "Name": "Player" - } - } - ], - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "PhysicsSteppingMethod": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "PhysicsSteppingMethod", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "PhysicsSteppingMethod" - } - }, - "RejectCharacterDeletions": { - "Category": "Networking", - "MemberType": "Property", - "Name": "RejectCharacterDeletions", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "RejectCharacterDeletions" - } - }, - "ReplicateInstanceDestroySetting": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "ReplicateInstanceDestroySetting", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "ReplicateInstanceDestroySetting" - } - }, - "Retargeting": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Retargeting", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "AnimatorRetargetingMode" - } - }, - "SetMeshPartHeadsAndAccessories": { - "MemberType": "Function", - "Name": "SetMeshPartHeadsAndAccessories", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "Enum", - "Name": "MeshPartHeadsAndAccessories" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetPhysicsThrottleEnabled": { - "MemberType": "Function", - "Name": "SetPhysicsThrottleEnabled", - "Parameters": [ - { - "Name": "value", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "LocalUserSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SignalBehavior": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "SignalBehavior", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "SignalBehavior" - } - }, - "StreamOutBehavior": { - "Category": "Streaming", - "MemberType": "Property", - "Name": "StreamOutBehavior", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "StreamOutBehavior" - } - }, - "StreamingEnabled": { - "Category": "Streaming", - "MemberType": "Property", - "Name": "StreamingEnabled", - "Security": { - "Read": "None", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "StreamingIntegrityMode": { - "Category": "Streaming", - "MemberType": "Property", - "Name": "StreamingIntegrityMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "StreamingIntegrityMode" - } - }, - "StreamingMinRadius": { - "Category": "Streaming", - "MemberType": "Property", - "Name": "StreamingMinRadius", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "StreamingTargetRadius": { - "Category": "Streaming", - "MemberType": "Property", - "Name": "StreamingTargetRadius", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "Terrain": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Terrain", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Class", - "Name": "Terrain" - } - }, - "TouchesUseCollisionGroups": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "TouchesUseCollisionGroups", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": { - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "UnjoinFromOutsiders": { - "MemberType": "Function", - "Name": "UnjoinFromOutsiders", - "Parameters": [ - { - "Name": "objects", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ZoomToExtents": { - "MemberType": "Function", - "Name": "ZoomToExtents", - "Parameters": {}, - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "Workspace", - "Superclass": "WorldRoot", - "Tags": [ - "NotCreatable", - "Service" - ] - }, - "WorldModel": { - "Members": {}, - "MemoryCategory": "PhysicsParts", - "Name": "WorldModel", - "Superclass": "WorldRoot" - }, - "WorldRoot": { - "Members": { - "ArePartsTouchingOthers": { - "MemberType": "Function", - "Name": "ArePartsTouchingOthers", - "Parameters": [ - { - "Name": "partList", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - }, - { - "Default": "0.000199999995", - "Name": "overlapIgnored", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Blockcast": { - "MemberType": "Function", - "Name": "Blockcast", - "Parameters": [ - { - "Name": "cframe", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - }, - { - "Name": "size", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "direction", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Default": "RaycastParams{IgnoreWater=false, BruteForceAllSlow=false, RespectCanCollide=false, CollisionGroup=Default, FilterDescendantsInstances={}}", - "Name": "params", - "Type": { - "Category": "DataType", - "Name": "RaycastParams" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "RaycastResult" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "BulkMoveTo": { - "MemberType": "Function", - "Name": "BulkMoveTo", - "Parameters": [ - { - "Name": "partList", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - }, - { - "Name": "cframeList", - "Type": { - "Category": "Group", - "Name": "Array" - } - }, - { - "Default": "FireAllEvents", - "Name": "eventMode", - "Type": { - "Category": "Enum", - "Name": "BulkMoveMode" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "CacheCurrentTerrain": { - "MemberType": "Function", - "Name": "CacheCurrentTerrain", - "Parameters": [ - { - "Name": "id", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "center", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "radius", - "Type": { - "Category": "Primitive", - "Name": "float" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "string" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "ClearCachedTerrain": { - "MemberType": "Function", - "Name": "ClearCachedTerrain", - "Parameters": [ - { - "Name": "id", - "Type": { - "Category": "Primitive", - "Name": "string" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "FindPartOnRay": { - "MemberType": "Function", - "Name": "FindPartOnRay", - "Parameters": [ - { - "Name": "ray", - "Type": { - "Category": "DataType", - "Name": "Ray" - } - }, - { - "Default": "nil", - "Name": "ignoreDescendantsInstance", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Default": "false", - "Name": "terrainCellsAreCubes", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Default": "false", - "Name": "ignoreWater", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "FindPartOnRayWithIgnoreList": { - "MemberType": "Function", - "Name": "FindPartOnRayWithIgnoreList", - "Parameters": [ - { - "Name": "ray", - "Type": { - "Category": "DataType", - "Name": "Ray" - } - }, - { - "Name": "ignoreDescendantsTable", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - }, - { - "Default": "false", - "Name": "terrainCellsAreCubes", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Default": "false", - "Name": "ignoreWater", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "FindPartOnRayWithWhitelist": { - "MemberType": "Function", - "Name": "FindPartOnRayWithWhitelist", - "Parameters": [ - { - "Name": "ray", - "Type": { - "Category": "DataType", - "Name": "Ray" - } - }, - { - "Name": "whitelistDescendantsTable", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - }, - { - "Default": "false", - "Name": "ignoreWater", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "FindPartsInRegion3": { - "MemberType": "Function", - "Name": "FindPartsInRegion3", - "Parameters": [ - { - "Name": "region", - "Type": { - "Category": "DataType", - "Name": "Region3" - } - }, - { - "Default": "nil", - "Name": "ignoreDescendantsInstance", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Default": "20", - "Name": "maxParts", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "FindPartsInRegion3WithIgnoreList": { - "MemberType": "Function", - "Name": "FindPartsInRegion3WithIgnoreList", - "Parameters": [ - { - "Name": "region", - "Type": { - "Category": "DataType", - "Name": "Region3" - } - }, - { - "Name": "ignoreDescendantsTable", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - }, - { - "Default": "20", - "Name": "maxParts", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "FindPartsInRegion3WithWhiteList": { - "MemberType": "Function", - "Name": "FindPartsInRegion3WithWhiteList", - "Parameters": [ - { - "Name": "region", - "Type": { - "Category": "DataType", - "Name": "Region3" - } - }, - { - "Name": "whitelistDescendantsTable", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - }, - { - "Default": "20", - "Name": "maxParts", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "GetPartBoundsInBox": { - "MemberType": "Function", - "Name": "GetPartBoundsInBox", - "Parameters": [ - { - "Name": "cframe", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - }, - { - "Name": "size", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Default": "OverlapParams{MaxParts=false, BruteForceAllSlow=false, RespectCanCollide=false, CollisionGroup=Default, FilterDescendantsInstances={}}", - "Name": "overlapParams", - "Type": { - "Category": "DataType", - "Name": "OverlapParams" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GetPartBoundsInRadius": { - "MemberType": "Function", - "Name": "GetPartBoundsInRadius", - "Parameters": [ - { - "Name": "position", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "radius", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Default": "OverlapParams{MaxParts=false, BruteForceAllSlow=false, RespectCanCollide=false, CollisionGroup=Default, FilterDescendantsInstances={}}", - "Name": "overlapParams", - "Type": { - "Category": "DataType", - "Name": "OverlapParams" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "GetPartsInPart": { - "MemberType": "Function", - "Name": "GetPartsInPart", - "Parameters": [ - { - "Name": "part", - "Type": { - "Category": "Class", - "Name": "BasePart" - } - }, - { - "Default": "OverlapParams{MaxParts=false, BruteForceAllSlow=false, RespectCanCollide=false, CollisionGroup=Default, FilterDescendantsInstances={}}", - "Name": "overlapParams", - "Type": { - "Category": "DataType", - "Name": "OverlapParams" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "IKMoveTo": { - "MemberType": "Function", - "Name": "IKMoveTo", - "Parameters": [ - { - "Name": "part", - "Type": { - "Category": "Class", - "Name": "BasePart" - } - }, - { - "Name": "target", - "Type": { - "Category": "DataType", - "Name": "CFrame" - } - }, - { - "Default": "0.5", - "Name": "translateStiffness", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Default": "0.5", - "Name": "rotateStiffness", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Default": "OtherMechanismsAnchored", - "Name": "collisionsMode", - "Type": { - "Category": "Enum", - "Name": "IKCollisionsMode" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "PluginSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "IsRegion3Empty": { - "MemberType": "Function", - "Name": "IsRegion3Empty", - "Parameters": [ - { - "Name": "region", - "Type": { - "Category": "DataType", - "Name": "Region3" - } - }, - { - "Default": "nil", - "Name": "ignoreDescendentsInstance", - "Type": { - "Category": "Class", - "Name": "Instance" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "IsRegion3EmptyWithIgnoreList": { - "MemberType": "Function", - "Name": "IsRegion3EmptyWithIgnoreList", - "Parameters": [ - { - "Name": "region", - "Type": { - "Category": "DataType", - "Name": "Region3" - } - }, - { - "Name": "ignoreDescendentsTable", - "Type": { - "Category": "DataType", - "Name": "Objects" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "bool" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "Raycast": { - "MemberType": "Function", - "Name": "Raycast", - "Parameters": [ - { - "Name": "origin", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "direction", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Default": "RaycastParams{IgnoreWater=false, BruteForceAllSlow=false, RespectCanCollide=false, CollisionGroup=Default, FilterDescendantsInstances={}}", - "Name": "raycastParams", - "Type": { - "Category": "DataType", - "Name": "RaycastParams" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "RaycastResult" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "RaycastCachedTerrain": { - "MemberType": "Function", - "Name": "RaycastCachedTerrain", - "Parameters": [ - { - "Name": "id", - "Type": { - "Category": "Primitive", - "Name": "string" - } - }, - { - "Name": "origin", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "direction", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "ignoreWater", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "RaycastResult" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "SetInsertPoint": { - "MemberType": "Function", - "Name": "SetInsertPoint", - "Parameters": [ - { - "Name": "point", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Default": "false", - "Name": "ignoreGrid", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Primitive", - "Name": "null" - }, - "Security": "RobloxScriptSecurity", - "Tags": {}, - "ThreadSafety": "Unsafe" - }, - "Spherecast": { - "MemberType": "Function", - "Name": "Spherecast", - "Parameters": [ - { - "Name": "position", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Name": "radius", - "Type": { - "Category": "Primitive", - "Name": "float" - } - }, - { - "Name": "direction", - "Type": { - "Category": "DataType", - "Name": "Vector3" - } - }, - { - "Default": "RaycastParams{IgnoreWater=false, BruteForceAllSlow=false, RespectCanCollide=false, CollisionGroup=Default, FilterDescendantsInstances={}}", - "Name": "params", - "Type": { - "Category": "DataType", - "Name": "RaycastParams" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "RaycastResult" - }, - "Security": "None", - "Tags": {}, - "ThreadSafety": "Safe" - }, - "findPartOnRay": { - "MemberType": "Function", - "Name": "findPartOnRay", - "Parameters": [ - { - "Name": "ray", - "Type": { - "Category": "DataType", - "Name": "Ray" - } - }, - { - "Default": "nil", - "Name": "ignoreDescendantsInstance", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Default": "false", - "Name": "terrainCellsAreCubes", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - }, - { - "Default": "false", - "Name": "ignoreWater", - "Type": { - "Category": "Primitive", - "Name": "bool" - } - } - ], - "ReturnType": { - "Category": "Group", - "Name": "Tuple" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - }, - "findPartsInRegion3": { - "MemberType": "Function", - "Name": "findPartsInRegion3", - "Parameters": [ - { - "Name": "region", - "Type": { - "Category": "DataType", - "Name": "Region3" - } - }, - { - "Default": "nil", - "Name": "ignoreDescendantsInstance", - "Type": { - "Category": "Class", - "Name": "Instance" - } - }, - { - "Default": "20", - "Name": "maxParts", - "Type": { - "Category": "Primitive", - "Name": "int" - } - } - ], - "ReturnType": { - "Category": "DataType", - "Name": "Objects" - }, - "Security": "None", - "Tags": { - "Deprecated": true - }, - "ThreadSafety": "Unsafe" - } - }, - "MemoryCategory": "PhysicsParts", - "Name": "WorldRoot", - "Superclass": "Model", - "Tags": [ - "NotCreatable" - ] - }, - "WrapLayer": { - "Members": { - "AutoSkin": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "AutoSkin", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "WrapLayerAutoSkin" - } - }, - "BindOffset": { - "Category": "Tuning", - "MemberType": "Property", - "Name": "BindOffset", - "Security": { - "Read": "None", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "Color": { - "Category": "Debug", - "MemberType": "Property", - "Name": "Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "DebugMode": { - "Category": "Debug", - "MemberType": "Property", - "Name": "DebugMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "WrapLayerDebugMode" - } - }, - "Enabled": { - "Category": "Behavior", - "MemberType": "Property", - "Name": "Enabled", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "bool" - } - }, - "Order": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Order", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "int" - } - }, - "Puffiness": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Puffiness", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - }, - "ReferenceMeshId": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "ReferenceMeshId", - "Security": { - "Read": "None", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Content" - } - }, - "ReferenceOrigin": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "ReferenceOrigin", - "Security": { - "Read": "None", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "ReferenceOriginWorld": { - "Category": "Data", - "MemberType": "Property", - "Name": "ReferenceOriginWorld", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "ReadOnly": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "CFrame" - } - }, - "ShrinkFactor": { - "Category": "Tuning", - "MemberType": "Property", - "Name": "ShrinkFactor", - "Security": { - "Read": "None", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "WrapLayer", - "Superclass": "BaseWrap" - }, - "WrapTarget": { - "Members": { - "Color": { - "Category": "Debug", - "MemberType": "Property", - "Name": "Color", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "DataType", - "Name": "Color3" - } - }, - "DebugMode": { - "Category": "Debug", - "MemberType": "Property", - "Name": "DebugMode", - "Security": { - "Read": "None", - "Write": "None" - }, - "Serialization": { - "CanLoad": false, - "CanSave": false - }, - "Tags": { - "NotReplicated": true, - "NotScriptable": true - }, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Enum", - "Name": "WrapTargetDebugMode" - } - }, - "Stiffness": { - "Category": "Appearance", - "MemberType": "Property", - "Name": "Stiffness", - "Security": { - "Read": "None", - "Write": "PluginSecurity" - }, - "Serialization": { - "CanLoad": true, - "CanSave": true - }, - "Tags": {}, - "ThreadSafety": "ReadSafe", - "ValueType": { - "Category": "Primitive", - "Name": "float" - } - } - }, - "MemoryCategory": "Instances", - "Name": "WrapTarget", - "Superclass": "BaseWrap" - } - }, - "Version": 1 -} \ No newline at end of file diff --git a/Modules/ClassIndex/Source/init.luau b/Modules/ClassIndex/Source/init.luau deleted file mode 100644 index 72578ce..0000000 --- a/Modules/ClassIndex/Source/init.luau +++ /dev/null @@ -1,447 +0,0 @@ -local apiDump = require(script["generated-api-dump"]) -local spritesheetData = require(script["spritesheet-data"]) - ---[=[ - @class ClassIndex - - A package that enables developers to get context about specific Roblox classes, this package uses a late-ish dump of the Roblox API - to be able to query information such as the superclasses for a specific class, properties for specific classes and so fourth. - - This package uses the [lune](https://lune-org.github.io/docs) runtime to update the 'generated-api-dump' -]=] -local ClassIndex = {} - -ClassIndex.Public = {} -ClassIndex.Private = {} - -ClassIndex.Private.SpritesheetClassMap = {} - ---[=[ - @function GetApiDump - @within ClassIndex - - @return ApiDump - - Returns the Roblox 'Api Dump' that the package is currently using. - - ```lua - local ApiDump = ClassIndex.GetApiDump() - - print(ApiDump.Classes["Workspace"].Members) - ``` -]=] -function ClassIndex.Public.GetApiDump(): apiDump - return apiDump -end - ---[=[ - @function GetAllClasses - @within ClassIndex - - @return { string } - - Returns an array of all classes in the Roblox Engine - - ```lua - local classNames = ClassIndex.GetAllClassNames() - - for _, className in classNames do - print(className) - end - ``` -]=] -function ClassIndex.Public.GetAllClasses(): { string } - local classNames = {} - - for className in apiDump.Classes do - table.insert(classNames, className) - end - - return classNames -end - ---[=[ - @function IsClassRegistered - @within ClassIndex - - @param className string - - @return boolean - - Returns wheather the Api Dump the package is using contains metadata on a class - - ```lua - local isClassSupported = ClassIndex.IsClassRegistered("Workspace") - - if isClassSupported then - local workspaceMembers = ClassIndex.GetClassMembers("Workspace") - - ... - end - ``` -]=] -function ClassIndex.Public.IsClassRegistered(className: string): boolean - if not apiDump.Classes[className] then - return false - end - - return true -end - ---[=[ - @function GetClassMembers - @within ClassIndex - - @param className string - @param security string? - @param includeNonScriptable boolean? - - @return { string } - - Returns the 'Members' of a class, class members could be one of many things, ranging from; - - - Methods - - Events - - Properties - - ```lua - local workspaceMembers = ClassIndex.GetClassMembers("Workspace") - - local workspaceMethods = {} - local workspaceEvents = {} - local workspaceProperties = {} - - for _, memberName in workspaceMembers do - local indexType = typeof(workspaceMethods[memberName]) - - if indexType == "function" then - table.insert(workspaceMethods, memberName) - elseif indexType == "RbxScriptSignal" then - table.insert(workspaceEvents, memberName) - else - table.insert(workspaceProperties, memberName) - end - end - ``` -]=] -function ClassIndex.Public.GetClassMembers( - className: string, - security: string?, - includeNonScriptable: boolean? -): { string } - local class = apiDump.Classes[className] - - if not class then - return { } - end - - local classMembers = {} - - if not security then - security = "None" - end - - for memberName, memberStruct in class.Members do - if memberStruct.Tags.NotScriptable and not includeNonScriptable then - continue - end - - if type(memberStruct.Security) == "string" then - if memberStruct.Security ~= security then - continue - end - else - if memberStruct.Security.Read ~= security then - continue - end - end - - table.insert(classMembers, memberName) - end - - return classMembers -end - ---[=[ - @function GetClassIcon - @within ClassIndex - - @param className string - - @return { Image: string, ImageRectOffset: Vector2, ImageRectSize: Vector2 } - - Re-implements the :GetClassIcon call seen under 'StudioService', allowing developers outside of the Plugin space to get class - icons. - - > https://create.roblox.com/docs/reference/engine/classes/StudioService#GetClassIcon - - *Curse you Roblox! Why is this locked to just plugins?!* - - ```lua - local label = Instance.new("ImageLabel") - - for property, value in ClassIndex.GetClassIcon("Workspace") do - label[property] = value - end - - ... - ``` -]=] -function ClassIndex.Public.GetClassIcon( - className: string -): { Image: string, ImageRectOffset: Vector2, ImageRectSize: Vector2 } - local classImageData = spritesheetData.Content[className] - - if not classImageData then - classImageData = spritesheetData.Content.File - end - - --[[ - Note for myself in the future so I don't waste hours on this.. - - USE THIS SITE: https://www.codeandweb.com/free-sprite-sheet-packer - thank you! - ]] - - return { - Image = "http://www.roblox.com/asset/?id=16231724441", - ImageRectOffset = Vector2.new(classImageData.x, classImageData.y), - ImageRectSize = Vector2.new(classImageData.w, classImageData.h), - } -end - ---[=[ - @function GetClassMemberType - @within ClassIndex - - @param className string - @param memberName string - - @return string - - Returns the 'MemberType' of a class member. - - ```lua - local gravityMemberType = ClassIndex.GetClassMemberType("Workspace", "Gravity") - - print(gravityMemberType) -- "Property" - ``` -]=] -function ClassIndex.Public.GetClassMemberType(className: string, memberName: string): memberType - local class = apiDump.Classes[className] - - if not class then - return "Data" - end - - local member = class.Members[memberName] - - if not member then - return "Data" - end - - return member.MemberType -end - ---[=[ - @function GetClassMemberTags - @within ClassIndex - - @param className string - @param memberName string - - @return { Hidden: boolean?, NotReplicated: boolean?, ReadOnly: boolean?, Deprecated: boolean? } - - Returns the tags that have been applied to a class member. - - ```lua - local gravityMemberTags = ClassIndex.GetClassMemberTags("Workspace", "Gravity") - - if gravityMemberTags.Deprecated then - print("Oh noo! Where did Gravity go?!") - end - ``` -]=] -function ClassIndex.Public.GetClassMemberTags(className: string, memberName: string): memberTags - local class = apiDump.Classes[className] - - if not class then - return { } - end - - local member = class.Members[memberName] - - if not member then - return { } - end - - local shallowClone = {} - - for index, value in member.Tags do - shallowClone[index] = value - end - - return shallowClone -end - ---[=[ - @function GetClassMemberSecurity - @within ClassIndex - - @param className string - @param memberName string - - @return { Read: string, Write: string } - - Returns a table containg both a Read and Write key, the value sof these keys will define if the developer has - access to write and read the member of that class. - - ```lua - local memberSecurity = ClassIndex.GetClassMemberSecurity("Workspace", "Gravity") - - if memberSecurity.Read == "None" then - local gravity = workspace.Gravity - end - ``` -]=] -function ClassIndex.Public.GetClassMemberSecurity( - className: string, - memberName: string -): { Read: memberSecurity, Write: memberSecurity } - local class = apiDump.Classes[className] - - if not class then - return { Read = "None", Write = "None" } - end - - local member = class.Members[memberName] - - if not member then - return { Read = "None", Write = "None" } - end - - local shallowClone = {} - - if type(member.Security) == "table" then - for index, value in member.Security do - shallowClone[index] = value - end - else - shallowClone.Read = member.Security - shallowClone.Write = member.Security - end - - return shallowClone -end - ---[=[ - @function GetClassMemberThreadSafety - @within ClassIndex - - @param className string - @param memberName string - - @return string - - Returns a string defining if the developer can access/manipulate that member when using roblox's multi threading feature. - - ```lua - local memberThreadSafe = ClassIndex.GetClassMemberThreadSafety("Workspace", "Gravity") - - if memberSecurity == "Safe" then - task.desynchronize() - - workspace.Gravity *= 2 - - task.synchronize() - end - ``` -]=] -function ClassIndex.Public.GetClassMemberThreadSafety(className: string, memberName: string): memberThreadSafety - local class = apiDump.Classes[className] - - if not class then - return "Unsafe" - end - - local member = class.Members[memberName] - - if not member then - return "Unsafe" - end - - return member.ThreadSafety -end - ---[=[ - @function GetClassSuperclass - @within ClassIndex - - @param className string - - @return string - - Returns the superclass of a given class. For etcetera, the Workspace's superclass is 'WorldRoot'! - - ```lua - local workspaceSuperclass = ClassIndex.GetClassSuperclass("Workspace") - - print(workspaceSuperclass) -- "WorldRoot" - ``` -]=] -function ClassIndex.Public.GetClassSuperclass(className: string) - local class = apiDump.Classes[className] - - if not class then - return "<>" - end - - return class.Superclass -end - ---[=[ - @function GetClassSuperclasses - @within ClassIndex - - @param className string - - @return string - - Returns an array containing the superclass ancestry, the last index in this array will always be `<<>>` since that's the - base class for everything under the Roblox engine. - - ```lua - local workspaceSuperclasses = ClassIndex.GetClassSuperclasses("Workspace") - - print(workspaceSuperclasses) -- { "WorldRoot", "Model", "PVInstance", "Instance", "`<<>>`" } - ``` -]=] -function ClassIndex.Public.GetClassSuperclasses(className: string) - local currentClass = apiDump.Classes[className] - - if not currentClass then - return { "<>" } - end - - local classes = {} - - while currentClass do - table.insert(classes, currentClass.Superclass) - - currentClass = apiDump.Classes[currentClass.Superclass] - end - - return classes -end - -export type apiDump = typeof(apiDump) -export type memberType = "Property" | "Event" | "Function" | "Data" -export type memberSecurity = "RobloxScriptSecurity" | "PluginSecurity" | "None" -export type memberThreadSafety = "Unsafe" | "ReadSafe" | "Safe" -export type memberTags = { - ["Hidden"]: boolean?, - ["NotReplicated"]: boolean?, - ["ReadOnly"]: boolean?, - ["Deprecated"]: boolean?, -} - -return ClassIndex.Public diff --git a/Modules/ClassIndex/Source/init.spec.luau b/Modules/ClassIndex/Source/init.spec.luau deleted file mode 100644 index eb7d2e2..0000000 --- a/Modules/ClassIndex/Source/init.spec.luau +++ /dev/null @@ -1,73 +0,0 @@ -return function() - local ClassIndex = require(script.Parent) - - it("Should be able to access the raw API dump", function() - local apiDump = ClassIndex.GetApiDump() - - expect(apiDump).never.to.equal(nil) - expect(apiDump.Classes).never.to.equal(nil) - expect(apiDump.Version).never.to.equal(nil) - end) - - it("Should be able to fetch all classes from the raw API dump", function() - local classArray = ClassIndex.GetAllClasses() - - expect(#classArray).never.to.equal(0) - expect(table.find(classArray, "Workspace")).never.to.equal(nil) - end) - - it("Should be able to query class names", function() - expect(ClassIndex.IsClassRegistered("Workspace")).to.equal(true) - expect(ClassIndex.IsClassRegistered("FakeWorkspace")).to.equal(false) - end) - - it("Should be able to query class members", function() - local classMembers = ClassIndex.GetClassMembers("Workspace") - - expect(#classMembers).never.to.equal(0) - - for _, propertyName in classMembers do - expect(workspace[propertyName]).never.to.equal(nil) - end - end) - - it("Should be able to fetch the member type from a class", function() - local gravityMemberType = ClassIndex.GetClassMemberType("Workspace", "Gravity") - - expect(gravityMemberType).to.equal("Property") - end) - - it("Should be able to fetch the tags for a member of a class", function() - local streamingMinRadiusTags = ClassIndex.GetClassMemberTags("Workspace", "StreamingMinRadius") - - expect(streamingMinRadiusTags.NotScriptable).to.equal(true) - end) - - it("Should be able to fetch the security for a member of a class", function() - local streamingEnabledSecurity = ClassIndex.GetClassMemberSecurity("Workspace", "StreamingEnabled") - - expect(streamingEnabledSecurity.Read).to.equal("None") - expect(streamingEnabledSecurity.Write).to.equal("PluginSecurity") - end) - - it("Should be able to fetch the thread safety for a member of a class", function() - local streamingEnabledThreadSafety = ClassIndex.GetClassMemberThreadSafety("Workspace", "StreamingEnabled") - - expect(streamingEnabledThreadSafety).to.equal("ReadSafe") - end) - - it("Should be able to query class superclass", function() - local workspaceSuperClass = ClassIndex.GetClassSuperclass("Workspace") - - expect(workspaceSuperClass).to.equal("WorldRoot") - end) - - it("Should be able to query class superclasses", function() - local workspaceSuperClasses = ClassIndex.GetClassSuperclasses("Workspace") - - expect(#workspaceSuperClasses).never.to.equal(0) - - expect(workspaceSuperClasses[#workspaceSuperClasses]).to.equal("<<>>") - expect(workspaceSuperClasses[1]).to.equal("WorldRoot") - end) -end diff --git a/Modules/ClassIndex/Source/spritesheet-data.json b/Modules/ClassIndex/Source/spritesheet-data.json deleted file mode 100644 index 716290f..0000000 --- a/Modules/ClassIndex/Source/spritesheet-data.json +++ /dev/null @@ -1,1504 +0,0 @@ -{ - "Content": { - "Accessory": { - "x": 0, - "y": 0, - "w": 48, - "h": 48 - }, - "Actor": { - "x": 48, - "y": 0, - "w": 48, - "h": 48 - }, - "AdGui": { - "x": 96, - "y": 0, - "w": 48, - "h": 48 - }, - "AdPortal": { - "x": 144, - "y": 0, - "w": 48, - "h": 48 - }, - "AirController": { - "x": 192, - "y": 0, - "w": 48, - "h": 48 - }, - "AnimationConstraint": { - "x": 240, - "y": 0, - "w": 48, - "h": 45 - }, - "AnimationController": { - "x": 288, - "y": 0, - "w": 48, - "h": 48 - }, - "AnimationFromVideoCreatorService": { - "x": 336, - "y": 0, - "w": 48, - "h": 48 - }, - "Animation": { - "x": 384, - "y": 0, - "w": 48, - "h": 48 - }, - "Animator": { - "x": 432, - "y": 0, - "w": 48, - "h": 48 - }, - "ArcHandles": { - "x": 480, - "y": 0, - "w": 48, - "h": 48 - }, - "Atmosphere": { - "x": 528, - "y": 0, - "w": 48, - "h": 48 - }, - "AudioAnalyzer": { - "x": 576, - "y": 0, - "w": 48, - "h": 48 - }, - "AudioChorus": { - "x": 624, - "y": 0, - "w": 48, - "h": 48 - }, - "AudioCompressor": { - "x": 672, - "y": 0, - "w": 48, - "h": 48 - }, - "AudioDeviceInput": { - "x": 0, - "y": 48, - "w": 48, - "h": 48 - }, - "AudioDeviceOutput": { - "x": 48, - "y": 48, - "w": 48, - "h": 48 - }, - "AudioDistortion": { - "x": 96, - "y": 48, - "w": 48, - "h": 48 - }, - "AudioEcho": { - "x": 144, - "y": 48, - "w": 48, - "h": 48 - }, - "AudioEmitter": { - "x": 192, - "y": 48, - "w": 48, - "h": 48 - }, - "AudioEqualizer": { - "x": 240, - "y": 48, - "w": 48, - "h": 48 - }, - "AudioFader": { - "x": 288, - "y": 48, - "w": 48, - "h": 48 - }, - "AudioFlanger": { - "x": 336, - "y": 48, - "w": 48, - "h": 48 - }, - "AudioListener": { - "x": 384, - "y": 48, - "w": 48, - "h": 48 - }, - "AudioPitchShifter": { - "x": 432, - "y": 48, - "w": 48, - "h": 48 - }, - "AudioPlayer": { - "x": 480, - "y": 48, - "w": 48, - "h": 48 - }, - "AudioReverb": { - "x": 528, - "y": 48, - "w": 48, - "h": 48 - }, - "AvatarEditorService": { - "x": 576, - "y": 48, - "w": 48, - "h": 48 - }, - "Backpack": { - "x": 624, - "y": 48, - "w": 48, - "h": 48 - }, - "BallSocketConstraint": { - "x": 672, - "y": 48, - "w": 48, - "h": 48 - }, - "BasePlate": { - "x": 0, - "y": 96, - "w": 48, - "h": 48 - }, - "BillboardGui": { - "x": 48, - "y": 96, - "w": 48, - "h": 48 - }, - "BindableEvent": { - "x": 96, - "y": 96, - "w": 48, - "h": 48 - }, - "BindableFunction": { - "x": 144, - "y": 96, - "w": 48, - "h": 48 - }, - "BlockMesh": { - "x": 192, - "y": 96, - "w": 48, - "h": 48 - }, - "BloomEffect": { - "x": 240, - "y": 96, - "w": 48, - "h": 48 - }, - "BlurEffect": { - "x": 288, - "y": 96, - "w": 48, - "h": 48 - }, - "BodyAngularVelocity": { - "x": 336, - "y": 96, - "w": 48, - "h": 48 - }, - "BodyColors": { - "x": 384, - "y": 96, - "w": 48, - "h": 48 - }, - "BodyForce": { - "x": 432, - "y": 96, - "w": 48, - "h": 48 - }, - "BodyGyro": { - "x": 480, - "y": 96, - "w": 48, - "h": 48 - }, - "BodyPosition": { - "x": 528, - "y": 96, - "w": 48, - "h": 48 - }, - "BodyThrust": { - "x": 576, - "y": 96, - "w": 48, - "h": 48 - }, - "BodyVelocity": { - "x": 624, - "y": 96, - "w": 48, - "h": 48 - }, - "Bone": { - "x": 672, - "y": 96, - "w": 48, - "h": 48 - }, - "BoolValue": { - "x": 0, - "y": 144, - "w": 48, - "h": 48 - }, - "BoxHandleAdornment": { - "x": 48, - "y": 144, - "w": 48, - "h": 48 - }, - "BrickColorValue": { - "x": 96, - "y": 144, - "w": 48, - "h": 48 - }, - "BubbleChatConfiguration": { - "x": 144, - "y": 144, - "w": 48, - "h": 48 - }, - "Buggaroo": { - "x": 192, - "y": 144, - "w": 48, - "h": 48 - }, - "CFrameValue": { - "x": 240, - "y": 144, - "w": 48, - "h": 48 - }, - "Camera": { - "x": 288, - "y": 144, - "w": 48, - "h": 48 - }, - "CanvasGroup": { - "x": 336, - "y": 144, - "w": 48, - "h": 48 - }, - "CharacterControllerManager": { - "x": 384, - "y": 144, - "w": 48, - "h": 48 - }, - "CharacterMesh": { - "x": 432, - "y": 144, - "w": 48, - "h": 48 - }, - "ChatInputBarConfiguration": { - "x": 480, - "y": 144, - "w": 48, - "h": 48 - }, - "ChatWindowConfiguration": { - "x": 528, - "y": 144, - "w": 48, - "h": 48 - }, - "Chat": { - "x": 576, - "y": 144, - "w": 48, - "h": 48 - }, - "ChorusSoundEffect": { - "x": 624, - "y": 144, - "w": 48, - "h": 48 - }, - "Class": { - "x": 672, - "y": 144, - "w": 48, - "h": 48 - }, - "ClickDetector": { - "x": 0, - "y": 192, - "w": 48, - "h": 48 - }, - "ClientReplicator": { - "x": 48, - "y": 192, - "w": 48, - "h": 48 - }, - "ClimbController": { - "x": 96, - "y": 192, - "w": 48, - "h": 48 - }, - "Clouds": { - "x": 144, - "y": 192, - "w": 48, - "h": 48 - }, - "ColorCorrectionEffect": { - "x": 192, - "y": 192, - "w": 48, - "h": 48 - }, - "Color": { - "x": 240, - "y": 192, - "w": 48, - "h": 48 - }, - "CompressorSoundEffect": { - "x": 288, - "y": 192, - "w": 48, - "h": 48 - }, - "ConeHandleAdornment": { - "x": 336, - "y": 192, - "w": 48, - "h": 48 - }, - "Configuration": { - "x": 384, - "y": 192, - "w": 48, - "h": 48 - }, - "Constant": { - "x": 432, - "y": 192, - "w": 48, - "h": 48 - }, - "Constructor": { - "x": 480, - "y": 192, - "w": 48, - "h": 48 - }, - "CoreGui": { - "x": 528, - "y": 192, - "w": 48, - "h": 48 - }, - "CornerWedgePart": { - "x": 576, - "y": 192, - "w": 48, - "h": 48 - }, - "CylinderHandleAdornment": { - "x": 624, - "y": 192, - "w": 48, - "h": 48 - }, - "CylindricalConstraint": { - "x": 672, - "y": 192, - "w": 48, - "h": 48 - }, - "Decal": { - "x": 0, - "y": 240, - "w": 48, - "h": 48 - }, - "DepthOfFieldEffect": { - "x": 48, - "y": 240, - "w": 48, - "h": 48 - }, - "DialogChoice": { - "x": 96, - "y": 240, - "w": 48, - "h": 48 - }, - "Dialog": { - "x": 144, - "y": 240, - "w": 48, - "h": 48 - }, - "DistortionSoundEffect": { - "x": 192, - "y": 240, - "w": 48, - "h": 48 - }, - "EchoSoundEffect": { - "x": 240, - "y": 240, - "w": 48, - "h": 48 - }, - "EditableImage": { - "x": 288, - "y": 240, - "w": 48, - "h": 48 - }, - "EditableMesh": { - "x": 336, - "y": 240, - "w": 48, - "h": 48 - }, - "EnumMember": { - "x": 384, - "y": 240, - "w": 48, - "h": 48 - }, - "Enum": { - "x": 432, - "y": 240, - "w": 48, - "h": 48 - }, - "EqualizerSoundEffect": { - "x": 480, - "y": 240, - "w": 48, - "h": 48 - }, - "Event": { - "x": 528, - "y": 240, - "w": 48, - "h": 48 - }, - "FaceControls": { - "x": 576, - "y": 240, - "w": 48, - "h": 48 - }, - "Field": { - "x": 624, - "y": 240, - "w": 48, - "h": 48 - }, - "File": { - "x": 672, - "y": 240, - "w": 48, - "h": 48 - }, - "FlangeSoundEffect": { - "x": 0, - "y": 288, - "w": 48, - "h": 48 - }, - "Folder": { - "x": 48, - "y": 288, - "w": 48, - "h": 48 - }, - "ForceField": { - "x": 96, - "y": 288, - "w": 48, - "h": 48 - }, - "Frame": { - "x": 144, - "y": 288, - "w": 48, - "h": 48 - }, - "Function": { - "x": 192, - "y": 288, - "w": 48, - "h": 48 - }, - "GroundController": { - "x": 240, - "y": 288, - "w": 48, - "h": 48 - }, - "Handles": { - "x": 288, - "y": 288, - "w": 48, - "h": 48 - }, - "HapticService": { - "x": 336, - "y": 288, - "w": 48, - "h": 48 - }, - "HeightmapImporterService": { - "x": 384, - "y": 288, - "w": 48, - "h": 48 - }, - "Highlight": { - "x": 432, - "y": 288, - "w": 48, - "h": 48 - }, - "HingeConstraint": { - "x": 480, - "y": 288, - "w": 48, - "h": 48 - }, - "HumanoidDescription": { - "x": 528, - "y": 288, - "w": 48, - "h": 48 - }, - "Humanoid": { - "x": 576, - "y": 288, - "w": 48, - "h": 48 - }, - "IKControl": { - "x": 624, - "y": 288, - "w": 48, - "h": 48 - }, - "ImageButton": { - "x": 672, - "y": 288, - "w": 48, - "h": 48 - }, - "ImageHandleAdornment": { - "x": 0, - "y": 336, - "w": 48, - "h": 48 - }, - "ImageLabel": { - "x": 48, - "y": 336, - "w": 48, - "h": 48 - }, - "Interface": { - "x": 96, - "y": 336, - "w": 48, - "h": 48 - }, - "Keyword": { - "x": 144, - "y": 336, - "w": 48, - "h": 48 - }, - "Lighting": { - "x": 192, - "y": 336, - "w": 48, - "h": 48 - }, - "LineHandleAdornment": { - "x": 240, - "y": 336, - "w": 48, - "h": 48 - }, - "LocalFile": { - "x": 288, - "y": 336, - "w": 48, - "h": 48 - }, - "LocalScript": { - "x": 336, - "y": 336, - "w": 48, - "h": 48 - }, - "LocalizationService": { - "x": 384, - "y": 336, - "w": 48, - "h": 48 - }, - "LocalizationTable": { - "x": 432, - "y": 336, - "w": 48, - "h": 48 - }, - "MaterialService": { - "x": 480, - "y": 336, - "w": 48, - "h": 48 - }, - "MaterialVariant": { - "x": 528, - "y": 336, - "w": 48, - "h": 48 - }, - "MemoryStoreService": { - "x": 576, - "y": 336, - "w": 48, - "h": 48 - }, - "MeshPart": { - "x": 624, - "y": 336, - "w": 48, - "h": 48 - }, - "Meshparts": { - "x": 672, - "y": 336, - "w": 48, - "h": 48 - }, - "MessagingService": { - "x": 0, - "y": 384, - "w": 48, - "h": 48 - }, - "Method": { - "x": 48, - "y": 384, - "w": 48, - "h": 48 - }, - "Model": { - "x": 96, - "y": 384, - "w": 48, - "h": 48 - }, - "Modelgroups": { - "x": 144, - "y": 384, - "w": 48, - "h": 48 - }, - "ModuleScript": { - "x": 192, - "y": 384, - "w": 48, - "h": 48 - }, - "Module": { - "x": 240, - "y": 384, - "w": 48, - "h": 48 - }, - "Motor6D": { - "x": 288, - "y": 384, - "w": 48, - "h": 48 - }, - "NetworkClient": { - "x": 336, - "y": 384, - "w": 48, - "h": 48 - }, - "NoCollisionConstraint": { - "x": 384, - "y": 384, - "w": 48, - "h": 48 - }, - "Operator": { - "x": 432, - "y": 384, - "w": 48, - "h": 48 - }, - "PackageLink": { - "x": 480, - "y": 384, - "w": 48, - "h": 48 - }, - "Pants": { - "x": 528, - "y": 384, - "w": 48, - "h": 48 - }, - "Part": { - "x": 576, - "y": 384, - "w": 48, - "h": 48 - }, - "PathfindingLink": { - "x": 624, - "y": 384, - "w": 48, - "h": 48 - }, - "PathfindingModifier": { - "x": 672, - "y": 384, - "w": 48, - "h": 48 - }, - "PathfindingService": { - "x": 0, - "y": 432, - "w": 48, - "h": 48 - }, - "PitchShiftSoundEffect": { - "x": 48, - "y": 432, - "w": 48, - "h": 48 - }, - "Place": { - "x": 96, - "y": 432, - "w": 48, - "h": 48 - }, - "Plane": { - "x": 144, - "y": 432, - "w": 48, - "h": 48 - }, - "Players": { - "x": 192, - "y": 432, - "w": 48, - "h": 48 - }, - "PluginGuiService": { - "x": 240, - "y": 432, - "w": 48, - "h": 48 - }, - "PrismaticConstraint": { - "x": 288, - "y": 432, - "w": 48, - "h": 48 - }, - "Property": { - "x": 336, - "y": 432, - "w": 48, - "h": 48 - }, - "ProximityPrompt": { - "x": 384, - "y": 432, - "w": 48, - "h": 48 - }, - "PublishService": { - "x": 432, - "y": 432, - "w": 48, - "h": 48 - }, - "Reference": { - "x": 480, - "y": 432, - "w": 48, - "h": 48 - }, - "RemoteEvent": { - "x": 528, - "y": 432, - "w": 48, - "h": 48 - }, - "RemoteFunction": { - "x": 576, - "y": 432, - "w": 48, - "h": 48 - }, - "RenderingTest": { - "x": 624, - "y": 432, - "w": 48, - "h": 48 - }, - "ReplicatedFirst": { - "x": 672, - "y": 432, - "w": 48, - "h": 48 - }, - "ReplicatedScriptService": { - "x": 0, - "y": 480, - "w": 48, - "h": 48 - }, - "ReplicatedStorage": { - "x": 48, - "y": 480, - "w": 48, - "h": 48 - }, - "ReverbSoundEffect": { - "x": 96, - "y": 480, - "w": 48, - "h": 48 - }, - "RigidConstraint": { - "x": 144, - "y": 480, - "w": 48, - "h": 48 - }, - "RobloxPluginGuiService": { - "x": 192, - "y": 480, - "w": 48, - "h": 48 - }, - "RocketPropulsion": { - "x": 240, - "y": 480, - "w": 48, - "h": 48 - }, - "RodConstraint": { - "x": 288, - "y": 480, - "w": 48, - "h": 48 - }, - "RopeConstraint": { - "x": 336, - "y": 480, - "w": 48, - "h": 48 - }, - "ScreenGui": { - "x": 384, - "y": 480, - "w": 48, - "h": 48 - }, - "Script": { - "x": 432, - "y": 480, - "w": 48, - "h": 48 - }, - "ScrollingFrame": { - "x": 480, - "y": 480, - "w": 48, - "h": 48 - }, - "Seat": { - "x": 528, - "y": 480, - "w": 48, - "h": 48 - }, - "Selected_Workspace": { - "x": 576, - "y": 480, - "w": 48, - "h": 48 - }, - "SelectionBox": { - "x": 624, - "y": 480, - "w": 48, - "h": 48 - }, - "SelectionSphere": { - "x": 672, - "y": 480, - "w": 48, - "h": 48 - }, - "ServerScriptService": { - "x": 0, - "y": 528, - "w": 48, - "h": 48 - }, - "ServerStorage": { - "x": 48, - "y": 528, - "w": 48, - "h": 48 - }, - "ShirtGraphic": { - "x": 96, - "y": 528, - "w": 48, - "h": 48 - }, - "Shirt": { - "x": 144, - "y": 528, - "w": 48, - "h": 48 - }, - "SkinnedMeshPart": { - "x": 192, - "y": 528, - "w": 48, - "h": 48 - }, - "Sky": { - "x": 240, - "y": 528, - "w": 48, - "h": 48 - }, - "Snap": { - "x": 288, - "y": 528, - "w": 48, - "h": 48 - }, - "Snippet": { - "x": 336, - "y": 528, - "w": 48, - "h": 48 - }, - "SocialService": { - "x": 384, - "y": 528, - "w": 48, - "h": 48 - }, - "SoundEffect": { - "x": 432, - "y": 528, - "w": 48, - "h": 48 - }, - "SoundGroup": { - "x": 480, - "y": 528, - "w": 48, - "h": 48 - }, - "SoundService": { - "x": 528, - "y": 528, - "w": 48, - "h": 48 - }, - "Sound": { - "x": 576, - "y": 528, - "w": 48, - "h": 48 - }, - "SpawnLocation": { - "x": 624, - "y": 528, - "w": 48, - "h": 48 - }, - "SpecialMesh": { - "x": 672, - "y": 528, - "w": 48, - "h": 48 - }, - "SphereHandleAdornment": { - "x": 0, - "y": 576, - "w": 48, - "h": 48 - }, - "SpringConstraint": { - "x": 48, - "y": 576, - "w": 48, - "h": 48 - }, - "StandalonePluginScripts": { - "x": 96, - "y": 576, - "w": 48, - "h": 48 - }, - "StarterCharacterScripts": { - "x": 144, - "y": 576, - "w": 48, - "h": 48 - }, - "StarterGui": { - "x": 192, - "y": 576, - "w": 48, - "h": 48 - }, - "StarterPack": { - "x": 240, - "y": 576, - "w": 48, - "h": 48 - }, - "StarterPlayerScripts": { - "x": 288, - "y": 576, - "w": 48, - "h": 48 - }, - "StarterPlayer": { - "x": 336, - "y": 576, - "w": 48, - "h": 48 - }, - "Struct": { - "x": 384, - "y": 576, - "w": 48, - "h": 48 - }, - "SunRaysEffect": { - "x": 432, - "y": 576, - "w": 48, - "h": 48 - }, - "SurfaceAppearance": { - "x": 480, - "y": 576, - "w": 48, - "h": 48 - }, - "SurfaceGui": { - "x": 528, - "y": 576, - "w": 48, - "h": 48 - }, - "SurfaceSelection": { - "x": 576, - "y": 576, - "w": 48, - "h": 48 - }, - "SwimController": { - "x": 624, - "y": 576, - "w": 48, - "h": 48 - }, - "Team": { - "x": 672, - "y": 576, - "w": 48, - "h": 48 - }, - "Teams": { - "x": 0, - "y": 624, - "w": 48, - "h": 48 - }, - "TerrainDetail": { - "x": 48, - "y": 624, - "w": 48, - "h": 48 - }, - "Terrain": { - "x": 96, - "y": 624, - "w": 48, - "h": 48 - }, - "TestService": { - "x": 144, - "y": 624, - "w": 48, - "h": 48 - }, - "TextBoxService": { - "x": 192, - "y": 624, - "w": 48, - "h": 48 - }, - "TextBox": { - "x": 240, - "y": 624, - "w": 48, - "h": 48 - }, - "TextButton": { - "x": 288, - "y": 624, - "w": 48, - "h": 48 - }, - "TextChannel": { - "x": 336, - "y": 624, - "w": 48, - "h": 48 - }, - "TextChatCommand": { - "x": 384, - "y": 624, - "w": 48, - "h": 48 - }, - "TextChatService": { - "x": 432, - "y": 624, - "w": 48, - "h": 48 - }, - "TextLabel": { - "x": 480, - "y": 624, - "w": 48, - "h": 48 - }, - "TextString": { - "x": 528, - "y": 624, - "w": 48, - "h": 48 - }, - "Texture": { - "x": 576, - "y": 624, - "w": 48, - "h": 48 - }, - "Tool": { - "x": 624, - "y": 624, - "w": 48, - "h": 48 - }, - "TorsionSpringConstraint": { - "x": 672, - "y": 624, - "w": 48, - "h": 48 - }, - "TremoloSoundEffect": { - "x": 0, - "y": 672, - "w": 48, - "h": 48 - }, - "TrussPart": { - "x": 48, - "y": 672, - "w": 48, - "h": 48 - }, - "TypeParameter": { - "x": 96, - "y": 672, - "w": 48, - "h": 48 - }, - "UGCValidationService": { - "x": 144, - "y": 672, - "w": 48, - "h": 48 - }, - "UIAspectRatioConstraint": { - "x": 192, - "y": 672, - "w": 48, - "h": 48 - }, - "UICorner": { - "x": 240, - "y": 672, - "w": 48, - "h": 48 - }, - "UIGradient": { - "x": 288, - "y": 672, - "w": 48, - "h": 48 - }, - "UIGridLayout": { - "x": 336, - "y": 672, - "w": 48, - "h": 48 - }, - "UIListLayout": { - "x": 384, - "y": 672, - "w": 48, - "h": 48 - }, - "UIPadding": { - "x": 432, - "y": 672, - "w": 48, - "h": 48 - }, - "UIPageLayout": { - "x": 480, - "y": 672, - "w": 48, - "h": 48 - }, - "UIScale": { - "x": 528, - "y": 672, - "w": 48, - "h": 48 - }, - "UISizeConstraint": { - "x": 576, - "y": 672, - "w": 48, - "h": 48 - }, - "UIStroke": { - "x": 624, - "y": 672, - "w": 48, - "h": 48 - }, - "UITableLayout": { - "x": 672, - "y": 672, - "w": 48, - "h": 48 - }, - "UITextSizeConstraint": { - "x": 720, - "y": 0, - "w": 48, - "h": 48 - }, - "Unit": { - "x": 720, - "y": 48, - "w": 48, - "h": 48 - }, - "UniversalConstraint": { - "x": 720, - "y": 96, - "w": 48, - "h": 48 - }, - "UnreliableRemoteEvent": { - "x": 720, - "y": 144, - "w": 48, - "h": 48 - }, - "UpdateAvailable": { - "x": 720, - "y": 192, - "w": 48, - "h": 48 - }, - "UserService": { - "x": 720, - "y": 240, - "w": 48, - "h": 48 - }, - "VRService": { - "x": 720, - "y": 288, - "w": 48, - "h": 48 - }, - "Value": { - "x": 720, - "y": 336, - "w": 48, - "h": 48 - }, - "Variable": { - "x": 720, - "y": 384, - "w": 48, - "h": 48 - }, - "VehicleSeat": { - "x": 720, - "y": 432, - "w": 48, - "h": 48 - }, - "VideoFrame": { - "x": 720, - "y": 480, - "w": 48, - "h": 48 - }, - "ViewportFrame": { - "x": 720, - "y": 528, - "w": 48, - "h": 48 - }, - "VirtualUser": { - "x": 720, - "y": 576, - "w": 48, - "h": 48 - }, - "VoiceChannel": { - "x": 720, - "y": 624, - "w": 48, - "h": 48 - }, - "VoiceChatService": { - "x": 720, - "y": 672, - "w": 48, - "h": 48 - }, - "Voicechat": { - "x": 0, - "y": 720, - "w": 48, - "h": 48 - }, - "WedgePart": { - "x": 48, - "y": 720, - "w": 48, - "h": 48 - }, - "WeldConstraint": { - "x": 96, - "y": 720, - "w": 48, - "h": 48 - }, - "Weld": { - "x": 144, - "y": 720, - "w": 48, - "h": 48 - }, - "Wire": { - "x": 192, - "y": 720, - "w": 48, - "h": 48 - }, - "WireframeHandleAdornment": { - "x": 240, - "y": 720, - "w": 48, - "h": 48 - }, - "Workspace": { - "x": 288, - "y": 720, - "w": 48, - "h": 48 - }, - "WorldModel": { - "x": 336, - "y": 720, - "w": 48, - "h": 48 - }, - "WrapLayer": { - "x": 384, - "y": 720, - "w": 48, - "h": 48 - }, - "WrapTarget": { - "x": 432, - "y": 720, - "w": 48, - "h": 48 - } - } - } \ No newline at end of file diff --git a/Modules/ClassIndex/Tests/Runtime.server.luau b/Modules/ClassIndex/Tests/Runtime.server.luau deleted file mode 100644 index ce70058..0000000 --- a/Modules/ClassIndex/Tests/Runtime.server.luau +++ /dev/null @@ -1,18 +0,0 @@ -local ReplicatedStorage = game:GetService("ReplicatedStorage") - -local EXECUTE_PROJECT_TESTEZ_TESTS = true - -if EXECUTE_PROJECT_TESTEZ_TESTS then - local EmoticonReporter = require(ReplicatedStorage.DevPackages.EmoticonReporter) - local TestEz = require(ReplicatedStorage.DevPackages.TestEz) - - local Reporter = EmoticonReporter.new() - - print("[TestRunner]: TestEZ Running, please be patient if you're running tests on a LIVE environment.") - - TestEz.TestBootstrap:run({ - ReplicatedStorage.Packages.ClassIndex, - }, Reporter) - - Reporter:Print() -end diff --git a/Modules/ClassIndex/aftman.toml b/Modules/ClassIndex/aftman.toml deleted file mode 100644 index 349f6b9..0000000 --- a/Modules/ClassIndex/aftman.toml +++ /dev/null @@ -1,9 +0,0 @@ -# This file lists tools managed by Aftman, a cross-platform toolchain manager. -# For more information, see https://github.com/LPGhatguy/aftman - -# To add a new tool, add an entry to this table. - -[tools] -rojo = "rojo-rbx/rojo@7.3.0" -selene = "Kampfkarren/selene@0.25.0" -wally = "UpliftGames/wally@0.3.2" \ No newline at end of file diff --git a/Modules/ClassIndex/default.project.json b/Modules/ClassIndex/default.project.json deleted file mode 100644 index dd478ca..0000000 --- a/Modules/ClassIndex/default.project.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "name": "ClassIndex", - "tree": { - "$path": "Source" - } -} \ No newline at end of file diff --git a/Modules/ClassIndex/development.project.json b/Modules/ClassIndex/development.project.json deleted file mode 100644 index ab568e0..0000000 --- a/Modules/ClassIndex/development.project.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "name": "class-index", - "tree": { - "$className": "DataModel", - - "Players": { - "$className": "Players", - "$properties": { - "CharacterAutoLoads": false - } - }, - - "ReplicatedStorage": { - "$className": "ReplicatedStorage", - "$ignoreUnknownInstances": true, - - "Packages": { - "$className": "Folder", - "$path": "Packages", - - "ClassIndex": { - "$path": "Source" - } - }, - - "DevPackages": { - "$className": "Folder", - "$path": "DevPackages" - } - }, - - "ServerScriptService": { - "$className": "ServerScriptService", - "$ignoreUnknownInstances": true, - "$path": "Tests" - } - } -} \ No newline at end of file diff --git a/Modules/ClassIndex/roblox.yml b/Modules/ClassIndex/roblox.yml deleted file mode 100644 index e4089d3..0000000 --- a/Modules/ClassIndex/roblox.yml +++ /dev/null @@ -1,16959 +0,0 @@ -# This file was @generated by generate-roblox-std at 2023-04-11 16:38:39.388332415 +01:00 -base: luau -name: roblox -globals: - Axes.new: - args: - - type: '...' - must_use: true - BrickColor.Black: - args: [] - must_use: true - BrickColor.Blue: - args: [] - must_use: true - BrickColor.DarkGray: - args: [] - must_use: true - BrickColor.Gray: - args: [] - must_use: true - BrickColor.Green: - args: [] - must_use: true - BrickColor.Red: - args: [] - must_use: true - BrickColor.White: - args: [] - must_use: true - BrickColor.Yellow: - args: [] - must_use: true - BrickColor.new: - args: - - type: any - - required: false - type: number - - required: false - type: number - must_use: true - BrickColor.palette: - args: - - type: number - must_use: true - BrickColor.random: - args: [] - must_use: true - CFrame.Angles: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - CFrame.fromAxisAngle: - args: - - type: - display: Vector3 - - type: number - must_use: true - CFrame.fromEulerAngles: - args: - - type: number - - type: number - - type: number - - required: false - type: - display: RotationOrder - must_use: true - CFrame.fromEulerAnglesXYZ: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.fromEulerAnglesYXZ: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.fromMatrix: - args: - - type: - display: Vector3 - - type: - display: Vector3 - - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - CFrame.fromOrientation: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.identity: - property: read-only - CFrame.lookAt: - args: - - type: - display: Vector3 - - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - CFrame.new: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - CatalogSearchParams.new: - args: [] - must_use: true - Color3.fromHSV: - args: - - type: number - - type: number - - type: number - must_use: true - Color3.fromHex: - args: - - type: string - must_use: true - Color3.fromRGB: - args: - - type: number - - type: number - - type: number - must_use: true - Color3.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Color3.toHSV: - args: - - type: - display: Color3 - must_use: true - ColorSequence.new: - args: - - type: any - - required: false - type: - display: Color3 - must_use: true - ColorSequenceKeypoint.new: - args: - - type: number - - type: - display: Color3 - must_use: true - DateTime.fromIsoDate: - args: - - type: string - must_use: true - DateTime.fromLocalTime: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - DateTime.fromUniversalTime: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - DateTime.fromUnixTimestamp: - args: - - type: number - must_use: true - DateTime.fromUnixTimestampMillis: - args: - - type: number - must_use: true - DateTime.now: - args: [] - must_use: true - DebuggerManager: - args: [] - must_use: true - DockWidgetPluginGuiInfo.new: - args: - - required: false - type: - display: InitialDockState - - required: false - type: bool - - required: false - type: bool - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Enum.AccessoryType.Back: - struct: EnumItem - Enum.AccessoryType.DressSkirt: - struct: EnumItem - Enum.AccessoryType.Eyebrow: - struct: EnumItem - Enum.AccessoryType.Eyelash: - struct: EnumItem - Enum.AccessoryType.Face: - struct: EnumItem - Enum.AccessoryType.Front: - struct: EnumItem - Enum.AccessoryType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AccessoryType.Hair: - struct: EnumItem - Enum.AccessoryType.Hat: - struct: EnumItem - Enum.AccessoryType.Jacket: - struct: EnumItem - Enum.AccessoryType.LeftShoe: - struct: EnumItem - Enum.AccessoryType.Neck: - struct: EnumItem - Enum.AccessoryType.Pants: - struct: EnumItem - Enum.AccessoryType.RightShoe: - struct: EnumItem - Enum.AccessoryType.Shirt: - struct: EnumItem - Enum.AccessoryType.Shorts: - struct: EnumItem - Enum.AccessoryType.Shoulder: - struct: EnumItem - Enum.AccessoryType.Sweater: - struct: EnumItem - Enum.AccessoryType.TShirt: - struct: EnumItem - Enum.AccessoryType.TeeShirt: - struct: EnumItem - deprecated: - message: Enum.AccessoryType.TeeShirt was replaced with Enum.AccessoryType.TShirt - replace: - - Enum.AccessoryType.TShirt - Enum.AccessoryType.Unknown: - struct: EnumItem - Enum.AccessoryType.Waist: - struct: EnumItem - Enum.ActionType.Draw: - struct: EnumItem - Enum.ActionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActionType.Lose: - struct: EnumItem - Enum.ActionType.Nothing: - struct: EnumItem - Enum.ActionType.Pause: - struct: EnumItem - Enum.ActionType.Win: - struct: EnumItem - Enum.ActuatorRelativeTo.Attachment0: - struct: EnumItem - Enum.ActuatorRelativeTo.Attachment1: - struct: EnumItem - Enum.ActuatorRelativeTo.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActuatorRelativeTo.World: - struct: EnumItem - Enum.ActuatorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActuatorType.Motor: - struct: EnumItem - Enum.ActuatorType.None: - struct: EnumItem - Enum.ActuatorType.Servo: - struct: EnumItem - Enum.AdPortalStatus.Active: - struct: EnumItem - Enum.AdPortalStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdPortalStatus.Inactive: - struct: EnumItem - Enum.AdPortalStatus.Invalid: - struct: EnumItem - Enum.AdPortalType.Forward: - struct: EnumItem - Enum.AdPortalType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdPortalType.Return: - struct: EnumItem - Enum.AdShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdShape.HorizontalRectangle: - struct: EnumItem - Enum.AdTeleportMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdTeleportMethod.InGameMenuBackButton: - struct: EnumItem - Enum.AdTeleportMethod.PortalForward: - struct: EnumItem - Enum.AdTeleportMethod.PortalReturn: - struct: EnumItem - Enum.AdTeleportMethod.UIBackButton: - struct: EnumItem - Enum.AdTeleportMethod.Undefined: - struct: EnumItem - Enum.AdUnitStatus.Active: - struct: EnumItem - Enum.AdUnitStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdUnitStatus.Inactive: - struct: EnumItem - Enum.AdornCullingMode.Automatic: - struct: EnumItem - Enum.AdornCullingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdornCullingMode.Never: - struct: EnumItem - Enum.AlignType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AlignType.Parallel: - struct: EnumItem - Enum.AlignType.Perpendicular: - struct: EnumItem - Enum.AlphaMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AlphaMode.Overlay: - struct: EnumItem - Enum.AlphaMode.Transparency: - struct: EnumItem - Enum.AnalyticsEconomyAction.Acquire: - struct: EnumItem - Enum.AnalyticsEconomyAction.Default: - struct: EnumItem - Enum.AnalyticsEconomyAction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnalyticsEconomyAction.Spend: - struct: EnumItem - Enum.AnalyticsLogLevel.Debug: - struct: EnumItem - Enum.AnalyticsLogLevel.Error: - struct: EnumItem - Enum.AnalyticsLogLevel.Fatal: - struct: EnumItem - Enum.AnalyticsLogLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnalyticsLogLevel.Information: - struct: EnumItem - Enum.AnalyticsLogLevel.Trace: - struct: EnumItem - Enum.AnalyticsLogLevel.Warning: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Abandon: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Begin: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Complete: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Default: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Fail: - struct: EnumItem - Enum.AnalyticsProgressionStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnimationPriority.Action: - struct: EnumItem - Enum.AnimationPriority.Action2: - struct: EnumItem - Enum.AnimationPriority.Action3: - struct: EnumItem - Enum.AnimationPriority.Action4: - struct: EnumItem - Enum.AnimationPriority.Core: - struct: EnumItem - Enum.AnimationPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnimationPriority.Idle: - struct: EnumItem - Enum.AnimationPriority.Movement: - struct: EnumItem - Enum.AnimatorRetargetingMode.Default: - struct: EnumItem - Enum.AnimatorRetargetingMode.Disabled: - struct: EnumItem - Enum.AnimatorRetargetingMode.Enabled: - struct: EnumItem - Enum.AnimatorRetargetingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellActionType.AvatarEditorPageLoaded: - struct: EnumItem - Enum.AppShellActionType.GamePageLoaded: - struct: EnumItem - Enum.AppShellActionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellActionType.HomePageLoaded: - struct: EnumItem - Enum.AppShellActionType.None: - struct: EnumItem - Enum.AppShellActionType.OpenApp: - struct: EnumItem - Enum.AppShellActionType.ReadConversation: - struct: EnumItem - Enum.AppShellActionType.TapAvatarTab: - struct: EnumItem - Enum.AppShellActionType.TapChatTab: - struct: EnumItem - Enum.AppShellActionType.TapConversationEntry: - struct: EnumItem - Enum.AppShellActionType.TapGamePageTab: - struct: EnumItem - Enum.AppShellActionType.TapHomePageTab: - struct: EnumItem - Enum.AppShellFeature.AvatarEditor: - struct: EnumItem - Enum.AppShellFeature.Chat: - struct: EnumItem - Enum.AppShellFeature.GamePage: - struct: EnumItem - Enum.AppShellFeature.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellFeature.HomePage: - struct: EnumItem - Enum.AppShellFeature.Landing: - struct: EnumItem - Enum.AppShellFeature.More: - struct: EnumItem - Enum.AppShellFeature.None: - struct: EnumItem - Enum.AppUpdateStatus.Available: - struct: EnumItem - Enum.AppUpdateStatus.Failed: - struct: EnumItem - Enum.AppUpdateStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppUpdateStatus.NotAvailable: - struct: EnumItem - Enum.AppUpdateStatus.NotSupported: - struct: EnumItem - Enum.AppUpdateStatus.Unknown: - struct: EnumItem - Enum.ApplyStrokeMode.Border: - struct: EnumItem - Enum.ApplyStrokeMode.Contextual: - struct: EnumItem - Enum.ApplyStrokeMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AspectType.FitWithinMaxSize: - struct: EnumItem - Enum.AspectType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AspectType.ScaleWithParentSize: - struct: EnumItem - Enum.AssetFetchStatus.Failure: - struct: EnumItem - Enum.AssetFetchStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AssetFetchStatus.Loading: - struct: EnumItem - Enum.AssetFetchStatus.None: - struct: EnumItem - Enum.AssetFetchStatus.Success: - struct: EnumItem - Enum.AssetFetchStatus.TimedOut: - struct: EnumItem - Enum.AssetType.Animation: - struct: EnumItem - Enum.AssetType.Audio: - struct: EnumItem - Enum.AssetType.BackAccessory: - struct: EnumItem - Enum.AssetType.Badge: - struct: EnumItem - Enum.AssetType.ClimbAnimation: - struct: EnumItem - Enum.AssetType.DeathAnimation: - struct: EnumItem - Enum.AssetType.Decal: - struct: EnumItem - Enum.AssetType.DressSkirtAccessory: - struct: EnumItem - Enum.AssetType.DynamicHead: - struct: EnumItem - Enum.AssetType.EarAccessory: - struct: EnumItem - Enum.AssetType.EmoteAnimation: - struct: EnumItem - Enum.AssetType.EyeAccessory: - struct: EnumItem - Enum.AssetType.EyebrowAccessory: - struct: EnumItem - Enum.AssetType.EyelashAccessory: - struct: EnumItem - Enum.AssetType.Face: - struct: EnumItem - Enum.AssetType.FaceAccessory: - struct: EnumItem - Enum.AssetType.FallAnimation: - struct: EnumItem - Enum.AssetType.FontFamily: - struct: EnumItem - Enum.AssetType.FrontAccessory: - struct: EnumItem - Enum.AssetType.GamePass: - struct: EnumItem - Enum.AssetType.Gear: - struct: EnumItem - Enum.AssetType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AssetType.HairAccessory: - struct: EnumItem - Enum.AssetType.Hat: - struct: EnumItem - Enum.AssetType.Head: - struct: EnumItem - Enum.AssetType.IdleAnimation: - struct: EnumItem - Enum.AssetType.Image: - struct: EnumItem - Enum.AssetType.JacketAccessory: - struct: EnumItem - Enum.AssetType.JumpAnimation: - struct: EnumItem - Enum.AssetType.LeftArm: - struct: EnumItem - Enum.AssetType.LeftLeg: - struct: EnumItem - Enum.AssetType.LeftShoeAccessory: - struct: EnumItem - Enum.AssetType.Lua: - struct: EnumItem - Enum.AssetType.Mesh: - struct: EnumItem - Enum.AssetType.MeshPart: - struct: EnumItem - Enum.AssetType.Model: - struct: EnumItem - Enum.AssetType.MoodAnimation: - struct: EnumItem - Enum.AssetType.NeckAccessory: - struct: EnumItem - Enum.AssetType.Package: - struct: EnumItem - Enum.AssetType.Pants: - struct: EnumItem - Enum.AssetType.PantsAccessory: - struct: EnumItem - Enum.AssetType.Place: - struct: EnumItem - Enum.AssetType.Plugin: - struct: EnumItem - Enum.AssetType.PoseAnimation: - struct: EnumItem - Enum.AssetType.RightArm: - struct: EnumItem - Enum.AssetType.RightLeg: - struct: EnumItem - Enum.AssetType.RightShoeAccessory: - struct: EnumItem - Enum.AssetType.RunAnimation: - struct: EnumItem - Enum.AssetType.Shirt: - struct: EnumItem - Enum.AssetType.ShirtAccessory: - struct: EnumItem - Enum.AssetType.ShortsAccessory: - struct: EnumItem - Enum.AssetType.ShoulderAccessory: - struct: EnumItem - Enum.AssetType.SweaterAccessory: - struct: EnumItem - Enum.AssetType.SwimAnimation: - struct: EnumItem - Enum.AssetType.TShirt: - struct: EnumItem - Enum.AssetType.TShirtAccessory: - struct: EnumItem - Enum.AssetType.TeeShirt: - struct: EnumItem - deprecated: - message: Enum.AssetType.TeeShirt was replaced with Enum.AssetType.TShirt - replace: - - Enum.AssetType.TShirt - Enum.AssetType.TeeShirtAccessory: - struct: EnumItem - deprecated: - message: Enum.AssetType.TeeShirtAccessory was replaced with Enum.AssetType.TShirtAccessory - replace: - - Enum.AssetType.TShirtAccessory - Enum.AssetType.Torso: - struct: EnumItem - Enum.AssetType.Video: - struct: EnumItem - Enum.AssetType.WaistAccessory: - struct: EnumItem - Enum.AssetType.WalkAnimation: - struct: EnumItem - Enum.AssetTypeVerification.Always: - struct: EnumItem - Enum.AssetTypeVerification.ClientOnly: - struct: EnumItem - Enum.AssetTypeVerification.Default: - struct: EnumItem - Enum.AssetTypeVerification.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AudioSubType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AudioSubType.Music: - struct: EnumItem - Enum.AudioSubType.SoundEffect: - struct: EnumItem - Enum.AutoIndentRule.Absolute: - struct: EnumItem - Enum.AutoIndentRule.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AutoIndentRule.Off: - struct: EnumItem - Enum.AutoIndentRule.Relative: - struct: EnumItem - Enum.AutomaticSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AutomaticSize.None: - struct: EnumItem - Enum.AutomaticSize.X: - struct: EnumItem - Enum.AutomaticSize.XY: - struct: EnumItem - Enum.AutomaticSize.Y: - struct: EnumItem - Enum.AvatarAssetType.BackAccessory: - struct: EnumItem - Enum.AvatarAssetType.ClimbAnimation: - struct: EnumItem - Enum.AvatarAssetType.DressSkirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.DynamicHead: - struct: EnumItem - Enum.AvatarAssetType.EmoteAnimation: - struct: EnumItem - Enum.AvatarAssetType.EyebrowAccessory: - struct: EnumItem - Enum.AvatarAssetType.EyelashAccessory: - struct: EnumItem - Enum.AvatarAssetType.Face: - struct: EnumItem - Enum.AvatarAssetType.FaceAccessory: - struct: EnumItem - Enum.AvatarAssetType.FallAnimation: - struct: EnumItem - Enum.AvatarAssetType.FrontAccessory: - struct: EnumItem - Enum.AvatarAssetType.Gear: - struct: EnumItem - Enum.AvatarAssetType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarAssetType.HairAccessory: - struct: EnumItem - Enum.AvatarAssetType.Hat: - struct: EnumItem - Enum.AvatarAssetType.Head: - struct: EnumItem - Enum.AvatarAssetType.IdleAnimation: - struct: EnumItem - Enum.AvatarAssetType.JacketAccessory: - struct: EnumItem - Enum.AvatarAssetType.JumpAnimation: - struct: EnumItem - Enum.AvatarAssetType.LeftArm: - struct: EnumItem - Enum.AvatarAssetType.LeftLeg: - struct: EnumItem - Enum.AvatarAssetType.LeftShoeAccessory: - struct: EnumItem - Enum.AvatarAssetType.MoodAnimation: - struct: EnumItem - Enum.AvatarAssetType.NeckAccessory: - struct: EnumItem - Enum.AvatarAssetType.Pants: - struct: EnumItem - Enum.AvatarAssetType.PantsAccessory: - struct: EnumItem - Enum.AvatarAssetType.RightArm: - struct: EnumItem - Enum.AvatarAssetType.RightLeg: - struct: EnumItem - Enum.AvatarAssetType.RightShoeAccessory: - struct: EnumItem - Enum.AvatarAssetType.RunAnimation: - struct: EnumItem - Enum.AvatarAssetType.Shirt: - struct: EnumItem - Enum.AvatarAssetType.ShirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.ShortsAccessory: - struct: EnumItem - Enum.AvatarAssetType.ShoulderAccessory: - struct: EnumItem - Enum.AvatarAssetType.SweaterAccessory: - struct: EnumItem - Enum.AvatarAssetType.SwimAnimation: - struct: EnumItem - Enum.AvatarAssetType.TShirt: - struct: EnumItem - Enum.AvatarAssetType.TShirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.TeeShirtAccessory: - struct: EnumItem - deprecated: - message: Enum.AvatarAssetType.TeeShirtAccessory was replaced with Enum.AvatarAssetType.TShirtAccessory - replace: - - Enum.AvatarAssetType.TShirtAccessory - Enum.AvatarAssetType.Torso: - struct: EnumItem - Enum.AvatarAssetType.WaistAccessory: - struct: EnumItem - Enum.AvatarAssetType.WalkAnimation: - struct: EnumItem - Enum.AvatarContextMenuOption.Chat: - struct: EnumItem - Enum.AvatarContextMenuOption.Emote: - struct: EnumItem - Enum.AvatarContextMenuOption.Friend: - struct: EnumItem - Enum.AvatarContextMenuOption.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarContextMenuOption.InspectMenu: - struct: EnumItem - Enum.AvatarItemType.Asset: - struct: EnumItem - Enum.AvatarItemType.Bundle: - struct: EnumItem - Enum.AvatarItemType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarPromptResult.Failed: - struct: EnumItem - Enum.AvatarPromptResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarPromptResult.PermissionDenied: - struct: EnumItem - Enum.AvatarPromptResult.Success: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.Closeup: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.FullBody: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Axis.Back: - struct: EnumItem - deprecated: - message: Enum.Axis.Back was replaced with Enum.Axis.Z - replace: - - Enum.Axis.Z - Enum.Axis.Bottom: - struct: EnumItem - deprecated: - message: Enum.Axis.Bottom was replaced with Enum.Axis.Y - replace: - - Enum.Axis.Y - Enum.Axis.Front: - struct: EnumItem - deprecated: - message: Enum.Axis.Front was replaced with Enum.Axis.Z - replace: - - Enum.Axis.Z - Enum.Axis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Axis.Left: - struct: EnumItem - deprecated: - message: Enum.Axis.Left was replaced with Enum.Axis.X - replace: - - Enum.Axis.X - Enum.Axis.Right: - struct: EnumItem - deprecated: - message: Enum.Axis.Right was replaced with Enum.Axis.X - replace: - - Enum.Axis.X - Enum.Axis.Top: - struct: EnumItem - deprecated: - message: Enum.Axis.Top was replaced with Enum.Axis.Y - replace: - - Enum.Axis.Y - Enum.Axis.X: - struct: EnumItem - Enum.Axis.Y: - struct: EnumItem - Enum.Axis.Z: - struct: EnumItem - Enum.BinType.Clone: - struct: EnumItem - Enum.BinType.GameTool: - struct: EnumItem - Enum.BinType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BinType.Grab: - struct: EnumItem - Enum.BinType.Hammer: - struct: EnumItem - Enum.BinType.Laser: - struct: EnumItem - deprecated: - message: Enum.BinType.Laser was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BinType.Rocket: - struct: EnumItem - deprecated: - message: Enum.BinType.Rocket was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BinType.Script: - struct: EnumItem - Enum.BinType.Slingshot: - struct: EnumItem - deprecated: - message: Enum.BinType.Slingshot was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BodyPart.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BodyPart.Head: - struct: EnumItem - Enum.BodyPart.LeftArm: - struct: EnumItem - Enum.BodyPart.LeftLeg: - struct: EnumItem - Enum.BodyPart.RightArm: - struct: EnumItem - Enum.BodyPart.RightLeg: - struct: EnumItem - Enum.BodyPart.Torso: - struct: EnumItem - Enum.BodyPartR15.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BodyPartR15.Head: - struct: EnumItem - Enum.BodyPartR15.LeftFoot: - struct: EnumItem - Enum.BodyPartR15.LeftHand: - struct: EnumItem - Enum.BodyPartR15.LeftLowerArm: - struct: EnumItem - Enum.BodyPartR15.LeftLowerLeg: - struct: EnumItem - Enum.BodyPartR15.LeftUpperArm: - struct: EnumItem - Enum.BodyPartR15.LeftUpperLeg: - struct: EnumItem - Enum.BodyPartR15.LowerTorso: - struct: EnumItem - Enum.BodyPartR15.RightFoot: - struct: EnumItem - Enum.BodyPartR15.RightHand: - struct: EnumItem - Enum.BodyPartR15.RightLowerArm: - struct: EnumItem - Enum.BodyPartR15.RightLowerLeg: - struct: EnumItem - Enum.BodyPartR15.RightUpperArm: - struct: EnumItem - Enum.BodyPartR15.RightUpperLeg: - struct: EnumItem - Enum.BodyPartR15.RootPart: - struct: EnumItem - Enum.BodyPartR15.Unknown: - struct: EnumItem - Enum.BodyPartR15.UpperTorso: - struct: EnumItem - Enum.BorderMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BorderMode.Inset: - struct: EnumItem - Enum.BorderMode.Middle: - struct: EnumItem - Enum.BorderMode.Outline: - struct: EnumItem - Enum.BreakReason.Error: - struct: EnumItem - Enum.BreakReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BreakReason.Other: - struct: EnumItem - Enum.BreakReason.SpecialBreakpoint: - struct: EnumItem - Enum.BreakReason.UserBreakpoint: - struct: EnumItem - Enum.BreakpointRemoveReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BreakpointRemoveReason.Requested: - struct: EnumItem - Enum.BreakpointRemoveReason.ScriptChanged: - struct: EnumItem - Enum.BreakpointRemoveReason.ScriptRemoved: - struct: EnumItem - Enum.BulkMoveMode.FireAllEvents: - struct: EnumItem - Enum.BulkMoveMode.FireCFrameChanged: - struct: EnumItem - Enum.BulkMoveMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BundleType.Animations: - struct: EnumItem - Enum.BundleType.BodyParts: - struct: EnumItem - Enum.BundleType.DynamicHead: - struct: EnumItem - Enum.BundleType.DynamicHeadAvatar: - struct: EnumItem - Enum.BundleType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BundleType.Shoes: - struct: EnumItem - Enum.Button.Dismount: - struct: EnumItem - Enum.Button.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Button.Jump: - struct: EnumItem - Enum.ButtonStyle.Custom: - struct: EnumItem - Enum.ButtonStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ButtonStyle.RobloxButton: - struct: EnumItem - Enum.ButtonStyle.RobloxButtonDefault: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundButton: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundDefaultButton: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundDropdownButton: - struct: EnumItem - Enum.CageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CageType.Inner: - struct: EnumItem - Enum.CageType.Outer: - struct: EnumItem - Enum.CameraMode.Classic: - struct: EnumItem - Enum.CameraMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraMode.LockFirstPerson: - struct: EnumItem - Enum.CameraPanMode.Classic: - struct: EnumItem - Enum.CameraPanMode.EdgeBump: - struct: EnumItem - Enum.CameraPanMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraType.Attach: - struct: EnumItem - Enum.CameraType.Custom: - struct: EnumItem - Enum.CameraType.Fixed: - struct: EnumItem - Enum.CameraType.Follow: - struct: EnumItem - Enum.CameraType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraType.Orbital: - struct: EnumItem - Enum.CameraType.Scriptable: - struct: EnumItem - Enum.CameraType.Track: - struct: EnumItem - Enum.CameraType.Watch: - struct: EnumItem - Enum.CatalogCategoryFilter.Collectibles: - struct: EnumItem - Enum.CatalogCategoryFilter.CommunityCreations: - struct: EnumItem - Enum.CatalogCategoryFilter.Featured: - struct: EnumItem - Enum.CatalogCategoryFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogCategoryFilter.None: - struct: EnumItem - Enum.CatalogCategoryFilter.Premium: - struct: EnumItem - Enum.CatalogCategoryFilter.Recommended: - struct: EnumItem - Enum.CatalogSortAggregation.AllTime: - struct: EnumItem - Enum.CatalogSortAggregation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogSortAggregation.Past12Hours: - struct: EnumItem - Enum.CatalogSortAggregation.Past3Days: - struct: EnumItem - Enum.CatalogSortAggregation.PastDay: - struct: EnumItem - Enum.CatalogSortAggregation.PastMonth: - struct: EnumItem - Enum.CatalogSortAggregation.PastWeek: - struct: EnumItem - Enum.CatalogSortType.Bestselling: - struct: EnumItem - Enum.CatalogSortType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogSortType.MostFavorited: - struct: EnumItem - Enum.CatalogSortType.PriceHighToLow: - struct: EnumItem - Enum.CatalogSortType.PriceLowToHigh: - struct: EnumItem - Enum.CatalogSortType.RecentlyCreated: - struct: EnumItem - Enum.CatalogSortType.RecentlyUpdated: - struct: EnumItem - deprecated: - message: Enum.CatalogSortType.RecentlyUpdated was replaced with Enum.CatalogSortType.RecentlyCreated - replace: - - Enum.CatalogSortType.RecentlyCreated - Enum.CatalogSortType.Relevance: - struct: EnumItem - Enum.CellBlock.CornerWedge: - struct: EnumItem - Enum.CellBlock.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellBlock.HorizontalWedge: - struct: EnumItem - Enum.CellBlock.InverseCornerWedge: - struct: EnumItem - Enum.CellBlock.Solid: - struct: EnumItem - Enum.CellBlock.VerticalWedge: - struct: EnumItem - Enum.CellMaterial.Aluminum: - struct: EnumItem - Enum.CellMaterial.Asphalt: - struct: EnumItem - Enum.CellMaterial.BluePlastic: - struct: EnumItem - Enum.CellMaterial.Brick: - struct: EnumItem - Enum.CellMaterial.Cement: - struct: EnumItem - Enum.CellMaterial.CinderBlock: - struct: EnumItem - Enum.CellMaterial.Empty: - struct: EnumItem - Enum.CellMaterial.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellMaterial.Gold: - struct: EnumItem - Enum.CellMaterial.Granite: - struct: EnumItem - Enum.CellMaterial.Grass: - struct: EnumItem - Enum.CellMaterial.Gravel: - struct: EnumItem - Enum.CellMaterial.Iron: - struct: EnumItem - Enum.CellMaterial.MossyStone: - struct: EnumItem - Enum.CellMaterial.RedPlastic: - struct: EnumItem - Enum.CellMaterial.Sand: - struct: EnumItem - Enum.CellMaterial.Water: - struct: EnumItem - Enum.CellMaterial.WoodLog: - struct: EnumItem - Enum.CellMaterial.WoodPlank: - struct: EnumItem - Enum.CellOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellOrientation.NegX: - struct: EnumItem - Enum.CellOrientation.NegZ: - struct: EnumItem - Enum.CellOrientation.X: - struct: EnumItem - Enum.CellOrientation.Z: - struct: EnumItem - Enum.CenterDialogType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CenterDialogType.ModalDialog: - struct: EnumItem - Enum.CenterDialogType.PlayerInitiatedDialog: - struct: EnumItem - Enum.CenterDialogType.QuitDialog: - struct: EnumItem - Enum.CenterDialogType.UnsolicitedDialog: - struct: EnumItem - Enum.ChatCallbackType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatCallbackType.OnClientFormattingMessage: - struct: EnumItem - Enum.ChatCallbackType.OnClientSendingMessage: - struct: EnumItem - Enum.ChatCallbackType.OnCreatingChatWindow: - struct: EnumItem - Enum.ChatCallbackType.OnServerReceivingMessage: - struct: EnumItem - Enum.ChatColor.Blue: - struct: EnumItem - Enum.ChatColor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatColor.Green: - struct: EnumItem - Enum.ChatColor.Red: - struct: EnumItem - Enum.ChatColor.White: - struct: EnumItem - Enum.ChatMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatMode.Menu: - struct: EnumItem - Enum.ChatMode.TextAndMenu: - struct: EnumItem - Enum.ChatPrivacyMode.AllUsers: - struct: EnumItem - Enum.ChatPrivacyMode.Friends: - struct: EnumItem - Enum.ChatPrivacyMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatPrivacyMode.NoOne: - struct: EnumItem - Enum.ChatStyle.Bubble: - struct: EnumItem - Enum.ChatStyle.Classic: - struct: EnumItem - Enum.ChatStyle.ClassicAndBubble: - struct: EnumItem - Enum.ChatStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatVersion.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatVersion.LegacyChatService: - struct: EnumItem - Enum.ChatVersion.TextChatService: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Default: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Disabled: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Enabled: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CollisionFidelity.Box: - struct: EnumItem - Enum.CollisionFidelity.Default: - struct: EnumItem - Enum.CollisionFidelity.DynamicPreciseConvexDecomposition: - struct: EnumItem - Enum.CollisionFidelity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CollisionFidelity.Hull: - struct: EnumItem - Enum.CollisionFidelity.PreciseConvexDecomposition: - struct: EnumItem - Enum.CommandPermission.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CommandPermission.LocalUser: - struct: EnumItem - Enum.CommandPermission.Plugin: - struct: EnumItem - Enum.CompletionItemKind.Class: - struct: EnumItem - Enum.CompletionItemKind.Color: - struct: EnumItem - Enum.CompletionItemKind.Constant: - struct: EnumItem - Enum.CompletionItemKind.Constructor: - struct: EnumItem - Enum.CompletionItemKind.Enum: - struct: EnumItem - Enum.CompletionItemKind.EnumMember: - struct: EnumItem - Enum.CompletionItemKind.Event: - struct: EnumItem - Enum.CompletionItemKind.Field: - struct: EnumItem - Enum.CompletionItemKind.File: - struct: EnumItem - Enum.CompletionItemKind.Folder: - struct: EnumItem - Enum.CompletionItemKind.Function: - struct: EnumItem - Enum.CompletionItemKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionItemKind.Interface: - struct: EnumItem - Enum.CompletionItemKind.Keyword: - struct: EnumItem - Enum.CompletionItemKind.Method: - struct: EnumItem - Enum.CompletionItemKind.Module: - struct: EnumItem - Enum.CompletionItemKind.Operator: - struct: EnumItem - Enum.CompletionItemKind.Property: - struct: EnumItem - Enum.CompletionItemKind.Reference: - struct: EnumItem - Enum.CompletionItemKind.Snippet: - struct: EnumItem - Enum.CompletionItemKind.Struct: - struct: EnumItem - Enum.CompletionItemKind.Text: - struct: EnumItem - Enum.CompletionItemKind.TypeParameter: - struct: EnumItem - Enum.CompletionItemKind.Unit: - struct: EnumItem - Enum.CompletionItemKind.Value: - struct: EnumItem - Enum.CompletionItemKind.Variable: - struct: EnumItem - Enum.CompletionItemTag.AddParens: - struct: EnumItem - Enum.CompletionItemTag.ClientServerBoundaryViolation: - struct: EnumItem - Enum.CompletionItemTag.CommandLinePermissions: - struct: EnumItem - Enum.CompletionItemTag.Deprecated: - struct: EnumItem - Enum.CompletionItemTag.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionItemTag.IncorrectIndexType: - struct: EnumItem - Enum.CompletionItemTag.PluginPermissions: - struct: EnumItem - Enum.CompletionItemTag.PutCursorInParens: - struct: EnumItem - Enum.CompletionItemTag.RobloxPermissions: - struct: EnumItem - Enum.CompletionItemTag.TypeCorrect: - struct: EnumItem - Enum.CompletionTriggerKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionTriggerKind.Invoked: - struct: EnumItem - Enum.CompletionTriggerKind.TriggerCharacter: - struct: EnumItem - Enum.CompletionTriggerKind.TriggerForIncompleteCompletions: - struct: EnumItem - Enum.ComputerCameraMovementMode.CameraToggle: - struct: EnumItem - Enum.ComputerCameraMovementMode.Classic: - struct: EnumItem - Enum.ComputerCameraMovementMode.Default: - struct: EnumItem - Enum.ComputerCameraMovementMode.Follow: - struct: EnumItem - Enum.ComputerCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ComputerCameraMovementMode.Orbital: - struct: EnumItem - Enum.ComputerMovementMode.ClickToMove: - struct: EnumItem - Enum.ComputerMovementMode.Default: - struct: EnumItem - Enum.ComputerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ComputerMovementMode.KeyboardMouse: - struct: EnumItem - Enum.ConnectionError.DisconnectBadhash: - struct: EnumItem - Enum.ConnectionError.DisconnectBlockedIP: - struct: EnumItem - Enum.ConnectionError.DisconnectBySecurityPolicy: - struct: EnumItem - Enum.ConnectionError.DisconnectClientFailure: - struct: EnumItem - Enum.ConnectionError.DisconnectClientRequest: - struct: EnumItem - Enum.ConnectionError.DisconnectCloudEditKick: - struct: EnumItem - Enum.ConnectionError.DisconnectConnectionLost: - struct: EnumItem - Enum.ConnectionError.DisconnectDevMaintenance: - struct: EnumItem - Enum.ConnectionError.DisconnectDuplicatePlayer: - struct: EnumItem - Enum.ConnectionError.DisconnectDuplicateTicket: - struct: EnumItem - Enum.ConnectionError.DisconnectErrors: - struct: EnumItem - Enum.ConnectionError.DisconnectEvicted: - struct: EnumItem - Enum.ConnectionError.DisconnectHashTimeout: - struct: EnumItem - Enum.ConnectionError.DisconnectIdle: - struct: EnumItem - Enum.ConnectionError.DisconnectIllegalTeleport: - struct: EnumItem - Enum.ConnectionError.DisconnectLuaKick: - struct: EnumItem - Enum.ConnectionError.DisconnectModeratedGame: - struct: EnumItem - Enum.ConnectionError.DisconnectNewSecurityKeyMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectOnRemoteSysStats: - struct: EnumItem - Enum.ConnectionError.DisconnectOutOfMemoryKeepPlayingLeave: - struct: EnumItem - Enum.ConnectionError.DisconnectPlayerless: - struct: EnumItem - Enum.ConnectionError.DisconnectProtocolMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectRaknetErrors: - struct: EnumItem - Enum.ConnectionError.DisconnectReceivePacketError: - struct: EnumItem - Enum.ConnectionError.DisconnectReceivePacketStreamError: - struct: EnumItem - Enum.ConnectionError.DisconnectRejoin: - struct: EnumItem - Enum.ConnectionError.DisconnectRobloxMaintenance: - struct: EnumItem - Enum.ConnectionError.DisconnectRomarkEndOfTest: - struct: EnumItem - Enum.ConnectionError.DisconnectSecurityKeyMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectSendPacketError: - struct: EnumItem - Enum.ConnectionError.DisconnectTimeout: - struct: EnumItem - Enum.ConnectionError.DisconnectWrongVersion: - struct: EnumItem - Enum.ConnectionError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ConnectionError.OK: - struct: EnumItem - Enum.ConnectionError.PlacelaunchCustomMessage: - struct: EnumItem - Enum.ConnectionError.PlacelaunchDisabled: - struct: EnumItem - Enum.ConnectionError.PlacelaunchError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchErrors: - struct: EnumItem - Enum.ConnectionError.PlacelaunchFlooded: - struct: EnumItem - Enum.ConnectionError.PlacelaunchGameEnded: - struct: EnumItem - Enum.ConnectionError.PlacelaunchGameFull: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHashException: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHashExpired: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHttpError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchOtherError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchPartyCannotFit: - struct: EnumItem - Enum.ConnectionError.PlacelaunchRestricted: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUnauthorized: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUserLeft: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUserPrivacyUnauthorized: - struct: EnumItem - Enum.ConnectionError.PlayerRemoved: - struct: EnumItem - Enum.ConnectionError.ReplicatorTimeout: - struct: EnumItem - Enum.ConnectionError.TeleportErrors: - struct: EnumItem - Enum.ConnectionError.TeleportFailure: - struct: EnumItem - Enum.ConnectionError.TeleportFlooded: - struct: EnumItem - Enum.ConnectionError.TeleportGameEnded: - struct: EnumItem - Enum.ConnectionError.TeleportGameFull: - struct: EnumItem - Enum.ConnectionError.TeleportGameNotFound: - struct: EnumItem - Enum.ConnectionError.TeleportIsTeleporting: - struct: EnumItem - Enum.ConnectionError.TeleportUnauthorized: - struct: EnumItem - Enum.ConnectionError.Unknown: - struct: EnumItem - Enum.ConnectionState.Connected: - struct: EnumItem - Enum.ConnectionState.Disconnected: - struct: EnumItem - Enum.ConnectionState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionPriority.Default: - struct: EnumItem - deprecated: - message: Enum.ContextActionPriority.Default was replaced with Enum.ContextActionPriority.Medium - replace: - - Enum.ContextActionPriority.Medium - Enum.ContextActionPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionPriority.High: - struct: EnumItem - Enum.ContextActionPriority.Low: - struct: EnumItem - Enum.ContextActionPriority.Medium: - struct: EnumItem - Enum.ContextActionResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionResult.Pass: - struct: EnumItem - Enum.ContextActionResult.Sink: - struct: EnumItem - Enum.ControlMode.Classic: - struct: EnumItem - Enum.ControlMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ControlMode.Mouse Lock Switch: - struct: EnumItem - deprecated: - message: Enum.ControlMode.Mouse Lock Switch was replaced with Enum.ControlMode.MouseLockSwitch - replace: - - Enum.ControlMode.MouseLockSwitch - Enum.ControlMode.MouseLockSwitch: - struct: EnumItem - Enum.CoreGuiType.All: - struct: EnumItem - Enum.CoreGuiType.Backpack: - struct: EnumItem - Enum.CoreGuiType.Chat: - struct: EnumItem - Enum.CoreGuiType.EmotesMenu: - struct: EnumItem - Enum.CoreGuiType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CoreGuiType.Health: - struct: EnumItem - Enum.CoreGuiType.PlayerList: - struct: EnumItem - Enum.CoreGuiType.SelfView: - struct: EnumItem - Enum.CreateOutfitFailure.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreateOutfitFailure.InvalidName: - struct: EnumItem - Enum.CreateOutfitFailure.Other: - struct: EnumItem - Enum.CreateOutfitFailure.OutfitLimitReached: - struct: EnumItem - Enum.CreatorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreatorType.Group: - struct: EnumItem - Enum.CreatorType.User: - struct: EnumItem - Enum.CreatorTypeFilter.All: - struct: EnumItem - Enum.CreatorTypeFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreatorTypeFilter.Group: - struct: EnumItem - Enum.CreatorTypeFilter.User: - struct: EnumItem - Enum.CurrencyType.Default: - struct: EnumItem - Enum.CurrencyType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CurrencyType.Robux: - struct: EnumItem - Enum.CurrencyType.Tix: - struct: EnumItem - Enum.CustomCameraMode.Classic: - struct: EnumItem - Enum.CustomCameraMode.Default: - struct: EnumItem - Enum.CustomCameraMode.Follow: - struct: EnumItem - Enum.CustomCameraMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DataStoreRequestType.GetAsync: - struct: EnumItem - Enum.DataStoreRequestType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DataStoreRequestType.GetSortedAsync: - struct: EnumItem - Enum.DataStoreRequestType.OnUpdate: - struct: EnumItem - Enum.DataStoreRequestType.SetIncrementAsync: - struct: EnumItem - Enum.DataStoreRequestType.SetIncrementSortedAsync: - struct: EnumItem - Enum.DataStoreRequestType.UpdateAsync: - struct: EnumItem - Enum.DebuggerEndReason.ClientRequest: - struct: EnumItem - Enum.DebuggerEndReason.ConfigurationFailed: - struct: EnumItem - Enum.DebuggerEndReason.Disconnected: - struct: EnumItem - Enum.DebuggerEndReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerEndReason.InvalidHost: - struct: EnumItem - Enum.DebuggerEndReason.RpcError: - struct: EnumItem - Enum.DebuggerEndReason.ServerProtocolMismatch: - struct: EnumItem - Enum.DebuggerEndReason.ServerShutdown: - struct: EnumItem - Enum.DebuggerEndReason.Timeout: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.Always: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerExceptionBreakMode.Never: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.Unhandled: - struct: EnumItem - Enum.DebuggerFrameType.C: - struct: EnumItem - Enum.DebuggerFrameType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerFrameType.Lua: - struct: EnumItem - Enum.DebuggerPauseReason.Breakpoint: - struct: EnumItem - Enum.DebuggerPauseReason.Entrypoint: - struct: EnumItem - Enum.DebuggerPauseReason.Exception: - struct: EnumItem - Enum.DebuggerPauseReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerPauseReason.Requested: - struct: EnumItem - Enum.DebuggerPauseReason.SingleStep: - struct: EnumItem - Enum.DebuggerPauseReason.Unknown: - struct: EnumItem - Enum.DebuggerStatus.ConnectionClosed: - struct: EnumItem - Enum.DebuggerStatus.ConnectionLost: - struct: EnumItem - Enum.DebuggerStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerStatus.InternalError: - struct: EnumItem - Enum.DebuggerStatus.InvalidArgument: - struct: EnumItem - Enum.DebuggerStatus.InvalidResponse: - struct: EnumItem - Enum.DebuggerStatus.InvalidState: - struct: EnumItem - Enum.DebuggerStatus.RpcError: - struct: EnumItem - Enum.DebuggerStatus.Success: - struct: EnumItem - Enum.DebuggerStatus.Timeout: - struct: EnumItem - Enum.DevCameraOcclusionMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevCameraOcclusionMode.Invisicam: - struct: EnumItem - Enum.DevCameraOcclusionMode.Zoom: - struct: EnumItem - Enum.DevComputerCameraMovementMode.CameraToggle: - struct: EnumItem - Enum.DevComputerCameraMovementMode.Classic: - struct: EnumItem - Enum.DevComputerCameraMovementMode.Follow: - struct: EnumItem - Enum.DevComputerCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevComputerCameraMovementMode.Orbital: - struct: EnumItem - Enum.DevComputerCameraMovementMode.UserChoice: - struct: EnumItem - Enum.DevComputerMovementMode.ClickToMove: - struct: EnumItem - Enum.DevComputerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevComputerMovementMode.KeyboardMouse: - struct: EnumItem - Enum.DevComputerMovementMode.Scriptable: - struct: EnumItem - Enum.DevComputerMovementMode.UserChoice: - struct: EnumItem - Enum.DevTouchCameraMovementMode.Classic: - struct: EnumItem - Enum.DevTouchCameraMovementMode.Follow: - struct: EnumItem - Enum.DevTouchCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevTouchCameraMovementMode.Orbital: - struct: EnumItem - Enum.DevTouchCameraMovementMode.UserChoice: - struct: EnumItem - Enum.DevTouchMovementMode.ClickToMove: - struct: EnumItem - Enum.DevTouchMovementMode.DPad: - struct: EnumItem - Enum.DevTouchMovementMode.DynamicThumbstick: - struct: EnumItem - Enum.DevTouchMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevTouchMovementMode.Scriptable: - struct: EnumItem - Enum.DevTouchMovementMode.Thumbpad: - struct: EnumItem - Enum.DevTouchMovementMode.Thumbstick: - struct: EnumItem - Enum.DevTouchMovementMode.UserChoice: - struct: EnumItem - Enum.DeveloperMemoryTag.Animation: - struct: EnumItem - Enum.DeveloperMemoryTag.GeometryCSG: - struct: EnumItem - Enum.DeveloperMemoryTag.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DeveloperMemoryTag.GraphicsMeshParts: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsParticles: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsParts: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsSolidModels: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsSpatialHash: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTerrain: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTexture: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTextureCharacter: - struct: EnumItem - Enum.DeveloperMemoryTag.Gui: - struct: EnumItem - Enum.DeveloperMemoryTag.HttpCache: - struct: EnumItem - Enum.DeveloperMemoryTag.Instances: - struct: EnumItem - Enum.DeveloperMemoryTag.Internal: - struct: EnumItem - Enum.DeveloperMemoryTag.LuaHeap: - struct: EnumItem - Enum.DeveloperMemoryTag.Navigation: - struct: EnumItem - Enum.DeveloperMemoryTag.PhysicsCollision: - struct: EnumItem - Enum.DeveloperMemoryTag.PhysicsParts: - struct: EnumItem - Enum.DeveloperMemoryTag.Script: - struct: EnumItem - Enum.DeveloperMemoryTag.Signals: - struct: EnumItem - Enum.DeveloperMemoryTag.Sounds: - struct: EnumItem - Enum.DeveloperMemoryTag.StreamingSounds: - struct: EnumItem - Enum.DeveloperMemoryTag.TerrainVoxels: - struct: EnumItem - Enum.DeviceType.Desktop: - struct: EnumItem - Enum.DeviceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DeviceType.Phone: - struct: EnumItem - Enum.DeviceType.Tablet: - struct: EnumItem - Enum.DeviceType.Unknown: - struct: EnumItem - Enum.DialogBehaviorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogBehaviorType.MultiplePlayers: - struct: EnumItem - Enum.DialogBehaviorType.SinglePlayer: - struct: EnumItem - Enum.DialogPurpose.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogPurpose.Help: - struct: EnumItem - Enum.DialogPurpose.Quest: - struct: EnumItem - Enum.DialogPurpose.Shop: - struct: EnumItem - Enum.DialogTone.Enemy: - struct: EnumItem - Enum.DialogTone.Friendly: - struct: EnumItem - Enum.DialogTone.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogTone.Neutral: - struct: EnumItem - Enum.DominantAxis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DominantAxis.Height: - struct: EnumItem - Enum.DominantAxis.Width: - struct: EnumItem - Enum.DraftStatusCode.DraftCommitted: - struct: EnumItem - Enum.DraftStatusCode.DraftOutdated: - struct: EnumItem - Enum.DraftStatusCode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraftStatusCode.OK: - struct: EnumItem - Enum.DraftStatusCode.ScriptRemoved: - struct: EnumItem - Enum.DraggerCoordinateSpace.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraggerCoordinateSpace.Object: - struct: EnumItem - Enum.DraggerCoordinateSpace.World: - struct: EnumItem - Enum.DraggerMovementMode.Geometric: - struct: EnumItem - Enum.DraggerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraggerMovementMode.Physical: - struct: EnumItem - Enum.EasingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EasingDirection.In: - struct: EnumItem - Enum.EasingDirection.InOut: - struct: EnumItem - Enum.EasingDirection.Out: - struct: EnumItem - Enum.EasingStyle.Back: - struct: EnumItem - Enum.EasingStyle.Bounce: - struct: EnumItem - Enum.EasingStyle.Circular: - struct: EnumItem - Enum.EasingStyle.Cubic: - struct: EnumItem - Enum.EasingStyle.Elastic: - struct: EnumItem - Enum.EasingStyle.Exponential: - struct: EnumItem - Enum.EasingStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EasingStyle.Linear: - struct: EnumItem - Enum.EasingStyle.Quad: - struct: EnumItem - Enum.EasingStyle.Quart: - struct: EnumItem - Enum.EasingStyle.Quint: - struct: EnumItem - Enum.EasingStyle.Sine: - struct: EnumItem - Enum.ElasticBehavior.Always: - struct: EnumItem - Enum.ElasticBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ElasticBehavior.Never: - struct: EnumItem - Enum.ElasticBehavior.WhenScrollable: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Always: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.DefaultAuto: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Disabled: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EnviromentalPhysicsThrottle.Skip16: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip2: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip4: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip8: - struct: EnumItem - Enum.ExperienceAuthScope.CreatorAssetsCreate: - struct: EnumItem - Enum.ExperienceAuthScope.DefaultScope: - struct: EnumItem - Enum.ExperienceAuthScope.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ExplosionType.Craters: - struct: EnumItem - Enum.ExplosionType.CratersAndDebris: - struct: EnumItem - deprecated: - message: Enum.ExplosionType.CratersAndDebris was replaced with Enum.ExplosionType.Craters - replace: - - Enum.ExplosionType.Craters - Enum.ExplosionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ExplosionType.NoCraters: - struct: EnumItem - Enum.FacialAnimationFlags.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FacialAnimationFlags.None: - struct: EnumItem - Enum.FacialAnimationFlags.Place: - struct: EnumItem - Enum.FacialAnimationFlags.PlaceServer: - struct: EnumItem - Enum.FacialAnimationFlags.Server: - struct: EnumItem - Enum.FacialAnimationStreamingState.Audio: - struct: EnumItem - Enum.FacialAnimationStreamingState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FacialAnimationStreamingState.None: - struct: EnumItem - Enum.FacialAnimationStreamingState.Place: - struct: EnumItem - Enum.FacialAnimationStreamingState.Server: - struct: EnumItem - Enum.FacialAnimationStreamingState.Video: - struct: EnumItem - Enum.FieldOfViewMode.Diagonal: - struct: EnumItem - Enum.FieldOfViewMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FieldOfViewMode.MaxAxis: - struct: EnumItem - Enum.FieldOfViewMode.Vertical: - struct: EnumItem - Enum.FillDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FillDirection.Horizontal: - struct: EnumItem - Enum.FillDirection.Vertical: - struct: EnumItem - Enum.FilterResult.Accepted: - struct: EnumItem - Enum.FilterResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FilterResult.Rejected: - struct: EnumItem - Enum.Font.AmaticSC: - struct: EnumItem - Enum.Font.Antique: - struct: EnumItem - Enum.Font.Arcade: - struct: EnumItem - Enum.Font.Arial: - struct: EnumItem - Enum.Font.ArialBold: - struct: EnumItem - Enum.Font.Bangers: - struct: EnumItem - Enum.Font.Bodoni: - struct: EnumItem - Enum.Font.Cartoon: - struct: EnumItem - Enum.Font.Code: - struct: EnumItem - Enum.Font.Creepster: - struct: EnumItem - Enum.Font.DenkOne: - struct: EnumItem - Enum.Font.Fantasy: - struct: EnumItem - Enum.Font.Fondamento: - struct: EnumItem - Enum.Font.FredokaOne: - struct: EnumItem - Enum.Font.Garamond: - struct: EnumItem - Enum.Font.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Font.Gotham: - struct: EnumItem - Enum.Font.GothamBlack: - struct: EnumItem - Enum.Font.GothamBold: - struct: EnumItem - Enum.Font.GothamMedium: - struct: EnumItem - Enum.Font.GothamSemibold: - struct: EnumItem - deprecated: - message: Enum.Font.GothamSemibold was replaced with Enum.Font.GothamMedium - replace: - - Enum.Font.GothamMedium - Enum.Font.GrenzeGotisch: - struct: EnumItem - Enum.Font.Highway: - struct: EnumItem - Enum.Font.IndieFlower: - struct: EnumItem - Enum.Font.JosefinSans: - struct: EnumItem - Enum.Font.Jura: - struct: EnumItem - Enum.Font.Kalam: - struct: EnumItem - Enum.Font.Legacy: - struct: EnumItem - Enum.Font.LuckiestGuy: - struct: EnumItem - Enum.Font.Merriweather: - struct: EnumItem - Enum.Font.Michroma: - struct: EnumItem - Enum.Font.Nunito: - struct: EnumItem - Enum.Font.Oswald: - struct: EnumItem - Enum.Font.PatrickHand: - struct: EnumItem - Enum.Font.PermanentMarker: - struct: EnumItem - Enum.Font.Roboto: - struct: EnumItem - Enum.Font.RobotoCondensed: - struct: EnumItem - Enum.Font.RobotoMono: - struct: EnumItem - Enum.Font.Sarpanch: - struct: EnumItem - Enum.Font.SciFi: - struct: EnumItem - Enum.Font.SourceSans: - struct: EnumItem - Enum.Font.SourceSansBold: - struct: EnumItem - Enum.Font.SourceSansItalic: - struct: EnumItem - Enum.Font.SourceSansLight: - struct: EnumItem - Enum.Font.SourceSansSemibold: - struct: EnumItem - Enum.Font.SpecialElite: - struct: EnumItem - Enum.Font.TitilliumWeb: - struct: EnumItem - Enum.Font.Ubuntu: - struct: EnumItem - Enum.Font.Unknown: - struct: EnumItem - Enum.FontSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontSize.Size10: - struct: EnumItem - Enum.FontSize.Size11: - struct: EnumItem - Enum.FontSize.Size12: - struct: EnumItem - Enum.FontSize.Size14: - struct: EnumItem - Enum.FontSize.Size18: - struct: EnumItem - Enum.FontSize.Size24: - struct: EnumItem - Enum.FontSize.Size28: - struct: EnumItem - Enum.FontSize.Size32: - struct: EnumItem - Enum.FontSize.Size36: - struct: EnumItem - Enum.FontSize.Size42: - struct: EnumItem - Enum.FontSize.Size48: - struct: EnumItem - Enum.FontSize.Size60: - struct: EnumItem - Enum.FontSize.Size8: - struct: EnumItem - Enum.FontSize.Size9: - struct: EnumItem - Enum.FontSize.Size96: - struct: EnumItem - Enum.FontStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontStyle.Italic: - struct: EnumItem - Enum.FontStyle.Normal: - struct: EnumItem - Enum.FontWeight.Bold: - struct: EnumItem - Enum.FontWeight.ExtraBold: - struct: EnumItem - Enum.FontWeight.ExtraLight: - struct: EnumItem - Enum.FontWeight.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontWeight.Heavy: - struct: EnumItem - Enum.FontWeight.Light: - struct: EnumItem - Enum.FontWeight.Medium: - struct: EnumItem - Enum.FontWeight.Regular: - struct: EnumItem - Enum.FontWeight.SemiBold: - struct: EnumItem - Enum.FontWeight.Thin: - struct: EnumItem - Enum.FormFactor.Block: - struct: EnumItem - deprecated: - message: Enum.FormFactor.Block was replaced with Enum.FormFactor.Brick - replace: - - Enum.FormFactor.Brick - Enum.FormFactor.Brick: - struct: EnumItem - Enum.FormFactor.Custom: - struct: EnumItem - Enum.FormFactor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FormFactor.Plate: - struct: EnumItem - Enum.FormFactor.Symmetric: - struct: EnumItem - Enum.FrameStyle.ChatBlue: - struct: EnumItem - Enum.FrameStyle.ChatGreen: - struct: EnumItem - Enum.FrameStyle.ChatRed: - struct: EnumItem - Enum.FrameStyle.Custom: - struct: EnumItem - Enum.FrameStyle.DropShadow: - struct: EnumItem - Enum.FrameStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FrameStyle.RobloxRound: - struct: EnumItem - Enum.FrameStyle.RobloxSquare: - struct: EnumItem - Enum.FramerateManagerMode.Automatic: - struct: EnumItem - Enum.FramerateManagerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FramerateManagerMode.Off: - struct: EnumItem - Enum.FramerateManagerMode.On: - struct: EnumItem - Enum.FriendRequestEvent.Accept: - struct: EnumItem - Enum.FriendRequestEvent.Deny: - struct: EnumItem - Enum.FriendRequestEvent.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FriendRequestEvent.Issue: - struct: EnumItem - Enum.FriendRequestEvent.Revoke: - struct: EnumItem - Enum.FriendStatus.Friend: - struct: EnumItem - Enum.FriendStatus.FriendRequestReceived: - struct: EnumItem - Enum.FriendStatus.FriendRequestSent: - struct: EnumItem - Enum.FriendStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FriendStatus.NotFriend: - struct: EnumItem - Enum.FriendStatus.Unknown: - struct: EnumItem - Enum.FunctionalTestResult.Error: - struct: EnumItem - Enum.FunctionalTestResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FunctionalTestResult.Passed: - struct: EnumItem - Enum.FunctionalTestResult.Warning: - struct: EnumItem - Enum.GameAvatarType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GameAvatarType.PlayerChoice: - struct: EnumItem - Enum.GameAvatarType.R15: - struct: EnumItem - Enum.GameAvatarType.R6: - struct: EnumItem - Enum.GearGenreSetting.AllGenres: - struct: EnumItem - Enum.GearGenreSetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GearGenreSetting.MatchingGenreOnly: - struct: EnumItem - Enum.GearType.BuildingTools: - struct: EnumItem - Enum.GearType.Explosives: - struct: EnumItem - Enum.GearType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GearType.MeleeWeapons: - struct: EnumItem - Enum.GearType.MusicalInstruments: - struct: EnumItem - Enum.GearType.NavigationEnhancers: - struct: EnumItem - Enum.GearType.PowerUps: - struct: EnumItem - Enum.GearType.RangedWeapons: - struct: EnumItem - Enum.GearType.SocialItems: - struct: EnumItem - Enum.GearType.Transport: - struct: EnumItem - Enum.Genre.Adventure: - struct: EnumItem - Enum.Genre.All: - struct: EnumItem - Enum.Genre.Fantasy: - struct: EnumItem - Enum.Genre.Funny: - struct: EnumItem - Enum.Genre.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Genre.Ninja: - struct: EnumItem - Enum.Genre.Pirate: - struct: EnumItem - Enum.Genre.Scary: - struct: EnumItem - Enum.Genre.SciFi: - struct: EnumItem - Enum.Genre.SkatePark: - struct: EnumItem - Enum.Genre.Sports: - struct: EnumItem - Enum.Genre.TownAndCity: - struct: EnumItem - Enum.Genre.Tutorial: - struct: EnumItem - Enum.Genre.War: - struct: EnumItem - Enum.Genre.WildWest: - struct: EnumItem - Enum.GetEnums: - args: [] - method: true - must_use: true - Enum.GraphicsMode.Automatic: - struct: EnumItem - Enum.GraphicsMode.Direct3D11: - struct: EnumItem - Enum.GraphicsMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GraphicsMode.Metal: - struct: EnumItem - Enum.GraphicsMode.NoGraphics: - struct: EnumItem - Enum.GraphicsMode.OpenGL: - struct: EnumItem - Enum.GraphicsMode.Vulkan: - struct: EnumItem - Enum.GuiType.Core: - struct: EnumItem - Enum.GuiType.Custom: - struct: EnumItem - Enum.GuiType.CustomBillboards: - struct: EnumItem - Enum.GuiType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GuiType.PlayerNameplates: - struct: EnumItem - Enum.HandlesStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HandlesStyle.Movement: - struct: EnumItem - Enum.HandlesStyle.Resize: - struct: EnumItem - Enum.HighlightDepthMode.AlwaysOnTop: - struct: EnumItem - Enum.HighlightDepthMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HighlightDepthMode.Occluded: - struct: EnumItem - Enum.HorizontalAlignment.Center: - struct: EnumItem - Enum.HorizontalAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HorizontalAlignment.Left: - struct: EnumItem - Enum.HorizontalAlignment.Right: - struct: EnumItem - Enum.HoverAnimateSpeed.Fast: - struct: EnumItem - Enum.HoverAnimateSpeed.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HoverAnimateSpeed.Medium: - struct: EnumItem - Enum.HoverAnimateSpeed.Slow: - struct: EnumItem - Enum.HoverAnimateSpeed.VeryFast: - struct: EnumItem - Enum.HoverAnimateSpeed.VerySlow: - struct: EnumItem - Enum.HttpCachePolicy.DataOnly: - struct: EnumItem - Enum.HttpCachePolicy.Default: - struct: EnumItem - Enum.HttpCachePolicy.Full: - struct: EnumItem - Enum.HttpCachePolicy.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpCachePolicy.InternalRedirectRefresh: - struct: EnumItem - Enum.HttpCachePolicy.None: - struct: EnumItem - Enum.HttpContentType.ApplicationJson: - struct: EnumItem - Enum.HttpContentType.ApplicationUrlEncoded: - struct: EnumItem - Enum.HttpContentType.ApplicationXml: - struct: EnumItem - Enum.HttpContentType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpContentType.TextPlain: - struct: EnumItem - Enum.HttpContentType.TextXml: - struct: EnumItem - Enum.HttpError.Aborted: - struct: EnumItem - Enum.HttpError.ConnectFail: - struct: EnumItem - Enum.HttpError.DnsResolve: - struct: EnumItem - Enum.HttpError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpError.InvalidRedirect: - struct: EnumItem - Enum.HttpError.InvalidUrl: - struct: EnumItem - Enum.HttpError.NetFail: - struct: EnumItem - Enum.HttpError.OK: - struct: EnumItem - Enum.HttpError.OutOfMemory: - struct: EnumItem - Enum.HttpError.SslConnectFail: - struct: EnumItem - Enum.HttpError.SslVerificationFail: - struct: EnumItem - Enum.HttpError.TimedOut: - struct: EnumItem - Enum.HttpError.TooManyRedirects: - struct: EnumItem - Enum.HttpError.Unknown: - struct: EnumItem - Enum.HttpRequestType.Analytics: - struct: EnumItem - Enum.HttpRequestType.Avatar: - struct: EnumItem - Enum.HttpRequestType.Chat: - struct: EnumItem - Enum.HttpRequestType.Default: - struct: EnumItem - Enum.HttpRequestType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpRequestType.Localization: - struct: EnumItem - Enum.HttpRequestType.MarketplaceService: - struct: EnumItem - Enum.HttpRequestType.Players: - struct: EnumItem - Enum.HumanoidCollisionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidCollisionType.InnerBox: - struct: EnumItem - Enum.HumanoidCollisionType.OuterBox: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidDisplayDistanceType.None: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.Subject: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.Viewer: - struct: EnumItem - Enum.HumanoidHealthDisplayType.AlwaysOff: - struct: EnumItem - Enum.HumanoidHealthDisplayType.AlwaysOn: - struct: EnumItem - Enum.HumanoidHealthDisplayType.DisplayWhenDamaged: - struct: EnumItem - Enum.HumanoidHealthDisplayType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidOnlySetCollisionsOnStateChange.Default: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.Disabled: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.Enabled: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidRigType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidRigType.R15: - struct: EnumItem - Enum.HumanoidRigType.R6: - struct: EnumItem - Enum.HumanoidStateMachineMode.Default: - struct: EnumItem - Enum.HumanoidStateMachineMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidStateMachineMode.Legacy: - struct: EnumItem - Enum.HumanoidStateMachineMode.LuaStateMachine: - struct: EnumItem - Enum.HumanoidStateMachineMode.NoStateMachine: - struct: EnumItem - Enum.HumanoidStateType.Climbing: - struct: EnumItem - Enum.HumanoidStateType.Dead: - struct: EnumItem - Enum.HumanoidStateType.FallingDown: - struct: EnumItem - Enum.HumanoidStateType.Flying: - struct: EnumItem - Enum.HumanoidStateType.Freefall: - struct: EnumItem - Enum.HumanoidStateType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidStateType.GettingUp: - struct: EnumItem - Enum.HumanoidStateType.Jumping: - struct: EnumItem - Enum.HumanoidStateType.Landed: - struct: EnumItem - Enum.HumanoidStateType.None: - struct: EnumItem - Enum.HumanoidStateType.Physics: - struct: EnumItem - Enum.HumanoidStateType.PlatformStanding: - struct: EnumItem - Enum.HumanoidStateType.Ragdoll: - struct: EnumItem - Enum.HumanoidStateType.Running: - struct: EnumItem - Enum.HumanoidStateType.RunningNoPhysics: - struct: EnumItem - Enum.HumanoidStateType.Seated: - struct: EnumItem - Enum.HumanoidStateType.StrafingNoPhysics: - struct: EnumItem - Enum.HumanoidStateType.Swimming: - struct: EnumItem - Enum.IKCollisionsMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IKCollisionsMode.IncludeContactedMechanisms: - struct: EnumItem - Enum.IKCollisionsMode.NoCollisions: - struct: EnumItem - Enum.IKCollisionsMode.OtherMechanismsAnchored: - struct: EnumItem - Enum.IKControlType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IKControlType.LookAt: - struct: EnumItem - Enum.IKControlType.Position: - struct: EnumItem - Enum.IKControlType.Rotation: - struct: EnumItem - Enum.IKControlType.Transform: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorConnection: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorInvalidUser: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorJsonParse: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorTimedOut: - struct: EnumItem - Enum.IXPLoadingStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IXPLoadingStatus.Initialized: - struct: EnumItem - Enum.IXPLoadingStatus.None: - struct: EnumItem - Enum.IXPLoadingStatus.Pending: - struct: EnumItem - Enum.InOut.Center: - struct: EnumItem - Enum.InOut.Edge: - struct: EnumItem - Enum.InOut.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InOut.Inset: - struct: EnumItem - Enum.InfoType.Asset: - struct: EnumItem - Enum.InfoType.Bundle: - struct: EnumItem - Enum.InfoType.GamePass: - struct: EnumItem - Enum.InfoType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InfoType.Product: - struct: EnumItem - Enum.InfoType.Subscription: - struct: EnumItem - Enum.InitialDockState.Bottom: - struct: EnumItem - Enum.InitialDockState.Float: - struct: EnumItem - Enum.InitialDockState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InitialDockState.Left: - struct: EnumItem - Enum.InitialDockState.Right: - struct: EnumItem - Enum.InitialDockState.Top: - struct: EnumItem - Enum.InputType.Action1: - struct: EnumItem - deprecated: - message: Enum.InputType.Action1 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action2: - struct: EnumItem - deprecated: - message: Enum.InputType.Action2 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action3: - struct: EnumItem - deprecated: - message: Enum.InputType.Action3 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action4: - struct: EnumItem - deprecated: - message: Enum.InputType.Action4 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action5: - struct: EnumItem - deprecated: - message: Enum.InputType.Action5 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Constant: - struct: EnumItem - Enum.InputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InputType.LeftTread: - struct: EnumItem - deprecated: - message: Enum.InputType.LeftTread was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.NoInput: - struct: EnumItem - Enum.InputType.RightTread: - struct: EnumItem - deprecated: - message: Enum.InputType.RightTread was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Sin: - struct: EnumItem - Enum.InputType.Steer: - struct: EnumItem - deprecated: - message: Enum.InputType.Steer was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Throtle: - struct: EnumItem - deprecated: - message: Enum.InputType.Throtle was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Throttle: - struct: EnumItem - deprecated: - message: Enum.InputType.Throttle was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.UpDown: - struct: EnumItem - deprecated: - message: Enum.InputType.UpDown was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InterpolationThrottlingMode.Default: - struct: EnumItem - Enum.InterpolationThrottlingMode.Disabled: - struct: EnumItem - Enum.InterpolationThrottlingMode.Enabled: - struct: EnumItem - Enum.InterpolationThrottlingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.JointCreationMode.All: - struct: EnumItem - Enum.JointCreationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.JointCreationMode.None: - struct: EnumItem - Enum.JointCreationMode.Surface: - struct: EnumItem - Enum.KeyCode.A: - struct: EnumItem - Enum.KeyCode.Ampersand: - struct: EnumItem - Enum.KeyCode.Asterisk: - struct: EnumItem - Enum.KeyCode.At: - struct: EnumItem - Enum.KeyCode.B: - struct: EnumItem - Enum.KeyCode.BackSlash: - struct: EnumItem - Enum.KeyCode.Backquote: - struct: EnumItem - Enum.KeyCode.Backspace: - struct: EnumItem - Enum.KeyCode.Break: - struct: EnumItem - Enum.KeyCode.ButtonA: - struct: EnumItem - Enum.KeyCode.ButtonB: - struct: EnumItem - Enum.KeyCode.ButtonL1: - struct: EnumItem - Enum.KeyCode.ButtonL2: - struct: EnumItem - Enum.KeyCode.ButtonL3: - struct: EnumItem - Enum.KeyCode.ButtonR1: - struct: EnumItem - Enum.KeyCode.ButtonR2: - struct: EnumItem - Enum.KeyCode.ButtonR3: - struct: EnumItem - Enum.KeyCode.ButtonSelect: - struct: EnumItem - Enum.KeyCode.ButtonStart: - struct: EnumItem - Enum.KeyCode.ButtonX: - struct: EnumItem - Enum.KeyCode.ButtonY: - struct: EnumItem - Enum.KeyCode.C: - struct: EnumItem - Enum.KeyCode.CapsLock: - struct: EnumItem - Enum.KeyCode.Caret: - struct: EnumItem - Enum.KeyCode.Clear: - struct: EnumItem - Enum.KeyCode.Colon: - struct: EnumItem - Enum.KeyCode.Comma: - struct: EnumItem - Enum.KeyCode.Compose: - struct: EnumItem - Enum.KeyCode.D: - struct: EnumItem - Enum.KeyCode.DPadDown: - struct: EnumItem - Enum.KeyCode.DPadLeft: - struct: EnumItem - Enum.KeyCode.DPadRight: - struct: EnumItem - Enum.KeyCode.DPadUp: - struct: EnumItem - Enum.KeyCode.Delete: - struct: EnumItem - Enum.KeyCode.Dollar: - struct: EnumItem - Enum.KeyCode.Down: - struct: EnumItem - Enum.KeyCode.E: - struct: EnumItem - Enum.KeyCode.Eight: - struct: EnumItem - Enum.KeyCode.End: - struct: EnumItem - Enum.KeyCode.Equals: - struct: EnumItem - Enum.KeyCode.Escape: - struct: EnumItem - Enum.KeyCode.Euro: - struct: EnumItem - Enum.KeyCode.F: - struct: EnumItem - Enum.KeyCode.F1: - struct: EnumItem - Enum.KeyCode.F10: - struct: EnumItem - Enum.KeyCode.F11: - struct: EnumItem - Enum.KeyCode.F12: - struct: EnumItem - Enum.KeyCode.F13: - struct: EnumItem - Enum.KeyCode.F14: - struct: EnumItem - Enum.KeyCode.F15: - struct: EnumItem - Enum.KeyCode.F2: - struct: EnumItem - Enum.KeyCode.F3: - struct: EnumItem - Enum.KeyCode.F4: - struct: EnumItem - Enum.KeyCode.F5: - struct: EnumItem - Enum.KeyCode.F6: - struct: EnumItem - Enum.KeyCode.F7: - struct: EnumItem - Enum.KeyCode.F8: - struct: EnumItem - Enum.KeyCode.F9: - struct: EnumItem - Enum.KeyCode.Five: - struct: EnumItem - Enum.KeyCode.Four: - struct: EnumItem - Enum.KeyCode.G: - struct: EnumItem - Enum.KeyCode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeyCode.GreaterThan: - struct: EnumItem - Enum.KeyCode.H: - struct: EnumItem - Enum.KeyCode.Hash: - struct: EnumItem - Enum.KeyCode.Help: - struct: EnumItem - Enum.KeyCode.Home: - struct: EnumItem - Enum.KeyCode.I: - struct: EnumItem - Enum.KeyCode.Insert: - struct: EnumItem - Enum.KeyCode.J: - struct: EnumItem - Enum.KeyCode.K: - struct: EnumItem - Enum.KeyCode.KeypadDivide: - struct: EnumItem - Enum.KeyCode.KeypadEight: - struct: EnumItem - Enum.KeyCode.KeypadEnter: - struct: EnumItem - Enum.KeyCode.KeypadEquals: - struct: EnumItem - Enum.KeyCode.KeypadFive: - struct: EnumItem - Enum.KeyCode.KeypadFour: - struct: EnumItem - Enum.KeyCode.KeypadMinus: - struct: EnumItem - Enum.KeyCode.KeypadMultiply: - struct: EnumItem - Enum.KeyCode.KeypadNine: - struct: EnumItem - Enum.KeyCode.KeypadOne: - struct: EnumItem - Enum.KeyCode.KeypadPeriod: - struct: EnumItem - Enum.KeyCode.KeypadPlus: - struct: EnumItem - Enum.KeyCode.KeypadSeven: - struct: EnumItem - Enum.KeyCode.KeypadSix: - struct: EnumItem - Enum.KeyCode.KeypadThree: - struct: EnumItem - Enum.KeyCode.KeypadTwo: - struct: EnumItem - Enum.KeyCode.KeypadZero: - struct: EnumItem - Enum.KeyCode.L: - struct: EnumItem - Enum.KeyCode.Left: - struct: EnumItem - Enum.KeyCode.LeftAlt: - struct: EnumItem - Enum.KeyCode.LeftBracket: - struct: EnumItem - Enum.KeyCode.LeftControl: - struct: EnumItem - Enum.KeyCode.LeftCurly: - struct: EnumItem - Enum.KeyCode.LeftMeta: - struct: EnumItem - Enum.KeyCode.LeftParenthesis: - struct: EnumItem - Enum.KeyCode.LeftShift: - struct: EnumItem - Enum.KeyCode.LeftSuper: - struct: EnumItem - Enum.KeyCode.LessThan: - struct: EnumItem - Enum.KeyCode.M: - struct: EnumItem - Enum.KeyCode.Menu: - struct: EnumItem - Enum.KeyCode.Minus: - struct: EnumItem - Enum.KeyCode.Mode: - struct: EnumItem - Enum.KeyCode.N: - struct: EnumItem - Enum.KeyCode.Nine: - struct: EnumItem - Enum.KeyCode.NumLock: - struct: EnumItem - Enum.KeyCode.O: - struct: EnumItem - Enum.KeyCode.One: - struct: EnumItem - Enum.KeyCode.P: - struct: EnumItem - Enum.KeyCode.PageDown: - struct: EnumItem - Enum.KeyCode.PageUp: - struct: EnumItem - Enum.KeyCode.Pause: - struct: EnumItem - Enum.KeyCode.Percent: - struct: EnumItem - Enum.KeyCode.Period: - struct: EnumItem - Enum.KeyCode.Pipe: - struct: EnumItem - Enum.KeyCode.Plus: - struct: EnumItem - Enum.KeyCode.Power: - struct: EnumItem - Enum.KeyCode.Print: - struct: EnumItem - Enum.KeyCode.Q: - struct: EnumItem - Enum.KeyCode.Question: - struct: EnumItem - Enum.KeyCode.Quote: - struct: EnumItem - Enum.KeyCode.QuotedDouble: - struct: EnumItem - Enum.KeyCode.R: - struct: EnumItem - Enum.KeyCode.Return: - struct: EnumItem - Enum.KeyCode.Right: - struct: EnumItem - Enum.KeyCode.RightAlt: - struct: EnumItem - Enum.KeyCode.RightBracket: - struct: EnumItem - Enum.KeyCode.RightControl: - struct: EnumItem - Enum.KeyCode.RightCurly: - struct: EnumItem - Enum.KeyCode.RightMeta: - struct: EnumItem - Enum.KeyCode.RightParenthesis: - struct: EnumItem - Enum.KeyCode.RightShift: - struct: EnumItem - Enum.KeyCode.RightSuper: - struct: EnumItem - Enum.KeyCode.S: - struct: EnumItem - Enum.KeyCode.ScrollLock: - struct: EnumItem - Enum.KeyCode.Semicolon: - struct: EnumItem - Enum.KeyCode.Seven: - struct: EnumItem - Enum.KeyCode.Six: - struct: EnumItem - Enum.KeyCode.Slash: - struct: EnumItem - Enum.KeyCode.Space: - struct: EnumItem - Enum.KeyCode.SysReq: - struct: EnumItem - Enum.KeyCode.T: - struct: EnumItem - Enum.KeyCode.Tab: - struct: EnumItem - Enum.KeyCode.Three: - struct: EnumItem - Enum.KeyCode.Thumbstick1: - struct: EnumItem - Enum.KeyCode.Thumbstick2: - struct: EnumItem - Enum.KeyCode.Tilde: - struct: EnumItem - Enum.KeyCode.Two: - struct: EnumItem - Enum.KeyCode.U: - struct: EnumItem - Enum.KeyCode.Underscore: - struct: EnumItem - Enum.KeyCode.Undo: - struct: EnumItem - Enum.KeyCode.Unknown: - struct: EnumItem - Enum.KeyCode.Up: - struct: EnumItem - Enum.KeyCode.V: - struct: EnumItem - Enum.KeyCode.W: - struct: EnumItem - Enum.KeyCode.World0: - struct: EnumItem - Enum.KeyCode.World1: - struct: EnumItem - Enum.KeyCode.World10: - struct: EnumItem - Enum.KeyCode.World11: - struct: EnumItem - Enum.KeyCode.World12: - struct: EnumItem - Enum.KeyCode.World13: - struct: EnumItem - Enum.KeyCode.World14: - struct: EnumItem - Enum.KeyCode.World15: - struct: EnumItem - Enum.KeyCode.World16: - struct: EnumItem - Enum.KeyCode.World17: - struct: EnumItem - Enum.KeyCode.World18: - struct: EnumItem - Enum.KeyCode.World19: - struct: EnumItem - Enum.KeyCode.World2: - struct: EnumItem - Enum.KeyCode.World20: - struct: EnumItem - Enum.KeyCode.World21: - struct: EnumItem - Enum.KeyCode.World22: - struct: EnumItem - Enum.KeyCode.World23: - struct: EnumItem - Enum.KeyCode.World24: - struct: EnumItem - Enum.KeyCode.World25: - struct: EnumItem - Enum.KeyCode.World26: - struct: EnumItem - Enum.KeyCode.World27: - struct: EnumItem - Enum.KeyCode.World28: - struct: EnumItem - Enum.KeyCode.World29: - struct: EnumItem - Enum.KeyCode.World3: - struct: EnumItem - Enum.KeyCode.World30: - struct: EnumItem - Enum.KeyCode.World31: - struct: EnumItem - Enum.KeyCode.World32: - struct: EnumItem - Enum.KeyCode.World33: - struct: EnumItem - Enum.KeyCode.World34: - struct: EnumItem - Enum.KeyCode.World35: - struct: EnumItem - Enum.KeyCode.World36: - struct: EnumItem - Enum.KeyCode.World37: - struct: EnumItem - Enum.KeyCode.World38: - struct: EnumItem - Enum.KeyCode.World39: - struct: EnumItem - Enum.KeyCode.World4: - struct: EnumItem - Enum.KeyCode.World40: - struct: EnumItem - Enum.KeyCode.World41: - struct: EnumItem - Enum.KeyCode.World42: - struct: EnumItem - Enum.KeyCode.World43: - struct: EnumItem - Enum.KeyCode.World44: - struct: EnumItem - Enum.KeyCode.World45: - struct: EnumItem - Enum.KeyCode.World46: - struct: EnumItem - Enum.KeyCode.World47: - struct: EnumItem - Enum.KeyCode.World48: - struct: EnumItem - Enum.KeyCode.World49: - struct: EnumItem - Enum.KeyCode.World5: - struct: EnumItem - Enum.KeyCode.World50: - struct: EnumItem - Enum.KeyCode.World51: - struct: EnumItem - Enum.KeyCode.World52: - struct: EnumItem - Enum.KeyCode.World53: - struct: EnumItem - Enum.KeyCode.World54: - struct: EnumItem - Enum.KeyCode.World55: - struct: EnumItem - Enum.KeyCode.World56: - struct: EnumItem - Enum.KeyCode.World57: - struct: EnumItem - Enum.KeyCode.World58: - struct: EnumItem - Enum.KeyCode.World59: - struct: EnumItem - Enum.KeyCode.World6: - struct: EnumItem - Enum.KeyCode.World60: - struct: EnumItem - Enum.KeyCode.World61: - struct: EnumItem - Enum.KeyCode.World62: - struct: EnumItem - Enum.KeyCode.World63: - struct: EnumItem - Enum.KeyCode.World64: - struct: EnumItem - Enum.KeyCode.World65: - struct: EnumItem - Enum.KeyCode.World66: - struct: EnumItem - Enum.KeyCode.World67: - struct: EnumItem - Enum.KeyCode.World68: - struct: EnumItem - Enum.KeyCode.World69: - struct: EnumItem - Enum.KeyCode.World7: - struct: EnumItem - Enum.KeyCode.World70: - struct: EnumItem - Enum.KeyCode.World71: - struct: EnumItem - Enum.KeyCode.World72: - struct: EnumItem - Enum.KeyCode.World73: - struct: EnumItem - Enum.KeyCode.World74: - struct: EnumItem - Enum.KeyCode.World75: - struct: EnumItem - Enum.KeyCode.World76: - struct: EnumItem - Enum.KeyCode.World77: - struct: EnumItem - Enum.KeyCode.World78: - struct: EnumItem - Enum.KeyCode.World79: - struct: EnumItem - Enum.KeyCode.World8: - struct: EnumItem - Enum.KeyCode.World80: - struct: EnumItem - Enum.KeyCode.World81: - struct: EnumItem - Enum.KeyCode.World82: - struct: EnumItem - Enum.KeyCode.World83: - struct: EnumItem - Enum.KeyCode.World84: - struct: EnumItem - Enum.KeyCode.World85: - struct: EnumItem - Enum.KeyCode.World86: - struct: EnumItem - Enum.KeyCode.World87: - struct: EnumItem - Enum.KeyCode.World88: - struct: EnumItem - Enum.KeyCode.World89: - struct: EnumItem - Enum.KeyCode.World9: - struct: EnumItem - Enum.KeyCode.World90: - struct: EnumItem - Enum.KeyCode.World91: - struct: EnumItem - Enum.KeyCode.World92: - struct: EnumItem - Enum.KeyCode.World93: - struct: EnumItem - Enum.KeyCode.World94: - struct: EnumItem - Enum.KeyCode.World95: - struct: EnumItem - Enum.KeyCode.X: - struct: EnumItem - Enum.KeyCode.Y: - struct: EnumItem - Enum.KeyCode.Z: - struct: EnumItem - Enum.KeyCode.Zero: - struct: EnumItem - Enum.KeyInterpolationMode.Constant: - struct: EnumItem - Enum.KeyInterpolationMode.Cubic: - struct: EnumItem - Enum.KeyInterpolationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeyInterpolationMode.Linear: - struct: EnumItem - Enum.KeywordFilterType.Exclude: - struct: EnumItem - Enum.KeywordFilterType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeywordFilterType.Include: - struct: EnumItem - Enum.Language.Default: - struct: EnumItem - Enum.Language.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LeftRight.Center: - struct: EnumItem - Enum.LeftRight.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LeftRight.Left: - struct: EnumItem - Enum.LeftRight.Right: - struct: EnumItem - Enum.Limb.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Limb.Head: - struct: EnumItem - Enum.Limb.LeftArm: - struct: EnumItem - Enum.Limb.LeftLeg: - struct: EnumItem - Enum.Limb.RightArm: - struct: EnumItem - Enum.Limb.RightLeg: - struct: EnumItem - Enum.Limb.Torso: - struct: EnumItem - Enum.Limb.Unknown: - struct: EnumItem - Enum.LineJoinMode.Bevel: - struct: EnumItem - Enum.LineJoinMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LineJoinMode.Miter: - struct: EnumItem - Enum.LineJoinMode.Round: - struct: EnumItem - Enum.ListDisplayMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ListDisplayMode.Horizontal: - struct: EnumItem - Enum.ListDisplayMode.Vertical: - struct: EnumItem - Enum.ListenerType.CFrame: - struct: EnumItem - Enum.ListenerType.Camera: - struct: EnumItem - Enum.ListenerType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ListenerType.ObjectCFrame: - struct: EnumItem - Enum.ListenerType.ObjectPosition: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Default: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Disabled: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Enabled: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LoadDynamicHeads.Default: - struct: EnumItem - Enum.LoadDynamicHeads.Disabled: - struct: EnumItem - Enum.LoadDynamicHeads.Enabled: - struct: EnumItem - Enum.LoadDynamicHeads.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MarkupKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MarkupKind.Markdown: - struct: EnumItem - Enum.MarkupKind.PlainText: - struct: EnumItem - Enum.Material.Air: - struct: EnumItem - Enum.Material.Aluminum: - struct: EnumItem - deprecated: - message: Enum.Material.Aluminum was replaced with Enum.Material.Foil - replace: - - Enum.Material.Foil - Enum.Material.Asphalt: - struct: EnumItem - Enum.Material.Basalt: - struct: EnumItem - Enum.Material.Brick: - struct: EnumItem - Enum.Material.Cobblestone: - struct: EnumItem - Enum.Material.Concrete: - struct: EnumItem - Enum.Material.Corroded Metal: - struct: EnumItem - deprecated: - message: Enum.Material.Corroded Metal was replaced with Enum.Material.CorrodedMetal - replace: - - Enum.Material.CorrodedMetal - Enum.Material.CorrodedMetal: - struct: EnumItem - Enum.Material.CrackedLava: - struct: EnumItem - Enum.Material.DiamondPlate: - struct: EnumItem - Enum.Material.Fabric: - struct: EnumItem - Enum.Material.Foil: - struct: EnumItem - Enum.Material.ForceField: - struct: EnumItem - Enum.Material.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Material.Glacier: - struct: EnumItem - Enum.Material.Glass: - struct: EnumItem - Enum.Material.Granite: - struct: EnumItem - Enum.Material.Grass: - struct: EnumItem - Enum.Material.Ground: - struct: EnumItem - Enum.Material.Ice: - struct: EnumItem - Enum.Material.LeafyGrass: - struct: EnumItem - Enum.Material.Limestone: - struct: EnumItem - Enum.Material.Marble: - struct: EnumItem - Enum.Material.Metal: - struct: EnumItem - Enum.Material.Mud: - struct: EnumItem - Enum.Material.Neon: - struct: EnumItem - Enum.Material.Pavement: - struct: EnumItem - Enum.Material.Pebble: - struct: EnumItem - Enum.Material.Plastic: - struct: EnumItem - Enum.Material.Rock: - struct: EnumItem - Enum.Material.Salt: - struct: EnumItem - Enum.Material.Sand: - struct: EnumItem - Enum.Material.Sandstone: - struct: EnumItem - Enum.Material.Slate: - struct: EnumItem - Enum.Material.SmoothPlastic: - struct: EnumItem - Enum.Material.Snow: - struct: EnumItem - Enum.Material.Water: - struct: EnumItem - Enum.Material.Wood: - struct: EnumItem - Enum.Material.WoodPlanks: - struct: EnumItem - Enum.MaterialPattern.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MaterialPattern.Organic: - struct: EnumItem - Enum.MaterialPattern.Regular: - struct: EnumItem - Enum.MembershipType.BuildersClub: - struct: EnumItem - Enum.MembershipType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MembershipType.None: - struct: EnumItem - Enum.MembershipType.OutrageousBuildersClub: - struct: EnumItem - Enum.MembershipType.Premium: - struct: EnumItem - Enum.MembershipType.TurboBuildersClub: - struct: EnumItem - Enum.MeshPartDetailLevel.DistanceBased: - struct: EnumItem - Enum.MeshPartDetailLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshPartDetailLevel.Level00: - struct: EnumItem - Enum.MeshPartDetailLevel.Level01: - struct: EnumItem - Enum.MeshPartDetailLevel.Level02: - struct: EnumItem - Enum.MeshPartDetailLevel.Level03: - struct: EnumItem - Enum.MeshPartDetailLevel.Level04: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Default: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Disabled: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Enabled: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshScaleUnit.CM: - struct: EnumItem - Enum.MeshScaleUnit.Foot: - struct: EnumItem - Enum.MeshScaleUnit.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshScaleUnit.Inch: - struct: EnumItem - Enum.MeshScaleUnit.MM: - struct: EnumItem - Enum.MeshScaleUnit.Meter: - struct: EnumItem - Enum.MeshScaleUnit.Stud: - struct: EnumItem - Enum.MeshType.Brick: - struct: EnumItem - Enum.MeshType.CornerWedge: - struct: EnumItem - Enum.MeshType.Cylinder: - struct: EnumItem - Enum.MeshType.FileMesh: - struct: EnumItem - Enum.MeshType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshType.Head: - struct: EnumItem - Enum.MeshType.ParallelRamp: - struct: EnumItem - Enum.MeshType.Prism: - struct: EnumItem - Enum.MeshType.Pyramid: - struct: EnumItem - Enum.MeshType.RightAngleRamp: - struct: EnumItem - Enum.MeshType.Sphere: - struct: EnumItem - Enum.MeshType.Torso: - struct: EnumItem - Enum.MeshType.Wedge: - struct: EnumItem - Enum.MessageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MessageType.MessageError: - struct: EnumItem - Enum.MessageType.MessageInfo: - struct: EnumItem - Enum.MessageType.MessageOutput: - struct: EnumItem - Enum.MessageType.MessageWarning: - struct: EnumItem - Enum.ModelLevelOfDetail.Automatic: - struct: EnumItem - Enum.ModelLevelOfDetail.Disabled: - struct: EnumItem - Enum.ModelLevelOfDetail.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModelLevelOfDetail.StreamingMesh: - struct: EnumItem - Enum.ModelStreamingMode.Atomic: - struct: EnumItem - Enum.ModelStreamingMode.Default: - struct: EnumItem - Enum.ModelStreamingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModelStreamingMode.Nonatomic: - struct: EnumItem - Enum.ModelStreamingMode.Persistent: - struct: EnumItem - Enum.ModelStreamingMode.PersistentPerPlayer: - struct: EnumItem - Enum.ModifierKey.Alt: - struct: EnumItem - Enum.ModifierKey.Ctrl: - struct: EnumItem - Enum.ModifierKey.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModifierKey.Meta: - struct: EnumItem - Enum.ModifierKey.Shift: - struct: EnumItem - Enum.MouseBehavior.Default: - struct: EnumItem - Enum.MouseBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MouseBehavior.LockCenter: - struct: EnumItem - Enum.MouseBehavior.LockCurrentPosition: - struct: EnumItem - Enum.MoveState.AirFree: - struct: EnumItem - Enum.MoveState.Coasting: - struct: EnumItem - Enum.MoveState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MoveState.Pushing: - struct: EnumItem - Enum.MoveState.Stopped: - struct: EnumItem - Enum.MoveState.Stopping: - struct: EnumItem - Enum.MuteState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MuteState.Muted: - struct: EnumItem - Enum.MuteState.Unmuted: - struct: EnumItem - Enum.NameOcclusion.EnemyOcclusion: - struct: EnumItem - Enum.NameOcclusion.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NameOcclusion.NoOcclusion: - struct: EnumItem - Enum.NameOcclusion.OccludeAll: - struct: EnumItem - Enum.NetworkOwnership.Automatic: - struct: EnumItem - Enum.NetworkOwnership.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NetworkOwnership.Manual: - struct: EnumItem - Enum.NetworkOwnership.OnContact: - struct: EnumItem - Enum.NormalId.Back: - struct: EnumItem - Enum.NormalId.Bottom: - struct: EnumItem - Enum.NormalId.Front: - struct: EnumItem - Enum.NormalId.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NormalId.Left: - struct: EnumItem - Enum.NormalId.Right: - struct: EnumItem - Enum.NormalId.Top: - struct: EnumItem - Enum.OrientationAlignmentMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OrientationAlignmentMode.OneAttachment: - struct: EnumItem - Enum.OrientationAlignmentMode.TwoAttachment: - struct: EnumItem - Enum.OutfitSource.All: - struct: EnumItem - Enum.OutfitSource.Created: - struct: EnumItem - Enum.OutfitSource.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutfitSource.Purchased: - struct: EnumItem - Enum.OutfitType.All: - struct: EnumItem - Enum.OutfitType.Avatar: - struct: EnumItem - Enum.OutfitType.DynamicHead: - struct: EnumItem - Enum.OutfitType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutputLayoutMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutputLayoutMode.Horizontal: - struct: EnumItem - Enum.OutputLayoutMode.Vertical: - struct: EnumItem - Enum.OverrideMouseIconBehavior.ForceHide: - struct: EnumItem - Enum.OverrideMouseIconBehavior.ForceShow: - struct: EnumItem - Enum.OverrideMouseIconBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OverrideMouseIconBehavior.None: - struct: EnumItem - Enum.PackagePermission.Edit: - struct: EnumItem - Enum.PackagePermission.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PackagePermission.NoAccess: - struct: EnumItem - Enum.PackagePermission.None: - struct: EnumItem - Enum.PackagePermission.Own: - struct: EnumItem - Enum.PackagePermission.Revoked: - struct: EnumItem - Enum.PackagePermission.UseView: - struct: EnumItem - Enum.PartType.Ball: - struct: EnumItem - Enum.PartType.Block: - struct: EnumItem - Enum.PartType.Cylinder: - struct: EnumItem - Enum.PartType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShape.Box: - struct: EnumItem - Enum.ParticleEmitterShape.Cylinder: - struct: EnumItem - Enum.ParticleEmitterShape.Disc: - struct: EnumItem - Enum.ParticleEmitterShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShape.Sphere: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShapeInOut.InAndOut: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.Inward: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.Outward: - struct: EnumItem - Enum.ParticleEmitterShapeStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShapeStyle.Surface: - struct: EnumItem - Enum.ParticleEmitterShapeStyle.Volume: - struct: EnumItem - Enum.ParticleFlipbookLayout.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookLayout.Grid2x2: - struct: EnumItem - Enum.ParticleFlipbookLayout.Grid4x4: - struct: EnumItem - Enum.ParticleFlipbookLayout.Grid8x8: - struct: EnumItem - Enum.ParticleFlipbookLayout.None: - struct: EnumItem - Enum.ParticleFlipbookMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookMode.Loop: - struct: EnumItem - Enum.ParticleFlipbookMode.OneShot: - struct: EnumItem - Enum.ParticleFlipbookMode.PingPong: - struct: EnumItem - Enum.ParticleFlipbookMode.Random: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.Compatible: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookTextureCompatible.NotCompatible: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.Unknown: - struct: EnumItem - Enum.ParticleOrientation.FacingCamera: - struct: EnumItem - Enum.ParticleOrientation.FacingCameraWorldUp: - struct: EnumItem - Enum.ParticleOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleOrientation.VelocityParallel: - struct: EnumItem - Enum.ParticleOrientation.VelocityPerpendicular: - struct: EnumItem - Enum.PathStatus.ClosestNoPath: - struct: EnumItem - Enum.PathStatus.ClosestOutOfRange: - struct: EnumItem - Enum.PathStatus.FailFinishNotEmpty: - struct: EnumItem - Enum.PathStatus.FailStartNotEmpty: - struct: EnumItem - Enum.PathStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PathStatus.NoPath: - struct: EnumItem - Enum.PathStatus.Success: - struct: EnumItem - Enum.PathWaypointAction.Custom: - struct: EnumItem - Enum.PathWaypointAction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PathWaypointAction.Jump: - struct: EnumItem - Enum.PathWaypointAction.Walk: - struct: EnumItem - Enum.PermissionLevelShown.Game: - struct: EnumItem - Enum.PermissionLevelShown.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PermissionLevelShown.Roblox: - struct: EnumItem - Enum.PermissionLevelShown.RobloxGame: - struct: EnumItem - Enum.PermissionLevelShown.RobloxScript: - struct: EnumItem - Enum.PermissionLevelShown.Studio: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed120Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed240Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed60Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PhysicsSteppingMethod.Adaptive: - struct: EnumItem - Enum.PhysicsSteppingMethod.Default: - struct: EnumItem - Enum.PhysicsSteppingMethod.Fixed: - struct: EnumItem - Enum.PhysicsSteppingMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Platform.Android: - struct: EnumItem - Enum.Platform.AndroidTV: - struct: EnumItem - Enum.Platform.BeOS: - struct: EnumItem - Enum.Platform.Chromecast: - struct: EnumItem - Enum.Platform.DOS: - struct: EnumItem - Enum.Platform.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Platform.IOS: - struct: EnumItem - Enum.Platform.Linux: - struct: EnumItem - Enum.Platform.NX: - struct: EnumItem - Enum.Platform.None: - struct: EnumItem - Enum.Platform.OSX: - struct: EnumItem - Enum.Platform.Ouya: - struct: EnumItem - Enum.Platform.PS3: - struct: EnumItem - Enum.Platform.PS4: - struct: EnumItem - Enum.Platform.SteamOS: - struct: EnumItem - Enum.Platform.UWP: - struct: EnumItem - Enum.Platform.WebOS: - struct: EnumItem - Enum.Platform.WiiU: - struct: EnumItem - Enum.Platform.Windows: - struct: EnumItem - Enum.Platform.XBox360: - struct: EnumItem - Enum.Platform.XBoxOne: - struct: EnumItem - Enum.PlaybackState.Begin: - struct: EnumItem - Enum.PlaybackState.Cancelled: - struct: EnumItem - Enum.PlaybackState.Completed: - struct: EnumItem - Enum.PlaybackState.Delayed: - struct: EnumItem - Enum.PlaybackState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlaybackState.Paused: - struct: EnumItem - Enum.PlaybackState.Playing: - struct: EnumItem - Enum.PlayerActions.CharacterBackward: - struct: EnumItem - Enum.PlayerActions.CharacterForward: - struct: EnumItem - Enum.PlayerActions.CharacterJump: - struct: EnumItem - Enum.PlayerActions.CharacterLeft: - struct: EnumItem - Enum.PlayerActions.CharacterRight: - struct: EnumItem - Enum.PlayerActions.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlayerChatType.All: - struct: EnumItem - Enum.PlayerChatType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlayerChatType.Team: - struct: EnumItem - Enum.PlayerChatType.Whisper: - struct: EnumItem - Enum.PoseEasingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PoseEasingDirection.In: - struct: EnumItem - Enum.PoseEasingDirection.InOut: - struct: EnumItem - Enum.PoseEasingDirection.Out: - struct: EnumItem - Enum.PoseEasingStyle.Bounce: - struct: EnumItem - Enum.PoseEasingStyle.Constant: - struct: EnumItem - Enum.PoseEasingStyle.Cubic: - struct: EnumItem - Enum.PoseEasingStyle.Elastic: - struct: EnumItem - Enum.PoseEasingStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PoseEasingStyle.Linear: - struct: EnumItem - Enum.PositionAlignmentMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PositionAlignmentMode.OneAttachment: - struct: EnumItem - Enum.PositionAlignmentMode.TwoAttachment: - struct: EnumItem - Enum.PrivilegeType.Admin: - struct: EnumItem - Enum.PrivilegeType.Banned: - struct: EnumItem - Enum.PrivilegeType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PrivilegeType.Member: - struct: EnumItem - Enum.PrivilegeType.Owner: - struct: EnumItem - Enum.PrivilegeType.Visitor: - struct: EnumItem - Enum.ProductLocationRestriction.AllGames: - struct: EnumItem - Enum.ProductLocationRestriction.AllowedGames: - struct: EnumItem - Enum.ProductLocationRestriction.AvatarShop: - struct: EnumItem - Enum.ProductLocationRestriction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProductPurchaseDecision.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProductPurchaseDecision.NotProcessedYet: - struct: EnumItem - Enum.ProductPurchaseDecision.PurchaseGranted: - struct: EnumItem - Enum.PromptPublishAssetResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PromptPublishAssetResult.NoUserInput: - struct: EnumItem - Enum.PromptPublishAssetResult.PermissionDenied: - struct: EnumItem - Enum.PromptPublishAssetResult.Success: - struct: EnumItem - Enum.PromptPublishAssetResult.Timeout: - struct: EnumItem - Enum.PromptPublishAssetResult.UploadFailed: - struct: EnumItem - Enum.PropertyStatus.Error: - struct: EnumItem - Enum.PropertyStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PropertyStatus.Ok: - struct: EnumItem - Enum.PropertyStatus.Warning: - struct: EnumItem - Enum.ProximityPromptExclusivity.AlwaysShow: - struct: EnumItem - Enum.ProximityPromptExclusivity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProximityPromptExclusivity.OneGlobally: - struct: EnumItem - Enum.ProximityPromptExclusivity.OnePerButton: - struct: EnumItem - Enum.ProximityPromptInputType.Gamepad: - struct: EnumItem - Enum.ProximityPromptInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProximityPromptInputType.Keyboard: - struct: EnumItem - Enum.ProximityPromptInputType.Touch: - struct: EnumItem - Enum.ProximityPromptStyle.Custom: - struct: EnumItem - Enum.ProximityPromptStyle.Default: - struct: EnumItem - Enum.ProximityPromptStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.QualityLevel.Automatic: - struct: EnumItem - Enum.QualityLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.QualityLevel.Level 1: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 1 was replaced with Enum.QualityLevel.Level01 - replace: - - Enum.QualityLevel.Level01 - Enum.QualityLevel.Level 2: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 2 was replaced with Enum.QualityLevel.Level02 - replace: - - Enum.QualityLevel.Level02 - Enum.QualityLevel.Level 3: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 3 was replaced with Enum.QualityLevel.Level03 - replace: - - Enum.QualityLevel.Level03 - Enum.QualityLevel.Level 4: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 4 was replaced with Enum.QualityLevel.Level04 - replace: - - Enum.QualityLevel.Level04 - Enum.QualityLevel.Level 5: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 5 was replaced with Enum.QualityLevel.Level05 - replace: - - Enum.QualityLevel.Level05 - Enum.QualityLevel.Level 6: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 6 was replaced with Enum.QualityLevel.Level06 - replace: - - Enum.QualityLevel.Level06 - Enum.QualityLevel.Level 7: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 7 was replaced with Enum.QualityLevel.Level07 - replace: - - Enum.QualityLevel.Level07 - Enum.QualityLevel.Level 8: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 8 was replaced with Enum.QualityLevel.Level08 - replace: - - Enum.QualityLevel.Level08 - Enum.QualityLevel.Level 9: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 9 was replaced with Enum.QualityLevel.Level09 - replace: - - Enum.QualityLevel.Level09 - Enum.QualityLevel.Level 10: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 10 was replaced with Enum.QualityLevel.Level10 - replace: - - Enum.QualityLevel.Level10 - Enum.QualityLevel.Level 11: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 11 was replaced with Enum.QualityLevel.Level11 - replace: - - Enum.QualityLevel.Level11 - Enum.QualityLevel.Level 12: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 12 was replaced with Enum.QualityLevel.Level12 - replace: - - Enum.QualityLevel.Level12 - Enum.QualityLevel.Level 13: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 13 was replaced with Enum.QualityLevel.Level13 - replace: - - Enum.QualityLevel.Level13 - Enum.QualityLevel.Level 14: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 14 was replaced with Enum.QualityLevel.Level14 - replace: - - Enum.QualityLevel.Level14 - Enum.QualityLevel.Level 15: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 15 was replaced with Enum.QualityLevel.Level15 - replace: - - Enum.QualityLevel.Level15 - Enum.QualityLevel.Level 16: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 16 was replaced with Enum.QualityLevel.Level16 - replace: - - Enum.QualityLevel.Level16 - Enum.QualityLevel.Level 17: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 17 was replaced with Enum.QualityLevel.Level17 - replace: - - Enum.QualityLevel.Level17 - Enum.QualityLevel.Level 18: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 18 was replaced with Enum.QualityLevel.Level18 - replace: - - Enum.QualityLevel.Level18 - Enum.QualityLevel.Level 19: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 19 was replaced with Enum.QualityLevel.Level19 - replace: - - Enum.QualityLevel.Level19 - Enum.QualityLevel.Level 20: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 20 was replaced with Enum.QualityLevel.Level20 - replace: - - Enum.QualityLevel.Level20 - Enum.QualityLevel.Level 21: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 21 was replaced with Enum.QualityLevel.Level21 - replace: - - Enum.QualityLevel.Level21 - Enum.QualityLevel.Level01: - struct: EnumItem - Enum.QualityLevel.Level02: - struct: EnumItem - Enum.QualityLevel.Level03: - struct: EnumItem - Enum.QualityLevel.Level04: - struct: EnumItem - Enum.QualityLevel.Level05: - struct: EnumItem - Enum.QualityLevel.Level06: - struct: EnumItem - Enum.QualityLevel.Level07: - struct: EnumItem - Enum.QualityLevel.Level08: - struct: EnumItem - Enum.QualityLevel.Level09: - struct: EnumItem - Enum.QualityLevel.Level10: - struct: EnumItem - Enum.QualityLevel.Level11: - struct: EnumItem - Enum.QualityLevel.Level12: - struct: EnumItem - Enum.QualityLevel.Level13: - struct: EnumItem - Enum.QualityLevel.Level14: - struct: EnumItem - Enum.QualityLevel.Level15: - struct: EnumItem - Enum.QualityLevel.Level16: - struct: EnumItem - Enum.QualityLevel.Level17: - struct: EnumItem - Enum.QualityLevel.Level18: - struct: EnumItem - Enum.QualityLevel.Level19: - struct: EnumItem - Enum.QualityLevel.Level20: - struct: EnumItem - Enum.QualityLevel.Level21: - struct: EnumItem - Enum.R15CollisionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.R15CollisionType.InnerBox: - struct: EnumItem - Enum.R15CollisionType.OuterBox: - struct: EnumItem - Enum.RaycastFilterType.Blacklist: - struct: EnumItem - deprecated: - message: Enum.RaycastFilterType.Blacklist was replaced with Enum.RaycastFilterType.Exclude - replace: - - Enum.RaycastFilterType.Exclude - Enum.RaycastFilterType.Exclude: - struct: EnumItem - Enum.RaycastFilterType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RaycastFilterType.Include: - struct: EnumItem - Enum.RaycastFilterType.Whitelist: - struct: EnumItem - deprecated: - message: Enum.RaycastFilterType.Whitelist was replaced with Enum.RaycastFilterType.Include - replace: - - Enum.RaycastFilterType.Include - Enum.RejectCharacterDeletions.Default: - struct: EnumItem - Enum.RejectCharacterDeletions.Disabled: - struct: EnumItem - Enum.RejectCharacterDeletions.Enabled: - struct: EnumItem - Enum.RejectCharacterDeletions.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderFidelity.Automatic: - struct: EnumItem - Enum.RenderFidelity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderFidelity.Performance: - struct: EnumItem - Enum.RenderFidelity.Precise: - struct: EnumItem - Enum.RenderPriority.Camera: - struct: EnumItem - Enum.RenderPriority.Character: - struct: EnumItem - Enum.RenderPriority.First: - struct: EnumItem - Enum.RenderPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderPriority.Input: - struct: EnumItem - Enum.RenderPriority.Last: - struct: EnumItem - Enum.RenderingTestComparisonMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderingTestComparisonMethod.diff: - struct: EnumItem - Enum.RenderingTestComparisonMethod.psnr: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Default: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Disabled: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Enabled: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ResamplerMode.Default: - struct: EnumItem - Enum.ResamplerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ResamplerMode.Pixelated: - struct: EnumItem - Enum.ReservedHighlightId.Active: - struct: EnumItem - Enum.ReservedHighlightId.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReservedHighlightId.Hover: - struct: EnumItem - Enum.ReservedHighlightId.Selection: - struct: EnumItem - Enum.ReservedHighlightId.Standard: - struct: EnumItem - Enum.ReturnKeyType.Default: - struct: EnumItem - Enum.ReturnKeyType.Done: - struct: EnumItem - Enum.ReturnKeyType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReturnKeyType.Go: - struct: EnumItem - Enum.ReturnKeyType.Next: - struct: EnumItem - Enum.ReturnKeyType.Search: - struct: EnumItem - Enum.ReturnKeyType.Send: - struct: EnumItem - Enum.ReverbType.Alley: - struct: EnumItem - Enum.ReverbType.Arena: - struct: EnumItem - Enum.ReverbType.Auditorium: - struct: EnumItem - Enum.ReverbType.Bathroom: - struct: EnumItem - Enum.ReverbType.CarpettedHallway: - struct: EnumItem - Enum.ReverbType.Cave: - struct: EnumItem - Enum.ReverbType.City: - struct: EnumItem - Enum.ReverbType.ConcertHall: - struct: EnumItem - Enum.ReverbType.Forest: - struct: EnumItem - Enum.ReverbType.GenericReverb: - struct: EnumItem - Enum.ReverbType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReverbType.Hallway: - struct: EnumItem - Enum.ReverbType.Hangar: - struct: EnumItem - Enum.ReverbType.LivingRoom: - struct: EnumItem - Enum.ReverbType.Mountains: - struct: EnumItem - Enum.ReverbType.NoReverb: - struct: EnumItem - Enum.ReverbType.PaddedCell: - struct: EnumItem - Enum.ReverbType.ParkingLot: - struct: EnumItem - Enum.ReverbType.Plain: - struct: EnumItem - Enum.ReverbType.Quarry: - struct: EnumItem - Enum.ReverbType.Room: - struct: EnumItem - Enum.ReverbType.SewerPipe: - struct: EnumItem - Enum.ReverbType.StoneCorridor: - struct: EnumItem - Enum.ReverbType.StoneRoom: - struct: EnumItem - Enum.ReverbType.UnderWater: - struct: EnumItem - Enum.RibbonTool.ColorPicker: - struct: EnumItem - Enum.RibbonTool.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RibbonTool.Group: - struct: EnumItem - Enum.RibbonTool.MaterialPicker: - struct: EnumItem - Enum.RibbonTool.Move: - struct: EnumItem - Enum.RibbonTool.None: - struct: EnumItem - Enum.RibbonTool.Rotate: - struct: EnumItem - Enum.RibbonTool.Scale: - struct: EnumItem - Enum.RibbonTool.Select: - struct: EnumItem - Enum.RibbonTool.Transform: - struct: EnumItem - Enum.RibbonTool.Ungroup: - struct: EnumItem - Enum.RigScale.Default: - struct: EnumItem - Enum.RigScale.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RigScale.Rthro: - struct: EnumItem - Enum.RigScale.RthroNarrow: - struct: EnumItem - Enum.RigType.Custom: - struct: EnumItem - Enum.RigType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RigType.None: - struct: EnumItem - Enum.RigType.R15: - struct: EnumItem - Enum.RigType.Rthro: - struct: EnumItem - Enum.RigType.RthroNarrow: - struct: EnumItem - Enum.RollOffMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RollOffMode.Inverse: - struct: EnumItem - Enum.RollOffMode.InverseTapered: - struct: EnumItem - Enum.RollOffMode.Linear: - struct: EnumItem - Enum.RollOffMode.LinearSquare: - struct: EnumItem - Enum.RotationOrder.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RotationOrder.XYZ: - struct: EnumItem - Enum.RotationOrder.XZY: - struct: EnumItem - Enum.RotationOrder.YXZ: - struct: EnumItem - Enum.RotationOrder.YZX: - struct: EnumItem - Enum.RotationOrder.ZXY: - struct: EnumItem - Enum.RotationOrder.ZYX: - struct: EnumItem - Enum.RotationType.CameraRelative: - struct: EnumItem - Enum.RotationType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RotationType.MovementRelative: - struct: EnumItem - Enum.RtlTextSupport.Default: - struct: EnumItem - Enum.RtlTextSupport.Disabled: - struct: EnumItem - Enum.RtlTextSupport.Enabled: - struct: EnumItem - Enum.RtlTextSupport.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RunContext.Client: - struct: EnumItem - Enum.RunContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RunContext.Legacy: - struct: EnumItem - Enum.RunContext.Plugin: - struct: EnumItem - Enum.RunContext.Server: - struct: EnumItem - Enum.RuntimeUndoBehavior.Aggregate: - struct: EnumItem - Enum.RuntimeUndoBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RuntimeUndoBehavior.Hybrid: - struct: EnumItem - Enum.RuntimeUndoBehavior.Snapshot: - struct: EnumItem - Enum.SafeAreaCompatibility.FullscreenExtension: - struct: EnumItem - Enum.SafeAreaCompatibility.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SafeAreaCompatibility.None: - struct: EnumItem - Enum.SalesTypeFilter.All: - struct: EnumItem - Enum.SalesTypeFilter.Collectibles: - struct: EnumItem - Enum.SalesTypeFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SalesTypeFilter.Premium: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadDistanceScale: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadFieldOfViewDeg: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadThumbnailType: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadYRotDeg: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SaveAvatarThumbnailCustomizationFailure.Other: - struct: EnumItem - Enum.SaveFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SaveFilter.SaveAll: - struct: EnumItem - Enum.SaveFilter.SaveGame: - struct: EnumItem - Enum.SaveFilter.SaveWorld: - struct: EnumItem - Enum.SavedQualitySetting.Automatic: - struct: EnumItem - Enum.SavedQualitySetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SavedQualitySetting.QualityLevel1: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel10: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel2: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel3: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel4: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel5: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel6: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel7: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel8: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel9: - struct: EnumItem - Enum.ScaleType.Crop: - struct: EnumItem - Enum.ScaleType.Fit: - struct: EnumItem - Enum.ScaleType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScaleType.Slice: - struct: EnumItem - Enum.ScaleType.Stretch: - struct: EnumItem - Enum.ScaleType.Tile: - struct: EnumItem - Enum.ScopeCheckResult.BackendError: - struct: EnumItem - Enum.ScopeCheckResult.ConsentAccepted: - struct: EnumItem - Enum.ScopeCheckResult.ConsentDenied: - struct: EnumItem - Enum.ScopeCheckResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScopeCheckResult.InvalidArgument: - struct: EnumItem - Enum.ScopeCheckResult.InvalidScopes: - struct: EnumItem - Enum.ScopeCheckResult.NoUserInput: - struct: EnumItem - Enum.ScopeCheckResult.Timeout: - struct: EnumItem - Enum.ScopeCheckResult.UnexpectedError: - struct: EnumItem - Enum.ScreenInsets.CoreUISafeInsets: - struct: EnumItem - Enum.ScreenInsets.DeviceSafeInsets: - struct: EnumItem - Enum.ScreenInsets.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScreenInsets.None: - struct: EnumItem - Enum.ScreenOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScreenOrientation.LandscapeLeft: - struct: EnumItem - Enum.ScreenOrientation.LandscapeRight: - struct: EnumItem - Enum.ScreenOrientation.LandscapeSensor: - struct: EnumItem - Enum.ScreenOrientation.Portrait: - struct: EnumItem - Enum.ScreenOrientation.Sensor: - struct: EnumItem - Enum.ScrollBarInset.Always: - struct: EnumItem - Enum.ScrollBarInset.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScrollBarInset.None: - struct: EnumItem - Enum.ScrollBarInset.ScrollBar: - struct: EnumItem - Enum.ScrollingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScrollingDirection.X: - struct: EnumItem - Enum.ScrollingDirection.XY: - struct: EnumItem - Enum.ScrollingDirection.Y: - struct: EnumItem - Enum.SelectionBehavior.Escape: - struct: EnumItem - Enum.SelectionBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SelectionBehavior.Stop: - struct: EnumItem - Enum.SensorMode.Floor: - struct: EnumItem - Enum.SensorMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SensorMode.Ladder: - struct: EnumItem - Enum.SensorUpdateType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SensorUpdateType.Manual: - struct: EnumItem - Enum.SensorUpdateType.OnRead: - struct: EnumItem - Enum.ServerAudioBehavior.Enabled: - struct: EnumItem - Enum.ServerAudioBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ServerAudioBehavior.Muted: - struct: EnumItem - Enum.ServerAudioBehavior.OnlineGame: - struct: EnumItem - Enum.ServiceVisibility.Always: - struct: EnumItem - Enum.ServiceVisibility.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ServiceVisibility.Off: - struct: EnumItem - Enum.ServiceVisibility.WithChildren: - struct: EnumItem - Enum.Severity.Error: - struct: EnumItem - Enum.Severity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Severity.Warning: - struct: EnumItem - Enum.SignalBehavior.AncestryDeferred: - struct: EnumItem - Enum.SignalBehavior.Default: - struct: EnumItem - Enum.SignalBehavior.Deferred: - struct: EnumItem - Enum.SignalBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SignalBehavior.Immediate: - struct: EnumItem - Enum.SizeConstraint.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SizeConstraint.RelativeXX: - struct: EnumItem - Enum.SizeConstraint.RelativeXY: - struct: EnumItem - Enum.SizeConstraint.RelativeYY: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.Disabled: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SolverConvergenceVisualizationMode.PerEdge: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.PerIsland: - struct: EnumItem - Enum.SortDirection.Ascending: - struct: EnumItem - Enum.SortDirection.Descending: - struct: EnumItem - Enum.SortDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SortOrder.Custom: - struct: EnumItem - Enum.SortOrder.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SortOrder.LayoutOrder: - struct: EnumItem - Enum.SortOrder.Name: - struct: EnumItem - Enum.SpecialKey.ChatHotkey: - struct: EnumItem - Enum.SpecialKey.End: - struct: EnumItem - Enum.SpecialKey.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SpecialKey.Home: - struct: EnumItem - Enum.SpecialKey.Insert: - struct: EnumItem - Enum.SpecialKey.PageDown: - struct: EnumItem - Enum.SpecialKey.PageUp: - struct: EnumItem - Enum.StartCorner.BottomLeft: - struct: EnumItem - Enum.StartCorner.BottomRight: - struct: EnumItem - Enum.StartCorner.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StartCorner.TopLeft: - struct: EnumItem - Enum.StartCorner.TopRight: - struct: EnumItem - Enum.Status.Confusion: - struct: EnumItem - Enum.Status.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Status.Poison: - struct: EnumItem - Enum.StreamOutBehavior.Default: - struct: EnumItem - Enum.StreamOutBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StreamOutBehavior.LowMemory: - struct: EnumItem - Enum.StreamOutBehavior.Opportunistic: - struct: EnumItem - Enum.StreamingIntegrityMode.Default: - struct: EnumItem - Enum.StreamingIntegrityMode.Disabled: - struct: EnumItem - Enum.StreamingIntegrityMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StreamingIntegrityMode.MinimumRadiusPause: - struct: EnumItem - Enum.StreamingIntegrityMode.PauseOutsideLoadedArea: - struct: EnumItem - Enum.StreamingPauseMode.ClientPhysicsPause: - struct: EnumItem - Enum.StreamingPauseMode.Default: - struct: EnumItem - Enum.StreamingPauseMode.Disabled: - struct: EnumItem - Enum.StreamingPauseMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioCloseMode.CloseDoc: - struct: EnumItem - Enum.StudioCloseMode.CloseStudio: - struct: EnumItem - Enum.StudioCloseMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioCloseMode.None: - struct: EnumItem - Enum.StudioDataModelType.Edit: - struct: EnumItem - Enum.StudioDataModelType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioDataModelType.None: - struct: EnumItem - Enum.StudioDataModelType.PlayClient: - struct: EnumItem - Enum.StudioDataModelType.PlayServer: - struct: EnumItem - Enum.StudioDataModelType.Standalone: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.ActiveLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Background: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Bool: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Bracket: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Builtin: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Comment: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DebuggerCurrentLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DebuggerErrorLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Default: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DocViewCodeBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Error: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.FindSelectionBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Function: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.FunctionName: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioScriptEditorColorCategories.Keyword: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Local: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.LuauKeyword: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MatchingWordBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuBorder: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuPrimaryText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuScrollbarBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuScrollbarHandle: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSecondaryText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSelectedBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSelectedText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Method: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Nil: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Number: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Operator: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Property: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Ruler: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.SelectionBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.SelectionText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Self: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.String: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.TODO: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Warning: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Whitespace: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Custom: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Extra1: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Extra2: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioScriptEditorColorPresets.RobloxDefault: - struct: EnumItem - Enum.StudioStyleGuideColor.AttributeCog: - struct: EnumItem - Enum.StudioStyleGuideColor.Border: - struct: EnumItem - Enum.StudioStyleGuideColor.BrightText: - struct: EnumItem - Enum.StudioStyleGuideColor.Button: - struct: EnumItem - Enum.StudioStyleGuideColor.ButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.ButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.CategoryItem: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatIncomingBgColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatIncomingTextColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatModeratedMessageColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatOutgoingBgColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatOutgoingTextColor: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldIndicator: - struct: EnumItem - Enum.StudioStyleGuideColor.ColorPickerFrame: - struct: EnumItem - Enum.StudioStyleGuideColor.CurrentMarker: - struct: EnumItem - Enum.StudioStyleGuideColor.Dark: - struct: EnumItem - Enum.StudioStyleGuideColor.DebuggerCurrentLine: - struct: EnumItem - Enum.StudioStyleGuideColor.DebuggerErrorLine: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButton: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogMainButton: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogMainButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathText: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNum: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumAdditionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumDeletionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumNoChangeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumSeparatorBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextAddition: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextAdditionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextDeletion: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextDeletionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextHunkInfo: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextNoChange: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextNoChangeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextSeparatorBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DimmedText: - struct: EnumItem - Enum.StudioStyleGuideColor.DocViewCodeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DropShadow: - struct: EnumItem - Enum.StudioStyleGuideColor.Dropdown: - struct: EnumItem - Enum.StudioStyleGuideColor.EmulatorBar: - struct: EnumItem - Enum.StudioStyleGuideColor.EmulatorDropDown: - struct: EnumItem - Enum.StudioStyleGuideColor.ErrorText: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonAccent: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonBorderAlt: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonChecked: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonDefault: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonHover: - struct: EnumItem - Enum.StudioStyleGuideColor.GameSettingsTableItem: - struct: EnumItem - Enum.StudioStyleGuideColor.GameSettingsTooltip: - struct: EnumItem - Enum.StudioStyleGuideColor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioStyleGuideColor.HeaderSection: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoBarWarningBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoBarWarningText: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoText: - struct: EnumItem - Enum.StudioStyleGuideColor.InputFieldBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.InputFieldBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.Item: - struct: EnumItem - Enum.StudioStyleGuideColor.Light: - struct: EnumItem - Enum.StudioStyleGuideColor.LinkText: - struct: EnumItem - Enum.StudioStyleGuideColor.MainBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.MainButton: - struct: EnumItem - Enum.StudioStyleGuideColor.MainText: - struct: EnumItem - Enum.StudioStyleGuideColor.Mid: - struct: EnumItem - Enum.StudioStyleGuideColor.Midlight: - struct: EnumItem - Enum.StudioStyleGuideColor.Notification: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonButton: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonTab: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonTabTopBar: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBool: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBracket: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBuiltInFunction: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptComment: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptEditorCurrentLine: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptError: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFindSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFunction: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFunctionName: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptKeyword: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptLocal: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptLuauKeyword: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptMatchingWordSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptMethod: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptNil: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptNumber: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptOperator: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptProperty: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptRuler: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelectionText: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelf: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSideWidget: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptString: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptText: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptTodo: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptWarning: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptWhitespace: - struct: EnumItem - Enum.StudioStyleGuideColor.ScrollBar: - struct: EnumItem - Enum.StudioStyleGuideColor.ScrollBarBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.SensitiveText: - struct: EnumItem - Enum.StudioStyleGuideColor.Separator: - struct: EnumItem - Enum.StudioStyleGuideColor.Shadow: - struct: EnumItem - Enum.StudioStyleGuideColor.StatusBar: - struct: EnumItem - Enum.StudioStyleGuideColor.SubText: - struct: EnumItem - Enum.StudioStyleGuideColor.Tab: - struct: EnumItem - Enum.StudioStyleGuideColor.TabBar: - struct: EnumItem - Enum.StudioStyleGuideColor.TableItem: - struct: EnumItem - Enum.StudioStyleGuideColor.Titlebar: - struct: EnumItem - Enum.StudioStyleGuideColor.TitlebarText: - struct: EnumItem - Enum.StudioStyleGuideColor.Tooltip: - struct: EnumItem - Enum.StudioStyleGuideColor.ViewPortBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.WarningText: - struct: EnumItem - Enum.StudioStyleGuideModifier.Default: - struct: EnumItem - Enum.StudioStyleGuideModifier.Disabled: - struct: EnumItem - Enum.StudioStyleGuideModifier.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioStyleGuideModifier.Hover: - struct: EnumItem - Enum.StudioStyleGuideModifier.Pressed: - struct: EnumItem - Enum.StudioStyleGuideModifier.Selected: - struct: EnumItem - Enum.Style.Alternating Supports: - struct: EnumItem - deprecated: - message: Enum.Style.Alternating Supports was replaced with Enum.Style.AlternatingSupports - replace: - - Enum.Style.AlternatingSupports - Enum.Style.AlternatingSupports: - struct: EnumItem - Enum.Style.Bridge Style Supports: - struct: EnumItem - deprecated: - message: Enum.Style.Bridge Style Supports was replaced with Enum.Style.BridgeStyleSupports - replace: - - Enum.Style.BridgeStyleSupports - Enum.Style.BridgeStyleSupports: - struct: EnumItem - Enum.Style.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Style.No Supports: - struct: EnumItem - deprecated: - message: Enum.Style.No Supports was replaced with Enum.Style.NoSupports - replace: - - Enum.Style.NoSupports - Enum.Style.NoSupports: - struct: EnumItem - Enum.SurfaceConstraint.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceConstraint.Hinge: - struct: EnumItem - Enum.SurfaceConstraint.Motor: - struct: EnumItem - Enum.SurfaceConstraint.None: - struct: EnumItem - Enum.SurfaceConstraint.SteppingMotor: - struct: EnumItem - Enum.SurfaceGuiShape.CurvedHorizontally: - struct: EnumItem - Enum.SurfaceGuiShape.Flat: - struct: EnumItem - Enum.SurfaceGuiShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceGuiSizingMode.FixedSize: - struct: EnumItem - Enum.SurfaceGuiSizingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceGuiSizingMode.PixelsPerStud: - struct: EnumItem - Enum.SurfaceType.Bumps: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Bumps was replaced with Enum.SurfaceType.Glue - replace: - - Enum.SurfaceType.Glue - Enum.SurfaceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceType.Glue: - struct: EnumItem - Enum.SurfaceType.Hinge: - struct: EnumItem - Enum.SurfaceType.Inlet: - struct: EnumItem - Enum.SurfaceType.Motor: - struct: EnumItem - Enum.SurfaceType.Smooth: - struct: EnumItem - Enum.SurfaceType.SmoothNoOutlines: - struct: EnumItem - Enum.SurfaceType.Spawn: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Spawn was replaced with Enum.SurfaceType.Smooth - replace: - - Enum.SurfaceType.Smooth - Enum.SurfaceType.SteppingMotor: - struct: EnumItem - Enum.SurfaceType.Studs: - struct: EnumItem - Enum.SurfaceType.Universal: - struct: EnumItem - Enum.SurfaceType.Unjoinable: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Unjoinable was replaced with Enum.SurfaceType.Smooth - replace: - - Enum.SurfaceType.Smooth - Enum.SurfaceType.Weld: - struct: EnumItem - Enum.SwipeDirection.Down: - struct: EnumItem - Enum.SwipeDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SwipeDirection.Left: - struct: EnumItem - Enum.SwipeDirection.None: - struct: EnumItem - Enum.SwipeDirection.Right: - struct: EnumItem - Enum.SwipeDirection.Up: - struct: EnumItem - Enum.TableMajorAxis.ColumnMajor: - struct: EnumItem - Enum.TableMajorAxis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TableMajorAxis.RowMajor: - struct: EnumItem - Enum.Technology.Compatibility: - struct: EnumItem - Enum.Technology.Future: - struct: EnumItem - Enum.Technology.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Technology.Legacy: - struct: EnumItem - Enum.Technology.ShadowMap: - struct: EnumItem - Enum.Technology.Voxel: - struct: EnumItem - Enum.TeleportMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportMethod.TeleportPartyAsync: - struct: EnumItem - Enum.TeleportMethod.TeleportToPlaceInstance: - struct: EnumItem - Enum.TeleportMethod.TeleportToPrivateServer: - struct: EnumItem - Enum.TeleportMethod.TeleportToSpawnByName: - struct: EnumItem - Enum.TeleportMethod.TeleportUnknown: - struct: EnumItem - Enum.TeleportResult.Failure: - struct: EnumItem - Enum.TeleportResult.Flooded: - struct: EnumItem - Enum.TeleportResult.GameEnded: - struct: EnumItem - Enum.TeleportResult.GameFull: - struct: EnumItem - Enum.TeleportResult.GameNotFound: - struct: EnumItem - Enum.TeleportResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportResult.IsTeleporting: - struct: EnumItem - Enum.TeleportResult.Success: - struct: EnumItem - Enum.TeleportResult.Unauthorized: - struct: EnumItem - Enum.TeleportState.Failed: - struct: EnumItem - Enum.TeleportState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportState.InProgress: - struct: EnumItem - Enum.TeleportState.RequestedFromServer: - struct: EnumItem - Enum.TeleportState.Started: - struct: EnumItem - Enum.TeleportState.WaitingForServer: - struct: EnumItem - Enum.TeleportType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportType.ToInstance: - struct: EnumItem - Enum.TeleportType.ToPlace: - struct: EnumItem - Enum.TeleportType.ToReservedServer: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Convert: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditAddTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditReplaceTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditSeaLevelTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Generate: - struct: EnumItem - Enum.TerrainAcquisitionMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TerrainAcquisitionMethod.Import: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Legacy: - struct: EnumItem - Enum.TerrainAcquisitionMethod.None: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Other: - struct: EnumItem - Enum.TerrainAcquisitionMethod.RegionFillTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.RegionPasteTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Template: - struct: EnumItem - Enum.TerrainFace.Bottom: - struct: EnumItem - Enum.TerrainFace.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TerrainFace.Side: - struct: EnumItem - Enum.TerrainFace.Top: - struct: EnumItem - Enum.TextChatMessageStatus.Floodchecked: - struct: EnumItem - Enum.TextChatMessageStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextChatMessageStatus.InvalidPrivacySettings: - struct: EnumItem - Enum.TextChatMessageStatus.InvalidTextChannelPermissions: - struct: EnumItem - Enum.TextChatMessageStatus.MessageTooLong: - struct: EnumItem - Enum.TextChatMessageStatus.Sending: - struct: EnumItem - Enum.TextChatMessageStatus.Success: - struct: EnumItem - Enum.TextChatMessageStatus.TextFilterFailed: - struct: EnumItem - Enum.TextChatMessageStatus.Unknown: - struct: EnumItem - Enum.TextFilterContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextFilterContext.PrivateChat: - struct: EnumItem - Enum.TextFilterContext.PublicChat: - struct: EnumItem - Enum.TextInputType.Default: - struct: EnumItem - Enum.TextInputType.Email: - struct: EnumItem - Enum.TextInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextInputType.NoSuggestions: - struct: EnumItem - Enum.TextInputType.Number: - struct: EnumItem - Enum.TextInputType.OneTimePassword: - struct: EnumItem - Enum.TextInputType.Password: - struct: EnumItem - Enum.TextInputType.PasswordShown: - struct: EnumItem - Enum.TextInputType.Phone: - struct: EnumItem - Enum.TextInputType.Username: - struct: EnumItem - Enum.TextTruncate.AtEnd: - struct: EnumItem - Enum.TextTruncate.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextTruncate.None: - struct: EnumItem - Enum.TextXAlignment.Center: - struct: EnumItem - Enum.TextXAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextXAlignment.Left: - struct: EnumItem - Enum.TextXAlignment.Right: - struct: EnumItem - Enum.TextYAlignment.Bottom: - struct: EnumItem - Enum.TextYAlignment.Center: - struct: EnumItem - Enum.TextYAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextYAlignment.Top: - struct: EnumItem - Enum.TextureMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextureMode.Static: - struct: EnumItem - Enum.TextureMode.Stretch: - struct: EnumItem - Enum.TextureMode.Wrap: - struct: EnumItem - Enum.TextureQueryType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextureQueryType.Humanoid: - struct: EnumItem - Enum.TextureQueryType.HumanoidOrphaned: - struct: EnumItem - Enum.TextureQueryType.NonHumanoid: - struct: EnumItem - Enum.TextureQueryType.NonHumanoidOrphaned: - struct: EnumItem - Enum.ThreadPoolConfig.Auto: - struct: EnumItem - Enum.ThreadPoolConfig.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThreadPoolConfig.PartialThread: - struct: EnumItem - deprecated: - message: Enum.ThreadPoolConfig.PartialThread was replaced with Enum.ThreadPoolConfig.Auto - replace: - - Enum.ThreadPoolConfig.Auto - Enum.ThreadPoolConfig.PerCore1: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore2: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore3: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore4: - struct: EnumItem - Enum.ThreadPoolConfig.Threads1: - struct: EnumItem - Enum.ThreadPoolConfig.Threads16: - struct: EnumItem - Enum.ThreadPoolConfig.Threads2: - struct: EnumItem - Enum.ThreadPoolConfig.Threads3: - struct: EnumItem - Enum.ThreadPoolConfig.Threads4: - struct: EnumItem - Enum.ThreadPoolConfig.Threads8: - struct: EnumItem - Enum.ThrottlingPriority.Default: - struct: EnumItem - Enum.ThrottlingPriority.ElevatedOnServer: - struct: EnumItem - Enum.ThrottlingPriority.Extreme: - struct: EnumItem - Enum.ThrottlingPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailSize.Size100x100: - struct: EnumItem - Enum.ThumbnailSize.Size150x150: - struct: EnumItem - Enum.ThumbnailSize.Size180x180: - struct: EnumItem - Enum.ThumbnailSize.Size352x352: - struct: EnumItem - Enum.ThumbnailSize.Size420x420: - struct: EnumItem - Enum.ThumbnailSize.Size48x48: - struct: EnumItem - Enum.ThumbnailSize.Size60x60: - struct: EnumItem - Enum.ThumbnailType.AvatarBust: - struct: EnumItem - Enum.ThumbnailType.AvatarThumbnail: - struct: EnumItem - Enum.ThumbnailType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailType.HeadShot: - struct: EnumItem - Enum.TickCountSampleMethod.Benchmark: - struct: EnumItem - Enum.TickCountSampleMethod.Fast: - struct: EnumItem - Enum.TickCountSampleMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TickCountSampleMethod.Precise: - struct: EnumItem - Enum.TopBottom.Bottom: - struct: EnumItem - Enum.TopBottom.Center: - struct: EnumItem - Enum.TopBottom.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TopBottom.Top: - struct: EnumItem - Enum.TouchCameraMovementMode.Classic: - struct: EnumItem - Enum.TouchCameraMovementMode.Default: - struct: EnumItem - Enum.TouchCameraMovementMode.Follow: - struct: EnumItem - Enum.TouchCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TouchCameraMovementMode.Orbital: - struct: EnumItem - Enum.TouchMovementMode.ClickToMove: - struct: EnumItem - Enum.TouchMovementMode.DPad: - struct: EnumItem - Enum.TouchMovementMode.Default: - struct: EnumItem - Enum.TouchMovementMode.DynamicThumbstick: - struct: EnumItem - Enum.TouchMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TouchMovementMode.Thumbpad: - struct: EnumItem - Enum.TouchMovementMode.Thumbstick: - struct: EnumItem - Enum.TrackerError.AudioError: - struct: EnumItem - Enum.TrackerError.AudioNoPermission: - struct: EnumItem - Enum.TrackerError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerError.InitFailed: - struct: EnumItem - Enum.TrackerError.NoAudio: - struct: EnumItem - Enum.TrackerError.NoService: - struct: EnumItem - Enum.TrackerError.NoVideo: - struct: EnumItem - Enum.TrackerError.Ok: - struct: EnumItem - Enum.TrackerError.VideoError: - struct: EnumItem - Enum.TrackerError.VideoNoPermission: - struct: EnumItem - Enum.TrackerError.VideoUnsupported: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.Auto: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ExtrapolateFacsAndPose: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ExtrapolateFacsOnly: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ForceDisabled: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerLodFlagMode.Auto: - struct: EnumItem - Enum.TrackerLodFlagMode.ForceFalse: - struct: EnumItem - Enum.TrackerLodFlagMode.ForceTrue: - struct: EnumItem - Enum.TrackerLodFlagMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerLodValueMode.Auto: - struct: EnumItem - Enum.TrackerLodValueMode.Force0: - struct: EnumItem - Enum.TrackerLodValueMode.Force1: - struct: EnumItem - Enum.TrackerLodValueMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerMode.Audio: - struct: EnumItem - Enum.TrackerMode.AudioVideo: - struct: EnumItem - Enum.TrackerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerMode.None: - struct: EnumItem - Enum.TrackerMode.Video: - struct: EnumItem - Enum.TrackerPromptEvent.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerPromptEvent.LODCameraRecommendDisable: - struct: EnumItem - Enum.TriStateBoolean.False: - struct: EnumItem - Enum.TriStateBoolean.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TriStateBoolean.True: - struct: EnumItem - Enum.TriStateBoolean.Unknown: - struct: EnumItem - Enum.TweenStatus.Canceled: - struct: EnumItem - Enum.TweenStatus.Completed: - struct: EnumItem - Enum.TweenStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UITheme.Dark: - struct: EnumItem - Enum.UITheme.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UITheme.Light: - struct: EnumItem - Enum.UiMessageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UiMessageType.UiMessageError: - struct: EnumItem - Enum.UiMessageType.UiMessageInfo: - struct: EnumItem - Enum.UsageContext.Default: - struct: EnumItem - Enum.UsageContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UsageContext.Preview: - struct: EnumItem - Enum.UserCFrame.Floor: - struct: EnumItem - Enum.UserCFrame.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserCFrame.Head: - struct: EnumItem - Enum.UserCFrame.LeftHand: - struct: EnumItem - Enum.UserCFrame.RightHand: - struct: EnumItem - Enum.UserInputState.Begin: - struct: EnumItem - Enum.UserInputState.Cancel: - struct: EnumItem - Enum.UserInputState.Change: - struct: EnumItem - Enum.UserInputState.End: - struct: EnumItem - Enum.UserInputState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserInputState.None: - struct: EnumItem - Enum.UserInputType.Accelerometer: - struct: EnumItem - Enum.UserInputType.Focus: - struct: EnumItem - Enum.UserInputType.Gamepad1: - struct: EnumItem - Enum.UserInputType.Gamepad2: - struct: EnumItem - Enum.UserInputType.Gamepad3: - struct: EnumItem - Enum.UserInputType.Gamepad4: - struct: EnumItem - Enum.UserInputType.Gamepad5: - struct: EnumItem - Enum.UserInputType.Gamepad6: - struct: EnumItem - Enum.UserInputType.Gamepad7: - struct: EnumItem - Enum.UserInputType.Gamepad8: - struct: EnumItem - Enum.UserInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserInputType.Gyro: - struct: EnumItem - Enum.UserInputType.InputMethod: - struct: EnumItem - Enum.UserInputType.Keyboard: - struct: EnumItem - Enum.UserInputType.MouseButton1: - struct: EnumItem - Enum.UserInputType.MouseButton2: - struct: EnumItem - Enum.UserInputType.MouseButton3: - struct: EnumItem - Enum.UserInputType.MouseMovement: - struct: EnumItem - Enum.UserInputType.MouseWheel: - struct: EnumItem - Enum.UserInputType.None: - struct: EnumItem - Enum.UserInputType.TextInput: - struct: EnumItem - Enum.UserInputType.Touch: - struct: EnumItem - Enum.VRPlayMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRPlayMode.Seated: - struct: EnumItem - Enum.VRPlayMode.Standing: - struct: EnumItem - Enum.VRSafetyBubbleMode.Anyone: - struct: EnumItem - Enum.VRSafetyBubbleMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRSafetyBubbleMode.NoOne: - struct: EnumItem - Enum.VRSafetyBubbleMode.OnlyFriends: - struct: EnumItem - Enum.VRScaling.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRScaling.Off: - struct: EnumItem - Enum.VRScaling.World: - struct: EnumItem - Enum.VRSessionState.Focused: - struct: EnumItem - Enum.VRSessionState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRSessionState.Idle: - struct: EnumItem - Enum.VRSessionState.Undefined: - struct: EnumItem - Enum.VRSessionState.Visible: - struct: EnumItem - Enum.VRTouchpad.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRTouchpad.Left: - struct: EnumItem - Enum.VRTouchpad.Right: - struct: EnumItem - Enum.VRTouchpadMode.ABXY: - struct: EnumItem - Enum.VRTouchpadMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRTouchpadMode.Touch: - struct: EnumItem - Enum.VRTouchpadMode.VirtualThumbstick: - struct: EnumItem - Enum.VelocityConstraintMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VelocityConstraintMode.Line: - struct: EnumItem - Enum.VelocityConstraintMode.Plane: - struct: EnumItem - Enum.VelocityConstraintMode.Vector: - struct: EnumItem - Enum.VerticalAlignment.Bottom: - struct: EnumItem - Enum.VerticalAlignment.Center: - struct: EnumItem - Enum.VerticalAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VerticalAlignment.Top: - struct: EnumItem - Enum.VerticalScrollBarPosition.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VerticalScrollBarPosition.Left: - struct: EnumItem - Enum.VerticalScrollBarPosition.Right: - struct: EnumItem - Enum.VibrationMotor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VibrationMotor.Large: - struct: EnumItem - Enum.VibrationMotor.LeftHand: - struct: EnumItem - Enum.VibrationMotor.LeftTrigger: - struct: EnumItem - Enum.VibrationMotor.RightHand: - struct: EnumItem - Enum.VibrationMotor.RightTrigger: - struct: EnumItem - Enum.VibrationMotor.Small: - struct: EnumItem - Enum.VirtualCursorMode.Default: - struct: EnumItem - Enum.VirtualCursorMode.Disabled: - struct: EnumItem - Enum.VirtualCursorMode.Enabled: - struct: EnumItem - Enum.VirtualCursorMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VirtualInputMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VirtualInputMode.None: - struct: EnumItem - Enum.VirtualInputMode.Playing: - struct: EnumItem - Enum.VirtualInputMode.Recording: - struct: EnumItem - Enum.VoiceChatState.Ended: - struct: EnumItem - Enum.VoiceChatState.Failed: - struct: EnumItem - Enum.VoiceChatState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VoiceChatState.Idle: - struct: EnumItem - Enum.VoiceChatState.Joined: - struct: EnumItem - Enum.VoiceChatState.Joining: - struct: EnumItem - Enum.VoiceChatState.JoiningRetry: - struct: EnumItem - Enum.VoiceChatState.Leaving: - struct: EnumItem - Enum.VolumetricAudio.Automatic: - struct: EnumItem - Enum.VolumetricAudio.Disabled: - struct: EnumItem - Enum.VolumetricAudio.Enabled: - struct: EnumItem - Enum.VolumetricAudio.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterDirection.NegX: - struct: EnumItem - Enum.WaterDirection.NegY: - struct: EnumItem - Enum.WaterDirection.NegZ: - struct: EnumItem - Enum.WaterDirection.X: - struct: EnumItem - Enum.WaterDirection.Y: - struct: EnumItem - Enum.WaterDirection.Z: - struct: EnumItem - Enum.WaterForce.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterForce.Max: - struct: EnumItem - Enum.WaterForce.Medium: - struct: EnumItem - Enum.WaterForce.None: - struct: EnumItem - Enum.WaterForce.Small: - struct: EnumItem - Enum.WaterForce.Strong: - struct: EnumItem - Enum.WrapLayerAutoSkin.Disabled: - struct: EnumItem - Enum.WrapLayerAutoSkin.EnabledOverride: - struct: EnumItem - Enum.WrapLayerAutoSkin.EnabledPreserve: - struct: EnumItem - Enum.WrapLayerAutoSkin.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapLayerDebugMode.BoundCage: - struct: EnumItem - Enum.WrapLayerDebugMode.BoundCageAndLinks: - struct: EnumItem - Enum.WrapLayerDebugMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapLayerDebugMode.HSRInner: - struct: EnumItem - Enum.WrapLayerDebugMode.HSRInnerReverse: - struct: EnumItem - Enum.WrapLayerDebugMode.HSROuter: - struct: EnumItem - Enum.WrapLayerDebugMode.HSROuterDetail: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCage: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCageFittedToBase: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCageFittedToPrev: - struct: EnumItem - Enum.WrapLayerDebugMode.None: - struct: EnumItem - Enum.WrapLayerDebugMode.OuterCage: - struct: EnumItem - Enum.WrapLayerDebugMode.Rbf: - struct: EnumItem - Enum.WrapLayerDebugMode.Reference: - struct: EnumItem - Enum.WrapLayerDebugMode.ReferenceMeshAfterMorph: - struct: EnumItem - Enum.WrapTargetDebugMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapTargetDebugMode.None: - struct: EnumItem - Enum.WrapTargetDebugMode.OuterCageDetail: - struct: EnumItem - Enum.WrapTargetDebugMode.Rbf: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageCompressed: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageInterface: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageOriginal: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerCageCompressed: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerCageOriginal: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerInterface: - struct: EnumItem - Enum.ZIndexBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ZIndexBehavior.Global: - struct: EnumItem - Enum.ZIndexBehavior.Sibling: - struct: EnumItem - Faces.new: - args: - - type: '...' - must_use: true - FloatCurveKey.new: - args: - - type: number - - type: number - - type: - display: KeyInterpolationMode - must_use: true - Font.fromEnum: - args: - - type: - display: Font - must_use: true - Font.fromId: - args: - - type: number - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Font.fromName: - args: - - type: string - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Font.new: - args: - - type: string - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Instance.new: - args: - - type: - - Accoutrement - - Accessory - - Hat - - AdPortal - - AdvancedDragger - - AnalyticsService - - Animation - - CurveAnimation - - KeyframeSequence - - AnimationController - - AnimationRigData - - Animator - - Atmosphere - - Attachment - - Bone - - AudioSearchParams - - Backpack - - WrapLayer - - WrapTarget - - Beam - - BindableEvent - - BindableFunction - - BodyAngularVelocity - - BodyForce - - BodyGyro - - BodyPosition - - BodyThrust - - BodyVelocity - - RocketPropulsion - - Breakpoint - - Camera - - BodyColors - - CharacterMesh - - Pants - - Shirt - - ShirtGraphic - - Skin - - ClickDetector - - Clouds - - Configuration - - AlignOrientation - - AlignPosition - - AngularVelocity - - AnimationConstraint - - BallSocketConstraint - - HingeConstraint - - LineForce - - LinearVelocity - - PlaneConstraint - - Plane - - RigidConstraint - - RodConstraint - - RopeConstraint - - CylindricalConstraint - - PrismaticConstraint - - SpringConstraint - - Torque - - TorsionSpringConstraint - - UniversalConstraint - - VectorForce - - HumanoidController - - SkateboardController - - VehicleController - - AirController - - ClimbController - - GroundController - - SwimController - - ControllerManager - - CustomEvent - - CustomEventReceiver - - BlockMesh - - CylinderMesh - - FileMesh - - SpecialMesh - - DataStoreIncrementOptions - - DataStoreOptions - - DataStoreSetOptions - - DebuggerWatch - - Dialog - - DialogChoice - - Dragger - - EulerRotationCurve - - ExperienceInviteOptions - - Explosion - - FaceControls - - Decal - - Texture - - Hole - - MotorFeature - - Fire - - FloatCurve - - FlyweightService - - CSGDictionaryService - - NonReplicatedCSGDictionaryService - - Folder - - ForceField - - FunctionalTest - - GetTextBoundsParams - - CanvasGroup - - Frame - - ImageButton - - TextButton - - ImageLabel - - TextLabel - - ScrollingFrame - - TextBox - - VideoFrame - - ViewportFrame - - BillboardGui - - ScreenGui - - GuiMain - - AdGui - - SurfaceGui - - FloorWire - - SelectionBox - - BoxHandleAdornment - - ConeHandleAdornment - - CylinderHandleAdornment - - ImageHandleAdornment - - LineHandleAdornment - - SphereHandleAdornment - - WireframeHandleAdornment - - ParabolaAdornment - - SelectionSphere - - ArcHandles - - Handles - - SurfaceSelection - - SelectionPartLasso - - SelectionPointLasso - - HeightmapImporterService - - HiddenSurfaceRemovalAsset - - Highlight - - Humanoid - - HumanoidDescription - - IKControl - - RotateP - - RotateV - - Glue - - ManualGlue - - ManualWeld - - Motor - - Motor6D - - Rotate - - Snap - - VelocityMotor - - Weld - - Keyframe - - KeyframeMarker - - PointLight - - SpotLight - - SurfaceLight - - LocalizationTable - - Script - - LocalScript - - ModuleScript - - MarkerCurve - - MaterialVariant - - MemoryStoreService - - Message - - Hint - - NoCollisionConstraint - - CornerWedgePart - - Part - - FlagStand - - Seat - - SkateboardPlatform - - SpawnLocation - - WedgePart - - MeshPart - - PartOperation - - IntersectOperation - - NegateOperation - - UnionOperation - - TrussPart - - VehicleSeat - - Model - - Actor - - HopperBin - - Tool - - Flag - - WorldModel - - PartOperationAsset - - ParticleEmitter - - PathfindingLink - - PathfindingModifier - - Player - - PluginAction - - NumberPose - - Pose - - BloomEffect - - BlurEffect - - ColorCorrectionEffect - - DepthOfFieldEffect - - SunRaysEffect - - ProximityPrompt - - ProximityPromptService - - ReflectionMetadata - - ReflectionMetadataCallbacks - - ReflectionMetadataClasses - - ReflectionMetadataEnums - - ReflectionMetadataEvents - - ReflectionMetadataFunctions - - ReflectionMetadataClass - - ReflectionMetadataEnum - - ReflectionMetadataEnumItem - - ReflectionMetadataMember - - ReflectionMetadataProperties - - ReflectionMetadataYieldFunctions - - RemoteEvent - - RemoteFunction - - RenderingTest - - RotationCurve - - BuoyancySensor - - ControllerPartSensor - - Sky - - Smoke - - Sound - - ChorusSoundEffect - - CompressorSoundEffect - - DistortionSoundEffect - - EchoSoundEffect - - EqualizerSoundEffect - - FlangeSoundEffect - - PitchShiftSoundEffect - - ReverbSoundEffect - - TremoloSoundEffect - - SoundGroup - - Sparkles - - StandalonePluginScripts - - StarterGear - - SurfaceAppearance - - Team - - TeleportOptions - - TerrainDetail - - TerrainRegion - - TestService - - TextChannel - - TextChatCommand - - TextChatMessageProperties - - TrackerStreamAnimation - - Trail - - Tween - - UIAspectRatioConstraint - - UISizeConstraint - - UITextSizeConstraint - - UICorner - - UIGradient - - UIGridLayout - - UIListLayout - - UIPageLayout - - UITableLayout - - UIPadding - - UIScale - - UIStroke - - BinaryStringValue - - BoolValue - - BrickColorValue - - CFrameValue - - Color3Value - - DoubleConstrainedValue - - IntConstrainedValue - - IntValue - - NumberValue - - ObjectValue - - RayValue - - StringValue - - Vector3Value - - Vector3Curve - - VirtualInputManager - - WeldConstraint - must_use: true - NumberRange.new: - args: - - type: number - - required: false - type: number - must_use: true - NumberSequence.new: - args: - - type: any - - required: false - type: number - must_use: true - NumberSequenceKeypoint.new: - args: - - type: number - - type: number - - required: false - type: number - must_use: true - OverlapParams.new: - args: [] - must_use: true - PathWaypoint.new: - args: - - required: false - type: - display: Vector3 - - required: false - type: - display: PathWaypointAction - must_use: true - PhysicalProperties.new: - args: - - type: any - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Random.new: - args: - - required: false - type: number - must_use: true - Ray.new: - args: - - type: - display: Vector3 - - type: - display: Vector3 - must_use: true - RaycastParams.new: - args: [] - must_use: true - Rect.new: - args: - - type: any - - type: any - - required: false - type: number - - required: false - type: number - must_use: true - Region3.new: - args: - - type: - display: Vector3 - - type: - display: Vector3 - must_use: true - Region3int16.new: - args: - - required: false - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - RotationCurveKey.new: - args: - - type: number - - type: - display: CFrame - - type: - display: KeyInterpolationMode - must_use: true - TweenInfo.new: - args: - - required: false - type: number - - required: false - type: - display: EasingStyle - - required: false - type: - display: EasingDirection - - required: false - type: number - - required: false - type: bool - - required: false - type: number - must_use: true - UDim.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - UDim2.fromOffset: - args: - - required: use UDim2.new() if you want an empty UDim2 - type: number - - required: false - type: number - must_use: true - UDim2.fromScale: - args: - - required: use UDim2.new() if you want an empty UDim2 - type: number - - required: false - type: number - must_use: true - UDim2.new: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: number - - required: false - type: number - must_use: true - UserSettings: - args: [] - must_use: true - Vector2.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - Vector2.one: - property: read-only - Vector2.xAxis: - property: read-only - Vector2.yAxis: - property: read-only - Vector2.zero: - property: read-only - Vector2int16.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - Vector3.FromAxis: - args: - - type: - display: Axis - must_use: true - Vector3.FromNormalId: - args: - - type: - display: NormalId - must_use: true - Vector3.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Vector3.one: - property: read-only - Vector3.xAxis: - property: read-only - Vector3.yAxis: - property: read-only - Vector3.zAxis: - property: read-only - Vector3.zero: - property: read-only - Vector3int16.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - _G: - property: new-fields - _VERSION: - property: read-only - arg: - property: new-fields - assert: - args: - - type: any - - required: A failed assertion without a message is unhelpful to users. - type: string - bit32.arshift: - args: - - type: number - - type: number - must_use: true - bit32.band: - args: - - type: '...' - must_use: true - bit32.bnot: - args: - - type: number - must_use: true - bit32.bor: - args: - - type: '...' - must_use: true - bit32.btest: - args: - - type: '...' - must_use: true - bit32.bxor: - args: - - type: '...' - must_use: true - bit32.countlz: - args: - - type: number - must_use: true - bit32.countrz: - args: - - type: number - must_use: true - bit32.extract: - args: - - type: number - - type: number - - required: false - type: number - must_use: true - bit32.lrotate: - args: - - type: number - - type: number - must_use: true - bit32.lshift: - args: - - type: number - - type: number - must_use: true - bit32.replace: - args: - - type: number - - type: number - - type: number - - required: false - type: number - must_use: true - bit32.rrotate: - args: - - type: number - - type: number - must_use: true - bit32.rshift: - args: - - type: number - - type: number - must_use: true - collectgarbage: - args: - - type: - - count - must_use: true - coroutine.close: - args: - - type: - display: thread - coroutine.create: - args: - - type: function - must_use: true - coroutine.isyieldable: - args: [] - coroutine.resume: - args: - - type: - display: coroutine - - required: false - type: '...' - coroutine.running: - args: [] - must_use: true - coroutine.status: - args: - - type: - display: coroutine - must_use: true - coroutine.wrap: - args: - - type: function - coroutine.yield: - args: - - required: false - type: '...' - debug.info: - args: - - type: any - - type: any - - required: false - type: string - must_use: true - debug.profilebegin: - args: - - type: string - debug.profileend: - args: [] - debug.resetmemorycategory: - args: [] - debug.setmemorycategory: - args: - - type: string - debug.traceback: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - must_use: true - delay: - args: - - type: number - - type: function - elapsedTime: - args: [] - error: - args: - - required: Erroring without an explanation is unhelpful to users. - type: any - - required: false - type: number - game: - struct: DataModel - gcinfo: - args: [] - must_use: true - getfenv: - args: - - required: false - type: any - must_use: true - getmetatable: - args: - - type: table - must_use: true - io.close: - args: - - required: false - type: - display: file - io.flush: - args: [] - io.input: - args: - - required: false - type: - display: file - io.lines: - args: - - type: string - io.open: - args: - - type: string - - required: false - type: - - r - - rb - - w - - wb - - a - - ab - - r+ - - rb+ - - w+ - - wb+ - - a+ - - ab+ - io.output: - args: - - required: false - type: - display: file - io.popen: - args: - - type: string - - required: false - type: - - r - - rb - - w - - wb - - a - - ab - - r+ - - rb+ - - w+ - - wb+ - - a+ - - ab+ - io.read: - args: - - type: '...' - io.stderr: - property: read-only - io.stdin: - property: read-only - io.stdout: - property: read-only - io.tmpfile: - args: [] - io.type: - args: - - type: - display: potentially file-like object - io.write: - args: - - type: '...' - ipairs: - args: - - type: table - must_use: true - loadstring: - args: - - type: string - - required: false - type: string - math.abs: - args: - - type: number - must_use: true - math.acos: - args: - - type: number - must_use: true - math.asin: - args: - - type: number - must_use: true - math.atan: - args: - - type: number - must_use: true - math.atan2: - args: - - type: number - - type: number - must_use: true - math.ceil: - args: - - type: number - must_use: true - math.clamp: - args: - - type: number - - type: number - - type: number - must_use: true - math.cos: - args: - - type: number - must_use: true - math.cosh: - args: - - type: number - must_use: true - math.deg: - args: - - type: number - must_use: true - math.exp: - args: - - type: number - must_use: true - math.floor: - args: - - type: number - must_use: true - math.fmod: - args: - - type: number - - type: number - must_use: true - math.frexp: - args: - - type: number - must_use: true - math.huge: - property: read-only - math.ldexp: - args: - - type: number - - type: number - must_use: true - math.log: - args: - - type: number - - required: false - type: number - must_use: true - math.log10: - args: - - type: number - must_use: true - math.max: - args: - - type: number - - required: use of max only makes sense with more than 1 parameter - type: '...' - must_use: true - math.min: - args: - - type: number - - required: use of min only makes sense with more than 1 parameter - type: '...' - must_use: true - math.modf: - args: - - type: number - must_use: true - math.noise: - args: - - type: number - - required: false - type: number - - required: false - type: number - must_use: true - math.pi: - property: read-only - math.pow: - args: - - type: number - - type: number - must_use: true - math.rad: - args: - - type: number - must_use: true - math.random: - args: - - required: false - type: number - - required: false - type: number - must_use: true - math.randomseed: - args: - - type: number - math.round: - args: - - type: number - must_use: true - math.sign: - args: - - type: number - must_use: true - math.sin: - args: - - type: number - must_use: true - math.sinh: - args: - - type: number - must_use: true - math.sqrt: - args: - - type: number - must_use: true - math.tan: - args: - - type: number - must_use: true - math.tanh: - args: - - type: number - must_use: true - newproxy: - args: - - required: false - type: bool - must_use: true - next: - args: - - type: table - - required: false - type: number - os.clock: - args: [] - must_use: true - os.date: - args: - - required: false - type: string - - required: false - type: number - must_use: true - os.difftime: - args: - - type: number - - type: number - must_use: true - os.time: - args: - - required: false - type: table - must_use: true - package.cpath: - property: full-write - package.loaded: - property: new-fields - package.loaders: - property: new-fields - package.loadlib: - args: - - type: string - - type: string - package.path: - property: full-write - package.preload: - property: new-fields - package.seeall: - args: - - type: table - pairs: - args: - - type: table - must_use: true - pcall: - args: - - type: function - - required: false - type: '...' - plugin: - struct: Plugin - print: - args: - - required: false - type: '...' - rawequal: - args: - - type: any - - type: any - must_use: true - rawget: - args: - - type: any - - type: any - must_use: true - rawlen: - args: - - type: table - must_use: true - rawset: - args: - - type: any - - type: any - - type: any - require: - args: - - type: number - script: - struct: Script - select: - args: - - type: any - - type: '...' - must_use: true - setfenv: - args: - - type: any - - type: table - setmetatable: - args: - - type: table - - required: false - type: table - settings: - args: [] - shared: - property: new-fields - spawn: - args: - - type: function - string.byte: - args: - - type: string - - required: false - type: number - - required: false - type: number - string.char: - args: - - required: string.char should be used with an argument despite it not throwing - type: number - - required: false - type: '...' - must_use: true - string.find: - args: - - type: string - - type: string - - required: false - type: number - - required: false - type: bool - must_use: true - string.format: - args: - - type: string - - required: string.format should only be used for strings that need formatting - type: '...' - must_use: true - string.gmatch: - args: - - type: string - - type: string - must_use: true - string.gsub: - args: - - type: string - - type: string - - type: any - - required: false - type: number - must_use: true - string.len: - args: - - type: string - must_use: true - string.lower: - args: - - type: string - must_use: true - string.match: - args: - - type: string - - type: string - - required: false - type: number - must_use: true - string.pack: - args: - - type: string - - type: '...' - must_use: true - string.packsize: - args: - - type: string - must_use: true - string.rep: - args: - - type: string - - type: number - must_use: true - string.reverse: - args: - - type: string - must_use: true - string.split: - args: - - type: string - - required: false - type: string - must_use: true - string.sub: - args: - - type: string - - type: number - - required: false - type: number - must_use: true - string.unpack: - args: - - type: string - - type: string - - required: false - type: number - must_use: true - string.upper: - args: - - type: string - must_use: true - table.clear: - args: - - type: table - table.clone: - args: - - type: table - must_use: true - table.concat: - args: - - type: table - - required: false - type: string - - required: false - type: number - - required: false - type: number - must_use: true - table.create: - args: - - type: number - - required: false - type: any - must_use: true - table.find: - args: - - type: table - - type: any - - required: false - type: number - must_use: true - table.foreach: - args: - - type: table - - type: function - deprecated: - message: use a for loop instead. - replace: [] - table.foreachi: - args: - - type: table - - type: function - deprecated: - message: use a for loop instead. - replace: [] - table.freeze: - args: - - type: table - table.getn: - args: - - type: table - - type: number - must_use: true - deprecated: - message: '`table.getn` has been superceded by #.' - replace: - - '#%1' - table.insert: - args: - - type: table - observes: write - - type: any - - required: false - type: any - table.isfrozen: - args: - - type: table - must_use: true - table.maxn: - args: - - type: table - must_use: true - table.move: - args: - - type: table - - type: number - - type: number - - type: number - - required: false - type: table - table.pack: - args: - - type: '...' - must_use: true - table.remove: - args: - - type: table - - required: false - type: number - table.sort: - args: - - type: table - - required: false - type: function - table.unpack: - args: - - type: table - - required: false - type: number - - required: false - type: number - must_use: true - task.cancel: - args: - - type: - display: thread - task.defer: - args: - - type: function - - required: false - type: '...' - task.delay: - args: - - required: false - type: number - - type: function - - required: false - type: '...' - task.desynchronize: - args: [] - task.spawn: - args: - - type: function - - required: false - type: '...' - task.synchronize: - args: [] - task.wait: - args: - - required: false - type: number - tick: - args: [] - time: - args: [] - tonumber: - args: - - type: any - - required: false - type: number - must_use: true - tostring: - args: - - type: any - must_use: true - type: - args: - - type: any - typeof: - args: - - type: any - unpack: - args: - - type: table - - required: false - type: number - - required: false - type: number - must_use: true - utf8.char: - args: - - required: utf8.char should be used with an argument despite it not throwing - type: number - - required: false - type: '...' - must_use: true - utf8.charpattern: - property: read-only - utf8.codepoint: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.codes: - args: - - type: string - must_use: true - utf8.graphemes: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.len: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.nfcnormalize: - args: - - type: string - must_use: true - utf8.nfdnormalize: - args: - - type: string - must_use: true - utf8.offset: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - wait: - args: - - required: false - type: number - warn: - args: - - type: any - - required: false - type: '...' - workspace: - struct: Workspace - xpcall: - args: - - type: function - - required: false - type: '...' -structs: - BasePart: - '*': - struct: Instance - AncestryChanged: - struct: Event - Anchored: - property: override-fields - ApplyAngularImpulse: - args: - - required: false - type: any - method: true - ApplyImpulse: - args: - - required: false - type: any - method: true - ApplyImpulseAtPosition: - args: - - required: false - type: any - - required: false - type: any - method: true - Archivable: - property: override-fields - AssemblyAngularVelocity: - any: true - AssemblyCenterOfMass: - any: true - AssemblyLinearVelocity: - any: true - AssemblyMass: - property: read-only - AssemblyRootPart: - struct: BasePart - AttributeChanged: - struct: Event - BackParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackSurface: - property: override-fields - BackSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomSurface: - property: override-fields - BottomSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BrickColor: - property: override-fields - CFrame: - any: true - CanCollide: - property: override-fields - CanCollideWith: - args: - - required: false - type: any - method: true - CanQuery: - property: override-fields - CanSetNetworkOwnership: - args: [] - method: true - CanTouch: - property: override-fields - CastShadow: - property: override-fields - CenterOfMass: - any: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionGroup: - property: override-fields - CollisionGroupId: - property: override-fields - Color: - property: override-fields - CurrentPhysicalProperties: - property: read-only - CustomPhysicalProperties: - property: override-fields - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Elasticity: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - ExtentsCFrame: - any: true - ExtentsSize: - any: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - Friction: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontSurface: - property: override-fields - FrontSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetConnectedParts: - args: - - required: false - type: any - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetJoints: - args: [] - method: true - GetMass: - args: [] - method: true - GetNetworkOwner: - args: [] - method: true - GetNetworkOwnershipAuto: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetRootPart: - args: [] - method: true - GetTouchingParts: - args: [] - method: true - GetVelocityAtPosition: - args: - - required: false - type: any - method: true - IntersectAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGrounded: - args: [] - method: true - LeftParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftSurface: - property: override-fields - LeftSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LocalSimulationTouched: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - LocalTransparencyModifier: - property: override-fields - Locked: - property: override-fields - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Mass: - property: read-only - Massless: - property: override-fields - Material: - property: override-fields - MaterialVariant: - property: override-fields - Name: - property: override-fields - Orientation: - any: true - Origin: - any: true - OutfitChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - Pivot Offset: - any: true - PivotOffset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - Position: - any: true - ReceiveAge: - property: read-only - Reflectance: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Resize: - args: - - required: false - type: any - - required: false - type: any - method: true - ResizeIncrement: - property: read-only - ResizeableFaces: - property: read-only - RightParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightSurface: - property: override-fields - RightSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RootPriority: - property: override-fields - RotVelocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - Rotation: - any: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetNetworkOwner: - args: - - required: false - type: any - method: true - SetNetworkOwnershipAuto: - args: [] - method: true - Size: - any: true - SpecificGravity: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - StoppedTouching: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - SubtractAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - TopParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopSurface: - property: override-fields - TopSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TouchEnded: - struct: Event - Touched: - struct: Event - Transparency: - property: override-fields - UnionAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Velocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - brickColor: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getMass: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - resize: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - subtractAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - unionAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Camera: - '*': - struct: Instance - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - CFrame: - any: true - CameraSubject: - struct: Instance - CameraType: - property: override-fields - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CoordinateFrame: - any: true - deprecated: - message: this property is deprecated. - replace: [] - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - DiagonalFieldOfView: - property: override-fields - FieldOfView: - property: override-fields - FieldOfViewMode: - property: override-fields - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FirstPersonTransition: - struct: Event - Focus: - any: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetLargestCutoffDistance: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetPanSpeed: - args: [] - method: true - GetPartsObscuringTarget: - args: - - required: false - type: any - - required: false - type: any - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - GetRoll: - args: [] - method: true - GetTiltSpeed: - args: [] - method: true - HeadLocked: - property: override-fields - HeadScale: - property: override-fields - Interpolate: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - InterpolationFinished: - struct: Event - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - MaxAxisFieldOfView: - property: override-fields - Name: - property: override-fields - NearPlaneZ: - property: read-only - PanUnits: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ScreenPointToRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetCameraPanMode: - args: - - required: false - type: any - method: true - SetImageServerView: - args: - - required: false - type: any - method: true - SetRoll: - args: - - required: false - type: any - method: true - TiltUnits: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - ViewportPointToRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - ViewportSize: - any: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WorldToScreenPoint: - args: - - required: false - type: any - method: true - WorldToViewportPoint: - args: - - required: false - type: any - method: true - Zoom: - args: - - required: false - type: any - method: true - ZoomToExtents: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - focus: - any: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - DataModel: - '*': - struct: Instance - AllowedGearTypeChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - BindToClose: - args: - - required: false - type: any - method: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - Close: - struct: Event - CloseLate: - struct: Event - CreatorId: - property: read-only - CreatorType: - property: read-only - DefineFastFlag: - args: - - required: false - type: any - - required: false - type: any - method: true - DefineFastInt: - args: - - required: false - type: any - - required: false - type: any - method: true - DefineFastString: - args: - - required: false - type: any - - required: false - type: any - method: true - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FindService: - args: - - required: false - type: any - method: true - GameId: - property: read-only - GearGenreSetting: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - Genre: - property: read-only - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetEngineFeature: - args: - - required: false - type: any - method: true - GetFastFlag: - args: - - required: false - type: any - method: true - GetFastInt: - args: - - required: false - type: any - method: true - GetFastString: - args: - - required: false - type: any - method: true - GetFullName: - args: [] - method: true - GetJobsInfo: - args: [] - method: true - GetMessage: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetObjects: - args: - - required: false - type: any - method: true - GetObjectsAllOrNone: - args: - - required: false - type: any - - required: false - type: any - method: true - GetObjectsAsync: - args: - - required: false - type: any - method: true - GetObjectsList: - args: - - required: false - type: any - method: true - GetPlaySessionId: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRemoteBuildMode: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetService: - args: - - type: - - AdService - - AnalyticsService - - AnimationClipProvider - - AnimationFromVideoCreatorService - - AnimationFromVideoCreatorStudioService - - AppUpdateService - - AssetCounterService - - AssetDeliveryProxy - - AssetImportService - - AssetManagerService - - AssetService - - AvatarEditorService - - AvatarImportService - - BadgeService - - CoreGui - - StarterGui - - BrowserService - - BulkImportService - - CacheableContentProvider - - HSRDataContentProvider - - MeshContentProvider - - SolidModelContentProvider - - CalloutService - - ChangeHistoryService - - Chat - - ClusterPacketCache - - CollectionService - - CommandService - - ConfigureServerService - - ContentProvider - - ContextActionService - - ControllerService - - CookiesService - - CorePackages - - CoreScriptDebuggingManagerHelper - - CoreScriptSyncService - - CrossDMScriptChangeListener - - DataModelPatchService - - DataStoreService - - Debris - - DebuggablePluginWatcher - - DebuggerConnectionManager - - DebuggerManager - - DebuggerUIService - - DeviceIdService - - DraftsService - - DraggerService - - EventIngestService - - ExperienceAuthService - - FaceAnimatorService - - FacialAnimationRecordingService - - FacialAnimationStreamingService - - FacialAnimationStreamingServiceV2 - - FlagStandService - - FlyweightService - - CSGDictionaryService - - NonReplicatedCSGDictionaryService - - FriendService - - GamePassService - - GamepadService - - Geometry - - GoogleAnalyticsConfiguration - - GroupService - - GuiService - - GuidRegistryService - - HapticService - - HeightmapImporterService - - Hopper - - HttpRbxApiService - - HttpService - - ILegacyStudioBridge - - LegacyStudioBridge - - IXPService - - IncrementalPatchBuilder - - InsertService - - JointsService - - KeyboardService - - KeyframeSequenceProvider - - LSPFileSyncService - - LanguageService - - Lighting - - LiveScriptingService - - LocalStorageService - - AppStorageService - - UserStorageService - - LocalizationService - - LodDataService - - LogService - - LoginService - - LuaWebService - - LuauScriptAnalyzerService - - MarketplaceService - - MaterialGenerationService - - MaterialService - - MemStorageService - - MemoryStoreService - - MessageBusService - - MessagingService - - MetaBreakpointManager - - MouseService - - NetworkClient - - NetworkServer - - NetworkSettings - - NotificationService - - Workspace - - PackageService - - PackageUIService - - PatchBundlerFileWatch - - PathfindingService - - PermissionsService - - PhysicsService - - PlayerEmulatorService - - Players - - PluginDebugService - - PluginGuiService - - PluginManagementService - - PluginPolicyService - - PointsService - - PolicyService - - ProcessInstancePhysicsService - - ProximityPromptService - - PublishService - - RbxAnalyticsService - - RemoteCursorService - - RemoteDebuggerServer - - RenderSettings - - ReplicatedFirst - - ReplicatedStorage - - RobloxPluginGuiService - - RobloxReplicatedStorage - - RtMessagingService - - RunService - - RuntimeScriptService - - SafetyService - - ScriptChangeService - - ScriptCloneWatcher - - ScriptCloneWatcherHelper - - ScriptContext - - ScriptEditorService - - ScriptRegistrationService - - ScriptService - - Selection - - SelectionHighlightManager - - ServerScriptService - - ServerStorage - - ServiceVisibilityService - - SessionService - - SharedTableRegistry - - ShorelineUpgraderService - - SmoothVoxelsUpgraderService - - SnippetService - - SocialService - - SoundService - - SpawnerService - - StarterPack - - StarterPlayer - - Stats - - Studio - - StudioAssetService - - StudioData - - StudioDeviceEmulatorService - - StudioPublishService - - StudioScriptDebugEventListener - - StudioSdkService - - StudioService - - TaskScheduler - - TeamCreateData - - TeamCreatePublishService - - TeamCreateService - - Teams - - TeleportService - - TemporaryCageMeshProvider - - TemporaryScriptService - - TestService - - TextBoxService - - TextChatService - - TextService - - ThirdPartyUserService - - TimerService - - ToastNotificationService - - TouchInputService - - TracerService - - TweenService - - UGCValidationService - - UnvalidatedAssetService - - UserInputService - - UserService - - VRService - - VersionControlService - - VideoCaptureService - - VirtualInputManager - - VirtualUser - - VisibilityCheckDispatcher - - VisibilityService - - Visit - - VoiceChatInternal - - VoiceChatService - method: true - must_use: true - GraphicsQualityChangeRequest: - struct: Event - HttpGetAsync: - args: - - required: false - type: any - - required: false - type: any - method: true - HttpPostAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - InsertObjectsAndJoinIfLegacyAsync: - args: - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsContentLoaded: - args: [] - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGearTypeAllowed: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IsLoaded: - args: [] - method: true - IsUniverseMetadataLoaded: - args: [] - method: true - ItemChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - JobId: - property: read-only - Load: - args: - - required: false - type: any - method: true - Loaded: - struct: Event - Name: - property: override-fields - OnClose: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - OpenScreenshotsFolder: - args: [] - method: true - OpenVideosFolder: - args: [] - method: true - Parent: - struct: Instance - PlaceId: - property: read-only - PlaceVersion: - property: read-only - PrivateServerId: - property: read-only - PrivateServerOwnerId: - property: read-only - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ReportInGoogleAnalytics: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SavePlace: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - ScreenshotReady: - struct: Event - ScreenshotSavedToAlbum: - struct: Event - ServiceAdded: - struct: Event - ServiceRemoving: - struct: Event - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastFlagForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastIntForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastStringForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetIsLoaded: - args: - - required: false - type: any - - required: false - type: any - method: true - SetPlaceId: - args: - - required: false - type: any - method: true - SetUniverseId: - args: - - required: false - type: any - method: true - Shutdown: - args: [] - method: true - UniverseMetadataLoaded: - struct: Event - VIPServerId: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - VIPServerOwnerId: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - Workspace: - struct: Workspace - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getService: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - lighting: - struct: Instance - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - service: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - workspace: - struct: Workspace - deprecated: - message: this property is deprecated. - replace: [] - EnumItem: - Name: - property: read-only - Value: - property: read-only - Event: - Connect: - args: - - type: function - method: true - Once: - args: - - type: function - method: true - Wait: - args: [] - method: true - connect: - args: - - type: function - method: true - deprecated: - message: lowercase methods have been superceded by uppercase ones - replace: - - Connect(%1) - wait: - args: - - type: function - method: true - deprecated: - message: lowercase methods have been superceded by uppercase ones - replace: - - Wait(%1) - Instance: - '*': - any: true - Plugin: - '*': - struct: Instance - Activate: - args: - - required: false - type: any - method: true - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionEnabled: - property: read-only - CreateDockWidgetPluginGui: - args: - - required: false - type: any - - required: false - type: any - method: true - CreatePluginAction: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CreatePluginMenu: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CreateQWidgetPluginGui: - args: - - required: false - type: any - - required: false - type: any - method: true - CreateToolbar: - args: - - required: false - type: any - method: true - Deactivate: - args: [] - method: true - Deactivation: - struct: Event - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - GetJoinMode: - args: [] - method: true - GetMouse: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetSelectedRibbonTool: - args: [] - method: true - GetSetting: - args: - - required: false - type: any - method: true - GetStudioUserId: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GridSize: - property: read-only - ImportFbxAnimation: - args: - - required: false - type: any - - required: false - type: any - method: true - ImportFbxRig: - args: - - required: false - type: any - method: true - Intersect: - args: - - required: false - type: any - method: true - Invoke: - args: - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsActivated: - args: [] - method: true - IsActivatedWithExclusiveMouse: - args: [] - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - Name: - property: override-fields - Negate: - args: - - required: false - type: any - method: true - OnInvoke: - args: - - required: false - type: any - - required: false - type: any - method: true - OnSetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - OpenScript: - args: - - required: false - type: any - - required: false - type: any - method: true - OpenWikiPage: - args: - - required: false - type: any - method: true - Parent: - struct: Instance - PauseSound: - args: - - required: false - type: any - method: true - PlaySound: - args: - - required: false - type: any - - required: false - type: any - method: true - ProcessAssetInsertionDrag: - property: override-fields - ProcessAssetInsertionDrop: - property: override-fields - PromptForExistingAssetId: - args: - - required: false - type: any - method: true - PromptSaveSelection: - args: - - required: false - type: any - method: true - Ready: - struct: Event - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ResumeSound: - args: - - required: false - type: any - method: true - SaveSelectedToRoblox: - args: [] - method: true - SelectRibbonTool: - args: - - required: false - type: any - - required: false - type: any - method: true - Separate: - args: - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - SetReady: - args: [] - method: true - SetSetting: - args: - - required: false - type: any - - required: false - type: any - method: true - StartDecalDrag: - args: - - required: false - type: any - method: true - StartDrag: - args: - - required: false - type: any - method: true - StopAllSounds: - args: [] - method: true - Union: - args: - - required: false - type: any - method: true - Unloading: - struct: Event - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Script: - '*': - struct: Instance - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CurrentEditor: - struct: Instance - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Disabled: - property: override-fields - Enabled: - property: override-fields - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetHash: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - LinkedSource: - property: override-fields - Name: - property: override-fields - Parent: - struct: Instance - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Terrain: - '*': - struct: Instance - AncestryChanged: - struct: Event - Anchored: - property: override-fields - ApplyAngularImpulse: - args: - - required: false - type: any - method: true - ApplyImpulse: - args: - - required: false - type: any - method: true - ApplyImpulseAtPosition: - args: - - required: false - type: any - - required: false - type: any - method: true - Archivable: - property: override-fields - AssemblyAngularVelocity: - any: true - AssemblyCenterOfMass: - any: true - AssemblyLinearVelocity: - any: true - AssemblyMass: - property: read-only - AssemblyRootPart: - struct: BasePart - AttributeChanged: - struct: Event - AutowedgeCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - AutowedgeCells: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - BackParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackSurface: - property: override-fields - BackSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomSurface: - property: override-fields - BottomSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BrickColor: - property: override-fields - CFrame: - any: true - CanCollide: - property: override-fields - CanCollideWith: - args: - - required: false - type: any - method: true - CanQuery: - property: override-fields - CanSetNetworkOwnership: - args: [] - method: true - CanShorelinesBeUpgraded: - args: [] - method: true - CanSmoothVoxelsBeUpgraded: - args: [] - method: true - CanTouch: - property: override-fields - CastShadow: - property: override-fields - CellCenterToWorld: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CellCornerToWorld: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CenterOfMass: - any: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - Clear: - args: [] - method: true - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionGroup: - property: override-fields - CollisionGroupId: - property: override-fields - Color: - property: override-fields - ConvertToSmooth: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - CopyRegion: - args: - - required: false - type: any - method: true - CountCells: - args: [] - method: true - CurrentPhysicalProperties: - property: read-only - CustomPhysicalProperties: - property: override-fields - Decoration: - property: override-fields - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Elasticity: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - ExtentsCFrame: - any: true - ExtentsSize: - any: true - FillBall: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillBlock: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillCylinder: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillWedge: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - Friction: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontSurface: - property: override-fields - FrontSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetChildren: - args: [] - method: true - GetConnectedParts: - args: - - required: false - type: any - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetJoints: - args: [] - method: true - GetMass: - args: [] - method: true - GetMaterialColor: - args: - - required: false - type: any - method: true - GetNetworkOwner: - args: [] - method: true - GetNetworkOwnershipAuto: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetRootPart: - args: [] - method: true - GetTerrainWireframe: - args: - - required: false - type: any - - required: false - type: any - method: true - GetTouchingParts: - args: [] - method: true - GetVelocityAtPosition: - args: - - required: false - type: any - method: true - GetWaterCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IntersectAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGrounded: - args: [] - method: true - IsSmooth: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - LeftParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftSurface: - property: override-fields - LeftSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LocalSimulationTouched: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - LocalTransparencyModifier: - property: override-fields - Locked: - property: override-fields - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Mass: - property: read-only - Massless: - property: override-fields - Material: - property: override-fields - MaterialColors: - property: override-fields - MaterialVariant: - property: override-fields - MaxExtents: - property: read-only - Name: - property: override-fields - Orientation: - any: true - Origin: - any: true - OutfitChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - PasteRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Pivot Offset: - any: true - PivotOffset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - Position: - any: true - ReadVoxels: - args: - - required: false - type: any - - required: false - type: any - method: true - ReceiveAge: - property: read-only - Reflectance: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ReplaceMaterial: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - ReplaceMaterialInTransform: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Resize: - args: - - required: false - type: any - - required: false - type: any - method: true - ResizeIncrement: - property: read-only - ResizeableFaces: - property: read-only - RightParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightSurface: - property: override-fields - RightSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RootPriority: - property: override-fields - RotVelocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - Rotation: - any: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetCells: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetMaterialColor: - args: - - required: false - type: any - - required: false - type: any - method: true - SetMaterialInTransform: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SetNetworkOwner: - args: - - required: false - type: any - method: true - SetNetworkOwnershipAuto: - args: [] - method: true - SetWaterCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - Size: - any: true - SmoothRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SpecificGravity: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - StoppedTouching: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - SubtractAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - TopParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopSurface: - property: override-fields - TopSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TouchEnded: - struct: Event - Touched: - struct: Event - Transparency: - property: override-fields - UnionAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Velocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WaterColor: - property: override-fields - WaterReflectance: - property: override-fields - WaterTransparency: - property: override-fields - WaterWaveSize: - property: override-fields - WaterWaveSpeed: - property: override-fields - WorldToCell: - args: - - required: false - type: any - method: true - WorldToCellPreferEmpty: - args: - - required: false - type: any - method: true - WorldToCellPreferSolid: - args: - - required: false - type: any - method: true - WriteVoxels: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - brickColor: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getMass: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - resize: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - subtractAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - unionAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Workspace: - '*': - struct: Instance - AddPersistentPlayer: - args: - - required: false - type: any - method: true - AllowThirdPartySales: - property: override-fields - AncestryChanged: - struct: Event - Archivable: - property: override-fields - ArePartsTouchingOthers: - args: - - required: false - type: any - - required: false - type: any - method: true - AttributeChanged: - struct: Event - Blockcast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BulkMoveTo: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CacheCurrentTerrain: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpDistance: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpHeight: - args: - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpPower: - args: - - required: false - type: any - - required: false - type: any - method: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - ClearCachedTerrain: - args: - - required: false - type: any - method: true - ClientAnimatorThrottling: - property: override-fields - Clone: - args: [] - method: true - CurrentCamera: - struct: Camera - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - DistributedGameTime: - property: override-fields - ExperimentalSolverIsEnabled: - args: [] - method: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FindPartOnRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartOnRayWithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartOnRayWithWhitelist: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3WithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3WithWhiteList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetBoundingBox: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetExtentsSize: - args: [] - method: true - GetFullName: - args: [] - method: true - GetModelCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetModelSize: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetNumAwakeParts: - args: [] - method: true - GetPartBoundsInBox: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - GetPartBoundsInRadius: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - GetPartsInPart: - args: - - required: false - type: any - - required: false - type: any - method: true - GetPhysicsThrottling: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPrimaryPartCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRealPhysicsFPS: - args: [] - method: true - GetScale: - args: [] - method: true - GetServerTimeNow: - args: [] - method: true - GlobalWind: - any: true - Gravity: - property: override-fields - HumanoidOnlySetCollisionsOnStateChange: - property: override-fields - IKMoveTo: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsRegion3Empty: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IsRegion3EmptyWithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - JoinToOutsiders: - args: - - required: false - type: any - - required: false - type: any - method: true - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - MeshPartHeadsAndAccessories: - property: override-fields - ModelStreamingMode: - property: override-fields - MoveTo: - args: - - required: false - type: any - method: true - Name: - property: override-fields - Origin: - any: true - PGSIsEnabled: - args: [] - method: true - Parent: - struct: Instance - PersistentLoaded: - struct: Event - PhysicsSteppingMethod: - property: override-fields - Pivot Offset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - PrimaryPart: - struct: BasePart - Raycast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - RaycastCachedTerrain: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - RejectCharacterDeletions: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - RemovePersistentPlayer: - args: - - required: false - type: any - method: true - ReplicateInstanceDestroySetting: - property: override-fields - ResetOrientationToIdentity: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Retargeting: - property: override-fields - Scale: - property: override-fields - ScaleTo: - args: - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetIdentityOrientation: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetInsertPoint: - args: - - required: false - type: any - - required: false - type: any - method: true - SetMeshPartHeadsAndAccessories: - args: - - required: false - type: any - method: true - SetPhysicsThrottleEnabled: - args: - - required: false - type: any - method: true - SetPrimaryPartCFrame: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SignalBehavior: - property: override-fields - Spherecast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - StreamOutBehavior: - property: override-fields - StreamingIntegrityMode: - property: override-fields - StreamingMinRadius: - property: override-fields - StreamingTargetRadius: - property: override-fields - Terrain: - struct: Terrain - TouchesUseCollisionGroups: - property: override-fields - TranslateBy: - args: - - required: false - type: any - method: true - UnjoinFromOutsiders: - args: - - required: false - type: any - method: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WorldPivot: - any: true - ZoomToExtents: - args: [] - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - findPartOnRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - findPartsInRegion3: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - move: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - moveTo: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] -last_updated: 1681227519 -last_selene_version: 0.25.0 -roblox_classes: - Accessory: - superclass: Accoutrement - events: [] - properties: - - AccessoryType - Accoutrement: - superclass: Instance - events: [] - properties: - - AttachmentForward - - AttachmentPoint - - AttachmentPos - - AttachmentRight - - AttachmentUp - Actor: - superclass: Model - events: [] - properties: [] - AdGui: - superclass: SurfaceGuiBase - events: [] - properties: - - AdShape - - Status - AdPortal: - superclass: Instance - events: [] - properties: - - PortalInvalidReason - - PortalStatus - - PortalVersion - - Status - AdService: - superclass: Instance - events: - - AdTeleportEnded - - AdTeleportInitiated - - VideoAdClosed - properties: [] - AdvancedDragger: - superclass: Instance - events: [] - properties: [] - AirController: - superclass: ControllerBase - events: [] - properties: - - MaintainAngularMomentum - - MaintainLinearMomentum - - MoveMaxForce - - OrientationMaxTorque - - OrientationSpeedFactor - - VectorForce - AlignOrientation: - superclass: Constraint - events: [] - properties: - - AlignType - - CFrame - - MaxAngularVelocity - - MaxTorque - - Mode - - PrimaryAxis - - PrimaryAxisOnly - - ReactionTorqueEnabled - - Responsiveness - - RigidityEnabled - - SecondaryAxis - AlignPosition: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - MaxForce - - MaxVelocity - - Mode - - Position - - ReactionForceEnabled - - Responsiveness - - RigidityEnabled - AnalysticsSettings: - superclass: GenericSettings - events: [] - properties: [] - AnalyticsService: - superclass: Instance - events: [] - properties: - - ApiKey - AngularVelocity: - superclass: Constraint - events: [] - properties: - - AngularVelocity - - MaxTorque - - ReactionTorqueEnabled - - RelativeTo - Animation: - superclass: Instance - events: [] - properties: - - AnimationId - AnimationClip: - superclass: Instance - events: [] - properties: - - Guid - - Loop - - Priority - AnimationClipProvider: - superclass: Instance - events: [] - properties: [] - AnimationConstraint: - superclass: Constraint - events: [] - properties: - - IsKinematic - - MaxForce - - MaxTorque - - Transform - AnimationController: - superclass: Instance - events: - - AnimationPlayed - properties: [] - AnimationFromVideoCreatorService: - superclass: Instance - events: [] - properties: [] - AnimationFromVideoCreatorStudioService: - superclass: Instance - events: [] - properties: [] - AnimationRigData: - superclass: Instance - events: [] - properties: [] - AnimationStreamTrack: - superclass: Instance - events: - - Stopped - properties: - - Animation - - IsPlaying - - Priority - - WeightCurrent - - WeightTarget - AnimationTrack: - superclass: Instance - events: - - DidLoop - - Ended - - KeyframeReached - - Stopped - properties: - - Animation - - IsPlaying - - Length - - Looped - - Priority - - Speed - - TimePosition - - WeightCurrent - - WeightTarget - Animator: - superclass: Instance - events: - - AnimationPlayed - - AnimationPlayedCoreScript - - AnimationStreamTrackPlayed - properties: - - EvaluationThrottled - - PreferLodEnabled - AppStorageService: - superclass: LocalStorageService - events: [] - properties: [] - AppUpdateService: - superclass: Instance - events: [] - properties: [] - ArcHandles: - superclass: HandlesBase - events: - - MouseButton1Down - - MouseButton1Up - - MouseDrag - - MouseEnter - - MouseLeave - properties: - - Axes - AssetCounterService: - superclass: Instance - events: [] - properties: [] - AssetDeliveryProxy: - superclass: Instance - events: [] - properties: - - Interface - - Port - - StartServer - AssetImportService: - superclass: Instance - events: [] - properties: [] - AssetImportSession: - superclass: Instance - events: - - UploadComplete - - UploadCompleteDeprecated - - UploadProgress - properties: [] - AssetManagerService: - superclass: Instance - events: - - AssetImportedSignal - - ImportSessionFinished - - ImportSessionStarted - - MayBeLinkedSourceModified - properties: [] - AssetPatchSettings: - superclass: Instance - events: [] - properties: - - ContentId - - OutputPath - - PatchId - AssetService: - superclass: Instance - events: - - OpenPublishResultModal - properties: [] - AssetSoundEffect: - superclass: CustomSoundEffect - events: [] - properties: [] - Atmosphere: - superclass: Instance - events: [] - properties: - - Color - - Decay - - Density - - Glare - - Haze - - Offset - Attachment: - superclass: Instance - events: [] - properties: - - Axis - - CFrame - - Orientation - - Position - - Rotation - - SecondaryAxis - - Visible - - WorldAxis - - WorldCFrame - - WorldOrientation - - WorldPosition - - WorldRotation - - WorldSecondaryAxis - AudioPages: - superclass: Pages - events: [] - properties: [] - AudioSearchParams: - superclass: Instance - events: [] - properties: - - Album - - Artist - - AudioSubtype - - MaxDuration - - MinDuration - - SearchKeyword - - Tag - - Title - AvatarEditorService: - superclass: Instance - events: - - OpenAllowInventoryReadAccess - - OpenPromptCreateOufit - - OpenPromptDeleteOutfit - - OpenPromptRenameOutfit - - OpenPromptSaveAvatar - - OpenPromptSetFavorite - - OpenPromptUpdateOutfit - - PromptAllowInventoryReadAccessCompleted - - PromptCreateOutfitCompleted - - PromptDeleteOutfitCompleted - - PromptRenameOutfitCompleted - - PromptSaveAvatarCompleted - - PromptSaveAvatarThumbnailCustomizationCompleted - - PromptSetFavoriteCompleted - - PromptUpdateOutfitCompleted - properties: [] - AvatarImportService: - superclass: Instance - events: [] - properties: [] - Backpack: - superclass: Instance - events: [] - properties: [] - BackpackItem: - superclass: Model - events: [] - properties: - - TextureId - BadgeService: - superclass: Instance - events: - - BadgeAwarded - - OnBadgeAwarded - properties: [] - BallSocketConstraint: - superclass: Constraint - events: [] - properties: - - LimitsEnabled - - MaxFrictionTorque - - Radius - - Restitution - - TwistLimitsEnabled - - TwistLowerAngle - - TwistUpperAngle - - UpperAngle - BasePart: - superclass: PVInstance - events: - - LocalSimulationTouched - - OutfitChanged - - StoppedTouching - - TouchEnded - - Touched - properties: - - Anchored - - AssemblyAngularVelocity - - AssemblyCenterOfMass - - AssemblyLinearVelocity - - AssemblyMass - - AssemblyRootPart - - BackParamA - - BackParamB - - BackSurface - - BackSurfaceInput - - BottomParamA - - BottomParamB - - BottomSurface - - BottomSurfaceInput - - BrickColor - - CFrame - - CanCollide - - CanQuery - - CanTouch - - CastShadow - - CenterOfMass - - CollisionGroup - - CollisionGroupId - - Color - - CurrentPhysicalProperties - - CustomPhysicalProperties - - Elasticity - - ExtentsCFrame - - ExtentsSize - - Friction - - FrontParamA - - FrontParamB - - FrontSurface - - FrontSurfaceInput - - LeftParamA - - LeftParamB - - LeftSurface - - LeftSurfaceInput - - LocalTransparencyModifier - - Locked - - Mass - - Massless - - Material - - MaterialVariant - - Orientation - - PivotOffset - - Position - - ReceiveAge - - Reflectance - - ResizeIncrement - - ResizeableFaces - - RightParamA - - RightParamB - - RightSurface - - RightSurfaceInput - - RootPriority - - RotVelocity - - Rotation - - Size - - SpecificGravity - - TopParamA - - TopParamB - - TopSurface - - TopSurfaceInput - - Transparency - - Velocity - - brickColor - BasePlayerGui: - superclass: Instance - events: [] - properties: [] - BaseScript: - superclass: LuaSourceContainer - events: [] - properties: - - Disabled - - Enabled - - LinkedSource - - RunContext - BaseWrap: - superclass: Instance - events: [] - properties: - - CageMeshId - - CageOrigin - - CageOriginWorld - - HSRAssetId - - ImportOrigin - - ImportOriginWorld - Beam: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - Brightness - - Color - - CurveSize0 - - CurveSize1 - - Enabled - - FaceCamera - - LightEmission - - LightInfluence - - Segments - - Texture - - TextureLength - - TextureMode - - TextureSpeed - - Transparency - - Width0 - - Width1 - - ZOffset - BevelMesh: - superclass: DataModelMesh - events: [] - properties: [] - BillboardGui: - superclass: LayerCollector - events: [] - properties: - - Active - - Adornee - - AlwaysOnTop - - Brightness - - ClipsDescendants - - CurrentDistance - - DistanceLowerLimit - - DistanceStep - - DistanceUpperLimit - - ExtentsOffset - - ExtentsOffsetWorldSpace - - LightInfluence - - MaxDistance - - PlayerToHideFrom - - Size - - SizeOffset - - StudsOffset - - StudsOffsetWorldSpace - BinaryStringValue: - superclass: ValueBase - events: - - Changed - properties: [] - BindableEvent: - superclass: Instance - events: - - Event - properties: [] - BindableFunction: - superclass: Instance - events: [] - properties: [] - BlockMesh: - superclass: BevelMesh - events: [] - properties: [] - BloomEffect: - superclass: PostEffect - events: [] - properties: - - Intensity - - Size - - Threshold - BlurEffect: - superclass: PostEffect - events: [] - properties: - - Size - BodyAngularVelocity: - superclass: BodyMover - events: [] - properties: - - AngularVelocity - - MaxTorque - - P - - angularvelocity - - maxTorque - BodyColors: - superclass: CharacterAppearance - events: [] - properties: - - HeadColor - - HeadColor3 - - LeftArmColor - - LeftArmColor3 - - LeftLegColor - - LeftLegColor3 - - RightArmColor - - RightArmColor3 - - RightLegColor - - RightLegColor3 - - TorsoColor - - TorsoColor3 - BodyForce: - superclass: BodyMover - events: [] - properties: - - Force - - force - BodyGyro: - superclass: BodyMover - events: [] - properties: - - CFrame - - D - - MaxTorque - - P - - cframe - - maxTorque - BodyMover: - superclass: Instance - events: [] - properties: [] - BodyPosition: - superclass: BodyMover - events: - - ReachedTarget - properties: - - D - - MaxForce - - P - - Position - - maxForce - - position - BodyThrust: - superclass: BodyMover - events: [] - properties: - - Force - - Location - - force - - location - BodyVelocity: - superclass: BodyMover - events: [] - properties: - - MaxForce - - P - - Velocity - - maxForce - - velocity - Bone: - superclass: Attachment - events: [] - properties: - - Transform - - TransformedCFrame - - TransformedWorldCFrame - BoolValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - BoxHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Size - Breakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - Enabled - - Id - - Line - - LogMessage - - MetaBreakpointId - - Script - - Valid - - Verified - BrickColorValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - BrowserService: - superclass: Instance - events: - - AuthCookieCopiedToEngine - - BrowserWindowClosed - - BrowserWindowWillNavigate - - JavaScriptCallback - properties: [] - BubbleChatConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AdorneeName - - BackgroundColor3 - - BackgroundTransparency - - BubbleDuration - - BubblesSpacing - - Enabled - - Font - - FontFace - - LocalPlayerStudsOffset - - MaxDistance - - MinimizeDistance - - TextColor3 - - TextSize - - VerticalStudsOffset - BulkImportService: - superclass: Instance - events: - - AssetImported - - BulkImportFinished - - BulkImportStarted - properties: [] - BuoyancySensor: - superclass: SensorBase - events: [] - properties: - - FullySubmerged - - TouchingSurface - CFrameValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - CSGDictionaryService: - superclass: FlyweightService - events: [] - properties: [] - CacheableContentProvider: - superclass: Instance - events: [] - properties: [] - CalloutService: - superclass: Instance - events: [] - properties: [] - Camera: - superclass: Instance - events: - - FirstPersonTransition - - InterpolationFinished - properties: - - CFrame - - CameraSubject - - CameraType - - CoordinateFrame - - DiagonalFieldOfView - - FieldOfView - - FieldOfViewMode - - Focus - - HeadLocked - - HeadScale - - MaxAxisFieldOfView - - NearPlaneZ - - ViewportSize - - focus - CanvasGroup: - superclass: GuiObject - events: [] - properties: - - GroupColor3 - - GroupTransparency - CatalogPages: - superclass: Pages - events: [] - properties: [] - ChangeHistoryService: - superclass: Instance - events: - - OnRedo - - OnUndo - properties: [] - ChannelSelectorSoundEffect: - superclass: CustomSoundEffect - events: [] - properties: - - Channel - CharacterAppearance: - superclass: Instance - events: [] - properties: [] - CharacterMesh: - superclass: CharacterAppearance - events: [] - properties: - - BaseTextureId - - BodyPart - - MeshId - - OverlayTextureId - Chat: - superclass: Instance - events: - - BubbleChatSettingsChanged - - Chatted - properties: - - BubbleChatEnabled - - LoadDefaultChat - ChatInputBarConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AbsolutePosition - - AbsolutePositionWrite - - AbsoluteSize - - AbsoluteSizeWrite - - BackgroundColor3 - - BackgroundTransparency - - Enabled - - FontFace - - PlaceholderColor3 - - TargetTextChannel - - TextBox - - TextColor3 - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - ChatWindowConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AbsolutePosition - - AbsolutePositionWrite - - AbsoluteSize - - AbsoluteSizeWrite - - BackgroundColor3 - - BackgroundTransparency - - Enabled - - FontFace - - HeightScale - - HorizontalAlignment - - TextColor3 - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - VerticalAlignment - - WidthScale - ChorusSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Mix - - Rate - ClickDetector: - superclass: Instance - events: - - MouseClick - - MouseHoverEnter - - MouseHoverLeave - - RightMouseClick - - mouseClick - properties: - - CursorIcon - - MaxActivationDistance - ClientReplicator: - superclass: NetworkReplicator - events: - - RCCProfilerDataComplete - - StatsReceived - properties: [] - ClimbController: - superclass: ControllerBase - events: [] - properties: - - AccelerationTime - - MoveMaxForce - - OrientationMaxTorque - - OrientationSpeedFactor - Clothing: - superclass: CharacterAppearance - events: [] - properties: - - Color3 - CloudLocalizationTable: - superclass: LocalizationTable - events: [] - properties: [] - Clouds: - superclass: Instance - events: [] - properties: - - Color - - Cover - - Density - - Enabled - ClusterPacketCache: - superclass: Instance - events: [] - properties: [] - CollectionService: - superclass: Instance - events: - - ItemAdded - - ItemRemoved - - TagAdded - - TagRemoved - properties: [] - Color3Value: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - ColorCorrectionEffect: - superclass: PostEffect - events: [] - properties: - - Brightness - - Contrast - - Saturation - - TintColor - CommandInstance: - superclass: Instance - events: [] - properties: - - AllowGUIAccessPoints - - Checked - - DefaultShortcut - - DisplayName - - Enabled - - Icon - - Name - - Permission - - StatusTip - CommandService: - superclass: Instance - events: - - CommandExecuting - properties: [] - CompressorSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Attack - - GainMakeup - - Ratio - - Release - - SideChain - - Threshold - ConeHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Height - - Radius - Configuration: - superclass: Instance - events: [] - properties: [] - ConfigureServerService: - superclass: Instance - events: [] - properties: [] - Constraint: - superclass: Instance - events: [] - properties: - - Active - - Attachment0 - - Attachment1 - - Color - - Enabled - - Visible - ContentProvider: - superclass: Instance - events: - - AssetFetchFailed - properties: - - BaseUrl - - RequestQueueSize - ContextActionService: - superclass: Instance - events: - - BoundActionAdded - - BoundActionChanged - - BoundActionRemoved - - GetActionButtonEvent - - LocalToolEquipped - - LocalToolUnequipped - properties: [] - Controller: - superclass: Instance - events: - - ButtonChanged - properties: [] - ControllerBase: - superclass: Instance - events: [] - properties: - - MoveSpeedFactor - - RigidityEnabled - ControllerManager: - superclass: Instance - events: [] - properties: - - ActiveController - - BaseMoveSpeed - - BaseTurnSpeed - - ClimbSensor - - FacingDirection - - GroundSensor - - MovingDirection - ControllerPartSensor: - superclass: ControllerSensor - events: [] - properties: - - HitFrame - - HitNormal - - SearchDistance - - SensedPart - - SensorMode - ControllerSensor: - superclass: SensorBase - events: [] - properties: [] - ControllerService: - superclass: Instance - events: [] - properties: [] - CookiesService: - superclass: Instance - events: [] - properties: [] - CoreGui: - superclass: BasePlayerGui - events: - - UserGuiRenderingChanged - properties: - - SelectionImageObject - - Version - CorePackages: - superclass: Instance - events: [] - properties: [] - CoreScript: - superclass: BaseScript - events: [] - properties: [] - CoreScriptDebuggingManagerHelper: - superclass: Instance - events: [] - properties: [] - CoreScriptSyncService: - superclass: Instance - events: [] - properties: [] - CornerWedgePart: - superclass: BasePart - events: [] - properties: [] - CrossDMScriptChangeListener: - superclass: Instance - events: - - GuidLineContentsChanged - - GuidNameChanged - properties: [] - CurveAnimation: - superclass: AnimationClip - events: [] - properties: [] - CustomEvent: - superclass: Instance - events: - - ReceiverConnected - - ReceiverDisconnected - properties: [] - CustomEventReceiver: - superclass: Instance - events: - - EventConnected - - EventDisconnected - - SourceValueChanged - properties: - - Source - CustomSoundEffect: - superclass: SoundEffect - events: [] - properties: [] - CylinderHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Angle - - Height - - InnerRadius - - Radius - CylinderMesh: - superclass: BevelMesh - events: [] - properties: [] - CylindricalConstraint: - superclass: SlidingBallConstraint - events: [] - properties: - - AngularActuatorType - - AngularLimitsEnabled - - AngularResponsiveness - - AngularRestitution - - AngularSpeed - - AngularVelocity - - CurrentAngle - - InclinationAngle - - LowerAngle - - MotorMaxAngularAcceleration - - MotorMaxTorque - - RotationAxisVisible - - ServoMaxTorque - - TargetAngle - - UpperAngle - - WorldRotationAxis - DataModel: - superclass: ServiceProvider - events: - - AllowedGearTypeChanged - - GraphicsQualityChangeRequest - - ItemChanged - - Loaded - - ScreenshotReady - - ScreenshotSavedToAlbum - - UniverseMetadataLoaded - properties: - - CreatorId - - CreatorType - - GameId - - GearGenreSetting - - Genre - - IsSFFlagsLoaded - - JobId - - PlaceId - - PlaceVersion - - PrivateServerId - - PrivateServerOwnerId - - VIPServerId - - VIPServerOwnerId - - Workspace - - lighting - - workspace - DataModelMesh: - superclass: Instance - events: [] - properties: - - Offset - - Scale - - VertexColor - DataModelPatchService: - superclass: Instance - events: [] - properties: [] - DataModelSession: - superclass: Instance - events: - - CurrentDataModelTypeAboutToChange - - CurrentDataModelTypeChanged - - DataModelCreated - - DataModelWillBeDestroyed - properties: - - CurrentDataModelType - - SessionId - DataStore: - superclass: GlobalDataStore - events: [] - properties: [] - DataStoreIncrementOptions: - superclass: Instance - events: [] - properties: [] - DataStoreInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - DataStoreName - - UpdatedTime - DataStoreKey: - superclass: Instance - events: [] - properties: - - KeyName - DataStoreKeyInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - UpdatedTime - - Version - DataStoreKeyPages: - superclass: Pages - events: [] - properties: - - Cursor - DataStoreListingPages: - superclass: Pages - events: [] - properties: - - Cursor - DataStoreObjectVersionInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - IsDeleted - - Version - DataStoreOptions: - superclass: Instance - events: [] - properties: - - AllScopes - DataStorePages: - superclass: Pages - events: [] - properties: [] - DataStoreService: - superclass: Instance - events: [] - properties: - - AutomaticRetry - - LegacyNamingScheme - DataStoreSetOptions: - superclass: Instance - events: [] - properties: [] - DataStoreVersionPages: - superclass: Pages - events: [] - properties: [] - Debris: - superclass: Instance - events: [] - properties: - - MaxItems - DebugSettings: - superclass: Instance - events: [] - properties: - - DataModel - - InstanceCount - - IsScriptStackTracingEnabled - - JobCount - - PlayerCount - - ReportSoundWarnings - - RobloxVersion - - TickCountPreciseOverride - DebuggablePluginWatcher: - superclass: Instance - events: [] - properties: [] - DebuggerBreakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - IsEnabled - - Line - - LogExpression - - isContextDependentBreakpoint - DebuggerConnection: - superclass: Instance - events: - - BreakpointAdded - - BreakpointChanged - - BreakpointRemoved - - Paused - - Resumed - properties: - - ErrorMessage - - HasError - - Id - - IsPaused - DebuggerConnectionManager: - superclass: Instance - events: - - ConnectionEnded - - ConnectionStarted - - FocusChanged - properties: - - Timeout - DebuggerLuaResponse: - superclass: Instance - events: [] - properties: - - IsError - - IsSuccess - - Message - - RequestId - - Status - DebuggerManager: - superclass: Instance - events: - - DebuggerAdded - - DebuggerRemoved - properties: - - DebuggingEnabled - DebuggerUIService: - superclass: Instance - events: - - ExpressionAdded - properties: [] - DebuggerVariable: - superclass: Instance - events: [] - properties: - - Name - - Populated - - Type - - Value - - VariableId - - VariablesCount - DebuggerWatch: - superclass: Instance - events: [] - properties: - - Expression - Decal: - superclass: FaceInstance - events: [] - properties: - - Color3 - - LocalTransparencyModifier - - Shiny - - Specular - - Texture - - Transparency - - ZIndex - DepthOfFieldEffect: - superclass: PostEffect - events: [] - properties: - - FarIntensity - - FocusDistance - - InFocusRadius - - NearIntensity - DeviceIdService: - superclass: Instance - events: [] - properties: [] - Dialog: - superclass: Instance - events: - - DialogChoiceSelected - properties: - - BehaviorType - - ConversationDistance - - GoodbyeChoiceActive - - GoodbyeDialog - - InUse - - InitialPrompt - - Purpose - - Tone - - TriggerDistance - - TriggerOffset - DialogChoice: - superclass: Instance - events: [] - properties: - - GoodbyeChoiceActive - - GoodbyeDialog - - ResponseDialog - - UserDialog - DistortionSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Level - DockWidgetPluginGui: - superclass: PluginGui - events: [] - properties: - - HostWidgetWasRestored - DoubleConstrainedValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - ConstrainedValue - - MaxValue - - MinValue - - Value - DraftsService: - superclass: Instance - events: - - CommitStatusChanged - - DraftAdded - - DraftRemoved - - DraftStatusChanged - - EditorsListChanged - - UpdateStatusChanged - properties: [] - Dragger: - superclass: Instance - events: [] - properties: [] - DraggerService: - superclass: Instance - events: [] - properties: - - AlignDraggedObjects - - AngleSnapEnabled - - AngleSnapIncrement - - AnimateHover - - CollisionsEnabled - - DraggerCoordinateSpace - - DraggerMovementMode - - GeometrySnapColor - - HoverAnimateFrequency - - HoverLineThickness - - HoverThickness - - JointsEnabled - - LinearSnapEnabled - - LinearSnapIncrement - - PivotSnapToGeometry - - ShowHover - - ShowPivotIndicator - DynamicRotate: - superclass: JointInstance - events: [] - properties: - - BaseAngle - EchoSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Delay - - DryLevel - - Feedback - - WetLevel - EmotesPages: - superclass: InventoryPages - events: [] - properties: [] - EqualizerSoundEffect: - superclass: SoundEffect - events: [] - properties: - - HighGain - - LowGain - - MidGain - EulerRotationCurve: - superclass: Instance - events: [] - properties: - - RotationOrder - EventIngestService: - superclass: Instance - events: [] - properties: [] - ExperienceAuthService: - superclass: Instance - events: - - OpenAuthPrompt - properties: [] - ExperienceInviteOptions: - superclass: Instance - events: [] - properties: - - InviteMessageId - - InviteUser - - LaunchData - - PromptMessage - Explosion: - superclass: Instance - events: - - Hit - properties: - - BlastPressure - - BlastRadius - - DestroyJointRadiusPercent - - ExplosionType - - Position - - TimeScale - - Visible - FaceAnimatorService: - superclass: Instance - events: - - TrackerError - - TrackerPrompt - properties: - - AudioAnimationEnabled - - FlipHeadOrientation - - VideoAnimationEnabled - FaceControls: - superclass: Instance - events: [] - properties: - - ChinRaiser - - ChinRaiserUpperLip - - Corrugator - - EyesLookDown - - EyesLookLeft - - EyesLookRight - - EyesLookUp - - FlatPucker - - Funneler - - JawDrop - - JawLeft - - JawRight - - LeftBrowLowerer - - LeftCheekPuff - - LeftCheekRaiser - - LeftDimpler - - LeftEyeClosed - - LeftEyeUpperLidRaiser - - LeftInnerBrowRaiser - - LeftLipCornerDown - - LeftLipCornerPuller - - LeftLipStretcher - - LeftLowerLipDepressor - - LeftNoseWrinkler - - LeftOuterBrowRaiser - - LeftUpperLipRaiser - - LipPresser - - LipsTogether - - LowerLipSuck - - MouthLeft - - MouthRight - - Pucker - - RightBrowLowerer - - RightCheekPuff - - RightCheekRaiser - - RightDimpler - - RightEyeClosed - - RightEyeUpperLidRaiser - - RightInnerBrowRaiser - - RightLipCornerDown - - RightLipCornerPuller - - RightLipStretcher - - RightLowerLipDepressor - - RightNoseWrinkler - - RightOuterBrowRaiser - - RightUpperLipRaiser - - TongueDown - - TongueOut - - TongueUp - - UpperLipSuck - FaceInstance: - superclass: Instance - events: [] - properties: - - Face - FacialAnimationRecordingService: - superclass: Instance - events: [] - properties: - - BiometricDataConsent - FacialAnimationStreamingService: - superclass: Instance - events: [] - properties: - - EnableFlags - - Enabled - FacialAnimationStreamingServiceStats: - superclass: Instance - events: - - isStreamingFacsUpdated - properties: [] - FacialAnimationStreamingServiceV2: - superclass: Instance - events: [] - properties: - - ServiceState - Feature: - superclass: Instance - events: [] - properties: - - FaceId - - InOut - - LeftRight - - TopBottom - File: - superclass: Instance - events: [] - properties: - - Size - FileMesh: - superclass: DataModelMesh - events: [] - properties: - - MeshId - - TextureId - Fire: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - Heat - - SecondaryColor - - Size - - TimeScale - - size - Flag: - superclass: Tool - events: [] - properties: - - TeamColor - FlagStand: - superclass: Part - events: - - FlagCaptured - properties: - - TeamColor - FlagStandService: - superclass: Instance - events: [] - properties: [] - FlangeSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Mix - - Rate - FloatCurve: - superclass: Instance - events: [] - properties: - - Length - FloorWire: - superclass: GuiBase3d - events: [] - properties: - - CycleOffset - - From - - StudsBetweenTextures - - Texture - - TextureSize - - To - - Velocity - - WireRadius - FlyweightService: - superclass: Instance - events: [] - properties: [] - Folder: - superclass: Instance - events: [] - properties: [] - ForceField: - superclass: Instance - events: [] - properties: - - Visible - FormFactorPart: - superclass: BasePart - events: [] - properties: - - FormFactor - - formFactor - Frame: - superclass: GuiObject - events: [] - properties: - - Style - FriendPages: - superclass: Pages - events: [] - properties: [] - FriendService: - superclass: Instance - events: - - FriendsUpdated - properties: [] - FunctionalTest: - superclass: Instance - events: [] - properties: - - Description - GamePassService: - superclass: Instance - events: [] - properties: [] - GameSettings: - superclass: Instance - events: - - VideoRecordingChangeRequest - properties: - - VideoCaptureEnabled - - VideoRecording - GamepadService: - superclass: Instance - events: - - GamepadThumbstick1Changed - properties: - - GamepadCursorEnabled - GenericSettings: - superclass: ServiceProvider - events: [] - properties: [] - Geometry: - superclass: Instance - events: [] - properties: [] - GetTextBoundsParams: - superclass: Instance - events: [] - properties: - - Font - - Size - - Text - - Width - GlobalDataStore: - superclass: Instance - events: [] - properties: [] - GlobalSettings: - superclass: GenericSettings - events: [] - properties: [] - Glue: - superclass: JointInstance - events: [] - properties: - - F0 - - F1 - - F2 - - F3 - GoogleAnalyticsConfiguration: - superclass: Instance - events: [] - properties: [] - GroundController: - superclass: ControllerBase - events: [] - properties: - - AccelerationLean - - AccelerationTime - - AlignSpeed - - AlignTorque - - DecelerationTime - - Friction - - FrictionWeight - - GroundOffset - - StandForce - - StandSpeed - - TurningFactor - GroupService: - superclass: Instance - events: [] - properties: [] - GuiBase: - superclass: Instance - events: [] - properties: [] - GuiBase2d: - superclass: GuiBase - events: - - SelectionChanged - properties: - - AbsolutePosition - - AbsoluteRotation - - AbsoluteSize - - AutoLocalize - - ClippedRect - - IsNotOccluded - - Localize - - RawRect2D - - RootLocalizationTable - - SelectionBehaviorDown - - SelectionBehaviorLeft - - SelectionBehaviorRight - - SelectionBehaviorUp - - SelectionGroup - - TotalGroupScale - GuiBase3d: - superclass: GuiBase - events: [] - properties: - - Color - - Color3 - - Transparency - - Visible - GuiButton: - superclass: GuiObject - events: - - Activated - - MouseButton1Click - - MouseButton1Down - - MouseButton1Up - - MouseButton2Click - - MouseButton2Down - - MouseButton2Up - properties: - - AutoButtonColor - - Modal - - Selected - - Style - GuiLabel: - superclass: GuiObject - events: [] - properties: [] - GuiMain: - superclass: ScreenGui - events: [] - properties: [] - GuiObject: - superclass: GuiBase2d - events: - - DragBegin - - DragStopped - - InputBegan - - InputChanged - - InputEnded - - MouseEnter - - MouseLeave - - MouseMoved - - MouseWheelBackward - - MouseWheelForward - - SelectionGained - - SelectionLost - - TouchLongPress - - TouchPan - - TouchPinch - - TouchRotate - - TouchSwipe - - TouchTap - properties: - - Active - - AnchorPoint - - AutomaticSize - - BackgroundColor - - BackgroundColor3 - - BackgroundTransparency - - BorderColor - - BorderColor3 - - BorderMode - - BorderSizePixel - - ClipsDescendants - - Draggable - - LayoutOrder - - NextSelectionDown - - NextSelectionLeft - - NextSelectionRight - - NextSelectionUp - - Position - - Rotation - - Selectable - - SelectionImageObject - - SelectionOrder - - Size - - SizeConstraint - - Transparency - - Visible - - ZIndex - GuiService: - superclass: Instance - events: - - BrowserWindowClosed - - CloseInspectMenuRequest - - CoreGuiRenderOverflowed - - EmotesMenuOpenChanged - - ErrorMessageChanged - - GuiVisibilityChangedSignal - - InspectMenuEnabledChangedSignal - - InspectPlayerFromHumanoidDescriptionRequest - - InspectPlayerFromUserIdWithCtxRequest - - KeyPressed - - MenuClosed - - MenuOpened - - NativeClose - - NetworkPausedEnabledChanged - - Open9SliceEditor - - PurchasePromptShown - - SafeZoneOffsetsChanged - - ShowLeaveConfirmation - - SpecialKeyPressed - - UiMessageChanged - properties: - - AutoSelectGuiEnabled - - CoreEffectFolder - - CoreGuiFolder - - CoreGuiNavigationEnabled - - GuiNavigationEnabled - - IsModalDialog - - IsWindows - - MenuIsOpen - - SelectedCoreObject - - SelectedObject - - TouchControlsEnabled - GuidRegistryService: - superclass: Instance - events: [] - properties: [] - HSRDataContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - HandleAdornment: - superclass: PVAdornment - events: - - MouseButton1Down - - MouseButton1Up - - MouseEnter - - MouseLeave - properties: - - AdornCullingMode - - AlwaysOnTop - - CFrame - - SizeRelativeOffset - - ZIndex - Handles: - superclass: HandlesBase - events: - - MouseButton1Down - - MouseButton1Up - - MouseDrag - - MouseEnter - - MouseLeave - properties: - - Faces - - Style - HandlesBase: - superclass: PartAdornment - events: [] - properties: [] - HapticService: - superclass: Instance - events: [] - properties: [] - Hat: - superclass: Accoutrement - events: [] - properties: [] - HeightmapImporterService: - superclass: Instance - events: - - ColormapHasUnknownPixels - - ProgressUpdate - properties: [] - HiddenSurfaceRemovalAsset: - superclass: Instance - events: [] - properties: [] - Highlight: - superclass: Instance - events: [] - properties: - - Adornee - - DepthMode - - Enabled - - FillColor - - FillTransparency - - LineThickness - - OutlineColor - - OutlineTransparency - - ReservedId - HingeConstraint: - superclass: Constraint - events: [] - properties: - - ActuatorType - - AngularResponsiveness - - AngularSpeed - - AngularVelocity - - CurrentAngle - - LimitsEnabled - - LowerAngle - - MotorMaxAcceleration - - MotorMaxTorque - - Radius - - Restitution - - ServoMaxTorque - - TargetAngle - - UpperAngle - Hint: - superclass: Message - events: [] - properties: [] - Hole: - superclass: Feature - events: [] - properties: [] - Hopper: - superclass: Instance - events: [] - properties: [] - HopperBin: - superclass: BackpackItem - events: - - Deselected - - Selected - properties: - - Active - - BinType - HttpRbxApiService: - superclass: Instance - events: [] - properties: [] - HttpRequest: - superclass: Instance - events: [] - properties: [] - HttpService: - superclass: Instance - events: [] - properties: - - HttpEnabled - Humanoid: - superclass: Instance - events: - - AnimationPlayed - - Climbing - - ClusterCompositionFinished - - CustomStatusAdded - - CustomStatusRemoved - - Died - - EmoteTriggered - - FallingDown - - FreeFalling - - GettingUp - - HealthChanged - - Jumping - - MoveToFinished - - PlatformStanding - - Ragdoll - - Running - - Seated - - StateChanged - - StateEnabledChanged - - StatusAdded - - StatusRemoved - - Strafing - - Swimming - - Touched - properties: - - AutoJumpEnabled - - AutoRotate - - AutomaticScalingEnabled - - BreakJointsOnDeath - - CameraOffset - - CollisionType - - DisplayDistanceType - - DisplayName - - EvaluateStateMachine - - FloorMaterial - - Health - - HealthDisplayDistance - - HealthDisplayType - - HipHeight - - Jump - - JumpHeight - - JumpPower - - LeftLeg - - MaxHealth - - MaxSlopeAngle - - MoveDirection - - NameDisplayDistance - - NameOcclusion - - PlatformStand - - RequiresNeck - - RigType - - RightLeg - - RootPart - - SeatPart - - Sit - - TargetPoint - - Torso - - UseJumpPower - - WalkSpeed - - WalkToPart - - WalkToPoint - - maxHealth - HumanoidController: - superclass: Controller - events: [] - properties: [] - HumanoidDescription: - superclass: Instance - events: - - EmotesChanged - - EquippedEmotesChanged - properties: - - AccessoryBlob - - BackAccessory - - BodyTypeScale - - ClimbAnimation - - DepthScale - - Face - - FaceAccessory - - FallAnimation - - FrontAccessory - - GraphicTShirt - - HairAccessory - - HatAccessory - - Head - - HeadColor - - HeadScale - - HeightScale - - IdleAnimation - - JumpAnimation - - LeftArm - - LeftArmColor - - LeftLeg - - LeftLegColor - - MoodAnimation - - NeckAccessory - - NumberEmotesLoaded - - Pants - - ProportionScale - - RightArm - - RightArmColor - - RightLeg - - RightLegColor - - RunAnimation - - Shirt - - ShouldersAccessory - - SwimAnimation - - Torso - - TorsoColor - - WaistAccessory - - WalkAnimation - - WidthScale - IKControl: - superclass: Instance - events: [] - properties: - - ChainRoot - - Enabled - - EndEffector - - EndEffectorOffset - - Offset - - Pole - - Priority - - SmoothTime - - Target - - Type - - Weight - ILegacyStudioBridge: - superclass: Instance - events: [] - properties: [] - IXPService: - superclass: Instance - events: - - OnBrowserTrackerLayerLoadingStatusChanged - - OnUserLayerLoadingStatusChanged - properties: [] - ImageButton: - superclass: GuiButton - events: [] - properties: - - ContentImageSize - - HoverImage - - Image - - ImageColor3 - - ImageRectOffset - - ImageRectSize - - ImageTransparency - - IsLoaded - - PressedImage - - ResampleMode - - ScaleType - - SliceCenter - - SliceScale - - TileSize - ImageDataExperimental: - superclass: Instance - events: [] - properties: - - Size - - TemporaryId - ImageHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Image - - Size - ImageLabel: - superclass: GuiLabel - events: [] - properties: - - ContentImageSize - - Image - - ImageColor3 - - ImageRectOffset - - ImageRectSize - - ImageTransparency - - IsLoaded - - ResampleMode - - ScaleType - - SliceCenter - - SliceScale - - TileSize - ImporterAnimationSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterBaseSettings: - superclass: Instance - events: [] - properties: - - Id - - ImportName - - ShouldImport - ImporterFacsSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterGroupSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - Anchored - - ImportAsModelAsset - - InsertInWorkspace - ImporterJointSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterMaterialSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - DiffuseFilePath - - IsPbr - - MetalnessFilePath - - NormalFilePath - - RoughnessFilePath - ImporterMeshSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - Anchored - - CageManifold - - CageMeshIntersectedPreview - - CageMeshNotIntersected - - CageNoOverlappingVertices - - CageNonManifoldPreview - - CageOverlappingVerticesPreview - - CageUVMatched - - CageUVMisMatchedPreview - - Dimensions - - DoubleSided - - IgnoreVertexColors - - IrrelevantCageModifiedPreview - - MeshHoleDetectedPreview - - MeshNoHoleDetected - - NoIrrelevantCageModified - - NoOuterCageFarExtendedFromMesh - - OuterCageFarExtendedFromMeshPreview - - PolygonCount - - UseImportedPivot - ImporterRootSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - AddModelToInventory - - Anchored - - ExistingPackageId - - FileDimensions - - ImportAsModelAsset - - ImportAsPackage - - InsertInWorkspace - - InsertWithScenePosition - - InvertNegativeFaces - - MergeMeshes - - PolygonCount - - RigScale - - RigType - - ScaleUnit - - UseSceneOriginAsCFrame - - UseSceneOriginAsPivot - - UsesCages - - WorldForward - - WorldUp - IncrementalPatchBuilder: - superclass: Instance - events: [] - properties: - - AddPathsToBundle - - BuildDebouncePeriod - - HighCompression - - SerializePatch - - ZstdCompression - InputObject: - superclass: Instance - events: [] - properties: - - Delta - - KeyCode - - Position - - UserInputState - - UserInputType - InsertService: - superclass: Instance - events: [] - properties: - - AllowClientInsertModels - - AllowInsertFreeModels - Instance: - superclass: <<>> - events: - - AncestryChanged - - AttributeChanged - - Changed - - ChildAdded - - ChildRemoved - - DescendantAdded - - DescendantRemoving - - Destroying - - childAdded - properties: - - Archivable - - ClassName - - DataCost - - Name - - Parent - - RobloxLocked - - SourceAssetId - - archivable - - className - InstanceAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - IntConstrainedValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - ConstrainedValue - - MaxValue - - MinValue - - Value - IntValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - IntersectOperation: - superclass: PartOperation - events: [] - properties: [] - InventoryPages: - superclass: Pages - events: [] - properties: [] - JointInstance: - superclass: Instance - events: [] - properties: - - Active - - C0 - - C1 - - Enabled - - Part0 - - Part1 - - part1 - JointsService: - superclass: Instance - events: [] - properties: [] - KeyboardService: - superclass: Instance - events: [] - properties: [] - Keyframe: - superclass: Instance - events: [] - properties: - - Time - KeyframeMarker: - superclass: Instance - events: [] - properties: - - Value - KeyframeSequence: - superclass: AnimationClip - events: [] - properties: - - AuthoredHipHeight - KeyframeSequenceProvider: - superclass: Instance - events: [] - properties: [] - LSPFileSyncService: - superclass: Instance - events: [] - properties: [] - LanguageService: - superclass: Instance - events: [] - properties: [] - LayerCollector: - superclass: GuiBase2d - events: [] - properties: - - Enabled - - ResetOnSpawn - - ZIndexBehavior - LegacyStudioBridge: - superclass: ILegacyStudioBridge - events: [] - properties: [] - Light: - superclass: Instance - events: [] - properties: - - Brightness - - Color - - Enabled - - Shadows - Lighting: - superclass: Instance - events: - - LightingChanged - properties: - - Ambient - - Brightness - - TimerTime - - ColorShift_Bottom - - ColorShift_Top - - EnvironmentDiffuseScale - - EnvironmentSpecularScale - - ExposureCompensation - - FogColor - - FogEnd - - FogStart - - GeographicLatitude - - GlobalShadows - - OutdoorAmbient - - Outlines - - ShadowColor - - ShadowSoftness - - Technology - - TempUseNewSkyRemovalBehaviour - - TimeOfDay - LineForce: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - InverseSquareLaw - - Magnitude - - MaxForce - - ReactionForceEnabled - LineHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Length - - Thickness - LinearVelocity: - superclass: Constraint - events: [] - properties: - - LineDirection - - LineVelocity - - MaxForce - - PlaneVelocity - - PrimaryTangentAxis - - RelativeTo - - SecondaryTangentAxis - - VectorVelocity - - VelocityConstraintMode - LiveScriptingService: - superclass: Instance - events: [] - properties: [] - LocalDebuggerConnection: - superclass: DebuggerConnection - events: [] - properties: [] - LocalScript: - superclass: Script - events: [] - properties: [] - LocalStorageService: - superclass: Instance - events: - - ItemWasSet - - StoreWasCleared - properties: [] - LocalizationService: - superclass: Instance - events: - - AutoTranslateWillRun - properties: - - ForcePlayModeGameLocaleId - - ForcePlayModeRobloxLocaleId - - IsTextScraperRunning - - RobloxForcePlayModeGameLocaleId - - RobloxForcePlayModeRobloxLocaleId - - RobloxLocaleId - - SystemLocaleId - LocalizationTable: - superclass: Instance - events: [] - properties: - - DevelopmentLanguage - - Root - - SourceLocaleId - LodDataEntity: - superclass: Instance - events: [] - properties: - - EntityLodEnabled - LodDataService: - superclass: Instance - events: [] - properties: [] - LogService: - superclass: Instance - events: - - HttpResultOut - - MessageOut - - OnHttpResultApproved - - ServerHttpResultOut - - ServerMessageOut - properties: [] - LoginService: - superclass: Instance - events: - - LoginFailed - - LoginSucceeded - properties: [] - LuaSettings: - superclass: Instance - events: [] - properties: [] - LuaSourceContainer: - superclass: Instance - events: [] - properties: - - CurrentEditor - - RuntimeSource - LuaWebService: - superclass: Instance - events: [] - properties: [] - LuauScriptAnalyzerService: - superclass: Instance - events: [] - properties: [] - ManualGlue: - superclass: ManualSurfaceJointInstance - events: [] - properties: [] - ManualSurfaceJointInstance: - superclass: JointInstance - events: [] - properties: [] - ManualWeld: - superclass: ManualSurfaceJointInstance - events: [] - properties: [] - MarkerCurve: - superclass: Instance - events: [] - properties: - - Length - MarketplaceService: - superclass: Instance - events: - - ClientLuaDialogRequested - - ClientPurchaseSuccess - - NativePurchaseFinished - - NativePurchaseFinishedWithLocalPlayer - - PromptBundlePurchaseFinished - - PromptBundlePurchaseRequested - - PromptGamePassPurchaseFinished - - PromptGamePassPurchaseRequested - - PromptPremiumPurchaseFinished - - PromptPremiumPurchaseRequested - - PromptProductPurchaseFinished - - PromptProductPurchaseRequested - - PromptPurchaseFinished - - PromptPurchaseRequested - - PromptRobloxPurchaseRequested - - PromptSubscriptionCancellationFinished - - PromptSubscriptionCancellationRequested - - PromptSubscriptionPurchaseFinished - - PromptSubscriptionPurchaseRequested - - ServerPurchaseVerification - - ThirdPartyPurchaseFinished - properties: [] - MaterialGenerationService: - superclass: Instance - events: [] - properties: [] - MaterialGenerationSession: - superclass: Instance - events: [] - properties: [] - MaterialService: - superclass: Instance - events: - - OverrideStatusChanged - properties: - - AsphaltName - - BasaltName - - BrickName - - CobblestoneName - - ConcreteName - - CorrodedMetalName - - CrackedLavaName - - DiamondPlateName - - FabricName - - FoilName - - GlacierName - - GraniteName - - GrassName - - GroundName - - IceName - - LeafyGrassName - - LimestoneName - - MarbleName - - MetalName - - MudName - - PavementName - - PebbleName - - PlasticName - - RockName - - SaltName - - SandName - - SandstoneName - - SlateName - - SmoothPlasticName - - SnowName - - Use2022Materials - - WoodName - - WoodPlanksName - MaterialVariant: - superclass: Instance - events: [] - properties: - - BaseMaterial - - ColorMap - - CustomPhysicalProperties - - MaterialPattern - - MetalnessMap - - NormalMap - - RoughnessMap - - StudsPerTile - MemStorageConnection: - superclass: Instance - events: [] - properties: [] - MemStorageService: - superclass: Instance - events: [] - properties: [] - MemoryStoreQueue: - superclass: Instance - events: [] - properties: [] - MemoryStoreService: - superclass: Instance - events: [] - properties: [] - MemoryStoreSortedMap: - superclass: Instance - events: [] - properties: [] - MeshContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - MeshDataExperimental: - superclass: Instance - events: [] - properties: - - Size - MeshPart: - superclass: TriangleMeshPart - events: [] - properties: - - DoubleSided - - HasJointOffset - - HasSkinnedMesh - - JointOffset - - MeshId - - RenderFidelity - - TextureID - Message: - superclass: Instance - events: [] - properties: - - Text - MessageBusConnection: - superclass: Instance - events: [] - properties: [] - MessageBusService: - superclass: Instance - events: [] - properties: [] - MessagingService: - superclass: Instance - events: [] - properties: [] - MetaBreakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - Enabled - - Id - - IsLogpoint - - Line - - LogMessage - - Script - - Valid - MetaBreakpointContext: - superclass: Instance - events: [] - properties: [] - MetaBreakpointManager: - superclass: Instance - events: - - MetaBreakpointAdded - - MetaBreakpointChanged - - MetaBreakpointRemoved - - MetaBreakpointSetChanged - properties: [] - Model: - superclass: PVInstance - events: [] - properties: - - LevelOfDetail - - ModelStreamingMode - - PrimaryPart - - Scale - - WorldPivot - ModuleScript: - superclass: LuaSourceContainer - events: [] - properties: - - LinkedSource - - Source - Motor: - superclass: JointInstance - events: [] - properties: - - CurrentAngle - - DesiredAngle - - MaxVelocity - Motor6D: - superclass: Motor - events: [] - properties: - - ChildName - - ParentName - - Transform - MotorFeature: - superclass: Feature - events: [] - properties: [] - Mouse: - superclass: Instance - events: - - Button1Down - - Button1Up - - Button2Down - - Button2Up - - Idle - - KeyDown - - KeyUp - - Move - - WheelBackward - - WheelForward - - keyDown - properties: - - Hit - - Icon - - Origin - - Target - - TargetFilter - - TargetSurface - - UnitRay - - ViewSizeX - - ViewSizeY - - X - - Y - - hit - - target - MouseService: - superclass: Instance - events: [] - properties: [] - MultipleDocumentInterfaceInstance: - superclass: Instance - events: - - DataModelSessionEnded - - DataModelSessionStarted - properties: - - FocusedDataModelSession - NegateOperation: - superclass: PartOperation - events: [] - properties: [] - NetworkClient: - superclass: NetworkPeer - events: - - ConnectionAccepted - - ConnectionFailed - properties: [] - NetworkMarker: - superclass: Instance - events: - - Received - properties: [] - NetworkPeer: - superclass: Instance - events: [] - properties: [] - NetworkReplicator: - superclass: Instance - events: [] - properties: [] - NetworkServer: - superclass: NetworkPeer - events: [] - properties: [] - NetworkSettings: - superclass: Instance - events: [] - properties: - - EmulatedTotalMemoryInMB - - FreeMemoryMBytes - - HttpProxyEnabled - - HttpProxyURL - - IncomingReplicationLag - - PrintJoinSizeBreakdown - - PrintPhysicsErrors - - PrintStreamInstanceQuota - - RandomizeJoinInstanceOrder - - RenderStreamedRegions - - ShowActiveAnimationAsset - NoCollisionConstraint: - superclass: Instance - events: [] - properties: - - Enabled - - Part0 - - Part1 - NonReplicatedCSGDictionaryService: - superclass: FlyweightService - events: [] - properties: [] - NotificationService: - superclass: Instance - events: - - Roblox17sConnectionChanged - - Roblox17sEventReceived - - RobloxConnectionChanged - - RobloxEventReceived - properties: - - IsConnected - - IsLuaChatEnabled - - IsLuaGameDetailsEnabled - - SelectedTheme - NumberPose: - superclass: PoseBase - events: [] - properties: - - Value - NumberValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - ObjectValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - OrderedDataStore: - superclass: GlobalDataStore - events: [] - properties: [] - OutfitPages: - superclass: Pages - events: [] - properties: [] - PVAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - PVInstance: - superclass: Instance - events: [] - properties: - - Origin - - Pivot Offset - PackageLink: - superclass: Instance - events: [] - properties: - - AutoUpdate - - Creator - - PackageAssetName - - PackageId - - PermissionLevel - - Status - - VersionNumber - PackageService: - superclass: Instance - events: [] - properties: [] - PackageUIService: - superclass: Instance - events: - - OnConvertToPackageResult - - OnOpenConvertToPackagePlugin - properties: [] - Pages: - superclass: Instance - events: [] - properties: - - IsFinished - Pants: - superclass: Clothing - events: [] - properties: - - PantsTemplate - ParabolaAdornment: - superclass: PVAdornment - events: [] - properties: - - A - - B - - C - - Range - - Thickness - Part: - superclass: FormFactorPart - events: [] - properties: - - Shape - PartAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - PartOperation: - superclass: TriangleMeshPart - events: [] - properties: - - RenderFidelity - - SmoothingAngle - - TriangleCount - - UsePartColor - PartOperationAsset: - superclass: Instance - events: [] - properties: [] - ParticleEmitter: - superclass: Instance - events: [] - properties: - - Acceleration - - Brightness - - Color - - Drag - - EmissionDirection - - Enabled - - FlipbookFramerate - - FlipbookIncompatible - - FlipbookLayout - - FlipbookMode - - FlipbookStartRandom - - Lifetime - - LightEmission - - LightInfluence - - LockedToPart - - Orientation - - Rate - - RotSpeed - - Rotation - - Shape - - ShapeInOut - - ShapePartial - - ShapeStyle - - Size - - Speed - - SpreadAngle - - Squash - - Texture - - TimeScale - - Transparency - - VelocityInheritance - - VelocitySpread - - ZOffset - PatchBundlerFileWatch: - superclass: Instance - events: [] - properties: [] - PatchMapping: - superclass: Instance - events: [] - properties: - - FlattenTree - - PatchId - - TargetPath - Path: - superclass: Instance - events: - - Blocked - - Unblocked - properties: - - Status - PathfindingLink: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - IsBidirectional - - Label - PathfindingModifier: - superclass: Instance - events: [] - properties: - - Label - - PassThrough - PathfindingService: - superclass: Instance - events: [] - properties: - - EmptyCutoff - PausedState: - superclass: Instance - events: [] - properties: - - AllThreadsPaused - - Reason - - ThreadId - PausedStateBreakpoint: - superclass: PausedState - events: [] - properties: - - Breakpoint - PausedStateException: - superclass: PausedState - events: [] - properties: - - ExceptionText - PermissionsService: - superclass: Instance - events: [] - properties: [] - PhysicsService: - superclass: Instance - events: [] - properties: [] - PhysicsSettings: - superclass: Instance - events: [] - properties: - - AllowSleep - - AreAnchorsShown - - AreAssembliesShown - - AreAwakePartsHighlighted - - AreBodyTypesShown - - AreConstraintForcesShownForSelectedOrHoveredInstances - - AreConstraintTorquesShownForSelectedOrHoveredInstances - - AreContactForcesShownForSelectedOrHoveredAssemblies - - AreContactIslandsShown - - AreContactPointsShown - - AreJointCoordinatesShown - - AreMagnitudesShownForDrawnForcesAndTorques - - AreMechanismsShown - - AreModelCoordsShown - - AreOwnersShown - - ArePartCoordsShown - - AreRegionsShown - - AreSolverIslandsShown - - AreTerrainReplicationRegionsShown - - AreTimestepsShown - - AreUnalignedPartsShown - - AreWorldCoordsShown - - DisableCSGv2 - - ForceCSGv2 - - ForceDrawScale - - IsInterpolationThrottleShown - - IsReceiveAgeShown - - IsTreeShown - - PhysicsEnvironmentalThrottle - - ShowDecompositionGeometry - - SolverConvergenceVisualizationMode - - ThrottleAdjustTime - - UseCSGv2 - PitchShiftSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Octave - Plane: - superclass: PlaneConstraint - events: [] - properties: [] - PlaneConstraint: - superclass: Constraint - events: [] - properties: [] - Platform: - superclass: Part - events: [] - properties: [] - Player: - superclass: Instance - events: - - CharacterAdded - - CharacterAppearanceLoaded - - CharacterRemoving - - Chatted - - FriendStatusChanged - - Idled - - OnTeleport - - SimulationRadiusChanged - properties: - - AccountAge - - AppearanceDidLoad - - AutoJumpEnabled - - CameraMaxZoomDistance - - CameraMinZoomDistance - - CameraMode - - CanLoadCharacterAppearance - - Character - - CharacterAppearance - - CharacterAppearanceId - - ChatMode - - DataComplexity - - DataComplexityLimit - - DataReady - - DevCameraOcclusionMode - - DevComputerCameraMode - - DevComputerMovementMode - - DevEnableMouseLock - - DevTouchCameraMode - - DevTouchMovementMode - - DisplayName - - FollowUserId - - GameplayPaused - - Guest - - HasVerifiedBadge - - HealthDisplayDistance - - LocaleId - - MaximumSimulationRadius - - MembershipType - - NameDisplayDistance - - Neutral - - OsPlatform - - PlatformName - - ReplicationFocus - - RespawnLocation - - SimulationRadius - - Team - - TeamColor - - Teleported - - TeleportedIn - - UnfilteredChat - - UserId - - VRDevice - - VREnabled - - userId - PlayerEmulatorService: - superclass: Instance - events: [] - properties: - - CustomPoliciesEnabled - - EmulatedCountryCode - - EmulatedGameLocale - - PlayerEmulationEnabled - - SerializedEmulatedPolicyInfo - PlayerGui: - superclass: BasePlayerGui - events: - - TopbarTransparencyChangedSignal - properties: - - CurrentScreenOrientation - - ScreenOrientation - - SelectionImageObject - PlayerMouse: - superclass: Mouse - events: [] - properties: [] - PlayerScripts: - superclass: Instance - events: - - ComputerCameraMovementModeRegistered - - ComputerMovementModeRegistered - - TouchCameraMovementModeRegistered - - TouchMovementModeRegistered - properties: [] - Players: - superclass: Instance - events: - - FriendRequestEvent - - GameAnnounce - - PlayerAdded - - PlayerChatted - - PlayerConnecting - - PlayerDisconnecting - - PlayerMembershipChanged - - PlayerRejoining - - PlayerRemoving - properties: - - BubbleChat - - CharacterAutoLoads - - ClassicChat - - LocalPlayer - - MaxPlayers - - MaxPlayersInternal - - NumPlayers - - PreferredPlayers - - PreferredPlayersInternal - - RespawnTime - - UseStrafingAnimations - - localPlayer - - numPlayers - Plugin: - superclass: Instance - events: - - Deactivation - - Ready - - Unloading - properties: - - CollisionEnabled - - GridSize - - HostDataModelType - - HostDataModelTypeIsCurrent - - MultipleDocumentInterfaceInstance - - UsesAssetInsertionDrag - PluginAction: - superclass: Instance - events: - - Triggered - properties: - - ActionId - - AllowBinding - - Checked - - DefaultShortcut - - Enabled - - StatusTip - - Text - PluginDebugService: - superclass: Instance - events: [] - properties: [] - PluginDragEvent: - superclass: Instance - events: [] - properties: - - Data - - MimeType - - Position - - Sender - PluginGui: - superclass: LayerCollector - events: - - PluginDragDropped - - PluginDragEntered - - PluginDragLeft - - PluginDragMoved - - WindowFocusReleased - - WindowFocused - properties: - - Title - PluginGuiService: - superclass: Instance - events: [] - properties: [] - PluginManagementService: - superclass: Instance - events: [] - properties: [] - PluginManager: - superclass: Instance - events: [] - properties: [] - PluginManagerInterface: - superclass: Instance - events: [] - properties: [] - PluginMenu: - superclass: Instance - events: [] - properties: - - Icon - - Title - PluginMouse: - superclass: Mouse - events: - - DragEnter - properties: [] - PluginPolicyService: - superclass: Instance - events: [] - properties: [] - PluginToolbar: - superclass: Instance - events: [] - properties: [] - PluginToolbarButton: - superclass: Instance - events: - - Click - properties: - - ClickableWhenViewportHidden - - Enabled - - Icon - PointLight: - superclass: Light - events: [] - properties: - - Range - PointsService: - superclass: Instance - events: - - PointsAwarded - properties: [] - PolicyService: - superclass: Instance - events: [] - properties: - - IsLuobuServer - - LuobuWhitelisted - Pose: - superclass: PoseBase - events: [] - properties: - - CFrame - - MaskWeight - PoseBase: - superclass: Instance - events: [] - properties: - - EasingDirection - - EasingStyle - - Weight - PostEffect: - superclass: Instance - events: [] - properties: - - Enabled - PrismaticConstraint: - superclass: SlidingBallConstraint - events: [] - properties: [] - ProcessInstancePhysicsService: - superclass: Instance - events: [] - properties: [] - ProximityPrompt: - superclass: Instance - events: - - PromptButtonHoldBegan - - PromptButtonHoldEnded - - PromptHidden - - PromptShown - - TriggerEnded - - Triggered - properties: - - ActionText - - AutoLocalize - - ClickablePrompt - - Enabled - - Exclusivity - - GamepadKeyCode - - HoldDuration - - KeyboardKeyCode - - MaxActivationDistance - - ObjectText - - RequiresLineOfSight - - RootLocalizationTable - - Style - - UIOffset - ProximityPromptService: - superclass: Instance - events: - - PromptButtonHoldBegan - - PromptButtonHoldEnded - - PromptHidden - - PromptShown - - PromptTriggerEnded - - PromptTriggered - properties: - - Enabled - - MaxPromptsVisible - PublishService: - superclass: Instance - events: [] - properties: [] - QWidgetPluginGui: - superclass: PluginGui - events: [] - properties: [] - RayValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - RbxAnalyticsService: - superclass: Instance - events: [] - properties: [] - ReflectionMetadata: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataCallbacks: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataClass: - superclass: ReflectionMetadataItem - events: [] - properties: - - ExplorerImageIndex - - ExplorerOrder - - Insertable - - PreferredParent - - ServiceVisibility - ReflectionMetadataClasses: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataEnum: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataEnumItem: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataEnums: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataEvents: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataFunctions: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataItem: - superclass: Instance - events: [] - properties: - - Browsable - - ClassCategory - - ClientOnly - - Constraint - - Deprecated - - EditingDisabled - - EditorType - - FFlag - - IsBackend - - PropertyOrder - - ScriptContext - - ServerOnly - - SliderScaling - - UIMaximum - - UIMinimum - - UINumTicks - ReflectionMetadataMember: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataProperties: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataYieldFunctions: - superclass: Instance - events: [] - properties: [] - RemoteCursorService: - superclass: Instance - events: [] - properties: [] - RemoteDebuggerServer: - superclass: Instance - events: [] - properties: [] - RemoteEvent: - superclass: Instance - events: - - OnClientEvent - - OnServerEvent - properties: [] - RemoteFunction: - superclass: Instance - events: [] - properties: [] - RenderSettings: - superclass: Instance - events: [] - properties: - - AutoFRMLevel - - EagerBulkExecution - - EditQualityLevel - - EnableFRM - - ExportMergeByMaterial - - FrameRateManager - - GraphicsMode - - MeshCacheSize - - MeshPartDetailLevel - - QualityLevel - - ReloadAssets - - RenderCSGTrianglesDebug - - ShowBoundingBoxes - RenderingTest: - superclass: Instance - events: [] - properties: - - CFrame - - ComparisonDiffThreshold - - ComparisonMethod - - ComparisonPsnrThreshold - - Description - - FieldOfView - - Orientation - - Position - - QualityLevel - - ShouldSkip - - Ticket - ReplicatedFirst: - superclass: Instance - events: - - DefaultLoadingGuiRemoved - - FinishedReplicating - - RemoveDefaultLoadingGuiSignal - properties: [] - ReplicatedStorage: - superclass: Instance - events: [] - properties: [] - ReverbSoundEffect: - superclass: SoundEffect - events: [] - properties: - - DecayTime - - Density - - Diffusion - - DryLevel - - WetLevel - RigidConstraint: - superclass: Constraint - events: [] - properties: [] - RobloxPluginGuiService: - superclass: Instance - events: [] - properties: [] - RobloxReplicatedStorage: - superclass: Instance - events: [] - properties: [] - RocketPropulsion: - superclass: BodyMover - events: - - ReachedTarget - properties: - - CartoonFactor - - MaxSpeed - - MaxThrust - - MaxTorque - - Target - - TargetOffset - - TargetRadius - - ThrustD - - ThrustP - - TurnD - - TurnP - RodConstraint: - superclass: Constraint - events: [] - properties: - - CurrentDistance - - Length - - LimitAngle0 - - LimitAngle1 - - LimitsEnabled - - Thickness - RopeConstraint: - superclass: Constraint - events: [] - properties: - - CurrentDistance - - Length - - Restitution - - Thickness - - WinchEnabled - - WinchForce - - WinchResponsiveness - - WinchSpeed - - WinchTarget - Rotate: - superclass: JointInstance - events: [] - properties: [] - RotateP: - superclass: DynamicRotate - events: [] - properties: [] - RotateV: - superclass: DynamicRotate - events: [] - properties: [] - RotationCurve: - superclass: Instance - events: [] - properties: - - Length - RtMessagingService: - superclass: Instance - events: [] - properties: [] - RunService: - superclass: Instance - events: - - Heartbeat - - PostSimulation - - PreAnimation - - PreRender - - PreSimulation - - RenderStepped - - Stepped - properties: - - ClientGitHash - RunningAverageItemDouble: - superclass: StatsItem - events: [] - properties: [] - RunningAverageItemInt: - superclass: StatsItem - events: [] - properties: [] - RunningAverageTimeIntervalItem: - superclass: StatsItem - events: [] - properties: [] - RuntimeScriptService: - superclass: Instance - events: [] - properties: [] - SafetyService: - superclass: Instance - events: - - ScreenshotContentReady - - ScreenshotUploaded - properties: [] - ScreenGui: - superclass: LayerCollector - events: [] - properties: - - ClipToDeviceSafeArea - - DisplayOrder - - IgnoreGuiInset - - OnTopOfCoreBlur - - SafeAreaCompatibility - - ScreenInsets - ScreenshotHud: - superclass: Instance - events: [] - properties: - - CameraButtonIcon - - CameraButtonPosition - - CloseButtonPosition - - CloseWhenScreenshotTaken - - ExperienceNameOverlayEnabled - - OverlayFont - - UsernameOverlayEnabled - - Visible - Script: - superclass: BaseScript - events: [] - properties: - - Source - ScriptBuilder: - superclass: Instance - events: [] - properties: [] - ScriptChangeService: - superclass: Instance - events: - - ScriptAdded - - ScriptBeingRemoved - - ScriptChanged - - ScriptFullNameChanged - - ScriptSourceChanged - properties: [] - ScriptCloneWatcher: - superclass: Instance - events: [] - properties: [] - ScriptCloneWatcherHelper: - superclass: Instance - events: [] - properties: [] - ScriptContext: - superclass: Instance - events: - - Error - - ErrorDetailed - properties: - - ScriptsDisabled - ScriptDebugger: - superclass: Instance - events: - - BreakpointAdded - - BreakpointRemoved - - EncounteredBreak - - Resuming - - WatchAdded - - WatchRemoved - properties: - - CurrentLine - - IsDebugging - - IsPaused - - Script - ScriptDocument: - superclass: Instance - events: - - SelectionChanged - - ViewportChanged - properties: [] - ScriptEditorService: - superclass: Instance - events: - - TextDocumentDidChange - - TextDocumentDidClose - - TextDocumentDidOpen - properties: [] - ScriptRegistrationService: - superclass: Instance - events: [] - properties: [] - ScriptRuntime: - superclass: Instance - events: [] - properties: [] - ScriptService: - superclass: Instance - events: [] - properties: [] - ScrollingFrame: - superclass: GuiObject - events: [] - properties: - - AbsoluteCanvasSize - - AbsoluteWindowSize - - AutomaticCanvasSize - - BottomImage - - CanvasPosition - - CanvasSize - - ElasticBehavior - - HorizontalBarRect - - HorizontalScrollBarInset - - MaxCanvasPosition - - MidImage - - ScrollBarImageColor3 - - ScrollBarImageTransparency - - ScrollBarThickness - - ScrollVelocity - - ScrollingDirection - - ScrollingEnabled - - TopImage - - VerticalBarRect - - VerticalScrollBarInset - - VerticalScrollBarPosition - Seat: - superclass: Part - events: [] - properties: - - Disabled - - Occupant - Selection: - superclass: Instance - events: - - SelectionChanged - properties: - - ActiveInstance - - SelectionBoxThickness - - SelectionLineThickness - - SelectionThickness - - ShowBoundingBox - SelectionBox: - superclass: InstanceAdornment - events: [] - properties: - - LineThickness - - StudioSelectionBox - - SurfaceColor - - SurfaceColor3 - - SurfaceTransparency - SelectionHighlightManager: - superclass: Instance - events: [] - properties: [] - SelectionLasso: - superclass: GuiBase3d - events: [] - properties: - - Humanoid - SelectionPartLasso: - superclass: SelectionLasso - events: [] - properties: - - Part - SelectionPointLasso: - superclass: SelectionLasso - events: [] - properties: - - Point - SelectionSphere: - superclass: PVAdornment - events: [] - properties: - - SurfaceColor - - SurfaceColor3 - - SurfaceTransparency - SensorBase: - superclass: Instance - events: - - OnSensorOutputChanged - properties: - - UpdateType - ServerReplicator: - superclass: NetworkReplicator - events: [] - properties: [] - ServerScriptService: - superclass: Instance - events: [] - properties: - - LoadStringEnabled - ServerStorage: - superclass: Instance - events: [] - properties: [] - ServiceProvider: - superclass: Instance - events: - - Close - - CloseLate - - ServiceAdded - - ServiceRemoving - properties: [] - ServiceVisibilityService: - superclass: Instance - events: [] - properties: - - VisibleServices - SessionService: - superclass: Instance - events: [] - properties: [] - SharedTableRegistry: - superclass: Instance - events: [] - properties: [] - Shirt: - superclass: Clothing - events: [] - properties: - - ShirtTemplate - ShirtGraphic: - superclass: CharacterAppearance - events: [] - properties: - - Color3 - - Graphic - ShorelineUpgraderService: - superclass: Instance - events: - - Status - properties: [] - SkateboardController: - superclass: Controller - events: - - AxisChanged - properties: - - Steer - - Throttle - SkateboardPlatform: - superclass: Part - events: - - Equipped - - MoveStateChanged - - Unequipped - - equipped - - unequipped - properties: - - Controller - - ControllingHumanoid - - Steer - - StickyWheels - - Throttle - Skin: - superclass: CharacterAppearance - events: [] - properties: - - SkinColor - Sky: - superclass: Instance - events: [] - properties: - - CelestialBodiesShown - - MoonAngularSize - - MoonTextureId - - SkyboxBk - - SkyboxDn - - SkyboxFt - - SkyboxLf - - SkyboxRt - - SkyboxUp - - StarCount - - SunAngularSize - - SunTextureId - SlidingBallConstraint: - superclass: Constraint - events: [] - properties: - - ActuatorType - - CurrentPosition - - LimitsEnabled - - LinearResponsiveness - - LowerLimit - - MotorMaxAcceleration - - MotorMaxForce - - Restitution - - ServoMaxForce - - Size - - Speed - - TargetPosition - - UpperLimit - - Velocity - Smoke: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - Opacity - - RiseVelocity - - Size - - TimeScale - SmoothVoxelsUpgraderService: - superclass: Instance - events: - - Status - properties: [] - Snap: - superclass: JointInstance - events: [] - properties: [] - SnippetService: - superclass: Instance - events: [] - properties: [] - SocialService: - superclass: Instance - events: - - GameInvitePromptClosed - - PromptInviteRequested - properties: [] - SolidModelContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - Sound: - superclass: Instance - events: - - DidLoop - - Ended - - Loaded - - Paused - - Played - - Resumed - - Stopped - properties: - - ChannelCount - - EmitterSize - - IsLoaded - - IsPaused - - IsPlaying - - IsSpatial - - LoopRegion - - Looped - - MaxDistance - - MinDistance - - Pitch - - PlayOnRemove - - PlaybackLoudness - - PlaybackRegion - - PlaybackRegionsEnabled - - PlaybackSpeed - - Playing - - RollOffGain - - RollOffMaxDistance - - RollOffMinDistance - - RollOffMode - - SoundGroup - - SoundId - - TimeLength - - TimePosition - - UsageContextPermission - - Volume - - isPlaying - SoundEffect: - superclass: Instance - events: [] - properties: - - Enabled - - Priority - SoundGroup: - superclass: Instance - events: [] - properties: - - Volume - SoundService: - superclass: Instance - events: - - DeviceListChanged - properties: - - AmbientReverb - - DistanceFactor - - DopplerScale - - RespectFilteringEnabled - - RolloffScale - - VolumetricAudio - Sparkles: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - SparkleColor - - TimeScale - SpawnLocation: - superclass: Part - events: [] - properties: - - AllowTeamChangeOnTouch - - Duration - - Enabled - - Neutral - - TeamColor - SpawnerService: - superclass: Instance - events: [] - properties: [] - Speaker: - superclass: Instance - events: [] - properties: - - ChannelCount - - PlaybackLoudness - - RollOffMaxDistance - - RollOffMinDistance - - RollOffMode - - SoundGroup - - Source - - Volume - SpecialMesh: - superclass: FileMesh - events: [] - properties: - - MeshType - SphereHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Radius - SpotLight: - superclass: Light - events: [] - properties: - - Angle - - Face - - Range - SpringConstraint: - superclass: Constraint - events: [] - properties: - - Coils - - CurrentLength - - Damping - - FreeLength - - LimitsEnabled - - MaxForce - - MaxLength - - MinLength - - Radius - - Stiffness - - Thickness - StackFrame: - superclass: Instance - events: [] - properties: - - FrameId - - FrameName - - FrameType - - Globals - - Line - - Locals - - Populated - - Script - - Upvalues - StandalonePluginScripts: - superclass: Instance - events: [] - properties: [] - StandardPages: - superclass: Pages - events: [] - properties: [] - StarterCharacterScripts: - superclass: StarterPlayerScripts - events: [] - properties: [] - StarterGear: - superclass: Instance - events: [] - properties: [] - StarterGui: - superclass: BasePlayerGui - events: - - CoreGuiChangedSignal - properties: - - ProcessUserInput - - ResetPlayerGuiOnSpawn - - RtlTextSupport - - ScreenOrientation - - ShowDevelopmentGui - - VirtualCursorMode - StarterPack: - superclass: Instance - events: [] - properties: [] - StarterPlayer: - superclass: Instance - events: [] - properties: - - AllowCustomAnimations - - AutoJumpEnabled - - CameraMaxZoomDistance - - CameraMinZoomDistance - - CameraMode - - CharacterJumpHeight - - CharacterJumpPower - - CharacterMaxSlopeAngle - - CharacterUseJumpPower - - CharacterWalkSpeed - - DevCameraOcclusionMode - - DevComputerCameraMovementMode - - DevComputerMovementMode - - DevTouchCameraMovementMode - - DevTouchMovementMode - - EnableDynamicHeads - - EnableMouseLockOption - - GameSettingsAssetIDFace - - GameSettingsAssetIDHead - - GameSettingsAssetIDLeftArm - - GameSettingsAssetIDLeftLeg - - GameSettingsAssetIDPants - - GameSettingsAssetIDRightArm - - GameSettingsAssetIDRightLeg - - GameSettingsAssetIDShirt - - GameSettingsAssetIDTeeShirt - - GameSettingsAssetIDTorso - - GameSettingsAvatar - - GameSettingsR15Collision - - GameSettingsScaleRangeBodyType - - GameSettingsScaleRangeHead - - GameSettingsScaleRangeHeight - - GameSettingsScaleRangeProportion - - GameSettingsScaleRangeWidth - - HealthDisplayDistance - - HumanoidStateMachineMode - - LoadCharacterAppearance - - 'LoadCharacterLayeredClothing ' - - NameDisplayDistance - - UserEmotesEnabled - StarterPlayerScripts: - superclass: Instance - events: [] - properties: [] - Stats: - superclass: Instance - events: [] - properties: - - ContactsCount - - DataReceiveKbps - - DataSendKbps - - HeartbeatTimeMs - - InstanceCount - - MovingPrimitivesCount - - PhysicsReceiveKbps - - PhysicsSendKbps - - PhysicsStepTimeMs - - PrimitivesCount - StatsItem: - superclass: Instance - events: [] - properties: - - DisplayName - Status: - superclass: Model - events: [] - properties: [] - StringValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - Studio: - superclass: Instance - events: - - ThemeChanged - properties: - - '"TODO" Color' - - '"function" Color' - - '"local" Color' - - '"nil" Color' - - '"self" Color' - - Active Color - - Active Hover Over Color - - Always Save Script Changes - - Animate Hover Over - - Auto Clean Empty Line - - Auto Closing Brackets - - Auto Closing Quotes - - Auto Delete Closing Brackets and Quotes - - Auto Indent Rule - - Auto-Recovery Enabled - - Auto-Recovery Interval (Minutes) - - Auto-Recovery Path - - Automatically commit locked scripts when you save or publish to Roblox - - Background Color - - Basic Objects Display Mode - - Bool Color - - Bracket Color - - Built-in Function Color - - Camera Mouse Wheel Speed - - Camera Pan Speed - - Camera Shift Speed - - Camera Speed - - Camera Zoom to Mouse Position - - Clear Output On Start - - CommandBarLocalState - - Comment Color - - Current Line Highlight Color - - Debugger Current Line Color - - Debugger Error Line Color - - DefaultScriptFileDir - - DeprecatedObjectsShown - - Display Team Create toggle when creating a new experience - - DisplayLanguage - - Doc View Code Background Color - - Drag Multiple Parts As Single Part - - Enable Autocomplete - - Enable Autocomplete Doc View - - Enable CoreScript Debugger - - Enable Http Sandboxing - - Enable Internal Beta Features - - Enable Internal Features - - Enable Script Analysis - - Enable Scrollbar Markers - - Enable Signature Help - - Enable Signature Help Doc View - - Enable Temporary Tabs - - Enable Temporary Tabs In Explorer - - Enable Type Hover - - EnableOnTypeAutocomplete - - Error Color - - File > New creates a place with Team Create off - - Find Selection Background Color - - Font - - Format On Paste - - Format On Type - - Function Name Color - - Highlight Current Line - - Highlight Occurances - - Hover Animate Speed - - Hover Box Thickness - - Hover Line Thickness - - Hover Over Color - - IconOverrideDir - - Indent Using Spaces - - Keyword Color - - Line Thickness - - LocalAssetsFolder - - LuaDebuggerEnabled - - LuaDebuggerEnabledAtStartup - - Luau Keyword Color - - Main Volume - - Matching Word Background Color - - Maximum Output Lines - - Menu Item Background Color - - Method Color - - Number Color - - Only Play Audio from Window in Focus - - Operator Color - - Output Font - - Output Layout Mode - - PermissionLevelShown - - Physical Draggers Select Scope By Default - - Pivot Snap To Geometry Color - - PluginDebuggingEnabled - - PluginsDir - - Primary Text Color - - Property Color - - Render Throttle Percentage - - Respect Studio shortcuts when game has focus - - Ruler Color - - Rulers - - RuntimeUndoBehavior - - Script Editor Color Preset - - Script Editor Scrollbar Background Color - - Script Editor Scrollbar Handle Color - - ScriptEditorMenuBorderColor - - ScriptEditorShouldShowPluginMethods - - ScriptTimeoutLength - - Scroll Past Last Line - - Search Content For Core Scripts - - Secondary Text Color - - Select Color - - Select/Hover Color - - Selected Menu Item Background Color - - Selected Text Color - - Selection Background Color - - Selection Box Thickness - - Selection Color - - Selection Highlight Thickness - - Selection Line Thickness - - Server Audio Behavior - - Set Pivot of Imported Parts - - Show Core GUI in Explorer while Playing - - Show Diagnostics Bar - - Show FileSyncService - - Show Hidden Objects in Explorer - - Show Hover Over - - Show Light Guides - - Show Navigation Labels - - Show Navigation Mesh - - Show Pathfinding Links - - Show Plugin GUI Service in Explorer - - Show QT warnings in output - - Show Whitespace - - Show plus button on hover in Explorer - - ShowCorePackagesInExplorer - - Skip Closing Brackets and Quotes - - String Color - - Tab Width - - Text Color - - Text Wrapping - - Theme - - UI Theme - - Use Bounding Box Move Handles - - Warning Color - - Whitespace Color - StudioAssetService: - superclass: Instance - events: - - OnConvertToPackageResult - - OnPublishPackageResult - - OnSaveToRoblox - properties: [] - StudioData: - superclass: Instance - events: [] - properties: - - EnableScriptCollabByDefaultOnLoad - StudioDeviceEmulatorService: - superclass: Instance - events: - - CurrentDeviceIdChanged - - OrientationChanged - - TouchInBoundsChanged - - TouchPositionsChanged - properties: - - HasMultiTouchStarted - - IsMultiTouchEmulationOn - - IsMultiTouchEnabled - - PivotPosition - StudioPublishService: - superclass: Instance - events: - - GameNameUpdated - - GamePublishCancelled - - GamePublishFinished - - OnSaveOrPublishPlaceToRoblox - properties: [] - StudioScriptDebugEventListener: - superclass: Instance - events: [] - properties: [] - StudioSdkService: - superclass: Instance - events: [] - properties: [] - StudioService: - superclass: Instance - events: - - OnImportFromRoblox - - OnOpenGameSettings - - OnOpenManagePackagePlugin - - OnPluginInstalledFromToolbox - - OnPluginInstalledFromWeb - - OnPublishAsPlugin - - OnSaveToRoblox - - PromptTransformPluginCheckEnable - - SaveLocallyAsComplete - properties: - - ActiveScript - - AlignDraggedObjects - - DraggerSolveConstraints - - DrawConstraintsOnTop - - GridSize - - HoverInstance - - InstalledPluginData - - PivotSnapToGeometry - - RotateIncrement - - ShowActiveInstanceHighlight - - ShowConstraintDetails - - StudioLocaleId - - UseLocalSpace - StudioTheme: - superclass: Instance - events: [] - properties: [] - SunRaysEffect: - superclass: PostEffect - events: [] - properties: - - Intensity - - Spread - SurfaceAppearance: - superclass: Instance - events: [] - properties: - - AlphaMode - - ColorMap - - MetalnessMap - - NormalMap - - RoughnessMap - - TexturePack - SurfaceGui: - superclass: SurfaceGuiBase - events: [] - properties: - - AlwaysOnTop - - Brightness - - CanvasSize - - ClipsDescendants - - HorizontalCurvature - - LightInfluence - - PixelsPerStud - - Shape - - SizingMode - - ToolPunchThroughDistance - - ZOffset - SurfaceGuiBase: - superclass: LayerCollector - events: [] - properties: - - Active - - Adornee - - Face - SurfaceLight: - superclass: Light - events: [] - properties: - - Angle - - Face - - Range - SurfaceSelection: - superclass: PartAdornment - events: [] - properties: - - TargetSurface - SwimController: - superclass: ControllerBase - events: [] - properties: - - AccelerationTime - - PitchMaxTorque - - PitchSpeedFactor - - RollMaxTorque - - RollSpeedFactor - SyncScriptBuilder: - superclass: ScriptBuilder - events: [] - properties: - - CoverageInfo - - DebugInfo - - PackAsSource - - RawBytecode - TaskScheduler: - superclass: Instance - events: [] - properties: - - SchedulerDutyCycle - - SchedulerRate - - ThreadPoolConfig - - ThreadPoolSize - Team: - superclass: Instance - events: - - PlayerAdded - - PlayerRemoved - properties: - - AutoAssignable - - AutoColorCharacters - - ChildOrder - - Score - - TeamColor - TeamCreateData: - superclass: Instance - events: [] - properties: [] - TeamCreatePublishService: - superclass: Instance - events: [] - properties: [] - TeamCreateService: - superclass: Instance - events: - - ToggleManageCollaborators - properties: [] - Teams: - superclass: Instance - events: [] - properties: [] - TeleportAsyncResult: - superclass: Instance - events: [] - properties: - - PrivateServerId - - ReservedServerAccessCode - TeleportOptions: - superclass: Instance - events: [] - properties: - - ReservedServerAccessCode - - ServerInstanceId - - ShouldReserveServer - TeleportService: - superclass: Instance - events: - - LocalPlayerArrivedFromTeleport - - MenuTeleportAttempt - - TeleportInitFailed - properties: - - CustomizedTeleportUI - TemporaryCageMeshProvider: - superclass: Instance - events: [] - properties: [] - TemporaryScriptService: - superclass: Instance - events: [] - properties: [] - Terrain: - superclass: BasePart - events: [] - properties: - - Decoration - - IsSmooth - - LastUsedModificationMethod - - MaterialColors - - MaxExtents - - ShorelinesUpgraded - - SmoothVoxelsUpgraded - - WaterColor - - WaterReflectance - - WaterTransparency - - WaterWaveSize - - WaterWaveSpeed - TerrainDetail: - superclass: Instance - events: [] - properties: - - ColorMap - - Face - - MaterialPattern - - MetalnessMap - - NormalMap - - RoughnessMap - - StudsPerTile - TerrainRegion: - superclass: Instance - events: [] - properties: - - IsSmooth - - SizeInCells - TestService: - superclass: Instance - events: - - ServerCollectConditionalResult - - ServerCollectResult - properties: - - AutoRuns - - Description - - ErrorCount - - ExecuteWithStudioRun - - Is30FpsThrottleEnabled - - IsPhysicsEnvironmentalThrottled - - IsSleepAllowed - - NumberOfPlayers - - SimulateSecondsLag - - TestCount - - Timeout - - WarnCount - TextBox: - superclass: GuiObject - events: - - FocusLost - - Focused - - ReturnPressedFromOnScreenKeyboard - properties: - - ClearTextOnFocus - - ContentText - - CursorPosition - - Font - - FontFace - - FontSize - - LineHeight - - ManualFocusRelease - - MaxVisibleGraphemes - - MultiLine - - OverlayNativeInput - - PlaceholderColor3 - - PlaceholderText - - ReturnKeyType - - RichText - - SelectionStart - - ShowNativeInput - - Text - - TextBounds - - TextColor - - TextColor3 - - TextEditable - - TextFits - - TextInputType - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextBoxService: - superclass: Instance - events: [] - properties: [] - TextButton: - superclass: GuiButton - events: [] - properties: - - ContentText - - Font - - FontFace - - FontSize - - LineHeight - - LocalizedText - - MaxVisibleGraphemes - - RichText - - Text - - TextBounds - - TextColor - - TextColor3 - - TextFits - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextChannel: - superclass: Instance - events: - - MessageReceived - properties: [] - TextChatCommand: - superclass: Instance - events: - - Triggered - properties: - - Enabled - - PrimaryAlias - - SecondaryAlias - TextChatConfigurations: - superclass: Instance - events: [] - properties: [] - TextChatMessage: - superclass: Instance - events: [] - properties: - - MessageId - - Metadata - - PrefixText - - Status - - Text - - TextChannel - - TextSource - - Timestamp - TextChatMessageProperties: - superclass: Instance - events: [] - properties: - - PrefixText - - Text - TextChatService: - superclass: Instance - events: - - MessageReceived - - SendingMessage - properties: - - ChatVersion - - CreateDefaultCommands - - CreateDefaultTextChannels - TextFilterResult: - superclass: Instance - events: [] - properties: [] - TextLabel: - superclass: GuiLabel - events: [] - properties: - - ContentText - - Font - - FontFace - - FontSize - - LineHeight - - LocalizedText - - MaxVisibleGraphemes - - RichText - - Text - - TextBounds - - TextColor - - TextColor3 - - TextFits - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextService: - superclass: Instance - events: [] - properties: [] - TextSource: - superclass: Instance - events: [] - properties: - - CanSend - - UserId - Texture: - superclass: Decal - events: [] - properties: - - OffsetStudsU - - OffsetStudsV - - StudsPerTileU - - StudsPerTileV - TextureGuiExperimental: - superclass: LayerCollector - events: [] - properties: - - Size - - TemporaryId - ThirdPartyUserService: - superclass: Instance - events: - - ActiveGamepadAdded - - ActiveGamepadRemoved - - ActiveUserSignedOut - properties: [] - ThreadState: - superclass: Instance - events: [] - properties: - - FrameCount - - Populated - - ThreadId - - ThreadName - TimerService: - superclass: Instance - events: [] - properties: [] - ToastNotificationService: - superclass: Instance - events: [] - properties: [] - Tool: - superclass: BackpackItem - events: - - Activated - - Deactivated - - Equipped - - Unequipped - properties: - - CanBeDropped - - Enabled - - Grip - - GripForward - - GripPos - - GripRight - - GripUp - - ManualActivationOnly - - RequiresHandle - - ToolTip - Torque: - superclass: Constraint - events: [] - properties: - - RelativeTo - - Torque - TorsionSpringConstraint: - superclass: Constraint - events: [] - properties: - - Coils - - CurrentAngle - - Damping - - LimitEnabled - - LimitsEnabled - - MaxAngle - - MaxTorque - - Radius - - Restitution - - Stiffness - TotalCountTimeIntervalItem: - superclass: StatsItem - events: [] - properties: [] - TouchInputService: - superclass: Instance - events: [] - properties: [] - TouchTransmitter: - superclass: Instance - events: [] - properties: [] - TracerService: - superclass: Instance - events: [] - properties: [] - TrackerLodController: - superclass: Instance - events: - - UpdateState - properties: - - AudioMode - - VideoExtrapolationMode - - VideoLodMode - - VideoMode - TrackerStreamAnimation: - superclass: Instance - events: [] - properties: [] - Trail: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - Brightness - - Color - - Enabled - - FaceCamera - - Lifetime - - LightEmission - - LightInfluence - - MaxLength - - MinLength - - Texture - - TextureLength - - TextureMode - - Transparency - - WidthScale - Translator: - superclass: Instance - events: [] - properties: - - LocaleId - TremoloSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Duty - - Frequency - TriangleMeshPart: - superclass: BasePart - events: [] - properties: - - CollisionFidelity - - MeshSize - TrussPart: - superclass: BasePart - events: [] - properties: - - Style - Tween: - superclass: TweenBase - events: [] - properties: - - Instance - - TweenInfo - TweenBase: - superclass: Instance - events: - - Completed - properties: - - PlaybackState - TweenService: - superclass: Instance - events: [] - properties: [] - UGCValidationService: - superclass: Instance - events: [] - properties: [] - UIAspectRatioConstraint: - superclass: UIConstraint - events: [] - properties: - - AspectRatio - - AspectType - - DominantAxis - UIBase: - superclass: Instance - events: [] - properties: [] - UIComponent: - superclass: UIBase - events: [] - properties: [] - UIConstraint: - superclass: UIComponent - events: [] - properties: [] - UICorner: - superclass: UIComponent - events: [] - properties: - - CornerRadius - UIGradient: - superclass: UIComponent - events: [] - properties: - - Color - - Enabled - - Offset - - Rotation - - Transparency - UIGridLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - AbsoluteCellCount - - AbsoluteCellSize - - CellPadding - - CellSize - - FillDirectionMaxCells - - StartCorner - UIGridStyleLayout: - superclass: UILayout - events: [] - properties: - - AbsoluteContentSize - - FillDirection - - HorizontalAlignment - - SortOrder - - VerticalAlignment - UILayout: - superclass: UIComponent - events: [] - properties: [] - UIListLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - Padding - UIPadding: - superclass: UIComponent - events: [] - properties: - - PaddingBottom - - PaddingLeft - - PaddingRight - - PaddingTop - UIPageLayout: - superclass: UIGridStyleLayout - events: - - PageEnter - - PageLeave - - Stopped - properties: - - Animated - - Circular - - CurrentPage - - EasingDirection - - EasingStyle - - GamepadInputEnabled - - Padding - - ScrollWheelInputEnabled - - TouchInputEnabled - - TweenTime - UIScale: - superclass: UIComponent - events: [] - properties: - - Scale - UISizeConstraint: - superclass: UIConstraint - events: [] - properties: - - MaxSize - - MinSize - UIStroke: - superclass: UIComponent - events: [] - properties: - - ApplyStrokeMode - - Color - - Enabled - - LineJoinMode - - Thickness - - Transparency - UITableLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - FillEmptySpaceColumns - - FillEmptySpaceRows - - MajorAxis - - Padding - UITextSizeConstraint: - superclass: UIConstraint - events: [] - properties: - - MaxTextSize - - MinTextSize - UnionOperation: - superclass: PartOperation - events: [] - properties: [] - UniversalConstraint: - superclass: Constraint - events: [] - properties: - - LimitsEnabled - - MaxAngle - - Radius - - Restitution - UnvalidatedAssetService: - superclass: Instance - events: [] - properties: [] - UserGameSettings: - superclass: Instance - events: - - FullscreenChanged - - PerformanceStatsVisibleChanged - - StudioModeChanged - properties: - - AllTutorialsDisabled - - CameraMode - - CameraYInverted - - ChatVisible - - ComputerCameraMovementMode - - ComputerMovementMode - - ControlMode - - DefaultCameraID - - Fullscreen - - GamepadCameraSensitivity - - GraphicsQualityLevel - - HasEverUsedVR - - IsUsingCameraYInverted - - IsUsingGamepadCameraSensitivity - - MasterVolume - - MicroProfilerWebServerEnabled - - MicroProfilerWebServerIP - - MicroProfilerWebServerPort - - MouseSensitivity - - MouseSensitivityFirstPerson - - MouseSensitivityThirdPerson - - OnScreenProfilerEnabled - - OnboardingsCompleted - - PerformanceStatsVisible - - PlayerHeight - - RCCProfilerRecordFrameRate - - RCCProfilerRecordTimeFrame - - RotationType - - SavedQualityLevel - - StartMaximized - - StartScreenPosition - - StartScreenSize - - TouchCameraMovementMode - - TouchMovementMode - - UsedCoreGuiIsVisibleToggle - - UsedCustomGuiIsVisibleToggle - - UsedHideHudShortcut - - VREnabled - - VRPlayMode - - VRRotationIntensity - - VRSafetyBubbleMode - - VRSmoothRotationEnabled - - VignetteEnabled - UserInputService: - superclass: Instance - events: - - DeviceAccelerationChanged - - DeviceGravityChanged - - DeviceRotationChanged - - GamepadConnected - - GamepadDisconnected - - InputBegan - - InputChanged - - InputEnded - - JumpRequest - - LastInputTypeChanged - - PointerAction - - StatusBarTapped - - TextBoxFocusReleased - - TextBoxFocused - - TouchEnded - - TouchLongPress - - TouchMoved - - TouchPan - - TouchPinch - - TouchRotate - - TouchStarted - - TouchSwipe - - TouchTap - - TouchTapInWorld - - UserCFrameChanged - - WindowFocusReleased - - WindowFocused - properties: - - AccelerometerEnabled - - BottomBarSize - - GamepadEnabled - - GazeSelectionEnabled - - GyroscopeEnabled - - KeyboardEnabled - - LegacyInputEventsEnabled - - ModalEnabled - - MouseBehavior - - MouseDeltaSensitivity - - MouseEnabled - - MouseIcon - - MouseIconEnabled - - NavBarSize - - OnScreenKeyboardAnimationDuration - - OnScreenKeyboardPosition - - OnScreenKeyboardSize - - OnScreenKeyboardVisible - - OverrideMouseIconBehavior - - RightBarSize - - StatusBarSize - - TouchEnabled - - UserHeadCFrame - - VREnabled - UserService: - superclass: Instance - events: [] - properties: [] - UserSettings: - superclass: GenericSettings - events: [] - properties: [] - UserStorageService: - superclass: LocalStorageService - events: [] - properties: [] - VRService: - superclass: Instance - events: - - NavigationRequested - - TouchpadModeChanged - - UserCFrameChanged - - UserCFrameEnabled - properties: - - AutomaticScaling - - DidPointerHit - - FadeOutViewOnCollision - - GuiInputUserCFrame - - LaserDistance - - PointerHitCFrame - - VRDeviceAvailable - - VRDeviceName - - VREnabled - - VRSessionState - ValueBase: - superclass: Instance - events: [] - properties: [] - Vector3Curve: - superclass: Instance - events: [] - properties: [] - Vector3Value: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - VectorForce: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - Force - - RelativeTo - VehicleController: - superclass: Controller - events: [] - properties: [] - VehicleSeat: - superclass: BasePart - events: [] - properties: - - AreHingesDetected - - Disabled - - HeadsUpDisplay - - MaxSpeed - - Occupant - - Steer - - SteerFloat - - Throttle - - ThrottleFloat - - Torque - - TurnSpeed - VelocityMotor: - superclass: JointInstance - events: [] - properties: - - CurrentAngle - - DesiredAngle - - Hole - - MaxVelocity - VersionControlService: - superclass: Instance - events: [] - properties: - - ScriptCollabEnabled - VideoCaptureService: - superclass: Instance - events: - - DevicesChanged - - Error - - Started - - Stopped - properties: - - Active - - CameraID - VideoFrame: - superclass: GuiObject - events: - - DidLoop - - Ended - - Loaded - - Paused - - Played - properties: - - IsLoaded - - Looped - - Playing - - Resolution - - TimeLength - - TimePosition - - Video - - Volume - ViewportFrame: - superclass: GuiObject - events: [] - properties: - - Ambient - - CurrentCamera - - ImageColor3 - - ImageTransparency - - IsMirrored - - LightColor - - LightDirection - VirtualInputManager: - superclass: Instance - events: - - PlaybackCompleted - - RecordingCompleted - properties: - - AdditionalLuaState - VirtualUser: - superclass: Instance - events: [] - properties: [] - VisibilityCheckDispatcher: - superclass: Instance - events: [] - properties: [] - VisibilityService: - superclass: Instance - events: [] - properties: [] - Visit: - superclass: Instance - events: [] - properties: [] - VoiceChatInternal: - superclass: Instance - events: - - LocalPlayerModerated - - ParticipantsStateChanged - - PlayerMicActivitySignalChange - - StateChanged - properties: - - VoiceChatState - VoiceChatService: - superclass: Instance - events: [] - properties: - - EnableDefaultVoice - - VoiceChatEnabledForPlaceOnRcc - - VoiceChatEnabledForUniverseOnRcc - VoiceSource: - superclass: Instance - events: [] - properties: - - UserId - WedgePart: - superclass: FormFactorPart - events: [] - properties: [] - Weld: - superclass: JointInstance - events: [] - properties: [] - WeldConstraint: - superclass: Instance - events: [] - properties: - - Active - - Enabled - - Part0 - - Part1 - WireframeHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Scale - Workspace: - superclass: WorldRoot - events: - - PersistentLoaded - properties: - - AllowThirdPartySales - - ClientAnimatorThrottling - - CurrentCamera - - DistributedGameTime - - FallenPartsDestroyHeight - - FilteringEnabled - - GlobalWind - - Gravity - - HumanoidOnlySetCollisionsOnStateChange - - InterpolationThrottling - - MeshPartHeadsAndAccessories - - PhysicsSteppingMethod - - RejectCharacterDeletions - - ReplicateInstanceDestroySetting - - Retargeting - - SignalBehavior - - StreamOutBehavior - - StreamingEnabled - - StreamingIntegrityMode - - StreamingMinRadius - - StreamingTargetRadius - - Terrain - - TouchesUseCollisionGroups - WorldModel: - superclass: WorldRoot - events: [] - properties: [] - WorldRoot: - superclass: Model - events: [] - properties: [] - WrapLayer: - superclass: BaseWrap - events: [] - properties: - - AutoSkin - - BindOffset - - Color - - DebugMode - - Enabled - - Order - - Puffiness - - ReferenceMeshId - - ReferenceOrigin - - ReferenceOriginWorld - - ShrinkFactor - WrapTarget: - superclass: BaseWrap - events: [] - properties: - - Color - - DebugMode - - Stiffness diff --git a/Modules/ClassIndex/selene.toml b/Modules/ClassIndex/selene.toml deleted file mode 100644 index c1911be..0000000 --- a/Modules/ClassIndex/selene.toml +++ /dev/null @@ -1 +0,0 @@ -std = "roblox+testez" \ No newline at end of file diff --git a/Modules/ClassIndex/testez.yml b/Modules/ClassIndex/testez.yml deleted file mode 100644 index 5c1adda..0000000 --- a/Modules/ClassIndex/testez.yml +++ /dev/null @@ -1,53 +0,0 @@ ---- -globals: - FIXME: - args: - - required: false - type: string - FOCUS: - args: [] - SKIP: - args: [] - afterAll: - args: - - type: function - afterEach: - args: - - type: function - beforeAll: - args: - - type: function - beforeEach: - args: - - type: function - describe: - args: - - type: string - - type: function - describeFOCUS: - args: - - type: string - - type: function - describeSKIP: - args: - - type: string - - type: function - expect: - args: - - type: any - it: - args: - - type: string - - type: function - itFIXME: - args: - - type: string - - type: function - itFOCUS: - args: - - type: string - - type: function - itSKIP: - args: - - type: string - - type: function \ No newline at end of file diff --git a/Modules/ClassIndex/wally.toml b/Modules/ClassIndex/wally.toml deleted file mode 100644 index be6b21a..0000000 --- a/Modules/ClassIndex/wally.toml +++ /dev/null @@ -1,18 +0,0 @@ -[package] -name = "4x8matrix/class-index" -version = "2.0.0" -realm = "shared" -registry = "https://github.com/UpliftGames/wally-index" -licence = "MIT" -authors = ["AsynchronousMatrix"] - -description = "A package that helps to supply metadata about classes - for instance; fetching what properties a specific class has." - -exclude = ["**"] -include = ["Source", "Source/*", "default.project.json", "wally.toml"] - -[dev-dependencies] -TestEz = "roblox/testez@0.4.1" -EmoticonReporter = "4x8matrix/emoticon-reporter@1.0.0" - -[dependencies] \ No newline at end of file diff --git a/Modules/Console/.vscode/settings.json b/Modules/Console/.vscode/settings.json deleted file mode 100644 index ce29214..0000000 --- a/Modules/Console/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "luau-lsp.sourcemap.rojoProjectFile": "development.project.json" -} \ No newline at end of file diff --git a/Modules/Console/Source/init.luau b/Modules/Console/Source/init.luau deleted file mode 100644 index a8a069e..0000000 --- a/Modules/Console/Source/init.luau +++ /dev/null @@ -1,726 +0,0 @@ ---!strict - -local RunService = game:GetService("RunService") - -local Signal = require((script :: any).Parent.Signal) :: any - -local DEFAULT_LOGGING_SCHEMA = "[%s][%s] :: %s" -local MAXIMUM_CACHED_LOGS = 500 -local ARBITRARY_LARGE_NUMBER = 9999999 -local PRETTY_TABLE_TAB = string.rep("\t", (RunService:IsStudio() and 1) or 5) - ---[=[ - @class Console - - A package that helps to organise the Roblox output, primarily offering developers quality of life features over the default Roblox output behaviour. -]=] -local Console = {} - ---[=[ - @prop id string - @within Console -]=] - ---[=[ - @prop level number - @within Console -]=] - ---[=[ - @prop schema string - @within Console -]=] - ---[=[ - @prop enabled boolean - @within Console -]=] - ---[=[ - @prop logs { } - @within Console -]=] - -Console.Type = "Console" - -Console.LogLevel = 1 -Console.Schema = DEFAULT_LOGGING_SCHEMA - -Console.Cache = setmetatable({}, { __mode = "kv" }) - -Console.Functions = {} -Console.Interface = {} -Console.Instances = {} -Console.Prototype = {} - -Console.Interface.onMessageOut = Signal.new() -Console.Interface.LogLevel = { - ["Debug"] = 1, - ["Log"] = 2, - ["Warn"] = 3, - ["Error"] = 4, - ["Critical"] = 5, -} - --- // QoL functions -function Console.Functions:AddScopeToString(string) - local stringSplit = string.split(string, "\n") - - for index, value in stringSplit do - if index == 1 then - continue - end - - stringSplit[index] = string.format("%s%s", PRETTY_TABLE_TAB, value) - end - - return table.concat(stringSplit, "\n") -end - -function Console.Functions:ToPrettyString(...) - local stringifiedObjects = {} - - for _, object in { ... } do - local objectType = typeof(object) - - if objectType == "table" then - if Console.Cache[object] then - table.insert(stringifiedObjects, `RecursiveTable<{tostring(object)}>`) - - continue - else - Console.Cache[object] = true - end - - local tableSchema = "{\n" - local tableEntries = 0 - - for key, value in object do - tableEntries += 1 - - key = self:ToPrettyString(key) - - if typeof(value) == "table" then - value = self:AddScopeToString(self:ToPrettyString(value)) - else - value = self:ToPrettyString(value) - end - - tableSchema ..= string.format("%s[%s] = %s,\n", PRETTY_TABLE_TAB, key, value) - end - - table.insert(stringifiedObjects, tableEntries == 0 and "{ }" or tableSchema .. "}") - elseif objectType == "string" then - table.insert(stringifiedObjects, string.format('"%s"', object)) - else - table.insert(stringifiedObjects, tostring(object)) - end - end - - return table.concat(stringifiedObjects, " ") -end - -function Console.Functions:FormatVaradicArguments(...) - local args = { ... } - - local message = string.rep("%s ", #args) - local messageType = typeof(args[1]) - - if messageType == "string" then - local sourceString = table.remove(args, 1) - local filteredString = string.gsub(tostring(sourceString), "%%", "%%%%") - - message = filteredString - end - - for index, value in args do - args[index] = self:ToPrettyString(value) - end - - table.clear(Console.Cache :: any) - - return string.format(message, table.unpack(args)) -end - -function Console.Functions:FormatMessageSchema(traceback: boolean, schema: string, source: string, ...) - source = source or debug.info(2, "s") - - local additionalSource = "" - - if traceback then - local tracebackData = debug.traceback("", 3) - - additionalSource = "\n" - .. string.format(schema, source, `traceback`, `begin`) - .. tracebackData - .. string.format(schema, source, `traceback`, `end`) - end - - return string.format(schema, source, ...) .. additionalSource -end - ---[=[ - @method Assert - @within Console - - @param condition boolean? - @param message ... - - Assertions, however written through our Console, if the condition isn't met, the Console will call :error on itself with the given message. - - ```lua - local Console = Console.new("Console") - - Console:Assert(1 == 1, "Hello, World!") -- > will output: nothing - Console:Assert(1 == 2, "Hello, World!") -- > will output: [Console][error]: "Hello, World!" - ``` -]=] -function Console.Prototype:Assert(condition, ...): () - if not condition then - self:Error(...) - end -end - ---[=[ - @method Critical - @within Console - - @param message ... - - Create a new log for 'critical', critical being deployed in a situation where something has gone terribly wrong. - - ```lua - local Console = Console.new("Console") - - Console:Critical("Hello, World!") -- > will output: [Console][critical]: "Hello, World!" - ``` -]=] -function Console.Prototype:Critical(...): () - local outputMessage = Console.Functions:FormatMessageSchema( - self.traceback, - self.schema, - self.id, - "critical", - Console.Functions:FormatVaradicArguments(...) - ) - - table.insert(self.logs, 1, { "critical", outputMessage, self.id }) - if #self.logs > MAXIMUM_CACHED_LOGS then - table.remove(self.logs, MAXIMUM_CACHED_LOGS) - end - - local logLevel = if self.level > Console.LogLevel or self.orphaned then self.level else Console.LogLevel - - if logLevel > Console.Interface.LogLevel.Critical then - local thread = coroutine.running() - - task.defer(function() - task.cancel(thread) - end) - - return coroutine.yield() - end - - Console.Interface.onMessageOut:Fire(self.id or "", outputMessage) - - error(outputMessage, ARBITRARY_LARGE_NUMBER) -end - ---[=[ - @method Error - @within Console - - @param message ... - - Create a new log for 'error', this is for errors raised through a developers code on purpose. - - ```lua - local Console = Console.new("Console") - - Console:Error("Hello, World!") -- > will output: [Console][error]: "Hello, World!" - ``` -]=] -function Console.Prototype:Error(...): () - local outputMessage = Console.Functions:FormatMessageSchema( - self.traceback, - self.schema, - self.id, - "error", - Console.Functions:FormatVaradicArguments(...) - ) - - table.insert(self.logs, 1, { "error", outputMessage, self.id }) - if #self.logs > MAXIMUM_CACHED_LOGS then - table.remove(self.logs, MAXIMUM_CACHED_LOGS) - end - - local logLevel = if self.level > Console.LogLevel or self.orphaned then self.level else Console.LogLevel - - if logLevel > Console.Interface.LogLevel.Error then - local thread = coroutine.running() - - task.defer(function() - task.cancel(thread) - end) - - return coroutine.yield() - end - - Console.Interface.onMessageOut:Fire(self.id or "", outputMessage) - - error(outputMessage, ARBITRARY_LARGE_NUMBER) -end - ---[=[ - @method Warn - @within Console - - @param message ... - - Create a new log for 'warn', this is for informing developers about something which takes precedence over a log - - ```lua - local Console = Console.new("Console") - - Console:Warn("Hello, World!") -- > will output: [Console][warn]: "Hello, World!" - ``` -]=] -function Console.Prototype:Warn(...): () - local outputMessage = Console.Functions:FormatMessageSchema( - self.traceback, - self.schema, - self.id, - "warn", - Console.Functions:FormatVaradicArguments(...) - ) - - table.insert(self.logs, 1, { "warn", outputMessage, self.id }) - if #self.logs > MAXIMUM_CACHED_LOGS then - table.remove(self.logs, MAXIMUM_CACHED_LOGS) - end - - local logLevel = if self.level > Console.LogLevel or self.orphaned then self.level else Console.LogLevel - - if logLevel > Console.Interface.LogLevel.Warn then - return - end - - Console.Interface.onMessageOut:Fire(self.id or "", outputMessage) - - warn(outputMessage) -end - ---[=[ - @method Log - @within Console - - @param message ... - - Create a new log for 'log', this is for general logging - ideally what we would use in-place of print. - - ```lua - local Console = Console.new("Console") - - Console:Log("Hello, World!") -- > will output: [Console][log]: "Hello, World!" - ``` -]=] -function Console.Prototype:Log(...): () - local outputMessage = Console.Functions:FormatMessageSchema( - self.traceback, - self.schema, - self.id, - "log", - Console.Functions:FormatVaradicArguments(...) - ) - - table.insert(self.logs, 1, { "log", outputMessage, self.id }) - if #self.logs > MAXIMUM_CACHED_LOGS then - table.remove(self.logs, MAXIMUM_CACHED_LOGS) - end - - local logLevel = if self.level > Console.LogLevel or self.orphaned then self.level else Console.LogLevel - - if logLevel > Console.Interface.LogLevel.Log then - return - end - - Console.Interface.onMessageOut:Fire(self.id or "", outputMessage) - - print(outputMessage) -end - ---[=[ - @method Debug - @within Console - - @param message ... - - Create a new log for 'debug', typically we should only use 'debug' when debugging code or leaving hints for developers. - - ```lua - local Console = Console.new("Console") - - Console:Debug("Hello, World!") -- > will output: [Console][debug]: "Hello, World!" - ``` -]=] -function Console.Prototype:Debug(...): () - local outputMessage = Console.Functions:FormatMessageSchema( - self.traceback, - self.schema, - self.id, - "debug", - Console.Functions:FormatVaradicArguments(...) - ) - - table.insert(self.logs, 1, { "debug", outputMessage, self.id }) - if #self.logs > MAXIMUM_CACHED_LOGS then - table.remove(self.logs, MAXIMUM_CACHED_LOGS) - end - - local logLevel = if self.level > Console.LogLevel or self.orphaned then self.level else Console.LogLevel - - if logLevel > Console.Interface.LogLevel.Debug then - return - end - - Console.Interface.onMessageOut:Fire(self.id or "", outputMessage) - - print(outputMessage) -end - ---[=[ - @method SetLogLevel - @within Console - - @param logLevel number - - Set an log level for this Console, log levels assigned per Console override the global log level. - - LogLevels that are by default set in `Console`: - - - 1 = Debug - - 2 = Log - - 3 = Warn - - 4 = Error - - 5 = Critical - - - As an alternative, Console provides a `LogLevel` enum, you can access this enum like: `Console.LogLevel.Debug` - - - ```lua - local Console = ConsoleModule.new("Console") - - ConsoleModule.setGlobalLogLevel(Console.LogLevel.Warn) - - Console:Log("Hello, World!") -- this will NOT output anything - Console:Warn("Hello, World!") -- this will output something - - Console:SetLogLevel(Console.LogLevel.Log) - - Console:Log("Hello, World!") -- this will output something - Console:Warn("Hello, World!") -- this will output something - ``` -]=] -function Console.Prototype:SetLogLevel(logLevel: number): () - self.level = logLevel -end - ---[=[ - @method SetTracebackEnabled - @within Console - - @param traceback boolean - - @since 2.1.0 - - Enable/Disable traceback logging for the 'Console' object - - ```lua - local reporter = Console.new("🔥 CoolReporter") - - reporter:SetTracebackEnabled(true) - reporter:Log("Hello, World") --[[ - ["🔥 CoolReporter"]["log"]: "Hello, World" - ["🔥 CoolReporter"]["traceback"]: begin - Script 'ServerScriptService.Place.Services.GameLoopService', Line 30 - function OnGameStateBlocking - Script 'ServerScriptService.Place.Services.GameLoopService', Line 48 - Script 'ReplicatedStorage.Packages._Index.sleitnick_signal@1.5.0.signal', Line 56 - function acquireRunnerThreadAndCallEventHandler - Script 'ReplicatedStorage.Packages._Index.sleitnick_signal@1.5.0.signal', Line 67 - function runEventHandlerInFreeThread - ["🔥 CoolReporter"]["traceback"]: end - ]] - ``` -]=] -function Console.Prototype:SetTracebackEnabled(traceback: boolean): () - self.traceback = traceback or false -end - ---[=[ - @method SetState - @within Console - - @param state: boolean - - Sets the state of the Console, state depicts if the Console can log messages into the output. - - ```lua - local Console = Console.new("Console") - - Console:Log("Hello, World!") -- > will output: [Console][log]: "Hello, World!" - Console:SetState(false) - Console:Log("Hello, World!") -- > will output: nothing - ``` -]=] -function Console.Prototype:SetState(state: boolean): () - self.enabled = state -end - ---[=[ - @method FetchLogs - @within Console - - @param count: number? - - @return { [number]: { logType: string, message: string, logId: string } } - - Fetch an array of logs generated through this Console - - ```lua - local Console = Console.new("Console") - - Console:Log("Hello, World!") -- > [Console][log]: "Hello, World!" - Console:FetchLogs() -- > [[ - { - logType = "log", - message = "[Console][log]: \"Hello, World!\"", - logId = "Console" - } - ]]-- - ``` -]=] -function Console.Prototype:FetchLogs(count: number): { [number]: { logType: string, message: string, logId: string } } - local fetchedLogs = {} - - if not count then - return self.logs - end - - for index = 1, count do - if not self.logs[index] then - return fetchedLogs - end - - table.insert(fetchedLogs, self.logs[index]) - end - - return fetchedLogs -end - ---[=[ - @method ToString - @within Console - - @return string - - Returns a prettified string version of the Console table. - - ```lua - local Value = State.new(0) - - print(tostring(Value)) -- Value<0> - ``` -]=] -function Console.Prototype:ToString(): string - return `{Console.Type}<"{tostring(self.id)}">` -end - ---[=[ - @function setGlobalLogLevel - @within Console - - @param logLevel number - - Set the global log level for all Consoles, a log level is the priority of a log, priorities are represented by a number. - - LogLevels that are by default set in `Console`: - - - 1 = Debug - - 2 = Log - - 3 = Warn - - 4 = Error - - 5 = Critical - - - As an alternative, Console provides a `LogLevel` enum, you can access this enum like: `Console.LogLevel.Debug` - - - ```lua - Console.setGlobalLogLevel(Console.LogLevel.Warn) - - Console:log("Hello, World!") -- this will NOT output anything - Console:warn("Hello, World!") -- this will output something - ``` -]=] -function Console.Interface.setGlobalLogLevel(logLevel: number): () - Console.LogLevel = logLevel -end - ---[=[ - @function setGlobalSchema - @within Console - - @param schema string - - Set the global schema for all Consoles, a schema is how the log is displayed in the console. - - ```lua - Console.setGlobalSchema("[%s][%s]: %s") - - Console:log("Hello, World!") -- > [][log]: Hello, World! - ``` -]=] -function Console.Interface.setGlobalSchema(schema: string): () - Console.Schema = schema -end - ---[=[ - @function get - @within Console - - @param logId string - - @return Console? - - Fetch a `Console` object through it's given `logId` - - ```lua - Console.get("Console"):log("Hello, World!") -- > [Console][log]: "Hello, World!" - ``` -]=] -function Console.Interface.get(logId: string): Console? - return Console.Instances[logId] -end - ---[=[ - @function new - @within Console - - @param logId string? - @param schema string? - - @return Console - - Constructor to generate a `Console` prototype - - ```lua - Console.new("Example"):log("Hello, World!") -- > [Example][log]: "Hello, World!" - ``` -]=] -function Console.Interface.new(logId: string?, schema: string?): Console - local self = setmetatable({ - id = logId, - level = Console.Interface.LogLevel.Debug, - schema = schema or Console.Schema, - traceback = false, - enabled = true, - orphaned = false, - logs = {}, - }, { - __index = Console.Prototype, - __type = Console.Type, - __tostring = function(obj) - return obj:ToString() - end, - }) - - if logId then - Console.Instances[self.id] = self - end - - return self -end - ---[=[ - @function newOrphaned - @within Console - - @since since 2.0.4 - - @param logId string? - @param schema string? - - @return Console - - Constructor to generate an orphaned `Console` prototype, orphaned in this case meaning a console object that the Console library will - not track or monitor, thus any global console updates will not be applied to this console object. - - This should be used when using `Console` in a library so that any game `Consoles` are isolated from the libraries `Consoles` - - ```lua - Console.newOrphaned("Example"):log("Hello, World!") -- > [Example][log]: "Hello, World!" - ``` -]=] -function Console.Interface.newOrphaned(logId: string?, schema: string?): Console - local self = setmetatable({ - id = logId, - level = Console.Interface.LogLevel.Debug, - schema = schema or DEFAULT_LOGGING_SCHEMA, - enabled = true, - orphaned = true, - logs = {}, - }, { - __index = Console.Prototype, - __type = Console.Type, - __tostring = function(obj) - return obj:ToString() - end, - }) - - return self -end - ---[=[ - @function is - @within Console - - @param object Console? - - @return boolean - - Validate if an object is a 'Console' object - - ```lua - local object = Console.new("Test") - - if Console.is(object) then - ... - end - ``` -]=] -function Console.Interface.is(object: Console?): boolean - if not object or type(object) ~= "table" then - return false - end - - local metatable = getmetatable(object) - - return metatable and metatable.__type == Console.Type -end - -export type Console = typeof(setmetatable( - {} :: { - id: string?, - level: number, - schema: string, - traceback: boolean?, - enabled: boolean, - orphaned: boolean?, - logs: {}, - }, - {} :: { - __index: typeof(Console.Prototype), - __type: string, - } -)) - -return Console.Interface diff --git a/Modules/Console/Source/init.spec.luau b/Modules/Console/Source/init.spec.luau deleted file mode 100644 index bb8d3e6..0000000 --- a/Modules/Console/Source/init.spec.luau +++ /dev/null @@ -1,113 +0,0 @@ -return function() - local ConsoleModule = require(script.Parent) - - it("Should be able to generate a Logger object", function() - expect(function() - ConsoleModule.new("Example") - end).never.to.throw() - end) - - it("Should be able to detect 'Console' objects", function() - expect(function() - local consoleObject = ConsoleModule.new("Example") - - expect(ConsoleModule.is(consoleObject)).to.equal(true) - end).never.to.throw() - end) - - it("Should be able to log recursive tables", function() - expect(function() - local consoleObject = ConsoleModule.new("Example") - - local recursiveTable = { } - - recursiveTable.b = { c = recursiveTable } - - -- consoleObject:SetLogLevel(10) - consoleObject:Log(recursiveTable) - end).never.to.throw() - end) - - describe("Ability to 'fetch' previously logged messages", function() - it("Should be able to fetch logs by order", function() - local consoleObject = ConsoleModule.new("Example") - - consoleObject:SetLogLevel(10) - - consoleObject:Log(0) - consoleObject:Warn(0) - - expect(consoleObject:FetchLogs(1)[1][1]).to.equal("warn") - expect(consoleObject:FetchLogs(2)[2][1]).to.equal("log") - end) - end) - - describe("Assertions, Critical, Error, Warn, Logs & Debug calls", function() - it("Should be able to assert conditions correctly", function() - expect(function() - local consoleObject = ConsoleModule.new("Example") - - consoleObject:Assert(true, "Test") - end).never.to.throw() - - expect(function() - local consoleObject = ConsoleModule.new("Example") - - consoleObject:Assert(false, "Test") - end).to.throw() - end) - - it("Should be able to critical message", function() - local consoleObject = ConsoleModule.new("Example") - - expect(function() - consoleObject:Critical("Test") - end).to.throw() - - expect(consoleObject:FetchLogs(1)[1][1]).to.equal("critical") - end) - - it("Should be able to error message", function() - local consoleObject = ConsoleModule.new("Example") - - expect(function() - consoleObject:Error("Test") - end).to.throw() - - expect(consoleObject:FetchLogs(1)[1][1]).to.equal("error") - end) - - it("Should be able to warn message", function() - local consoleObject = ConsoleModule.new("Example") - - expect(function() - consoleObject:SetLogLevel(10) - consoleObject:Warn("Test") - end).never.to.throw() - - expect(consoleObject:FetchLogs(1)[1][1]).to.equal("warn") - end) - - it("Should be able to log message", function() - local consoleObject = ConsoleModule.new("Example") - - expect(function() - consoleObject:SetLogLevel(10) - consoleObject:Log("Test") - end).never.to.throw() - - expect(consoleObject:FetchLogs(1)[1][1]).to.equal("log") - end) - - it("Should be able to debug message", function() - local consoleObject = ConsoleModule.new("Example") - - expect(function() - consoleObject:SetLogLevel(10) - consoleObject:Debug("Test") - end).never.to.throw() - - expect(consoleObject:FetchLogs(1)[1][1]).to.equal("debug") - end) - end) -end \ No newline at end of file diff --git a/Modules/Console/Tests/Development.server.luau b/Modules/Console/Tests/Development.server.luau deleted file mode 100644 index 5a46e32..0000000 --- a/Modules/Console/Tests/Development.server.luau +++ /dev/null @@ -1,15 +0,0 @@ --- local ReplicatedStorage = game:GetService("ReplicatedStorage") - --- local Console = require(ReplicatedStorage.Packages.Console) - --- local reporter = Console.newOrphaned("Orphan-Log") - --- task.spawn(function() --- reporter:Critical(1) --- end) - --- Console.setGlobalLogLevel(Console.LogLevel.Critical + 10) - --- task.spawn(function() --- reporter:Critical(2) --- end) diff --git a/Modules/Console/Tests/Runtime.server.luau b/Modules/Console/Tests/Runtime.server.luau deleted file mode 100644 index 72d9abb..0000000 --- a/Modules/Console/Tests/Runtime.server.luau +++ /dev/null @@ -1,18 +0,0 @@ -local ReplicatedStorage = game:GetService("ReplicatedStorage") - -local EXECUTE_PROJECT_TESTEZ_TESTS = true - -if EXECUTE_PROJECT_TESTEZ_TESTS then - local EmoticonReporter = require(ReplicatedStorage.DevPackages.EmoticonReporter) - local TestEz = require(ReplicatedStorage.DevPackages.TestEz) - - local Reporter = EmoticonReporter.new() - - print("[TestRunner]: TestEZ Running, please be patient if you're running tests on a LIVE environment.") - - TestEz.TestBootstrap:run({ - ReplicatedStorage.Packages.Console, - }, Reporter) - - Reporter:Print() -end diff --git a/Modules/Console/aftman.toml b/Modules/Console/aftman.toml deleted file mode 100644 index 349f6b9..0000000 --- a/Modules/Console/aftman.toml +++ /dev/null @@ -1,9 +0,0 @@ -# This file lists tools managed by Aftman, a cross-platform toolchain manager. -# For more information, see https://github.com/LPGhatguy/aftman - -# To add a new tool, add an entry to this table. - -[tools] -rojo = "rojo-rbx/rojo@7.3.0" -selene = "Kampfkarren/selene@0.25.0" -wally = "UpliftGames/wally@0.3.2" \ No newline at end of file diff --git a/Modules/Console/default.project.json b/Modules/Console/default.project.json deleted file mode 100644 index 2512d6e..0000000 --- a/Modules/Console/default.project.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "name": "Console", - "tree": { - "$path": "Source" - } -} \ No newline at end of file diff --git a/Modules/Console/development.project.json b/Modules/Console/development.project.json deleted file mode 100644 index 5ba18f2..0000000 --- a/Modules/Console/development.project.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "name": "console", - "tree": { - "$className": "DataModel", - - "Players": { - "$className": "Players", - "$properties": { - "CharacterAutoLoads": false - } - }, - - "ReplicatedStorage": { - "$className": "ReplicatedStorage", - "$ignoreUnknownInstances": true, - - "Packages": { - "$className": "Folder", - "$path": "Packages", - - "Console": { - "$path": "Source" - } - }, - - "DevPackages": { - "$className": "Folder", - "$path": "DevPackages" - } - }, - - "ServerScriptService": { - "$className": "ServerScriptService", - "$ignoreUnknownInstances": true, - "$path": "Tests" - } - } -} \ No newline at end of file diff --git a/Modules/Console/roblox.yml b/Modules/Console/roblox.yml deleted file mode 100644 index e4089d3..0000000 --- a/Modules/Console/roblox.yml +++ /dev/null @@ -1,16959 +0,0 @@ -# This file was @generated by generate-roblox-std at 2023-04-11 16:38:39.388332415 +01:00 -base: luau -name: roblox -globals: - Axes.new: - args: - - type: '...' - must_use: true - BrickColor.Black: - args: [] - must_use: true - BrickColor.Blue: - args: [] - must_use: true - BrickColor.DarkGray: - args: [] - must_use: true - BrickColor.Gray: - args: [] - must_use: true - BrickColor.Green: - args: [] - must_use: true - BrickColor.Red: - args: [] - must_use: true - BrickColor.White: - args: [] - must_use: true - BrickColor.Yellow: - args: [] - must_use: true - BrickColor.new: - args: - - type: any - - required: false - type: number - - required: false - type: number - must_use: true - BrickColor.palette: - args: - - type: number - must_use: true - BrickColor.random: - args: [] - must_use: true - CFrame.Angles: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - CFrame.fromAxisAngle: - args: - - type: - display: Vector3 - - type: number - must_use: true - CFrame.fromEulerAngles: - args: - - type: number - - type: number - - type: number - - required: false - type: - display: RotationOrder - must_use: true - CFrame.fromEulerAnglesXYZ: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.fromEulerAnglesYXZ: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.fromMatrix: - args: - - type: - display: Vector3 - - type: - display: Vector3 - - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - CFrame.fromOrientation: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.identity: - property: read-only - CFrame.lookAt: - args: - - type: - display: Vector3 - - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - CFrame.new: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - CatalogSearchParams.new: - args: [] - must_use: true - Color3.fromHSV: - args: - - type: number - - type: number - - type: number - must_use: true - Color3.fromHex: - args: - - type: string - must_use: true - Color3.fromRGB: - args: - - type: number - - type: number - - type: number - must_use: true - Color3.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Color3.toHSV: - args: - - type: - display: Color3 - must_use: true - ColorSequence.new: - args: - - type: any - - required: false - type: - display: Color3 - must_use: true - ColorSequenceKeypoint.new: - args: - - type: number - - type: - display: Color3 - must_use: true - DateTime.fromIsoDate: - args: - - type: string - must_use: true - DateTime.fromLocalTime: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - DateTime.fromUniversalTime: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - DateTime.fromUnixTimestamp: - args: - - type: number - must_use: true - DateTime.fromUnixTimestampMillis: - args: - - type: number - must_use: true - DateTime.now: - args: [] - must_use: true - DebuggerManager: - args: [] - must_use: true - DockWidgetPluginGuiInfo.new: - args: - - required: false - type: - display: InitialDockState - - required: false - type: bool - - required: false - type: bool - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Enum.AccessoryType.Back: - struct: EnumItem - Enum.AccessoryType.DressSkirt: - struct: EnumItem - Enum.AccessoryType.Eyebrow: - struct: EnumItem - Enum.AccessoryType.Eyelash: - struct: EnumItem - Enum.AccessoryType.Face: - struct: EnumItem - Enum.AccessoryType.Front: - struct: EnumItem - Enum.AccessoryType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AccessoryType.Hair: - struct: EnumItem - Enum.AccessoryType.Hat: - struct: EnumItem - Enum.AccessoryType.Jacket: - struct: EnumItem - Enum.AccessoryType.LeftShoe: - struct: EnumItem - Enum.AccessoryType.Neck: - struct: EnumItem - Enum.AccessoryType.Pants: - struct: EnumItem - Enum.AccessoryType.RightShoe: - struct: EnumItem - Enum.AccessoryType.Shirt: - struct: EnumItem - Enum.AccessoryType.Shorts: - struct: EnumItem - Enum.AccessoryType.Shoulder: - struct: EnumItem - Enum.AccessoryType.Sweater: - struct: EnumItem - Enum.AccessoryType.TShirt: - struct: EnumItem - Enum.AccessoryType.TeeShirt: - struct: EnumItem - deprecated: - message: Enum.AccessoryType.TeeShirt was replaced with Enum.AccessoryType.TShirt - replace: - - Enum.AccessoryType.TShirt - Enum.AccessoryType.Unknown: - struct: EnumItem - Enum.AccessoryType.Waist: - struct: EnumItem - Enum.ActionType.Draw: - struct: EnumItem - Enum.ActionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActionType.Lose: - struct: EnumItem - Enum.ActionType.Nothing: - struct: EnumItem - Enum.ActionType.Pause: - struct: EnumItem - Enum.ActionType.Win: - struct: EnumItem - Enum.ActuatorRelativeTo.Attachment0: - struct: EnumItem - Enum.ActuatorRelativeTo.Attachment1: - struct: EnumItem - Enum.ActuatorRelativeTo.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActuatorRelativeTo.World: - struct: EnumItem - Enum.ActuatorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActuatorType.Motor: - struct: EnumItem - Enum.ActuatorType.None: - struct: EnumItem - Enum.ActuatorType.Servo: - struct: EnumItem - Enum.AdPortalStatus.Active: - struct: EnumItem - Enum.AdPortalStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdPortalStatus.Inactive: - struct: EnumItem - Enum.AdPortalStatus.Invalid: - struct: EnumItem - Enum.AdPortalType.Forward: - struct: EnumItem - Enum.AdPortalType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdPortalType.Return: - struct: EnumItem - Enum.AdShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdShape.HorizontalRectangle: - struct: EnumItem - Enum.AdTeleportMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdTeleportMethod.InGameMenuBackButton: - struct: EnumItem - Enum.AdTeleportMethod.PortalForward: - struct: EnumItem - Enum.AdTeleportMethod.PortalReturn: - struct: EnumItem - Enum.AdTeleportMethod.UIBackButton: - struct: EnumItem - Enum.AdTeleportMethod.Undefined: - struct: EnumItem - Enum.AdUnitStatus.Active: - struct: EnumItem - Enum.AdUnitStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdUnitStatus.Inactive: - struct: EnumItem - Enum.AdornCullingMode.Automatic: - struct: EnumItem - Enum.AdornCullingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdornCullingMode.Never: - struct: EnumItem - Enum.AlignType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AlignType.Parallel: - struct: EnumItem - Enum.AlignType.Perpendicular: - struct: EnumItem - Enum.AlphaMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AlphaMode.Overlay: - struct: EnumItem - Enum.AlphaMode.Transparency: - struct: EnumItem - Enum.AnalyticsEconomyAction.Acquire: - struct: EnumItem - Enum.AnalyticsEconomyAction.Default: - struct: EnumItem - Enum.AnalyticsEconomyAction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnalyticsEconomyAction.Spend: - struct: EnumItem - Enum.AnalyticsLogLevel.Debug: - struct: EnumItem - Enum.AnalyticsLogLevel.Error: - struct: EnumItem - Enum.AnalyticsLogLevel.Fatal: - struct: EnumItem - Enum.AnalyticsLogLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnalyticsLogLevel.Information: - struct: EnumItem - Enum.AnalyticsLogLevel.Trace: - struct: EnumItem - Enum.AnalyticsLogLevel.Warning: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Abandon: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Begin: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Complete: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Default: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Fail: - struct: EnumItem - Enum.AnalyticsProgressionStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnimationPriority.Action: - struct: EnumItem - Enum.AnimationPriority.Action2: - struct: EnumItem - Enum.AnimationPriority.Action3: - struct: EnumItem - Enum.AnimationPriority.Action4: - struct: EnumItem - Enum.AnimationPriority.Core: - struct: EnumItem - Enum.AnimationPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnimationPriority.Idle: - struct: EnumItem - Enum.AnimationPriority.Movement: - struct: EnumItem - Enum.AnimatorRetargetingMode.Default: - struct: EnumItem - Enum.AnimatorRetargetingMode.Disabled: - struct: EnumItem - Enum.AnimatorRetargetingMode.Enabled: - struct: EnumItem - Enum.AnimatorRetargetingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellActionType.AvatarEditorPageLoaded: - struct: EnumItem - Enum.AppShellActionType.GamePageLoaded: - struct: EnumItem - Enum.AppShellActionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellActionType.HomePageLoaded: - struct: EnumItem - Enum.AppShellActionType.None: - struct: EnumItem - Enum.AppShellActionType.OpenApp: - struct: EnumItem - Enum.AppShellActionType.ReadConversation: - struct: EnumItem - Enum.AppShellActionType.TapAvatarTab: - struct: EnumItem - Enum.AppShellActionType.TapChatTab: - struct: EnumItem - Enum.AppShellActionType.TapConversationEntry: - struct: EnumItem - Enum.AppShellActionType.TapGamePageTab: - struct: EnumItem - Enum.AppShellActionType.TapHomePageTab: - struct: EnumItem - Enum.AppShellFeature.AvatarEditor: - struct: EnumItem - Enum.AppShellFeature.Chat: - struct: EnumItem - Enum.AppShellFeature.GamePage: - struct: EnumItem - Enum.AppShellFeature.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellFeature.HomePage: - struct: EnumItem - Enum.AppShellFeature.Landing: - struct: EnumItem - Enum.AppShellFeature.More: - struct: EnumItem - Enum.AppShellFeature.None: - struct: EnumItem - Enum.AppUpdateStatus.Available: - struct: EnumItem - Enum.AppUpdateStatus.Failed: - struct: EnumItem - Enum.AppUpdateStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppUpdateStatus.NotAvailable: - struct: EnumItem - Enum.AppUpdateStatus.NotSupported: - struct: EnumItem - Enum.AppUpdateStatus.Unknown: - struct: EnumItem - Enum.ApplyStrokeMode.Border: - struct: EnumItem - Enum.ApplyStrokeMode.Contextual: - struct: EnumItem - Enum.ApplyStrokeMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AspectType.FitWithinMaxSize: - struct: EnumItem - Enum.AspectType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AspectType.ScaleWithParentSize: - struct: EnumItem - Enum.AssetFetchStatus.Failure: - struct: EnumItem - Enum.AssetFetchStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AssetFetchStatus.Loading: - struct: EnumItem - Enum.AssetFetchStatus.None: - struct: EnumItem - Enum.AssetFetchStatus.Success: - struct: EnumItem - Enum.AssetFetchStatus.TimedOut: - struct: EnumItem - Enum.AssetType.Animation: - struct: EnumItem - Enum.AssetType.Audio: - struct: EnumItem - Enum.AssetType.BackAccessory: - struct: EnumItem - Enum.AssetType.Badge: - struct: EnumItem - Enum.AssetType.ClimbAnimation: - struct: EnumItem - Enum.AssetType.DeathAnimation: - struct: EnumItem - Enum.AssetType.Decal: - struct: EnumItem - Enum.AssetType.DressSkirtAccessory: - struct: EnumItem - Enum.AssetType.DynamicHead: - struct: EnumItem - Enum.AssetType.EarAccessory: - struct: EnumItem - Enum.AssetType.EmoteAnimation: - struct: EnumItem - Enum.AssetType.EyeAccessory: - struct: EnumItem - Enum.AssetType.EyebrowAccessory: - struct: EnumItem - Enum.AssetType.EyelashAccessory: - struct: EnumItem - Enum.AssetType.Face: - struct: EnumItem - Enum.AssetType.FaceAccessory: - struct: EnumItem - Enum.AssetType.FallAnimation: - struct: EnumItem - Enum.AssetType.FontFamily: - struct: EnumItem - Enum.AssetType.FrontAccessory: - struct: EnumItem - Enum.AssetType.GamePass: - struct: EnumItem - Enum.AssetType.Gear: - struct: EnumItem - Enum.AssetType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AssetType.HairAccessory: - struct: EnumItem - Enum.AssetType.Hat: - struct: EnumItem - Enum.AssetType.Head: - struct: EnumItem - Enum.AssetType.IdleAnimation: - struct: EnumItem - Enum.AssetType.Image: - struct: EnumItem - Enum.AssetType.JacketAccessory: - struct: EnumItem - Enum.AssetType.JumpAnimation: - struct: EnumItem - Enum.AssetType.LeftArm: - struct: EnumItem - Enum.AssetType.LeftLeg: - struct: EnumItem - Enum.AssetType.LeftShoeAccessory: - struct: EnumItem - Enum.AssetType.Lua: - struct: EnumItem - Enum.AssetType.Mesh: - struct: EnumItem - Enum.AssetType.MeshPart: - struct: EnumItem - Enum.AssetType.Model: - struct: EnumItem - Enum.AssetType.MoodAnimation: - struct: EnumItem - Enum.AssetType.NeckAccessory: - struct: EnumItem - Enum.AssetType.Package: - struct: EnumItem - Enum.AssetType.Pants: - struct: EnumItem - Enum.AssetType.PantsAccessory: - struct: EnumItem - Enum.AssetType.Place: - struct: EnumItem - Enum.AssetType.Plugin: - struct: EnumItem - Enum.AssetType.PoseAnimation: - struct: EnumItem - Enum.AssetType.RightArm: - struct: EnumItem - Enum.AssetType.RightLeg: - struct: EnumItem - Enum.AssetType.RightShoeAccessory: - struct: EnumItem - Enum.AssetType.RunAnimation: - struct: EnumItem - Enum.AssetType.Shirt: - struct: EnumItem - Enum.AssetType.ShirtAccessory: - struct: EnumItem - Enum.AssetType.ShortsAccessory: - struct: EnumItem - Enum.AssetType.ShoulderAccessory: - struct: EnumItem - Enum.AssetType.SweaterAccessory: - struct: EnumItem - Enum.AssetType.SwimAnimation: - struct: EnumItem - Enum.AssetType.TShirt: - struct: EnumItem - Enum.AssetType.TShirtAccessory: - struct: EnumItem - Enum.AssetType.TeeShirt: - struct: EnumItem - deprecated: - message: Enum.AssetType.TeeShirt was replaced with Enum.AssetType.TShirt - replace: - - Enum.AssetType.TShirt - Enum.AssetType.TeeShirtAccessory: - struct: EnumItem - deprecated: - message: Enum.AssetType.TeeShirtAccessory was replaced with Enum.AssetType.TShirtAccessory - replace: - - Enum.AssetType.TShirtAccessory - Enum.AssetType.Torso: - struct: EnumItem - Enum.AssetType.Video: - struct: EnumItem - Enum.AssetType.WaistAccessory: - struct: EnumItem - Enum.AssetType.WalkAnimation: - struct: EnumItem - Enum.AssetTypeVerification.Always: - struct: EnumItem - Enum.AssetTypeVerification.ClientOnly: - struct: EnumItem - Enum.AssetTypeVerification.Default: - struct: EnumItem - Enum.AssetTypeVerification.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AudioSubType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AudioSubType.Music: - struct: EnumItem - Enum.AudioSubType.SoundEffect: - struct: EnumItem - Enum.AutoIndentRule.Absolute: - struct: EnumItem - Enum.AutoIndentRule.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AutoIndentRule.Off: - struct: EnumItem - Enum.AutoIndentRule.Relative: - struct: EnumItem - Enum.AutomaticSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AutomaticSize.None: - struct: EnumItem - Enum.AutomaticSize.X: - struct: EnumItem - Enum.AutomaticSize.XY: - struct: EnumItem - Enum.AutomaticSize.Y: - struct: EnumItem - Enum.AvatarAssetType.BackAccessory: - struct: EnumItem - Enum.AvatarAssetType.ClimbAnimation: - struct: EnumItem - Enum.AvatarAssetType.DressSkirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.DynamicHead: - struct: EnumItem - Enum.AvatarAssetType.EmoteAnimation: - struct: EnumItem - Enum.AvatarAssetType.EyebrowAccessory: - struct: EnumItem - Enum.AvatarAssetType.EyelashAccessory: - struct: EnumItem - Enum.AvatarAssetType.Face: - struct: EnumItem - Enum.AvatarAssetType.FaceAccessory: - struct: EnumItem - Enum.AvatarAssetType.FallAnimation: - struct: EnumItem - Enum.AvatarAssetType.FrontAccessory: - struct: EnumItem - Enum.AvatarAssetType.Gear: - struct: EnumItem - Enum.AvatarAssetType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarAssetType.HairAccessory: - struct: EnumItem - Enum.AvatarAssetType.Hat: - struct: EnumItem - Enum.AvatarAssetType.Head: - struct: EnumItem - Enum.AvatarAssetType.IdleAnimation: - struct: EnumItem - Enum.AvatarAssetType.JacketAccessory: - struct: EnumItem - Enum.AvatarAssetType.JumpAnimation: - struct: EnumItem - Enum.AvatarAssetType.LeftArm: - struct: EnumItem - Enum.AvatarAssetType.LeftLeg: - struct: EnumItem - Enum.AvatarAssetType.LeftShoeAccessory: - struct: EnumItem - Enum.AvatarAssetType.MoodAnimation: - struct: EnumItem - Enum.AvatarAssetType.NeckAccessory: - struct: EnumItem - Enum.AvatarAssetType.Pants: - struct: EnumItem - Enum.AvatarAssetType.PantsAccessory: - struct: EnumItem - Enum.AvatarAssetType.RightArm: - struct: EnumItem - Enum.AvatarAssetType.RightLeg: - struct: EnumItem - Enum.AvatarAssetType.RightShoeAccessory: - struct: EnumItem - Enum.AvatarAssetType.RunAnimation: - struct: EnumItem - Enum.AvatarAssetType.Shirt: - struct: EnumItem - Enum.AvatarAssetType.ShirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.ShortsAccessory: - struct: EnumItem - Enum.AvatarAssetType.ShoulderAccessory: - struct: EnumItem - Enum.AvatarAssetType.SweaterAccessory: - struct: EnumItem - Enum.AvatarAssetType.SwimAnimation: - struct: EnumItem - Enum.AvatarAssetType.TShirt: - struct: EnumItem - Enum.AvatarAssetType.TShirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.TeeShirtAccessory: - struct: EnumItem - deprecated: - message: Enum.AvatarAssetType.TeeShirtAccessory was replaced with Enum.AvatarAssetType.TShirtAccessory - replace: - - Enum.AvatarAssetType.TShirtAccessory - Enum.AvatarAssetType.Torso: - struct: EnumItem - Enum.AvatarAssetType.WaistAccessory: - struct: EnumItem - Enum.AvatarAssetType.WalkAnimation: - struct: EnumItem - Enum.AvatarContextMenuOption.Chat: - struct: EnumItem - Enum.AvatarContextMenuOption.Emote: - struct: EnumItem - Enum.AvatarContextMenuOption.Friend: - struct: EnumItem - Enum.AvatarContextMenuOption.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarContextMenuOption.InspectMenu: - struct: EnumItem - Enum.AvatarItemType.Asset: - struct: EnumItem - Enum.AvatarItemType.Bundle: - struct: EnumItem - Enum.AvatarItemType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarPromptResult.Failed: - struct: EnumItem - Enum.AvatarPromptResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarPromptResult.PermissionDenied: - struct: EnumItem - Enum.AvatarPromptResult.Success: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.Closeup: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.FullBody: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Axis.Back: - struct: EnumItem - deprecated: - message: Enum.Axis.Back was replaced with Enum.Axis.Z - replace: - - Enum.Axis.Z - Enum.Axis.Bottom: - struct: EnumItem - deprecated: - message: Enum.Axis.Bottom was replaced with Enum.Axis.Y - replace: - - Enum.Axis.Y - Enum.Axis.Front: - struct: EnumItem - deprecated: - message: Enum.Axis.Front was replaced with Enum.Axis.Z - replace: - - Enum.Axis.Z - Enum.Axis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Axis.Left: - struct: EnumItem - deprecated: - message: Enum.Axis.Left was replaced with Enum.Axis.X - replace: - - Enum.Axis.X - Enum.Axis.Right: - struct: EnumItem - deprecated: - message: Enum.Axis.Right was replaced with Enum.Axis.X - replace: - - Enum.Axis.X - Enum.Axis.Top: - struct: EnumItem - deprecated: - message: Enum.Axis.Top was replaced with Enum.Axis.Y - replace: - - Enum.Axis.Y - Enum.Axis.X: - struct: EnumItem - Enum.Axis.Y: - struct: EnumItem - Enum.Axis.Z: - struct: EnumItem - Enum.BinType.Clone: - struct: EnumItem - Enum.BinType.GameTool: - struct: EnumItem - Enum.BinType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BinType.Grab: - struct: EnumItem - Enum.BinType.Hammer: - struct: EnumItem - Enum.BinType.Laser: - struct: EnumItem - deprecated: - message: Enum.BinType.Laser was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BinType.Rocket: - struct: EnumItem - deprecated: - message: Enum.BinType.Rocket was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BinType.Script: - struct: EnumItem - Enum.BinType.Slingshot: - struct: EnumItem - deprecated: - message: Enum.BinType.Slingshot was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BodyPart.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BodyPart.Head: - struct: EnumItem - Enum.BodyPart.LeftArm: - struct: EnumItem - Enum.BodyPart.LeftLeg: - struct: EnumItem - Enum.BodyPart.RightArm: - struct: EnumItem - Enum.BodyPart.RightLeg: - struct: EnumItem - Enum.BodyPart.Torso: - struct: EnumItem - Enum.BodyPartR15.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BodyPartR15.Head: - struct: EnumItem - Enum.BodyPartR15.LeftFoot: - struct: EnumItem - Enum.BodyPartR15.LeftHand: - struct: EnumItem - Enum.BodyPartR15.LeftLowerArm: - struct: EnumItem - Enum.BodyPartR15.LeftLowerLeg: - struct: EnumItem - Enum.BodyPartR15.LeftUpperArm: - struct: EnumItem - Enum.BodyPartR15.LeftUpperLeg: - struct: EnumItem - Enum.BodyPartR15.LowerTorso: - struct: EnumItem - Enum.BodyPartR15.RightFoot: - struct: EnumItem - Enum.BodyPartR15.RightHand: - struct: EnumItem - Enum.BodyPartR15.RightLowerArm: - struct: EnumItem - Enum.BodyPartR15.RightLowerLeg: - struct: EnumItem - Enum.BodyPartR15.RightUpperArm: - struct: EnumItem - Enum.BodyPartR15.RightUpperLeg: - struct: EnumItem - Enum.BodyPartR15.RootPart: - struct: EnumItem - Enum.BodyPartR15.Unknown: - struct: EnumItem - Enum.BodyPartR15.UpperTorso: - struct: EnumItem - Enum.BorderMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BorderMode.Inset: - struct: EnumItem - Enum.BorderMode.Middle: - struct: EnumItem - Enum.BorderMode.Outline: - struct: EnumItem - Enum.BreakReason.Error: - struct: EnumItem - Enum.BreakReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BreakReason.Other: - struct: EnumItem - Enum.BreakReason.SpecialBreakpoint: - struct: EnumItem - Enum.BreakReason.UserBreakpoint: - struct: EnumItem - Enum.BreakpointRemoveReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BreakpointRemoveReason.Requested: - struct: EnumItem - Enum.BreakpointRemoveReason.ScriptChanged: - struct: EnumItem - Enum.BreakpointRemoveReason.ScriptRemoved: - struct: EnumItem - Enum.BulkMoveMode.FireAllEvents: - struct: EnumItem - Enum.BulkMoveMode.FireCFrameChanged: - struct: EnumItem - Enum.BulkMoveMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BundleType.Animations: - struct: EnumItem - Enum.BundleType.BodyParts: - struct: EnumItem - Enum.BundleType.DynamicHead: - struct: EnumItem - Enum.BundleType.DynamicHeadAvatar: - struct: EnumItem - Enum.BundleType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BundleType.Shoes: - struct: EnumItem - Enum.Button.Dismount: - struct: EnumItem - Enum.Button.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Button.Jump: - struct: EnumItem - Enum.ButtonStyle.Custom: - struct: EnumItem - Enum.ButtonStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ButtonStyle.RobloxButton: - struct: EnumItem - Enum.ButtonStyle.RobloxButtonDefault: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundButton: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundDefaultButton: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundDropdownButton: - struct: EnumItem - Enum.CageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CageType.Inner: - struct: EnumItem - Enum.CageType.Outer: - struct: EnumItem - Enum.CameraMode.Classic: - struct: EnumItem - Enum.CameraMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraMode.LockFirstPerson: - struct: EnumItem - Enum.CameraPanMode.Classic: - struct: EnumItem - Enum.CameraPanMode.EdgeBump: - struct: EnumItem - Enum.CameraPanMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraType.Attach: - struct: EnumItem - Enum.CameraType.Custom: - struct: EnumItem - Enum.CameraType.Fixed: - struct: EnumItem - Enum.CameraType.Follow: - struct: EnumItem - Enum.CameraType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraType.Orbital: - struct: EnumItem - Enum.CameraType.Scriptable: - struct: EnumItem - Enum.CameraType.Track: - struct: EnumItem - Enum.CameraType.Watch: - struct: EnumItem - Enum.CatalogCategoryFilter.Collectibles: - struct: EnumItem - Enum.CatalogCategoryFilter.CommunityCreations: - struct: EnumItem - Enum.CatalogCategoryFilter.Featured: - struct: EnumItem - Enum.CatalogCategoryFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogCategoryFilter.None: - struct: EnumItem - Enum.CatalogCategoryFilter.Premium: - struct: EnumItem - Enum.CatalogCategoryFilter.Recommended: - struct: EnumItem - Enum.CatalogSortAggregation.AllTime: - struct: EnumItem - Enum.CatalogSortAggregation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogSortAggregation.Past12Hours: - struct: EnumItem - Enum.CatalogSortAggregation.Past3Days: - struct: EnumItem - Enum.CatalogSortAggregation.PastDay: - struct: EnumItem - Enum.CatalogSortAggregation.PastMonth: - struct: EnumItem - Enum.CatalogSortAggregation.PastWeek: - struct: EnumItem - Enum.CatalogSortType.Bestselling: - struct: EnumItem - Enum.CatalogSortType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogSortType.MostFavorited: - struct: EnumItem - Enum.CatalogSortType.PriceHighToLow: - struct: EnumItem - Enum.CatalogSortType.PriceLowToHigh: - struct: EnumItem - Enum.CatalogSortType.RecentlyCreated: - struct: EnumItem - Enum.CatalogSortType.RecentlyUpdated: - struct: EnumItem - deprecated: - message: Enum.CatalogSortType.RecentlyUpdated was replaced with Enum.CatalogSortType.RecentlyCreated - replace: - - Enum.CatalogSortType.RecentlyCreated - Enum.CatalogSortType.Relevance: - struct: EnumItem - Enum.CellBlock.CornerWedge: - struct: EnumItem - Enum.CellBlock.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellBlock.HorizontalWedge: - struct: EnumItem - Enum.CellBlock.InverseCornerWedge: - struct: EnumItem - Enum.CellBlock.Solid: - struct: EnumItem - Enum.CellBlock.VerticalWedge: - struct: EnumItem - Enum.CellMaterial.Aluminum: - struct: EnumItem - Enum.CellMaterial.Asphalt: - struct: EnumItem - Enum.CellMaterial.BluePlastic: - struct: EnumItem - Enum.CellMaterial.Brick: - struct: EnumItem - Enum.CellMaterial.Cement: - struct: EnumItem - Enum.CellMaterial.CinderBlock: - struct: EnumItem - Enum.CellMaterial.Empty: - struct: EnumItem - Enum.CellMaterial.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellMaterial.Gold: - struct: EnumItem - Enum.CellMaterial.Granite: - struct: EnumItem - Enum.CellMaterial.Grass: - struct: EnumItem - Enum.CellMaterial.Gravel: - struct: EnumItem - Enum.CellMaterial.Iron: - struct: EnumItem - Enum.CellMaterial.MossyStone: - struct: EnumItem - Enum.CellMaterial.RedPlastic: - struct: EnumItem - Enum.CellMaterial.Sand: - struct: EnumItem - Enum.CellMaterial.Water: - struct: EnumItem - Enum.CellMaterial.WoodLog: - struct: EnumItem - Enum.CellMaterial.WoodPlank: - struct: EnumItem - Enum.CellOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellOrientation.NegX: - struct: EnumItem - Enum.CellOrientation.NegZ: - struct: EnumItem - Enum.CellOrientation.X: - struct: EnumItem - Enum.CellOrientation.Z: - struct: EnumItem - Enum.CenterDialogType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CenterDialogType.ModalDialog: - struct: EnumItem - Enum.CenterDialogType.PlayerInitiatedDialog: - struct: EnumItem - Enum.CenterDialogType.QuitDialog: - struct: EnumItem - Enum.CenterDialogType.UnsolicitedDialog: - struct: EnumItem - Enum.ChatCallbackType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatCallbackType.OnClientFormattingMessage: - struct: EnumItem - Enum.ChatCallbackType.OnClientSendingMessage: - struct: EnumItem - Enum.ChatCallbackType.OnCreatingChatWindow: - struct: EnumItem - Enum.ChatCallbackType.OnServerReceivingMessage: - struct: EnumItem - Enum.ChatColor.Blue: - struct: EnumItem - Enum.ChatColor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatColor.Green: - struct: EnumItem - Enum.ChatColor.Red: - struct: EnumItem - Enum.ChatColor.White: - struct: EnumItem - Enum.ChatMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatMode.Menu: - struct: EnumItem - Enum.ChatMode.TextAndMenu: - struct: EnumItem - Enum.ChatPrivacyMode.AllUsers: - struct: EnumItem - Enum.ChatPrivacyMode.Friends: - struct: EnumItem - Enum.ChatPrivacyMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatPrivacyMode.NoOne: - struct: EnumItem - Enum.ChatStyle.Bubble: - struct: EnumItem - Enum.ChatStyle.Classic: - struct: EnumItem - Enum.ChatStyle.ClassicAndBubble: - struct: EnumItem - Enum.ChatStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatVersion.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatVersion.LegacyChatService: - struct: EnumItem - Enum.ChatVersion.TextChatService: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Default: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Disabled: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Enabled: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CollisionFidelity.Box: - struct: EnumItem - Enum.CollisionFidelity.Default: - struct: EnumItem - Enum.CollisionFidelity.DynamicPreciseConvexDecomposition: - struct: EnumItem - Enum.CollisionFidelity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CollisionFidelity.Hull: - struct: EnumItem - Enum.CollisionFidelity.PreciseConvexDecomposition: - struct: EnumItem - Enum.CommandPermission.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CommandPermission.LocalUser: - struct: EnumItem - Enum.CommandPermission.Plugin: - struct: EnumItem - Enum.CompletionItemKind.Class: - struct: EnumItem - Enum.CompletionItemKind.Color: - struct: EnumItem - Enum.CompletionItemKind.Constant: - struct: EnumItem - Enum.CompletionItemKind.Constructor: - struct: EnumItem - Enum.CompletionItemKind.Enum: - struct: EnumItem - Enum.CompletionItemKind.EnumMember: - struct: EnumItem - Enum.CompletionItemKind.Event: - struct: EnumItem - Enum.CompletionItemKind.Field: - struct: EnumItem - Enum.CompletionItemKind.File: - struct: EnumItem - Enum.CompletionItemKind.Folder: - struct: EnumItem - Enum.CompletionItemKind.Function: - struct: EnumItem - Enum.CompletionItemKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionItemKind.Interface: - struct: EnumItem - Enum.CompletionItemKind.Keyword: - struct: EnumItem - Enum.CompletionItemKind.Method: - struct: EnumItem - Enum.CompletionItemKind.Module: - struct: EnumItem - Enum.CompletionItemKind.Operator: - struct: EnumItem - Enum.CompletionItemKind.Property: - struct: EnumItem - Enum.CompletionItemKind.Reference: - struct: EnumItem - Enum.CompletionItemKind.Snippet: - struct: EnumItem - Enum.CompletionItemKind.Struct: - struct: EnumItem - Enum.CompletionItemKind.Text: - struct: EnumItem - Enum.CompletionItemKind.TypeParameter: - struct: EnumItem - Enum.CompletionItemKind.Unit: - struct: EnumItem - Enum.CompletionItemKind.Value: - struct: EnumItem - Enum.CompletionItemKind.Variable: - struct: EnumItem - Enum.CompletionItemTag.AddParens: - struct: EnumItem - Enum.CompletionItemTag.ClientServerBoundaryViolation: - struct: EnumItem - Enum.CompletionItemTag.CommandLinePermissions: - struct: EnumItem - Enum.CompletionItemTag.Deprecated: - struct: EnumItem - Enum.CompletionItemTag.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionItemTag.IncorrectIndexType: - struct: EnumItem - Enum.CompletionItemTag.PluginPermissions: - struct: EnumItem - Enum.CompletionItemTag.PutCursorInParens: - struct: EnumItem - Enum.CompletionItemTag.RobloxPermissions: - struct: EnumItem - Enum.CompletionItemTag.TypeCorrect: - struct: EnumItem - Enum.CompletionTriggerKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionTriggerKind.Invoked: - struct: EnumItem - Enum.CompletionTriggerKind.TriggerCharacter: - struct: EnumItem - Enum.CompletionTriggerKind.TriggerForIncompleteCompletions: - struct: EnumItem - Enum.ComputerCameraMovementMode.CameraToggle: - struct: EnumItem - Enum.ComputerCameraMovementMode.Classic: - struct: EnumItem - Enum.ComputerCameraMovementMode.Default: - struct: EnumItem - Enum.ComputerCameraMovementMode.Follow: - struct: EnumItem - Enum.ComputerCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ComputerCameraMovementMode.Orbital: - struct: EnumItem - Enum.ComputerMovementMode.ClickToMove: - struct: EnumItem - Enum.ComputerMovementMode.Default: - struct: EnumItem - Enum.ComputerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ComputerMovementMode.KeyboardMouse: - struct: EnumItem - Enum.ConnectionError.DisconnectBadhash: - struct: EnumItem - Enum.ConnectionError.DisconnectBlockedIP: - struct: EnumItem - Enum.ConnectionError.DisconnectBySecurityPolicy: - struct: EnumItem - Enum.ConnectionError.DisconnectClientFailure: - struct: EnumItem - Enum.ConnectionError.DisconnectClientRequest: - struct: EnumItem - Enum.ConnectionError.DisconnectCloudEditKick: - struct: EnumItem - Enum.ConnectionError.DisconnectConnectionLost: - struct: EnumItem - Enum.ConnectionError.DisconnectDevMaintenance: - struct: EnumItem - Enum.ConnectionError.DisconnectDuplicatePlayer: - struct: EnumItem - Enum.ConnectionError.DisconnectDuplicateTicket: - struct: EnumItem - Enum.ConnectionError.DisconnectErrors: - struct: EnumItem - Enum.ConnectionError.DisconnectEvicted: - struct: EnumItem - Enum.ConnectionError.DisconnectHashTimeout: - struct: EnumItem - Enum.ConnectionError.DisconnectIdle: - struct: EnumItem - Enum.ConnectionError.DisconnectIllegalTeleport: - struct: EnumItem - Enum.ConnectionError.DisconnectLuaKick: - struct: EnumItem - Enum.ConnectionError.DisconnectModeratedGame: - struct: EnumItem - Enum.ConnectionError.DisconnectNewSecurityKeyMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectOnRemoteSysStats: - struct: EnumItem - Enum.ConnectionError.DisconnectOutOfMemoryKeepPlayingLeave: - struct: EnumItem - Enum.ConnectionError.DisconnectPlayerless: - struct: EnumItem - Enum.ConnectionError.DisconnectProtocolMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectRaknetErrors: - struct: EnumItem - Enum.ConnectionError.DisconnectReceivePacketError: - struct: EnumItem - Enum.ConnectionError.DisconnectReceivePacketStreamError: - struct: EnumItem - Enum.ConnectionError.DisconnectRejoin: - struct: EnumItem - Enum.ConnectionError.DisconnectRobloxMaintenance: - struct: EnumItem - Enum.ConnectionError.DisconnectRomarkEndOfTest: - struct: EnumItem - Enum.ConnectionError.DisconnectSecurityKeyMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectSendPacketError: - struct: EnumItem - Enum.ConnectionError.DisconnectTimeout: - struct: EnumItem - Enum.ConnectionError.DisconnectWrongVersion: - struct: EnumItem - Enum.ConnectionError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ConnectionError.OK: - struct: EnumItem - Enum.ConnectionError.PlacelaunchCustomMessage: - struct: EnumItem - Enum.ConnectionError.PlacelaunchDisabled: - struct: EnumItem - Enum.ConnectionError.PlacelaunchError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchErrors: - struct: EnumItem - Enum.ConnectionError.PlacelaunchFlooded: - struct: EnumItem - Enum.ConnectionError.PlacelaunchGameEnded: - struct: EnumItem - Enum.ConnectionError.PlacelaunchGameFull: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHashException: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHashExpired: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHttpError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchOtherError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchPartyCannotFit: - struct: EnumItem - Enum.ConnectionError.PlacelaunchRestricted: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUnauthorized: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUserLeft: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUserPrivacyUnauthorized: - struct: EnumItem - Enum.ConnectionError.PlayerRemoved: - struct: EnumItem - Enum.ConnectionError.ReplicatorTimeout: - struct: EnumItem - Enum.ConnectionError.TeleportErrors: - struct: EnumItem - Enum.ConnectionError.TeleportFailure: - struct: EnumItem - Enum.ConnectionError.TeleportFlooded: - struct: EnumItem - Enum.ConnectionError.TeleportGameEnded: - struct: EnumItem - Enum.ConnectionError.TeleportGameFull: - struct: EnumItem - Enum.ConnectionError.TeleportGameNotFound: - struct: EnumItem - Enum.ConnectionError.TeleportIsTeleporting: - struct: EnumItem - Enum.ConnectionError.TeleportUnauthorized: - struct: EnumItem - Enum.ConnectionError.Unknown: - struct: EnumItem - Enum.ConnectionState.Connected: - struct: EnumItem - Enum.ConnectionState.Disconnected: - struct: EnumItem - Enum.ConnectionState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionPriority.Default: - struct: EnumItem - deprecated: - message: Enum.ContextActionPriority.Default was replaced with Enum.ContextActionPriority.Medium - replace: - - Enum.ContextActionPriority.Medium - Enum.ContextActionPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionPriority.High: - struct: EnumItem - Enum.ContextActionPriority.Low: - struct: EnumItem - Enum.ContextActionPriority.Medium: - struct: EnumItem - Enum.ContextActionResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionResult.Pass: - struct: EnumItem - Enum.ContextActionResult.Sink: - struct: EnumItem - Enum.ControlMode.Classic: - struct: EnumItem - Enum.ControlMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ControlMode.Mouse Lock Switch: - struct: EnumItem - deprecated: - message: Enum.ControlMode.Mouse Lock Switch was replaced with Enum.ControlMode.MouseLockSwitch - replace: - - Enum.ControlMode.MouseLockSwitch - Enum.ControlMode.MouseLockSwitch: - struct: EnumItem - Enum.CoreGuiType.All: - struct: EnumItem - Enum.CoreGuiType.Backpack: - struct: EnumItem - Enum.CoreGuiType.Chat: - struct: EnumItem - Enum.CoreGuiType.EmotesMenu: - struct: EnumItem - Enum.CoreGuiType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CoreGuiType.Health: - struct: EnumItem - Enum.CoreGuiType.PlayerList: - struct: EnumItem - Enum.CoreGuiType.SelfView: - struct: EnumItem - Enum.CreateOutfitFailure.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreateOutfitFailure.InvalidName: - struct: EnumItem - Enum.CreateOutfitFailure.Other: - struct: EnumItem - Enum.CreateOutfitFailure.OutfitLimitReached: - struct: EnumItem - Enum.CreatorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreatorType.Group: - struct: EnumItem - Enum.CreatorType.User: - struct: EnumItem - Enum.CreatorTypeFilter.All: - struct: EnumItem - Enum.CreatorTypeFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreatorTypeFilter.Group: - struct: EnumItem - Enum.CreatorTypeFilter.User: - struct: EnumItem - Enum.CurrencyType.Default: - struct: EnumItem - Enum.CurrencyType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CurrencyType.Robux: - struct: EnumItem - Enum.CurrencyType.Tix: - struct: EnumItem - Enum.CustomCameraMode.Classic: - struct: EnumItem - Enum.CustomCameraMode.Default: - struct: EnumItem - Enum.CustomCameraMode.Follow: - struct: EnumItem - Enum.CustomCameraMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DataStoreRequestType.GetAsync: - struct: EnumItem - Enum.DataStoreRequestType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DataStoreRequestType.GetSortedAsync: - struct: EnumItem - Enum.DataStoreRequestType.OnUpdate: - struct: EnumItem - Enum.DataStoreRequestType.SetIncrementAsync: - struct: EnumItem - Enum.DataStoreRequestType.SetIncrementSortedAsync: - struct: EnumItem - Enum.DataStoreRequestType.UpdateAsync: - struct: EnumItem - Enum.DebuggerEndReason.ClientRequest: - struct: EnumItem - Enum.DebuggerEndReason.ConfigurationFailed: - struct: EnumItem - Enum.DebuggerEndReason.Disconnected: - struct: EnumItem - Enum.DebuggerEndReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerEndReason.InvalidHost: - struct: EnumItem - Enum.DebuggerEndReason.RpcError: - struct: EnumItem - Enum.DebuggerEndReason.ServerProtocolMismatch: - struct: EnumItem - Enum.DebuggerEndReason.ServerShutdown: - struct: EnumItem - Enum.DebuggerEndReason.Timeout: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.Always: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerExceptionBreakMode.Never: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.Unhandled: - struct: EnumItem - Enum.DebuggerFrameType.C: - struct: EnumItem - Enum.DebuggerFrameType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerFrameType.Lua: - struct: EnumItem - Enum.DebuggerPauseReason.Breakpoint: - struct: EnumItem - Enum.DebuggerPauseReason.Entrypoint: - struct: EnumItem - Enum.DebuggerPauseReason.Exception: - struct: EnumItem - Enum.DebuggerPauseReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerPauseReason.Requested: - struct: EnumItem - Enum.DebuggerPauseReason.SingleStep: - struct: EnumItem - Enum.DebuggerPauseReason.Unknown: - struct: EnumItem - Enum.DebuggerStatus.ConnectionClosed: - struct: EnumItem - Enum.DebuggerStatus.ConnectionLost: - struct: EnumItem - Enum.DebuggerStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerStatus.InternalError: - struct: EnumItem - Enum.DebuggerStatus.InvalidArgument: - struct: EnumItem - Enum.DebuggerStatus.InvalidResponse: - struct: EnumItem - Enum.DebuggerStatus.InvalidState: - struct: EnumItem - Enum.DebuggerStatus.RpcError: - struct: EnumItem - Enum.DebuggerStatus.Success: - struct: EnumItem - Enum.DebuggerStatus.Timeout: - struct: EnumItem - Enum.DevCameraOcclusionMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevCameraOcclusionMode.Invisicam: - struct: EnumItem - Enum.DevCameraOcclusionMode.Zoom: - struct: EnumItem - Enum.DevComputerCameraMovementMode.CameraToggle: - struct: EnumItem - Enum.DevComputerCameraMovementMode.Classic: - struct: EnumItem - Enum.DevComputerCameraMovementMode.Follow: - struct: EnumItem - Enum.DevComputerCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevComputerCameraMovementMode.Orbital: - struct: EnumItem - Enum.DevComputerCameraMovementMode.UserChoice: - struct: EnumItem - Enum.DevComputerMovementMode.ClickToMove: - struct: EnumItem - Enum.DevComputerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevComputerMovementMode.KeyboardMouse: - struct: EnumItem - Enum.DevComputerMovementMode.Scriptable: - struct: EnumItem - Enum.DevComputerMovementMode.UserChoice: - struct: EnumItem - Enum.DevTouchCameraMovementMode.Classic: - struct: EnumItem - Enum.DevTouchCameraMovementMode.Follow: - struct: EnumItem - Enum.DevTouchCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevTouchCameraMovementMode.Orbital: - struct: EnumItem - Enum.DevTouchCameraMovementMode.UserChoice: - struct: EnumItem - Enum.DevTouchMovementMode.ClickToMove: - struct: EnumItem - Enum.DevTouchMovementMode.DPad: - struct: EnumItem - Enum.DevTouchMovementMode.DynamicThumbstick: - struct: EnumItem - Enum.DevTouchMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevTouchMovementMode.Scriptable: - struct: EnumItem - Enum.DevTouchMovementMode.Thumbpad: - struct: EnumItem - Enum.DevTouchMovementMode.Thumbstick: - struct: EnumItem - Enum.DevTouchMovementMode.UserChoice: - struct: EnumItem - Enum.DeveloperMemoryTag.Animation: - struct: EnumItem - Enum.DeveloperMemoryTag.GeometryCSG: - struct: EnumItem - Enum.DeveloperMemoryTag.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DeveloperMemoryTag.GraphicsMeshParts: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsParticles: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsParts: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsSolidModels: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsSpatialHash: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTerrain: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTexture: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTextureCharacter: - struct: EnumItem - Enum.DeveloperMemoryTag.Gui: - struct: EnumItem - Enum.DeveloperMemoryTag.HttpCache: - struct: EnumItem - Enum.DeveloperMemoryTag.Instances: - struct: EnumItem - Enum.DeveloperMemoryTag.Internal: - struct: EnumItem - Enum.DeveloperMemoryTag.LuaHeap: - struct: EnumItem - Enum.DeveloperMemoryTag.Navigation: - struct: EnumItem - Enum.DeveloperMemoryTag.PhysicsCollision: - struct: EnumItem - Enum.DeveloperMemoryTag.PhysicsParts: - struct: EnumItem - Enum.DeveloperMemoryTag.Script: - struct: EnumItem - Enum.DeveloperMemoryTag.Signals: - struct: EnumItem - Enum.DeveloperMemoryTag.Sounds: - struct: EnumItem - Enum.DeveloperMemoryTag.StreamingSounds: - struct: EnumItem - Enum.DeveloperMemoryTag.TerrainVoxels: - struct: EnumItem - Enum.DeviceType.Desktop: - struct: EnumItem - Enum.DeviceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DeviceType.Phone: - struct: EnumItem - Enum.DeviceType.Tablet: - struct: EnumItem - Enum.DeviceType.Unknown: - struct: EnumItem - Enum.DialogBehaviorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogBehaviorType.MultiplePlayers: - struct: EnumItem - Enum.DialogBehaviorType.SinglePlayer: - struct: EnumItem - Enum.DialogPurpose.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogPurpose.Help: - struct: EnumItem - Enum.DialogPurpose.Quest: - struct: EnumItem - Enum.DialogPurpose.Shop: - struct: EnumItem - Enum.DialogTone.Enemy: - struct: EnumItem - Enum.DialogTone.Friendly: - struct: EnumItem - Enum.DialogTone.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogTone.Neutral: - struct: EnumItem - Enum.DominantAxis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DominantAxis.Height: - struct: EnumItem - Enum.DominantAxis.Width: - struct: EnumItem - Enum.DraftStatusCode.DraftCommitted: - struct: EnumItem - Enum.DraftStatusCode.DraftOutdated: - struct: EnumItem - Enum.DraftStatusCode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraftStatusCode.OK: - struct: EnumItem - Enum.DraftStatusCode.ScriptRemoved: - struct: EnumItem - Enum.DraggerCoordinateSpace.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraggerCoordinateSpace.Object: - struct: EnumItem - Enum.DraggerCoordinateSpace.World: - struct: EnumItem - Enum.DraggerMovementMode.Geometric: - struct: EnumItem - Enum.DraggerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraggerMovementMode.Physical: - struct: EnumItem - Enum.EasingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EasingDirection.In: - struct: EnumItem - Enum.EasingDirection.InOut: - struct: EnumItem - Enum.EasingDirection.Out: - struct: EnumItem - Enum.EasingStyle.Back: - struct: EnumItem - Enum.EasingStyle.Bounce: - struct: EnumItem - Enum.EasingStyle.Circular: - struct: EnumItem - Enum.EasingStyle.Cubic: - struct: EnumItem - Enum.EasingStyle.Elastic: - struct: EnumItem - Enum.EasingStyle.Exponential: - struct: EnumItem - Enum.EasingStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EasingStyle.Linear: - struct: EnumItem - Enum.EasingStyle.Quad: - struct: EnumItem - Enum.EasingStyle.Quart: - struct: EnumItem - Enum.EasingStyle.Quint: - struct: EnumItem - Enum.EasingStyle.Sine: - struct: EnumItem - Enum.ElasticBehavior.Always: - struct: EnumItem - Enum.ElasticBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ElasticBehavior.Never: - struct: EnumItem - Enum.ElasticBehavior.WhenScrollable: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Always: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.DefaultAuto: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Disabled: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EnviromentalPhysicsThrottle.Skip16: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip2: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip4: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip8: - struct: EnumItem - Enum.ExperienceAuthScope.CreatorAssetsCreate: - struct: EnumItem - Enum.ExperienceAuthScope.DefaultScope: - struct: EnumItem - Enum.ExperienceAuthScope.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ExplosionType.Craters: - struct: EnumItem - Enum.ExplosionType.CratersAndDebris: - struct: EnumItem - deprecated: - message: Enum.ExplosionType.CratersAndDebris was replaced with Enum.ExplosionType.Craters - replace: - - Enum.ExplosionType.Craters - Enum.ExplosionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ExplosionType.NoCraters: - struct: EnumItem - Enum.FacialAnimationFlags.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FacialAnimationFlags.None: - struct: EnumItem - Enum.FacialAnimationFlags.Place: - struct: EnumItem - Enum.FacialAnimationFlags.PlaceServer: - struct: EnumItem - Enum.FacialAnimationFlags.Server: - struct: EnumItem - Enum.FacialAnimationStreamingState.Audio: - struct: EnumItem - Enum.FacialAnimationStreamingState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FacialAnimationStreamingState.None: - struct: EnumItem - Enum.FacialAnimationStreamingState.Place: - struct: EnumItem - Enum.FacialAnimationStreamingState.Server: - struct: EnumItem - Enum.FacialAnimationStreamingState.Video: - struct: EnumItem - Enum.FieldOfViewMode.Diagonal: - struct: EnumItem - Enum.FieldOfViewMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FieldOfViewMode.MaxAxis: - struct: EnumItem - Enum.FieldOfViewMode.Vertical: - struct: EnumItem - Enum.FillDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FillDirection.Horizontal: - struct: EnumItem - Enum.FillDirection.Vertical: - struct: EnumItem - Enum.FilterResult.Accepted: - struct: EnumItem - Enum.FilterResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FilterResult.Rejected: - struct: EnumItem - Enum.Font.AmaticSC: - struct: EnumItem - Enum.Font.Antique: - struct: EnumItem - Enum.Font.Arcade: - struct: EnumItem - Enum.Font.Arial: - struct: EnumItem - Enum.Font.ArialBold: - struct: EnumItem - Enum.Font.Bangers: - struct: EnumItem - Enum.Font.Bodoni: - struct: EnumItem - Enum.Font.Cartoon: - struct: EnumItem - Enum.Font.Code: - struct: EnumItem - Enum.Font.Creepster: - struct: EnumItem - Enum.Font.DenkOne: - struct: EnumItem - Enum.Font.Fantasy: - struct: EnumItem - Enum.Font.Fondamento: - struct: EnumItem - Enum.Font.FredokaOne: - struct: EnumItem - Enum.Font.Garamond: - struct: EnumItem - Enum.Font.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Font.Gotham: - struct: EnumItem - Enum.Font.GothamBlack: - struct: EnumItem - Enum.Font.GothamBold: - struct: EnumItem - Enum.Font.GothamMedium: - struct: EnumItem - Enum.Font.GothamSemibold: - struct: EnumItem - deprecated: - message: Enum.Font.GothamSemibold was replaced with Enum.Font.GothamMedium - replace: - - Enum.Font.GothamMedium - Enum.Font.GrenzeGotisch: - struct: EnumItem - Enum.Font.Highway: - struct: EnumItem - Enum.Font.IndieFlower: - struct: EnumItem - Enum.Font.JosefinSans: - struct: EnumItem - Enum.Font.Jura: - struct: EnumItem - Enum.Font.Kalam: - struct: EnumItem - Enum.Font.Legacy: - struct: EnumItem - Enum.Font.LuckiestGuy: - struct: EnumItem - Enum.Font.Merriweather: - struct: EnumItem - Enum.Font.Michroma: - struct: EnumItem - Enum.Font.Nunito: - struct: EnumItem - Enum.Font.Oswald: - struct: EnumItem - Enum.Font.PatrickHand: - struct: EnumItem - Enum.Font.PermanentMarker: - struct: EnumItem - Enum.Font.Roboto: - struct: EnumItem - Enum.Font.RobotoCondensed: - struct: EnumItem - Enum.Font.RobotoMono: - struct: EnumItem - Enum.Font.Sarpanch: - struct: EnumItem - Enum.Font.SciFi: - struct: EnumItem - Enum.Font.SourceSans: - struct: EnumItem - Enum.Font.SourceSansBold: - struct: EnumItem - Enum.Font.SourceSansItalic: - struct: EnumItem - Enum.Font.SourceSansLight: - struct: EnumItem - Enum.Font.SourceSansSemibold: - struct: EnumItem - Enum.Font.SpecialElite: - struct: EnumItem - Enum.Font.TitilliumWeb: - struct: EnumItem - Enum.Font.Ubuntu: - struct: EnumItem - Enum.Font.Unknown: - struct: EnumItem - Enum.FontSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontSize.Size10: - struct: EnumItem - Enum.FontSize.Size11: - struct: EnumItem - Enum.FontSize.Size12: - struct: EnumItem - Enum.FontSize.Size14: - struct: EnumItem - Enum.FontSize.Size18: - struct: EnumItem - Enum.FontSize.Size24: - struct: EnumItem - Enum.FontSize.Size28: - struct: EnumItem - Enum.FontSize.Size32: - struct: EnumItem - Enum.FontSize.Size36: - struct: EnumItem - Enum.FontSize.Size42: - struct: EnumItem - Enum.FontSize.Size48: - struct: EnumItem - Enum.FontSize.Size60: - struct: EnumItem - Enum.FontSize.Size8: - struct: EnumItem - Enum.FontSize.Size9: - struct: EnumItem - Enum.FontSize.Size96: - struct: EnumItem - Enum.FontStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontStyle.Italic: - struct: EnumItem - Enum.FontStyle.Normal: - struct: EnumItem - Enum.FontWeight.Bold: - struct: EnumItem - Enum.FontWeight.ExtraBold: - struct: EnumItem - Enum.FontWeight.ExtraLight: - struct: EnumItem - Enum.FontWeight.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontWeight.Heavy: - struct: EnumItem - Enum.FontWeight.Light: - struct: EnumItem - Enum.FontWeight.Medium: - struct: EnumItem - Enum.FontWeight.Regular: - struct: EnumItem - Enum.FontWeight.SemiBold: - struct: EnumItem - Enum.FontWeight.Thin: - struct: EnumItem - Enum.FormFactor.Block: - struct: EnumItem - deprecated: - message: Enum.FormFactor.Block was replaced with Enum.FormFactor.Brick - replace: - - Enum.FormFactor.Brick - Enum.FormFactor.Brick: - struct: EnumItem - Enum.FormFactor.Custom: - struct: EnumItem - Enum.FormFactor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FormFactor.Plate: - struct: EnumItem - Enum.FormFactor.Symmetric: - struct: EnumItem - Enum.FrameStyle.ChatBlue: - struct: EnumItem - Enum.FrameStyle.ChatGreen: - struct: EnumItem - Enum.FrameStyle.ChatRed: - struct: EnumItem - Enum.FrameStyle.Custom: - struct: EnumItem - Enum.FrameStyle.DropShadow: - struct: EnumItem - Enum.FrameStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FrameStyle.RobloxRound: - struct: EnumItem - Enum.FrameStyle.RobloxSquare: - struct: EnumItem - Enum.FramerateManagerMode.Automatic: - struct: EnumItem - Enum.FramerateManagerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FramerateManagerMode.Off: - struct: EnumItem - Enum.FramerateManagerMode.On: - struct: EnumItem - Enum.FriendRequestEvent.Accept: - struct: EnumItem - Enum.FriendRequestEvent.Deny: - struct: EnumItem - Enum.FriendRequestEvent.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FriendRequestEvent.Issue: - struct: EnumItem - Enum.FriendRequestEvent.Revoke: - struct: EnumItem - Enum.FriendStatus.Friend: - struct: EnumItem - Enum.FriendStatus.FriendRequestReceived: - struct: EnumItem - Enum.FriendStatus.FriendRequestSent: - struct: EnumItem - Enum.FriendStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FriendStatus.NotFriend: - struct: EnumItem - Enum.FriendStatus.Unknown: - struct: EnumItem - Enum.FunctionalTestResult.Error: - struct: EnumItem - Enum.FunctionalTestResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FunctionalTestResult.Passed: - struct: EnumItem - Enum.FunctionalTestResult.Warning: - struct: EnumItem - Enum.GameAvatarType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GameAvatarType.PlayerChoice: - struct: EnumItem - Enum.GameAvatarType.R15: - struct: EnumItem - Enum.GameAvatarType.R6: - struct: EnumItem - Enum.GearGenreSetting.AllGenres: - struct: EnumItem - Enum.GearGenreSetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GearGenreSetting.MatchingGenreOnly: - struct: EnumItem - Enum.GearType.BuildingTools: - struct: EnumItem - Enum.GearType.Explosives: - struct: EnumItem - Enum.GearType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GearType.MeleeWeapons: - struct: EnumItem - Enum.GearType.MusicalInstruments: - struct: EnumItem - Enum.GearType.NavigationEnhancers: - struct: EnumItem - Enum.GearType.PowerUps: - struct: EnumItem - Enum.GearType.RangedWeapons: - struct: EnumItem - Enum.GearType.SocialItems: - struct: EnumItem - Enum.GearType.Transport: - struct: EnumItem - Enum.Genre.Adventure: - struct: EnumItem - Enum.Genre.All: - struct: EnumItem - Enum.Genre.Fantasy: - struct: EnumItem - Enum.Genre.Funny: - struct: EnumItem - Enum.Genre.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Genre.Ninja: - struct: EnumItem - Enum.Genre.Pirate: - struct: EnumItem - Enum.Genre.Scary: - struct: EnumItem - Enum.Genre.SciFi: - struct: EnumItem - Enum.Genre.SkatePark: - struct: EnumItem - Enum.Genre.Sports: - struct: EnumItem - Enum.Genre.TownAndCity: - struct: EnumItem - Enum.Genre.Tutorial: - struct: EnumItem - Enum.Genre.War: - struct: EnumItem - Enum.Genre.WildWest: - struct: EnumItem - Enum.GetEnums: - args: [] - method: true - must_use: true - Enum.GraphicsMode.Automatic: - struct: EnumItem - Enum.GraphicsMode.Direct3D11: - struct: EnumItem - Enum.GraphicsMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GraphicsMode.Metal: - struct: EnumItem - Enum.GraphicsMode.NoGraphics: - struct: EnumItem - Enum.GraphicsMode.OpenGL: - struct: EnumItem - Enum.GraphicsMode.Vulkan: - struct: EnumItem - Enum.GuiType.Core: - struct: EnumItem - Enum.GuiType.Custom: - struct: EnumItem - Enum.GuiType.CustomBillboards: - struct: EnumItem - Enum.GuiType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GuiType.PlayerNameplates: - struct: EnumItem - Enum.HandlesStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HandlesStyle.Movement: - struct: EnumItem - Enum.HandlesStyle.Resize: - struct: EnumItem - Enum.HighlightDepthMode.AlwaysOnTop: - struct: EnumItem - Enum.HighlightDepthMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HighlightDepthMode.Occluded: - struct: EnumItem - Enum.HorizontalAlignment.Center: - struct: EnumItem - Enum.HorizontalAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HorizontalAlignment.Left: - struct: EnumItem - Enum.HorizontalAlignment.Right: - struct: EnumItem - Enum.HoverAnimateSpeed.Fast: - struct: EnumItem - Enum.HoverAnimateSpeed.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HoverAnimateSpeed.Medium: - struct: EnumItem - Enum.HoverAnimateSpeed.Slow: - struct: EnumItem - Enum.HoverAnimateSpeed.VeryFast: - struct: EnumItem - Enum.HoverAnimateSpeed.VerySlow: - struct: EnumItem - Enum.HttpCachePolicy.DataOnly: - struct: EnumItem - Enum.HttpCachePolicy.Default: - struct: EnumItem - Enum.HttpCachePolicy.Full: - struct: EnumItem - Enum.HttpCachePolicy.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpCachePolicy.InternalRedirectRefresh: - struct: EnumItem - Enum.HttpCachePolicy.None: - struct: EnumItem - Enum.HttpContentType.ApplicationJson: - struct: EnumItem - Enum.HttpContentType.ApplicationUrlEncoded: - struct: EnumItem - Enum.HttpContentType.ApplicationXml: - struct: EnumItem - Enum.HttpContentType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpContentType.TextPlain: - struct: EnumItem - Enum.HttpContentType.TextXml: - struct: EnumItem - Enum.HttpError.Aborted: - struct: EnumItem - Enum.HttpError.ConnectFail: - struct: EnumItem - Enum.HttpError.DnsResolve: - struct: EnumItem - Enum.HttpError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpError.InvalidRedirect: - struct: EnumItem - Enum.HttpError.InvalidUrl: - struct: EnumItem - Enum.HttpError.NetFail: - struct: EnumItem - Enum.HttpError.OK: - struct: EnumItem - Enum.HttpError.OutOfMemory: - struct: EnumItem - Enum.HttpError.SslConnectFail: - struct: EnumItem - Enum.HttpError.SslVerificationFail: - struct: EnumItem - Enum.HttpError.TimedOut: - struct: EnumItem - Enum.HttpError.TooManyRedirects: - struct: EnumItem - Enum.HttpError.Unknown: - struct: EnumItem - Enum.HttpRequestType.Analytics: - struct: EnumItem - Enum.HttpRequestType.Avatar: - struct: EnumItem - Enum.HttpRequestType.Chat: - struct: EnumItem - Enum.HttpRequestType.Default: - struct: EnumItem - Enum.HttpRequestType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpRequestType.Localization: - struct: EnumItem - Enum.HttpRequestType.MarketplaceService: - struct: EnumItem - Enum.HttpRequestType.Players: - struct: EnumItem - Enum.HumanoidCollisionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidCollisionType.InnerBox: - struct: EnumItem - Enum.HumanoidCollisionType.OuterBox: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidDisplayDistanceType.None: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.Subject: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.Viewer: - struct: EnumItem - Enum.HumanoidHealthDisplayType.AlwaysOff: - struct: EnumItem - Enum.HumanoidHealthDisplayType.AlwaysOn: - struct: EnumItem - Enum.HumanoidHealthDisplayType.DisplayWhenDamaged: - struct: EnumItem - Enum.HumanoidHealthDisplayType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidOnlySetCollisionsOnStateChange.Default: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.Disabled: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.Enabled: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidRigType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidRigType.R15: - struct: EnumItem - Enum.HumanoidRigType.R6: - struct: EnumItem - Enum.HumanoidStateMachineMode.Default: - struct: EnumItem - Enum.HumanoidStateMachineMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidStateMachineMode.Legacy: - struct: EnumItem - Enum.HumanoidStateMachineMode.LuaStateMachine: - struct: EnumItem - Enum.HumanoidStateMachineMode.NoStateMachine: - struct: EnumItem - Enum.HumanoidStateType.Climbing: - struct: EnumItem - Enum.HumanoidStateType.Dead: - struct: EnumItem - Enum.HumanoidStateType.FallingDown: - struct: EnumItem - Enum.HumanoidStateType.Flying: - struct: EnumItem - Enum.HumanoidStateType.Freefall: - struct: EnumItem - Enum.HumanoidStateType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidStateType.GettingUp: - struct: EnumItem - Enum.HumanoidStateType.Jumping: - struct: EnumItem - Enum.HumanoidStateType.Landed: - struct: EnumItem - Enum.HumanoidStateType.None: - struct: EnumItem - Enum.HumanoidStateType.Physics: - struct: EnumItem - Enum.HumanoidStateType.PlatformStanding: - struct: EnumItem - Enum.HumanoidStateType.Ragdoll: - struct: EnumItem - Enum.HumanoidStateType.Running: - struct: EnumItem - Enum.HumanoidStateType.RunningNoPhysics: - struct: EnumItem - Enum.HumanoidStateType.Seated: - struct: EnumItem - Enum.HumanoidStateType.StrafingNoPhysics: - struct: EnumItem - Enum.HumanoidStateType.Swimming: - struct: EnumItem - Enum.IKCollisionsMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IKCollisionsMode.IncludeContactedMechanisms: - struct: EnumItem - Enum.IKCollisionsMode.NoCollisions: - struct: EnumItem - Enum.IKCollisionsMode.OtherMechanismsAnchored: - struct: EnumItem - Enum.IKControlType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IKControlType.LookAt: - struct: EnumItem - Enum.IKControlType.Position: - struct: EnumItem - Enum.IKControlType.Rotation: - struct: EnumItem - Enum.IKControlType.Transform: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorConnection: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorInvalidUser: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorJsonParse: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorTimedOut: - struct: EnumItem - Enum.IXPLoadingStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IXPLoadingStatus.Initialized: - struct: EnumItem - Enum.IXPLoadingStatus.None: - struct: EnumItem - Enum.IXPLoadingStatus.Pending: - struct: EnumItem - Enum.InOut.Center: - struct: EnumItem - Enum.InOut.Edge: - struct: EnumItem - Enum.InOut.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InOut.Inset: - struct: EnumItem - Enum.InfoType.Asset: - struct: EnumItem - Enum.InfoType.Bundle: - struct: EnumItem - Enum.InfoType.GamePass: - struct: EnumItem - Enum.InfoType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InfoType.Product: - struct: EnumItem - Enum.InfoType.Subscription: - struct: EnumItem - Enum.InitialDockState.Bottom: - struct: EnumItem - Enum.InitialDockState.Float: - struct: EnumItem - Enum.InitialDockState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InitialDockState.Left: - struct: EnumItem - Enum.InitialDockState.Right: - struct: EnumItem - Enum.InitialDockState.Top: - struct: EnumItem - Enum.InputType.Action1: - struct: EnumItem - deprecated: - message: Enum.InputType.Action1 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action2: - struct: EnumItem - deprecated: - message: Enum.InputType.Action2 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action3: - struct: EnumItem - deprecated: - message: Enum.InputType.Action3 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action4: - struct: EnumItem - deprecated: - message: Enum.InputType.Action4 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action5: - struct: EnumItem - deprecated: - message: Enum.InputType.Action5 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Constant: - struct: EnumItem - Enum.InputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InputType.LeftTread: - struct: EnumItem - deprecated: - message: Enum.InputType.LeftTread was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.NoInput: - struct: EnumItem - Enum.InputType.RightTread: - struct: EnumItem - deprecated: - message: Enum.InputType.RightTread was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Sin: - struct: EnumItem - Enum.InputType.Steer: - struct: EnumItem - deprecated: - message: Enum.InputType.Steer was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Throtle: - struct: EnumItem - deprecated: - message: Enum.InputType.Throtle was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Throttle: - struct: EnumItem - deprecated: - message: Enum.InputType.Throttle was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.UpDown: - struct: EnumItem - deprecated: - message: Enum.InputType.UpDown was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InterpolationThrottlingMode.Default: - struct: EnumItem - Enum.InterpolationThrottlingMode.Disabled: - struct: EnumItem - Enum.InterpolationThrottlingMode.Enabled: - struct: EnumItem - Enum.InterpolationThrottlingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.JointCreationMode.All: - struct: EnumItem - Enum.JointCreationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.JointCreationMode.None: - struct: EnumItem - Enum.JointCreationMode.Surface: - struct: EnumItem - Enum.KeyCode.A: - struct: EnumItem - Enum.KeyCode.Ampersand: - struct: EnumItem - Enum.KeyCode.Asterisk: - struct: EnumItem - Enum.KeyCode.At: - struct: EnumItem - Enum.KeyCode.B: - struct: EnumItem - Enum.KeyCode.BackSlash: - struct: EnumItem - Enum.KeyCode.Backquote: - struct: EnumItem - Enum.KeyCode.Backspace: - struct: EnumItem - Enum.KeyCode.Break: - struct: EnumItem - Enum.KeyCode.ButtonA: - struct: EnumItem - Enum.KeyCode.ButtonB: - struct: EnumItem - Enum.KeyCode.ButtonL1: - struct: EnumItem - Enum.KeyCode.ButtonL2: - struct: EnumItem - Enum.KeyCode.ButtonL3: - struct: EnumItem - Enum.KeyCode.ButtonR1: - struct: EnumItem - Enum.KeyCode.ButtonR2: - struct: EnumItem - Enum.KeyCode.ButtonR3: - struct: EnumItem - Enum.KeyCode.ButtonSelect: - struct: EnumItem - Enum.KeyCode.ButtonStart: - struct: EnumItem - Enum.KeyCode.ButtonX: - struct: EnumItem - Enum.KeyCode.ButtonY: - struct: EnumItem - Enum.KeyCode.C: - struct: EnumItem - Enum.KeyCode.CapsLock: - struct: EnumItem - Enum.KeyCode.Caret: - struct: EnumItem - Enum.KeyCode.Clear: - struct: EnumItem - Enum.KeyCode.Colon: - struct: EnumItem - Enum.KeyCode.Comma: - struct: EnumItem - Enum.KeyCode.Compose: - struct: EnumItem - Enum.KeyCode.D: - struct: EnumItem - Enum.KeyCode.DPadDown: - struct: EnumItem - Enum.KeyCode.DPadLeft: - struct: EnumItem - Enum.KeyCode.DPadRight: - struct: EnumItem - Enum.KeyCode.DPadUp: - struct: EnumItem - Enum.KeyCode.Delete: - struct: EnumItem - Enum.KeyCode.Dollar: - struct: EnumItem - Enum.KeyCode.Down: - struct: EnumItem - Enum.KeyCode.E: - struct: EnumItem - Enum.KeyCode.Eight: - struct: EnumItem - Enum.KeyCode.End: - struct: EnumItem - Enum.KeyCode.Equals: - struct: EnumItem - Enum.KeyCode.Escape: - struct: EnumItem - Enum.KeyCode.Euro: - struct: EnumItem - Enum.KeyCode.F: - struct: EnumItem - Enum.KeyCode.F1: - struct: EnumItem - Enum.KeyCode.F10: - struct: EnumItem - Enum.KeyCode.F11: - struct: EnumItem - Enum.KeyCode.F12: - struct: EnumItem - Enum.KeyCode.F13: - struct: EnumItem - Enum.KeyCode.F14: - struct: EnumItem - Enum.KeyCode.F15: - struct: EnumItem - Enum.KeyCode.F2: - struct: EnumItem - Enum.KeyCode.F3: - struct: EnumItem - Enum.KeyCode.F4: - struct: EnumItem - Enum.KeyCode.F5: - struct: EnumItem - Enum.KeyCode.F6: - struct: EnumItem - Enum.KeyCode.F7: - struct: EnumItem - Enum.KeyCode.F8: - struct: EnumItem - Enum.KeyCode.F9: - struct: EnumItem - Enum.KeyCode.Five: - struct: EnumItem - Enum.KeyCode.Four: - struct: EnumItem - Enum.KeyCode.G: - struct: EnumItem - Enum.KeyCode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeyCode.GreaterThan: - struct: EnumItem - Enum.KeyCode.H: - struct: EnumItem - Enum.KeyCode.Hash: - struct: EnumItem - Enum.KeyCode.Help: - struct: EnumItem - Enum.KeyCode.Home: - struct: EnumItem - Enum.KeyCode.I: - struct: EnumItem - Enum.KeyCode.Insert: - struct: EnumItem - Enum.KeyCode.J: - struct: EnumItem - Enum.KeyCode.K: - struct: EnumItem - Enum.KeyCode.KeypadDivide: - struct: EnumItem - Enum.KeyCode.KeypadEight: - struct: EnumItem - Enum.KeyCode.KeypadEnter: - struct: EnumItem - Enum.KeyCode.KeypadEquals: - struct: EnumItem - Enum.KeyCode.KeypadFive: - struct: EnumItem - Enum.KeyCode.KeypadFour: - struct: EnumItem - Enum.KeyCode.KeypadMinus: - struct: EnumItem - Enum.KeyCode.KeypadMultiply: - struct: EnumItem - Enum.KeyCode.KeypadNine: - struct: EnumItem - Enum.KeyCode.KeypadOne: - struct: EnumItem - Enum.KeyCode.KeypadPeriod: - struct: EnumItem - Enum.KeyCode.KeypadPlus: - struct: EnumItem - Enum.KeyCode.KeypadSeven: - struct: EnumItem - Enum.KeyCode.KeypadSix: - struct: EnumItem - Enum.KeyCode.KeypadThree: - struct: EnumItem - Enum.KeyCode.KeypadTwo: - struct: EnumItem - Enum.KeyCode.KeypadZero: - struct: EnumItem - Enum.KeyCode.L: - struct: EnumItem - Enum.KeyCode.Left: - struct: EnumItem - Enum.KeyCode.LeftAlt: - struct: EnumItem - Enum.KeyCode.LeftBracket: - struct: EnumItem - Enum.KeyCode.LeftControl: - struct: EnumItem - Enum.KeyCode.LeftCurly: - struct: EnumItem - Enum.KeyCode.LeftMeta: - struct: EnumItem - Enum.KeyCode.LeftParenthesis: - struct: EnumItem - Enum.KeyCode.LeftShift: - struct: EnumItem - Enum.KeyCode.LeftSuper: - struct: EnumItem - Enum.KeyCode.LessThan: - struct: EnumItem - Enum.KeyCode.M: - struct: EnumItem - Enum.KeyCode.Menu: - struct: EnumItem - Enum.KeyCode.Minus: - struct: EnumItem - Enum.KeyCode.Mode: - struct: EnumItem - Enum.KeyCode.N: - struct: EnumItem - Enum.KeyCode.Nine: - struct: EnumItem - Enum.KeyCode.NumLock: - struct: EnumItem - Enum.KeyCode.O: - struct: EnumItem - Enum.KeyCode.One: - struct: EnumItem - Enum.KeyCode.P: - struct: EnumItem - Enum.KeyCode.PageDown: - struct: EnumItem - Enum.KeyCode.PageUp: - struct: EnumItem - Enum.KeyCode.Pause: - struct: EnumItem - Enum.KeyCode.Percent: - struct: EnumItem - Enum.KeyCode.Period: - struct: EnumItem - Enum.KeyCode.Pipe: - struct: EnumItem - Enum.KeyCode.Plus: - struct: EnumItem - Enum.KeyCode.Power: - struct: EnumItem - Enum.KeyCode.Print: - struct: EnumItem - Enum.KeyCode.Q: - struct: EnumItem - Enum.KeyCode.Question: - struct: EnumItem - Enum.KeyCode.Quote: - struct: EnumItem - Enum.KeyCode.QuotedDouble: - struct: EnumItem - Enum.KeyCode.R: - struct: EnumItem - Enum.KeyCode.Return: - struct: EnumItem - Enum.KeyCode.Right: - struct: EnumItem - Enum.KeyCode.RightAlt: - struct: EnumItem - Enum.KeyCode.RightBracket: - struct: EnumItem - Enum.KeyCode.RightControl: - struct: EnumItem - Enum.KeyCode.RightCurly: - struct: EnumItem - Enum.KeyCode.RightMeta: - struct: EnumItem - Enum.KeyCode.RightParenthesis: - struct: EnumItem - Enum.KeyCode.RightShift: - struct: EnumItem - Enum.KeyCode.RightSuper: - struct: EnumItem - Enum.KeyCode.S: - struct: EnumItem - Enum.KeyCode.ScrollLock: - struct: EnumItem - Enum.KeyCode.Semicolon: - struct: EnumItem - Enum.KeyCode.Seven: - struct: EnumItem - Enum.KeyCode.Six: - struct: EnumItem - Enum.KeyCode.Slash: - struct: EnumItem - Enum.KeyCode.Space: - struct: EnumItem - Enum.KeyCode.SysReq: - struct: EnumItem - Enum.KeyCode.T: - struct: EnumItem - Enum.KeyCode.Tab: - struct: EnumItem - Enum.KeyCode.Three: - struct: EnumItem - Enum.KeyCode.Thumbstick1: - struct: EnumItem - Enum.KeyCode.Thumbstick2: - struct: EnumItem - Enum.KeyCode.Tilde: - struct: EnumItem - Enum.KeyCode.Two: - struct: EnumItem - Enum.KeyCode.U: - struct: EnumItem - Enum.KeyCode.Underscore: - struct: EnumItem - Enum.KeyCode.Undo: - struct: EnumItem - Enum.KeyCode.Unknown: - struct: EnumItem - Enum.KeyCode.Up: - struct: EnumItem - Enum.KeyCode.V: - struct: EnumItem - Enum.KeyCode.W: - struct: EnumItem - Enum.KeyCode.World0: - struct: EnumItem - Enum.KeyCode.World1: - struct: EnumItem - Enum.KeyCode.World10: - struct: EnumItem - Enum.KeyCode.World11: - struct: EnumItem - Enum.KeyCode.World12: - struct: EnumItem - Enum.KeyCode.World13: - struct: EnumItem - Enum.KeyCode.World14: - struct: EnumItem - Enum.KeyCode.World15: - struct: EnumItem - Enum.KeyCode.World16: - struct: EnumItem - Enum.KeyCode.World17: - struct: EnumItem - Enum.KeyCode.World18: - struct: EnumItem - Enum.KeyCode.World19: - struct: EnumItem - Enum.KeyCode.World2: - struct: EnumItem - Enum.KeyCode.World20: - struct: EnumItem - Enum.KeyCode.World21: - struct: EnumItem - Enum.KeyCode.World22: - struct: EnumItem - Enum.KeyCode.World23: - struct: EnumItem - Enum.KeyCode.World24: - struct: EnumItem - Enum.KeyCode.World25: - struct: EnumItem - Enum.KeyCode.World26: - struct: EnumItem - Enum.KeyCode.World27: - struct: EnumItem - Enum.KeyCode.World28: - struct: EnumItem - Enum.KeyCode.World29: - struct: EnumItem - Enum.KeyCode.World3: - struct: EnumItem - Enum.KeyCode.World30: - struct: EnumItem - Enum.KeyCode.World31: - struct: EnumItem - Enum.KeyCode.World32: - struct: EnumItem - Enum.KeyCode.World33: - struct: EnumItem - Enum.KeyCode.World34: - struct: EnumItem - Enum.KeyCode.World35: - struct: EnumItem - Enum.KeyCode.World36: - struct: EnumItem - Enum.KeyCode.World37: - struct: EnumItem - Enum.KeyCode.World38: - struct: EnumItem - Enum.KeyCode.World39: - struct: EnumItem - Enum.KeyCode.World4: - struct: EnumItem - Enum.KeyCode.World40: - struct: EnumItem - Enum.KeyCode.World41: - struct: EnumItem - Enum.KeyCode.World42: - struct: EnumItem - Enum.KeyCode.World43: - struct: EnumItem - Enum.KeyCode.World44: - struct: EnumItem - Enum.KeyCode.World45: - struct: EnumItem - Enum.KeyCode.World46: - struct: EnumItem - Enum.KeyCode.World47: - struct: EnumItem - Enum.KeyCode.World48: - struct: EnumItem - Enum.KeyCode.World49: - struct: EnumItem - Enum.KeyCode.World5: - struct: EnumItem - Enum.KeyCode.World50: - struct: EnumItem - Enum.KeyCode.World51: - struct: EnumItem - Enum.KeyCode.World52: - struct: EnumItem - Enum.KeyCode.World53: - struct: EnumItem - Enum.KeyCode.World54: - struct: EnumItem - Enum.KeyCode.World55: - struct: EnumItem - Enum.KeyCode.World56: - struct: EnumItem - Enum.KeyCode.World57: - struct: EnumItem - Enum.KeyCode.World58: - struct: EnumItem - Enum.KeyCode.World59: - struct: EnumItem - Enum.KeyCode.World6: - struct: EnumItem - Enum.KeyCode.World60: - struct: EnumItem - Enum.KeyCode.World61: - struct: EnumItem - Enum.KeyCode.World62: - struct: EnumItem - Enum.KeyCode.World63: - struct: EnumItem - Enum.KeyCode.World64: - struct: EnumItem - Enum.KeyCode.World65: - struct: EnumItem - Enum.KeyCode.World66: - struct: EnumItem - Enum.KeyCode.World67: - struct: EnumItem - Enum.KeyCode.World68: - struct: EnumItem - Enum.KeyCode.World69: - struct: EnumItem - Enum.KeyCode.World7: - struct: EnumItem - Enum.KeyCode.World70: - struct: EnumItem - Enum.KeyCode.World71: - struct: EnumItem - Enum.KeyCode.World72: - struct: EnumItem - Enum.KeyCode.World73: - struct: EnumItem - Enum.KeyCode.World74: - struct: EnumItem - Enum.KeyCode.World75: - struct: EnumItem - Enum.KeyCode.World76: - struct: EnumItem - Enum.KeyCode.World77: - struct: EnumItem - Enum.KeyCode.World78: - struct: EnumItem - Enum.KeyCode.World79: - struct: EnumItem - Enum.KeyCode.World8: - struct: EnumItem - Enum.KeyCode.World80: - struct: EnumItem - Enum.KeyCode.World81: - struct: EnumItem - Enum.KeyCode.World82: - struct: EnumItem - Enum.KeyCode.World83: - struct: EnumItem - Enum.KeyCode.World84: - struct: EnumItem - Enum.KeyCode.World85: - struct: EnumItem - Enum.KeyCode.World86: - struct: EnumItem - Enum.KeyCode.World87: - struct: EnumItem - Enum.KeyCode.World88: - struct: EnumItem - Enum.KeyCode.World89: - struct: EnumItem - Enum.KeyCode.World9: - struct: EnumItem - Enum.KeyCode.World90: - struct: EnumItem - Enum.KeyCode.World91: - struct: EnumItem - Enum.KeyCode.World92: - struct: EnumItem - Enum.KeyCode.World93: - struct: EnumItem - Enum.KeyCode.World94: - struct: EnumItem - Enum.KeyCode.World95: - struct: EnumItem - Enum.KeyCode.X: - struct: EnumItem - Enum.KeyCode.Y: - struct: EnumItem - Enum.KeyCode.Z: - struct: EnumItem - Enum.KeyCode.Zero: - struct: EnumItem - Enum.KeyInterpolationMode.Constant: - struct: EnumItem - Enum.KeyInterpolationMode.Cubic: - struct: EnumItem - Enum.KeyInterpolationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeyInterpolationMode.Linear: - struct: EnumItem - Enum.KeywordFilterType.Exclude: - struct: EnumItem - Enum.KeywordFilterType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeywordFilterType.Include: - struct: EnumItem - Enum.Language.Default: - struct: EnumItem - Enum.Language.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LeftRight.Center: - struct: EnumItem - Enum.LeftRight.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LeftRight.Left: - struct: EnumItem - Enum.LeftRight.Right: - struct: EnumItem - Enum.Limb.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Limb.Head: - struct: EnumItem - Enum.Limb.LeftArm: - struct: EnumItem - Enum.Limb.LeftLeg: - struct: EnumItem - Enum.Limb.RightArm: - struct: EnumItem - Enum.Limb.RightLeg: - struct: EnumItem - Enum.Limb.Torso: - struct: EnumItem - Enum.Limb.Unknown: - struct: EnumItem - Enum.LineJoinMode.Bevel: - struct: EnumItem - Enum.LineJoinMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LineJoinMode.Miter: - struct: EnumItem - Enum.LineJoinMode.Round: - struct: EnumItem - Enum.ListDisplayMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ListDisplayMode.Horizontal: - struct: EnumItem - Enum.ListDisplayMode.Vertical: - struct: EnumItem - Enum.ListenerType.CFrame: - struct: EnumItem - Enum.ListenerType.Camera: - struct: EnumItem - Enum.ListenerType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ListenerType.ObjectCFrame: - struct: EnumItem - Enum.ListenerType.ObjectPosition: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Default: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Disabled: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Enabled: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LoadDynamicHeads.Default: - struct: EnumItem - Enum.LoadDynamicHeads.Disabled: - struct: EnumItem - Enum.LoadDynamicHeads.Enabled: - struct: EnumItem - Enum.LoadDynamicHeads.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MarkupKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MarkupKind.Markdown: - struct: EnumItem - Enum.MarkupKind.PlainText: - struct: EnumItem - Enum.Material.Air: - struct: EnumItem - Enum.Material.Aluminum: - struct: EnumItem - deprecated: - message: Enum.Material.Aluminum was replaced with Enum.Material.Foil - replace: - - Enum.Material.Foil - Enum.Material.Asphalt: - struct: EnumItem - Enum.Material.Basalt: - struct: EnumItem - Enum.Material.Brick: - struct: EnumItem - Enum.Material.Cobblestone: - struct: EnumItem - Enum.Material.Concrete: - struct: EnumItem - Enum.Material.Corroded Metal: - struct: EnumItem - deprecated: - message: Enum.Material.Corroded Metal was replaced with Enum.Material.CorrodedMetal - replace: - - Enum.Material.CorrodedMetal - Enum.Material.CorrodedMetal: - struct: EnumItem - Enum.Material.CrackedLava: - struct: EnumItem - Enum.Material.DiamondPlate: - struct: EnumItem - Enum.Material.Fabric: - struct: EnumItem - Enum.Material.Foil: - struct: EnumItem - Enum.Material.ForceField: - struct: EnumItem - Enum.Material.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Material.Glacier: - struct: EnumItem - Enum.Material.Glass: - struct: EnumItem - Enum.Material.Granite: - struct: EnumItem - Enum.Material.Grass: - struct: EnumItem - Enum.Material.Ground: - struct: EnumItem - Enum.Material.Ice: - struct: EnumItem - Enum.Material.LeafyGrass: - struct: EnumItem - Enum.Material.Limestone: - struct: EnumItem - Enum.Material.Marble: - struct: EnumItem - Enum.Material.Metal: - struct: EnumItem - Enum.Material.Mud: - struct: EnumItem - Enum.Material.Neon: - struct: EnumItem - Enum.Material.Pavement: - struct: EnumItem - Enum.Material.Pebble: - struct: EnumItem - Enum.Material.Plastic: - struct: EnumItem - Enum.Material.Rock: - struct: EnumItem - Enum.Material.Salt: - struct: EnumItem - Enum.Material.Sand: - struct: EnumItem - Enum.Material.Sandstone: - struct: EnumItem - Enum.Material.Slate: - struct: EnumItem - Enum.Material.SmoothPlastic: - struct: EnumItem - Enum.Material.Snow: - struct: EnumItem - Enum.Material.Water: - struct: EnumItem - Enum.Material.Wood: - struct: EnumItem - Enum.Material.WoodPlanks: - struct: EnumItem - Enum.MaterialPattern.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MaterialPattern.Organic: - struct: EnumItem - Enum.MaterialPattern.Regular: - struct: EnumItem - Enum.MembershipType.BuildersClub: - struct: EnumItem - Enum.MembershipType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MembershipType.None: - struct: EnumItem - Enum.MembershipType.OutrageousBuildersClub: - struct: EnumItem - Enum.MembershipType.Premium: - struct: EnumItem - Enum.MembershipType.TurboBuildersClub: - struct: EnumItem - Enum.MeshPartDetailLevel.DistanceBased: - struct: EnumItem - Enum.MeshPartDetailLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshPartDetailLevel.Level00: - struct: EnumItem - Enum.MeshPartDetailLevel.Level01: - struct: EnumItem - Enum.MeshPartDetailLevel.Level02: - struct: EnumItem - Enum.MeshPartDetailLevel.Level03: - struct: EnumItem - Enum.MeshPartDetailLevel.Level04: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Default: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Disabled: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Enabled: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshScaleUnit.CM: - struct: EnumItem - Enum.MeshScaleUnit.Foot: - struct: EnumItem - Enum.MeshScaleUnit.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshScaleUnit.Inch: - struct: EnumItem - Enum.MeshScaleUnit.MM: - struct: EnumItem - Enum.MeshScaleUnit.Meter: - struct: EnumItem - Enum.MeshScaleUnit.Stud: - struct: EnumItem - Enum.MeshType.Brick: - struct: EnumItem - Enum.MeshType.CornerWedge: - struct: EnumItem - Enum.MeshType.Cylinder: - struct: EnumItem - Enum.MeshType.FileMesh: - struct: EnumItem - Enum.MeshType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshType.Head: - struct: EnumItem - Enum.MeshType.ParallelRamp: - struct: EnumItem - Enum.MeshType.Prism: - struct: EnumItem - Enum.MeshType.Pyramid: - struct: EnumItem - Enum.MeshType.RightAngleRamp: - struct: EnumItem - Enum.MeshType.Sphere: - struct: EnumItem - Enum.MeshType.Torso: - struct: EnumItem - Enum.MeshType.Wedge: - struct: EnumItem - Enum.MessageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MessageType.MessageError: - struct: EnumItem - Enum.MessageType.MessageInfo: - struct: EnumItem - Enum.MessageType.MessageOutput: - struct: EnumItem - Enum.MessageType.MessageWarning: - struct: EnumItem - Enum.ModelLevelOfDetail.Automatic: - struct: EnumItem - Enum.ModelLevelOfDetail.Disabled: - struct: EnumItem - Enum.ModelLevelOfDetail.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModelLevelOfDetail.StreamingMesh: - struct: EnumItem - Enum.ModelStreamingMode.Atomic: - struct: EnumItem - Enum.ModelStreamingMode.Default: - struct: EnumItem - Enum.ModelStreamingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModelStreamingMode.Nonatomic: - struct: EnumItem - Enum.ModelStreamingMode.Persistent: - struct: EnumItem - Enum.ModelStreamingMode.PersistentPerPlayer: - struct: EnumItem - Enum.ModifierKey.Alt: - struct: EnumItem - Enum.ModifierKey.Ctrl: - struct: EnumItem - Enum.ModifierKey.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModifierKey.Meta: - struct: EnumItem - Enum.ModifierKey.Shift: - struct: EnumItem - Enum.MouseBehavior.Default: - struct: EnumItem - Enum.MouseBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MouseBehavior.LockCenter: - struct: EnumItem - Enum.MouseBehavior.LockCurrentPosition: - struct: EnumItem - Enum.MoveState.AirFree: - struct: EnumItem - Enum.MoveState.Coasting: - struct: EnumItem - Enum.MoveState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MoveState.Pushing: - struct: EnumItem - Enum.MoveState.Stopped: - struct: EnumItem - Enum.MoveState.Stopping: - struct: EnumItem - Enum.MuteState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MuteState.Muted: - struct: EnumItem - Enum.MuteState.Unmuted: - struct: EnumItem - Enum.NameOcclusion.EnemyOcclusion: - struct: EnumItem - Enum.NameOcclusion.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NameOcclusion.NoOcclusion: - struct: EnumItem - Enum.NameOcclusion.OccludeAll: - struct: EnumItem - Enum.NetworkOwnership.Automatic: - struct: EnumItem - Enum.NetworkOwnership.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NetworkOwnership.Manual: - struct: EnumItem - Enum.NetworkOwnership.OnContact: - struct: EnumItem - Enum.NormalId.Back: - struct: EnumItem - Enum.NormalId.Bottom: - struct: EnumItem - Enum.NormalId.Front: - struct: EnumItem - Enum.NormalId.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NormalId.Left: - struct: EnumItem - Enum.NormalId.Right: - struct: EnumItem - Enum.NormalId.Top: - struct: EnumItem - Enum.OrientationAlignmentMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OrientationAlignmentMode.OneAttachment: - struct: EnumItem - Enum.OrientationAlignmentMode.TwoAttachment: - struct: EnumItem - Enum.OutfitSource.All: - struct: EnumItem - Enum.OutfitSource.Created: - struct: EnumItem - Enum.OutfitSource.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutfitSource.Purchased: - struct: EnumItem - Enum.OutfitType.All: - struct: EnumItem - Enum.OutfitType.Avatar: - struct: EnumItem - Enum.OutfitType.DynamicHead: - struct: EnumItem - Enum.OutfitType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutputLayoutMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutputLayoutMode.Horizontal: - struct: EnumItem - Enum.OutputLayoutMode.Vertical: - struct: EnumItem - Enum.OverrideMouseIconBehavior.ForceHide: - struct: EnumItem - Enum.OverrideMouseIconBehavior.ForceShow: - struct: EnumItem - Enum.OverrideMouseIconBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OverrideMouseIconBehavior.None: - struct: EnumItem - Enum.PackagePermission.Edit: - struct: EnumItem - Enum.PackagePermission.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PackagePermission.NoAccess: - struct: EnumItem - Enum.PackagePermission.None: - struct: EnumItem - Enum.PackagePermission.Own: - struct: EnumItem - Enum.PackagePermission.Revoked: - struct: EnumItem - Enum.PackagePermission.UseView: - struct: EnumItem - Enum.PartType.Ball: - struct: EnumItem - Enum.PartType.Block: - struct: EnumItem - Enum.PartType.Cylinder: - struct: EnumItem - Enum.PartType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShape.Box: - struct: EnumItem - Enum.ParticleEmitterShape.Cylinder: - struct: EnumItem - Enum.ParticleEmitterShape.Disc: - struct: EnumItem - Enum.ParticleEmitterShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShape.Sphere: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShapeInOut.InAndOut: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.Inward: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.Outward: - struct: EnumItem - Enum.ParticleEmitterShapeStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShapeStyle.Surface: - struct: EnumItem - Enum.ParticleEmitterShapeStyle.Volume: - struct: EnumItem - Enum.ParticleFlipbookLayout.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookLayout.Grid2x2: - struct: EnumItem - Enum.ParticleFlipbookLayout.Grid4x4: - struct: EnumItem - Enum.ParticleFlipbookLayout.Grid8x8: - struct: EnumItem - Enum.ParticleFlipbookLayout.None: - struct: EnumItem - Enum.ParticleFlipbookMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookMode.Loop: - struct: EnumItem - Enum.ParticleFlipbookMode.OneShot: - struct: EnumItem - Enum.ParticleFlipbookMode.PingPong: - struct: EnumItem - Enum.ParticleFlipbookMode.Random: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.Compatible: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookTextureCompatible.NotCompatible: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.Unknown: - struct: EnumItem - Enum.ParticleOrientation.FacingCamera: - struct: EnumItem - Enum.ParticleOrientation.FacingCameraWorldUp: - struct: EnumItem - Enum.ParticleOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleOrientation.VelocityParallel: - struct: EnumItem - Enum.ParticleOrientation.VelocityPerpendicular: - struct: EnumItem - Enum.PathStatus.ClosestNoPath: - struct: EnumItem - Enum.PathStatus.ClosestOutOfRange: - struct: EnumItem - Enum.PathStatus.FailFinishNotEmpty: - struct: EnumItem - Enum.PathStatus.FailStartNotEmpty: - struct: EnumItem - Enum.PathStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PathStatus.NoPath: - struct: EnumItem - Enum.PathStatus.Success: - struct: EnumItem - Enum.PathWaypointAction.Custom: - struct: EnumItem - Enum.PathWaypointAction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PathWaypointAction.Jump: - struct: EnumItem - Enum.PathWaypointAction.Walk: - struct: EnumItem - Enum.PermissionLevelShown.Game: - struct: EnumItem - Enum.PermissionLevelShown.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PermissionLevelShown.Roblox: - struct: EnumItem - Enum.PermissionLevelShown.RobloxGame: - struct: EnumItem - Enum.PermissionLevelShown.RobloxScript: - struct: EnumItem - Enum.PermissionLevelShown.Studio: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed120Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed240Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed60Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PhysicsSteppingMethod.Adaptive: - struct: EnumItem - Enum.PhysicsSteppingMethod.Default: - struct: EnumItem - Enum.PhysicsSteppingMethod.Fixed: - struct: EnumItem - Enum.PhysicsSteppingMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Platform.Android: - struct: EnumItem - Enum.Platform.AndroidTV: - struct: EnumItem - Enum.Platform.BeOS: - struct: EnumItem - Enum.Platform.Chromecast: - struct: EnumItem - Enum.Platform.DOS: - struct: EnumItem - Enum.Platform.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Platform.IOS: - struct: EnumItem - Enum.Platform.Linux: - struct: EnumItem - Enum.Platform.NX: - struct: EnumItem - Enum.Platform.None: - struct: EnumItem - Enum.Platform.OSX: - struct: EnumItem - Enum.Platform.Ouya: - struct: EnumItem - Enum.Platform.PS3: - struct: EnumItem - Enum.Platform.PS4: - struct: EnumItem - Enum.Platform.SteamOS: - struct: EnumItem - Enum.Platform.UWP: - struct: EnumItem - Enum.Platform.WebOS: - struct: EnumItem - Enum.Platform.WiiU: - struct: EnumItem - Enum.Platform.Windows: - struct: EnumItem - Enum.Platform.XBox360: - struct: EnumItem - Enum.Platform.XBoxOne: - struct: EnumItem - Enum.PlaybackState.Begin: - struct: EnumItem - Enum.PlaybackState.Cancelled: - struct: EnumItem - Enum.PlaybackState.Completed: - struct: EnumItem - Enum.PlaybackState.Delayed: - struct: EnumItem - Enum.PlaybackState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlaybackState.Paused: - struct: EnumItem - Enum.PlaybackState.Playing: - struct: EnumItem - Enum.PlayerActions.CharacterBackward: - struct: EnumItem - Enum.PlayerActions.CharacterForward: - struct: EnumItem - Enum.PlayerActions.CharacterJump: - struct: EnumItem - Enum.PlayerActions.CharacterLeft: - struct: EnumItem - Enum.PlayerActions.CharacterRight: - struct: EnumItem - Enum.PlayerActions.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlayerChatType.All: - struct: EnumItem - Enum.PlayerChatType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlayerChatType.Team: - struct: EnumItem - Enum.PlayerChatType.Whisper: - struct: EnumItem - Enum.PoseEasingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PoseEasingDirection.In: - struct: EnumItem - Enum.PoseEasingDirection.InOut: - struct: EnumItem - Enum.PoseEasingDirection.Out: - struct: EnumItem - Enum.PoseEasingStyle.Bounce: - struct: EnumItem - Enum.PoseEasingStyle.Constant: - struct: EnumItem - Enum.PoseEasingStyle.Cubic: - struct: EnumItem - Enum.PoseEasingStyle.Elastic: - struct: EnumItem - Enum.PoseEasingStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PoseEasingStyle.Linear: - struct: EnumItem - Enum.PositionAlignmentMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PositionAlignmentMode.OneAttachment: - struct: EnumItem - Enum.PositionAlignmentMode.TwoAttachment: - struct: EnumItem - Enum.PrivilegeType.Admin: - struct: EnumItem - Enum.PrivilegeType.Banned: - struct: EnumItem - Enum.PrivilegeType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PrivilegeType.Member: - struct: EnumItem - Enum.PrivilegeType.Owner: - struct: EnumItem - Enum.PrivilegeType.Visitor: - struct: EnumItem - Enum.ProductLocationRestriction.AllGames: - struct: EnumItem - Enum.ProductLocationRestriction.AllowedGames: - struct: EnumItem - Enum.ProductLocationRestriction.AvatarShop: - struct: EnumItem - Enum.ProductLocationRestriction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProductPurchaseDecision.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProductPurchaseDecision.NotProcessedYet: - struct: EnumItem - Enum.ProductPurchaseDecision.PurchaseGranted: - struct: EnumItem - Enum.PromptPublishAssetResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PromptPublishAssetResult.NoUserInput: - struct: EnumItem - Enum.PromptPublishAssetResult.PermissionDenied: - struct: EnumItem - Enum.PromptPublishAssetResult.Success: - struct: EnumItem - Enum.PromptPublishAssetResult.Timeout: - struct: EnumItem - Enum.PromptPublishAssetResult.UploadFailed: - struct: EnumItem - Enum.PropertyStatus.Error: - struct: EnumItem - Enum.PropertyStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PropertyStatus.Ok: - struct: EnumItem - Enum.PropertyStatus.Warning: - struct: EnumItem - Enum.ProximityPromptExclusivity.AlwaysShow: - struct: EnumItem - Enum.ProximityPromptExclusivity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProximityPromptExclusivity.OneGlobally: - struct: EnumItem - Enum.ProximityPromptExclusivity.OnePerButton: - struct: EnumItem - Enum.ProximityPromptInputType.Gamepad: - struct: EnumItem - Enum.ProximityPromptInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProximityPromptInputType.Keyboard: - struct: EnumItem - Enum.ProximityPromptInputType.Touch: - struct: EnumItem - Enum.ProximityPromptStyle.Custom: - struct: EnumItem - Enum.ProximityPromptStyle.Default: - struct: EnumItem - Enum.ProximityPromptStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.QualityLevel.Automatic: - struct: EnumItem - Enum.QualityLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.QualityLevel.Level 1: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 1 was replaced with Enum.QualityLevel.Level01 - replace: - - Enum.QualityLevel.Level01 - Enum.QualityLevel.Level 2: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 2 was replaced with Enum.QualityLevel.Level02 - replace: - - Enum.QualityLevel.Level02 - Enum.QualityLevel.Level 3: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 3 was replaced with Enum.QualityLevel.Level03 - replace: - - Enum.QualityLevel.Level03 - Enum.QualityLevel.Level 4: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 4 was replaced with Enum.QualityLevel.Level04 - replace: - - Enum.QualityLevel.Level04 - Enum.QualityLevel.Level 5: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 5 was replaced with Enum.QualityLevel.Level05 - replace: - - Enum.QualityLevel.Level05 - Enum.QualityLevel.Level 6: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 6 was replaced with Enum.QualityLevel.Level06 - replace: - - Enum.QualityLevel.Level06 - Enum.QualityLevel.Level 7: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 7 was replaced with Enum.QualityLevel.Level07 - replace: - - Enum.QualityLevel.Level07 - Enum.QualityLevel.Level 8: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 8 was replaced with Enum.QualityLevel.Level08 - replace: - - Enum.QualityLevel.Level08 - Enum.QualityLevel.Level 9: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 9 was replaced with Enum.QualityLevel.Level09 - replace: - - Enum.QualityLevel.Level09 - Enum.QualityLevel.Level 10: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 10 was replaced with Enum.QualityLevel.Level10 - replace: - - Enum.QualityLevel.Level10 - Enum.QualityLevel.Level 11: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 11 was replaced with Enum.QualityLevel.Level11 - replace: - - Enum.QualityLevel.Level11 - Enum.QualityLevel.Level 12: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 12 was replaced with Enum.QualityLevel.Level12 - replace: - - Enum.QualityLevel.Level12 - Enum.QualityLevel.Level 13: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 13 was replaced with Enum.QualityLevel.Level13 - replace: - - Enum.QualityLevel.Level13 - Enum.QualityLevel.Level 14: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 14 was replaced with Enum.QualityLevel.Level14 - replace: - - Enum.QualityLevel.Level14 - Enum.QualityLevel.Level 15: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 15 was replaced with Enum.QualityLevel.Level15 - replace: - - Enum.QualityLevel.Level15 - Enum.QualityLevel.Level 16: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 16 was replaced with Enum.QualityLevel.Level16 - replace: - - Enum.QualityLevel.Level16 - Enum.QualityLevel.Level 17: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 17 was replaced with Enum.QualityLevel.Level17 - replace: - - Enum.QualityLevel.Level17 - Enum.QualityLevel.Level 18: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 18 was replaced with Enum.QualityLevel.Level18 - replace: - - Enum.QualityLevel.Level18 - Enum.QualityLevel.Level 19: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 19 was replaced with Enum.QualityLevel.Level19 - replace: - - Enum.QualityLevel.Level19 - Enum.QualityLevel.Level 20: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 20 was replaced with Enum.QualityLevel.Level20 - replace: - - Enum.QualityLevel.Level20 - Enum.QualityLevel.Level 21: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 21 was replaced with Enum.QualityLevel.Level21 - replace: - - Enum.QualityLevel.Level21 - Enum.QualityLevel.Level01: - struct: EnumItem - Enum.QualityLevel.Level02: - struct: EnumItem - Enum.QualityLevel.Level03: - struct: EnumItem - Enum.QualityLevel.Level04: - struct: EnumItem - Enum.QualityLevel.Level05: - struct: EnumItem - Enum.QualityLevel.Level06: - struct: EnumItem - Enum.QualityLevel.Level07: - struct: EnumItem - Enum.QualityLevel.Level08: - struct: EnumItem - Enum.QualityLevel.Level09: - struct: EnumItem - Enum.QualityLevel.Level10: - struct: EnumItem - Enum.QualityLevel.Level11: - struct: EnumItem - Enum.QualityLevel.Level12: - struct: EnumItem - Enum.QualityLevel.Level13: - struct: EnumItem - Enum.QualityLevel.Level14: - struct: EnumItem - Enum.QualityLevel.Level15: - struct: EnumItem - Enum.QualityLevel.Level16: - struct: EnumItem - Enum.QualityLevel.Level17: - struct: EnumItem - Enum.QualityLevel.Level18: - struct: EnumItem - Enum.QualityLevel.Level19: - struct: EnumItem - Enum.QualityLevel.Level20: - struct: EnumItem - Enum.QualityLevel.Level21: - struct: EnumItem - Enum.R15CollisionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.R15CollisionType.InnerBox: - struct: EnumItem - Enum.R15CollisionType.OuterBox: - struct: EnumItem - Enum.RaycastFilterType.Blacklist: - struct: EnumItem - deprecated: - message: Enum.RaycastFilterType.Blacklist was replaced with Enum.RaycastFilterType.Exclude - replace: - - Enum.RaycastFilterType.Exclude - Enum.RaycastFilterType.Exclude: - struct: EnumItem - Enum.RaycastFilterType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RaycastFilterType.Include: - struct: EnumItem - Enum.RaycastFilterType.Whitelist: - struct: EnumItem - deprecated: - message: Enum.RaycastFilterType.Whitelist was replaced with Enum.RaycastFilterType.Include - replace: - - Enum.RaycastFilterType.Include - Enum.RejectCharacterDeletions.Default: - struct: EnumItem - Enum.RejectCharacterDeletions.Disabled: - struct: EnumItem - Enum.RejectCharacterDeletions.Enabled: - struct: EnumItem - Enum.RejectCharacterDeletions.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderFidelity.Automatic: - struct: EnumItem - Enum.RenderFidelity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderFidelity.Performance: - struct: EnumItem - Enum.RenderFidelity.Precise: - struct: EnumItem - Enum.RenderPriority.Camera: - struct: EnumItem - Enum.RenderPriority.Character: - struct: EnumItem - Enum.RenderPriority.First: - struct: EnumItem - Enum.RenderPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderPriority.Input: - struct: EnumItem - Enum.RenderPriority.Last: - struct: EnumItem - Enum.RenderingTestComparisonMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderingTestComparisonMethod.diff: - struct: EnumItem - Enum.RenderingTestComparisonMethod.psnr: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Default: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Disabled: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Enabled: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ResamplerMode.Default: - struct: EnumItem - Enum.ResamplerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ResamplerMode.Pixelated: - struct: EnumItem - Enum.ReservedHighlightId.Active: - struct: EnumItem - Enum.ReservedHighlightId.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReservedHighlightId.Hover: - struct: EnumItem - Enum.ReservedHighlightId.Selection: - struct: EnumItem - Enum.ReservedHighlightId.Standard: - struct: EnumItem - Enum.ReturnKeyType.Default: - struct: EnumItem - Enum.ReturnKeyType.Done: - struct: EnumItem - Enum.ReturnKeyType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReturnKeyType.Go: - struct: EnumItem - Enum.ReturnKeyType.Next: - struct: EnumItem - Enum.ReturnKeyType.Search: - struct: EnumItem - Enum.ReturnKeyType.Send: - struct: EnumItem - Enum.ReverbType.Alley: - struct: EnumItem - Enum.ReverbType.Arena: - struct: EnumItem - Enum.ReverbType.Auditorium: - struct: EnumItem - Enum.ReverbType.Bathroom: - struct: EnumItem - Enum.ReverbType.CarpettedHallway: - struct: EnumItem - Enum.ReverbType.Cave: - struct: EnumItem - Enum.ReverbType.City: - struct: EnumItem - Enum.ReverbType.ConcertHall: - struct: EnumItem - Enum.ReverbType.Forest: - struct: EnumItem - Enum.ReverbType.GenericReverb: - struct: EnumItem - Enum.ReverbType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReverbType.Hallway: - struct: EnumItem - Enum.ReverbType.Hangar: - struct: EnumItem - Enum.ReverbType.LivingRoom: - struct: EnumItem - Enum.ReverbType.Mountains: - struct: EnumItem - Enum.ReverbType.NoReverb: - struct: EnumItem - Enum.ReverbType.PaddedCell: - struct: EnumItem - Enum.ReverbType.ParkingLot: - struct: EnumItem - Enum.ReverbType.Plain: - struct: EnumItem - Enum.ReverbType.Quarry: - struct: EnumItem - Enum.ReverbType.Room: - struct: EnumItem - Enum.ReverbType.SewerPipe: - struct: EnumItem - Enum.ReverbType.StoneCorridor: - struct: EnumItem - Enum.ReverbType.StoneRoom: - struct: EnumItem - Enum.ReverbType.UnderWater: - struct: EnumItem - Enum.RibbonTool.ColorPicker: - struct: EnumItem - Enum.RibbonTool.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RibbonTool.Group: - struct: EnumItem - Enum.RibbonTool.MaterialPicker: - struct: EnumItem - Enum.RibbonTool.Move: - struct: EnumItem - Enum.RibbonTool.None: - struct: EnumItem - Enum.RibbonTool.Rotate: - struct: EnumItem - Enum.RibbonTool.Scale: - struct: EnumItem - Enum.RibbonTool.Select: - struct: EnumItem - Enum.RibbonTool.Transform: - struct: EnumItem - Enum.RibbonTool.Ungroup: - struct: EnumItem - Enum.RigScale.Default: - struct: EnumItem - Enum.RigScale.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RigScale.Rthro: - struct: EnumItem - Enum.RigScale.RthroNarrow: - struct: EnumItem - Enum.RigType.Custom: - struct: EnumItem - Enum.RigType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RigType.None: - struct: EnumItem - Enum.RigType.R15: - struct: EnumItem - Enum.RigType.Rthro: - struct: EnumItem - Enum.RigType.RthroNarrow: - struct: EnumItem - Enum.RollOffMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RollOffMode.Inverse: - struct: EnumItem - Enum.RollOffMode.InverseTapered: - struct: EnumItem - Enum.RollOffMode.Linear: - struct: EnumItem - Enum.RollOffMode.LinearSquare: - struct: EnumItem - Enum.RotationOrder.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RotationOrder.XYZ: - struct: EnumItem - Enum.RotationOrder.XZY: - struct: EnumItem - Enum.RotationOrder.YXZ: - struct: EnumItem - Enum.RotationOrder.YZX: - struct: EnumItem - Enum.RotationOrder.ZXY: - struct: EnumItem - Enum.RotationOrder.ZYX: - struct: EnumItem - Enum.RotationType.CameraRelative: - struct: EnumItem - Enum.RotationType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RotationType.MovementRelative: - struct: EnumItem - Enum.RtlTextSupport.Default: - struct: EnumItem - Enum.RtlTextSupport.Disabled: - struct: EnumItem - Enum.RtlTextSupport.Enabled: - struct: EnumItem - Enum.RtlTextSupport.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RunContext.Client: - struct: EnumItem - Enum.RunContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RunContext.Legacy: - struct: EnumItem - Enum.RunContext.Plugin: - struct: EnumItem - Enum.RunContext.Server: - struct: EnumItem - Enum.RuntimeUndoBehavior.Aggregate: - struct: EnumItem - Enum.RuntimeUndoBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RuntimeUndoBehavior.Hybrid: - struct: EnumItem - Enum.RuntimeUndoBehavior.Snapshot: - struct: EnumItem - Enum.SafeAreaCompatibility.FullscreenExtension: - struct: EnumItem - Enum.SafeAreaCompatibility.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SafeAreaCompatibility.None: - struct: EnumItem - Enum.SalesTypeFilter.All: - struct: EnumItem - Enum.SalesTypeFilter.Collectibles: - struct: EnumItem - Enum.SalesTypeFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SalesTypeFilter.Premium: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadDistanceScale: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadFieldOfViewDeg: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadThumbnailType: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadYRotDeg: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SaveAvatarThumbnailCustomizationFailure.Other: - struct: EnumItem - Enum.SaveFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SaveFilter.SaveAll: - struct: EnumItem - Enum.SaveFilter.SaveGame: - struct: EnumItem - Enum.SaveFilter.SaveWorld: - struct: EnumItem - Enum.SavedQualitySetting.Automatic: - struct: EnumItem - Enum.SavedQualitySetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SavedQualitySetting.QualityLevel1: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel10: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel2: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel3: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel4: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel5: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel6: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel7: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel8: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel9: - struct: EnumItem - Enum.ScaleType.Crop: - struct: EnumItem - Enum.ScaleType.Fit: - struct: EnumItem - Enum.ScaleType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScaleType.Slice: - struct: EnumItem - Enum.ScaleType.Stretch: - struct: EnumItem - Enum.ScaleType.Tile: - struct: EnumItem - Enum.ScopeCheckResult.BackendError: - struct: EnumItem - Enum.ScopeCheckResult.ConsentAccepted: - struct: EnumItem - Enum.ScopeCheckResult.ConsentDenied: - struct: EnumItem - Enum.ScopeCheckResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScopeCheckResult.InvalidArgument: - struct: EnumItem - Enum.ScopeCheckResult.InvalidScopes: - struct: EnumItem - Enum.ScopeCheckResult.NoUserInput: - struct: EnumItem - Enum.ScopeCheckResult.Timeout: - struct: EnumItem - Enum.ScopeCheckResult.UnexpectedError: - struct: EnumItem - Enum.ScreenInsets.CoreUISafeInsets: - struct: EnumItem - Enum.ScreenInsets.DeviceSafeInsets: - struct: EnumItem - Enum.ScreenInsets.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScreenInsets.None: - struct: EnumItem - Enum.ScreenOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScreenOrientation.LandscapeLeft: - struct: EnumItem - Enum.ScreenOrientation.LandscapeRight: - struct: EnumItem - Enum.ScreenOrientation.LandscapeSensor: - struct: EnumItem - Enum.ScreenOrientation.Portrait: - struct: EnumItem - Enum.ScreenOrientation.Sensor: - struct: EnumItem - Enum.ScrollBarInset.Always: - struct: EnumItem - Enum.ScrollBarInset.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScrollBarInset.None: - struct: EnumItem - Enum.ScrollBarInset.ScrollBar: - struct: EnumItem - Enum.ScrollingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScrollingDirection.X: - struct: EnumItem - Enum.ScrollingDirection.XY: - struct: EnumItem - Enum.ScrollingDirection.Y: - struct: EnumItem - Enum.SelectionBehavior.Escape: - struct: EnumItem - Enum.SelectionBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SelectionBehavior.Stop: - struct: EnumItem - Enum.SensorMode.Floor: - struct: EnumItem - Enum.SensorMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SensorMode.Ladder: - struct: EnumItem - Enum.SensorUpdateType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SensorUpdateType.Manual: - struct: EnumItem - Enum.SensorUpdateType.OnRead: - struct: EnumItem - Enum.ServerAudioBehavior.Enabled: - struct: EnumItem - Enum.ServerAudioBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ServerAudioBehavior.Muted: - struct: EnumItem - Enum.ServerAudioBehavior.OnlineGame: - struct: EnumItem - Enum.ServiceVisibility.Always: - struct: EnumItem - Enum.ServiceVisibility.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ServiceVisibility.Off: - struct: EnumItem - Enum.ServiceVisibility.WithChildren: - struct: EnumItem - Enum.Severity.Error: - struct: EnumItem - Enum.Severity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Severity.Warning: - struct: EnumItem - Enum.SignalBehavior.AncestryDeferred: - struct: EnumItem - Enum.SignalBehavior.Default: - struct: EnumItem - Enum.SignalBehavior.Deferred: - struct: EnumItem - Enum.SignalBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SignalBehavior.Immediate: - struct: EnumItem - Enum.SizeConstraint.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SizeConstraint.RelativeXX: - struct: EnumItem - Enum.SizeConstraint.RelativeXY: - struct: EnumItem - Enum.SizeConstraint.RelativeYY: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.Disabled: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SolverConvergenceVisualizationMode.PerEdge: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.PerIsland: - struct: EnumItem - Enum.SortDirection.Ascending: - struct: EnumItem - Enum.SortDirection.Descending: - struct: EnumItem - Enum.SortDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SortOrder.Custom: - struct: EnumItem - Enum.SortOrder.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SortOrder.LayoutOrder: - struct: EnumItem - Enum.SortOrder.Name: - struct: EnumItem - Enum.SpecialKey.ChatHotkey: - struct: EnumItem - Enum.SpecialKey.End: - struct: EnumItem - Enum.SpecialKey.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SpecialKey.Home: - struct: EnumItem - Enum.SpecialKey.Insert: - struct: EnumItem - Enum.SpecialKey.PageDown: - struct: EnumItem - Enum.SpecialKey.PageUp: - struct: EnumItem - Enum.StartCorner.BottomLeft: - struct: EnumItem - Enum.StartCorner.BottomRight: - struct: EnumItem - Enum.StartCorner.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StartCorner.TopLeft: - struct: EnumItem - Enum.StartCorner.TopRight: - struct: EnumItem - Enum.Status.Confusion: - struct: EnumItem - Enum.Status.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Status.Poison: - struct: EnumItem - Enum.StreamOutBehavior.Default: - struct: EnumItem - Enum.StreamOutBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StreamOutBehavior.LowMemory: - struct: EnumItem - Enum.StreamOutBehavior.Opportunistic: - struct: EnumItem - Enum.StreamingIntegrityMode.Default: - struct: EnumItem - Enum.StreamingIntegrityMode.Disabled: - struct: EnumItem - Enum.StreamingIntegrityMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StreamingIntegrityMode.MinimumRadiusPause: - struct: EnumItem - Enum.StreamingIntegrityMode.PauseOutsideLoadedArea: - struct: EnumItem - Enum.StreamingPauseMode.ClientPhysicsPause: - struct: EnumItem - Enum.StreamingPauseMode.Default: - struct: EnumItem - Enum.StreamingPauseMode.Disabled: - struct: EnumItem - Enum.StreamingPauseMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioCloseMode.CloseDoc: - struct: EnumItem - Enum.StudioCloseMode.CloseStudio: - struct: EnumItem - Enum.StudioCloseMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioCloseMode.None: - struct: EnumItem - Enum.StudioDataModelType.Edit: - struct: EnumItem - Enum.StudioDataModelType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioDataModelType.None: - struct: EnumItem - Enum.StudioDataModelType.PlayClient: - struct: EnumItem - Enum.StudioDataModelType.PlayServer: - struct: EnumItem - Enum.StudioDataModelType.Standalone: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.ActiveLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Background: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Bool: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Bracket: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Builtin: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Comment: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DebuggerCurrentLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DebuggerErrorLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Default: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DocViewCodeBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Error: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.FindSelectionBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Function: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.FunctionName: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioScriptEditorColorCategories.Keyword: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Local: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.LuauKeyword: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MatchingWordBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuBorder: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuPrimaryText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuScrollbarBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuScrollbarHandle: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSecondaryText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSelectedBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSelectedText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Method: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Nil: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Number: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Operator: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Property: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Ruler: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.SelectionBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.SelectionText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Self: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.String: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.TODO: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Warning: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Whitespace: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Custom: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Extra1: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Extra2: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioScriptEditorColorPresets.RobloxDefault: - struct: EnumItem - Enum.StudioStyleGuideColor.AttributeCog: - struct: EnumItem - Enum.StudioStyleGuideColor.Border: - struct: EnumItem - Enum.StudioStyleGuideColor.BrightText: - struct: EnumItem - Enum.StudioStyleGuideColor.Button: - struct: EnumItem - Enum.StudioStyleGuideColor.ButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.ButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.CategoryItem: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatIncomingBgColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatIncomingTextColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatModeratedMessageColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatOutgoingBgColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatOutgoingTextColor: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldIndicator: - struct: EnumItem - Enum.StudioStyleGuideColor.ColorPickerFrame: - struct: EnumItem - Enum.StudioStyleGuideColor.CurrentMarker: - struct: EnumItem - Enum.StudioStyleGuideColor.Dark: - struct: EnumItem - Enum.StudioStyleGuideColor.DebuggerCurrentLine: - struct: EnumItem - Enum.StudioStyleGuideColor.DebuggerErrorLine: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButton: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogMainButton: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogMainButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathText: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNum: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumAdditionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumDeletionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumNoChangeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumSeparatorBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextAddition: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextAdditionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextDeletion: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextDeletionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextHunkInfo: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextNoChange: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextNoChangeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextSeparatorBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DimmedText: - struct: EnumItem - Enum.StudioStyleGuideColor.DocViewCodeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DropShadow: - struct: EnumItem - Enum.StudioStyleGuideColor.Dropdown: - struct: EnumItem - Enum.StudioStyleGuideColor.EmulatorBar: - struct: EnumItem - Enum.StudioStyleGuideColor.EmulatorDropDown: - struct: EnumItem - Enum.StudioStyleGuideColor.ErrorText: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonAccent: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonBorderAlt: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonChecked: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonDefault: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonHover: - struct: EnumItem - Enum.StudioStyleGuideColor.GameSettingsTableItem: - struct: EnumItem - Enum.StudioStyleGuideColor.GameSettingsTooltip: - struct: EnumItem - Enum.StudioStyleGuideColor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioStyleGuideColor.HeaderSection: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoBarWarningBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoBarWarningText: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoText: - struct: EnumItem - Enum.StudioStyleGuideColor.InputFieldBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.InputFieldBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.Item: - struct: EnumItem - Enum.StudioStyleGuideColor.Light: - struct: EnumItem - Enum.StudioStyleGuideColor.LinkText: - struct: EnumItem - Enum.StudioStyleGuideColor.MainBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.MainButton: - struct: EnumItem - Enum.StudioStyleGuideColor.MainText: - struct: EnumItem - Enum.StudioStyleGuideColor.Mid: - struct: EnumItem - Enum.StudioStyleGuideColor.Midlight: - struct: EnumItem - Enum.StudioStyleGuideColor.Notification: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonButton: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonTab: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonTabTopBar: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBool: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBracket: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBuiltInFunction: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptComment: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptEditorCurrentLine: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptError: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFindSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFunction: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFunctionName: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptKeyword: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptLocal: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptLuauKeyword: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptMatchingWordSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptMethod: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptNil: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptNumber: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptOperator: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptProperty: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptRuler: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelectionText: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelf: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSideWidget: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptString: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptText: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptTodo: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptWarning: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptWhitespace: - struct: EnumItem - Enum.StudioStyleGuideColor.ScrollBar: - struct: EnumItem - Enum.StudioStyleGuideColor.ScrollBarBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.SensitiveText: - struct: EnumItem - Enum.StudioStyleGuideColor.Separator: - struct: EnumItem - Enum.StudioStyleGuideColor.Shadow: - struct: EnumItem - Enum.StudioStyleGuideColor.StatusBar: - struct: EnumItem - Enum.StudioStyleGuideColor.SubText: - struct: EnumItem - Enum.StudioStyleGuideColor.Tab: - struct: EnumItem - Enum.StudioStyleGuideColor.TabBar: - struct: EnumItem - Enum.StudioStyleGuideColor.TableItem: - struct: EnumItem - Enum.StudioStyleGuideColor.Titlebar: - struct: EnumItem - Enum.StudioStyleGuideColor.TitlebarText: - struct: EnumItem - Enum.StudioStyleGuideColor.Tooltip: - struct: EnumItem - Enum.StudioStyleGuideColor.ViewPortBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.WarningText: - struct: EnumItem - Enum.StudioStyleGuideModifier.Default: - struct: EnumItem - Enum.StudioStyleGuideModifier.Disabled: - struct: EnumItem - Enum.StudioStyleGuideModifier.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioStyleGuideModifier.Hover: - struct: EnumItem - Enum.StudioStyleGuideModifier.Pressed: - struct: EnumItem - Enum.StudioStyleGuideModifier.Selected: - struct: EnumItem - Enum.Style.Alternating Supports: - struct: EnumItem - deprecated: - message: Enum.Style.Alternating Supports was replaced with Enum.Style.AlternatingSupports - replace: - - Enum.Style.AlternatingSupports - Enum.Style.AlternatingSupports: - struct: EnumItem - Enum.Style.Bridge Style Supports: - struct: EnumItem - deprecated: - message: Enum.Style.Bridge Style Supports was replaced with Enum.Style.BridgeStyleSupports - replace: - - Enum.Style.BridgeStyleSupports - Enum.Style.BridgeStyleSupports: - struct: EnumItem - Enum.Style.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Style.No Supports: - struct: EnumItem - deprecated: - message: Enum.Style.No Supports was replaced with Enum.Style.NoSupports - replace: - - Enum.Style.NoSupports - Enum.Style.NoSupports: - struct: EnumItem - Enum.SurfaceConstraint.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceConstraint.Hinge: - struct: EnumItem - Enum.SurfaceConstraint.Motor: - struct: EnumItem - Enum.SurfaceConstraint.None: - struct: EnumItem - Enum.SurfaceConstraint.SteppingMotor: - struct: EnumItem - Enum.SurfaceGuiShape.CurvedHorizontally: - struct: EnumItem - Enum.SurfaceGuiShape.Flat: - struct: EnumItem - Enum.SurfaceGuiShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceGuiSizingMode.FixedSize: - struct: EnumItem - Enum.SurfaceGuiSizingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceGuiSizingMode.PixelsPerStud: - struct: EnumItem - Enum.SurfaceType.Bumps: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Bumps was replaced with Enum.SurfaceType.Glue - replace: - - Enum.SurfaceType.Glue - Enum.SurfaceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceType.Glue: - struct: EnumItem - Enum.SurfaceType.Hinge: - struct: EnumItem - Enum.SurfaceType.Inlet: - struct: EnumItem - Enum.SurfaceType.Motor: - struct: EnumItem - Enum.SurfaceType.Smooth: - struct: EnumItem - Enum.SurfaceType.SmoothNoOutlines: - struct: EnumItem - Enum.SurfaceType.Spawn: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Spawn was replaced with Enum.SurfaceType.Smooth - replace: - - Enum.SurfaceType.Smooth - Enum.SurfaceType.SteppingMotor: - struct: EnumItem - Enum.SurfaceType.Studs: - struct: EnumItem - Enum.SurfaceType.Universal: - struct: EnumItem - Enum.SurfaceType.Unjoinable: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Unjoinable was replaced with Enum.SurfaceType.Smooth - replace: - - Enum.SurfaceType.Smooth - Enum.SurfaceType.Weld: - struct: EnumItem - Enum.SwipeDirection.Down: - struct: EnumItem - Enum.SwipeDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SwipeDirection.Left: - struct: EnumItem - Enum.SwipeDirection.None: - struct: EnumItem - Enum.SwipeDirection.Right: - struct: EnumItem - Enum.SwipeDirection.Up: - struct: EnumItem - Enum.TableMajorAxis.ColumnMajor: - struct: EnumItem - Enum.TableMajorAxis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TableMajorAxis.RowMajor: - struct: EnumItem - Enum.Technology.Compatibility: - struct: EnumItem - Enum.Technology.Future: - struct: EnumItem - Enum.Technology.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Technology.Legacy: - struct: EnumItem - Enum.Technology.ShadowMap: - struct: EnumItem - Enum.Technology.Voxel: - struct: EnumItem - Enum.TeleportMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportMethod.TeleportPartyAsync: - struct: EnumItem - Enum.TeleportMethod.TeleportToPlaceInstance: - struct: EnumItem - Enum.TeleportMethod.TeleportToPrivateServer: - struct: EnumItem - Enum.TeleportMethod.TeleportToSpawnByName: - struct: EnumItem - Enum.TeleportMethod.TeleportUnknown: - struct: EnumItem - Enum.TeleportResult.Failure: - struct: EnumItem - Enum.TeleportResult.Flooded: - struct: EnumItem - Enum.TeleportResult.GameEnded: - struct: EnumItem - Enum.TeleportResult.GameFull: - struct: EnumItem - Enum.TeleportResult.GameNotFound: - struct: EnumItem - Enum.TeleportResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportResult.IsTeleporting: - struct: EnumItem - Enum.TeleportResult.Success: - struct: EnumItem - Enum.TeleportResult.Unauthorized: - struct: EnumItem - Enum.TeleportState.Failed: - struct: EnumItem - Enum.TeleportState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportState.InProgress: - struct: EnumItem - Enum.TeleportState.RequestedFromServer: - struct: EnumItem - Enum.TeleportState.Started: - struct: EnumItem - Enum.TeleportState.WaitingForServer: - struct: EnumItem - Enum.TeleportType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportType.ToInstance: - struct: EnumItem - Enum.TeleportType.ToPlace: - struct: EnumItem - Enum.TeleportType.ToReservedServer: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Convert: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditAddTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditReplaceTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditSeaLevelTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Generate: - struct: EnumItem - Enum.TerrainAcquisitionMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TerrainAcquisitionMethod.Import: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Legacy: - struct: EnumItem - Enum.TerrainAcquisitionMethod.None: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Other: - struct: EnumItem - Enum.TerrainAcquisitionMethod.RegionFillTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.RegionPasteTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Template: - struct: EnumItem - Enum.TerrainFace.Bottom: - struct: EnumItem - Enum.TerrainFace.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TerrainFace.Side: - struct: EnumItem - Enum.TerrainFace.Top: - struct: EnumItem - Enum.TextChatMessageStatus.Floodchecked: - struct: EnumItem - Enum.TextChatMessageStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextChatMessageStatus.InvalidPrivacySettings: - struct: EnumItem - Enum.TextChatMessageStatus.InvalidTextChannelPermissions: - struct: EnumItem - Enum.TextChatMessageStatus.MessageTooLong: - struct: EnumItem - Enum.TextChatMessageStatus.Sending: - struct: EnumItem - Enum.TextChatMessageStatus.Success: - struct: EnumItem - Enum.TextChatMessageStatus.TextFilterFailed: - struct: EnumItem - Enum.TextChatMessageStatus.Unknown: - struct: EnumItem - Enum.TextFilterContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextFilterContext.PrivateChat: - struct: EnumItem - Enum.TextFilterContext.PublicChat: - struct: EnumItem - Enum.TextInputType.Default: - struct: EnumItem - Enum.TextInputType.Email: - struct: EnumItem - Enum.TextInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextInputType.NoSuggestions: - struct: EnumItem - Enum.TextInputType.Number: - struct: EnumItem - Enum.TextInputType.OneTimePassword: - struct: EnumItem - Enum.TextInputType.Password: - struct: EnumItem - Enum.TextInputType.PasswordShown: - struct: EnumItem - Enum.TextInputType.Phone: - struct: EnumItem - Enum.TextInputType.Username: - struct: EnumItem - Enum.TextTruncate.AtEnd: - struct: EnumItem - Enum.TextTruncate.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextTruncate.None: - struct: EnumItem - Enum.TextXAlignment.Center: - struct: EnumItem - Enum.TextXAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextXAlignment.Left: - struct: EnumItem - Enum.TextXAlignment.Right: - struct: EnumItem - Enum.TextYAlignment.Bottom: - struct: EnumItem - Enum.TextYAlignment.Center: - struct: EnumItem - Enum.TextYAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextYAlignment.Top: - struct: EnumItem - Enum.TextureMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextureMode.Static: - struct: EnumItem - Enum.TextureMode.Stretch: - struct: EnumItem - Enum.TextureMode.Wrap: - struct: EnumItem - Enum.TextureQueryType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextureQueryType.Humanoid: - struct: EnumItem - Enum.TextureQueryType.HumanoidOrphaned: - struct: EnumItem - Enum.TextureQueryType.NonHumanoid: - struct: EnumItem - Enum.TextureQueryType.NonHumanoidOrphaned: - struct: EnumItem - Enum.ThreadPoolConfig.Auto: - struct: EnumItem - Enum.ThreadPoolConfig.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThreadPoolConfig.PartialThread: - struct: EnumItem - deprecated: - message: Enum.ThreadPoolConfig.PartialThread was replaced with Enum.ThreadPoolConfig.Auto - replace: - - Enum.ThreadPoolConfig.Auto - Enum.ThreadPoolConfig.PerCore1: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore2: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore3: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore4: - struct: EnumItem - Enum.ThreadPoolConfig.Threads1: - struct: EnumItem - Enum.ThreadPoolConfig.Threads16: - struct: EnumItem - Enum.ThreadPoolConfig.Threads2: - struct: EnumItem - Enum.ThreadPoolConfig.Threads3: - struct: EnumItem - Enum.ThreadPoolConfig.Threads4: - struct: EnumItem - Enum.ThreadPoolConfig.Threads8: - struct: EnumItem - Enum.ThrottlingPriority.Default: - struct: EnumItem - Enum.ThrottlingPriority.ElevatedOnServer: - struct: EnumItem - Enum.ThrottlingPriority.Extreme: - struct: EnumItem - Enum.ThrottlingPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailSize.Size100x100: - struct: EnumItem - Enum.ThumbnailSize.Size150x150: - struct: EnumItem - Enum.ThumbnailSize.Size180x180: - struct: EnumItem - Enum.ThumbnailSize.Size352x352: - struct: EnumItem - Enum.ThumbnailSize.Size420x420: - struct: EnumItem - Enum.ThumbnailSize.Size48x48: - struct: EnumItem - Enum.ThumbnailSize.Size60x60: - struct: EnumItem - Enum.ThumbnailType.AvatarBust: - struct: EnumItem - Enum.ThumbnailType.AvatarThumbnail: - struct: EnumItem - Enum.ThumbnailType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailType.HeadShot: - struct: EnumItem - Enum.TickCountSampleMethod.Benchmark: - struct: EnumItem - Enum.TickCountSampleMethod.Fast: - struct: EnumItem - Enum.TickCountSampleMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TickCountSampleMethod.Precise: - struct: EnumItem - Enum.TopBottom.Bottom: - struct: EnumItem - Enum.TopBottom.Center: - struct: EnumItem - Enum.TopBottom.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TopBottom.Top: - struct: EnumItem - Enum.TouchCameraMovementMode.Classic: - struct: EnumItem - Enum.TouchCameraMovementMode.Default: - struct: EnumItem - Enum.TouchCameraMovementMode.Follow: - struct: EnumItem - Enum.TouchCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TouchCameraMovementMode.Orbital: - struct: EnumItem - Enum.TouchMovementMode.ClickToMove: - struct: EnumItem - Enum.TouchMovementMode.DPad: - struct: EnumItem - Enum.TouchMovementMode.Default: - struct: EnumItem - Enum.TouchMovementMode.DynamicThumbstick: - struct: EnumItem - Enum.TouchMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TouchMovementMode.Thumbpad: - struct: EnumItem - Enum.TouchMovementMode.Thumbstick: - struct: EnumItem - Enum.TrackerError.AudioError: - struct: EnumItem - Enum.TrackerError.AudioNoPermission: - struct: EnumItem - Enum.TrackerError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerError.InitFailed: - struct: EnumItem - Enum.TrackerError.NoAudio: - struct: EnumItem - Enum.TrackerError.NoService: - struct: EnumItem - Enum.TrackerError.NoVideo: - struct: EnumItem - Enum.TrackerError.Ok: - struct: EnumItem - Enum.TrackerError.VideoError: - struct: EnumItem - Enum.TrackerError.VideoNoPermission: - struct: EnumItem - Enum.TrackerError.VideoUnsupported: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.Auto: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ExtrapolateFacsAndPose: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ExtrapolateFacsOnly: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ForceDisabled: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerLodFlagMode.Auto: - struct: EnumItem - Enum.TrackerLodFlagMode.ForceFalse: - struct: EnumItem - Enum.TrackerLodFlagMode.ForceTrue: - struct: EnumItem - Enum.TrackerLodFlagMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerLodValueMode.Auto: - struct: EnumItem - Enum.TrackerLodValueMode.Force0: - struct: EnumItem - Enum.TrackerLodValueMode.Force1: - struct: EnumItem - Enum.TrackerLodValueMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerMode.Audio: - struct: EnumItem - Enum.TrackerMode.AudioVideo: - struct: EnumItem - Enum.TrackerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerMode.None: - struct: EnumItem - Enum.TrackerMode.Video: - struct: EnumItem - Enum.TrackerPromptEvent.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerPromptEvent.LODCameraRecommendDisable: - struct: EnumItem - Enum.TriStateBoolean.False: - struct: EnumItem - Enum.TriStateBoolean.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TriStateBoolean.True: - struct: EnumItem - Enum.TriStateBoolean.Unknown: - struct: EnumItem - Enum.TweenStatus.Canceled: - struct: EnumItem - Enum.TweenStatus.Completed: - struct: EnumItem - Enum.TweenStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UITheme.Dark: - struct: EnumItem - Enum.UITheme.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UITheme.Light: - struct: EnumItem - Enum.UiMessageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UiMessageType.UiMessageError: - struct: EnumItem - Enum.UiMessageType.UiMessageInfo: - struct: EnumItem - Enum.UsageContext.Default: - struct: EnumItem - Enum.UsageContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UsageContext.Preview: - struct: EnumItem - Enum.UserCFrame.Floor: - struct: EnumItem - Enum.UserCFrame.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserCFrame.Head: - struct: EnumItem - Enum.UserCFrame.LeftHand: - struct: EnumItem - Enum.UserCFrame.RightHand: - struct: EnumItem - Enum.UserInputState.Begin: - struct: EnumItem - Enum.UserInputState.Cancel: - struct: EnumItem - Enum.UserInputState.Change: - struct: EnumItem - Enum.UserInputState.End: - struct: EnumItem - Enum.UserInputState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserInputState.None: - struct: EnumItem - Enum.UserInputType.Accelerometer: - struct: EnumItem - Enum.UserInputType.Focus: - struct: EnumItem - Enum.UserInputType.Gamepad1: - struct: EnumItem - Enum.UserInputType.Gamepad2: - struct: EnumItem - Enum.UserInputType.Gamepad3: - struct: EnumItem - Enum.UserInputType.Gamepad4: - struct: EnumItem - Enum.UserInputType.Gamepad5: - struct: EnumItem - Enum.UserInputType.Gamepad6: - struct: EnumItem - Enum.UserInputType.Gamepad7: - struct: EnumItem - Enum.UserInputType.Gamepad8: - struct: EnumItem - Enum.UserInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserInputType.Gyro: - struct: EnumItem - Enum.UserInputType.InputMethod: - struct: EnumItem - Enum.UserInputType.Keyboard: - struct: EnumItem - Enum.UserInputType.MouseButton1: - struct: EnumItem - Enum.UserInputType.MouseButton2: - struct: EnumItem - Enum.UserInputType.MouseButton3: - struct: EnumItem - Enum.UserInputType.MouseMovement: - struct: EnumItem - Enum.UserInputType.MouseWheel: - struct: EnumItem - Enum.UserInputType.None: - struct: EnumItem - Enum.UserInputType.TextInput: - struct: EnumItem - Enum.UserInputType.Touch: - struct: EnumItem - Enum.VRPlayMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRPlayMode.Seated: - struct: EnumItem - Enum.VRPlayMode.Standing: - struct: EnumItem - Enum.VRSafetyBubbleMode.Anyone: - struct: EnumItem - Enum.VRSafetyBubbleMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRSafetyBubbleMode.NoOne: - struct: EnumItem - Enum.VRSafetyBubbleMode.OnlyFriends: - struct: EnumItem - Enum.VRScaling.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRScaling.Off: - struct: EnumItem - Enum.VRScaling.World: - struct: EnumItem - Enum.VRSessionState.Focused: - struct: EnumItem - Enum.VRSessionState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRSessionState.Idle: - struct: EnumItem - Enum.VRSessionState.Undefined: - struct: EnumItem - Enum.VRSessionState.Visible: - struct: EnumItem - Enum.VRTouchpad.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRTouchpad.Left: - struct: EnumItem - Enum.VRTouchpad.Right: - struct: EnumItem - Enum.VRTouchpadMode.ABXY: - struct: EnumItem - Enum.VRTouchpadMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRTouchpadMode.Touch: - struct: EnumItem - Enum.VRTouchpadMode.VirtualThumbstick: - struct: EnumItem - Enum.VelocityConstraintMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VelocityConstraintMode.Line: - struct: EnumItem - Enum.VelocityConstraintMode.Plane: - struct: EnumItem - Enum.VelocityConstraintMode.Vector: - struct: EnumItem - Enum.VerticalAlignment.Bottom: - struct: EnumItem - Enum.VerticalAlignment.Center: - struct: EnumItem - Enum.VerticalAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VerticalAlignment.Top: - struct: EnumItem - Enum.VerticalScrollBarPosition.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VerticalScrollBarPosition.Left: - struct: EnumItem - Enum.VerticalScrollBarPosition.Right: - struct: EnumItem - Enum.VibrationMotor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VibrationMotor.Large: - struct: EnumItem - Enum.VibrationMotor.LeftHand: - struct: EnumItem - Enum.VibrationMotor.LeftTrigger: - struct: EnumItem - Enum.VibrationMotor.RightHand: - struct: EnumItem - Enum.VibrationMotor.RightTrigger: - struct: EnumItem - Enum.VibrationMotor.Small: - struct: EnumItem - Enum.VirtualCursorMode.Default: - struct: EnumItem - Enum.VirtualCursorMode.Disabled: - struct: EnumItem - Enum.VirtualCursorMode.Enabled: - struct: EnumItem - Enum.VirtualCursorMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VirtualInputMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VirtualInputMode.None: - struct: EnumItem - Enum.VirtualInputMode.Playing: - struct: EnumItem - Enum.VirtualInputMode.Recording: - struct: EnumItem - Enum.VoiceChatState.Ended: - struct: EnumItem - Enum.VoiceChatState.Failed: - struct: EnumItem - Enum.VoiceChatState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VoiceChatState.Idle: - struct: EnumItem - Enum.VoiceChatState.Joined: - struct: EnumItem - Enum.VoiceChatState.Joining: - struct: EnumItem - Enum.VoiceChatState.JoiningRetry: - struct: EnumItem - Enum.VoiceChatState.Leaving: - struct: EnumItem - Enum.VolumetricAudio.Automatic: - struct: EnumItem - Enum.VolumetricAudio.Disabled: - struct: EnumItem - Enum.VolumetricAudio.Enabled: - struct: EnumItem - Enum.VolumetricAudio.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterDirection.NegX: - struct: EnumItem - Enum.WaterDirection.NegY: - struct: EnumItem - Enum.WaterDirection.NegZ: - struct: EnumItem - Enum.WaterDirection.X: - struct: EnumItem - Enum.WaterDirection.Y: - struct: EnumItem - Enum.WaterDirection.Z: - struct: EnumItem - Enum.WaterForce.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterForce.Max: - struct: EnumItem - Enum.WaterForce.Medium: - struct: EnumItem - Enum.WaterForce.None: - struct: EnumItem - Enum.WaterForce.Small: - struct: EnumItem - Enum.WaterForce.Strong: - struct: EnumItem - Enum.WrapLayerAutoSkin.Disabled: - struct: EnumItem - Enum.WrapLayerAutoSkin.EnabledOverride: - struct: EnumItem - Enum.WrapLayerAutoSkin.EnabledPreserve: - struct: EnumItem - Enum.WrapLayerAutoSkin.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapLayerDebugMode.BoundCage: - struct: EnumItem - Enum.WrapLayerDebugMode.BoundCageAndLinks: - struct: EnumItem - Enum.WrapLayerDebugMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapLayerDebugMode.HSRInner: - struct: EnumItem - Enum.WrapLayerDebugMode.HSRInnerReverse: - struct: EnumItem - Enum.WrapLayerDebugMode.HSROuter: - struct: EnumItem - Enum.WrapLayerDebugMode.HSROuterDetail: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCage: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCageFittedToBase: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCageFittedToPrev: - struct: EnumItem - Enum.WrapLayerDebugMode.None: - struct: EnumItem - Enum.WrapLayerDebugMode.OuterCage: - struct: EnumItem - Enum.WrapLayerDebugMode.Rbf: - struct: EnumItem - Enum.WrapLayerDebugMode.Reference: - struct: EnumItem - Enum.WrapLayerDebugMode.ReferenceMeshAfterMorph: - struct: EnumItem - Enum.WrapTargetDebugMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapTargetDebugMode.None: - struct: EnumItem - Enum.WrapTargetDebugMode.OuterCageDetail: - struct: EnumItem - Enum.WrapTargetDebugMode.Rbf: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageCompressed: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageInterface: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageOriginal: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerCageCompressed: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerCageOriginal: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerInterface: - struct: EnumItem - Enum.ZIndexBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ZIndexBehavior.Global: - struct: EnumItem - Enum.ZIndexBehavior.Sibling: - struct: EnumItem - Faces.new: - args: - - type: '...' - must_use: true - FloatCurveKey.new: - args: - - type: number - - type: number - - type: - display: KeyInterpolationMode - must_use: true - Font.fromEnum: - args: - - type: - display: Font - must_use: true - Font.fromId: - args: - - type: number - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Font.fromName: - args: - - type: string - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Font.new: - args: - - type: string - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Instance.new: - args: - - type: - - Accoutrement - - Accessory - - Hat - - AdPortal - - AdvancedDragger - - AnalyticsService - - Animation - - CurveAnimation - - KeyframeSequence - - AnimationController - - AnimationRigData - - Animator - - Atmosphere - - Attachment - - Bone - - AudioSearchParams - - Backpack - - WrapLayer - - WrapTarget - - Beam - - BindableEvent - - BindableFunction - - BodyAngularVelocity - - BodyForce - - BodyGyro - - BodyPosition - - BodyThrust - - BodyVelocity - - RocketPropulsion - - Breakpoint - - Camera - - BodyColors - - CharacterMesh - - Pants - - Shirt - - ShirtGraphic - - Skin - - ClickDetector - - Clouds - - Configuration - - AlignOrientation - - AlignPosition - - AngularVelocity - - AnimationConstraint - - BallSocketConstraint - - HingeConstraint - - LineForce - - LinearVelocity - - PlaneConstraint - - Plane - - RigidConstraint - - RodConstraint - - RopeConstraint - - CylindricalConstraint - - PrismaticConstraint - - SpringConstraint - - Torque - - TorsionSpringConstraint - - UniversalConstraint - - VectorForce - - HumanoidController - - SkateboardController - - VehicleController - - AirController - - ClimbController - - GroundController - - SwimController - - ControllerManager - - CustomEvent - - CustomEventReceiver - - BlockMesh - - CylinderMesh - - FileMesh - - SpecialMesh - - DataStoreIncrementOptions - - DataStoreOptions - - DataStoreSetOptions - - DebuggerWatch - - Dialog - - DialogChoice - - Dragger - - EulerRotationCurve - - ExperienceInviteOptions - - Explosion - - FaceControls - - Decal - - Texture - - Hole - - MotorFeature - - Fire - - FloatCurve - - FlyweightService - - CSGDictionaryService - - NonReplicatedCSGDictionaryService - - Folder - - ForceField - - FunctionalTest - - GetTextBoundsParams - - CanvasGroup - - Frame - - ImageButton - - TextButton - - ImageLabel - - TextLabel - - ScrollingFrame - - TextBox - - VideoFrame - - ViewportFrame - - BillboardGui - - ScreenGui - - GuiMain - - AdGui - - SurfaceGui - - FloorWire - - SelectionBox - - BoxHandleAdornment - - ConeHandleAdornment - - CylinderHandleAdornment - - ImageHandleAdornment - - LineHandleAdornment - - SphereHandleAdornment - - WireframeHandleAdornment - - ParabolaAdornment - - SelectionSphere - - ArcHandles - - Handles - - SurfaceSelection - - SelectionPartLasso - - SelectionPointLasso - - HeightmapImporterService - - HiddenSurfaceRemovalAsset - - Highlight - - Humanoid - - HumanoidDescription - - IKControl - - RotateP - - RotateV - - Glue - - ManualGlue - - ManualWeld - - Motor - - Motor6D - - Rotate - - Snap - - VelocityMotor - - Weld - - Keyframe - - KeyframeMarker - - PointLight - - SpotLight - - SurfaceLight - - LocalizationTable - - Script - - LocalScript - - ModuleScript - - MarkerCurve - - MaterialVariant - - MemoryStoreService - - Message - - Hint - - NoCollisionConstraint - - CornerWedgePart - - Part - - FlagStand - - Seat - - SkateboardPlatform - - SpawnLocation - - WedgePart - - MeshPart - - PartOperation - - IntersectOperation - - NegateOperation - - UnionOperation - - TrussPart - - VehicleSeat - - Model - - Actor - - HopperBin - - Tool - - Flag - - WorldModel - - PartOperationAsset - - ParticleEmitter - - PathfindingLink - - PathfindingModifier - - Player - - PluginAction - - NumberPose - - Pose - - BloomEffect - - BlurEffect - - ColorCorrectionEffect - - DepthOfFieldEffect - - SunRaysEffect - - ProximityPrompt - - ProximityPromptService - - ReflectionMetadata - - ReflectionMetadataCallbacks - - ReflectionMetadataClasses - - ReflectionMetadataEnums - - ReflectionMetadataEvents - - ReflectionMetadataFunctions - - ReflectionMetadataClass - - ReflectionMetadataEnum - - ReflectionMetadataEnumItem - - ReflectionMetadataMember - - ReflectionMetadataProperties - - ReflectionMetadataYieldFunctions - - RemoteEvent - - RemoteFunction - - RenderingTest - - RotationCurve - - BuoyancySensor - - ControllerPartSensor - - Sky - - Smoke - - Sound - - ChorusSoundEffect - - CompressorSoundEffect - - DistortionSoundEffect - - EchoSoundEffect - - EqualizerSoundEffect - - FlangeSoundEffect - - PitchShiftSoundEffect - - ReverbSoundEffect - - TremoloSoundEffect - - SoundGroup - - Sparkles - - StandalonePluginScripts - - StarterGear - - SurfaceAppearance - - Team - - TeleportOptions - - TerrainDetail - - TerrainRegion - - TestService - - TextChannel - - TextChatCommand - - TextChatMessageProperties - - TrackerStreamAnimation - - Trail - - Tween - - UIAspectRatioConstraint - - UISizeConstraint - - UITextSizeConstraint - - UICorner - - UIGradient - - UIGridLayout - - UIListLayout - - UIPageLayout - - UITableLayout - - UIPadding - - UIScale - - UIStroke - - BinaryStringValue - - BoolValue - - BrickColorValue - - CFrameValue - - Color3Value - - DoubleConstrainedValue - - IntConstrainedValue - - IntValue - - NumberValue - - ObjectValue - - RayValue - - StringValue - - Vector3Value - - Vector3Curve - - VirtualInputManager - - WeldConstraint - must_use: true - NumberRange.new: - args: - - type: number - - required: false - type: number - must_use: true - NumberSequence.new: - args: - - type: any - - required: false - type: number - must_use: true - NumberSequenceKeypoint.new: - args: - - type: number - - type: number - - required: false - type: number - must_use: true - OverlapParams.new: - args: [] - must_use: true - PathWaypoint.new: - args: - - required: false - type: - display: Vector3 - - required: false - type: - display: PathWaypointAction - must_use: true - PhysicalProperties.new: - args: - - type: any - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Random.new: - args: - - required: false - type: number - must_use: true - Ray.new: - args: - - type: - display: Vector3 - - type: - display: Vector3 - must_use: true - RaycastParams.new: - args: [] - must_use: true - Rect.new: - args: - - type: any - - type: any - - required: false - type: number - - required: false - type: number - must_use: true - Region3.new: - args: - - type: - display: Vector3 - - type: - display: Vector3 - must_use: true - Region3int16.new: - args: - - required: false - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - RotationCurveKey.new: - args: - - type: number - - type: - display: CFrame - - type: - display: KeyInterpolationMode - must_use: true - TweenInfo.new: - args: - - required: false - type: number - - required: false - type: - display: EasingStyle - - required: false - type: - display: EasingDirection - - required: false - type: number - - required: false - type: bool - - required: false - type: number - must_use: true - UDim.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - UDim2.fromOffset: - args: - - required: use UDim2.new() if you want an empty UDim2 - type: number - - required: false - type: number - must_use: true - UDim2.fromScale: - args: - - required: use UDim2.new() if you want an empty UDim2 - type: number - - required: false - type: number - must_use: true - UDim2.new: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: number - - required: false - type: number - must_use: true - UserSettings: - args: [] - must_use: true - Vector2.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - Vector2.one: - property: read-only - Vector2.xAxis: - property: read-only - Vector2.yAxis: - property: read-only - Vector2.zero: - property: read-only - Vector2int16.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - Vector3.FromAxis: - args: - - type: - display: Axis - must_use: true - Vector3.FromNormalId: - args: - - type: - display: NormalId - must_use: true - Vector3.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Vector3.one: - property: read-only - Vector3.xAxis: - property: read-only - Vector3.yAxis: - property: read-only - Vector3.zAxis: - property: read-only - Vector3.zero: - property: read-only - Vector3int16.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - _G: - property: new-fields - _VERSION: - property: read-only - arg: - property: new-fields - assert: - args: - - type: any - - required: A failed assertion without a message is unhelpful to users. - type: string - bit32.arshift: - args: - - type: number - - type: number - must_use: true - bit32.band: - args: - - type: '...' - must_use: true - bit32.bnot: - args: - - type: number - must_use: true - bit32.bor: - args: - - type: '...' - must_use: true - bit32.btest: - args: - - type: '...' - must_use: true - bit32.bxor: - args: - - type: '...' - must_use: true - bit32.countlz: - args: - - type: number - must_use: true - bit32.countrz: - args: - - type: number - must_use: true - bit32.extract: - args: - - type: number - - type: number - - required: false - type: number - must_use: true - bit32.lrotate: - args: - - type: number - - type: number - must_use: true - bit32.lshift: - args: - - type: number - - type: number - must_use: true - bit32.replace: - args: - - type: number - - type: number - - type: number - - required: false - type: number - must_use: true - bit32.rrotate: - args: - - type: number - - type: number - must_use: true - bit32.rshift: - args: - - type: number - - type: number - must_use: true - collectgarbage: - args: - - type: - - count - must_use: true - coroutine.close: - args: - - type: - display: thread - coroutine.create: - args: - - type: function - must_use: true - coroutine.isyieldable: - args: [] - coroutine.resume: - args: - - type: - display: coroutine - - required: false - type: '...' - coroutine.running: - args: [] - must_use: true - coroutine.status: - args: - - type: - display: coroutine - must_use: true - coroutine.wrap: - args: - - type: function - coroutine.yield: - args: - - required: false - type: '...' - debug.info: - args: - - type: any - - type: any - - required: false - type: string - must_use: true - debug.profilebegin: - args: - - type: string - debug.profileend: - args: [] - debug.resetmemorycategory: - args: [] - debug.setmemorycategory: - args: - - type: string - debug.traceback: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - must_use: true - delay: - args: - - type: number - - type: function - elapsedTime: - args: [] - error: - args: - - required: Erroring without an explanation is unhelpful to users. - type: any - - required: false - type: number - game: - struct: DataModel - gcinfo: - args: [] - must_use: true - getfenv: - args: - - required: false - type: any - must_use: true - getmetatable: - args: - - type: table - must_use: true - io.close: - args: - - required: false - type: - display: file - io.flush: - args: [] - io.input: - args: - - required: false - type: - display: file - io.lines: - args: - - type: string - io.open: - args: - - type: string - - required: false - type: - - r - - rb - - w - - wb - - a - - ab - - r+ - - rb+ - - w+ - - wb+ - - a+ - - ab+ - io.output: - args: - - required: false - type: - display: file - io.popen: - args: - - type: string - - required: false - type: - - r - - rb - - w - - wb - - a - - ab - - r+ - - rb+ - - w+ - - wb+ - - a+ - - ab+ - io.read: - args: - - type: '...' - io.stderr: - property: read-only - io.stdin: - property: read-only - io.stdout: - property: read-only - io.tmpfile: - args: [] - io.type: - args: - - type: - display: potentially file-like object - io.write: - args: - - type: '...' - ipairs: - args: - - type: table - must_use: true - loadstring: - args: - - type: string - - required: false - type: string - math.abs: - args: - - type: number - must_use: true - math.acos: - args: - - type: number - must_use: true - math.asin: - args: - - type: number - must_use: true - math.atan: - args: - - type: number - must_use: true - math.atan2: - args: - - type: number - - type: number - must_use: true - math.ceil: - args: - - type: number - must_use: true - math.clamp: - args: - - type: number - - type: number - - type: number - must_use: true - math.cos: - args: - - type: number - must_use: true - math.cosh: - args: - - type: number - must_use: true - math.deg: - args: - - type: number - must_use: true - math.exp: - args: - - type: number - must_use: true - math.floor: - args: - - type: number - must_use: true - math.fmod: - args: - - type: number - - type: number - must_use: true - math.frexp: - args: - - type: number - must_use: true - math.huge: - property: read-only - math.ldexp: - args: - - type: number - - type: number - must_use: true - math.log: - args: - - type: number - - required: false - type: number - must_use: true - math.log10: - args: - - type: number - must_use: true - math.max: - args: - - type: number - - required: use of max only makes sense with more than 1 parameter - type: '...' - must_use: true - math.min: - args: - - type: number - - required: use of min only makes sense with more than 1 parameter - type: '...' - must_use: true - math.modf: - args: - - type: number - must_use: true - math.noise: - args: - - type: number - - required: false - type: number - - required: false - type: number - must_use: true - math.pi: - property: read-only - math.pow: - args: - - type: number - - type: number - must_use: true - math.rad: - args: - - type: number - must_use: true - math.random: - args: - - required: false - type: number - - required: false - type: number - must_use: true - math.randomseed: - args: - - type: number - math.round: - args: - - type: number - must_use: true - math.sign: - args: - - type: number - must_use: true - math.sin: - args: - - type: number - must_use: true - math.sinh: - args: - - type: number - must_use: true - math.sqrt: - args: - - type: number - must_use: true - math.tan: - args: - - type: number - must_use: true - math.tanh: - args: - - type: number - must_use: true - newproxy: - args: - - required: false - type: bool - must_use: true - next: - args: - - type: table - - required: false - type: number - os.clock: - args: [] - must_use: true - os.date: - args: - - required: false - type: string - - required: false - type: number - must_use: true - os.difftime: - args: - - type: number - - type: number - must_use: true - os.time: - args: - - required: false - type: table - must_use: true - package.cpath: - property: full-write - package.loaded: - property: new-fields - package.loaders: - property: new-fields - package.loadlib: - args: - - type: string - - type: string - package.path: - property: full-write - package.preload: - property: new-fields - package.seeall: - args: - - type: table - pairs: - args: - - type: table - must_use: true - pcall: - args: - - type: function - - required: false - type: '...' - plugin: - struct: Plugin - print: - args: - - required: false - type: '...' - rawequal: - args: - - type: any - - type: any - must_use: true - rawget: - args: - - type: any - - type: any - must_use: true - rawlen: - args: - - type: table - must_use: true - rawset: - args: - - type: any - - type: any - - type: any - require: - args: - - type: number - script: - struct: Script - select: - args: - - type: any - - type: '...' - must_use: true - setfenv: - args: - - type: any - - type: table - setmetatable: - args: - - type: table - - required: false - type: table - settings: - args: [] - shared: - property: new-fields - spawn: - args: - - type: function - string.byte: - args: - - type: string - - required: false - type: number - - required: false - type: number - string.char: - args: - - required: string.char should be used with an argument despite it not throwing - type: number - - required: false - type: '...' - must_use: true - string.find: - args: - - type: string - - type: string - - required: false - type: number - - required: false - type: bool - must_use: true - string.format: - args: - - type: string - - required: string.format should only be used for strings that need formatting - type: '...' - must_use: true - string.gmatch: - args: - - type: string - - type: string - must_use: true - string.gsub: - args: - - type: string - - type: string - - type: any - - required: false - type: number - must_use: true - string.len: - args: - - type: string - must_use: true - string.lower: - args: - - type: string - must_use: true - string.match: - args: - - type: string - - type: string - - required: false - type: number - must_use: true - string.pack: - args: - - type: string - - type: '...' - must_use: true - string.packsize: - args: - - type: string - must_use: true - string.rep: - args: - - type: string - - type: number - must_use: true - string.reverse: - args: - - type: string - must_use: true - string.split: - args: - - type: string - - required: false - type: string - must_use: true - string.sub: - args: - - type: string - - type: number - - required: false - type: number - must_use: true - string.unpack: - args: - - type: string - - type: string - - required: false - type: number - must_use: true - string.upper: - args: - - type: string - must_use: true - table.clear: - args: - - type: table - table.clone: - args: - - type: table - must_use: true - table.concat: - args: - - type: table - - required: false - type: string - - required: false - type: number - - required: false - type: number - must_use: true - table.create: - args: - - type: number - - required: false - type: any - must_use: true - table.find: - args: - - type: table - - type: any - - required: false - type: number - must_use: true - table.foreach: - args: - - type: table - - type: function - deprecated: - message: use a for loop instead. - replace: [] - table.foreachi: - args: - - type: table - - type: function - deprecated: - message: use a for loop instead. - replace: [] - table.freeze: - args: - - type: table - table.getn: - args: - - type: table - - type: number - must_use: true - deprecated: - message: '`table.getn` has been superceded by #.' - replace: - - '#%1' - table.insert: - args: - - type: table - observes: write - - type: any - - required: false - type: any - table.isfrozen: - args: - - type: table - must_use: true - table.maxn: - args: - - type: table - must_use: true - table.move: - args: - - type: table - - type: number - - type: number - - type: number - - required: false - type: table - table.pack: - args: - - type: '...' - must_use: true - table.remove: - args: - - type: table - - required: false - type: number - table.sort: - args: - - type: table - - required: false - type: function - table.unpack: - args: - - type: table - - required: false - type: number - - required: false - type: number - must_use: true - task.cancel: - args: - - type: - display: thread - task.defer: - args: - - type: function - - required: false - type: '...' - task.delay: - args: - - required: false - type: number - - type: function - - required: false - type: '...' - task.desynchronize: - args: [] - task.spawn: - args: - - type: function - - required: false - type: '...' - task.synchronize: - args: [] - task.wait: - args: - - required: false - type: number - tick: - args: [] - time: - args: [] - tonumber: - args: - - type: any - - required: false - type: number - must_use: true - tostring: - args: - - type: any - must_use: true - type: - args: - - type: any - typeof: - args: - - type: any - unpack: - args: - - type: table - - required: false - type: number - - required: false - type: number - must_use: true - utf8.char: - args: - - required: utf8.char should be used with an argument despite it not throwing - type: number - - required: false - type: '...' - must_use: true - utf8.charpattern: - property: read-only - utf8.codepoint: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.codes: - args: - - type: string - must_use: true - utf8.graphemes: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.len: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.nfcnormalize: - args: - - type: string - must_use: true - utf8.nfdnormalize: - args: - - type: string - must_use: true - utf8.offset: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - wait: - args: - - required: false - type: number - warn: - args: - - type: any - - required: false - type: '...' - workspace: - struct: Workspace - xpcall: - args: - - type: function - - required: false - type: '...' -structs: - BasePart: - '*': - struct: Instance - AncestryChanged: - struct: Event - Anchored: - property: override-fields - ApplyAngularImpulse: - args: - - required: false - type: any - method: true - ApplyImpulse: - args: - - required: false - type: any - method: true - ApplyImpulseAtPosition: - args: - - required: false - type: any - - required: false - type: any - method: true - Archivable: - property: override-fields - AssemblyAngularVelocity: - any: true - AssemblyCenterOfMass: - any: true - AssemblyLinearVelocity: - any: true - AssemblyMass: - property: read-only - AssemblyRootPart: - struct: BasePart - AttributeChanged: - struct: Event - BackParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackSurface: - property: override-fields - BackSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomSurface: - property: override-fields - BottomSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BrickColor: - property: override-fields - CFrame: - any: true - CanCollide: - property: override-fields - CanCollideWith: - args: - - required: false - type: any - method: true - CanQuery: - property: override-fields - CanSetNetworkOwnership: - args: [] - method: true - CanTouch: - property: override-fields - CastShadow: - property: override-fields - CenterOfMass: - any: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionGroup: - property: override-fields - CollisionGroupId: - property: override-fields - Color: - property: override-fields - CurrentPhysicalProperties: - property: read-only - CustomPhysicalProperties: - property: override-fields - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Elasticity: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - ExtentsCFrame: - any: true - ExtentsSize: - any: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - Friction: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontSurface: - property: override-fields - FrontSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetConnectedParts: - args: - - required: false - type: any - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetJoints: - args: [] - method: true - GetMass: - args: [] - method: true - GetNetworkOwner: - args: [] - method: true - GetNetworkOwnershipAuto: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetRootPart: - args: [] - method: true - GetTouchingParts: - args: [] - method: true - GetVelocityAtPosition: - args: - - required: false - type: any - method: true - IntersectAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGrounded: - args: [] - method: true - LeftParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftSurface: - property: override-fields - LeftSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LocalSimulationTouched: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - LocalTransparencyModifier: - property: override-fields - Locked: - property: override-fields - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Mass: - property: read-only - Massless: - property: override-fields - Material: - property: override-fields - MaterialVariant: - property: override-fields - Name: - property: override-fields - Orientation: - any: true - Origin: - any: true - OutfitChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - Pivot Offset: - any: true - PivotOffset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - Position: - any: true - ReceiveAge: - property: read-only - Reflectance: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Resize: - args: - - required: false - type: any - - required: false - type: any - method: true - ResizeIncrement: - property: read-only - ResizeableFaces: - property: read-only - RightParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightSurface: - property: override-fields - RightSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RootPriority: - property: override-fields - RotVelocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - Rotation: - any: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetNetworkOwner: - args: - - required: false - type: any - method: true - SetNetworkOwnershipAuto: - args: [] - method: true - Size: - any: true - SpecificGravity: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - StoppedTouching: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - SubtractAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - TopParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopSurface: - property: override-fields - TopSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TouchEnded: - struct: Event - Touched: - struct: Event - Transparency: - property: override-fields - UnionAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Velocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - brickColor: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getMass: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - resize: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - subtractAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - unionAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Camera: - '*': - struct: Instance - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - CFrame: - any: true - CameraSubject: - struct: Instance - CameraType: - property: override-fields - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CoordinateFrame: - any: true - deprecated: - message: this property is deprecated. - replace: [] - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - DiagonalFieldOfView: - property: override-fields - FieldOfView: - property: override-fields - FieldOfViewMode: - property: override-fields - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FirstPersonTransition: - struct: Event - Focus: - any: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetLargestCutoffDistance: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetPanSpeed: - args: [] - method: true - GetPartsObscuringTarget: - args: - - required: false - type: any - - required: false - type: any - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - GetRoll: - args: [] - method: true - GetTiltSpeed: - args: [] - method: true - HeadLocked: - property: override-fields - HeadScale: - property: override-fields - Interpolate: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - InterpolationFinished: - struct: Event - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - MaxAxisFieldOfView: - property: override-fields - Name: - property: override-fields - NearPlaneZ: - property: read-only - PanUnits: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ScreenPointToRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetCameraPanMode: - args: - - required: false - type: any - method: true - SetImageServerView: - args: - - required: false - type: any - method: true - SetRoll: - args: - - required: false - type: any - method: true - TiltUnits: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - ViewportPointToRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - ViewportSize: - any: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WorldToScreenPoint: - args: - - required: false - type: any - method: true - WorldToViewportPoint: - args: - - required: false - type: any - method: true - Zoom: - args: - - required: false - type: any - method: true - ZoomToExtents: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - focus: - any: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - DataModel: - '*': - struct: Instance - AllowedGearTypeChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - BindToClose: - args: - - required: false - type: any - method: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - Close: - struct: Event - CloseLate: - struct: Event - CreatorId: - property: read-only - CreatorType: - property: read-only - DefineFastFlag: - args: - - required: false - type: any - - required: false - type: any - method: true - DefineFastInt: - args: - - required: false - type: any - - required: false - type: any - method: true - DefineFastString: - args: - - required: false - type: any - - required: false - type: any - method: true - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FindService: - args: - - required: false - type: any - method: true - GameId: - property: read-only - GearGenreSetting: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - Genre: - property: read-only - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetEngineFeature: - args: - - required: false - type: any - method: true - GetFastFlag: - args: - - required: false - type: any - method: true - GetFastInt: - args: - - required: false - type: any - method: true - GetFastString: - args: - - required: false - type: any - method: true - GetFullName: - args: [] - method: true - GetJobsInfo: - args: [] - method: true - GetMessage: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetObjects: - args: - - required: false - type: any - method: true - GetObjectsAllOrNone: - args: - - required: false - type: any - - required: false - type: any - method: true - GetObjectsAsync: - args: - - required: false - type: any - method: true - GetObjectsList: - args: - - required: false - type: any - method: true - GetPlaySessionId: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRemoteBuildMode: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetService: - args: - - type: - - AdService - - AnalyticsService - - AnimationClipProvider - - AnimationFromVideoCreatorService - - AnimationFromVideoCreatorStudioService - - AppUpdateService - - AssetCounterService - - AssetDeliveryProxy - - AssetImportService - - AssetManagerService - - AssetService - - AvatarEditorService - - AvatarImportService - - BadgeService - - CoreGui - - StarterGui - - BrowserService - - BulkImportService - - CacheableContentProvider - - HSRDataContentProvider - - MeshContentProvider - - SolidModelContentProvider - - CalloutService - - ChangeHistoryService - - Chat - - ClusterPacketCache - - CollectionService - - CommandService - - ConfigureServerService - - ContentProvider - - ContextActionService - - ControllerService - - CookiesService - - CorePackages - - CoreScriptDebuggingManagerHelper - - CoreScriptSyncService - - CrossDMScriptChangeListener - - DataModelPatchService - - DataStoreService - - Debris - - DebuggablePluginWatcher - - DebuggerConnectionManager - - DebuggerManager - - DebuggerUIService - - DeviceIdService - - DraftsService - - DraggerService - - EventIngestService - - ExperienceAuthService - - FaceAnimatorService - - FacialAnimationRecordingService - - FacialAnimationStreamingService - - FacialAnimationStreamingServiceV2 - - FlagStandService - - FlyweightService - - CSGDictionaryService - - NonReplicatedCSGDictionaryService - - FriendService - - GamePassService - - GamepadService - - Geometry - - GoogleAnalyticsConfiguration - - GroupService - - GuiService - - GuidRegistryService - - HapticService - - HeightmapImporterService - - Hopper - - HttpRbxApiService - - HttpService - - ILegacyStudioBridge - - LegacyStudioBridge - - IXPService - - IncrementalPatchBuilder - - InsertService - - JointsService - - KeyboardService - - KeyframeSequenceProvider - - LSPFileSyncService - - LanguageService - - Lighting - - LiveScriptingService - - LocalStorageService - - AppStorageService - - UserStorageService - - LocalizationService - - LodDataService - - LogService - - LoginService - - LuaWebService - - LuauScriptAnalyzerService - - MarketplaceService - - MaterialGenerationService - - MaterialService - - MemStorageService - - MemoryStoreService - - MessageBusService - - MessagingService - - MetaBreakpointManager - - MouseService - - NetworkClient - - NetworkServer - - NetworkSettings - - NotificationService - - Workspace - - PackageService - - PackageUIService - - PatchBundlerFileWatch - - PathfindingService - - PermissionsService - - PhysicsService - - PlayerEmulatorService - - Players - - PluginDebugService - - PluginGuiService - - PluginManagementService - - PluginPolicyService - - PointsService - - PolicyService - - ProcessInstancePhysicsService - - ProximityPromptService - - PublishService - - RbxAnalyticsService - - RemoteCursorService - - RemoteDebuggerServer - - RenderSettings - - ReplicatedFirst - - ReplicatedStorage - - RobloxPluginGuiService - - RobloxReplicatedStorage - - RtMessagingService - - RunService - - RuntimeScriptService - - SafetyService - - ScriptChangeService - - ScriptCloneWatcher - - ScriptCloneWatcherHelper - - ScriptContext - - ScriptEditorService - - ScriptRegistrationService - - ScriptService - - Selection - - SelectionHighlightManager - - ServerScriptService - - ServerStorage - - ServiceVisibilityService - - SessionService - - SharedTableRegistry - - ShorelineUpgraderService - - SmoothVoxelsUpgraderService - - SnippetService - - SocialService - - SoundService - - SpawnerService - - StarterPack - - StarterPlayer - - Stats - - Studio - - StudioAssetService - - StudioData - - StudioDeviceEmulatorService - - StudioPublishService - - StudioScriptDebugEventListener - - StudioSdkService - - StudioService - - TaskScheduler - - TeamCreateData - - TeamCreatePublishService - - TeamCreateService - - Teams - - TeleportService - - TemporaryCageMeshProvider - - TemporaryScriptService - - TestService - - TextBoxService - - TextChatService - - TextService - - ThirdPartyUserService - - TimerService - - ToastNotificationService - - TouchInputService - - TracerService - - TweenService - - UGCValidationService - - UnvalidatedAssetService - - UserInputService - - UserService - - VRService - - VersionControlService - - VideoCaptureService - - VirtualInputManager - - VirtualUser - - VisibilityCheckDispatcher - - VisibilityService - - Visit - - VoiceChatInternal - - VoiceChatService - method: true - must_use: true - GraphicsQualityChangeRequest: - struct: Event - HttpGetAsync: - args: - - required: false - type: any - - required: false - type: any - method: true - HttpPostAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - InsertObjectsAndJoinIfLegacyAsync: - args: - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsContentLoaded: - args: [] - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGearTypeAllowed: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IsLoaded: - args: [] - method: true - IsUniverseMetadataLoaded: - args: [] - method: true - ItemChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - JobId: - property: read-only - Load: - args: - - required: false - type: any - method: true - Loaded: - struct: Event - Name: - property: override-fields - OnClose: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - OpenScreenshotsFolder: - args: [] - method: true - OpenVideosFolder: - args: [] - method: true - Parent: - struct: Instance - PlaceId: - property: read-only - PlaceVersion: - property: read-only - PrivateServerId: - property: read-only - PrivateServerOwnerId: - property: read-only - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ReportInGoogleAnalytics: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SavePlace: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - ScreenshotReady: - struct: Event - ScreenshotSavedToAlbum: - struct: Event - ServiceAdded: - struct: Event - ServiceRemoving: - struct: Event - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastFlagForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastIntForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastStringForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetIsLoaded: - args: - - required: false - type: any - - required: false - type: any - method: true - SetPlaceId: - args: - - required: false - type: any - method: true - SetUniverseId: - args: - - required: false - type: any - method: true - Shutdown: - args: [] - method: true - UniverseMetadataLoaded: - struct: Event - VIPServerId: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - VIPServerOwnerId: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - Workspace: - struct: Workspace - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getService: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - lighting: - struct: Instance - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - service: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - workspace: - struct: Workspace - deprecated: - message: this property is deprecated. - replace: [] - EnumItem: - Name: - property: read-only - Value: - property: read-only - Event: - Connect: - args: - - type: function - method: true - Once: - args: - - type: function - method: true - Wait: - args: [] - method: true - connect: - args: - - type: function - method: true - deprecated: - message: lowercase methods have been superceded by uppercase ones - replace: - - Connect(%1) - wait: - args: - - type: function - method: true - deprecated: - message: lowercase methods have been superceded by uppercase ones - replace: - - Wait(%1) - Instance: - '*': - any: true - Plugin: - '*': - struct: Instance - Activate: - args: - - required: false - type: any - method: true - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionEnabled: - property: read-only - CreateDockWidgetPluginGui: - args: - - required: false - type: any - - required: false - type: any - method: true - CreatePluginAction: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CreatePluginMenu: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CreateQWidgetPluginGui: - args: - - required: false - type: any - - required: false - type: any - method: true - CreateToolbar: - args: - - required: false - type: any - method: true - Deactivate: - args: [] - method: true - Deactivation: - struct: Event - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - GetJoinMode: - args: [] - method: true - GetMouse: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetSelectedRibbonTool: - args: [] - method: true - GetSetting: - args: - - required: false - type: any - method: true - GetStudioUserId: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GridSize: - property: read-only - ImportFbxAnimation: - args: - - required: false - type: any - - required: false - type: any - method: true - ImportFbxRig: - args: - - required: false - type: any - method: true - Intersect: - args: - - required: false - type: any - method: true - Invoke: - args: - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsActivated: - args: [] - method: true - IsActivatedWithExclusiveMouse: - args: [] - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - Name: - property: override-fields - Negate: - args: - - required: false - type: any - method: true - OnInvoke: - args: - - required: false - type: any - - required: false - type: any - method: true - OnSetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - OpenScript: - args: - - required: false - type: any - - required: false - type: any - method: true - OpenWikiPage: - args: - - required: false - type: any - method: true - Parent: - struct: Instance - PauseSound: - args: - - required: false - type: any - method: true - PlaySound: - args: - - required: false - type: any - - required: false - type: any - method: true - ProcessAssetInsertionDrag: - property: override-fields - ProcessAssetInsertionDrop: - property: override-fields - PromptForExistingAssetId: - args: - - required: false - type: any - method: true - PromptSaveSelection: - args: - - required: false - type: any - method: true - Ready: - struct: Event - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ResumeSound: - args: - - required: false - type: any - method: true - SaveSelectedToRoblox: - args: [] - method: true - SelectRibbonTool: - args: - - required: false - type: any - - required: false - type: any - method: true - Separate: - args: - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - SetReady: - args: [] - method: true - SetSetting: - args: - - required: false - type: any - - required: false - type: any - method: true - StartDecalDrag: - args: - - required: false - type: any - method: true - StartDrag: - args: - - required: false - type: any - method: true - StopAllSounds: - args: [] - method: true - Union: - args: - - required: false - type: any - method: true - Unloading: - struct: Event - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Script: - '*': - struct: Instance - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CurrentEditor: - struct: Instance - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Disabled: - property: override-fields - Enabled: - property: override-fields - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetHash: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - LinkedSource: - property: override-fields - Name: - property: override-fields - Parent: - struct: Instance - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Terrain: - '*': - struct: Instance - AncestryChanged: - struct: Event - Anchored: - property: override-fields - ApplyAngularImpulse: - args: - - required: false - type: any - method: true - ApplyImpulse: - args: - - required: false - type: any - method: true - ApplyImpulseAtPosition: - args: - - required: false - type: any - - required: false - type: any - method: true - Archivable: - property: override-fields - AssemblyAngularVelocity: - any: true - AssemblyCenterOfMass: - any: true - AssemblyLinearVelocity: - any: true - AssemblyMass: - property: read-only - AssemblyRootPart: - struct: BasePart - AttributeChanged: - struct: Event - AutowedgeCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - AutowedgeCells: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - BackParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackSurface: - property: override-fields - BackSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomSurface: - property: override-fields - BottomSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BrickColor: - property: override-fields - CFrame: - any: true - CanCollide: - property: override-fields - CanCollideWith: - args: - - required: false - type: any - method: true - CanQuery: - property: override-fields - CanSetNetworkOwnership: - args: [] - method: true - CanShorelinesBeUpgraded: - args: [] - method: true - CanSmoothVoxelsBeUpgraded: - args: [] - method: true - CanTouch: - property: override-fields - CastShadow: - property: override-fields - CellCenterToWorld: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CellCornerToWorld: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CenterOfMass: - any: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - Clear: - args: [] - method: true - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionGroup: - property: override-fields - CollisionGroupId: - property: override-fields - Color: - property: override-fields - ConvertToSmooth: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - CopyRegion: - args: - - required: false - type: any - method: true - CountCells: - args: [] - method: true - CurrentPhysicalProperties: - property: read-only - CustomPhysicalProperties: - property: override-fields - Decoration: - property: override-fields - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Elasticity: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - ExtentsCFrame: - any: true - ExtentsSize: - any: true - FillBall: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillBlock: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillCylinder: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillWedge: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - Friction: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontSurface: - property: override-fields - FrontSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetChildren: - args: [] - method: true - GetConnectedParts: - args: - - required: false - type: any - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetJoints: - args: [] - method: true - GetMass: - args: [] - method: true - GetMaterialColor: - args: - - required: false - type: any - method: true - GetNetworkOwner: - args: [] - method: true - GetNetworkOwnershipAuto: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetRootPart: - args: [] - method: true - GetTerrainWireframe: - args: - - required: false - type: any - - required: false - type: any - method: true - GetTouchingParts: - args: [] - method: true - GetVelocityAtPosition: - args: - - required: false - type: any - method: true - GetWaterCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IntersectAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGrounded: - args: [] - method: true - IsSmooth: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - LeftParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftSurface: - property: override-fields - LeftSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LocalSimulationTouched: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - LocalTransparencyModifier: - property: override-fields - Locked: - property: override-fields - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Mass: - property: read-only - Massless: - property: override-fields - Material: - property: override-fields - MaterialColors: - property: override-fields - MaterialVariant: - property: override-fields - MaxExtents: - property: read-only - Name: - property: override-fields - Orientation: - any: true - Origin: - any: true - OutfitChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - PasteRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Pivot Offset: - any: true - PivotOffset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - Position: - any: true - ReadVoxels: - args: - - required: false - type: any - - required: false - type: any - method: true - ReceiveAge: - property: read-only - Reflectance: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ReplaceMaterial: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - ReplaceMaterialInTransform: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Resize: - args: - - required: false - type: any - - required: false - type: any - method: true - ResizeIncrement: - property: read-only - ResizeableFaces: - property: read-only - RightParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightSurface: - property: override-fields - RightSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RootPriority: - property: override-fields - RotVelocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - Rotation: - any: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetCells: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetMaterialColor: - args: - - required: false - type: any - - required: false - type: any - method: true - SetMaterialInTransform: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SetNetworkOwner: - args: - - required: false - type: any - method: true - SetNetworkOwnershipAuto: - args: [] - method: true - SetWaterCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - Size: - any: true - SmoothRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SpecificGravity: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - StoppedTouching: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - SubtractAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - TopParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopSurface: - property: override-fields - TopSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TouchEnded: - struct: Event - Touched: - struct: Event - Transparency: - property: override-fields - UnionAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Velocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WaterColor: - property: override-fields - WaterReflectance: - property: override-fields - WaterTransparency: - property: override-fields - WaterWaveSize: - property: override-fields - WaterWaveSpeed: - property: override-fields - WorldToCell: - args: - - required: false - type: any - method: true - WorldToCellPreferEmpty: - args: - - required: false - type: any - method: true - WorldToCellPreferSolid: - args: - - required: false - type: any - method: true - WriteVoxels: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - brickColor: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getMass: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - resize: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - subtractAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - unionAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Workspace: - '*': - struct: Instance - AddPersistentPlayer: - args: - - required: false - type: any - method: true - AllowThirdPartySales: - property: override-fields - AncestryChanged: - struct: Event - Archivable: - property: override-fields - ArePartsTouchingOthers: - args: - - required: false - type: any - - required: false - type: any - method: true - AttributeChanged: - struct: Event - Blockcast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BulkMoveTo: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CacheCurrentTerrain: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpDistance: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpHeight: - args: - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpPower: - args: - - required: false - type: any - - required: false - type: any - method: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - ClearCachedTerrain: - args: - - required: false - type: any - method: true - ClientAnimatorThrottling: - property: override-fields - Clone: - args: [] - method: true - CurrentCamera: - struct: Camera - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - DistributedGameTime: - property: override-fields - ExperimentalSolverIsEnabled: - args: [] - method: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FindPartOnRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartOnRayWithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartOnRayWithWhitelist: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3WithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3WithWhiteList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetBoundingBox: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetExtentsSize: - args: [] - method: true - GetFullName: - args: [] - method: true - GetModelCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetModelSize: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetNumAwakeParts: - args: [] - method: true - GetPartBoundsInBox: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - GetPartBoundsInRadius: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - GetPartsInPart: - args: - - required: false - type: any - - required: false - type: any - method: true - GetPhysicsThrottling: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPrimaryPartCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRealPhysicsFPS: - args: [] - method: true - GetScale: - args: [] - method: true - GetServerTimeNow: - args: [] - method: true - GlobalWind: - any: true - Gravity: - property: override-fields - HumanoidOnlySetCollisionsOnStateChange: - property: override-fields - IKMoveTo: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsRegion3Empty: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IsRegion3EmptyWithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - JoinToOutsiders: - args: - - required: false - type: any - - required: false - type: any - method: true - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - MeshPartHeadsAndAccessories: - property: override-fields - ModelStreamingMode: - property: override-fields - MoveTo: - args: - - required: false - type: any - method: true - Name: - property: override-fields - Origin: - any: true - PGSIsEnabled: - args: [] - method: true - Parent: - struct: Instance - PersistentLoaded: - struct: Event - PhysicsSteppingMethod: - property: override-fields - Pivot Offset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - PrimaryPart: - struct: BasePart - Raycast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - RaycastCachedTerrain: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - RejectCharacterDeletions: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - RemovePersistentPlayer: - args: - - required: false - type: any - method: true - ReplicateInstanceDestroySetting: - property: override-fields - ResetOrientationToIdentity: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Retargeting: - property: override-fields - Scale: - property: override-fields - ScaleTo: - args: - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetIdentityOrientation: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetInsertPoint: - args: - - required: false - type: any - - required: false - type: any - method: true - SetMeshPartHeadsAndAccessories: - args: - - required: false - type: any - method: true - SetPhysicsThrottleEnabled: - args: - - required: false - type: any - method: true - SetPrimaryPartCFrame: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SignalBehavior: - property: override-fields - Spherecast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - StreamOutBehavior: - property: override-fields - StreamingIntegrityMode: - property: override-fields - StreamingMinRadius: - property: override-fields - StreamingTargetRadius: - property: override-fields - Terrain: - struct: Terrain - TouchesUseCollisionGroups: - property: override-fields - TranslateBy: - args: - - required: false - type: any - method: true - UnjoinFromOutsiders: - args: - - required: false - type: any - method: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WorldPivot: - any: true - ZoomToExtents: - args: [] - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - findPartOnRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - findPartsInRegion3: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - move: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - moveTo: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] -last_updated: 1681227519 -last_selene_version: 0.25.0 -roblox_classes: - Accessory: - superclass: Accoutrement - events: [] - properties: - - AccessoryType - Accoutrement: - superclass: Instance - events: [] - properties: - - AttachmentForward - - AttachmentPoint - - AttachmentPos - - AttachmentRight - - AttachmentUp - Actor: - superclass: Model - events: [] - properties: [] - AdGui: - superclass: SurfaceGuiBase - events: [] - properties: - - AdShape - - Status - AdPortal: - superclass: Instance - events: [] - properties: - - PortalInvalidReason - - PortalStatus - - PortalVersion - - Status - AdService: - superclass: Instance - events: - - AdTeleportEnded - - AdTeleportInitiated - - VideoAdClosed - properties: [] - AdvancedDragger: - superclass: Instance - events: [] - properties: [] - AirController: - superclass: ControllerBase - events: [] - properties: - - MaintainAngularMomentum - - MaintainLinearMomentum - - MoveMaxForce - - OrientationMaxTorque - - OrientationSpeedFactor - - VectorForce - AlignOrientation: - superclass: Constraint - events: [] - properties: - - AlignType - - CFrame - - MaxAngularVelocity - - MaxTorque - - Mode - - PrimaryAxis - - PrimaryAxisOnly - - ReactionTorqueEnabled - - Responsiveness - - RigidityEnabled - - SecondaryAxis - AlignPosition: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - MaxForce - - MaxVelocity - - Mode - - Position - - ReactionForceEnabled - - Responsiveness - - RigidityEnabled - AnalysticsSettings: - superclass: GenericSettings - events: [] - properties: [] - AnalyticsService: - superclass: Instance - events: [] - properties: - - ApiKey - AngularVelocity: - superclass: Constraint - events: [] - properties: - - AngularVelocity - - MaxTorque - - ReactionTorqueEnabled - - RelativeTo - Animation: - superclass: Instance - events: [] - properties: - - AnimationId - AnimationClip: - superclass: Instance - events: [] - properties: - - Guid - - Loop - - Priority - AnimationClipProvider: - superclass: Instance - events: [] - properties: [] - AnimationConstraint: - superclass: Constraint - events: [] - properties: - - IsKinematic - - MaxForce - - MaxTorque - - Transform - AnimationController: - superclass: Instance - events: - - AnimationPlayed - properties: [] - AnimationFromVideoCreatorService: - superclass: Instance - events: [] - properties: [] - AnimationFromVideoCreatorStudioService: - superclass: Instance - events: [] - properties: [] - AnimationRigData: - superclass: Instance - events: [] - properties: [] - AnimationStreamTrack: - superclass: Instance - events: - - Stopped - properties: - - Animation - - IsPlaying - - Priority - - WeightCurrent - - WeightTarget - AnimationTrack: - superclass: Instance - events: - - DidLoop - - Ended - - KeyframeReached - - Stopped - properties: - - Animation - - IsPlaying - - Length - - Looped - - Priority - - Speed - - TimePosition - - WeightCurrent - - WeightTarget - Animator: - superclass: Instance - events: - - AnimationPlayed - - AnimationPlayedCoreScript - - AnimationStreamTrackPlayed - properties: - - EvaluationThrottled - - PreferLodEnabled - AppStorageService: - superclass: LocalStorageService - events: [] - properties: [] - AppUpdateService: - superclass: Instance - events: [] - properties: [] - ArcHandles: - superclass: HandlesBase - events: - - MouseButton1Down - - MouseButton1Up - - MouseDrag - - MouseEnter - - MouseLeave - properties: - - Axes - AssetCounterService: - superclass: Instance - events: [] - properties: [] - AssetDeliveryProxy: - superclass: Instance - events: [] - properties: - - Interface - - Port - - StartServer - AssetImportService: - superclass: Instance - events: [] - properties: [] - AssetImportSession: - superclass: Instance - events: - - UploadComplete - - UploadCompleteDeprecated - - UploadProgress - properties: [] - AssetManagerService: - superclass: Instance - events: - - AssetImportedSignal - - ImportSessionFinished - - ImportSessionStarted - - MayBeLinkedSourceModified - properties: [] - AssetPatchSettings: - superclass: Instance - events: [] - properties: - - ContentId - - OutputPath - - PatchId - AssetService: - superclass: Instance - events: - - OpenPublishResultModal - properties: [] - AssetSoundEffect: - superclass: CustomSoundEffect - events: [] - properties: [] - Atmosphere: - superclass: Instance - events: [] - properties: - - Color - - Decay - - Density - - Glare - - Haze - - Offset - Attachment: - superclass: Instance - events: [] - properties: - - Axis - - CFrame - - Orientation - - Position - - Rotation - - SecondaryAxis - - Visible - - WorldAxis - - WorldCFrame - - WorldOrientation - - WorldPosition - - WorldRotation - - WorldSecondaryAxis - AudioPages: - superclass: Pages - events: [] - properties: [] - AudioSearchParams: - superclass: Instance - events: [] - properties: - - Album - - Artist - - AudioSubtype - - MaxDuration - - MinDuration - - SearchKeyword - - Tag - - Title - AvatarEditorService: - superclass: Instance - events: - - OpenAllowInventoryReadAccess - - OpenPromptCreateOufit - - OpenPromptDeleteOutfit - - OpenPromptRenameOutfit - - OpenPromptSaveAvatar - - OpenPromptSetFavorite - - OpenPromptUpdateOutfit - - PromptAllowInventoryReadAccessCompleted - - PromptCreateOutfitCompleted - - PromptDeleteOutfitCompleted - - PromptRenameOutfitCompleted - - PromptSaveAvatarCompleted - - PromptSaveAvatarThumbnailCustomizationCompleted - - PromptSetFavoriteCompleted - - PromptUpdateOutfitCompleted - properties: [] - AvatarImportService: - superclass: Instance - events: [] - properties: [] - Backpack: - superclass: Instance - events: [] - properties: [] - BackpackItem: - superclass: Model - events: [] - properties: - - TextureId - BadgeService: - superclass: Instance - events: - - BadgeAwarded - - OnBadgeAwarded - properties: [] - BallSocketConstraint: - superclass: Constraint - events: [] - properties: - - LimitsEnabled - - MaxFrictionTorque - - Radius - - Restitution - - TwistLimitsEnabled - - TwistLowerAngle - - TwistUpperAngle - - UpperAngle - BasePart: - superclass: PVInstance - events: - - LocalSimulationTouched - - OutfitChanged - - StoppedTouching - - TouchEnded - - Touched - properties: - - Anchored - - AssemblyAngularVelocity - - AssemblyCenterOfMass - - AssemblyLinearVelocity - - AssemblyMass - - AssemblyRootPart - - BackParamA - - BackParamB - - BackSurface - - BackSurfaceInput - - BottomParamA - - BottomParamB - - BottomSurface - - BottomSurfaceInput - - BrickColor - - CFrame - - CanCollide - - CanQuery - - CanTouch - - CastShadow - - CenterOfMass - - CollisionGroup - - CollisionGroupId - - Color - - CurrentPhysicalProperties - - CustomPhysicalProperties - - Elasticity - - ExtentsCFrame - - ExtentsSize - - Friction - - FrontParamA - - FrontParamB - - FrontSurface - - FrontSurfaceInput - - LeftParamA - - LeftParamB - - LeftSurface - - LeftSurfaceInput - - LocalTransparencyModifier - - Locked - - Mass - - Massless - - Material - - MaterialVariant - - Orientation - - PivotOffset - - Position - - ReceiveAge - - Reflectance - - ResizeIncrement - - ResizeableFaces - - RightParamA - - RightParamB - - RightSurface - - RightSurfaceInput - - RootPriority - - RotVelocity - - Rotation - - Size - - SpecificGravity - - TopParamA - - TopParamB - - TopSurface - - TopSurfaceInput - - Transparency - - Velocity - - brickColor - BasePlayerGui: - superclass: Instance - events: [] - properties: [] - BaseScript: - superclass: LuaSourceContainer - events: [] - properties: - - Disabled - - Enabled - - LinkedSource - - RunContext - BaseWrap: - superclass: Instance - events: [] - properties: - - CageMeshId - - CageOrigin - - CageOriginWorld - - HSRAssetId - - ImportOrigin - - ImportOriginWorld - Beam: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - Brightness - - Color - - CurveSize0 - - CurveSize1 - - Enabled - - FaceCamera - - LightEmission - - LightInfluence - - Segments - - Texture - - TextureLength - - TextureMode - - TextureSpeed - - Transparency - - Width0 - - Width1 - - ZOffset - BevelMesh: - superclass: DataModelMesh - events: [] - properties: [] - BillboardGui: - superclass: LayerCollector - events: [] - properties: - - Active - - Adornee - - AlwaysOnTop - - Brightness - - ClipsDescendants - - CurrentDistance - - DistanceLowerLimit - - DistanceStep - - DistanceUpperLimit - - ExtentsOffset - - ExtentsOffsetWorldSpace - - LightInfluence - - MaxDistance - - PlayerToHideFrom - - Size - - SizeOffset - - StudsOffset - - StudsOffsetWorldSpace - BinaryStringValue: - superclass: ValueBase - events: - - Changed - properties: [] - BindableEvent: - superclass: Instance - events: - - Event - properties: [] - BindableFunction: - superclass: Instance - events: [] - properties: [] - BlockMesh: - superclass: BevelMesh - events: [] - properties: [] - BloomEffect: - superclass: PostEffect - events: [] - properties: - - Intensity - - Size - - Threshold - BlurEffect: - superclass: PostEffect - events: [] - properties: - - Size - BodyAngularVelocity: - superclass: BodyMover - events: [] - properties: - - AngularVelocity - - MaxTorque - - P - - angularvelocity - - maxTorque - BodyColors: - superclass: CharacterAppearance - events: [] - properties: - - HeadColor - - HeadColor3 - - LeftArmColor - - LeftArmColor3 - - LeftLegColor - - LeftLegColor3 - - RightArmColor - - RightArmColor3 - - RightLegColor - - RightLegColor3 - - TorsoColor - - TorsoColor3 - BodyForce: - superclass: BodyMover - events: [] - properties: - - Force - - force - BodyGyro: - superclass: BodyMover - events: [] - properties: - - CFrame - - D - - MaxTorque - - P - - cframe - - maxTorque - BodyMover: - superclass: Instance - events: [] - properties: [] - BodyPosition: - superclass: BodyMover - events: - - ReachedTarget - properties: - - D - - MaxForce - - P - - Position - - maxForce - - position - BodyThrust: - superclass: BodyMover - events: [] - properties: - - Force - - Location - - force - - location - BodyVelocity: - superclass: BodyMover - events: [] - properties: - - MaxForce - - P - - Velocity - - maxForce - - velocity - Bone: - superclass: Attachment - events: [] - properties: - - Transform - - TransformedCFrame - - TransformedWorldCFrame - BoolValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - BoxHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Size - Breakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - Enabled - - Id - - Line - - LogMessage - - MetaBreakpointId - - Script - - Valid - - Verified - BrickColorValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - BrowserService: - superclass: Instance - events: - - AuthCookieCopiedToEngine - - BrowserWindowClosed - - BrowserWindowWillNavigate - - JavaScriptCallback - properties: [] - BubbleChatConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AdorneeName - - BackgroundColor3 - - BackgroundTransparency - - BubbleDuration - - BubblesSpacing - - Enabled - - Font - - FontFace - - LocalPlayerStudsOffset - - MaxDistance - - MinimizeDistance - - TextColor3 - - TextSize - - VerticalStudsOffset - BulkImportService: - superclass: Instance - events: - - AssetImported - - BulkImportFinished - - BulkImportStarted - properties: [] - BuoyancySensor: - superclass: SensorBase - events: [] - properties: - - FullySubmerged - - TouchingSurface - CFrameValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - CSGDictionaryService: - superclass: FlyweightService - events: [] - properties: [] - CacheableContentProvider: - superclass: Instance - events: [] - properties: [] - CalloutService: - superclass: Instance - events: [] - properties: [] - Camera: - superclass: Instance - events: - - FirstPersonTransition - - InterpolationFinished - properties: - - CFrame - - CameraSubject - - CameraType - - CoordinateFrame - - DiagonalFieldOfView - - FieldOfView - - FieldOfViewMode - - Focus - - HeadLocked - - HeadScale - - MaxAxisFieldOfView - - NearPlaneZ - - ViewportSize - - focus - CanvasGroup: - superclass: GuiObject - events: [] - properties: - - GroupColor3 - - GroupTransparency - CatalogPages: - superclass: Pages - events: [] - properties: [] - ChangeHistoryService: - superclass: Instance - events: - - OnRedo - - OnUndo - properties: [] - ChannelSelectorSoundEffect: - superclass: CustomSoundEffect - events: [] - properties: - - Channel - CharacterAppearance: - superclass: Instance - events: [] - properties: [] - CharacterMesh: - superclass: CharacterAppearance - events: [] - properties: - - BaseTextureId - - BodyPart - - MeshId - - OverlayTextureId - Chat: - superclass: Instance - events: - - BubbleChatSettingsChanged - - Chatted - properties: - - BubbleChatEnabled - - LoadDefaultChat - ChatInputBarConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AbsolutePosition - - AbsolutePositionWrite - - AbsoluteSize - - AbsoluteSizeWrite - - BackgroundColor3 - - BackgroundTransparency - - Enabled - - FontFace - - PlaceholderColor3 - - TargetTextChannel - - TextBox - - TextColor3 - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - ChatWindowConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AbsolutePosition - - AbsolutePositionWrite - - AbsoluteSize - - AbsoluteSizeWrite - - BackgroundColor3 - - BackgroundTransparency - - Enabled - - FontFace - - HeightScale - - HorizontalAlignment - - TextColor3 - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - VerticalAlignment - - WidthScale - ChorusSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Mix - - Rate - ClickDetector: - superclass: Instance - events: - - MouseClick - - MouseHoverEnter - - MouseHoverLeave - - RightMouseClick - - mouseClick - properties: - - CursorIcon - - MaxActivationDistance - ClientReplicator: - superclass: NetworkReplicator - events: - - RCCProfilerDataComplete - - StatsReceived - properties: [] - ClimbController: - superclass: ControllerBase - events: [] - properties: - - AccelerationTime - - MoveMaxForce - - OrientationMaxTorque - - OrientationSpeedFactor - Clothing: - superclass: CharacterAppearance - events: [] - properties: - - Color3 - CloudLocalizationTable: - superclass: LocalizationTable - events: [] - properties: [] - Clouds: - superclass: Instance - events: [] - properties: - - Color - - Cover - - Density - - Enabled - ClusterPacketCache: - superclass: Instance - events: [] - properties: [] - CollectionService: - superclass: Instance - events: - - ItemAdded - - ItemRemoved - - TagAdded - - TagRemoved - properties: [] - Color3Value: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - ColorCorrectionEffect: - superclass: PostEffect - events: [] - properties: - - Brightness - - Contrast - - Saturation - - TintColor - CommandInstance: - superclass: Instance - events: [] - properties: - - AllowGUIAccessPoints - - Checked - - DefaultShortcut - - DisplayName - - Enabled - - Icon - - Name - - Permission - - StatusTip - CommandService: - superclass: Instance - events: - - CommandExecuting - properties: [] - CompressorSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Attack - - GainMakeup - - Ratio - - Release - - SideChain - - Threshold - ConeHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Height - - Radius - Configuration: - superclass: Instance - events: [] - properties: [] - ConfigureServerService: - superclass: Instance - events: [] - properties: [] - Constraint: - superclass: Instance - events: [] - properties: - - Active - - Attachment0 - - Attachment1 - - Color - - Enabled - - Visible - ContentProvider: - superclass: Instance - events: - - AssetFetchFailed - properties: - - BaseUrl - - RequestQueueSize - ContextActionService: - superclass: Instance - events: - - BoundActionAdded - - BoundActionChanged - - BoundActionRemoved - - GetActionButtonEvent - - LocalToolEquipped - - LocalToolUnequipped - properties: [] - Controller: - superclass: Instance - events: - - ButtonChanged - properties: [] - ControllerBase: - superclass: Instance - events: [] - properties: - - MoveSpeedFactor - - RigidityEnabled - ControllerManager: - superclass: Instance - events: [] - properties: - - ActiveController - - BaseMoveSpeed - - BaseTurnSpeed - - ClimbSensor - - FacingDirection - - GroundSensor - - MovingDirection - ControllerPartSensor: - superclass: ControllerSensor - events: [] - properties: - - HitFrame - - HitNormal - - SearchDistance - - SensedPart - - SensorMode - ControllerSensor: - superclass: SensorBase - events: [] - properties: [] - ControllerService: - superclass: Instance - events: [] - properties: [] - CookiesService: - superclass: Instance - events: [] - properties: [] - CoreGui: - superclass: BasePlayerGui - events: - - UserGuiRenderingChanged - properties: - - SelectionImageObject - - Version - CorePackages: - superclass: Instance - events: [] - properties: [] - CoreScript: - superclass: BaseScript - events: [] - properties: [] - CoreScriptDebuggingManagerHelper: - superclass: Instance - events: [] - properties: [] - CoreScriptSyncService: - superclass: Instance - events: [] - properties: [] - CornerWedgePart: - superclass: BasePart - events: [] - properties: [] - CrossDMScriptChangeListener: - superclass: Instance - events: - - GuidLineContentsChanged - - GuidNameChanged - properties: [] - CurveAnimation: - superclass: AnimationClip - events: [] - properties: [] - CustomEvent: - superclass: Instance - events: - - ReceiverConnected - - ReceiverDisconnected - properties: [] - CustomEventReceiver: - superclass: Instance - events: - - EventConnected - - EventDisconnected - - SourceValueChanged - properties: - - Source - CustomSoundEffect: - superclass: SoundEffect - events: [] - properties: [] - CylinderHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Angle - - Height - - InnerRadius - - Radius - CylinderMesh: - superclass: BevelMesh - events: [] - properties: [] - CylindricalConstraint: - superclass: SlidingBallConstraint - events: [] - properties: - - AngularActuatorType - - AngularLimitsEnabled - - AngularResponsiveness - - AngularRestitution - - AngularSpeed - - AngularVelocity - - CurrentAngle - - InclinationAngle - - LowerAngle - - MotorMaxAngularAcceleration - - MotorMaxTorque - - RotationAxisVisible - - ServoMaxTorque - - TargetAngle - - UpperAngle - - WorldRotationAxis - DataModel: - superclass: ServiceProvider - events: - - AllowedGearTypeChanged - - GraphicsQualityChangeRequest - - ItemChanged - - Loaded - - ScreenshotReady - - ScreenshotSavedToAlbum - - UniverseMetadataLoaded - properties: - - CreatorId - - CreatorType - - GameId - - GearGenreSetting - - Genre - - IsSFFlagsLoaded - - JobId - - PlaceId - - PlaceVersion - - PrivateServerId - - PrivateServerOwnerId - - VIPServerId - - VIPServerOwnerId - - Workspace - - lighting - - workspace - DataModelMesh: - superclass: Instance - events: [] - properties: - - Offset - - Scale - - VertexColor - DataModelPatchService: - superclass: Instance - events: [] - properties: [] - DataModelSession: - superclass: Instance - events: - - CurrentDataModelTypeAboutToChange - - CurrentDataModelTypeChanged - - DataModelCreated - - DataModelWillBeDestroyed - properties: - - CurrentDataModelType - - SessionId - DataStore: - superclass: GlobalDataStore - events: [] - properties: [] - DataStoreIncrementOptions: - superclass: Instance - events: [] - properties: [] - DataStoreInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - DataStoreName - - UpdatedTime - DataStoreKey: - superclass: Instance - events: [] - properties: - - KeyName - DataStoreKeyInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - UpdatedTime - - Version - DataStoreKeyPages: - superclass: Pages - events: [] - properties: - - Cursor - DataStoreListingPages: - superclass: Pages - events: [] - properties: - - Cursor - DataStoreObjectVersionInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - IsDeleted - - Version - DataStoreOptions: - superclass: Instance - events: [] - properties: - - AllScopes - DataStorePages: - superclass: Pages - events: [] - properties: [] - DataStoreService: - superclass: Instance - events: [] - properties: - - AutomaticRetry - - LegacyNamingScheme - DataStoreSetOptions: - superclass: Instance - events: [] - properties: [] - DataStoreVersionPages: - superclass: Pages - events: [] - properties: [] - Debris: - superclass: Instance - events: [] - properties: - - MaxItems - DebugSettings: - superclass: Instance - events: [] - properties: - - DataModel - - InstanceCount - - IsScriptStackTracingEnabled - - JobCount - - PlayerCount - - ReportSoundWarnings - - RobloxVersion - - TickCountPreciseOverride - DebuggablePluginWatcher: - superclass: Instance - events: [] - properties: [] - DebuggerBreakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - IsEnabled - - Line - - LogExpression - - isContextDependentBreakpoint - DebuggerConnection: - superclass: Instance - events: - - BreakpointAdded - - BreakpointChanged - - BreakpointRemoved - - Paused - - Resumed - properties: - - ErrorMessage - - HasError - - Id - - IsPaused - DebuggerConnectionManager: - superclass: Instance - events: - - ConnectionEnded - - ConnectionStarted - - FocusChanged - properties: - - Timeout - DebuggerLuaResponse: - superclass: Instance - events: [] - properties: - - IsError - - IsSuccess - - Message - - RequestId - - Status - DebuggerManager: - superclass: Instance - events: - - DebuggerAdded - - DebuggerRemoved - properties: - - DebuggingEnabled - DebuggerUIService: - superclass: Instance - events: - - ExpressionAdded - properties: [] - DebuggerVariable: - superclass: Instance - events: [] - properties: - - Name - - Populated - - Type - - Value - - VariableId - - VariablesCount - DebuggerWatch: - superclass: Instance - events: [] - properties: - - Expression - Decal: - superclass: FaceInstance - events: [] - properties: - - Color3 - - LocalTransparencyModifier - - Shiny - - Specular - - Texture - - Transparency - - ZIndex - DepthOfFieldEffect: - superclass: PostEffect - events: [] - properties: - - FarIntensity - - FocusDistance - - InFocusRadius - - NearIntensity - DeviceIdService: - superclass: Instance - events: [] - properties: [] - Dialog: - superclass: Instance - events: - - DialogChoiceSelected - properties: - - BehaviorType - - ConversationDistance - - GoodbyeChoiceActive - - GoodbyeDialog - - InUse - - InitialPrompt - - Purpose - - Tone - - TriggerDistance - - TriggerOffset - DialogChoice: - superclass: Instance - events: [] - properties: - - GoodbyeChoiceActive - - GoodbyeDialog - - ResponseDialog - - UserDialog - DistortionSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Level - DockWidgetPluginGui: - superclass: PluginGui - events: [] - properties: - - HostWidgetWasRestored - DoubleConstrainedValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - ConstrainedValue - - MaxValue - - MinValue - - Value - DraftsService: - superclass: Instance - events: - - CommitStatusChanged - - DraftAdded - - DraftRemoved - - DraftStatusChanged - - EditorsListChanged - - UpdateStatusChanged - properties: [] - Dragger: - superclass: Instance - events: [] - properties: [] - DraggerService: - superclass: Instance - events: [] - properties: - - AlignDraggedObjects - - AngleSnapEnabled - - AngleSnapIncrement - - AnimateHover - - CollisionsEnabled - - DraggerCoordinateSpace - - DraggerMovementMode - - GeometrySnapColor - - HoverAnimateFrequency - - HoverLineThickness - - HoverThickness - - JointsEnabled - - LinearSnapEnabled - - LinearSnapIncrement - - PivotSnapToGeometry - - ShowHover - - ShowPivotIndicator - DynamicRotate: - superclass: JointInstance - events: [] - properties: - - BaseAngle - EchoSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Delay - - DryLevel - - Feedback - - WetLevel - EmotesPages: - superclass: InventoryPages - events: [] - properties: [] - EqualizerSoundEffect: - superclass: SoundEffect - events: [] - properties: - - HighGain - - LowGain - - MidGain - EulerRotationCurve: - superclass: Instance - events: [] - properties: - - RotationOrder - EventIngestService: - superclass: Instance - events: [] - properties: [] - ExperienceAuthService: - superclass: Instance - events: - - OpenAuthPrompt - properties: [] - ExperienceInviteOptions: - superclass: Instance - events: [] - properties: - - InviteMessageId - - InviteUser - - LaunchData - - PromptMessage - Explosion: - superclass: Instance - events: - - Hit - properties: - - BlastPressure - - BlastRadius - - DestroyJointRadiusPercent - - ExplosionType - - Position - - TimeScale - - Visible - FaceAnimatorService: - superclass: Instance - events: - - TrackerError - - TrackerPrompt - properties: - - AudioAnimationEnabled - - FlipHeadOrientation - - VideoAnimationEnabled - FaceControls: - superclass: Instance - events: [] - properties: - - ChinRaiser - - ChinRaiserUpperLip - - Corrugator - - EyesLookDown - - EyesLookLeft - - EyesLookRight - - EyesLookUp - - FlatPucker - - Funneler - - JawDrop - - JawLeft - - JawRight - - LeftBrowLowerer - - LeftCheekPuff - - LeftCheekRaiser - - LeftDimpler - - LeftEyeClosed - - LeftEyeUpperLidRaiser - - LeftInnerBrowRaiser - - LeftLipCornerDown - - LeftLipCornerPuller - - LeftLipStretcher - - LeftLowerLipDepressor - - LeftNoseWrinkler - - LeftOuterBrowRaiser - - LeftUpperLipRaiser - - LipPresser - - LipsTogether - - LowerLipSuck - - MouthLeft - - MouthRight - - Pucker - - RightBrowLowerer - - RightCheekPuff - - RightCheekRaiser - - RightDimpler - - RightEyeClosed - - RightEyeUpperLidRaiser - - RightInnerBrowRaiser - - RightLipCornerDown - - RightLipCornerPuller - - RightLipStretcher - - RightLowerLipDepressor - - RightNoseWrinkler - - RightOuterBrowRaiser - - RightUpperLipRaiser - - TongueDown - - TongueOut - - TongueUp - - UpperLipSuck - FaceInstance: - superclass: Instance - events: [] - properties: - - Face - FacialAnimationRecordingService: - superclass: Instance - events: [] - properties: - - BiometricDataConsent - FacialAnimationStreamingService: - superclass: Instance - events: [] - properties: - - EnableFlags - - Enabled - FacialAnimationStreamingServiceStats: - superclass: Instance - events: - - isStreamingFacsUpdated - properties: [] - FacialAnimationStreamingServiceV2: - superclass: Instance - events: [] - properties: - - ServiceState - Feature: - superclass: Instance - events: [] - properties: - - FaceId - - InOut - - LeftRight - - TopBottom - File: - superclass: Instance - events: [] - properties: - - Size - FileMesh: - superclass: DataModelMesh - events: [] - properties: - - MeshId - - TextureId - Fire: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - Heat - - SecondaryColor - - Size - - TimeScale - - size - Flag: - superclass: Tool - events: [] - properties: - - TeamColor - FlagStand: - superclass: Part - events: - - FlagCaptured - properties: - - TeamColor - FlagStandService: - superclass: Instance - events: [] - properties: [] - FlangeSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Mix - - Rate - FloatCurve: - superclass: Instance - events: [] - properties: - - Length - FloorWire: - superclass: GuiBase3d - events: [] - properties: - - CycleOffset - - From - - StudsBetweenTextures - - Texture - - TextureSize - - To - - Velocity - - WireRadius - FlyweightService: - superclass: Instance - events: [] - properties: [] - Folder: - superclass: Instance - events: [] - properties: [] - ForceField: - superclass: Instance - events: [] - properties: - - Visible - FormFactorPart: - superclass: BasePart - events: [] - properties: - - FormFactor - - formFactor - Frame: - superclass: GuiObject - events: [] - properties: - - Style - FriendPages: - superclass: Pages - events: [] - properties: [] - FriendService: - superclass: Instance - events: - - FriendsUpdated - properties: [] - FunctionalTest: - superclass: Instance - events: [] - properties: - - Description - GamePassService: - superclass: Instance - events: [] - properties: [] - GameSettings: - superclass: Instance - events: - - VideoRecordingChangeRequest - properties: - - VideoCaptureEnabled - - VideoRecording - GamepadService: - superclass: Instance - events: - - GamepadThumbstick1Changed - properties: - - GamepadCursorEnabled - GenericSettings: - superclass: ServiceProvider - events: [] - properties: [] - Geometry: - superclass: Instance - events: [] - properties: [] - GetTextBoundsParams: - superclass: Instance - events: [] - properties: - - Font - - Size - - Text - - Width - GlobalDataStore: - superclass: Instance - events: [] - properties: [] - GlobalSettings: - superclass: GenericSettings - events: [] - properties: [] - Glue: - superclass: JointInstance - events: [] - properties: - - F0 - - F1 - - F2 - - F3 - GoogleAnalyticsConfiguration: - superclass: Instance - events: [] - properties: [] - GroundController: - superclass: ControllerBase - events: [] - properties: - - AccelerationLean - - AccelerationTime - - AlignSpeed - - AlignTorque - - DecelerationTime - - Friction - - FrictionWeight - - GroundOffset - - StandForce - - StandSpeed - - TurningFactor - GroupService: - superclass: Instance - events: [] - properties: [] - GuiBase: - superclass: Instance - events: [] - properties: [] - GuiBase2d: - superclass: GuiBase - events: - - SelectionChanged - properties: - - AbsolutePosition - - AbsoluteRotation - - AbsoluteSize - - AutoLocalize - - ClippedRect - - IsNotOccluded - - Localize - - RawRect2D - - RootLocalizationTable - - SelectionBehaviorDown - - SelectionBehaviorLeft - - SelectionBehaviorRight - - SelectionBehaviorUp - - SelectionGroup - - TotalGroupScale - GuiBase3d: - superclass: GuiBase - events: [] - properties: - - Color - - Color3 - - Transparency - - Visible - GuiButton: - superclass: GuiObject - events: - - Activated - - MouseButton1Click - - MouseButton1Down - - MouseButton1Up - - MouseButton2Click - - MouseButton2Down - - MouseButton2Up - properties: - - AutoButtonColor - - Modal - - Selected - - Style - GuiLabel: - superclass: GuiObject - events: [] - properties: [] - GuiMain: - superclass: ScreenGui - events: [] - properties: [] - GuiObject: - superclass: GuiBase2d - events: - - DragBegin - - DragStopped - - InputBegan - - InputChanged - - InputEnded - - MouseEnter - - MouseLeave - - MouseMoved - - MouseWheelBackward - - MouseWheelForward - - SelectionGained - - SelectionLost - - TouchLongPress - - TouchPan - - TouchPinch - - TouchRotate - - TouchSwipe - - TouchTap - properties: - - Active - - AnchorPoint - - AutomaticSize - - BackgroundColor - - BackgroundColor3 - - BackgroundTransparency - - BorderColor - - BorderColor3 - - BorderMode - - BorderSizePixel - - ClipsDescendants - - Draggable - - LayoutOrder - - NextSelectionDown - - NextSelectionLeft - - NextSelectionRight - - NextSelectionUp - - Position - - Rotation - - Selectable - - SelectionImageObject - - SelectionOrder - - Size - - SizeConstraint - - Transparency - - Visible - - ZIndex - GuiService: - superclass: Instance - events: - - BrowserWindowClosed - - CloseInspectMenuRequest - - CoreGuiRenderOverflowed - - EmotesMenuOpenChanged - - ErrorMessageChanged - - GuiVisibilityChangedSignal - - InspectMenuEnabledChangedSignal - - InspectPlayerFromHumanoidDescriptionRequest - - InspectPlayerFromUserIdWithCtxRequest - - KeyPressed - - MenuClosed - - MenuOpened - - NativeClose - - NetworkPausedEnabledChanged - - Open9SliceEditor - - PurchasePromptShown - - SafeZoneOffsetsChanged - - ShowLeaveConfirmation - - SpecialKeyPressed - - UiMessageChanged - properties: - - AutoSelectGuiEnabled - - CoreEffectFolder - - CoreGuiFolder - - CoreGuiNavigationEnabled - - GuiNavigationEnabled - - IsModalDialog - - IsWindows - - MenuIsOpen - - SelectedCoreObject - - SelectedObject - - TouchControlsEnabled - GuidRegistryService: - superclass: Instance - events: [] - properties: [] - HSRDataContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - HandleAdornment: - superclass: PVAdornment - events: - - MouseButton1Down - - MouseButton1Up - - MouseEnter - - MouseLeave - properties: - - AdornCullingMode - - AlwaysOnTop - - CFrame - - SizeRelativeOffset - - ZIndex - Handles: - superclass: HandlesBase - events: - - MouseButton1Down - - MouseButton1Up - - MouseDrag - - MouseEnter - - MouseLeave - properties: - - Faces - - Style - HandlesBase: - superclass: PartAdornment - events: [] - properties: [] - HapticService: - superclass: Instance - events: [] - properties: [] - Hat: - superclass: Accoutrement - events: [] - properties: [] - HeightmapImporterService: - superclass: Instance - events: - - ColormapHasUnknownPixels - - ProgressUpdate - properties: [] - HiddenSurfaceRemovalAsset: - superclass: Instance - events: [] - properties: [] - Highlight: - superclass: Instance - events: [] - properties: - - Adornee - - DepthMode - - Enabled - - FillColor - - FillTransparency - - LineThickness - - OutlineColor - - OutlineTransparency - - ReservedId - HingeConstraint: - superclass: Constraint - events: [] - properties: - - ActuatorType - - AngularResponsiveness - - AngularSpeed - - AngularVelocity - - CurrentAngle - - LimitsEnabled - - LowerAngle - - MotorMaxAcceleration - - MotorMaxTorque - - Radius - - Restitution - - ServoMaxTorque - - TargetAngle - - UpperAngle - Hint: - superclass: Message - events: [] - properties: [] - Hole: - superclass: Feature - events: [] - properties: [] - Hopper: - superclass: Instance - events: [] - properties: [] - HopperBin: - superclass: BackpackItem - events: - - Deselected - - Selected - properties: - - Active - - BinType - HttpRbxApiService: - superclass: Instance - events: [] - properties: [] - HttpRequest: - superclass: Instance - events: [] - properties: [] - HttpService: - superclass: Instance - events: [] - properties: - - HttpEnabled - Humanoid: - superclass: Instance - events: - - AnimationPlayed - - Climbing - - ClusterCompositionFinished - - CustomStatusAdded - - CustomStatusRemoved - - Died - - EmoteTriggered - - FallingDown - - FreeFalling - - GettingUp - - HealthChanged - - Jumping - - MoveToFinished - - PlatformStanding - - Ragdoll - - Running - - Seated - - StateChanged - - StateEnabledChanged - - StatusAdded - - StatusRemoved - - Strafing - - Swimming - - Touched - properties: - - AutoJumpEnabled - - AutoRotate - - AutomaticScalingEnabled - - BreakJointsOnDeath - - CameraOffset - - CollisionType - - DisplayDistanceType - - DisplayName - - EvaluateStateMachine - - FloorMaterial - - Health - - HealthDisplayDistance - - HealthDisplayType - - HipHeight - - Jump - - JumpHeight - - JumpPower - - LeftLeg - - MaxHealth - - MaxSlopeAngle - - MoveDirection - - NameDisplayDistance - - NameOcclusion - - PlatformStand - - RequiresNeck - - RigType - - RightLeg - - RootPart - - SeatPart - - Sit - - TargetPoint - - Torso - - UseJumpPower - - WalkSpeed - - WalkToPart - - WalkToPoint - - maxHealth - HumanoidController: - superclass: Controller - events: [] - properties: [] - HumanoidDescription: - superclass: Instance - events: - - EmotesChanged - - EquippedEmotesChanged - properties: - - AccessoryBlob - - BackAccessory - - BodyTypeScale - - ClimbAnimation - - DepthScale - - Face - - FaceAccessory - - FallAnimation - - FrontAccessory - - GraphicTShirt - - HairAccessory - - HatAccessory - - Head - - HeadColor - - HeadScale - - HeightScale - - IdleAnimation - - JumpAnimation - - LeftArm - - LeftArmColor - - LeftLeg - - LeftLegColor - - MoodAnimation - - NeckAccessory - - NumberEmotesLoaded - - Pants - - ProportionScale - - RightArm - - RightArmColor - - RightLeg - - RightLegColor - - RunAnimation - - Shirt - - ShouldersAccessory - - SwimAnimation - - Torso - - TorsoColor - - WaistAccessory - - WalkAnimation - - WidthScale - IKControl: - superclass: Instance - events: [] - properties: - - ChainRoot - - Enabled - - EndEffector - - EndEffectorOffset - - Offset - - Pole - - Priority - - SmoothTime - - Target - - Type - - Weight - ILegacyStudioBridge: - superclass: Instance - events: [] - properties: [] - IXPService: - superclass: Instance - events: - - OnBrowserTrackerLayerLoadingStatusChanged - - OnUserLayerLoadingStatusChanged - properties: [] - ImageButton: - superclass: GuiButton - events: [] - properties: - - ContentImageSize - - HoverImage - - Image - - ImageColor3 - - ImageRectOffset - - ImageRectSize - - ImageTransparency - - IsLoaded - - PressedImage - - ResampleMode - - ScaleType - - SliceCenter - - SliceScale - - TileSize - ImageDataExperimental: - superclass: Instance - events: [] - properties: - - Size - - TemporaryId - ImageHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Image - - Size - ImageLabel: - superclass: GuiLabel - events: [] - properties: - - ContentImageSize - - Image - - ImageColor3 - - ImageRectOffset - - ImageRectSize - - ImageTransparency - - IsLoaded - - ResampleMode - - ScaleType - - SliceCenter - - SliceScale - - TileSize - ImporterAnimationSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterBaseSettings: - superclass: Instance - events: [] - properties: - - Id - - ImportName - - ShouldImport - ImporterFacsSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterGroupSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - Anchored - - ImportAsModelAsset - - InsertInWorkspace - ImporterJointSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterMaterialSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - DiffuseFilePath - - IsPbr - - MetalnessFilePath - - NormalFilePath - - RoughnessFilePath - ImporterMeshSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - Anchored - - CageManifold - - CageMeshIntersectedPreview - - CageMeshNotIntersected - - CageNoOverlappingVertices - - CageNonManifoldPreview - - CageOverlappingVerticesPreview - - CageUVMatched - - CageUVMisMatchedPreview - - Dimensions - - DoubleSided - - IgnoreVertexColors - - IrrelevantCageModifiedPreview - - MeshHoleDetectedPreview - - MeshNoHoleDetected - - NoIrrelevantCageModified - - NoOuterCageFarExtendedFromMesh - - OuterCageFarExtendedFromMeshPreview - - PolygonCount - - UseImportedPivot - ImporterRootSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - AddModelToInventory - - Anchored - - ExistingPackageId - - FileDimensions - - ImportAsModelAsset - - ImportAsPackage - - InsertInWorkspace - - InsertWithScenePosition - - InvertNegativeFaces - - MergeMeshes - - PolygonCount - - RigScale - - RigType - - ScaleUnit - - UseSceneOriginAsCFrame - - UseSceneOriginAsPivot - - UsesCages - - WorldForward - - WorldUp - IncrementalPatchBuilder: - superclass: Instance - events: [] - properties: - - AddPathsToBundle - - BuildDebouncePeriod - - HighCompression - - SerializePatch - - ZstdCompression - InputObject: - superclass: Instance - events: [] - properties: - - Delta - - KeyCode - - Position - - UserInputState - - UserInputType - InsertService: - superclass: Instance - events: [] - properties: - - AllowClientInsertModels - - AllowInsertFreeModels - Instance: - superclass: <<>> - events: - - AncestryChanged - - AttributeChanged - - Changed - - ChildAdded - - ChildRemoved - - DescendantAdded - - DescendantRemoving - - Destroying - - childAdded - properties: - - Archivable - - ClassName - - DataCost - - Name - - Parent - - RobloxLocked - - SourceAssetId - - archivable - - className - InstanceAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - IntConstrainedValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - ConstrainedValue - - MaxValue - - MinValue - - Value - IntValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - IntersectOperation: - superclass: PartOperation - events: [] - properties: [] - InventoryPages: - superclass: Pages - events: [] - properties: [] - JointInstance: - superclass: Instance - events: [] - properties: - - Active - - C0 - - C1 - - Enabled - - Part0 - - Part1 - - part1 - JointsService: - superclass: Instance - events: [] - properties: [] - KeyboardService: - superclass: Instance - events: [] - properties: [] - Keyframe: - superclass: Instance - events: [] - properties: - - Time - KeyframeMarker: - superclass: Instance - events: [] - properties: - - Value - KeyframeSequence: - superclass: AnimationClip - events: [] - properties: - - AuthoredHipHeight - KeyframeSequenceProvider: - superclass: Instance - events: [] - properties: [] - LSPFileSyncService: - superclass: Instance - events: [] - properties: [] - LanguageService: - superclass: Instance - events: [] - properties: [] - LayerCollector: - superclass: GuiBase2d - events: [] - properties: - - Enabled - - ResetOnSpawn - - ZIndexBehavior - LegacyStudioBridge: - superclass: ILegacyStudioBridge - events: [] - properties: [] - Light: - superclass: Instance - events: [] - properties: - - Brightness - - Color - - Enabled - - Shadows - Lighting: - superclass: Instance - events: - - LightingChanged - properties: - - Ambient - - Brightness - - TimerTime - - ColorShift_Bottom - - ColorShift_Top - - EnvironmentDiffuseScale - - EnvironmentSpecularScale - - ExposureCompensation - - FogColor - - FogEnd - - FogStart - - GeographicLatitude - - GlobalShadows - - OutdoorAmbient - - Outlines - - ShadowColor - - ShadowSoftness - - Technology - - TempUseNewSkyRemovalBehaviour - - TimeOfDay - LineForce: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - InverseSquareLaw - - Magnitude - - MaxForce - - ReactionForceEnabled - LineHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Length - - Thickness - LinearVelocity: - superclass: Constraint - events: [] - properties: - - LineDirection - - LineVelocity - - MaxForce - - PlaneVelocity - - PrimaryTangentAxis - - RelativeTo - - SecondaryTangentAxis - - VectorVelocity - - VelocityConstraintMode - LiveScriptingService: - superclass: Instance - events: [] - properties: [] - LocalDebuggerConnection: - superclass: DebuggerConnection - events: [] - properties: [] - LocalScript: - superclass: Script - events: [] - properties: [] - LocalStorageService: - superclass: Instance - events: - - ItemWasSet - - StoreWasCleared - properties: [] - LocalizationService: - superclass: Instance - events: - - AutoTranslateWillRun - properties: - - ForcePlayModeGameLocaleId - - ForcePlayModeRobloxLocaleId - - IsTextScraperRunning - - RobloxForcePlayModeGameLocaleId - - RobloxForcePlayModeRobloxLocaleId - - RobloxLocaleId - - SystemLocaleId - LocalizationTable: - superclass: Instance - events: [] - properties: - - DevelopmentLanguage - - Root - - SourceLocaleId - LodDataEntity: - superclass: Instance - events: [] - properties: - - EntityLodEnabled - LodDataService: - superclass: Instance - events: [] - properties: [] - LogService: - superclass: Instance - events: - - HttpResultOut - - MessageOut - - OnHttpResultApproved - - ServerHttpResultOut - - ServerMessageOut - properties: [] - LoginService: - superclass: Instance - events: - - LoginFailed - - LoginSucceeded - properties: [] - LuaSettings: - superclass: Instance - events: [] - properties: [] - LuaSourceContainer: - superclass: Instance - events: [] - properties: - - CurrentEditor - - RuntimeSource - LuaWebService: - superclass: Instance - events: [] - properties: [] - LuauScriptAnalyzerService: - superclass: Instance - events: [] - properties: [] - ManualGlue: - superclass: ManualSurfaceJointInstance - events: [] - properties: [] - ManualSurfaceJointInstance: - superclass: JointInstance - events: [] - properties: [] - ManualWeld: - superclass: ManualSurfaceJointInstance - events: [] - properties: [] - MarkerCurve: - superclass: Instance - events: [] - properties: - - Length - MarketplaceService: - superclass: Instance - events: - - ClientLuaDialogRequested - - ClientPurchaseSuccess - - NativePurchaseFinished - - NativePurchaseFinishedWithLocalPlayer - - PromptBundlePurchaseFinished - - PromptBundlePurchaseRequested - - PromptGamePassPurchaseFinished - - PromptGamePassPurchaseRequested - - PromptPremiumPurchaseFinished - - PromptPremiumPurchaseRequested - - PromptProductPurchaseFinished - - PromptProductPurchaseRequested - - PromptPurchaseFinished - - PromptPurchaseRequested - - PromptRobloxPurchaseRequested - - PromptSubscriptionCancellationFinished - - PromptSubscriptionCancellationRequested - - PromptSubscriptionPurchaseFinished - - PromptSubscriptionPurchaseRequested - - ServerPurchaseVerification - - ThirdPartyPurchaseFinished - properties: [] - MaterialGenerationService: - superclass: Instance - events: [] - properties: [] - MaterialGenerationSession: - superclass: Instance - events: [] - properties: [] - MaterialService: - superclass: Instance - events: - - OverrideStatusChanged - properties: - - AsphaltName - - BasaltName - - BrickName - - CobblestoneName - - ConcreteName - - CorrodedMetalName - - CrackedLavaName - - DiamondPlateName - - FabricName - - FoilName - - GlacierName - - GraniteName - - GrassName - - GroundName - - IceName - - LeafyGrassName - - LimestoneName - - MarbleName - - MetalName - - MudName - - PavementName - - PebbleName - - PlasticName - - RockName - - SaltName - - SandName - - SandstoneName - - SlateName - - SmoothPlasticName - - SnowName - - Use2022Materials - - WoodName - - WoodPlanksName - MaterialVariant: - superclass: Instance - events: [] - properties: - - BaseMaterial - - ColorMap - - CustomPhysicalProperties - - MaterialPattern - - MetalnessMap - - NormalMap - - RoughnessMap - - StudsPerTile - MemStorageConnection: - superclass: Instance - events: [] - properties: [] - MemStorageService: - superclass: Instance - events: [] - properties: [] - MemoryStoreQueue: - superclass: Instance - events: [] - properties: [] - MemoryStoreService: - superclass: Instance - events: [] - properties: [] - MemoryStoreSortedMap: - superclass: Instance - events: [] - properties: [] - MeshContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - MeshDataExperimental: - superclass: Instance - events: [] - properties: - - Size - MeshPart: - superclass: TriangleMeshPart - events: [] - properties: - - DoubleSided - - HasJointOffset - - HasSkinnedMesh - - JointOffset - - MeshId - - RenderFidelity - - TextureID - Message: - superclass: Instance - events: [] - properties: - - Text - MessageBusConnection: - superclass: Instance - events: [] - properties: [] - MessageBusService: - superclass: Instance - events: [] - properties: [] - MessagingService: - superclass: Instance - events: [] - properties: [] - MetaBreakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - Enabled - - Id - - IsLogpoint - - Line - - LogMessage - - Script - - Valid - MetaBreakpointContext: - superclass: Instance - events: [] - properties: [] - MetaBreakpointManager: - superclass: Instance - events: - - MetaBreakpointAdded - - MetaBreakpointChanged - - MetaBreakpointRemoved - - MetaBreakpointSetChanged - properties: [] - Model: - superclass: PVInstance - events: [] - properties: - - LevelOfDetail - - ModelStreamingMode - - PrimaryPart - - Scale - - WorldPivot - ModuleScript: - superclass: LuaSourceContainer - events: [] - properties: - - LinkedSource - - Source - Motor: - superclass: JointInstance - events: [] - properties: - - CurrentAngle - - DesiredAngle - - MaxVelocity - Motor6D: - superclass: Motor - events: [] - properties: - - ChildName - - ParentName - - Transform - MotorFeature: - superclass: Feature - events: [] - properties: [] - Mouse: - superclass: Instance - events: - - Button1Down - - Button1Up - - Button2Down - - Button2Up - - Idle - - KeyDown - - KeyUp - - Move - - WheelBackward - - WheelForward - - keyDown - properties: - - Hit - - Icon - - Origin - - Target - - TargetFilter - - TargetSurface - - UnitRay - - ViewSizeX - - ViewSizeY - - X - - Y - - hit - - target - MouseService: - superclass: Instance - events: [] - properties: [] - MultipleDocumentInterfaceInstance: - superclass: Instance - events: - - DataModelSessionEnded - - DataModelSessionStarted - properties: - - FocusedDataModelSession - NegateOperation: - superclass: PartOperation - events: [] - properties: [] - NetworkClient: - superclass: NetworkPeer - events: - - ConnectionAccepted - - ConnectionFailed - properties: [] - NetworkMarker: - superclass: Instance - events: - - Received - properties: [] - NetworkPeer: - superclass: Instance - events: [] - properties: [] - NetworkReplicator: - superclass: Instance - events: [] - properties: [] - NetworkServer: - superclass: NetworkPeer - events: [] - properties: [] - NetworkSettings: - superclass: Instance - events: [] - properties: - - EmulatedTotalMemoryInMB - - FreeMemoryMBytes - - HttpProxyEnabled - - HttpProxyURL - - IncomingReplicationLag - - PrintJoinSizeBreakdown - - PrintPhysicsErrors - - PrintStreamInstanceQuota - - RandomizeJoinInstanceOrder - - RenderStreamedRegions - - ShowActiveAnimationAsset - NoCollisionConstraint: - superclass: Instance - events: [] - properties: - - Enabled - - Part0 - - Part1 - NonReplicatedCSGDictionaryService: - superclass: FlyweightService - events: [] - properties: [] - NotificationService: - superclass: Instance - events: - - Roblox17sConnectionChanged - - Roblox17sEventReceived - - RobloxConnectionChanged - - RobloxEventReceived - properties: - - IsConnected - - IsLuaChatEnabled - - IsLuaGameDetailsEnabled - - SelectedTheme - NumberPose: - superclass: PoseBase - events: [] - properties: - - Value - NumberValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - ObjectValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - OrderedDataStore: - superclass: GlobalDataStore - events: [] - properties: [] - OutfitPages: - superclass: Pages - events: [] - properties: [] - PVAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - PVInstance: - superclass: Instance - events: [] - properties: - - Origin - - Pivot Offset - PackageLink: - superclass: Instance - events: [] - properties: - - AutoUpdate - - Creator - - PackageAssetName - - PackageId - - PermissionLevel - - Status - - VersionNumber - PackageService: - superclass: Instance - events: [] - properties: [] - PackageUIService: - superclass: Instance - events: - - OnConvertToPackageResult - - OnOpenConvertToPackagePlugin - properties: [] - Pages: - superclass: Instance - events: [] - properties: - - IsFinished - Pants: - superclass: Clothing - events: [] - properties: - - PantsTemplate - ParabolaAdornment: - superclass: PVAdornment - events: [] - properties: - - A - - B - - C - - Range - - Thickness - Part: - superclass: FormFactorPart - events: [] - properties: - - Shape - PartAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - PartOperation: - superclass: TriangleMeshPart - events: [] - properties: - - RenderFidelity - - SmoothingAngle - - TriangleCount - - UsePartColor - PartOperationAsset: - superclass: Instance - events: [] - properties: [] - ParticleEmitter: - superclass: Instance - events: [] - properties: - - Acceleration - - Brightness - - Color - - Drag - - EmissionDirection - - Enabled - - FlipbookFramerate - - FlipbookIncompatible - - FlipbookLayout - - FlipbookMode - - FlipbookStartRandom - - Lifetime - - LightEmission - - LightInfluence - - LockedToPart - - Orientation - - Rate - - RotSpeed - - Rotation - - Shape - - ShapeInOut - - ShapePartial - - ShapeStyle - - Size - - Speed - - SpreadAngle - - Squash - - Texture - - TimeScale - - Transparency - - VelocityInheritance - - VelocitySpread - - ZOffset - PatchBundlerFileWatch: - superclass: Instance - events: [] - properties: [] - PatchMapping: - superclass: Instance - events: [] - properties: - - FlattenTree - - PatchId - - TargetPath - Path: - superclass: Instance - events: - - Blocked - - Unblocked - properties: - - Status - PathfindingLink: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - IsBidirectional - - Label - PathfindingModifier: - superclass: Instance - events: [] - properties: - - Label - - PassThrough - PathfindingService: - superclass: Instance - events: [] - properties: - - EmptyCutoff - PausedState: - superclass: Instance - events: [] - properties: - - AllThreadsPaused - - Reason - - ThreadId - PausedStateBreakpoint: - superclass: PausedState - events: [] - properties: - - Breakpoint - PausedStateException: - superclass: PausedState - events: [] - properties: - - ExceptionText - PermissionsService: - superclass: Instance - events: [] - properties: [] - PhysicsService: - superclass: Instance - events: [] - properties: [] - PhysicsSettings: - superclass: Instance - events: [] - properties: - - AllowSleep - - AreAnchorsShown - - AreAssembliesShown - - AreAwakePartsHighlighted - - AreBodyTypesShown - - AreConstraintForcesShownForSelectedOrHoveredInstances - - AreConstraintTorquesShownForSelectedOrHoveredInstances - - AreContactForcesShownForSelectedOrHoveredAssemblies - - AreContactIslandsShown - - AreContactPointsShown - - AreJointCoordinatesShown - - AreMagnitudesShownForDrawnForcesAndTorques - - AreMechanismsShown - - AreModelCoordsShown - - AreOwnersShown - - ArePartCoordsShown - - AreRegionsShown - - AreSolverIslandsShown - - AreTerrainReplicationRegionsShown - - AreTimestepsShown - - AreUnalignedPartsShown - - AreWorldCoordsShown - - DisableCSGv2 - - ForceCSGv2 - - ForceDrawScale - - IsInterpolationThrottleShown - - IsReceiveAgeShown - - IsTreeShown - - PhysicsEnvironmentalThrottle - - ShowDecompositionGeometry - - SolverConvergenceVisualizationMode - - ThrottleAdjustTime - - UseCSGv2 - PitchShiftSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Octave - Plane: - superclass: PlaneConstraint - events: [] - properties: [] - PlaneConstraint: - superclass: Constraint - events: [] - properties: [] - Platform: - superclass: Part - events: [] - properties: [] - Player: - superclass: Instance - events: - - CharacterAdded - - CharacterAppearanceLoaded - - CharacterRemoving - - Chatted - - FriendStatusChanged - - Idled - - OnTeleport - - SimulationRadiusChanged - properties: - - AccountAge - - AppearanceDidLoad - - AutoJumpEnabled - - CameraMaxZoomDistance - - CameraMinZoomDistance - - CameraMode - - CanLoadCharacterAppearance - - Character - - CharacterAppearance - - CharacterAppearanceId - - ChatMode - - DataComplexity - - DataComplexityLimit - - DataReady - - DevCameraOcclusionMode - - DevComputerCameraMode - - DevComputerMovementMode - - DevEnableMouseLock - - DevTouchCameraMode - - DevTouchMovementMode - - DisplayName - - FollowUserId - - GameplayPaused - - Guest - - HasVerifiedBadge - - HealthDisplayDistance - - LocaleId - - MaximumSimulationRadius - - MembershipType - - NameDisplayDistance - - Neutral - - OsPlatform - - PlatformName - - ReplicationFocus - - RespawnLocation - - SimulationRadius - - Team - - TeamColor - - Teleported - - TeleportedIn - - UnfilteredChat - - UserId - - VRDevice - - VREnabled - - userId - PlayerEmulatorService: - superclass: Instance - events: [] - properties: - - CustomPoliciesEnabled - - EmulatedCountryCode - - EmulatedGameLocale - - PlayerEmulationEnabled - - SerializedEmulatedPolicyInfo - PlayerGui: - superclass: BasePlayerGui - events: - - TopbarTransparencyChangedSignal - properties: - - CurrentScreenOrientation - - ScreenOrientation - - SelectionImageObject - PlayerMouse: - superclass: Mouse - events: [] - properties: [] - PlayerScripts: - superclass: Instance - events: - - ComputerCameraMovementModeRegistered - - ComputerMovementModeRegistered - - TouchCameraMovementModeRegistered - - TouchMovementModeRegistered - properties: [] - Players: - superclass: Instance - events: - - FriendRequestEvent - - GameAnnounce - - PlayerAdded - - PlayerChatted - - PlayerConnecting - - PlayerDisconnecting - - PlayerMembershipChanged - - PlayerRejoining - - PlayerRemoving - properties: - - BubbleChat - - CharacterAutoLoads - - ClassicChat - - LocalPlayer - - MaxPlayers - - MaxPlayersInternal - - NumPlayers - - PreferredPlayers - - PreferredPlayersInternal - - RespawnTime - - UseStrafingAnimations - - localPlayer - - numPlayers - Plugin: - superclass: Instance - events: - - Deactivation - - Ready - - Unloading - properties: - - CollisionEnabled - - GridSize - - HostDataModelType - - HostDataModelTypeIsCurrent - - MultipleDocumentInterfaceInstance - - UsesAssetInsertionDrag - PluginAction: - superclass: Instance - events: - - Triggered - properties: - - ActionId - - AllowBinding - - Checked - - DefaultShortcut - - Enabled - - StatusTip - - Text - PluginDebugService: - superclass: Instance - events: [] - properties: [] - PluginDragEvent: - superclass: Instance - events: [] - properties: - - Data - - MimeType - - Position - - Sender - PluginGui: - superclass: LayerCollector - events: - - PluginDragDropped - - PluginDragEntered - - PluginDragLeft - - PluginDragMoved - - WindowFocusReleased - - WindowFocused - properties: - - Title - PluginGuiService: - superclass: Instance - events: [] - properties: [] - PluginManagementService: - superclass: Instance - events: [] - properties: [] - PluginManager: - superclass: Instance - events: [] - properties: [] - PluginManagerInterface: - superclass: Instance - events: [] - properties: [] - PluginMenu: - superclass: Instance - events: [] - properties: - - Icon - - Title - PluginMouse: - superclass: Mouse - events: - - DragEnter - properties: [] - PluginPolicyService: - superclass: Instance - events: [] - properties: [] - PluginToolbar: - superclass: Instance - events: [] - properties: [] - PluginToolbarButton: - superclass: Instance - events: - - Click - properties: - - ClickableWhenViewportHidden - - Enabled - - Icon - PointLight: - superclass: Light - events: [] - properties: - - Range - PointsService: - superclass: Instance - events: - - PointsAwarded - properties: [] - PolicyService: - superclass: Instance - events: [] - properties: - - IsLuobuServer - - LuobuWhitelisted - Pose: - superclass: PoseBase - events: [] - properties: - - CFrame - - MaskWeight - PoseBase: - superclass: Instance - events: [] - properties: - - EasingDirection - - EasingStyle - - Weight - PostEffect: - superclass: Instance - events: [] - properties: - - Enabled - PrismaticConstraint: - superclass: SlidingBallConstraint - events: [] - properties: [] - ProcessInstancePhysicsService: - superclass: Instance - events: [] - properties: [] - ProximityPrompt: - superclass: Instance - events: - - PromptButtonHoldBegan - - PromptButtonHoldEnded - - PromptHidden - - PromptShown - - TriggerEnded - - Triggered - properties: - - ActionText - - AutoLocalize - - ClickablePrompt - - Enabled - - Exclusivity - - GamepadKeyCode - - HoldDuration - - KeyboardKeyCode - - MaxActivationDistance - - ObjectText - - RequiresLineOfSight - - RootLocalizationTable - - Style - - UIOffset - ProximityPromptService: - superclass: Instance - events: - - PromptButtonHoldBegan - - PromptButtonHoldEnded - - PromptHidden - - PromptShown - - PromptTriggerEnded - - PromptTriggered - properties: - - Enabled - - MaxPromptsVisible - PublishService: - superclass: Instance - events: [] - properties: [] - QWidgetPluginGui: - superclass: PluginGui - events: [] - properties: [] - RayValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - RbxAnalyticsService: - superclass: Instance - events: [] - properties: [] - ReflectionMetadata: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataCallbacks: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataClass: - superclass: ReflectionMetadataItem - events: [] - properties: - - ExplorerImageIndex - - ExplorerOrder - - Insertable - - PreferredParent - - ServiceVisibility - ReflectionMetadataClasses: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataEnum: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataEnumItem: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataEnums: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataEvents: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataFunctions: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataItem: - superclass: Instance - events: [] - properties: - - Browsable - - ClassCategory - - ClientOnly - - Constraint - - Deprecated - - EditingDisabled - - EditorType - - FFlag - - IsBackend - - PropertyOrder - - ScriptContext - - ServerOnly - - SliderScaling - - UIMaximum - - UIMinimum - - UINumTicks - ReflectionMetadataMember: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataProperties: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataYieldFunctions: - superclass: Instance - events: [] - properties: [] - RemoteCursorService: - superclass: Instance - events: [] - properties: [] - RemoteDebuggerServer: - superclass: Instance - events: [] - properties: [] - RemoteEvent: - superclass: Instance - events: - - OnClientEvent - - OnServerEvent - properties: [] - RemoteFunction: - superclass: Instance - events: [] - properties: [] - RenderSettings: - superclass: Instance - events: [] - properties: - - AutoFRMLevel - - EagerBulkExecution - - EditQualityLevel - - EnableFRM - - ExportMergeByMaterial - - FrameRateManager - - GraphicsMode - - MeshCacheSize - - MeshPartDetailLevel - - QualityLevel - - ReloadAssets - - RenderCSGTrianglesDebug - - ShowBoundingBoxes - RenderingTest: - superclass: Instance - events: [] - properties: - - CFrame - - ComparisonDiffThreshold - - ComparisonMethod - - ComparisonPsnrThreshold - - Description - - FieldOfView - - Orientation - - Position - - QualityLevel - - ShouldSkip - - Ticket - ReplicatedFirst: - superclass: Instance - events: - - DefaultLoadingGuiRemoved - - FinishedReplicating - - RemoveDefaultLoadingGuiSignal - properties: [] - ReplicatedStorage: - superclass: Instance - events: [] - properties: [] - ReverbSoundEffect: - superclass: SoundEffect - events: [] - properties: - - DecayTime - - Density - - Diffusion - - DryLevel - - WetLevel - RigidConstraint: - superclass: Constraint - events: [] - properties: [] - RobloxPluginGuiService: - superclass: Instance - events: [] - properties: [] - RobloxReplicatedStorage: - superclass: Instance - events: [] - properties: [] - RocketPropulsion: - superclass: BodyMover - events: - - ReachedTarget - properties: - - CartoonFactor - - MaxSpeed - - MaxThrust - - MaxTorque - - Target - - TargetOffset - - TargetRadius - - ThrustD - - ThrustP - - TurnD - - TurnP - RodConstraint: - superclass: Constraint - events: [] - properties: - - CurrentDistance - - Length - - LimitAngle0 - - LimitAngle1 - - LimitsEnabled - - Thickness - RopeConstraint: - superclass: Constraint - events: [] - properties: - - CurrentDistance - - Length - - Restitution - - Thickness - - WinchEnabled - - WinchForce - - WinchResponsiveness - - WinchSpeed - - WinchTarget - Rotate: - superclass: JointInstance - events: [] - properties: [] - RotateP: - superclass: DynamicRotate - events: [] - properties: [] - RotateV: - superclass: DynamicRotate - events: [] - properties: [] - RotationCurve: - superclass: Instance - events: [] - properties: - - Length - RtMessagingService: - superclass: Instance - events: [] - properties: [] - RunService: - superclass: Instance - events: - - Heartbeat - - PostSimulation - - PreAnimation - - PreRender - - PreSimulation - - RenderStepped - - Stepped - properties: - - ClientGitHash - RunningAverageItemDouble: - superclass: StatsItem - events: [] - properties: [] - RunningAverageItemInt: - superclass: StatsItem - events: [] - properties: [] - RunningAverageTimeIntervalItem: - superclass: StatsItem - events: [] - properties: [] - RuntimeScriptService: - superclass: Instance - events: [] - properties: [] - SafetyService: - superclass: Instance - events: - - ScreenshotContentReady - - ScreenshotUploaded - properties: [] - ScreenGui: - superclass: LayerCollector - events: [] - properties: - - ClipToDeviceSafeArea - - DisplayOrder - - IgnoreGuiInset - - OnTopOfCoreBlur - - SafeAreaCompatibility - - ScreenInsets - ScreenshotHud: - superclass: Instance - events: [] - properties: - - CameraButtonIcon - - CameraButtonPosition - - CloseButtonPosition - - CloseWhenScreenshotTaken - - ExperienceNameOverlayEnabled - - OverlayFont - - UsernameOverlayEnabled - - Visible - Script: - superclass: BaseScript - events: [] - properties: - - Source - ScriptBuilder: - superclass: Instance - events: [] - properties: [] - ScriptChangeService: - superclass: Instance - events: - - ScriptAdded - - ScriptBeingRemoved - - ScriptChanged - - ScriptFullNameChanged - - ScriptSourceChanged - properties: [] - ScriptCloneWatcher: - superclass: Instance - events: [] - properties: [] - ScriptCloneWatcherHelper: - superclass: Instance - events: [] - properties: [] - ScriptContext: - superclass: Instance - events: - - Error - - ErrorDetailed - properties: - - ScriptsDisabled - ScriptDebugger: - superclass: Instance - events: - - BreakpointAdded - - BreakpointRemoved - - EncounteredBreak - - Resuming - - WatchAdded - - WatchRemoved - properties: - - CurrentLine - - IsDebugging - - IsPaused - - Script - ScriptDocument: - superclass: Instance - events: - - SelectionChanged - - ViewportChanged - properties: [] - ScriptEditorService: - superclass: Instance - events: - - TextDocumentDidChange - - TextDocumentDidClose - - TextDocumentDidOpen - properties: [] - ScriptRegistrationService: - superclass: Instance - events: [] - properties: [] - ScriptRuntime: - superclass: Instance - events: [] - properties: [] - ScriptService: - superclass: Instance - events: [] - properties: [] - ScrollingFrame: - superclass: GuiObject - events: [] - properties: - - AbsoluteCanvasSize - - AbsoluteWindowSize - - AutomaticCanvasSize - - BottomImage - - CanvasPosition - - CanvasSize - - ElasticBehavior - - HorizontalBarRect - - HorizontalScrollBarInset - - MaxCanvasPosition - - MidImage - - ScrollBarImageColor3 - - ScrollBarImageTransparency - - ScrollBarThickness - - ScrollVelocity - - ScrollingDirection - - ScrollingEnabled - - TopImage - - VerticalBarRect - - VerticalScrollBarInset - - VerticalScrollBarPosition - Seat: - superclass: Part - events: [] - properties: - - Disabled - - Occupant - Selection: - superclass: Instance - events: - - SelectionChanged - properties: - - ActiveInstance - - SelectionBoxThickness - - SelectionLineThickness - - SelectionThickness - - ShowBoundingBox - SelectionBox: - superclass: InstanceAdornment - events: [] - properties: - - LineThickness - - StudioSelectionBox - - SurfaceColor - - SurfaceColor3 - - SurfaceTransparency - SelectionHighlightManager: - superclass: Instance - events: [] - properties: [] - SelectionLasso: - superclass: GuiBase3d - events: [] - properties: - - Humanoid - SelectionPartLasso: - superclass: SelectionLasso - events: [] - properties: - - Part - SelectionPointLasso: - superclass: SelectionLasso - events: [] - properties: - - Point - SelectionSphere: - superclass: PVAdornment - events: [] - properties: - - SurfaceColor - - SurfaceColor3 - - SurfaceTransparency - SensorBase: - superclass: Instance - events: - - OnSensorOutputChanged - properties: - - UpdateType - ServerReplicator: - superclass: NetworkReplicator - events: [] - properties: [] - ServerScriptService: - superclass: Instance - events: [] - properties: - - LoadStringEnabled - ServerStorage: - superclass: Instance - events: [] - properties: [] - ServiceProvider: - superclass: Instance - events: - - Close - - CloseLate - - ServiceAdded - - ServiceRemoving - properties: [] - ServiceVisibilityService: - superclass: Instance - events: [] - properties: - - VisibleServices - SessionService: - superclass: Instance - events: [] - properties: [] - SharedTableRegistry: - superclass: Instance - events: [] - properties: [] - Shirt: - superclass: Clothing - events: [] - properties: - - ShirtTemplate - ShirtGraphic: - superclass: CharacterAppearance - events: [] - properties: - - Color3 - - Graphic - ShorelineUpgraderService: - superclass: Instance - events: - - Status - properties: [] - SkateboardController: - superclass: Controller - events: - - AxisChanged - properties: - - Steer - - Throttle - SkateboardPlatform: - superclass: Part - events: - - Equipped - - MoveStateChanged - - Unequipped - - equipped - - unequipped - properties: - - Controller - - ControllingHumanoid - - Steer - - StickyWheels - - Throttle - Skin: - superclass: CharacterAppearance - events: [] - properties: - - SkinColor - Sky: - superclass: Instance - events: [] - properties: - - CelestialBodiesShown - - MoonAngularSize - - MoonTextureId - - SkyboxBk - - SkyboxDn - - SkyboxFt - - SkyboxLf - - SkyboxRt - - SkyboxUp - - StarCount - - SunAngularSize - - SunTextureId - SlidingBallConstraint: - superclass: Constraint - events: [] - properties: - - ActuatorType - - CurrentPosition - - LimitsEnabled - - LinearResponsiveness - - LowerLimit - - MotorMaxAcceleration - - MotorMaxForce - - Restitution - - ServoMaxForce - - Size - - Speed - - TargetPosition - - UpperLimit - - Velocity - Smoke: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - Opacity - - RiseVelocity - - Size - - TimeScale - SmoothVoxelsUpgraderService: - superclass: Instance - events: - - Status - properties: [] - Snap: - superclass: JointInstance - events: [] - properties: [] - SnippetService: - superclass: Instance - events: [] - properties: [] - SocialService: - superclass: Instance - events: - - GameInvitePromptClosed - - PromptInviteRequested - properties: [] - SolidModelContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - Sound: - superclass: Instance - events: - - DidLoop - - Ended - - Loaded - - Paused - - Played - - Resumed - - Stopped - properties: - - ChannelCount - - EmitterSize - - IsLoaded - - IsPaused - - IsPlaying - - IsSpatial - - LoopRegion - - Looped - - MaxDistance - - MinDistance - - Pitch - - PlayOnRemove - - PlaybackLoudness - - PlaybackRegion - - PlaybackRegionsEnabled - - PlaybackSpeed - - Playing - - RollOffGain - - RollOffMaxDistance - - RollOffMinDistance - - RollOffMode - - SoundGroup - - SoundId - - TimeLength - - TimePosition - - UsageContextPermission - - Volume - - isPlaying - SoundEffect: - superclass: Instance - events: [] - properties: - - Enabled - - Priority - SoundGroup: - superclass: Instance - events: [] - properties: - - Volume - SoundService: - superclass: Instance - events: - - DeviceListChanged - properties: - - AmbientReverb - - DistanceFactor - - DopplerScale - - RespectFilteringEnabled - - RolloffScale - - VolumetricAudio - Sparkles: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - SparkleColor - - TimeScale - SpawnLocation: - superclass: Part - events: [] - properties: - - AllowTeamChangeOnTouch - - Duration - - Enabled - - Neutral - - TeamColor - SpawnerService: - superclass: Instance - events: [] - properties: [] - Speaker: - superclass: Instance - events: [] - properties: - - ChannelCount - - PlaybackLoudness - - RollOffMaxDistance - - RollOffMinDistance - - RollOffMode - - SoundGroup - - Source - - Volume - SpecialMesh: - superclass: FileMesh - events: [] - properties: - - MeshType - SphereHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Radius - SpotLight: - superclass: Light - events: [] - properties: - - Angle - - Face - - Range - SpringConstraint: - superclass: Constraint - events: [] - properties: - - Coils - - CurrentLength - - Damping - - FreeLength - - LimitsEnabled - - MaxForce - - MaxLength - - MinLength - - Radius - - Stiffness - - Thickness - StackFrame: - superclass: Instance - events: [] - properties: - - FrameId - - FrameName - - FrameType - - Globals - - Line - - Locals - - Populated - - Script - - Upvalues - StandalonePluginScripts: - superclass: Instance - events: [] - properties: [] - StandardPages: - superclass: Pages - events: [] - properties: [] - StarterCharacterScripts: - superclass: StarterPlayerScripts - events: [] - properties: [] - StarterGear: - superclass: Instance - events: [] - properties: [] - StarterGui: - superclass: BasePlayerGui - events: - - CoreGuiChangedSignal - properties: - - ProcessUserInput - - ResetPlayerGuiOnSpawn - - RtlTextSupport - - ScreenOrientation - - ShowDevelopmentGui - - VirtualCursorMode - StarterPack: - superclass: Instance - events: [] - properties: [] - StarterPlayer: - superclass: Instance - events: [] - properties: - - AllowCustomAnimations - - AutoJumpEnabled - - CameraMaxZoomDistance - - CameraMinZoomDistance - - CameraMode - - CharacterJumpHeight - - CharacterJumpPower - - CharacterMaxSlopeAngle - - CharacterUseJumpPower - - CharacterWalkSpeed - - DevCameraOcclusionMode - - DevComputerCameraMovementMode - - DevComputerMovementMode - - DevTouchCameraMovementMode - - DevTouchMovementMode - - EnableDynamicHeads - - EnableMouseLockOption - - GameSettingsAssetIDFace - - GameSettingsAssetIDHead - - GameSettingsAssetIDLeftArm - - GameSettingsAssetIDLeftLeg - - GameSettingsAssetIDPants - - GameSettingsAssetIDRightArm - - GameSettingsAssetIDRightLeg - - GameSettingsAssetIDShirt - - GameSettingsAssetIDTeeShirt - - GameSettingsAssetIDTorso - - GameSettingsAvatar - - GameSettingsR15Collision - - GameSettingsScaleRangeBodyType - - GameSettingsScaleRangeHead - - GameSettingsScaleRangeHeight - - GameSettingsScaleRangeProportion - - GameSettingsScaleRangeWidth - - HealthDisplayDistance - - HumanoidStateMachineMode - - LoadCharacterAppearance - - 'LoadCharacterLayeredClothing ' - - NameDisplayDistance - - UserEmotesEnabled - StarterPlayerScripts: - superclass: Instance - events: [] - properties: [] - Stats: - superclass: Instance - events: [] - properties: - - ContactsCount - - DataReceiveKbps - - DataSendKbps - - HeartbeatTimeMs - - InstanceCount - - MovingPrimitivesCount - - PhysicsReceiveKbps - - PhysicsSendKbps - - PhysicsStepTimeMs - - PrimitivesCount - StatsItem: - superclass: Instance - events: [] - properties: - - DisplayName - Status: - superclass: Model - events: [] - properties: [] - StringValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - Studio: - superclass: Instance - events: - - ThemeChanged - properties: - - '"TODO" Color' - - '"function" Color' - - '"local" Color' - - '"nil" Color' - - '"self" Color' - - Active Color - - Active Hover Over Color - - Always Save Script Changes - - Animate Hover Over - - Auto Clean Empty Line - - Auto Closing Brackets - - Auto Closing Quotes - - Auto Delete Closing Brackets and Quotes - - Auto Indent Rule - - Auto-Recovery Enabled - - Auto-Recovery Interval (Minutes) - - Auto-Recovery Path - - Automatically commit locked scripts when you save or publish to Roblox - - Background Color - - Basic Objects Display Mode - - Bool Color - - Bracket Color - - Built-in Function Color - - Camera Mouse Wheel Speed - - Camera Pan Speed - - Camera Shift Speed - - Camera Speed - - Camera Zoom to Mouse Position - - Clear Output On Start - - CommandBarLocalState - - Comment Color - - Current Line Highlight Color - - Debugger Current Line Color - - Debugger Error Line Color - - DefaultScriptFileDir - - DeprecatedObjectsShown - - Display Team Create toggle when creating a new experience - - DisplayLanguage - - Doc View Code Background Color - - Drag Multiple Parts As Single Part - - Enable Autocomplete - - Enable Autocomplete Doc View - - Enable CoreScript Debugger - - Enable Http Sandboxing - - Enable Internal Beta Features - - Enable Internal Features - - Enable Script Analysis - - Enable Scrollbar Markers - - Enable Signature Help - - Enable Signature Help Doc View - - Enable Temporary Tabs - - Enable Temporary Tabs In Explorer - - Enable Type Hover - - EnableOnTypeAutocomplete - - Error Color - - File > New creates a place with Team Create off - - Find Selection Background Color - - Font - - Format On Paste - - Format On Type - - Function Name Color - - Highlight Current Line - - Highlight Occurances - - Hover Animate Speed - - Hover Box Thickness - - Hover Line Thickness - - Hover Over Color - - IconOverrideDir - - Indent Using Spaces - - Keyword Color - - Line Thickness - - LocalAssetsFolder - - LuaDebuggerEnabled - - LuaDebuggerEnabledAtStartup - - Luau Keyword Color - - Main Volume - - Matching Word Background Color - - Maximum Output Lines - - Menu Item Background Color - - Method Color - - Number Color - - Only Play Audio from Window in Focus - - Operator Color - - Output Font - - Output Layout Mode - - PermissionLevelShown - - Physical Draggers Select Scope By Default - - Pivot Snap To Geometry Color - - PluginDebuggingEnabled - - PluginsDir - - Primary Text Color - - Property Color - - Render Throttle Percentage - - Respect Studio shortcuts when game has focus - - Ruler Color - - Rulers - - RuntimeUndoBehavior - - Script Editor Color Preset - - Script Editor Scrollbar Background Color - - Script Editor Scrollbar Handle Color - - ScriptEditorMenuBorderColor - - ScriptEditorShouldShowPluginMethods - - ScriptTimeoutLength - - Scroll Past Last Line - - Search Content For Core Scripts - - Secondary Text Color - - Select Color - - Select/Hover Color - - Selected Menu Item Background Color - - Selected Text Color - - Selection Background Color - - Selection Box Thickness - - Selection Color - - Selection Highlight Thickness - - Selection Line Thickness - - Server Audio Behavior - - Set Pivot of Imported Parts - - Show Core GUI in Explorer while Playing - - Show Diagnostics Bar - - Show FileSyncService - - Show Hidden Objects in Explorer - - Show Hover Over - - Show Light Guides - - Show Navigation Labels - - Show Navigation Mesh - - Show Pathfinding Links - - Show Plugin GUI Service in Explorer - - Show QT warnings in output - - Show Whitespace - - Show plus button on hover in Explorer - - ShowCorePackagesInExplorer - - Skip Closing Brackets and Quotes - - String Color - - Tab Width - - Text Color - - Text Wrapping - - Theme - - UI Theme - - Use Bounding Box Move Handles - - Warning Color - - Whitespace Color - StudioAssetService: - superclass: Instance - events: - - OnConvertToPackageResult - - OnPublishPackageResult - - OnSaveToRoblox - properties: [] - StudioData: - superclass: Instance - events: [] - properties: - - EnableScriptCollabByDefaultOnLoad - StudioDeviceEmulatorService: - superclass: Instance - events: - - CurrentDeviceIdChanged - - OrientationChanged - - TouchInBoundsChanged - - TouchPositionsChanged - properties: - - HasMultiTouchStarted - - IsMultiTouchEmulationOn - - IsMultiTouchEnabled - - PivotPosition - StudioPublishService: - superclass: Instance - events: - - GameNameUpdated - - GamePublishCancelled - - GamePublishFinished - - OnSaveOrPublishPlaceToRoblox - properties: [] - StudioScriptDebugEventListener: - superclass: Instance - events: [] - properties: [] - StudioSdkService: - superclass: Instance - events: [] - properties: [] - StudioService: - superclass: Instance - events: - - OnImportFromRoblox - - OnOpenGameSettings - - OnOpenManagePackagePlugin - - OnPluginInstalledFromToolbox - - OnPluginInstalledFromWeb - - OnPublishAsPlugin - - OnSaveToRoblox - - PromptTransformPluginCheckEnable - - SaveLocallyAsComplete - properties: - - ActiveScript - - AlignDraggedObjects - - DraggerSolveConstraints - - DrawConstraintsOnTop - - GridSize - - HoverInstance - - InstalledPluginData - - PivotSnapToGeometry - - RotateIncrement - - ShowActiveInstanceHighlight - - ShowConstraintDetails - - StudioLocaleId - - UseLocalSpace - StudioTheme: - superclass: Instance - events: [] - properties: [] - SunRaysEffect: - superclass: PostEffect - events: [] - properties: - - Intensity - - Spread - SurfaceAppearance: - superclass: Instance - events: [] - properties: - - AlphaMode - - ColorMap - - MetalnessMap - - NormalMap - - RoughnessMap - - TexturePack - SurfaceGui: - superclass: SurfaceGuiBase - events: [] - properties: - - AlwaysOnTop - - Brightness - - CanvasSize - - ClipsDescendants - - HorizontalCurvature - - LightInfluence - - PixelsPerStud - - Shape - - SizingMode - - ToolPunchThroughDistance - - ZOffset - SurfaceGuiBase: - superclass: LayerCollector - events: [] - properties: - - Active - - Adornee - - Face - SurfaceLight: - superclass: Light - events: [] - properties: - - Angle - - Face - - Range - SurfaceSelection: - superclass: PartAdornment - events: [] - properties: - - TargetSurface - SwimController: - superclass: ControllerBase - events: [] - properties: - - AccelerationTime - - PitchMaxTorque - - PitchSpeedFactor - - RollMaxTorque - - RollSpeedFactor - SyncScriptBuilder: - superclass: ScriptBuilder - events: [] - properties: - - CoverageInfo - - DebugInfo - - PackAsSource - - RawBytecode - TaskScheduler: - superclass: Instance - events: [] - properties: - - SchedulerDutyCycle - - SchedulerRate - - ThreadPoolConfig - - ThreadPoolSize - Team: - superclass: Instance - events: - - PlayerAdded - - PlayerRemoved - properties: - - AutoAssignable - - AutoColorCharacters - - ChildOrder - - Score - - TeamColor - TeamCreateData: - superclass: Instance - events: [] - properties: [] - TeamCreatePublishService: - superclass: Instance - events: [] - properties: [] - TeamCreateService: - superclass: Instance - events: - - ToggleManageCollaborators - properties: [] - Teams: - superclass: Instance - events: [] - properties: [] - TeleportAsyncResult: - superclass: Instance - events: [] - properties: - - PrivateServerId - - ReservedServerAccessCode - TeleportOptions: - superclass: Instance - events: [] - properties: - - ReservedServerAccessCode - - ServerInstanceId - - ShouldReserveServer - TeleportService: - superclass: Instance - events: - - LocalPlayerArrivedFromTeleport - - MenuTeleportAttempt - - TeleportInitFailed - properties: - - CustomizedTeleportUI - TemporaryCageMeshProvider: - superclass: Instance - events: [] - properties: [] - TemporaryScriptService: - superclass: Instance - events: [] - properties: [] - Terrain: - superclass: BasePart - events: [] - properties: - - Decoration - - IsSmooth - - LastUsedModificationMethod - - MaterialColors - - MaxExtents - - ShorelinesUpgraded - - SmoothVoxelsUpgraded - - WaterColor - - WaterReflectance - - WaterTransparency - - WaterWaveSize - - WaterWaveSpeed - TerrainDetail: - superclass: Instance - events: [] - properties: - - ColorMap - - Face - - MaterialPattern - - MetalnessMap - - NormalMap - - RoughnessMap - - StudsPerTile - TerrainRegion: - superclass: Instance - events: [] - properties: - - IsSmooth - - SizeInCells - TestService: - superclass: Instance - events: - - ServerCollectConditionalResult - - ServerCollectResult - properties: - - AutoRuns - - Description - - ErrorCount - - ExecuteWithStudioRun - - Is30FpsThrottleEnabled - - IsPhysicsEnvironmentalThrottled - - IsSleepAllowed - - NumberOfPlayers - - SimulateSecondsLag - - TestCount - - Timeout - - WarnCount - TextBox: - superclass: GuiObject - events: - - FocusLost - - Focused - - ReturnPressedFromOnScreenKeyboard - properties: - - ClearTextOnFocus - - ContentText - - CursorPosition - - Font - - FontFace - - FontSize - - LineHeight - - ManualFocusRelease - - MaxVisibleGraphemes - - MultiLine - - OverlayNativeInput - - PlaceholderColor3 - - PlaceholderText - - ReturnKeyType - - RichText - - SelectionStart - - ShowNativeInput - - Text - - TextBounds - - TextColor - - TextColor3 - - TextEditable - - TextFits - - TextInputType - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextBoxService: - superclass: Instance - events: [] - properties: [] - TextButton: - superclass: GuiButton - events: [] - properties: - - ContentText - - Font - - FontFace - - FontSize - - LineHeight - - LocalizedText - - MaxVisibleGraphemes - - RichText - - Text - - TextBounds - - TextColor - - TextColor3 - - TextFits - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextChannel: - superclass: Instance - events: - - MessageReceived - properties: [] - TextChatCommand: - superclass: Instance - events: - - Triggered - properties: - - Enabled - - PrimaryAlias - - SecondaryAlias - TextChatConfigurations: - superclass: Instance - events: [] - properties: [] - TextChatMessage: - superclass: Instance - events: [] - properties: - - MessageId - - Metadata - - PrefixText - - Status - - Text - - TextChannel - - TextSource - - Timestamp - TextChatMessageProperties: - superclass: Instance - events: [] - properties: - - PrefixText - - Text - TextChatService: - superclass: Instance - events: - - MessageReceived - - SendingMessage - properties: - - ChatVersion - - CreateDefaultCommands - - CreateDefaultTextChannels - TextFilterResult: - superclass: Instance - events: [] - properties: [] - TextLabel: - superclass: GuiLabel - events: [] - properties: - - ContentText - - Font - - FontFace - - FontSize - - LineHeight - - LocalizedText - - MaxVisibleGraphemes - - RichText - - Text - - TextBounds - - TextColor - - TextColor3 - - TextFits - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextService: - superclass: Instance - events: [] - properties: [] - TextSource: - superclass: Instance - events: [] - properties: - - CanSend - - UserId - Texture: - superclass: Decal - events: [] - properties: - - OffsetStudsU - - OffsetStudsV - - StudsPerTileU - - StudsPerTileV - TextureGuiExperimental: - superclass: LayerCollector - events: [] - properties: - - Size - - TemporaryId - ThirdPartyUserService: - superclass: Instance - events: - - ActiveGamepadAdded - - ActiveGamepadRemoved - - ActiveUserSignedOut - properties: [] - ThreadState: - superclass: Instance - events: [] - properties: - - FrameCount - - Populated - - ThreadId - - ThreadName - TimerService: - superclass: Instance - events: [] - properties: [] - ToastNotificationService: - superclass: Instance - events: [] - properties: [] - Tool: - superclass: BackpackItem - events: - - Activated - - Deactivated - - Equipped - - Unequipped - properties: - - CanBeDropped - - Enabled - - Grip - - GripForward - - GripPos - - GripRight - - GripUp - - ManualActivationOnly - - RequiresHandle - - ToolTip - Torque: - superclass: Constraint - events: [] - properties: - - RelativeTo - - Torque - TorsionSpringConstraint: - superclass: Constraint - events: [] - properties: - - Coils - - CurrentAngle - - Damping - - LimitEnabled - - LimitsEnabled - - MaxAngle - - MaxTorque - - Radius - - Restitution - - Stiffness - TotalCountTimeIntervalItem: - superclass: StatsItem - events: [] - properties: [] - TouchInputService: - superclass: Instance - events: [] - properties: [] - TouchTransmitter: - superclass: Instance - events: [] - properties: [] - TracerService: - superclass: Instance - events: [] - properties: [] - TrackerLodController: - superclass: Instance - events: - - UpdateState - properties: - - AudioMode - - VideoExtrapolationMode - - VideoLodMode - - VideoMode - TrackerStreamAnimation: - superclass: Instance - events: [] - properties: [] - Trail: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - Brightness - - Color - - Enabled - - FaceCamera - - Lifetime - - LightEmission - - LightInfluence - - MaxLength - - MinLength - - Texture - - TextureLength - - TextureMode - - Transparency - - WidthScale - Translator: - superclass: Instance - events: [] - properties: - - LocaleId - TremoloSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Duty - - Frequency - TriangleMeshPart: - superclass: BasePart - events: [] - properties: - - CollisionFidelity - - MeshSize - TrussPart: - superclass: BasePart - events: [] - properties: - - Style - Tween: - superclass: TweenBase - events: [] - properties: - - Instance - - TweenInfo - TweenBase: - superclass: Instance - events: - - Completed - properties: - - PlaybackState - TweenService: - superclass: Instance - events: [] - properties: [] - UGCValidationService: - superclass: Instance - events: [] - properties: [] - UIAspectRatioConstraint: - superclass: UIConstraint - events: [] - properties: - - AspectRatio - - AspectType - - DominantAxis - UIBase: - superclass: Instance - events: [] - properties: [] - UIComponent: - superclass: UIBase - events: [] - properties: [] - UIConstraint: - superclass: UIComponent - events: [] - properties: [] - UICorner: - superclass: UIComponent - events: [] - properties: - - CornerRadius - UIGradient: - superclass: UIComponent - events: [] - properties: - - Color - - Enabled - - Offset - - Rotation - - Transparency - UIGridLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - AbsoluteCellCount - - AbsoluteCellSize - - CellPadding - - CellSize - - FillDirectionMaxCells - - StartCorner - UIGridStyleLayout: - superclass: UILayout - events: [] - properties: - - AbsoluteContentSize - - FillDirection - - HorizontalAlignment - - SortOrder - - VerticalAlignment - UILayout: - superclass: UIComponent - events: [] - properties: [] - UIListLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - Padding - UIPadding: - superclass: UIComponent - events: [] - properties: - - PaddingBottom - - PaddingLeft - - PaddingRight - - PaddingTop - UIPageLayout: - superclass: UIGridStyleLayout - events: - - PageEnter - - PageLeave - - Stopped - properties: - - Animated - - Circular - - CurrentPage - - EasingDirection - - EasingStyle - - GamepadInputEnabled - - Padding - - ScrollWheelInputEnabled - - TouchInputEnabled - - TweenTime - UIScale: - superclass: UIComponent - events: [] - properties: - - Scale - UISizeConstraint: - superclass: UIConstraint - events: [] - properties: - - MaxSize - - MinSize - UIStroke: - superclass: UIComponent - events: [] - properties: - - ApplyStrokeMode - - Color - - Enabled - - LineJoinMode - - Thickness - - Transparency - UITableLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - FillEmptySpaceColumns - - FillEmptySpaceRows - - MajorAxis - - Padding - UITextSizeConstraint: - superclass: UIConstraint - events: [] - properties: - - MaxTextSize - - MinTextSize - UnionOperation: - superclass: PartOperation - events: [] - properties: [] - UniversalConstraint: - superclass: Constraint - events: [] - properties: - - LimitsEnabled - - MaxAngle - - Radius - - Restitution - UnvalidatedAssetService: - superclass: Instance - events: [] - properties: [] - UserGameSettings: - superclass: Instance - events: - - FullscreenChanged - - PerformanceStatsVisibleChanged - - StudioModeChanged - properties: - - AllTutorialsDisabled - - CameraMode - - CameraYInverted - - ChatVisible - - ComputerCameraMovementMode - - ComputerMovementMode - - ControlMode - - DefaultCameraID - - Fullscreen - - GamepadCameraSensitivity - - GraphicsQualityLevel - - HasEverUsedVR - - IsUsingCameraYInverted - - IsUsingGamepadCameraSensitivity - - MasterVolume - - MicroProfilerWebServerEnabled - - MicroProfilerWebServerIP - - MicroProfilerWebServerPort - - MouseSensitivity - - MouseSensitivityFirstPerson - - MouseSensitivityThirdPerson - - OnScreenProfilerEnabled - - OnboardingsCompleted - - PerformanceStatsVisible - - PlayerHeight - - RCCProfilerRecordFrameRate - - RCCProfilerRecordTimeFrame - - RotationType - - SavedQualityLevel - - StartMaximized - - StartScreenPosition - - StartScreenSize - - TouchCameraMovementMode - - TouchMovementMode - - UsedCoreGuiIsVisibleToggle - - UsedCustomGuiIsVisibleToggle - - UsedHideHudShortcut - - VREnabled - - VRPlayMode - - VRRotationIntensity - - VRSafetyBubbleMode - - VRSmoothRotationEnabled - - VignetteEnabled - UserInputService: - superclass: Instance - events: - - DeviceAccelerationChanged - - DeviceGravityChanged - - DeviceRotationChanged - - GamepadConnected - - GamepadDisconnected - - InputBegan - - InputChanged - - InputEnded - - JumpRequest - - LastInputTypeChanged - - PointerAction - - StatusBarTapped - - TextBoxFocusReleased - - TextBoxFocused - - TouchEnded - - TouchLongPress - - TouchMoved - - TouchPan - - TouchPinch - - TouchRotate - - TouchStarted - - TouchSwipe - - TouchTap - - TouchTapInWorld - - UserCFrameChanged - - WindowFocusReleased - - WindowFocused - properties: - - AccelerometerEnabled - - BottomBarSize - - GamepadEnabled - - GazeSelectionEnabled - - GyroscopeEnabled - - KeyboardEnabled - - LegacyInputEventsEnabled - - ModalEnabled - - MouseBehavior - - MouseDeltaSensitivity - - MouseEnabled - - MouseIcon - - MouseIconEnabled - - NavBarSize - - OnScreenKeyboardAnimationDuration - - OnScreenKeyboardPosition - - OnScreenKeyboardSize - - OnScreenKeyboardVisible - - OverrideMouseIconBehavior - - RightBarSize - - StatusBarSize - - TouchEnabled - - UserHeadCFrame - - VREnabled - UserService: - superclass: Instance - events: [] - properties: [] - UserSettings: - superclass: GenericSettings - events: [] - properties: [] - UserStorageService: - superclass: LocalStorageService - events: [] - properties: [] - VRService: - superclass: Instance - events: - - NavigationRequested - - TouchpadModeChanged - - UserCFrameChanged - - UserCFrameEnabled - properties: - - AutomaticScaling - - DidPointerHit - - FadeOutViewOnCollision - - GuiInputUserCFrame - - LaserDistance - - PointerHitCFrame - - VRDeviceAvailable - - VRDeviceName - - VREnabled - - VRSessionState - ValueBase: - superclass: Instance - events: [] - properties: [] - Vector3Curve: - superclass: Instance - events: [] - properties: [] - Vector3Value: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - VectorForce: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - Force - - RelativeTo - VehicleController: - superclass: Controller - events: [] - properties: [] - VehicleSeat: - superclass: BasePart - events: [] - properties: - - AreHingesDetected - - Disabled - - HeadsUpDisplay - - MaxSpeed - - Occupant - - Steer - - SteerFloat - - Throttle - - ThrottleFloat - - Torque - - TurnSpeed - VelocityMotor: - superclass: JointInstance - events: [] - properties: - - CurrentAngle - - DesiredAngle - - Hole - - MaxVelocity - VersionControlService: - superclass: Instance - events: [] - properties: - - ScriptCollabEnabled - VideoCaptureService: - superclass: Instance - events: - - DevicesChanged - - Error - - Started - - Stopped - properties: - - Active - - CameraID - VideoFrame: - superclass: GuiObject - events: - - DidLoop - - Ended - - Loaded - - Paused - - Played - properties: - - IsLoaded - - Looped - - Playing - - Resolution - - TimeLength - - TimePosition - - Video - - Volume - ViewportFrame: - superclass: GuiObject - events: [] - properties: - - Ambient - - CurrentCamera - - ImageColor3 - - ImageTransparency - - IsMirrored - - LightColor - - LightDirection - VirtualInputManager: - superclass: Instance - events: - - PlaybackCompleted - - RecordingCompleted - properties: - - AdditionalLuaState - VirtualUser: - superclass: Instance - events: [] - properties: [] - VisibilityCheckDispatcher: - superclass: Instance - events: [] - properties: [] - VisibilityService: - superclass: Instance - events: [] - properties: [] - Visit: - superclass: Instance - events: [] - properties: [] - VoiceChatInternal: - superclass: Instance - events: - - LocalPlayerModerated - - ParticipantsStateChanged - - PlayerMicActivitySignalChange - - StateChanged - properties: - - VoiceChatState - VoiceChatService: - superclass: Instance - events: [] - properties: - - EnableDefaultVoice - - VoiceChatEnabledForPlaceOnRcc - - VoiceChatEnabledForUniverseOnRcc - VoiceSource: - superclass: Instance - events: [] - properties: - - UserId - WedgePart: - superclass: FormFactorPart - events: [] - properties: [] - Weld: - superclass: JointInstance - events: [] - properties: [] - WeldConstraint: - superclass: Instance - events: [] - properties: - - Active - - Enabled - - Part0 - - Part1 - WireframeHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Scale - Workspace: - superclass: WorldRoot - events: - - PersistentLoaded - properties: - - AllowThirdPartySales - - ClientAnimatorThrottling - - CurrentCamera - - DistributedGameTime - - FallenPartsDestroyHeight - - FilteringEnabled - - GlobalWind - - Gravity - - HumanoidOnlySetCollisionsOnStateChange - - InterpolationThrottling - - MeshPartHeadsAndAccessories - - PhysicsSteppingMethod - - RejectCharacterDeletions - - ReplicateInstanceDestroySetting - - Retargeting - - SignalBehavior - - StreamOutBehavior - - StreamingEnabled - - StreamingIntegrityMode - - StreamingMinRadius - - StreamingTargetRadius - - Terrain - - TouchesUseCollisionGroups - WorldModel: - superclass: WorldRoot - events: [] - properties: [] - WorldRoot: - superclass: Model - events: [] - properties: [] - WrapLayer: - superclass: BaseWrap - events: [] - properties: - - AutoSkin - - BindOffset - - Color - - DebugMode - - Enabled - - Order - - Puffiness - - ReferenceMeshId - - ReferenceOrigin - - ReferenceOriginWorld - - ShrinkFactor - WrapTarget: - superclass: BaseWrap - events: [] - properties: - - Color - - DebugMode - - Stiffness diff --git a/Modules/Console/selene.toml b/Modules/Console/selene.toml deleted file mode 100644 index c1911be..0000000 --- a/Modules/Console/selene.toml +++ /dev/null @@ -1 +0,0 @@ -std = "roblox+testez" \ No newline at end of file diff --git a/Modules/Console/testez.yml b/Modules/Console/testez.yml deleted file mode 100644 index 5c1adda..0000000 --- a/Modules/Console/testez.yml +++ /dev/null @@ -1,53 +0,0 @@ ---- -globals: - FIXME: - args: - - required: false - type: string - FOCUS: - args: [] - SKIP: - args: [] - afterAll: - args: - - type: function - afterEach: - args: - - type: function - beforeAll: - args: - - type: function - beforeEach: - args: - - type: function - describe: - args: - - type: string - - type: function - describeFOCUS: - args: - - type: string - - type: function - describeSKIP: - args: - - type: string - - type: function - expect: - args: - - type: any - it: - args: - - type: string - - type: function - itFIXME: - args: - - type: string - - type: function - itFOCUS: - args: - - type: string - - type: function - itSKIP: - args: - - type: string - - type: function \ No newline at end of file diff --git a/Modules/Console/wally.toml b/Modules/Console/wally.toml deleted file mode 100644 index 2622f17..0000000 --- a/Modules/Console/wally.toml +++ /dev/null @@ -1,19 +0,0 @@ -[package] -name = "4x8matrix/console" -version = "2.1.2" -realm = "shared" -registry = "https://github.com/upliftgames/wally-index" -licence = "MIT" -authors = ["AsynchronousMatrix"] - -description = "A Roblox resource to simplify & enhance the Roblox Console/Output" - -exclude = ["**"] -include = ["Source", "Source/*", "default.project.json", "wally.toml"] - -[dev-dependencies] -TestEz = "roblox/testez@0.4.1" -EmoticonReporter = "4x8matrix/emoticon-reporter@1.0.0" - -[dependencies] -Signal = "sleitnick/signal@1.x.x" \ No newline at end of file diff --git a/Modules/EmoticonReporter/.vscode/settings.json b/Modules/EmoticonReporter/.vscode/settings.json deleted file mode 100644 index ce29214..0000000 --- a/Modules/EmoticonReporter/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "luau-lsp.sourcemap.rojoProjectFile": "development.project.json" -} \ No newline at end of file diff --git a/Modules/EmoticonReporter/Source/init.luau b/Modules/EmoticonReporter/Source/init.luau deleted file mode 100644 index c9b6404..0000000 --- a/Modules/EmoticonReporter/Source/init.luau +++ /dev/null @@ -1,361 +0,0 @@ -local ReplicatedStorage = game:GetService("ReplicatedStorage") -local TestService = game:GetService("TestService") - -local TestEz = require(ReplicatedStorage.DevPackages.TestEz) - -local TEST_STATUS_SUCCESS = TestEz.TestEnum.TestStatus.Success -local TEST_STATUS_FAILURE = TestEz.TestEnum.TestStatus.Failure -local TEST_STATUS_SKIPPED = TestEz.TestEnum.TestStatus.Skipped -local TEST_STATUS_UNKNOWN = newproxy(false) - -local PROTOTYPE_STATUS_IDLE = "idle" -local PROTOTYPE_STATUS_DONE = "finished" - -local INDENTATION = " " - -local TEST_STATUS_EMOTES = table.freeze({ - [TEST_STATUS_SUCCESS] = "🟢", - [TEST_STATUS_FAILURE] = "🔴", - [TEST_STATUS_SKIPPED] = "🟡", - [TEST_STATUS_UNKNOWN] = "🟣", -}) - -local TEST_STATUS_PRIORITY = table.freeze({ - [TEST_STATUS_SUCCESS] = 1, - [TEST_STATUS_FAILURE] = 2, - [TEST_STATUS_SKIPPED] = 3, - [TEST_STATUS_UNKNOWN] = 4, -}) - ---[=[ - @class Emoticon Reporter - - A simple alternative to the default Roblox `TestEz` reporter, this Reporter attempts to bundle in a few quality of life things to help make testing your code easier. - - Emoji definitions: - - 🟣 - *Unknown Test Status* - - 🟢 - *Successful Test Status* - - 🔴 - *Failed Test Status* - - 🟡 - *Skipped Test Status* -]=] -local EmoticonReporter = {} - -EmoticonReporter.Interface = {} -EmoticonReporter.Prototype = {} - ---[=[ - @method ToString - @within Emoticon Reporter - - @return string - - Returns a prettified string version of the state table. - - ```lua - local Reporter = EmoticonReporter.new() - - print(tostring(Reporter)) -- EmoticonReporter - ``` -]=] -function EmoticonReporter.Prototype:ToString() - return `EmoticonReporter` -end - ---[=[ - @method StripErrorMessage - @within Emoticon Reporter - - @param stacktrace string - - @return string - - Strips away common `testez` lines that can often obscure the stack trace -]=] -function EmoticonReporter.Prototype:StripErrorMessage(stacktrace) - if not self._truncateErrors then - return stacktrace - end - - local messageSplitArray = string.split(stacktrace, "\n") - local testEzMessageFlag = false - local newMessageObject = {} - - for _, line in messageSplitArray do - if not string.find(line, ".testez.") then - if testEzMessageFlag then - testEzMessageFlag = false - end - - table.insert(newMessageObject, line) - - continue - end - - local testEzModule = string.match(line, ".(%a+):(%d+)") - - if testEzMessageFlag == testEzModule then - continue - end - - testEzMessageFlag = testEzModule - - table.insert(newMessageObject, `*.TestEz.{testEzModule}: truncated`) - end - - return table.concat(newMessageObject, "\n") -end - ---[=[ - @method StripErrors - @within Emoticon Reporter - - @param errorArray { string } - - @return { string } - - QoL call that loops through an array and calls `:StripErrorMessage` -]=] -function EmoticonReporter.Prototype:StripErrors(errorArray) - for index, stacktrace in errorArray do - errorArray[index] = self:StripErrorMessage(stacktrace) - end - - return errorArray -end - ---[=[ - @method SerialiseNode - @within Emoticon Reporter - - @param testEzNode { ... } - - @return string - - Primary method used to parse and compute testez result nodes, this function is recursive and will parse children of the passed in testez node. -]=] -function EmoticonReporter.Prototype:SerialiseNode(nodeObject) - local serialisedNode = "" - - self._scope += 1 - - serialisedNode ..= ` {self._timestamp} ` - serialisedNode ..= `{string.rep(INDENTATION, self._scope)}` - - if self._scope >= self._maxScope then - self._scope -= 1 - - serialisedNode ..= `[⚠️]: Maximum node depth reached!` - - return serialisedNode - end - - serialisedNode ..= `[{TEST_STATUS_EMOTES[nodeObject.status] or TEST_STATUS_EMOTES[TEST_STATUS_UNKNOWN]}]:` - serialisedNode ..= ` "{nodeObject.planNode.phrase}"` - - for _, nodeChild in nodeObject.children do - local resource = self:SerialiseNode(nodeChild) - - if not resource then - continue - end - - serialisedNode ..= `\n{resource}` - end - - self._scope -= 1 - - return serialisedNode -end - ---[=[ - @method SortDescendants - @within Emoticon Reporter - - @param children { testEzNode } - - @return { testEzNode } - - Sorts the TestEz nodes so that we show any failed tests first instead of having to scroll to find what tests failed. -]=] -function EmoticonReporter.Prototype:SortDescendants(children) - if not self._sorted or (self._skippedCount == 0 and self._failureCount == 0) then - return children - end - - table.sort(children, function(node0, node1) - return TEST_STATUS_PRIORITY[node0.status] < TEST_STATUS_PRIORITY[node1.status] - end) - - for _, nodeObject in children do - nodeObject.children = self:SortDescendants(nodeObject.children) - end - - return children -end - ---[=[ - @method SerialiseHeadNode - @within Emoticon Reporter - - @param testEzNode { ... } - - @return string - - Primary method used to parse the testez head node, this function will then call `:SerialiseNode` to parse child nodes. -]=] -function EmoticonReporter.Prototype:SerialiseHeadNode(nodeObject) - local source = {} - - for _, nodeChild in self:SortDescendants(nodeObject.children) do - local resource = self:SerialiseNode(nodeChild) - - if not resource then - continue - end - - table.insert(source, resource) - end - - return source -end - ---[=[ - @method ParseReport - @within Emoticon Reporter - - @param testEzNode { ... } - - Called by the TestEz library, used to parse test results. -]=] -function EmoticonReporter.Prototype:ParseReport(headNode) - self._successCount = headNode.successCount - self._skippedCount = headNode.skippedCount - self._failureCount = headNode.failureCount - - self._timestamp = os.date("%H.%M:%S.000") - - self._errors = self:StripErrors(headNode.errors) - self._source = self:SerialiseHeadNode(headNode) - - self._status = PROTOTYPE_STATUS_DONE -end - ---[=[ - @method Print - @within Emoticon Reporter - - Display the results of a test in the output, the Reporter won't display these results when TestEz reports the finished test, instead the developer will need to call this method to see the status of the test. -]=] -function EmoticonReporter.Prototype:Print() - if #self._source == 0 then - print("TestEz Results: Unable to locate any '*.spec.lua' modules!") - - return - end - - print(`TestEz Results:\n{table.concat(self._source, `\n\n`)}\n`) - - for _, message in self._errors do - local messageSplit = string.split(message, "\n") - - local errorMessage = table.remove(messageSplit, 1) - local stackMessage = "" - - table.insert(messageSplit, 1, "Stack Begin") - table.insert(messageSplit, "Stack End") - - for index, value in messageSplit do - if value == "\n" or value == "" then - continue - end - - if index ~= 1 then - stackMessage ..= `\n {self._timestamp} TestService: {value}` - else - stackMessage ..= value - end - end - - TestService:Error(errorMessage) - TestService:Message(stackMessage) - - print("") - end -end - ---[=[ - @method SetErrorsTruncated - @within Emoticon Reporter - - @param state boolean - - Disable/Enable the ability for EmoticonReporter to strip away TestEz error messages -]=] -function EmoticonReporter.Prototype:SetErrorsTruncated(state) - self._truncateErrors = state -end - ---[=[ - @method SetMaxScope - @within Emoticon Reporter - - @param value number - - Set the max scope for the Reporter to show, anything past the `value` passed in will be marked off as "Maximum node depth reached" -]=] -function EmoticonReporter.Prototype:SetMaxScope(value) - self._maxScope = value -end - ---[=[ - @method SetIsSorted - @within Emoticon Reporter - - @param value number - - Enable/Disable reporter sorting for the TestEz output. -]=] -function EmoticonReporter.Prototype:SetIsSorted(state) - self._sorted = state -end - ---[=[ - @function new - @within Emoticon Reporter - - Construct a new `EmoticonReporter` object - - ```lua - local EmoticonReporter = require(ReplicatedStorage.DevPackages.EmoticonReporter) - local Reporter = EmoticonReporter.new() - - TestEz.TestBootstrap:run({ - ServerScriptService.Modules, - }, Reporter) - - Reporter:Print() - ``` -]=] -function EmoticonReporter.Interface.new() - local self = setmetatable({ - _status = PROTOTYPE_STATUS_IDLE, - _isFirstNode = true, - _truncateErrors = true, - _scope = -1, - _maxScope = 999, - _sorted = true, - }, { - __index = EmoticonReporter.Prototype, - __tostring = function(object) - return object:ToString() - end, - }) - - self.report = function(...) - self:ParseReport(...) - end - - return self -end - -return EmoticonReporter.Interface diff --git a/Modules/EmoticonReporter/aftman.toml b/Modules/EmoticonReporter/aftman.toml deleted file mode 100644 index 349f6b9..0000000 --- a/Modules/EmoticonReporter/aftman.toml +++ /dev/null @@ -1,9 +0,0 @@ -# This file lists tools managed by Aftman, a cross-platform toolchain manager. -# For more information, see https://github.com/LPGhatguy/aftman - -# To add a new tool, add an entry to this table. - -[tools] -rojo = "rojo-rbx/rojo@7.3.0" -selene = "Kampfkarren/selene@0.25.0" -wally = "UpliftGames/wally@0.3.2" \ No newline at end of file diff --git a/Modules/EmoticonReporter/default.project.json b/Modules/EmoticonReporter/default.project.json deleted file mode 100644 index 394494b..0000000 --- a/Modules/EmoticonReporter/default.project.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "name": "EmoticonReporter", - "tree": { - "$path": "Source" - } -} \ No newline at end of file diff --git a/Modules/EmoticonReporter/development.project.json b/Modules/EmoticonReporter/development.project.json deleted file mode 100644 index 9616f41..0000000 --- a/Modules/EmoticonReporter/development.project.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "name": "emoticon-reporter", - "tree": { - "$className": "DataModel", - - "Players": { - "$className": "Players", - "$properties": { - "CharacterAutoLoads": false - } - }, - - "ReplicatedStorage": { - "$className": "ReplicatedStorage", - "$ignoreUnknownInstances": true, - - "Packages": { - "$className": "Folder", - "$path": "Packages", - - "EmoticonReporter": { - "$path": "Source" - } - }, - - "DevPackages": { - "$className": "Folder", - "$path": "DevPackages" - } - }, - - "ServerScriptService": { - "$className": "ServerScriptService", - "$ignoreUnknownInstances": true, - "$path": "Tests" - } - } -} \ No newline at end of file diff --git a/Modules/EmoticonReporter/selene.toml b/Modules/EmoticonReporter/selene.toml deleted file mode 100644 index 1f1e170..0000000 --- a/Modules/EmoticonReporter/selene.toml +++ /dev/null @@ -1 +0,0 @@ -std = "roblox" \ No newline at end of file diff --git a/Modules/EmoticonReporter/wally.toml b/Modules/EmoticonReporter/wally.toml deleted file mode 100644 index 115bbd5..0000000 --- a/Modules/EmoticonReporter/wally.toml +++ /dev/null @@ -1,12 +0,0 @@ -[package] -name = "4x8matrix/emoticon-reporter" -version = "1.0.0" -realm = "shared" -registry = "https://github.com/upliftgames/wally-index" -licence = "MIT" -authors = ["AsynchronousMatrix"] - -description = "A simple TestEz reporter that brings in QoL fixes." - -exclude = ["**"] -include = ["Source", "Source/*", "default.project.json"] \ No newline at end of file diff --git a/Modules/Iter/Source/init.luau b/Modules/Iter/Source/init.luau deleted file mode 100644 index b80540b..0000000 --- a/Modules/Iter/Source/init.luau +++ /dev/null @@ -1,19 +0,0 @@ ---[[ - @class MyWifeLeftMe - - Summary -]] - -local task = require("@lune/task") - -local Iter = {} - - -Iter.Interface = {} -Iter.Prototype = {} - -function Iter.Prototype.From(tbl: {[K]: V}) - -end - -return Iter.Interface diff --git a/Modules/Iter/Source/init.spec.luau b/Modules/Iter/Source/init.spec.luau deleted file mode 100644 index 65d7220..0000000 --- a/Modules/Iter/Source/init.spec.luau +++ /dev/null @@ -1,3 +0,0 @@ -return function() - -end \ No newline at end of file diff --git a/Modules/Iter/Tests/Runtime.server.luau b/Modules/Iter/Tests/Runtime.server.luau deleted file mode 100644 index 16785c6..0000000 --- a/Modules/Iter/Tests/Runtime.server.luau +++ /dev/null @@ -1,5 +0,0 @@ -local EXECUTE_PROJECT_TESTEZ_TESTS = true - -if EXECUTE_PROJECT_TESTEZ_TESTS then - return -end \ No newline at end of file diff --git a/Modules/Iter/aftman.toml b/Modules/Iter/aftman.toml deleted file mode 100644 index 349f6b9..0000000 --- a/Modules/Iter/aftman.toml +++ /dev/null @@ -1,9 +0,0 @@ -# This file lists tools managed by Aftman, a cross-platform toolchain manager. -# For more information, see https://github.com/LPGhatguy/aftman - -# To add a new tool, add an entry to this table. - -[tools] -rojo = "rojo-rbx/rojo@7.3.0" -selene = "Kampfkarren/selene@0.25.0" -wally = "UpliftGames/wally@0.3.2" \ No newline at end of file diff --git a/Modules/Iter/default.project.json b/Modules/Iter/default.project.json deleted file mode 100644 index 0ce237c..0000000 --- a/Modules/Iter/default.project.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "name": "project", - "tree": { - "$path": "Source" - } -} \ No newline at end of file diff --git a/Modules/Iter/development.project.json b/Modules/Iter/development.project.json deleted file mode 100644 index 13da4ca..0000000 --- a/Modules/Iter/development.project.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "name": "project", - "tree": { - "$className": "DataModel", - - "Players": { - "$className": "Players", - "$properties": { - "CharacterAutoLoads": false - } - }, - - "ReplicatedStorage": { - "$className": "ReplicatedStorage", - "$ignoreUnknownInstances": true, - - "Packages": { - "$className": "Folder", - "$path": "Packages", - - "Project": { - "$path": "Source" - } - }, - - "DevPackages": { - "$className": "Folder", - "$path": "DevPackages" - } - }, - - "ServerScriptService": { - "$className": "ServerScriptService", - "$ignoreUnknownInstances": true, - "$path": "Tests" - } - } -} \ No newline at end of file diff --git a/Modules/Iter/roblox.yml b/Modules/Iter/roblox.yml deleted file mode 100644 index e4089d3..0000000 --- a/Modules/Iter/roblox.yml +++ /dev/null @@ -1,16959 +0,0 @@ -# This file was @generated by generate-roblox-std at 2023-04-11 16:38:39.388332415 +01:00 -base: luau -name: roblox -globals: - Axes.new: - args: - - type: '...' - must_use: true - BrickColor.Black: - args: [] - must_use: true - BrickColor.Blue: - args: [] - must_use: true - BrickColor.DarkGray: - args: [] - must_use: true - BrickColor.Gray: - args: [] - must_use: true - BrickColor.Green: - args: [] - must_use: true - BrickColor.Red: - args: [] - must_use: true - BrickColor.White: - args: [] - must_use: true - BrickColor.Yellow: - args: [] - must_use: true - BrickColor.new: - args: - - type: any - - required: false - type: number - - required: false - type: number - must_use: true - BrickColor.palette: - args: - - type: number - must_use: true - BrickColor.random: - args: [] - must_use: true - CFrame.Angles: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - CFrame.fromAxisAngle: - args: - - type: - display: Vector3 - - type: number - must_use: true - CFrame.fromEulerAngles: - args: - - type: number - - type: number - - type: number - - required: false - type: - display: RotationOrder - must_use: true - CFrame.fromEulerAnglesXYZ: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.fromEulerAnglesYXZ: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.fromMatrix: - args: - - type: - display: Vector3 - - type: - display: Vector3 - - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - CFrame.fromOrientation: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.identity: - property: read-only - CFrame.lookAt: - args: - - type: - display: Vector3 - - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - CFrame.new: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - CatalogSearchParams.new: - args: [] - must_use: true - Color3.fromHSV: - args: - - type: number - - type: number - - type: number - must_use: true - Color3.fromHex: - args: - - type: string - must_use: true - Color3.fromRGB: - args: - - type: number - - type: number - - type: number - must_use: true - Color3.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Color3.toHSV: - args: - - type: - display: Color3 - must_use: true - ColorSequence.new: - args: - - type: any - - required: false - type: - display: Color3 - must_use: true - ColorSequenceKeypoint.new: - args: - - type: number - - type: - display: Color3 - must_use: true - DateTime.fromIsoDate: - args: - - type: string - must_use: true - DateTime.fromLocalTime: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - DateTime.fromUniversalTime: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - DateTime.fromUnixTimestamp: - args: - - type: number - must_use: true - DateTime.fromUnixTimestampMillis: - args: - - type: number - must_use: true - DateTime.now: - args: [] - must_use: true - DebuggerManager: - args: [] - must_use: true - DockWidgetPluginGuiInfo.new: - args: - - required: false - type: - display: InitialDockState - - required: false - type: bool - - required: false - type: bool - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Enum.AccessoryType.Back: - struct: EnumItem - Enum.AccessoryType.DressSkirt: - struct: EnumItem - Enum.AccessoryType.Eyebrow: - struct: EnumItem - Enum.AccessoryType.Eyelash: - struct: EnumItem - Enum.AccessoryType.Face: - struct: EnumItem - Enum.AccessoryType.Front: - struct: EnumItem - Enum.AccessoryType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AccessoryType.Hair: - struct: EnumItem - Enum.AccessoryType.Hat: - struct: EnumItem - Enum.AccessoryType.Jacket: - struct: EnumItem - Enum.AccessoryType.LeftShoe: - struct: EnumItem - Enum.AccessoryType.Neck: - struct: EnumItem - Enum.AccessoryType.Pants: - struct: EnumItem - Enum.AccessoryType.RightShoe: - struct: EnumItem - Enum.AccessoryType.Shirt: - struct: EnumItem - Enum.AccessoryType.Shorts: - struct: EnumItem - Enum.AccessoryType.Shoulder: - struct: EnumItem - Enum.AccessoryType.Sweater: - struct: EnumItem - Enum.AccessoryType.TShirt: - struct: EnumItem - Enum.AccessoryType.TeeShirt: - struct: EnumItem - deprecated: - message: Enum.AccessoryType.TeeShirt was replaced with Enum.AccessoryType.TShirt - replace: - - Enum.AccessoryType.TShirt - Enum.AccessoryType.Unknown: - struct: EnumItem - Enum.AccessoryType.Waist: - struct: EnumItem - Enum.ActionType.Draw: - struct: EnumItem - Enum.ActionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActionType.Lose: - struct: EnumItem - Enum.ActionType.Nothing: - struct: EnumItem - Enum.ActionType.Pause: - struct: EnumItem - Enum.ActionType.Win: - struct: EnumItem - Enum.ActuatorRelativeTo.Attachment0: - struct: EnumItem - Enum.ActuatorRelativeTo.Attachment1: - struct: EnumItem - Enum.ActuatorRelativeTo.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActuatorRelativeTo.World: - struct: EnumItem - Enum.ActuatorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActuatorType.Motor: - struct: EnumItem - Enum.ActuatorType.None: - struct: EnumItem - Enum.ActuatorType.Servo: - struct: EnumItem - Enum.AdPortalStatus.Active: - struct: EnumItem - Enum.AdPortalStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdPortalStatus.Inactive: - struct: EnumItem - Enum.AdPortalStatus.Invalid: - struct: EnumItem - Enum.AdPortalType.Forward: - struct: EnumItem - Enum.AdPortalType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdPortalType.Return: - struct: EnumItem - Enum.AdShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdShape.HorizontalRectangle: - struct: EnumItem - Enum.AdTeleportMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdTeleportMethod.InGameMenuBackButton: - struct: EnumItem - Enum.AdTeleportMethod.PortalForward: - struct: EnumItem - Enum.AdTeleportMethod.PortalReturn: - struct: EnumItem - Enum.AdTeleportMethod.UIBackButton: - struct: EnumItem - Enum.AdTeleportMethod.Undefined: - struct: EnumItem - Enum.AdUnitStatus.Active: - struct: EnumItem - Enum.AdUnitStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdUnitStatus.Inactive: - struct: EnumItem - Enum.AdornCullingMode.Automatic: - struct: EnumItem - Enum.AdornCullingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdornCullingMode.Never: - struct: EnumItem - Enum.AlignType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AlignType.Parallel: - struct: EnumItem - Enum.AlignType.Perpendicular: - struct: EnumItem - Enum.AlphaMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AlphaMode.Overlay: - struct: EnumItem - Enum.AlphaMode.Transparency: - struct: EnumItem - Enum.AnalyticsEconomyAction.Acquire: - struct: EnumItem - Enum.AnalyticsEconomyAction.Default: - struct: EnumItem - Enum.AnalyticsEconomyAction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnalyticsEconomyAction.Spend: - struct: EnumItem - Enum.AnalyticsLogLevel.Debug: - struct: EnumItem - Enum.AnalyticsLogLevel.Error: - struct: EnumItem - Enum.AnalyticsLogLevel.Fatal: - struct: EnumItem - Enum.AnalyticsLogLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnalyticsLogLevel.Information: - struct: EnumItem - Enum.AnalyticsLogLevel.Trace: - struct: EnumItem - Enum.AnalyticsLogLevel.Warning: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Abandon: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Begin: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Complete: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Default: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Fail: - struct: EnumItem - Enum.AnalyticsProgressionStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnimationPriority.Action: - struct: EnumItem - Enum.AnimationPriority.Action2: - struct: EnumItem - Enum.AnimationPriority.Action3: - struct: EnumItem - Enum.AnimationPriority.Action4: - struct: EnumItem - Enum.AnimationPriority.Core: - struct: EnumItem - Enum.AnimationPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnimationPriority.Idle: - struct: EnumItem - Enum.AnimationPriority.Movement: - struct: EnumItem - Enum.AnimatorRetargetingMode.Default: - struct: EnumItem - Enum.AnimatorRetargetingMode.Disabled: - struct: EnumItem - Enum.AnimatorRetargetingMode.Enabled: - struct: EnumItem - Enum.AnimatorRetargetingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellActionType.AvatarEditorPageLoaded: - struct: EnumItem - Enum.AppShellActionType.GamePageLoaded: - struct: EnumItem - Enum.AppShellActionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellActionType.HomePageLoaded: - struct: EnumItem - Enum.AppShellActionType.None: - struct: EnumItem - Enum.AppShellActionType.OpenApp: - struct: EnumItem - Enum.AppShellActionType.ReadConversation: - struct: EnumItem - Enum.AppShellActionType.TapAvatarTab: - struct: EnumItem - Enum.AppShellActionType.TapChatTab: - struct: EnumItem - Enum.AppShellActionType.TapConversationEntry: - struct: EnumItem - Enum.AppShellActionType.TapGamePageTab: - struct: EnumItem - Enum.AppShellActionType.TapHomePageTab: - struct: EnumItem - Enum.AppShellFeature.AvatarEditor: - struct: EnumItem - Enum.AppShellFeature.Chat: - struct: EnumItem - Enum.AppShellFeature.GamePage: - struct: EnumItem - Enum.AppShellFeature.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellFeature.HomePage: - struct: EnumItem - Enum.AppShellFeature.Landing: - struct: EnumItem - Enum.AppShellFeature.More: - struct: EnumItem - Enum.AppShellFeature.None: - struct: EnumItem - Enum.AppUpdateStatus.Available: - struct: EnumItem - Enum.AppUpdateStatus.Failed: - struct: EnumItem - Enum.AppUpdateStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppUpdateStatus.NotAvailable: - struct: EnumItem - Enum.AppUpdateStatus.NotSupported: - struct: EnumItem - Enum.AppUpdateStatus.Unknown: - struct: EnumItem - Enum.ApplyStrokeMode.Border: - struct: EnumItem - Enum.ApplyStrokeMode.Contextual: - struct: EnumItem - Enum.ApplyStrokeMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AspectType.FitWithinMaxSize: - struct: EnumItem - Enum.AspectType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AspectType.ScaleWithParentSize: - struct: EnumItem - Enum.AssetFetchStatus.Failure: - struct: EnumItem - Enum.AssetFetchStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AssetFetchStatus.Loading: - struct: EnumItem - Enum.AssetFetchStatus.None: - struct: EnumItem - Enum.AssetFetchStatus.Success: - struct: EnumItem - Enum.AssetFetchStatus.TimedOut: - struct: EnumItem - Enum.AssetType.Animation: - struct: EnumItem - Enum.AssetType.Audio: - struct: EnumItem - Enum.AssetType.BackAccessory: - struct: EnumItem - Enum.AssetType.Badge: - struct: EnumItem - Enum.AssetType.ClimbAnimation: - struct: EnumItem - Enum.AssetType.DeathAnimation: - struct: EnumItem - Enum.AssetType.Decal: - struct: EnumItem - Enum.AssetType.DressSkirtAccessory: - struct: EnumItem - Enum.AssetType.DynamicHead: - struct: EnumItem - Enum.AssetType.EarAccessory: - struct: EnumItem - Enum.AssetType.EmoteAnimation: - struct: EnumItem - Enum.AssetType.EyeAccessory: - struct: EnumItem - Enum.AssetType.EyebrowAccessory: - struct: EnumItem - Enum.AssetType.EyelashAccessory: - struct: EnumItem - Enum.AssetType.Face: - struct: EnumItem - Enum.AssetType.FaceAccessory: - struct: EnumItem - Enum.AssetType.FallAnimation: - struct: EnumItem - Enum.AssetType.FontFamily: - struct: EnumItem - Enum.AssetType.FrontAccessory: - struct: EnumItem - Enum.AssetType.GamePass: - struct: EnumItem - Enum.AssetType.Gear: - struct: EnumItem - Enum.AssetType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AssetType.HairAccessory: - struct: EnumItem - Enum.AssetType.Hat: - struct: EnumItem - Enum.AssetType.Head: - struct: EnumItem - Enum.AssetType.IdleAnimation: - struct: EnumItem - Enum.AssetType.Image: - struct: EnumItem - Enum.AssetType.JacketAccessory: - struct: EnumItem - Enum.AssetType.JumpAnimation: - struct: EnumItem - Enum.AssetType.LeftArm: - struct: EnumItem - Enum.AssetType.LeftLeg: - struct: EnumItem - Enum.AssetType.LeftShoeAccessory: - struct: EnumItem - Enum.AssetType.Lua: - struct: EnumItem - Enum.AssetType.Mesh: - struct: EnumItem - Enum.AssetType.MeshPart: - struct: EnumItem - Enum.AssetType.Model: - struct: EnumItem - Enum.AssetType.MoodAnimation: - struct: EnumItem - Enum.AssetType.NeckAccessory: - struct: EnumItem - Enum.AssetType.Package: - struct: EnumItem - Enum.AssetType.Pants: - struct: EnumItem - Enum.AssetType.PantsAccessory: - struct: EnumItem - Enum.AssetType.Place: - struct: EnumItem - Enum.AssetType.Plugin: - struct: EnumItem - Enum.AssetType.PoseAnimation: - struct: EnumItem - Enum.AssetType.RightArm: - struct: EnumItem - Enum.AssetType.RightLeg: - struct: EnumItem - Enum.AssetType.RightShoeAccessory: - struct: EnumItem - Enum.AssetType.RunAnimation: - struct: EnumItem - Enum.AssetType.Shirt: - struct: EnumItem - Enum.AssetType.ShirtAccessory: - struct: EnumItem - Enum.AssetType.ShortsAccessory: - struct: EnumItem - Enum.AssetType.ShoulderAccessory: - struct: EnumItem - Enum.AssetType.SweaterAccessory: - struct: EnumItem - Enum.AssetType.SwimAnimation: - struct: EnumItem - Enum.AssetType.TShirt: - struct: EnumItem - Enum.AssetType.TShirtAccessory: - struct: EnumItem - Enum.AssetType.TeeShirt: - struct: EnumItem - deprecated: - message: Enum.AssetType.TeeShirt was replaced with Enum.AssetType.TShirt - replace: - - Enum.AssetType.TShirt - Enum.AssetType.TeeShirtAccessory: - struct: EnumItem - deprecated: - message: Enum.AssetType.TeeShirtAccessory was replaced with Enum.AssetType.TShirtAccessory - replace: - - Enum.AssetType.TShirtAccessory - Enum.AssetType.Torso: - struct: EnumItem - Enum.AssetType.Video: - struct: EnumItem - Enum.AssetType.WaistAccessory: - struct: EnumItem - Enum.AssetType.WalkAnimation: - struct: EnumItem - Enum.AssetTypeVerification.Always: - struct: EnumItem - Enum.AssetTypeVerification.ClientOnly: - struct: EnumItem - Enum.AssetTypeVerification.Default: - struct: EnumItem - Enum.AssetTypeVerification.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AudioSubType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AudioSubType.Music: - struct: EnumItem - Enum.AudioSubType.SoundEffect: - struct: EnumItem - Enum.AutoIndentRule.Absolute: - struct: EnumItem - Enum.AutoIndentRule.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AutoIndentRule.Off: - struct: EnumItem - Enum.AutoIndentRule.Relative: - struct: EnumItem - Enum.AutomaticSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AutomaticSize.None: - struct: EnumItem - Enum.AutomaticSize.X: - struct: EnumItem - Enum.AutomaticSize.XY: - struct: EnumItem - Enum.AutomaticSize.Y: - struct: EnumItem - Enum.AvatarAssetType.BackAccessory: - struct: EnumItem - Enum.AvatarAssetType.ClimbAnimation: - struct: EnumItem - Enum.AvatarAssetType.DressSkirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.DynamicHead: - struct: EnumItem - Enum.AvatarAssetType.EmoteAnimation: - struct: EnumItem - Enum.AvatarAssetType.EyebrowAccessory: - struct: EnumItem - Enum.AvatarAssetType.EyelashAccessory: - struct: EnumItem - Enum.AvatarAssetType.Face: - struct: EnumItem - Enum.AvatarAssetType.FaceAccessory: - struct: EnumItem - Enum.AvatarAssetType.FallAnimation: - struct: EnumItem - Enum.AvatarAssetType.FrontAccessory: - struct: EnumItem - Enum.AvatarAssetType.Gear: - struct: EnumItem - Enum.AvatarAssetType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarAssetType.HairAccessory: - struct: EnumItem - Enum.AvatarAssetType.Hat: - struct: EnumItem - Enum.AvatarAssetType.Head: - struct: EnumItem - Enum.AvatarAssetType.IdleAnimation: - struct: EnumItem - Enum.AvatarAssetType.JacketAccessory: - struct: EnumItem - Enum.AvatarAssetType.JumpAnimation: - struct: EnumItem - Enum.AvatarAssetType.LeftArm: - struct: EnumItem - Enum.AvatarAssetType.LeftLeg: - struct: EnumItem - Enum.AvatarAssetType.LeftShoeAccessory: - struct: EnumItem - Enum.AvatarAssetType.MoodAnimation: - struct: EnumItem - Enum.AvatarAssetType.NeckAccessory: - struct: EnumItem - Enum.AvatarAssetType.Pants: - struct: EnumItem - Enum.AvatarAssetType.PantsAccessory: - struct: EnumItem - Enum.AvatarAssetType.RightArm: - struct: EnumItem - Enum.AvatarAssetType.RightLeg: - struct: EnumItem - Enum.AvatarAssetType.RightShoeAccessory: - struct: EnumItem - Enum.AvatarAssetType.RunAnimation: - struct: EnumItem - Enum.AvatarAssetType.Shirt: - struct: EnumItem - Enum.AvatarAssetType.ShirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.ShortsAccessory: - struct: EnumItem - Enum.AvatarAssetType.ShoulderAccessory: - struct: EnumItem - Enum.AvatarAssetType.SweaterAccessory: - struct: EnumItem - Enum.AvatarAssetType.SwimAnimation: - struct: EnumItem - Enum.AvatarAssetType.TShirt: - struct: EnumItem - Enum.AvatarAssetType.TShirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.TeeShirtAccessory: - struct: EnumItem - deprecated: - message: Enum.AvatarAssetType.TeeShirtAccessory was replaced with Enum.AvatarAssetType.TShirtAccessory - replace: - - Enum.AvatarAssetType.TShirtAccessory - Enum.AvatarAssetType.Torso: - struct: EnumItem - Enum.AvatarAssetType.WaistAccessory: - struct: EnumItem - Enum.AvatarAssetType.WalkAnimation: - struct: EnumItem - Enum.AvatarContextMenuOption.Chat: - struct: EnumItem - Enum.AvatarContextMenuOption.Emote: - struct: EnumItem - Enum.AvatarContextMenuOption.Friend: - struct: EnumItem - Enum.AvatarContextMenuOption.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarContextMenuOption.InspectMenu: - struct: EnumItem - Enum.AvatarItemType.Asset: - struct: EnumItem - Enum.AvatarItemType.Bundle: - struct: EnumItem - Enum.AvatarItemType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarPromptResult.Failed: - struct: EnumItem - Enum.AvatarPromptResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarPromptResult.PermissionDenied: - struct: EnumItem - Enum.AvatarPromptResult.Success: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.Closeup: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.FullBody: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Axis.Back: - struct: EnumItem - deprecated: - message: Enum.Axis.Back was replaced with Enum.Axis.Z - replace: - - Enum.Axis.Z - Enum.Axis.Bottom: - struct: EnumItem - deprecated: - message: Enum.Axis.Bottom was replaced with Enum.Axis.Y - replace: - - Enum.Axis.Y - Enum.Axis.Front: - struct: EnumItem - deprecated: - message: Enum.Axis.Front was replaced with Enum.Axis.Z - replace: - - Enum.Axis.Z - Enum.Axis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Axis.Left: - struct: EnumItem - deprecated: - message: Enum.Axis.Left was replaced with Enum.Axis.X - replace: - - Enum.Axis.X - Enum.Axis.Right: - struct: EnumItem - deprecated: - message: Enum.Axis.Right was replaced with Enum.Axis.X - replace: - - Enum.Axis.X - Enum.Axis.Top: - struct: EnumItem - deprecated: - message: Enum.Axis.Top was replaced with Enum.Axis.Y - replace: - - Enum.Axis.Y - Enum.Axis.X: - struct: EnumItem - Enum.Axis.Y: - struct: EnumItem - Enum.Axis.Z: - struct: EnumItem - Enum.BinType.Clone: - struct: EnumItem - Enum.BinType.GameTool: - struct: EnumItem - Enum.BinType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BinType.Grab: - struct: EnumItem - Enum.BinType.Hammer: - struct: EnumItem - Enum.BinType.Laser: - struct: EnumItem - deprecated: - message: Enum.BinType.Laser was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BinType.Rocket: - struct: EnumItem - deprecated: - message: Enum.BinType.Rocket was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BinType.Script: - struct: EnumItem - Enum.BinType.Slingshot: - struct: EnumItem - deprecated: - message: Enum.BinType.Slingshot was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BodyPart.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BodyPart.Head: - struct: EnumItem - Enum.BodyPart.LeftArm: - struct: EnumItem - Enum.BodyPart.LeftLeg: - struct: EnumItem - Enum.BodyPart.RightArm: - struct: EnumItem - Enum.BodyPart.RightLeg: - struct: EnumItem - Enum.BodyPart.Torso: - struct: EnumItem - Enum.BodyPartR15.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BodyPartR15.Head: - struct: EnumItem - Enum.BodyPartR15.LeftFoot: - struct: EnumItem - Enum.BodyPartR15.LeftHand: - struct: EnumItem - Enum.BodyPartR15.LeftLowerArm: - struct: EnumItem - Enum.BodyPartR15.LeftLowerLeg: - struct: EnumItem - Enum.BodyPartR15.LeftUpperArm: - struct: EnumItem - Enum.BodyPartR15.LeftUpperLeg: - struct: EnumItem - Enum.BodyPartR15.LowerTorso: - struct: EnumItem - Enum.BodyPartR15.RightFoot: - struct: EnumItem - Enum.BodyPartR15.RightHand: - struct: EnumItem - Enum.BodyPartR15.RightLowerArm: - struct: EnumItem - Enum.BodyPartR15.RightLowerLeg: - struct: EnumItem - Enum.BodyPartR15.RightUpperArm: - struct: EnumItem - Enum.BodyPartR15.RightUpperLeg: - struct: EnumItem - Enum.BodyPartR15.RootPart: - struct: EnumItem - Enum.BodyPartR15.Unknown: - struct: EnumItem - Enum.BodyPartR15.UpperTorso: - struct: EnumItem - Enum.BorderMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BorderMode.Inset: - struct: EnumItem - Enum.BorderMode.Middle: - struct: EnumItem - Enum.BorderMode.Outline: - struct: EnumItem - Enum.BreakReason.Error: - struct: EnumItem - Enum.BreakReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BreakReason.Other: - struct: EnumItem - Enum.BreakReason.SpecialBreakpoint: - struct: EnumItem - Enum.BreakReason.UserBreakpoint: - struct: EnumItem - Enum.BreakpointRemoveReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BreakpointRemoveReason.Requested: - struct: EnumItem - Enum.BreakpointRemoveReason.ScriptChanged: - struct: EnumItem - Enum.BreakpointRemoveReason.ScriptRemoved: - struct: EnumItem - Enum.BulkMoveMode.FireAllEvents: - struct: EnumItem - Enum.BulkMoveMode.FireCFrameChanged: - struct: EnumItem - Enum.BulkMoveMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BundleType.Animations: - struct: EnumItem - Enum.BundleType.BodyParts: - struct: EnumItem - Enum.BundleType.DynamicHead: - struct: EnumItem - Enum.BundleType.DynamicHeadAvatar: - struct: EnumItem - Enum.BundleType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BundleType.Shoes: - struct: EnumItem - Enum.Button.Dismount: - struct: EnumItem - Enum.Button.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Button.Jump: - struct: EnumItem - Enum.ButtonStyle.Custom: - struct: EnumItem - Enum.ButtonStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ButtonStyle.RobloxButton: - struct: EnumItem - Enum.ButtonStyle.RobloxButtonDefault: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundButton: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundDefaultButton: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundDropdownButton: - struct: EnumItem - Enum.CageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CageType.Inner: - struct: EnumItem - Enum.CageType.Outer: - struct: EnumItem - Enum.CameraMode.Classic: - struct: EnumItem - Enum.CameraMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraMode.LockFirstPerson: - struct: EnumItem - Enum.CameraPanMode.Classic: - struct: EnumItem - Enum.CameraPanMode.EdgeBump: - struct: EnumItem - Enum.CameraPanMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraType.Attach: - struct: EnumItem - Enum.CameraType.Custom: - struct: EnumItem - Enum.CameraType.Fixed: - struct: EnumItem - Enum.CameraType.Follow: - struct: EnumItem - Enum.CameraType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraType.Orbital: - struct: EnumItem - Enum.CameraType.Scriptable: - struct: EnumItem - Enum.CameraType.Track: - struct: EnumItem - Enum.CameraType.Watch: - struct: EnumItem - Enum.CatalogCategoryFilter.Collectibles: - struct: EnumItem - Enum.CatalogCategoryFilter.CommunityCreations: - struct: EnumItem - Enum.CatalogCategoryFilter.Featured: - struct: EnumItem - Enum.CatalogCategoryFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogCategoryFilter.None: - struct: EnumItem - Enum.CatalogCategoryFilter.Premium: - struct: EnumItem - Enum.CatalogCategoryFilter.Recommended: - struct: EnumItem - Enum.CatalogSortAggregation.AllTime: - struct: EnumItem - Enum.CatalogSortAggregation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogSortAggregation.Past12Hours: - struct: EnumItem - Enum.CatalogSortAggregation.Past3Days: - struct: EnumItem - Enum.CatalogSortAggregation.PastDay: - struct: EnumItem - Enum.CatalogSortAggregation.PastMonth: - struct: EnumItem - Enum.CatalogSortAggregation.PastWeek: - struct: EnumItem - Enum.CatalogSortType.Bestselling: - struct: EnumItem - Enum.CatalogSortType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogSortType.MostFavorited: - struct: EnumItem - Enum.CatalogSortType.PriceHighToLow: - struct: EnumItem - Enum.CatalogSortType.PriceLowToHigh: - struct: EnumItem - Enum.CatalogSortType.RecentlyCreated: - struct: EnumItem - Enum.CatalogSortType.RecentlyUpdated: - struct: EnumItem - deprecated: - message: Enum.CatalogSortType.RecentlyUpdated was replaced with Enum.CatalogSortType.RecentlyCreated - replace: - - Enum.CatalogSortType.RecentlyCreated - Enum.CatalogSortType.Relevance: - struct: EnumItem - Enum.CellBlock.CornerWedge: - struct: EnumItem - Enum.CellBlock.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellBlock.HorizontalWedge: - struct: EnumItem - Enum.CellBlock.InverseCornerWedge: - struct: EnumItem - Enum.CellBlock.Solid: - struct: EnumItem - Enum.CellBlock.VerticalWedge: - struct: EnumItem - Enum.CellMaterial.Aluminum: - struct: EnumItem - Enum.CellMaterial.Asphalt: - struct: EnumItem - Enum.CellMaterial.BluePlastic: - struct: EnumItem - Enum.CellMaterial.Brick: - struct: EnumItem - Enum.CellMaterial.Cement: - struct: EnumItem - Enum.CellMaterial.CinderBlock: - struct: EnumItem - Enum.CellMaterial.Empty: - struct: EnumItem - Enum.CellMaterial.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellMaterial.Gold: - struct: EnumItem - Enum.CellMaterial.Granite: - struct: EnumItem - Enum.CellMaterial.Grass: - struct: EnumItem - Enum.CellMaterial.Gravel: - struct: EnumItem - Enum.CellMaterial.Iron: - struct: EnumItem - Enum.CellMaterial.MossyStone: - struct: EnumItem - Enum.CellMaterial.RedPlastic: - struct: EnumItem - Enum.CellMaterial.Sand: - struct: EnumItem - Enum.CellMaterial.Water: - struct: EnumItem - Enum.CellMaterial.WoodLog: - struct: EnumItem - Enum.CellMaterial.WoodPlank: - struct: EnumItem - Enum.CellOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellOrientation.NegX: - struct: EnumItem - Enum.CellOrientation.NegZ: - struct: EnumItem - Enum.CellOrientation.X: - struct: EnumItem - Enum.CellOrientation.Z: - struct: EnumItem - Enum.CenterDialogType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CenterDialogType.ModalDialog: - struct: EnumItem - Enum.CenterDialogType.PlayerInitiatedDialog: - struct: EnumItem - Enum.CenterDialogType.QuitDialog: - struct: EnumItem - Enum.CenterDialogType.UnsolicitedDialog: - struct: EnumItem - Enum.ChatCallbackType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatCallbackType.OnClientFormattingMessage: - struct: EnumItem - Enum.ChatCallbackType.OnClientSendingMessage: - struct: EnumItem - Enum.ChatCallbackType.OnCreatingChatWindow: - struct: EnumItem - Enum.ChatCallbackType.OnServerReceivingMessage: - struct: EnumItem - Enum.ChatColor.Blue: - struct: EnumItem - Enum.ChatColor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatColor.Green: - struct: EnumItem - Enum.ChatColor.Red: - struct: EnumItem - Enum.ChatColor.White: - struct: EnumItem - Enum.ChatMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatMode.Menu: - struct: EnumItem - Enum.ChatMode.TextAndMenu: - struct: EnumItem - Enum.ChatPrivacyMode.AllUsers: - struct: EnumItem - Enum.ChatPrivacyMode.Friends: - struct: EnumItem - Enum.ChatPrivacyMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatPrivacyMode.NoOne: - struct: EnumItem - Enum.ChatStyle.Bubble: - struct: EnumItem - Enum.ChatStyle.Classic: - struct: EnumItem - Enum.ChatStyle.ClassicAndBubble: - struct: EnumItem - Enum.ChatStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatVersion.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatVersion.LegacyChatService: - struct: EnumItem - Enum.ChatVersion.TextChatService: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Default: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Disabled: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Enabled: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CollisionFidelity.Box: - struct: EnumItem - Enum.CollisionFidelity.Default: - struct: EnumItem - Enum.CollisionFidelity.DynamicPreciseConvexDecomposition: - struct: EnumItem - Enum.CollisionFidelity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CollisionFidelity.Hull: - struct: EnumItem - Enum.CollisionFidelity.PreciseConvexDecomposition: - struct: EnumItem - Enum.CommandPermission.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CommandPermission.LocalUser: - struct: EnumItem - Enum.CommandPermission.Plugin: - struct: EnumItem - Enum.CompletionItemKind.Class: - struct: EnumItem - Enum.CompletionItemKind.Color: - struct: EnumItem - Enum.CompletionItemKind.Constant: - struct: EnumItem - Enum.CompletionItemKind.Constructor: - struct: EnumItem - Enum.CompletionItemKind.Enum: - struct: EnumItem - Enum.CompletionItemKind.EnumMember: - struct: EnumItem - Enum.CompletionItemKind.Event: - struct: EnumItem - Enum.CompletionItemKind.Field: - struct: EnumItem - Enum.CompletionItemKind.File: - struct: EnumItem - Enum.CompletionItemKind.Folder: - struct: EnumItem - Enum.CompletionItemKind.Function: - struct: EnumItem - Enum.CompletionItemKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionItemKind.Interface: - struct: EnumItem - Enum.CompletionItemKind.Keyword: - struct: EnumItem - Enum.CompletionItemKind.Method: - struct: EnumItem - Enum.CompletionItemKind.Module: - struct: EnumItem - Enum.CompletionItemKind.Operator: - struct: EnumItem - Enum.CompletionItemKind.Property: - struct: EnumItem - Enum.CompletionItemKind.Reference: - struct: EnumItem - Enum.CompletionItemKind.Snippet: - struct: EnumItem - Enum.CompletionItemKind.Struct: - struct: EnumItem - Enum.CompletionItemKind.Text: - struct: EnumItem - Enum.CompletionItemKind.TypeParameter: - struct: EnumItem - Enum.CompletionItemKind.Unit: - struct: EnumItem - Enum.CompletionItemKind.Value: - struct: EnumItem - Enum.CompletionItemKind.Variable: - struct: EnumItem - Enum.CompletionItemTag.AddParens: - struct: EnumItem - Enum.CompletionItemTag.ClientServerBoundaryViolation: - struct: EnumItem - Enum.CompletionItemTag.CommandLinePermissions: - struct: EnumItem - Enum.CompletionItemTag.Deprecated: - struct: EnumItem - Enum.CompletionItemTag.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionItemTag.IncorrectIndexType: - struct: EnumItem - Enum.CompletionItemTag.PluginPermissions: - struct: EnumItem - Enum.CompletionItemTag.PutCursorInParens: - struct: EnumItem - Enum.CompletionItemTag.RobloxPermissions: - struct: EnumItem - Enum.CompletionItemTag.TypeCorrect: - struct: EnumItem - Enum.CompletionTriggerKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionTriggerKind.Invoked: - struct: EnumItem - Enum.CompletionTriggerKind.TriggerCharacter: - struct: EnumItem - Enum.CompletionTriggerKind.TriggerForIncompleteCompletions: - struct: EnumItem - Enum.ComputerCameraMovementMode.CameraToggle: - struct: EnumItem - Enum.ComputerCameraMovementMode.Classic: - struct: EnumItem - Enum.ComputerCameraMovementMode.Default: - struct: EnumItem - Enum.ComputerCameraMovementMode.Follow: - struct: EnumItem - Enum.ComputerCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ComputerCameraMovementMode.Orbital: - struct: EnumItem - Enum.ComputerMovementMode.ClickToMove: - struct: EnumItem - Enum.ComputerMovementMode.Default: - struct: EnumItem - Enum.ComputerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ComputerMovementMode.KeyboardMouse: - struct: EnumItem - Enum.ConnectionError.DisconnectBadhash: - struct: EnumItem - Enum.ConnectionError.DisconnectBlockedIP: - struct: EnumItem - Enum.ConnectionError.DisconnectBySecurityPolicy: - struct: EnumItem - Enum.ConnectionError.DisconnectClientFailure: - struct: EnumItem - Enum.ConnectionError.DisconnectClientRequest: - struct: EnumItem - Enum.ConnectionError.DisconnectCloudEditKick: - struct: EnumItem - Enum.ConnectionError.DisconnectConnectionLost: - struct: EnumItem - Enum.ConnectionError.DisconnectDevMaintenance: - struct: EnumItem - Enum.ConnectionError.DisconnectDuplicatePlayer: - struct: EnumItem - Enum.ConnectionError.DisconnectDuplicateTicket: - struct: EnumItem - Enum.ConnectionError.DisconnectErrors: - struct: EnumItem - Enum.ConnectionError.DisconnectEvicted: - struct: EnumItem - Enum.ConnectionError.DisconnectHashTimeout: - struct: EnumItem - Enum.ConnectionError.DisconnectIdle: - struct: EnumItem - Enum.ConnectionError.DisconnectIllegalTeleport: - struct: EnumItem - Enum.ConnectionError.DisconnectLuaKick: - struct: EnumItem - Enum.ConnectionError.DisconnectModeratedGame: - struct: EnumItem - Enum.ConnectionError.DisconnectNewSecurityKeyMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectOnRemoteSysStats: - struct: EnumItem - Enum.ConnectionError.DisconnectOutOfMemoryKeepPlayingLeave: - struct: EnumItem - Enum.ConnectionError.DisconnectPlayerless: - struct: EnumItem - Enum.ConnectionError.DisconnectProtocolMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectRaknetErrors: - struct: EnumItem - Enum.ConnectionError.DisconnectReceivePacketError: - struct: EnumItem - Enum.ConnectionError.DisconnectReceivePacketStreamError: - struct: EnumItem - Enum.ConnectionError.DisconnectRejoin: - struct: EnumItem - Enum.ConnectionError.DisconnectRobloxMaintenance: - struct: EnumItem - Enum.ConnectionError.DisconnectRomarkEndOfTest: - struct: EnumItem - Enum.ConnectionError.DisconnectSecurityKeyMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectSendPacketError: - struct: EnumItem - Enum.ConnectionError.DisconnectTimeout: - struct: EnumItem - Enum.ConnectionError.DisconnectWrongVersion: - struct: EnumItem - Enum.ConnectionError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ConnectionError.OK: - struct: EnumItem - Enum.ConnectionError.PlacelaunchCustomMessage: - struct: EnumItem - Enum.ConnectionError.PlacelaunchDisabled: - struct: EnumItem - Enum.ConnectionError.PlacelaunchError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchErrors: - struct: EnumItem - Enum.ConnectionError.PlacelaunchFlooded: - struct: EnumItem - Enum.ConnectionError.PlacelaunchGameEnded: - struct: EnumItem - Enum.ConnectionError.PlacelaunchGameFull: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHashException: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHashExpired: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHttpError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchOtherError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchPartyCannotFit: - struct: EnumItem - Enum.ConnectionError.PlacelaunchRestricted: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUnauthorized: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUserLeft: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUserPrivacyUnauthorized: - struct: EnumItem - Enum.ConnectionError.PlayerRemoved: - struct: EnumItem - Enum.ConnectionError.ReplicatorTimeout: - struct: EnumItem - Enum.ConnectionError.TeleportErrors: - struct: EnumItem - Enum.ConnectionError.TeleportFailure: - struct: EnumItem - Enum.ConnectionError.TeleportFlooded: - struct: EnumItem - Enum.ConnectionError.TeleportGameEnded: - struct: EnumItem - Enum.ConnectionError.TeleportGameFull: - struct: EnumItem - Enum.ConnectionError.TeleportGameNotFound: - struct: EnumItem - Enum.ConnectionError.TeleportIsTeleporting: - struct: EnumItem - Enum.ConnectionError.TeleportUnauthorized: - struct: EnumItem - Enum.ConnectionError.Unknown: - struct: EnumItem - Enum.ConnectionState.Connected: - struct: EnumItem - Enum.ConnectionState.Disconnected: - struct: EnumItem - Enum.ConnectionState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionPriority.Default: - struct: EnumItem - deprecated: - message: Enum.ContextActionPriority.Default was replaced with Enum.ContextActionPriority.Medium - replace: - - Enum.ContextActionPriority.Medium - Enum.ContextActionPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionPriority.High: - struct: EnumItem - Enum.ContextActionPriority.Low: - struct: EnumItem - Enum.ContextActionPriority.Medium: - struct: EnumItem - Enum.ContextActionResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionResult.Pass: - struct: EnumItem - Enum.ContextActionResult.Sink: - struct: EnumItem - Enum.ControlMode.Classic: - struct: EnumItem - Enum.ControlMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ControlMode.Mouse Lock Switch: - struct: EnumItem - deprecated: - message: Enum.ControlMode.Mouse Lock Switch was replaced with Enum.ControlMode.MouseLockSwitch - replace: - - Enum.ControlMode.MouseLockSwitch - Enum.ControlMode.MouseLockSwitch: - struct: EnumItem - Enum.CoreGuiType.All: - struct: EnumItem - Enum.CoreGuiType.Backpack: - struct: EnumItem - Enum.CoreGuiType.Chat: - struct: EnumItem - Enum.CoreGuiType.EmotesMenu: - struct: EnumItem - Enum.CoreGuiType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CoreGuiType.Health: - struct: EnumItem - Enum.CoreGuiType.PlayerList: - struct: EnumItem - Enum.CoreGuiType.SelfView: - struct: EnumItem - Enum.CreateOutfitFailure.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreateOutfitFailure.InvalidName: - struct: EnumItem - Enum.CreateOutfitFailure.Other: - struct: EnumItem - Enum.CreateOutfitFailure.OutfitLimitReached: - struct: EnumItem - Enum.CreatorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreatorType.Group: - struct: EnumItem - Enum.CreatorType.User: - struct: EnumItem - Enum.CreatorTypeFilter.All: - struct: EnumItem - Enum.CreatorTypeFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreatorTypeFilter.Group: - struct: EnumItem - Enum.CreatorTypeFilter.User: - struct: EnumItem - Enum.CurrencyType.Default: - struct: EnumItem - Enum.CurrencyType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CurrencyType.Robux: - struct: EnumItem - Enum.CurrencyType.Tix: - struct: EnumItem - Enum.CustomCameraMode.Classic: - struct: EnumItem - Enum.CustomCameraMode.Default: - struct: EnumItem - Enum.CustomCameraMode.Follow: - struct: EnumItem - Enum.CustomCameraMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DataStoreRequestType.GetAsync: - struct: EnumItem - Enum.DataStoreRequestType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DataStoreRequestType.GetSortedAsync: - struct: EnumItem - Enum.DataStoreRequestType.OnUpdate: - struct: EnumItem - Enum.DataStoreRequestType.SetIncrementAsync: - struct: EnumItem - Enum.DataStoreRequestType.SetIncrementSortedAsync: - struct: EnumItem - Enum.DataStoreRequestType.UpdateAsync: - struct: EnumItem - Enum.DebuggerEndReason.ClientRequest: - struct: EnumItem - Enum.DebuggerEndReason.ConfigurationFailed: - struct: EnumItem - Enum.DebuggerEndReason.Disconnected: - struct: EnumItem - Enum.DebuggerEndReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerEndReason.InvalidHost: - struct: EnumItem - Enum.DebuggerEndReason.RpcError: - struct: EnumItem - Enum.DebuggerEndReason.ServerProtocolMismatch: - struct: EnumItem - Enum.DebuggerEndReason.ServerShutdown: - struct: EnumItem - Enum.DebuggerEndReason.Timeout: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.Always: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerExceptionBreakMode.Never: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.Unhandled: - struct: EnumItem - Enum.DebuggerFrameType.C: - struct: EnumItem - Enum.DebuggerFrameType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerFrameType.Lua: - struct: EnumItem - Enum.DebuggerPauseReason.Breakpoint: - struct: EnumItem - Enum.DebuggerPauseReason.Entrypoint: - struct: EnumItem - Enum.DebuggerPauseReason.Exception: - struct: EnumItem - Enum.DebuggerPauseReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerPauseReason.Requested: - struct: EnumItem - Enum.DebuggerPauseReason.SingleStep: - struct: EnumItem - Enum.DebuggerPauseReason.Unknown: - struct: EnumItem - Enum.DebuggerStatus.ConnectionClosed: - struct: EnumItem - Enum.DebuggerStatus.ConnectionLost: - struct: EnumItem - Enum.DebuggerStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerStatus.InternalError: - struct: EnumItem - Enum.DebuggerStatus.InvalidArgument: - struct: EnumItem - Enum.DebuggerStatus.InvalidResponse: - struct: EnumItem - Enum.DebuggerStatus.InvalidState: - struct: EnumItem - Enum.DebuggerStatus.RpcError: - struct: EnumItem - Enum.DebuggerStatus.Success: - struct: EnumItem - Enum.DebuggerStatus.Timeout: - struct: EnumItem - Enum.DevCameraOcclusionMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevCameraOcclusionMode.Invisicam: - struct: EnumItem - Enum.DevCameraOcclusionMode.Zoom: - struct: EnumItem - Enum.DevComputerCameraMovementMode.CameraToggle: - struct: EnumItem - Enum.DevComputerCameraMovementMode.Classic: - struct: EnumItem - Enum.DevComputerCameraMovementMode.Follow: - struct: EnumItem - Enum.DevComputerCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevComputerCameraMovementMode.Orbital: - struct: EnumItem - Enum.DevComputerCameraMovementMode.UserChoice: - struct: EnumItem - Enum.DevComputerMovementMode.ClickToMove: - struct: EnumItem - Enum.DevComputerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevComputerMovementMode.KeyboardMouse: - struct: EnumItem - Enum.DevComputerMovementMode.Scriptable: - struct: EnumItem - Enum.DevComputerMovementMode.UserChoice: - struct: EnumItem - Enum.DevTouchCameraMovementMode.Classic: - struct: EnumItem - Enum.DevTouchCameraMovementMode.Follow: - struct: EnumItem - Enum.DevTouchCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevTouchCameraMovementMode.Orbital: - struct: EnumItem - Enum.DevTouchCameraMovementMode.UserChoice: - struct: EnumItem - Enum.DevTouchMovementMode.ClickToMove: - struct: EnumItem - Enum.DevTouchMovementMode.DPad: - struct: EnumItem - Enum.DevTouchMovementMode.DynamicThumbstick: - struct: EnumItem - Enum.DevTouchMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevTouchMovementMode.Scriptable: - struct: EnumItem - Enum.DevTouchMovementMode.Thumbpad: - struct: EnumItem - Enum.DevTouchMovementMode.Thumbstick: - struct: EnumItem - Enum.DevTouchMovementMode.UserChoice: - struct: EnumItem - Enum.DeveloperMemoryTag.Animation: - struct: EnumItem - Enum.DeveloperMemoryTag.GeometryCSG: - struct: EnumItem - Enum.DeveloperMemoryTag.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DeveloperMemoryTag.GraphicsMeshParts: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsParticles: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsParts: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsSolidModels: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsSpatialHash: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTerrain: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTexture: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTextureCharacter: - struct: EnumItem - Enum.DeveloperMemoryTag.Gui: - struct: EnumItem - Enum.DeveloperMemoryTag.HttpCache: - struct: EnumItem - Enum.DeveloperMemoryTag.Instances: - struct: EnumItem - Enum.DeveloperMemoryTag.Internal: - struct: EnumItem - Enum.DeveloperMemoryTag.LuaHeap: - struct: EnumItem - Enum.DeveloperMemoryTag.Navigation: - struct: EnumItem - Enum.DeveloperMemoryTag.PhysicsCollision: - struct: EnumItem - Enum.DeveloperMemoryTag.PhysicsParts: - struct: EnumItem - Enum.DeveloperMemoryTag.Script: - struct: EnumItem - Enum.DeveloperMemoryTag.Signals: - struct: EnumItem - Enum.DeveloperMemoryTag.Sounds: - struct: EnumItem - Enum.DeveloperMemoryTag.StreamingSounds: - struct: EnumItem - Enum.DeveloperMemoryTag.TerrainVoxels: - struct: EnumItem - Enum.DeviceType.Desktop: - struct: EnumItem - Enum.DeviceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DeviceType.Phone: - struct: EnumItem - Enum.DeviceType.Tablet: - struct: EnumItem - Enum.DeviceType.Unknown: - struct: EnumItem - Enum.DialogBehaviorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogBehaviorType.MultiplePlayers: - struct: EnumItem - Enum.DialogBehaviorType.SinglePlayer: - struct: EnumItem - Enum.DialogPurpose.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogPurpose.Help: - struct: EnumItem - Enum.DialogPurpose.Quest: - struct: EnumItem - Enum.DialogPurpose.Shop: - struct: EnumItem - Enum.DialogTone.Enemy: - struct: EnumItem - Enum.DialogTone.Friendly: - struct: EnumItem - Enum.DialogTone.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogTone.Neutral: - struct: EnumItem - Enum.DominantAxis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DominantAxis.Height: - struct: EnumItem - Enum.DominantAxis.Width: - struct: EnumItem - Enum.DraftStatusCode.DraftCommitted: - struct: EnumItem - Enum.DraftStatusCode.DraftOutdated: - struct: EnumItem - Enum.DraftStatusCode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraftStatusCode.OK: - struct: EnumItem - Enum.DraftStatusCode.ScriptRemoved: - struct: EnumItem - Enum.DraggerCoordinateSpace.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraggerCoordinateSpace.Object: - struct: EnumItem - Enum.DraggerCoordinateSpace.World: - struct: EnumItem - Enum.DraggerMovementMode.Geometric: - struct: EnumItem - Enum.DraggerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraggerMovementMode.Physical: - struct: EnumItem - Enum.EasingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EasingDirection.In: - struct: EnumItem - Enum.EasingDirection.InOut: - struct: EnumItem - Enum.EasingDirection.Out: - struct: EnumItem - Enum.EasingStyle.Back: - struct: EnumItem - Enum.EasingStyle.Bounce: - struct: EnumItem - Enum.EasingStyle.Circular: - struct: EnumItem - Enum.EasingStyle.Cubic: - struct: EnumItem - Enum.EasingStyle.Elastic: - struct: EnumItem - Enum.EasingStyle.Exponential: - struct: EnumItem - Enum.EasingStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EasingStyle.Linear: - struct: EnumItem - Enum.EasingStyle.Quad: - struct: EnumItem - Enum.EasingStyle.Quart: - struct: EnumItem - Enum.EasingStyle.Quint: - struct: EnumItem - Enum.EasingStyle.Sine: - struct: EnumItem - Enum.ElasticBehavior.Always: - struct: EnumItem - Enum.ElasticBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ElasticBehavior.Never: - struct: EnumItem - Enum.ElasticBehavior.WhenScrollable: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Always: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.DefaultAuto: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Disabled: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EnviromentalPhysicsThrottle.Skip16: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip2: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip4: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip8: - struct: EnumItem - Enum.ExperienceAuthScope.CreatorAssetsCreate: - struct: EnumItem - Enum.ExperienceAuthScope.DefaultScope: - struct: EnumItem - Enum.ExperienceAuthScope.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ExplosionType.Craters: - struct: EnumItem - Enum.ExplosionType.CratersAndDebris: - struct: EnumItem - deprecated: - message: Enum.ExplosionType.CratersAndDebris was replaced with Enum.ExplosionType.Craters - replace: - - Enum.ExplosionType.Craters - Enum.ExplosionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ExplosionType.NoCraters: - struct: EnumItem - Enum.FacialAnimationFlags.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FacialAnimationFlags.None: - struct: EnumItem - Enum.FacialAnimationFlags.Place: - struct: EnumItem - Enum.FacialAnimationFlags.PlaceServer: - struct: EnumItem - Enum.FacialAnimationFlags.Server: - struct: EnumItem - Enum.FacialAnimationStreamingState.Audio: - struct: EnumItem - Enum.FacialAnimationStreamingState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FacialAnimationStreamingState.None: - struct: EnumItem - Enum.FacialAnimationStreamingState.Place: - struct: EnumItem - Enum.FacialAnimationStreamingState.Server: - struct: EnumItem - Enum.FacialAnimationStreamingState.Video: - struct: EnumItem - Enum.FieldOfViewMode.Diagonal: - struct: EnumItem - Enum.FieldOfViewMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FieldOfViewMode.MaxAxis: - struct: EnumItem - Enum.FieldOfViewMode.Vertical: - struct: EnumItem - Enum.FillDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FillDirection.Horizontal: - struct: EnumItem - Enum.FillDirection.Vertical: - struct: EnumItem - Enum.FilterResult.Accepted: - struct: EnumItem - Enum.FilterResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FilterResult.Rejected: - struct: EnumItem - Enum.Font.AmaticSC: - struct: EnumItem - Enum.Font.Antique: - struct: EnumItem - Enum.Font.Arcade: - struct: EnumItem - Enum.Font.Arial: - struct: EnumItem - Enum.Font.ArialBold: - struct: EnumItem - Enum.Font.Bangers: - struct: EnumItem - Enum.Font.Bodoni: - struct: EnumItem - Enum.Font.Cartoon: - struct: EnumItem - Enum.Font.Code: - struct: EnumItem - Enum.Font.Creepster: - struct: EnumItem - Enum.Font.DenkOne: - struct: EnumItem - Enum.Font.Fantasy: - struct: EnumItem - Enum.Font.Fondamento: - struct: EnumItem - Enum.Font.FredokaOne: - struct: EnumItem - Enum.Font.Garamond: - struct: EnumItem - Enum.Font.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Font.Gotham: - struct: EnumItem - Enum.Font.GothamBlack: - struct: EnumItem - Enum.Font.GothamBold: - struct: EnumItem - Enum.Font.GothamMedium: - struct: EnumItem - Enum.Font.GothamSemibold: - struct: EnumItem - deprecated: - message: Enum.Font.GothamSemibold was replaced with Enum.Font.GothamMedium - replace: - - Enum.Font.GothamMedium - Enum.Font.GrenzeGotisch: - struct: EnumItem - Enum.Font.Highway: - struct: EnumItem - Enum.Font.IndieFlower: - struct: EnumItem - Enum.Font.JosefinSans: - struct: EnumItem - Enum.Font.Jura: - struct: EnumItem - Enum.Font.Kalam: - struct: EnumItem - Enum.Font.Legacy: - struct: EnumItem - Enum.Font.LuckiestGuy: - struct: EnumItem - Enum.Font.Merriweather: - struct: EnumItem - Enum.Font.Michroma: - struct: EnumItem - Enum.Font.Nunito: - struct: EnumItem - Enum.Font.Oswald: - struct: EnumItem - Enum.Font.PatrickHand: - struct: EnumItem - Enum.Font.PermanentMarker: - struct: EnumItem - Enum.Font.Roboto: - struct: EnumItem - Enum.Font.RobotoCondensed: - struct: EnumItem - Enum.Font.RobotoMono: - struct: EnumItem - Enum.Font.Sarpanch: - struct: EnumItem - Enum.Font.SciFi: - struct: EnumItem - Enum.Font.SourceSans: - struct: EnumItem - Enum.Font.SourceSansBold: - struct: EnumItem - Enum.Font.SourceSansItalic: - struct: EnumItem - Enum.Font.SourceSansLight: - struct: EnumItem - Enum.Font.SourceSansSemibold: - struct: EnumItem - Enum.Font.SpecialElite: - struct: EnumItem - Enum.Font.TitilliumWeb: - struct: EnumItem - Enum.Font.Ubuntu: - struct: EnumItem - Enum.Font.Unknown: - struct: EnumItem - Enum.FontSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontSize.Size10: - struct: EnumItem - Enum.FontSize.Size11: - struct: EnumItem - Enum.FontSize.Size12: - struct: EnumItem - Enum.FontSize.Size14: - struct: EnumItem - Enum.FontSize.Size18: - struct: EnumItem - Enum.FontSize.Size24: - struct: EnumItem - Enum.FontSize.Size28: - struct: EnumItem - Enum.FontSize.Size32: - struct: EnumItem - Enum.FontSize.Size36: - struct: EnumItem - Enum.FontSize.Size42: - struct: EnumItem - Enum.FontSize.Size48: - struct: EnumItem - Enum.FontSize.Size60: - struct: EnumItem - Enum.FontSize.Size8: - struct: EnumItem - Enum.FontSize.Size9: - struct: EnumItem - Enum.FontSize.Size96: - struct: EnumItem - Enum.FontStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontStyle.Italic: - struct: EnumItem - Enum.FontStyle.Normal: - struct: EnumItem - Enum.FontWeight.Bold: - struct: EnumItem - Enum.FontWeight.ExtraBold: - struct: EnumItem - Enum.FontWeight.ExtraLight: - struct: EnumItem - Enum.FontWeight.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontWeight.Heavy: - struct: EnumItem - Enum.FontWeight.Light: - struct: EnumItem - Enum.FontWeight.Medium: - struct: EnumItem - Enum.FontWeight.Regular: - struct: EnumItem - Enum.FontWeight.SemiBold: - struct: EnumItem - Enum.FontWeight.Thin: - struct: EnumItem - Enum.FormFactor.Block: - struct: EnumItem - deprecated: - message: Enum.FormFactor.Block was replaced with Enum.FormFactor.Brick - replace: - - Enum.FormFactor.Brick - Enum.FormFactor.Brick: - struct: EnumItem - Enum.FormFactor.Custom: - struct: EnumItem - Enum.FormFactor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FormFactor.Plate: - struct: EnumItem - Enum.FormFactor.Symmetric: - struct: EnumItem - Enum.FrameStyle.ChatBlue: - struct: EnumItem - Enum.FrameStyle.ChatGreen: - struct: EnumItem - Enum.FrameStyle.ChatRed: - struct: EnumItem - Enum.FrameStyle.Custom: - struct: EnumItem - Enum.FrameStyle.DropShadow: - struct: EnumItem - Enum.FrameStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FrameStyle.RobloxRound: - struct: EnumItem - Enum.FrameStyle.RobloxSquare: - struct: EnumItem - Enum.FramerateManagerMode.Automatic: - struct: EnumItem - Enum.FramerateManagerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FramerateManagerMode.Off: - struct: EnumItem - Enum.FramerateManagerMode.On: - struct: EnumItem - Enum.FriendRequestEvent.Accept: - struct: EnumItem - Enum.FriendRequestEvent.Deny: - struct: EnumItem - Enum.FriendRequestEvent.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FriendRequestEvent.Issue: - struct: EnumItem - Enum.FriendRequestEvent.Revoke: - struct: EnumItem - Enum.FriendStatus.Friend: - struct: EnumItem - Enum.FriendStatus.FriendRequestReceived: - struct: EnumItem - Enum.FriendStatus.FriendRequestSent: - struct: EnumItem - Enum.FriendStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FriendStatus.NotFriend: - struct: EnumItem - Enum.FriendStatus.Unknown: - struct: EnumItem - Enum.FunctionalTestResult.Error: - struct: EnumItem - Enum.FunctionalTestResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FunctionalTestResult.Passed: - struct: EnumItem - Enum.FunctionalTestResult.Warning: - struct: EnumItem - Enum.GameAvatarType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GameAvatarType.PlayerChoice: - struct: EnumItem - Enum.GameAvatarType.R15: - struct: EnumItem - Enum.GameAvatarType.R6: - struct: EnumItem - Enum.GearGenreSetting.AllGenres: - struct: EnumItem - Enum.GearGenreSetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GearGenreSetting.MatchingGenreOnly: - struct: EnumItem - Enum.GearType.BuildingTools: - struct: EnumItem - Enum.GearType.Explosives: - struct: EnumItem - Enum.GearType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GearType.MeleeWeapons: - struct: EnumItem - Enum.GearType.MusicalInstruments: - struct: EnumItem - Enum.GearType.NavigationEnhancers: - struct: EnumItem - Enum.GearType.PowerUps: - struct: EnumItem - Enum.GearType.RangedWeapons: - struct: EnumItem - Enum.GearType.SocialItems: - struct: EnumItem - Enum.GearType.Transport: - struct: EnumItem - Enum.Genre.Adventure: - struct: EnumItem - Enum.Genre.All: - struct: EnumItem - Enum.Genre.Fantasy: - struct: EnumItem - Enum.Genre.Funny: - struct: EnumItem - Enum.Genre.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Genre.Ninja: - struct: EnumItem - Enum.Genre.Pirate: - struct: EnumItem - Enum.Genre.Scary: - struct: EnumItem - Enum.Genre.SciFi: - struct: EnumItem - Enum.Genre.SkatePark: - struct: EnumItem - Enum.Genre.Sports: - struct: EnumItem - Enum.Genre.TownAndCity: - struct: EnumItem - Enum.Genre.Tutorial: - struct: EnumItem - Enum.Genre.War: - struct: EnumItem - Enum.Genre.WildWest: - struct: EnumItem - Enum.GetEnums: - args: [] - method: true - must_use: true - Enum.GraphicsMode.Automatic: - struct: EnumItem - Enum.GraphicsMode.Direct3D11: - struct: EnumItem - Enum.GraphicsMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GraphicsMode.Metal: - struct: EnumItem - Enum.GraphicsMode.NoGraphics: - struct: EnumItem - Enum.GraphicsMode.OpenGL: - struct: EnumItem - Enum.GraphicsMode.Vulkan: - struct: EnumItem - Enum.GuiType.Core: - struct: EnumItem - Enum.GuiType.Custom: - struct: EnumItem - Enum.GuiType.CustomBillboards: - struct: EnumItem - Enum.GuiType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GuiType.PlayerNameplates: - struct: EnumItem - Enum.HandlesStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HandlesStyle.Movement: - struct: EnumItem - Enum.HandlesStyle.Resize: - struct: EnumItem - Enum.HighlightDepthMode.AlwaysOnTop: - struct: EnumItem - Enum.HighlightDepthMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HighlightDepthMode.Occluded: - struct: EnumItem - Enum.HorizontalAlignment.Center: - struct: EnumItem - Enum.HorizontalAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HorizontalAlignment.Left: - struct: EnumItem - Enum.HorizontalAlignment.Right: - struct: EnumItem - Enum.HoverAnimateSpeed.Fast: - struct: EnumItem - Enum.HoverAnimateSpeed.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HoverAnimateSpeed.Medium: - struct: EnumItem - Enum.HoverAnimateSpeed.Slow: - struct: EnumItem - Enum.HoverAnimateSpeed.VeryFast: - struct: EnumItem - Enum.HoverAnimateSpeed.VerySlow: - struct: EnumItem - Enum.HttpCachePolicy.DataOnly: - struct: EnumItem - Enum.HttpCachePolicy.Default: - struct: EnumItem - Enum.HttpCachePolicy.Full: - struct: EnumItem - Enum.HttpCachePolicy.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpCachePolicy.InternalRedirectRefresh: - struct: EnumItem - Enum.HttpCachePolicy.None: - struct: EnumItem - Enum.HttpContentType.ApplicationJson: - struct: EnumItem - Enum.HttpContentType.ApplicationUrlEncoded: - struct: EnumItem - Enum.HttpContentType.ApplicationXml: - struct: EnumItem - Enum.HttpContentType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpContentType.TextPlain: - struct: EnumItem - Enum.HttpContentType.TextXml: - struct: EnumItem - Enum.HttpError.Aborted: - struct: EnumItem - Enum.HttpError.ConnectFail: - struct: EnumItem - Enum.HttpError.DnsResolve: - struct: EnumItem - Enum.HttpError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpError.InvalidRedirect: - struct: EnumItem - Enum.HttpError.InvalidUrl: - struct: EnumItem - Enum.HttpError.NetFail: - struct: EnumItem - Enum.HttpError.OK: - struct: EnumItem - Enum.HttpError.OutOfMemory: - struct: EnumItem - Enum.HttpError.SslConnectFail: - struct: EnumItem - Enum.HttpError.SslVerificationFail: - struct: EnumItem - Enum.HttpError.TimedOut: - struct: EnumItem - Enum.HttpError.TooManyRedirects: - struct: EnumItem - Enum.HttpError.Unknown: - struct: EnumItem - Enum.HttpRequestType.Analytics: - struct: EnumItem - Enum.HttpRequestType.Avatar: - struct: EnumItem - Enum.HttpRequestType.Chat: - struct: EnumItem - Enum.HttpRequestType.Default: - struct: EnumItem - Enum.HttpRequestType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpRequestType.Localization: - struct: EnumItem - Enum.HttpRequestType.MarketplaceService: - struct: EnumItem - Enum.HttpRequestType.Players: - struct: EnumItem - Enum.HumanoidCollisionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidCollisionType.InnerBox: - struct: EnumItem - Enum.HumanoidCollisionType.OuterBox: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidDisplayDistanceType.None: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.Subject: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.Viewer: - struct: EnumItem - Enum.HumanoidHealthDisplayType.AlwaysOff: - struct: EnumItem - Enum.HumanoidHealthDisplayType.AlwaysOn: - struct: EnumItem - Enum.HumanoidHealthDisplayType.DisplayWhenDamaged: - struct: EnumItem - Enum.HumanoidHealthDisplayType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidOnlySetCollisionsOnStateChange.Default: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.Disabled: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.Enabled: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidRigType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidRigType.R15: - struct: EnumItem - Enum.HumanoidRigType.R6: - struct: EnumItem - Enum.HumanoidStateMachineMode.Default: - struct: EnumItem - Enum.HumanoidStateMachineMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidStateMachineMode.Legacy: - struct: EnumItem - Enum.HumanoidStateMachineMode.LuaStateMachine: - struct: EnumItem - Enum.HumanoidStateMachineMode.NoStateMachine: - struct: EnumItem - Enum.HumanoidStateType.Climbing: - struct: EnumItem - Enum.HumanoidStateType.Dead: - struct: EnumItem - Enum.HumanoidStateType.FallingDown: - struct: EnumItem - Enum.HumanoidStateType.Flying: - struct: EnumItem - Enum.HumanoidStateType.Freefall: - struct: EnumItem - Enum.HumanoidStateType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidStateType.GettingUp: - struct: EnumItem - Enum.HumanoidStateType.Jumping: - struct: EnumItem - Enum.HumanoidStateType.Landed: - struct: EnumItem - Enum.HumanoidStateType.None: - struct: EnumItem - Enum.HumanoidStateType.Physics: - struct: EnumItem - Enum.HumanoidStateType.PlatformStanding: - struct: EnumItem - Enum.HumanoidStateType.Ragdoll: - struct: EnumItem - Enum.HumanoidStateType.Running: - struct: EnumItem - Enum.HumanoidStateType.RunningNoPhysics: - struct: EnumItem - Enum.HumanoidStateType.Seated: - struct: EnumItem - Enum.HumanoidStateType.StrafingNoPhysics: - struct: EnumItem - Enum.HumanoidStateType.Swimming: - struct: EnumItem - Enum.IKCollisionsMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IKCollisionsMode.IncludeContactedMechanisms: - struct: EnumItem - Enum.IKCollisionsMode.NoCollisions: - struct: EnumItem - Enum.IKCollisionsMode.OtherMechanismsAnchored: - struct: EnumItem - Enum.IKControlType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IKControlType.LookAt: - struct: EnumItem - Enum.IKControlType.Position: - struct: EnumItem - Enum.IKControlType.Rotation: - struct: EnumItem - Enum.IKControlType.Transform: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorConnection: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorInvalidUser: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorJsonParse: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorTimedOut: - struct: EnumItem - Enum.IXPLoadingStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IXPLoadingStatus.Initialized: - struct: EnumItem - Enum.IXPLoadingStatus.None: - struct: EnumItem - Enum.IXPLoadingStatus.Pending: - struct: EnumItem - Enum.InOut.Center: - struct: EnumItem - Enum.InOut.Edge: - struct: EnumItem - Enum.InOut.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InOut.Inset: - struct: EnumItem - Enum.InfoType.Asset: - struct: EnumItem - Enum.InfoType.Bundle: - struct: EnumItem - Enum.InfoType.GamePass: - struct: EnumItem - Enum.InfoType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InfoType.Product: - struct: EnumItem - Enum.InfoType.Subscription: - struct: EnumItem - Enum.InitialDockState.Bottom: - struct: EnumItem - Enum.InitialDockState.Float: - struct: EnumItem - Enum.InitialDockState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InitialDockState.Left: - struct: EnumItem - Enum.InitialDockState.Right: - struct: EnumItem - Enum.InitialDockState.Top: - struct: EnumItem - Enum.InputType.Action1: - struct: EnumItem - deprecated: - message: Enum.InputType.Action1 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action2: - struct: EnumItem - deprecated: - message: Enum.InputType.Action2 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action3: - struct: EnumItem - deprecated: - message: Enum.InputType.Action3 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action4: - struct: EnumItem - deprecated: - message: Enum.InputType.Action4 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action5: - struct: EnumItem - deprecated: - message: Enum.InputType.Action5 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Constant: - struct: EnumItem - Enum.InputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InputType.LeftTread: - struct: EnumItem - deprecated: - message: Enum.InputType.LeftTread was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.NoInput: - struct: EnumItem - Enum.InputType.RightTread: - struct: EnumItem - deprecated: - message: Enum.InputType.RightTread was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Sin: - struct: EnumItem - Enum.InputType.Steer: - struct: EnumItem - deprecated: - message: Enum.InputType.Steer was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Throtle: - struct: EnumItem - deprecated: - message: Enum.InputType.Throtle was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Throttle: - struct: EnumItem - deprecated: - message: Enum.InputType.Throttle was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.UpDown: - struct: EnumItem - deprecated: - message: Enum.InputType.UpDown was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InterpolationThrottlingMode.Default: - struct: EnumItem - Enum.InterpolationThrottlingMode.Disabled: - struct: EnumItem - Enum.InterpolationThrottlingMode.Enabled: - struct: EnumItem - Enum.InterpolationThrottlingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.JointCreationMode.All: - struct: EnumItem - Enum.JointCreationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.JointCreationMode.None: - struct: EnumItem - Enum.JointCreationMode.Surface: - struct: EnumItem - Enum.KeyCode.A: - struct: EnumItem - Enum.KeyCode.Ampersand: - struct: EnumItem - Enum.KeyCode.Asterisk: - struct: EnumItem - Enum.KeyCode.At: - struct: EnumItem - Enum.KeyCode.B: - struct: EnumItem - Enum.KeyCode.BackSlash: - struct: EnumItem - Enum.KeyCode.Backquote: - struct: EnumItem - Enum.KeyCode.Backspace: - struct: EnumItem - Enum.KeyCode.Break: - struct: EnumItem - Enum.KeyCode.ButtonA: - struct: EnumItem - Enum.KeyCode.ButtonB: - struct: EnumItem - Enum.KeyCode.ButtonL1: - struct: EnumItem - Enum.KeyCode.ButtonL2: - struct: EnumItem - Enum.KeyCode.ButtonL3: - struct: EnumItem - Enum.KeyCode.ButtonR1: - struct: EnumItem - Enum.KeyCode.ButtonR2: - struct: EnumItem - Enum.KeyCode.ButtonR3: - struct: EnumItem - Enum.KeyCode.ButtonSelect: - struct: EnumItem - Enum.KeyCode.ButtonStart: - struct: EnumItem - Enum.KeyCode.ButtonX: - struct: EnumItem - Enum.KeyCode.ButtonY: - struct: EnumItem - Enum.KeyCode.C: - struct: EnumItem - Enum.KeyCode.CapsLock: - struct: EnumItem - Enum.KeyCode.Caret: - struct: EnumItem - Enum.KeyCode.Clear: - struct: EnumItem - Enum.KeyCode.Colon: - struct: EnumItem - Enum.KeyCode.Comma: - struct: EnumItem - Enum.KeyCode.Compose: - struct: EnumItem - Enum.KeyCode.D: - struct: EnumItem - Enum.KeyCode.DPadDown: - struct: EnumItem - Enum.KeyCode.DPadLeft: - struct: EnumItem - Enum.KeyCode.DPadRight: - struct: EnumItem - Enum.KeyCode.DPadUp: - struct: EnumItem - Enum.KeyCode.Delete: - struct: EnumItem - Enum.KeyCode.Dollar: - struct: EnumItem - Enum.KeyCode.Down: - struct: EnumItem - Enum.KeyCode.E: - struct: EnumItem - Enum.KeyCode.Eight: - struct: EnumItem - Enum.KeyCode.End: - struct: EnumItem - Enum.KeyCode.Equals: - struct: EnumItem - Enum.KeyCode.Escape: - struct: EnumItem - Enum.KeyCode.Euro: - struct: EnumItem - Enum.KeyCode.F: - struct: EnumItem - Enum.KeyCode.F1: - struct: EnumItem - Enum.KeyCode.F10: - struct: EnumItem - Enum.KeyCode.F11: - struct: EnumItem - Enum.KeyCode.F12: - struct: EnumItem - Enum.KeyCode.F13: - struct: EnumItem - Enum.KeyCode.F14: - struct: EnumItem - Enum.KeyCode.F15: - struct: EnumItem - Enum.KeyCode.F2: - struct: EnumItem - Enum.KeyCode.F3: - struct: EnumItem - Enum.KeyCode.F4: - struct: EnumItem - Enum.KeyCode.F5: - struct: EnumItem - Enum.KeyCode.F6: - struct: EnumItem - Enum.KeyCode.F7: - struct: EnumItem - Enum.KeyCode.F8: - struct: EnumItem - Enum.KeyCode.F9: - struct: EnumItem - Enum.KeyCode.Five: - struct: EnumItem - Enum.KeyCode.Four: - struct: EnumItem - Enum.KeyCode.G: - struct: EnumItem - Enum.KeyCode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeyCode.GreaterThan: - struct: EnumItem - Enum.KeyCode.H: - struct: EnumItem - Enum.KeyCode.Hash: - struct: EnumItem - Enum.KeyCode.Help: - struct: EnumItem - Enum.KeyCode.Home: - struct: EnumItem - Enum.KeyCode.I: - struct: EnumItem - Enum.KeyCode.Insert: - struct: EnumItem - Enum.KeyCode.J: - struct: EnumItem - Enum.KeyCode.K: - struct: EnumItem - Enum.KeyCode.KeypadDivide: - struct: EnumItem - Enum.KeyCode.KeypadEight: - struct: EnumItem - Enum.KeyCode.KeypadEnter: - struct: EnumItem - Enum.KeyCode.KeypadEquals: - struct: EnumItem - Enum.KeyCode.KeypadFive: - struct: EnumItem - Enum.KeyCode.KeypadFour: - struct: EnumItem - Enum.KeyCode.KeypadMinus: - struct: EnumItem - Enum.KeyCode.KeypadMultiply: - struct: EnumItem - Enum.KeyCode.KeypadNine: - struct: EnumItem - Enum.KeyCode.KeypadOne: - struct: EnumItem - Enum.KeyCode.KeypadPeriod: - struct: EnumItem - Enum.KeyCode.KeypadPlus: - struct: EnumItem - Enum.KeyCode.KeypadSeven: - struct: EnumItem - Enum.KeyCode.KeypadSix: - struct: EnumItem - Enum.KeyCode.KeypadThree: - struct: EnumItem - Enum.KeyCode.KeypadTwo: - struct: EnumItem - Enum.KeyCode.KeypadZero: - struct: EnumItem - Enum.KeyCode.L: - struct: EnumItem - Enum.KeyCode.Left: - struct: EnumItem - Enum.KeyCode.LeftAlt: - struct: EnumItem - Enum.KeyCode.LeftBracket: - struct: EnumItem - Enum.KeyCode.LeftControl: - struct: EnumItem - Enum.KeyCode.LeftCurly: - struct: EnumItem - Enum.KeyCode.LeftMeta: - struct: EnumItem - Enum.KeyCode.LeftParenthesis: - struct: EnumItem - Enum.KeyCode.LeftShift: - struct: EnumItem - Enum.KeyCode.LeftSuper: - struct: EnumItem - Enum.KeyCode.LessThan: - struct: EnumItem - Enum.KeyCode.M: - struct: EnumItem - Enum.KeyCode.Menu: - struct: EnumItem - Enum.KeyCode.Minus: - struct: EnumItem - Enum.KeyCode.Mode: - struct: EnumItem - Enum.KeyCode.N: - struct: EnumItem - Enum.KeyCode.Nine: - struct: EnumItem - Enum.KeyCode.NumLock: - struct: EnumItem - Enum.KeyCode.O: - struct: EnumItem - Enum.KeyCode.One: - struct: EnumItem - Enum.KeyCode.P: - struct: EnumItem - Enum.KeyCode.PageDown: - struct: EnumItem - Enum.KeyCode.PageUp: - struct: EnumItem - Enum.KeyCode.Pause: - struct: EnumItem - Enum.KeyCode.Percent: - struct: EnumItem - Enum.KeyCode.Period: - struct: EnumItem - Enum.KeyCode.Pipe: - struct: EnumItem - Enum.KeyCode.Plus: - struct: EnumItem - Enum.KeyCode.Power: - struct: EnumItem - Enum.KeyCode.Print: - struct: EnumItem - Enum.KeyCode.Q: - struct: EnumItem - Enum.KeyCode.Question: - struct: EnumItem - Enum.KeyCode.Quote: - struct: EnumItem - Enum.KeyCode.QuotedDouble: - struct: EnumItem - Enum.KeyCode.R: - struct: EnumItem - Enum.KeyCode.Return: - struct: EnumItem - Enum.KeyCode.Right: - struct: EnumItem - Enum.KeyCode.RightAlt: - struct: EnumItem - Enum.KeyCode.RightBracket: - struct: EnumItem - Enum.KeyCode.RightControl: - struct: EnumItem - Enum.KeyCode.RightCurly: - struct: EnumItem - Enum.KeyCode.RightMeta: - struct: EnumItem - Enum.KeyCode.RightParenthesis: - struct: EnumItem - Enum.KeyCode.RightShift: - struct: EnumItem - Enum.KeyCode.RightSuper: - struct: EnumItem - Enum.KeyCode.S: - struct: EnumItem - Enum.KeyCode.ScrollLock: - struct: EnumItem - Enum.KeyCode.Semicolon: - struct: EnumItem - Enum.KeyCode.Seven: - struct: EnumItem - Enum.KeyCode.Six: - struct: EnumItem - Enum.KeyCode.Slash: - struct: EnumItem - Enum.KeyCode.Space: - struct: EnumItem - Enum.KeyCode.SysReq: - struct: EnumItem - Enum.KeyCode.T: - struct: EnumItem - Enum.KeyCode.Tab: - struct: EnumItem - Enum.KeyCode.Three: - struct: EnumItem - Enum.KeyCode.Thumbstick1: - struct: EnumItem - Enum.KeyCode.Thumbstick2: - struct: EnumItem - Enum.KeyCode.Tilde: - struct: EnumItem - Enum.KeyCode.Two: - struct: EnumItem - Enum.KeyCode.U: - struct: EnumItem - Enum.KeyCode.Underscore: - struct: EnumItem - Enum.KeyCode.Undo: - struct: EnumItem - Enum.KeyCode.Unknown: - struct: EnumItem - Enum.KeyCode.Up: - struct: EnumItem - Enum.KeyCode.V: - struct: EnumItem - Enum.KeyCode.W: - struct: EnumItem - Enum.KeyCode.World0: - struct: EnumItem - Enum.KeyCode.World1: - struct: EnumItem - Enum.KeyCode.World10: - struct: EnumItem - Enum.KeyCode.World11: - struct: EnumItem - Enum.KeyCode.World12: - struct: EnumItem - Enum.KeyCode.World13: - struct: EnumItem - Enum.KeyCode.World14: - struct: EnumItem - Enum.KeyCode.World15: - struct: EnumItem - Enum.KeyCode.World16: - struct: EnumItem - Enum.KeyCode.World17: - struct: EnumItem - Enum.KeyCode.World18: - struct: EnumItem - Enum.KeyCode.World19: - struct: EnumItem - Enum.KeyCode.World2: - struct: EnumItem - Enum.KeyCode.World20: - struct: EnumItem - Enum.KeyCode.World21: - struct: EnumItem - Enum.KeyCode.World22: - struct: EnumItem - Enum.KeyCode.World23: - struct: EnumItem - Enum.KeyCode.World24: - struct: EnumItem - Enum.KeyCode.World25: - struct: EnumItem - Enum.KeyCode.World26: - struct: EnumItem - Enum.KeyCode.World27: - struct: EnumItem - Enum.KeyCode.World28: - struct: EnumItem - Enum.KeyCode.World29: - struct: EnumItem - Enum.KeyCode.World3: - struct: EnumItem - Enum.KeyCode.World30: - struct: EnumItem - Enum.KeyCode.World31: - struct: EnumItem - Enum.KeyCode.World32: - struct: EnumItem - Enum.KeyCode.World33: - struct: EnumItem - Enum.KeyCode.World34: - struct: EnumItem - Enum.KeyCode.World35: - struct: EnumItem - Enum.KeyCode.World36: - struct: EnumItem - Enum.KeyCode.World37: - struct: EnumItem - Enum.KeyCode.World38: - struct: EnumItem - Enum.KeyCode.World39: - struct: EnumItem - Enum.KeyCode.World4: - struct: EnumItem - Enum.KeyCode.World40: - struct: EnumItem - Enum.KeyCode.World41: - struct: EnumItem - Enum.KeyCode.World42: - struct: EnumItem - Enum.KeyCode.World43: - struct: EnumItem - Enum.KeyCode.World44: - struct: EnumItem - Enum.KeyCode.World45: - struct: EnumItem - Enum.KeyCode.World46: - struct: EnumItem - Enum.KeyCode.World47: - struct: EnumItem - Enum.KeyCode.World48: - struct: EnumItem - Enum.KeyCode.World49: - struct: EnumItem - Enum.KeyCode.World5: - struct: EnumItem - Enum.KeyCode.World50: - struct: EnumItem - Enum.KeyCode.World51: - struct: EnumItem - Enum.KeyCode.World52: - struct: EnumItem - Enum.KeyCode.World53: - struct: EnumItem - Enum.KeyCode.World54: - struct: EnumItem - Enum.KeyCode.World55: - struct: EnumItem - Enum.KeyCode.World56: - struct: EnumItem - Enum.KeyCode.World57: - struct: EnumItem - Enum.KeyCode.World58: - struct: EnumItem - Enum.KeyCode.World59: - struct: EnumItem - Enum.KeyCode.World6: - struct: EnumItem - Enum.KeyCode.World60: - struct: EnumItem - Enum.KeyCode.World61: - struct: EnumItem - Enum.KeyCode.World62: - struct: EnumItem - Enum.KeyCode.World63: - struct: EnumItem - Enum.KeyCode.World64: - struct: EnumItem - Enum.KeyCode.World65: - struct: EnumItem - Enum.KeyCode.World66: - struct: EnumItem - Enum.KeyCode.World67: - struct: EnumItem - Enum.KeyCode.World68: - struct: EnumItem - Enum.KeyCode.World69: - struct: EnumItem - Enum.KeyCode.World7: - struct: EnumItem - Enum.KeyCode.World70: - struct: EnumItem - Enum.KeyCode.World71: - struct: EnumItem - Enum.KeyCode.World72: - struct: EnumItem - Enum.KeyCode.World73: - struct: EnumItem - Enum.KeyCode.World74: - struct: EnumItem - Enum.KeyCode.World75: - struct: EnumItem - Enum.KeyCode.World76: - struct: EnumItem - Enum.KeyCode.World77: - struct: EnumItem - Enum.KeyCode.World78: - struct: EnumItem - Enum.KeyCode.World79: - struct: EnumItem - Enum.KeyCode.World8: - struct: EnumItem - Enum.KeyCode.World80: - struct: EnumItem - Enum.KeyCode.World81: - struct: EnumItem - Enum.KeyCode.World82: - struct: EnumItem - Enum.KeyCode.World83: - struct: EnumItem - Enum.KeyCode.World84: - struct: EnumItem - Enum.KeyCode.World85: - struct: EnumItem - Enum.KeyCode.World86: - struct: EnumItem - Enum.KeyCode.World87: - struct: EnumItem - Enum.KeyCode.World88: - struct: EnumItem - Enum.KeyCode.World89: - struct: EnumItem - Enum.KeyCode.World9: - struct: EnumItem - Enum.KeyCode.World90: - struct: EnumItem - Enum.KeyCode.World91: - struct: EnumItem - Enum.KeyCode.World92: - struct: EnumItem - Enum.KeyCode.World93: - struct: EnumItem - Enum.KeyCode.World94: - struct: EnumItem - Enum.KeyCode.World95: - struct: EnumItem - Enum.KeyCode.X: - struct: EnumItem - Enum.KeyCode.Y: - struct: EnumItem - Enum.KeyCode.Z: - struct: EnumItem - Enum.KeyCode.Zero: - struct: EnumItem - Enum.KeyInterpolationMode.Constant: - struct: EnumItem - Enum.KeyInterpolationMode.Cubic: - struct: EnumItem - Enum.KeyInterpolationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeyInterpolationMode.Linear: - struct: EnumItem - Enum.KeywordFilterType.Exclude: - struct: EnumItem - Enum.KeywordFilterType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeywordFilterType.Include: - struct: EnumItem - Enum.Language.Default: - struct: EnumItem - Enum.Language.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LeftRight.Center: - struct: EnumItem - Enum.LeftRight.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LeftRight.Left: - struct: EnumItem - Enum.LeftRight.Right: - struct: EnumItem - Enum.Limb.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Limb.Head: - struct: EnumItem - Enum.Limb.LeftArm: - struct: EnumItem - Enum.Limb.LeftLeg: - struct: EnumItem - Enum.Limb.RightArm: - struct: EnumItem - Enum.Limb.RightLeg: - struct: EnumItem - Enum.Limb.Torso: - struct: EnumItem - Enum.Limb.Unknown: - struct: EnumItem - Enum.LineJoinMode.Bevel: - struct: EnumItem - Enum.LineJoinMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LineJoinMode.Miter: - struct: EnumItem - Enum.LineJoinMode.Round: - struct: EnumItem - Enum.ListDisplayMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ListDisplayMode.Horizontal: - struct: EnumItem - Enum.ListDisplayMode.Vertical: - struct: EnumItem - Enum.ListenerType.CFrame: - struct: EnumItem - Enum.ListenerType.Camera: - struct: EnumItem - Enum.ListenerType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ListenerType.ObjectCFrame: - struct: EnumItem - Enum.ListenerType.ObjectPosition: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Default: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Disabled: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Enabled: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LoadDynamicHeads.Default: - struct: EnumItem - Enum.LoadDynamicHeads.Disabled: - struct: EnumItem - Enum.LoadDynamicHeads.Enabled: - struct: EnumItem - Enum.LoadDynamicHeads.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MarkupKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MarkupKind.Markdown: - struct: EnumItem - Enum.MarkupKind.PlainText: - struct: EnumItem - Enum.Material.Air: - struct: EnumItem - Enum.Material.Aluminum: - struct: EnumItem - deprecated: - message: Enum.Material.Aluminum was replaced with Enum.Material.Foil - replace: - - Enum.Material.Foil - Enum.Material.Asphalt: - struct: EnumItem - Enum.Material.Basalt: - struct: EnumItem - Enum.Material.Brick: - struct: EnumItem - Enum.Material.Cobblestone: - struct: EnumItem - Enum.Material.Concrete: - struct: EnumItem - Enum.Material.Corroded Metal: - struct: EnumItem - deprecated: - message: Enum.Material.Corroded Metal was replaced with Enum.Material.CorrodedMetal - replace: - - Enum.Material.CorrodedMetal - Enum.Material.CorrodedMetal: - struct: EnumItem - Enum.Material.CrackedLava: - struct: EnumItem - Enum.Material.DiamondPlate: - struct: EnumItem - Enum.Material.Fabric: - struct: EnumItem - Enum.Material.Foil: - struct: EnumItem - Enum.Material.ForceField: - struct: EnumItem - Enum.Material.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Material.Glacier: - struct: EnumItem - Enum.Material.Glass: - struct: EnumItem - Enum.Material.Granite: - struct: EnumItem - Enum.Material.Grass: - struct: EnumItem - Enum.Material.Ground: - struct: EnumItem - Enum.Material.Ice: - struct: EnumItem - Enum.Material.LeafyGrass: - struct: EnumItem - Enum.Material.Limestone: - struct: EnumItem - Enum.Material.Marble: - struct: EnumItem - Enum.Material.Metal: - struct: EnumItem - Enum.Material.Mud: - struct: EnumItem - Enum.Material.Neon: - struct: EnumItem - Enum.Material.Pavement: - struct: EnumItem - Enum.Material.Pebble: - struct: EnumItem - Enum.Material.Plastic: - struct: EnumItem - Enum.Material.Rock: - struct: EnumItem - Enum.Material.Salt: - struct: EnumItem - Enum.Material.Sand: - struct: EnumItem - Enum.Material.Sandstone: - struct: EnumItem - Enum.Material.Slate: - struct: EnumItem - Enum.Material.SmoothPlastic: - struct: EnumItem - Enum.Material.Snow: - struct: EnumItem - Enum.Material.Water: - struct: EnumItem - Enum.Material.Wood: - struct: EnumItem - Enum.Material.WoodPlanks: - struct: EnumItem - Enum.MaterialPattern.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MaterialPattern.Organic: - struct: EnumItem - Enum.MaterialPattern.Regular: - struct: EnumItem - Enum.MembershipType.BuildersClub: - struct: EnumItem - Enum.MembershipType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MembershipType.None: - struct: EnumItem - Enum.MembershipType.OutrageousBuildersClub: - struct: EnumItem - Enum.MembershipType.Premium: - struct: EnumItem - Enum.MembershipType.TurboBuildersClub: - struct: EnumItem - Enum.MeshPartDetailLevel.DistanceBased: - struct: EnumItem - Enum.MeshPartDetailLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshPartDetailLevel.Level00: - struct: EnumItem - Enum.MeshPartDetailLevel.Level01: - struct: EnumItem - Enum.MeshPartDetailLevel.Level02: - struct: EnumItem - Enum.MeshPartDetailLevel.Level03: - struct: EnumItem - Enum.MeshPartDetailLevel.Level04: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Default: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Disabled: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Enabled: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshScaleUnit.CM: - struct: EnumItem - Enum.MeshScaleUnit.Foot: - struct: EnumItem - Enum.MeshScaleUnit.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshScaleUnit.Inch: - struct: EnumItem - Enum.MeshScaleUnit.MM: - struct: EnumItem - Enum.MeshScaleUnit.Meter: - struct: EnumItem - Enum.MeshScaleUnit.Stud: - struct: EnumItem - Enum.MeshType.Brick: - struct: EnumItem - Enum.MeshType.CornerWedge: - struct: EnumItem - Enum.MeshType.Cylinder: - struct: EnumItem - Enum.MeshType.FileMesh: - struct: EnumItem - Enum.MeshType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshType.Head: - struct: EnumItem - Enum.MeshType.ParallelRamp: - struct: EnumItem - Enum.MeshType.Prism: - struct: EnumItem - Enum.MeshType.Pyramid: - struct: EnumItem - Enum.MeshType.RightAngleRamp: - struct: EnumItem - Enum.MeshType.Sphere: - struct: EnumItem - Enum.MeshType.Torso: - struct: EnumItem - Enum.MeshType.Wedge: - struct: EnumItem - Enum.MessageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MessageType.MessageError: - struct: EnumItem - Enum.MessageType.MessageInfo: - struct: EnumItem - Enum.MessageType.MessageOutput: - struct: EnumItem - Enum.MessageType.MessageWarning: - struct: EnumItem - Enum.ModelLevelOfDetail.Automatic: - struct: EnumItem - Enum.ModelLevelOfDetail.Disabled: - struct: EnumItem - Enum.ModelLevelOfDetail.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModelLevelOfDetail.StreamingMesh: - struct: EnumItem - Enum.ModelStreamingMode.Atomic: - struct: EnumItem - Enum.ModelStreamingMode.Default: - struct: EnumItem - Enum.ModelStreamingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModelStreamingMode.Nonatomic: - struct: EnumItem - Enum.ModelStreamingMode.Persistent: - struct: EnumItem - Enum.ModelStreamingMode.PersistentPerPlayer: - struct: EnumItem - Enum.ModifierKey.Alt: - struct: EnumItem - Enum.ModifierKey.Ctrl: - struct: EnumItem - Enum.ModifierKey.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModifierKey.Meta: - struct: EnumItem - Enum.ModifierKey.Shift: - struct: EnumItem - Enum.MouseBehavior.Default: - struct: EnumItem - Enum.MouseBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MouseBehavior.LockCenter: - struct: EnumItem - Enum.MouseBehavior.LockCurrentPosition: - struct: EnumItem - Enum.MoveState.AirFree: - struct: EnumItem - Enum.MoveState.Coasting: - struct: EnumItem - Enum.MoveState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MoveState.Pushing: - struct: EnumItem - Enum.MoveState.Stopped: - struct: EnumItem - Enum.MoveState.Stopping: - struct: EnumItem - Enum.MuteState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MuteState.Muted: - struct: EnumItem - Enum.MuteState.Unmuted: - struct: EnumItem - Enum.NameOcclusion.EnemyOcclusion: - struct: EnumItem - Enum.NameOcclusion.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NameOcclusion.NoOcclusion: - struct: EnumItem - Enum.NameOcclusion.OccludeAll: - struct: EnumItem - Enum.NetworkOwnership.Automatic: - struct: EnumItem - Enum.NetworkOwnership.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NetworkOwnership.Manual: - struct: EnumItem - Enum.NetworkOwnership.OnContact: - struct: EnumItem - Enum.NormalId.Back: - struct: EnumItem - Enum.NormalId.Bottom: - struct: EnumItem - Enum.NormalId.Front: - struct: EnumItem - Enum.NormalId.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NormalId.Left: - struct: EnumItem - Enum.NormalId.Right: - struct: EnumItem - Enum.NormalId.Top: - struct: EnumItem - Enum.OrientationAlignmentMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OrientationAlignmentMode.OneAttachment: - struct: EnumItem - Enum.OrientationAlignmentMode.TwoAttachment: - struct: EnumItem - Enum.OutfitSource.All: - struct: EnumItem - Enum.OutfitSource.Created: - struct: EnumItem - Enum.OutfitSource.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutfitSource.Purchased: - struct: EnumItem - Enum.OutfitType.All: - struct: EnumItem - Enum.OutfitType.Avatar: - struct: EnumItem - Enum.OutfitType.DynamicHead: - struct: EnumItem - Enum.OutfitType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutputLayoutMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutputLayoutMode.Horizontal: - struct: EnumItem - Enum.OutputLayoutMode.Vertical: - struct: EnumItem - Enum.OverrideMouseIconBehavior.ForceHide: - struct: EnumItem - Enum.OverrideMouseIconBehavior.ForceShow: - struct: EnumItem - Enum.OverrideMouseIconBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OverrideMouseIconBehavior.None: - struct: EnumItem - Enum.PackagePermission.Edit: - struct: EnumItem - Enum.PackagePermission.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PackagePermission.NoAccess: - struct: EnumItem - Enum.PackagePermission.None: - struct: EnumItem - Enum.PackagePermission.Own: - struct: EnumItem - Enum.PackagePermission.Revoked: - struct: EnumItem - Enum.PackagePermission.UseView: - struct: EnumItem - Enum.PartType.Ball: - struct: EnumItem - Enum.PartType.Block: - struct: EnumItem - Enum.PartType.Cylinder: - struct: EnumItem - Enum.PartType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShape.Box: - struct: EnumItem - Enum.ParticleEmitterShape.Cylinder: - struct: EnumItem - Enum.ParticleEmitterShape.Disc: - struct: EnumItem - Enum.ParticleEmitterShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShape.Sphere: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShapeInOut.InAndOut: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.Inward: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.Outward: - struct: EnumItem - Enum.ParticleEmitterShapeStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShapeStyle.Surface: - struct: EnumItem - Enum.ParticleEmitterShapeStyle.Volume: - struct: EnumItem - Enum.ParticleFlipbookLayout.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookLayout.Grid2x2: - struct: EnumItem - Enum.ParticleFlipbookLayout.Grid4x4: - struct: EnumItem - Enum.ParticleFlipbookLayout.Grid8x8: - struct: EnumItem - Enum.ParticleFlipbookLayout.None: - struct: EnumItem - Enum.ParticleFlipbookMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookMode.Loop: - struct: EnumItem - Enum.ParticleFlipbookMode.OneShot: - struct: EnumItem - Enum.ParticleFlipbookMode.PingPong: - struct: EnumItem - Enum.ParticleFlipbookMode.Random: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.Compatible: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookTextureCompatible.NotCompatible: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.Unknown: - struct: EnumItem - Enum.ParticleOrientation.FacingCamera: - struct: EnumItem - Enum.ParticleOrientation.FacingCameraWorldUp: - struct: EnumItem - Enum.ParticleOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleOrientation.VelocityParallel: - struct: EnumItem - Enum.ParticleOrientation.VelocityPerpendicular: - struct: EnumItem - Enum.PathStatus.ClosestNoPath: - struct: EnumItem - Enum.PathStatus.ClosestOutOfRange: - struct: EnumItem - Enum.PathStatus.FailFinishNotEmpty: - struct: EnumItem - Enum.PathStatus.FailStartNotEmpty: - struct: EnumItem - Enum.PathStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PathStatus.NoPath: - struct: EnumItem - Enum.PathStatus.Success: - struct: EnumItem - Enum.PathWaypointAction.Custom: - struct: EnumItem - Enum.PathWaypointAction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PathWaypointAction.Jump: - struct: EnumItem - Enum.PathWaypointAction.Walk: - struct: EnumItem - Enum.PermissionLevelShown.Game: - struct: EnumItem - Enum.PermissionLevelShown.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PermissionLevelShown.Roblox: - struct: EnumItem - Enum.PermissionLevelShown.RobloxGame: - struct: EnumItem - Enum.PermissionLevelShown.RobloxScript: - struct: EnumItem - Enum.PermissionLevelShown.Studio: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed120Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed240Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed60Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PhysicsSteppingMethod.Adaptive: - struct: EnumItem - Enum.PhysicsSteppingMethod.Default: - struct: EnumItem - Enum.PhysicsSteppingMethod.Fixed: - struct: EnumItem - Enum.PhysicsSteppingMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Platform.Android: - struct: EnumItem - Enum.Platform.AndroidTV: - struct: EnumItem - Enum.Platform.BeOS: - struct: EnumItem - Enum.Platform.Chromecast: - struct: EnumItem - Enum.Platform.DOS: - struct: EnumItem - Enum.Platform.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Platform.IOS: - struct: EnumItem - Enum.Platform.Linux: - struct: EnumItem - Enum.Platform.NX: - struct: EnumItem - Enum.Platform.None: - struct: EnumItem - Enum.Platform.OSX: - struct: EnumItem - Enum.Platform.Ouya: - struct: EnumItem - Enum.Platform.PS3: - struct: EnumItem - Enum.Platform.PS4: - struct: EnumItem - Enum.Platform.SteamOS: - struct: EnumItem - Enum.Platform.UWP: - struct: EnumItem - Enum.Platform.WebOS: - struct: EnumItem - Enum.Platform.WiiU: - struct: EnumItem - Enum.Platform.Windows: - struct: EnumItem - Enum.Platform.XBox360: - struct: EnumItem - Enum.Platform.XBoxOne: - struct: EnumItem - Enum.PlaybackState.Begin: - struct: EnumItem - Enum.PlaybackState.Cancelled: - struct: EnumItem - Enum.PlaybackState.Completed: - struct: EnumItem - Enum.PlaybackState.Delayed: - struct: EnumItem - Enum.PlaybackState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlaybackState.Paused: - struct: EnumItem - Enum.PlaybackState.Playing: - struct: EnumItem - Enum.PlayerActions.CharacterBackward: - struct: EnumItem - Enum.PlayerActions.CharacterForward: - struct: EnumItem - Enum.PlayerActions.CharacterJump: - struct: EnumItem - Enum.PlayerActions.CharacterLeft: - struct: EnumItem - Enum.PlayerActions.CharacterRight: - struct: EnumItem - Enum.PlayerActions.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlayerChatType.All: - struct: EnumItem - Enum.PlayerChatType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlayerChatType.Team: - struct: EnumItem - Enum.PlayerChatType.Whisper: - struct: EnumItem - Enum.PoseEasingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PoseEasingDirection.In: - struct: EnumItem - Enum.PoseEasingDirection.InOut: - struct: EnumItem - Enum.PoseEasingDirection.Out: - struct: EnumItem - Enum.PoseEasingStyle.Bounce: - struct: EnumItem - Enum.PoseEasingStyle.Constant: - struct: EnumItem - Enum.PoseEasingStyle.Cubic: - struct: EnumItem - Enum.PoseEasingStyle.Elastic: - struct: EnumItem - Enum.PoseEasingStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PoseEasingStyle.Linear: - struct: EnumItem - Enum.PositionAlignmentMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PositionAlignmentMode.OneAttachment: - struct: EnumItem - Enum.PositionAlignmentMode.TwoAttachment: - struct: EnumItem - Enum.PrivilegeType.Admin: - struct: EnumItem - Enum.PrivilegeType.Banned: - struct: EnumItem - Enum.PrivilegeType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PrivilegeType.Member: - struct: EnumItem - Enum.PrivilegeType.Owner: - struct: EnumItem - Enum.PrivilegeType.Visitor: - struct: EnumItem - Enum.ProductLocationRestriction.AllGames: - struct: EnumItem - Enum.ProductLocationRestriction.AllowedGames: - struct: EnumItem - Enum.ProductLocationRestriction.AvatarShop: - struct: EnumItem - Enum.ProductLocationRestriction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProductPurchaseDecision.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProductPurchaseDecision.NotProcessedYet: - struct: EnumItem - Enum.ProductPurchaseDecision.PurchaseGranted: - struct: EnumItem - Enum.PromptPublishAssetResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PromptPublishAssetResult.NoUserInput: - struct: EnumItem - Enum.PromptPublishAssetResult.PermissionDenied: - struct: EnumItem - Enum.PromptPublishAssetResult.Success: - struct: EnumItem - Enum.PromptPublishAssetResult.Timeout: - struct: EnumItem - Enum.PromptPublishAssetResult.UploadFailed: - struct: EnumItem - Enum.PropertyStatus.Error: - struct: EnumItem - Enum.PropertyStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PropertyStatus.Ok: - struct: EnumItem - Enum.PropertyStatus.Warning: - struct: EnumItem - Enum.ProximityPromptExclusivity.AlwaysShow: - struct: EnumItem - Enum.ProximityPromptExclusivity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProximityPromptExclusivity.OneGlobally: - struct: EnumItem - Enum.ProximityPromptExclusivity.OnePerButton: - struct: EnumItem - Enum.ProximityPromptInputType.Gamepad: - struct: EnumItem - Enum.ProximityPromptInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProximityPromptInputType.Keyboard: - struct: EnumItem - Enum.ProximityPromptInputType.Touch: - struct: EnumItem - Enum.ProximityPromptStyle.Custom: - struct: EnumItem - Enum.ProximityPromptStyle.Default: - struct: EnumItem - Enum.ProximityPromptStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.QualityLevel.Automatic: - struct: EnumItem - Enum.QualityLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.QualityLevel.Level 1: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 1 was replaced with Enum.QualityLevel.Level01 - replace: - - Enum.QualityLevel.Level01 - Enum.QualityLevel.Level 2: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 2 was replaced with Enum.QualityLevel.Level02 - replace: - - Enum.QualityLevel.Level02 - Enum.QualityLevel.Level 3: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 3 was replaced with Enum.QualityLevel.Level03 - replace: - - Enum.QualityLevel.Level03 - Enum.QualityLevel.Level 4: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 4 was replaced with Enum.QualityLevel.Level04 - replace: - - Enum.QualityLevel.Level04 - Enum.QualityLevel.Level 5: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 5 was replaced with Enum.QualityLevel.Level05 - replace: - - Enum.QualityLevel.Level05 - Enum.QualityLevel.Level 6: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 6 was replaced with Enum.QualityLevel.Level06 - replace: - - Enum.QualityLevel.Level06 - Enum.QualityLevel.Level 7: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 7 was replaced with Enum.QualityLevel.Level07 - replace: - - Enum.QualityLevel.Level07 - Enum.QualityLevel.Level 8: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 8 was replaced with Enum.QualityLevel.Level08 - replace: - - Enum.QualityLevel.Level08 - Enum.QualityLevel.Level 9: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 9 was replaced with Enum.QualityLevel.Level09 - replace: - - Enum.QualityLevel.Level09 - Enum.QualityLevel.Level 10: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 10 was replaced with Enum.QualityLevel.Level10 - replace: - - Enum.QualityLevel.Level10 - Enum.QualityLevel.Level 11: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 11 was replaced with Enum.QualityLevel.Level11 - replace: - - Enum.QualityLevel.Level11 - Enum.QualityLevel.Level 12: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 12 was replaced with Enum.QualityLevel.Level12 - replace: - - Enum.QualityLevel.Level12 - Enum.QualityLevel.Level 13: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 13 was replaced with Enum.QualityLevel.Level13 - replace: - - Enum.QualityLevel.Level13 - Enum.QualityLevel.Level 14: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 14 was replaced with Enum.QualityLevel.Level14 - replace: - - Enum.QualityLevel.Level14 - Enum.QualityLevel.Level 15: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 15 was replaced with Enum.QualityLevel.Level15 - replace: - - Enum.QualityLevel.Level15 - Enum.QualityLevel.Level 16: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 16 was replaced with Enum.QualityLevel.Level16 - replace: - - Enum.QualityLevel.Level16 - Enum.QualityLevel.Level 17: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 17 was replaced with Enum.QualityLevel.Level17 - replace: - - Enum.QualityLevel.Level17 - Enum.QualityLevel.Level 18: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 18 was replaced with Enum.QualityLevel.Level18 - replace: - - Enum.QualityLevel.Level18 - Enum.QualityLevel.Level 19: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 19 was replaced with Enum.QualityLevel.Level19 - replace: - - Enum.QualityLevel.Level19 - Enum.QualityLevel.Level 20: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 20 was replaced with Enum.QualityLevel.Level20 - replace: - - Enum.QualityLevel.Level20 - Enum.QualityLevel.Level 21: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 21 was replaced with Enum.QualityLevel.Level21 - replace: - - Enum.QualityLevel.Level21 - Enum.QualityLevel.Level01: - struct: EnumItem - Enum.QualityLevel.Level02: - struct: EnumItem - Enum.QualityLevel.Level03: - struct: EnumItem - Enum.QualityLevel.Level04: - struct: EnumItem - Enum.QualityLevel.Level05: - struct: EnumItem - Enum.QualityLevel.Level06: - struct: EnumItem - Enum.QualityLevel.Level07: - struct: EnumItem - Enum.QualityLevel.Level08: - struct: EnumItem - Enum.QualityLevel.Level09: - struct: EnumItem - Enum.QualityLevel.Level10: - struct: EnumItem - Enum.QualityLevel.Level11: - struct: EnumItem - Enum.QualityLevel.Level12: - struct: EnumItem - Enum.QualityLevel.Level13: - struct: EnumItem - Enum.QualityLevel.Level14: - struct: EnumItem - Enum.QualityLevel.Level15: - struct: EnumItem - Enum.QualityLevel.Level16: - struct: EnumItem - Enum.QualityLevel.Level17: - struct: EnumItem - Enum.QualityLevel.Level18: - struct: EnumItem - Enum.QualityLevel.Level19: - struct: EnumItem - Enum.QualityLevel.Level20: - struct: EnumItem - Enum.QualityLevel.Level21: - struct: EnumItem - Enum.R15CollisionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.R15CollisionType.InnerBox: - struct: EnumItem - Enum.R15CollisionType.OuterBox: - struct: EnumItem - Enum.RaycastFilterType.Blacklist: - struct: EnumItem - deprecated: - message: Enum.RaycastFilterType.Blacklist was replaced with Enum.RaycastFilterType.Exclude - replace: - - Enum.RaycastFilterType.Exclude - Enum.RaycastFilterType.Exclude: - struct: EnumItem - Enum.RaycastFilterType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RaycastFilterType.Include: - struct: EnumItem - Enum.RaycastFilterType.Whitelist: - struct: EnumItem - deprecated: - message: Enum.RaycastFilterType.Whitelist was replaced with Enum.RaycastFilterType.Include - replace: - - Enum.RaycastFilterType.Include - Enum.RejectCharacterDeletions.Default: - struct: EnumItem - Enum.RejectCharacterDeletions.Disabled: - struct: EnumItem - Enum.RejectCharacterDeletions.Enabled: - struct: EnumItem - Enum.RejectCharacterDeletions.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderFidelity.Automatic: - struct: EnumItem - Enum.RenderFidelity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderFidelity.Performance: - struct: EnumItem - Enum.RenderFidelity.Precise: - struct: EnumItem - Enum.RenderPriority.Camera: - struct: EnumItem - Enum.RenderPriority.Character: - struct: EnumItem - Enum.RenderPriority.First: - struct: EnumItem - Enum.RenderPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderPriority.Input: - struct: EnumItem - Enum.RenderPriority.Last: - struct: EnumItem - Enum.RenderingTestComparisonMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderingTestComparisonMethod.diff: - struct: EnumItem - Enum.RenderingTestComparisonMethod.psnr: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Default: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Disabled: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Enabled: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ResamplerMode.Default: - struct: EnumItem - Enum.ResamplerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ResamplerMode.Pixelated: - struct: EnumItem - Enum.ReservedHighlightId.Active: - struct: EnumItem - Enum.ReservedHighlightId.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReservedHighlightId.Hover: - struct: EnumItem - Enum.ReservedHighlightId.Selection: - struct: EnumItem - Enum.ReservedHighlightId.Standard: - struct: EnumItem - Enum.ReturnKeyType.Default: - struct: EnumItem - Enum.ReturnKeyType.Done: - struct: EnumItem - Enum.ReturnKeyType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReturnKeyType.Go: - struct: EnumItem - Enum.ReturnKeyType.Next: - struct: EnumItem - Enum.ReturnKeyType.Search: - struct: EnumItem - Enum.ReturnKeyType.Send: - struct: EnumItem - Enum.ReverbType.Alley: - struct: EnumItem - Enum.ReverbType.Arena: - struct: EnumItem - Enum.ReverbType.Auditorium: - struct: EnumItem - Enum.ReverbType.Bathroom: - struct: EnumItem - Enum.ReverbType.CarpettedHallway: - struct: EnumItem - Enum.ReverbType.Cave: - struct: EnumItem - Enum.ReverbType.City: - struct: EnumItem - Enum.ReverbType.ConcertHall: - struct: EnumItem - Enum.ReverbType.Forest: - struct: EnumItem - Enum.ReverbType.GenericReverb: - struct: EnumItem - Enum.ReverbType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReverbType.Hallway: - struct: EnumItem - Enum.ReverbType.Hangar: - struct: EnumItem - Enum.ReverbType.LivingRoom: - struct: EnumItem - Enum.ReverbType.Mountains: - struct: EnumItem - Enum.ReverbType.NoReverb: - struct: EnumItem - Enum.ReverbType.PaddedCell: - struct: EnumItem - Enum.ReverbType.ParkingLot: - struct: EnumItem - Enum.ReverbType.Plain: - struct: EnumItem - Enum.ReverbType.Quarry: - struct: EnumItem - Enum.ReverbType.Room: - struct: EnumItem - Enum.ReverbType.SewerPipe: - struct: EnumItem - Enum.ReverbType.StoneCorridor: - struct: EnumItem - Enum.ReverbType.StoneRoom: - struct: EnumItem - Enum.ReverbType.UnderWater: - struct: EnumItem - Enum.RibbonTool.ColorPicker: - struct: EnumItem - Enum.RibbonTool.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RibbonTool.Group: - struct: EnumItem - Enum.RibbonTool.MaterialPicker: - struct: EnumItem - Enum.RibbonTool.Move: - struct: EnumItem - Enum.RibbonTool.None: - struct: EnumItem - Enum.RibbonTool.Rotate: - struct: EnumItem - Enum.RibbonTool.Scale: - struct: EnumItem - Enum.RibbonTool.Select: - struct: EnumItem - Enum.RibbonTool.Transform: - struct: EnumItem - Enum.RibbonTool.Ungroup: - struct: EnumItem - Enum.RigScale.Default: - struct: EnumItem - Enum.RigScale.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RigScale.Rthro: - struct: EnumItem - Enum.RigScale.RthroNarrow: - struct: EnumItem - Enum.RigType.Custom: - struct: EnumItem - Enum.RigType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RigType.None: - struct: EnumItem - Enum.RigType.R15: - struct: EnumItem - Enum.RigType.Rthro: - struct: EnumItem - Enum.RigType.RthroNarrow: - struct: EnumItem - Enum.RollOffMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RollOffMode.Inverse: - struct: EnumItem - Enum.RollOffMode.InverseTapered: - struct: EnumItem - Enum.RollOffMode.Linear: - struct: EnumItem - Enum.RollOffMode.LinearSquare: - struct: EnumItem - Enum.RotationOrder.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RotationOrder.XYZ: - struct: EnumItem - Enum.RotationOrder.XZY: - struct: EnumItem - Enum.RotationOrder.YXZ: - struct: EnumItem - Enum.RotationOrder.YZX: - struct: EnumItem - Enum.RotationOrder.ZXY: - struct: EnumItem - Enum.RotationOrder.ZYX: - struct: EnumItem - Enum.RotationType.CameraRelative: - struct: EnumItem - Enum.RotationType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RotationType.MovementRelative: - struct: EnumItem - Enum.RtlTextSupport.Default: - struct: EnumItem - Enum.RtlTextSupport.Disabled: - struct: EnumItem - Enum.RtlTextSupport.Enabled: - struct: EnumItem - Enum.RtlTextSupport.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RunContext.Client: - struct: EnumItem - Enum.RunContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RunContext.Legacy: - struct: EnumItem - Enum.RunContext.Plugin: - struct: EnumItem - Enum.RunContext.Server: - struct: EnumItem - Enum.RuntimeUndoBehavior.Aggregate: - struct: EnumItem - Enum.RuntimeUndoBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RuntimeUndoBehavior.Hybrid: - struct: EnumItem - Enum.RuntimeUndoBehavior.Snapshot: - struct: EnumItem - Enum.SafeAreaCompatibility.FullscreenExtension: - struct: EnumItem - Enum.SafeAreaCompatibility.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SafeAreaCompatibility.None: - struct: EnumItem - Enum.SalesTypeFilter.All: - struct: EnumItem - Enum.SalesTypeFilter.Collectibles: - struct: EnumItem - Enum.SalesTypeFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SalesTypeFilter.Premium: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadDistanceScale: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadFieldOfViewDeg: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadThumbnailType: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadYRotDeg: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SaveAvatarThumbnailCustomizationFailure.Other: - struct: EnumItem - Enum.SaveFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SaveFilter.SaveAll: - struct: EnumItem - Enum.SaveFilter.SaveGame: - struct: EnumItem - Enum.SaveFilter.SaveWorld: - struct: EnumItem - Enum.SavedQualitySetting.Automatic: - struct: EnumItem - Enum.SavedQualitySetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SavedQualitySetting.QualityLevel1: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel10: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel2: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel3: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel4: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel5: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel6: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel7: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel8: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel9: - struct: EnumItem - Enum.ScaleType.Crop: - struct: EnumItem - Enum.ScaleType.Fit: - struct: EnumItem - Enum.ScaleType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScaleType.Slice: - struct: EnumItem - Enum.ScaleType.Stretch: - struct: EnumItem - Enum.ScaleType.Tile: - struct: EnumItem - Enum.ScopeCheckResult.BackendError: - struct: EnumItem - Enum.ScopeCheckResult.ConsentAccepted: - struct: EnumItem - Enum.ScopeCheckResult.ConsentDenied: - struct: EnumItem - Enum.ScopeCheckResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScopeCheckResult.InvalidArgument: - struct: EnumItem - Enum.ScopeCheckResult.InvalidScopes: - struct: EnumItem - Enum.ScopeCheckResult.NoUserInput: - struct: EnumItem - Enum.ScopeCheckResult.Timeout: - struct: EnumItem - Enum.ScopeCheckResult.UnexpectedError: - struct: EnumItem - Enum.ScreenInsets.CoreUISafeInsets: - struct: EnumItem - Enum.ScreenInsets.DeviceSafeInsets: - struct: EnumItem - Enum.ScreenInsets.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScreenInsets.None: - struct: EnumItem - Enum.ScreenOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScreenOrientation.LandscapeLeft: - struct: EnumItem - Enum.ScreenOrientation.LandscapeRight: - struct: EnumItem - Enum.ScreenOrientation.LandscapeSensor: - struct: EnumItem - Enum.ScreenOrientation.Portrait: - struct: EnumItem - Enum.ScreenOrientation.Sensor: - struct: EnumItem - Enum.ScrollBarInset.Always: - struct: EnumItem - Enum.ScrollBarInset.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScrollBarInset.None: - struct: EnumItem - Enum.ScrollBarInset.ScrollBar: - struct: EnumItem - Enum.ScrollingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScrollingDirection.X: - struct: EnumItem - Enum.ScrollingDirection.XY: - struct: EnumItem - Enum.ScrollingDirection.Y: - struct: EnumItem - Enum.SelectionBehavior.Escape: - struct: EnumItem - Enum.SelectionBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SelectionBehavior.Stop: - struct: EnumItem - Enum.SensorMode.Floor: - struct: EnumItem - Enum.SensorMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SensorMode.Ladder: - struct: EnumItem - Enum.SensorUpdateType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SensorUpdateType.Manual: - struct: EnumItem - Enum.SensorUpdateType.OnRead: - struct: EnumItem - Enum.ServerAudioBehavior.Enabled: - struct: EnumItem - Enum.ServerAudioBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ServerAudioBehavior.Muted: - struct: EnumItem - Enum.ServerAudioBehavior.OnlineGame: - struct: EnumItem - Enum.ServiceVisibility.Always: - struct: EnumItem - Enum.ServiceVisibility.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ServiceVisibility.Off: - struct: EnumItem - Enum.ServiceVisibility.WithChildren: - struct: EnumItem - Enum.Severity.Error: - struct: EnumItem - Enum.Severity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Severity.Warning: - struct: EnumItem - Enum.SignalBehavior.AncestryDeferred: - struct: EnumItem - Enum.SignalBehavior.Default: - struct: EnumItem - Enum.SignalBehavior.Deferred: - struct: EnumItem - Enum.SignalBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SignalBehavior.Immediate: - struct: EnumItem - Enum.SizeConstraint.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SizeConstraint.RelativeXX: - struct: EnumItem - Enum.SizeConstraint.RelativeXY: - struct: EnumItem - Enum.SizeConstraint.RelativeYY: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.Disabled: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SolverConvergenceVisualizationMode.PerEdge: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.PerIsland: - struct: EnumItem - Enum.SortDirection.Ascending: - struct: EnumItem - Enum.SortDirection.Descending: - struct: EnumItem - Enum.SortDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SortOrder.Custom: - struct: EnumItem - Enum.SortOrder.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SortOrder.LayoutOrder: - struct: EnumItem - Enum.SortOrder.Name: - struct: EnumItem - Enum.SpecialKey.ChatHotkey: - struct: EnumItem - Enum.SpecialKey.End: - struct: EnumItem - Enum.SpecialKey.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SpecialKey.Home: - struct: EnumItem - Enum.SpecialKey.Insert: - struct: EnumItem - Enum.SpecialKey.PageDown: - struct: EnumItem - Enum.SpecialKey.PageUp: - struct: EnumItem - Enum.StartCorner.BottomLeft: - struct: EnumItem - Enum.StartCorner.BottomRight: - struct: EnumItem - Enum.StartCorner.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StartCorner.TopLeft: - struct: EnumItem - Enum.StartCorner.TopRight: - struct: EnumItem - Enum.Status.Confusion: - struct: EnumItem - Enum.Status.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Status.Poison: - struct: EnumItem - Enum.StreamOutBehavior.Default: - struct: EnumItem - Enum.StreamOutBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StreamOutBehavior.LowMemory: - struct: EnumItem - Enum.StreamOutBehavior.Opportunistic: - struct: EnumItem - Enum.StreamingIntegrityMode.Default: - struct: EnumItem - Enum.StreamingIntegrityMode.Disabled: - struct: EnumItem - Enum.StreamingIntegrityMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StreamingIntegrityMode.MinimumRadiusPause: - struct: EnumItem - Enum.StreamingIntegrityMode.PauseOutsideLoadedArea: - struct: EnumItem - Enum.StreamingPauseMode.ClientPhysicsPause: - struct: EnumItem - Enum.StreamingPauseMode.Default: - struct: EnumItem - Enum.StreamingPauseMode.Disabled: - struct: EnumItem - Enum.StreamingPauseMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioCloseMode.CloseDoc: - struct: EnumItem - Enum.StudioCloseMode.CloseStudio: - struct: EnumItem - Enum.StudioCloseMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioCloseMode.None: - struct: EnumItem - Enum.StudioDataModelType.Edit: - struct: EnumItem - Enum.StudioDataModelType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioDataModelType.None: - struct: EnumItem - Enum.StudioDataModelType.PlayClient: - struct: EnumItem - Enum.StudioDataModelType.PlayServer: - struct: EnumItem - Enum.StudioDataModelType.Standalone: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.ActiveLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Background: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Bool: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Bracket: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Builtin: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Comment: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DebuggerCurrentLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DebuggerErrorLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Default: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DocViewCodeBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Error: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.FindSelectionBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Function: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.FunctionName: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioScriptEditorColorCategories.Keyword: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Local: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.LuauKeyword: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MatchingWordBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuBorder: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuPrimaryText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuScrollbarBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuScrollbarHandle: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSecondaryText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSelectedBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSelectedText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Method: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Nil: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Number: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Operator: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Property: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Ruler: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.SelectionBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.SelectionText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Self: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.String: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.TODO: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Warning: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Whitespace: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Custom: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Extra1: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Extra2: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioScriptEditorColorPresets.RobloxDefault: - struct: EnumItem - Enum.StudioStyleGuideColor.AttributeCog: - struct: EnumItem - Enum.StudioStyleGuideColor.Border: - struct: EnumItem - Enum.StudioStyleGuideColor.BrightText: - struct: EnumItem - Enum.StudioStyleGuideColor.Button: - struct: EnumItem - Enum.StudioStyleGuideColor.ButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.ButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.CategoryItem: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatIncomingBgColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatIncomingTextColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatModeratedMessageColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatOutgoingBgColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatOutgoingTextColor: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldIndicator: - struct: EnumItem - Enum.StudioStyleGuideColor.ColorPickerFrame: - struct: EnumItem - Enum.StudioStyleGuideColor.CurrentMarker: - struct: EnumItem - Enum.StudioStyleGuideColor.Dark: - struct: EnumItem - Enum.StudioStyleGuideColor.DebuggerCurrentLine: - struct: EnumItem - Enum.StudioStyleGuideColor.DebuggerErrorLine: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButton: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogMainButton: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogMainButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathText: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNum: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumAdditionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumDeletionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumNoChangeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumSeparatorBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextAddition: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextAdditionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextDeletion: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextDeletionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextHunkInfo: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextNoChange: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextNoChangeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextSeparatorBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DimmedText: - struct: EnumItem - Enum.StudioStyleGuideColor.DocViewCodeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DropShadow: - struct: EnumItem - Enum.StudioStyleGuideColor.Dropdown: - struct: EnumItem - Enum.StudioStyleGuideColor.EmulatorBar: - struct: EnumItem - Enum.StudioStyleGuideColor.EmulatorDropDown: - struct: EnumItem - Enum.StudioStyleGuideColor.ErrorText: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonAccent: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonBorderAlt: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonChecked: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonDefault: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonHover: - struct: EnumItem - Enum.StudioStyleGuideColor.GameSettingsTableItem: - struct: EnumItem - Enum.StudioStyleGuideColor.GameSettingsTooltip: - struct: EnumItem - Enum.StudioStyleGuideColor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioStyleGuideColor.HeaderSection: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoBarWarningBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoBarWarningText: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoText: - struct: EnumItem - Enum.StudioStyleGuideColor.InputFieldBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.InputFieldBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.Item: - struct: EnumItem - Enum.StudioStyleGuideColor.Light: - struct: EnumItem - Enum.StudioStyleGuideColor.LinkText: - struct: EnumItem - Enum.StudioStyleGuideColor.MainBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.MainButton: - struct: EnumItem - Enum.StudioStyleGuideColor.MainText: - struct: EnumItem - Enum.StudioStyleGuideColor.Mid: - struct: EnumItem - Enum.StudioStyleGuideColor.Midlight: - struct: EnumItem - Enum.StudioStyleGuideColor.Notification: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonButton: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonTab: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonTabTopBar: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBool: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBracket: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBuiltInFunction: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptComment: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptEditorCurrentLine: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptError: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFindSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFunction: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFunctionName: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptKeyword: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptLocal: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptLuauKeyword: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptMatchingWordSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptMethod: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptNil: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptNumber: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptOperator: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptProperty: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptRuler: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelectionText: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelf: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSideWidget: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptString: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptText: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptTodo: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptWarning: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptWhitespace: - struct: EnumItem - Enum.StudioStyleGuideColor.ScrollBar: - struct: EnumItem - Enum.StudioStyleGuideColor.ScrollBarBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.SensitiveText: - struct: EnumItem - Enum.StudioStyleGuideColor.Separator: - struct: EnumItem - Enum.StudioStyleGuideColor.Shadow: - struct: EnumItem - Enum.StudioStyleGuideColor.StatusBar: - struct: EnumItem - Enum.StudioStyleGuideColor.SubText: - struct: EnumItem - Enum.StudioStyleGuideColor.Tab: - struct: EnumItem - Enum.StudioStyleGuideColor.TabBar: - struct: EnumItem - Enum.StudioStyleGuideColor.TableItem: - struct: EnumItem - Enum.StudioStyleGuideColor.Titlebar: - struct: EnumItem - Enum.StudioStyleGuideColor.TitlebarText: - struct: EnumItem - Enum.StudioStyleGuideColor.Tooltip: - struct: EnumItem - Enum.StudioStyleGuideColor.ViewPortBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.WarningText: - struct: EnumItem - Enum.StudioStyleGuideModifier.Default: - struct: EnumItem - Enum.StudioStyleGuideModifier.Disabled: - struct: EnumItem - Enum.StudioStyleGuideModifier.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioStyleGuideModifier.Hover: - struct: EnumItem - Enum.StudioStyleGuideModifier.Pressed: - struct: EnumItem - Enum.StudioStyleGuideModifier.Selected: - struct: EnumItem - Enum.Style.Alternating Supports: - struct: EnumItem - deprecated: - message: Enum.Style.Alternating Supports was replaced with Enum.Style.AlternatingSupports - replace: - - Enum.Style.AlternatingSupports - Enum.Style.AlternatingSupports: - struct: EnumItem - Enum.Style.Bridge Style Supports: - struct: EnumItem - deprecated: - message: Enum.Style.Bridge Style Supports was replaced with Enum.Style.BridgeStyleSupports - replace: - - Enum.Style.BridgeStyleSupports - Enum.Style.BridgeStyleSupports: - struct: EnumItem - Enum.Style.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Style.No Supports: - struct: EnumItem - deprecated: - message: Enum.Style.No Supports was replaced with Enum.Style.NoSupports - replace: - - Enum.Style.NoSupports - Enum.Style.NoSupports: - struct: EnumItem - Enum.SurfaceConstraint.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceConstraint.Hinge: - struct: EnumItem - Enum.SurfaceConstraint.Motor: - struct: EnumItem - Enum.SurfaceConstraint.None: - struct: EnumItem - Enum.SurfaceConstraint.SteppingMotor: - struct: EnumItem - Enum.SurfaceGuiShape.CurvedHorizontally: - struct: EnumItem - Enum.SurfaceGuiShape.Flat: - struct: EnumItem - Enum.SurfaceGuiShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceGuiSizingMode.FixedSize: - struct: EnumItem - Enum.SurfaceGuiSizingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceGuiSizingMode.PixelsPerStud: - struct: EnumItem - Enum.SurfaceType.Bumps: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Bumps was replaced with Enum.SurfaceType.Glue - replace: - - Enum.SurfaceType.Glue - Enum.SurfaceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceType.Glue: - struct: EnumItem - Enum.SurfaceType.Hinge: - struct: EnumItem - Enum.SurfaceType.Inlet: - struct: EnumItem - Enum.SurfaceType.Motor: - struct: EnumItem - Enum.SurfaceType.Smooth: - struct: EnumItem - Enum.SurfaceType.SmoothNoOutlines: - struct: EnumItem - Enum.SurfaceType.Spawn: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Spawn was replaced with Enum.SurfaceType.Smooth - replace: - - Enum.SurfaceType.Smooth - Enum.SurfaceType.SteppingMotor: - struct: EnumItem - Enum.SurfaceType.Studs: - struct: EnumItem - Enum.SurfaceType.Universal: - struct: EnumItem - Enum.SurfaceType.Unjoinable: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Unjoinable was replaced with Enum.SurfaceType.Smooth - replace: - - Enum.SurfaceType.Smooth - Enum.SurfaceType.Weld: - struct: EnumItem - Enum.SwipeDirection.Down: - struct: EnumItem - Enum.SwipeDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SwipeDirection.Left: - struct: EnumItem - Enum.SwipeDirection.None: - struct: EnumItem - Enum.SwipeDirection.Right: - struct: EnumItem - Enum.SwipeDirection.Up: - struct: EnumItem - Enum.TableMajorAxis.ColumnMajor: - struct: EnumItem - Enum.TableMajorAxis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TableMajorAxis.RowMajor: - struct: EnumItem - Enum.Technology.Compatibility: - struct: EnumItem - Enum.Technology.Future: - struct: EnumItem - Enum.Technology.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Technology.Legacy: - struct: EnumItem - Enum.Technology.ShadowMap: - struct: EnumItem - Enum.Technology.Voxel: - struct: EnumItem - Enum.TeleportMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportMethod.TeleportPartyAsync: - struct: EnumItem - Enum.TeleportMethod.TeleportToPlaceInstance: - struct: EnumItem - Enum.TeleportMethod.TeleportToPrivateServer: - struct: EnumItem - Enum.TeleportMethod.TeleportToSpawnByName: - struct: EnumItem - Enum.TeleportMethod.TeleportUnknown: - struct: EnumItem - Enum.TeleportResult.Failure: - struct: EnumItem - Enum.TeleportResult.Flooded: - struct: EnumItem - Enum.TeleportResult.GameEnded: - struct: EnumItem - Enum.TeleportResult.GameFull: - struct: EnumItem - Enum.TeleportResult.GameNotFound: - struct: EnumItem - Enum.TeleportResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportResult.IsTeleporting: - struct: EnumItem - Enum.TeleportResult.Success: - struct: EnumItem - Enum.TeleportResult.Unauthorized: - struct: EnumItem - Enum.TeleportState.Failed: - struct: EnumItem - Enum.TeleportState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportState.InProgress: - struct: EnumItem - Enum.TeleportState.RequestedFromServer: - struct: EnumItem - Enum.TeleportState.Started: - struct: EnumItem - Enum.TeleportState.WaitingForServer: - struct: EnumItem - Enum.TeleportType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportType.ToInstance: - struct: EnumItem - Enum.TeleportType.ToPlace: - struct: EnumItem - Enum.TeleportType.ToReservedServer: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Convert: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditAddTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditReplaceTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditSeaLevelTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Generate: - struct: EnumItem - Enum.TerrainAcquisitionMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TerrainAcquisitionMethod.Import: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Legacy: - struct: EnumItem - Enum.TerrainAcquisitionMethod.None: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Other: - struct: EnumItem - Enum.TerrainAcquisitionMethod.RegionFillTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.RegionPasteTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Template: - struct: EnumItem - Enum.TerrainFace.Bottom: - struct: EnumItem - Enum.TerrainFace.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TerrainFace.Side: - struct: EnumItem - Enum.TerrainFace.Top: - struct: EnumItem - Enum.TextChatMessageStatus.Floodchecked: - struct: EnumItem - Enum.TextChatMessageStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextChatMessageStatus.InvalidPrivacySettings: - struct: EnumItem - Enum.TextChatMessageStatus.InvalidTextChannelPermissions: - struct: EnumItem - Enum.TextChatMessageStatus.MessageTooLong: - struct: EnumItem - Enum.TextChatMessageStatus.Sending: - struct: EnumItem - Enum.TextChatMessageStatus.Success: - struct: EnumItem - Enum.TextChatMessageStatus.TextFilterFailed: - struct: EnumItem - Enum.TextChatMessageStatus.Unknown: - struct: EnumItem - Enum.TextFilterContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextFilterContext.PrivateChat: - struct: EnumItem - Enum.TextFilterContext.PublicChat: - struct: EnumItem - Enum.TextInputType.Default: - struct: EnumItem - Enum.TextInputType.Email: - struct: EnumItem - Enum.TextInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextInputType.NoSuggestions: - struct: EnumItem - Enum.TextInputType.Number: - struct: EnumItem - Enum.TextInputType.OneTimePassword: - struct: EnumItem - Enum.TextInputType.Password: - struct: EnumItem - Enum.TextInputType.PasswordShown: - struct: EnumItem - Enum.TextInputType.Phone: - struct: EnumItem - Enum.TextInputType.Username: - struct: EnumItem - Enum.TextTruncate.AtEnd: - struct: EnumItem - Enum.TextTruncate.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextTruncate.None: - struct: EnumItem - Enum.TextXAlignment.Center: - struct: EnumItem - Enum.TextXAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextXAlignment.Left: - struct: EnumItem - Enum.TextXAlignment.Right: - struct: EnumItem - Enum.TextYAlignment.Bottom: - struct: EnumItem - Enum.TextYAlignment.Center: - struct: EnumItem - Enum.TextYAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextYAlignment.Top: - struct: EnumItem - Enum.TextureMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextureMode.Static: - struct: EnumItem - Enum.TextureMode.Stretch: - struct: EnumItem - Enum.TextureMode.Wrap: - struct: EnumItem - Enum.TextureQueryType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextureQueryType.Humanoid: - struct: EnumItem - Enum.TextureQueryType.HumanoidOrphaned: - struct: EnumItem - Enum.TextureQueryType.NonHumanoid: - struct: EnumItem - Enum.TextureQueryType.NonHumanoidOrphaned: - struct: EnumItem - Enum.ThreadPoolConfig.Auto: - struct: EnumItem - Enum.ThreadPoolConfig.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThreadPoolConfig.PartialThread: - struct: EnumItem - deprecated: - message: Enum.ThreadPoolConfig.PartialThread was replaced with Enum.ThreadPoolConfig.Auto - replace: - - Enum.ThreadPoolConfig.Auto - Enum.ThreadPoolConfig.PerCore1: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore2: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore3: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore4: - struct: EnumItem - Enum.ThreadPoolConfig.Threads1: - struct: EnumItem - Enum.ThreadPoolConfig.Threads16: - struct: EnumItem - Enum.ThreadPoolConfig.Threads2: - struct: EnumItem - Enum.ThreadPoolConfig.Threads3: - struct: EnumItem - Enum.ThreadPoolConfig.Threads4: - struct: EnumItem - Enum.ThreadPoolConfig.Threads8: - struct: EnumItem - Enum.ThrottlingPriority.Default: - struct: EnumItem - Enum.ThrottlingPriority.ElevatedOnServer: - struct: EnumItem - Enum.ThrottlingPriority.Extreme: - struct: EnumItem - Enum.ThrottlingPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailSize.Size100x100: - struct: EnumItem - Enum.ThumbnailSize.Size150x150: - struct: EnumItem - Enum.ThumbnailSize.Size180x180: - struct: EnumItem - Enum.ThumbnailSize.Size352x352: - struct: EnumItem - Enum.ThumbnailSize.Size420x420: - struct: EnumItem - Enum.ThumbnailSize.Size48x48: - struct: EnumItem - Enum.ThumbnailSize.Size60x60: - struct: EnumItem - Enum.ThumbnailType.AvatarBust: - struct: EnumItem - Enum.ThumbnailType.AvatarThumbnail: - struct: EnumItem - Enum.ThumbnailType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailType.HeadShot: - struct: EnumItem - Enum.TickCountSampleMethod.Benchmark: - struct: EnumItem - Enum.TickCountSampleMethod.Fast: - struct: EnumItem - Enum.TickCountSampleMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TickCountSampleMethod.Precise: - struct: EnumItem - Enum.TopBottom.Bottom: - struct: EnumItem - Enum.TopBottom.Center: - struct: EnumItem - Enum.TopBottom.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TopBottom.Top: - struct: EnumItem - Enum.TouchCameraMovementMode.Classic: - struct: EnumItem - Enum.TouchCameraMovementMode.Default: - struct: EnumItem - Enum.TouchCameraMovementMode.Follow: - struct: EnumItem - Enum.TouchCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TouchCameraMovementMode.Orbital: - struct: EnumItem - Enum.TouchMovementMode.ClickToMove: - struct: EnumItem - Enum.TouchMovementMode.DPad: - struct: EnumItem - Enum.TouchMovementMode.Default: - struct: EnumItem - Enum.TouchMovementMode.DynamicThumbstick: - struct: EnumItem - Enum.TouchMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TouchMovementMode.Thumbpad: - struct: EnumItem - Enum.TouchMovementMode.Thumbstick: - struct: EnumItem - Enum.TrackerError.AudioError: - struct: EnumItem - Enum.TrackerError.AudioNoPermission: - struct: EnumItem - Enum.TrackerError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerError.InitFailed: - struct: EnumItem - Enum.TrackerError.NoAudio: - struct: EnumItem - Enum.TrackerError.NoService: - struct: EnumItem - Enum.TrackerError.NoVideo: - struct: EnumItem - Enum.TrackerError.Ok: - struct: EnumItem - Enum.TrackerError.VideoError: - struct: EnumItem - Enum.TrackerError.VideoNoPermission: - struct: EnumItem - Enum.TrackerError.VideoUnsupported: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.Auto: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ExtrapolateFacsAndPose: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ExtrapolateFacsOnly: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ForceDisabled: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerLodFlagMode.Auto: - struct: EnumItem - Enum.TrackerLodFlagMode.ForceFalse: - struct: EnumItem - Enum.TrackerLodFlagMode.ForceTrue: - struct: EnumItem - Enum.TrackerLodFlagMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerLodValueMode.Auto: - struct: EnumItem - Enum.TrackerLodValueMode.Force0: - struct: EnumItem - Enum.TrackerLodValueMode.Force1: - struct: EnumItem - Enum.TrackerLodValueMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerMode.Audio: - struct: EnumItem - Enum.TrackerMode.AudioVideo: - struct: EnumItem - Enum.TrackerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerMode.None: - struct: EnumItem - Enum.TrackerMode.Video: - struct: EnumItem - Enum.TrackerPromptEvent.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerPromptEvent.LODCameraRecommendDisable: - struct: EnumItem - Enum.TriStateBoolean.False: - struct: EnumItem - Enum.TriStateBoolean.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TriStateBoolean.True: - struct: EnumItem - Enum.TriStateBoolean.Unknown: - struct: EnumItem - Enum.TweenStatus.Canceled: - struct: EnumItem - Enum.TweenStatus.Completed: - struct: EnumItem - Enum.TweenStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UITheme.Dark: - struct: EnumItem - Enum.UITheme.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UITheme.Light: - struct: EnumItem - Enum.UiMessageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UiMessageType.UiMessageError: - struct: EnumItem - Enum.UiMessageType.UiMessageInfo: - struct: EnumItem - Enum.UsageContext.Default: - struct: EnumItem - Enum.UsageContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UsageContext.Preview: - struct: EnumItem - Enum.UserCFrame.Floor: - struct: EnumItem - Enum.UserCFrame.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserCFrame.Head: - struct: EnumItem - Enum.UserCFrame.LeftHand: - struct: EnumItem - Enum.UserCFrame.RightHand: - struct: EnumItem - Enum.UserInputState.Begin: - struct: EnumItem - Enum.UserInputState.Cancel: - struct: EnumItem - Enum.UserInputState.Change: - struct: EnumItem - Enum.UserInputState.End: - struct: EnumItem - Enum.UserInputState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserInputState.None: - struct: EnumItem - Enum.UserInputType.Accelerometer: - struct: EnumItem - Enum.UserInputType.Focus: - struct: EnumItem - Enum.UserInputType.Gamepad1: - struct: EnumItem - Enum.UserInputType.Gamepad2: - struct: EnumItem - Enum.UserInputType.Gamepad3: - struct: EnumItem - Enum.UserInputType.Gamepad4: - struct: EnumItem - Enum.UserInputType.Gamepad5: - struct: EnumItem - Enum.UserInputType.Gamepad6: - struct: EnumItem - Enum.UserInputType.Gamepad7: - struct: EnumItem - Enum.UserInputType.Gamepad8: - struct: EnumItem - Enum.UserInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserInputType.Gyro: - struct: EnumItem - Enum.UserInputType.InputMethod: - struct: EnumItem - Enum.UserInputType.Keyboard: - struct: EnumItem - Enum.UserInputType.MouseButton1: - struct: EnumItem - Enum.UserInputType.MouseButton2: - struct: EnumItem - Enum.UserInputType.MouseButton3: - struct: EnumItem - Enum.UserInputType.MouseMovement: - struct: EnumItem - Enum.UserInputType.MouseWheel: - struct: EnumItem - Enum.UserInputType.None: - struct: EnumItem - Enum.UserInputType.TextInput: - struct: EnumItem - Enum.UserInputType.Touch: - struct: EnumItem - Enum.VRPlayMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRPlayMode.Seated: - struct: EnumItem - Enum.VRPlayMode.Standing: - struct: EnumItem - Enum.VRSafetyBubbleMode.Anyone: - struct: EnumItem - Enum.VRSafetyBubbleMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRSafetyBubbleMode.NoOne: - struct: EnumItem - Enum.VRSafetyBubbleMode.OnlyFriends: - struct: EnumItem - Enum.VRScaling.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRScaling.Off: - struct: EnumItem - Enum.VRScaling.World: - struct: EnumItem - Enum.VRSessionState.Focused: - struct: EnumItem - Enum.VRSessionState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRSessionState.Idle: - struct: EnumItem - Enum.VRSessionState.Undefined: - struct: EnumItem - Enum.VRSessionState.Visible: - struct: EnumItem - Enum.VRTouchpad.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRTouchpad.Left: - struct: EnumItem - Enum.VRTouchpad.Right: - struct: EnumItem - Enum.VRTouchpadMode.ABXY: - struct: EnumItem - Enum.VRTouchpadMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRTouchpadMode.Touch: - struct: EnumItem - Enum.VRTouchpadMode.VirtualThumbstick: - struct: EnumItem - Enum.VelocityConstraintMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VelocityConstraintMode.Line: - struct: EnumItem - Enum.VelocityConstraintMode.Plane: - struct: EnumItem - Enum.VelocityConstraintMode.Vector: - struct: EnumItem - Enum.VerticalAlignment.Bottom: - struct: EnumItem - Enum.VerticalAlignment.Center: - struct: EnumItem - Enum.VerticalAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VerticalAlignment.Top: - struct: EnumItem - Enum.VerticalScrollBarPosition.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VerticalScrollBarPosition.Left: - struct: EnumItem - Enum.VerticalScrollBarPosition.Right: - struct: EnumItem - Enum.VibrationMotor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VibrationMotor.Large: - struct: EnumItem - Enum.VibrationMotor.LeftHand: - struct: EnumItem - Enum.VibrationMotor.LeftTrigger: - struct: EnumItem - Enum.VibrationMotor.RightHand: - struct: EnumItem - Enum.VibrationMotor.RightTrigger: - struct: EnumItem - Enum.VibrationMotor.Small: - struct: EnumItem - Enum.VirtualCursorMode.Default: - struct: EnumItem - Enum.VirtualCursorMode.Disabled: - struct: EnumItem - Enum.VirtualCursorMode.Enabled: - struct: EnumItem - Enum.VirtualCursorMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VirtualInputMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VirtualInputMode.None: - struct: EnumItem - Enum.VirtualInputMode.Playing: - struct: EnumItem - Enum.VirtualInputMode.Recording: - struct: EnumItem - Enum.VoiceChatState.Ended: - struct: EnumItem - Enum.VoiceChatState.Failed: - struct: EnumItem - Enum.VoiceChatState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VoiceChatState.Idle: - struct: EnumItem - Enum.VoiceChatState.Joined: - struct: EnumItem - Enum.VoiceChatState.Joining: - struct: EnumItem - Enum.VoiceChatState.JoiningRetry: - struct: EnumItem - Enum.VoiceChatState.Leaving: - struct: EnumItem - Enum.VolumetricAudio.Automatic: - struct: EnumItem - Enum.VolumetricAudio.Disabled: - struct: EnumItem - Enum.VolumetricAudio.Enabled: - struct: EnumItem - Enum.VolumetricAudio.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterDirection.NegX: - struct: EnumItem - Enum.WaterDirection.NegY: - struct: EnumItem - Enum.WaterDirection.NegZ: - struct: EnumItem - Enum.WaterDirection.X: - struct: EnumItem - Enum.WaterDirection.Y: - struct: EnumItem - Enum.WaterDirection.Z: - struct: EnumItem - Enum.WaterForce.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterForce.Max: - struct: EnumItem - Enum.WaterForce.Medium: - struct: EnumItem - Enum.WaterForce.None: - struct: EnumItem - Enum.WaterForce.Small: - struct: EnumItem - Enum.WaterForce.Strong: - struct: EnumItem - Enum.WrapLayerAutoSkin.Disabled: - struct: EnumItem - Enum.WrapLayerAutoSkin.EnabledOverride: - struct: EnumItem - Enum.WrapLayerAutoSkin.EnabledPreserve: - struct: EnumItem - Enum.WrapLayerAutoSkin.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapLayerDebugMode.BoundCage: - struct: EnumItem - Enum.WrapLayerDebugMode.BoundCageAndLinks: - struct: EnumItem - Enum.WrapLayerDebugMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapLayerDebugMode.HSRInner: - struct: EnumItem - Enum.WrapLayerDebugMode.HSRInnerReverse: - struct: EnumItem - Enum.WrapLayerDebugMode.HSROuter: - struct: EnumItem - Enum.WrapLayerDebugMode.HSROuterDetail: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCage: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCageFittedToBase: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCageFittedToPrev: - struct: EnumItem - Enum.WrapLayerDebugMode.None: - struct: EnumItem - Enum.WrapLayerDebugMode.OuterCage: - struct: EnumItem - Enum.WrapLayerDebugMode.Rbf: - struct: EnumItem - Enum.WrapLayerDebugMode.Reference: - struct: EnumItem - Enum.WrapLayerDebugMode.ReferenceMeshAfterMorph: - struct: EnumItem - Enum.WrapTargetDebugMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapTargetDebugMode.None: - struct: EnumItem - Enum.WrapTargetDebugMode.OuterCageDetail: - struct: EnumItem - Enum.WrapTargetDebugMode.Rbf: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageCompressed: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageInterface: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageOriginal: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerCageCompressed: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerCageOriginal: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerInterface: - struct: EnumItem - Enum.ZIndexBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ZIndexBehavior.Global: - struct: EnumItem - Enum.ZIndexBehavior.Sibling: - struct: EnumItem - Faces.new: - args: - - type: '...' - must_use: true - FloatCurveKey.new: - args: - - type: number - - type: number - - type: - display: KeyInterpolationMode - must_use: true - Font.fromEnum: - args: - - type: - display: Font - must_use: true - Font.fromId: - args: - - type: number - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Font.fromName: - args: - - type: string - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Font.new: - args: - - type: string - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Instance.new: - args: - - type: - - Accoutrement - - Accessory - - Hat - - AdPortal - - AdvancedDragger - - AnalyticsService - - Animation - - CurveAnimation - - KeyframeSequence - - AnimationController - - AnimationRigData - - Animator - - Atmosphere - - Attachment - - Bone - - AudioSearchParams - - Backpack - - WrapLayer - - WrapTarget - - Beam - - BindableEvent - - BindableFunction - - BodyAngularVelocity - - BodyForce - - BodyGyro - - BodyPosition - - BodyThrust - - BodyVelocity - - RocketPropulsion - - Breakpoint - - Camera - - BodyColors - - CharacterMesh - - Pants - - Shirt - - ShirtGraphic - - Skin - - ClickDetector - - Clouds - - Configuration - - AlignOrientation - - AlignPosition - - AngularVelocity - - AnimationConstraint - - BallSocketConstraint - - HingeConstraint - - LineForce - - LinearVelocity - - PlaneConstraint - - Plane - - RigidConstraint - - RodConstraint - - RopeConstraint - - CylindricalConstraint - - PrismaticConstraint - - SpringConstraint - - Torque - - TorsionSpringConstraint - - UniversalConstraint - - VectorForce - - HumanoidController - - SkateboardController - - VehicleController - - AirController - - ClimbController - - GroundController - - SwimController - - ControllerManager - - CustomEvent - - CustomEventReceiver - - BlockMesh - - CylinderMesh - - FileMesh - - SpecialMesh - - DataStoreIncrementOptions - - DataStoreOptions - - DataStoreSetOptions - - DebuggerWatch - - Dialog - - DialogChoice - - Dragger - - EulerRotationCurve - - ExperienceInviteOptions - - Explosion - - FaceControls - - Decal - - Texture - - Hole - - MotorFeature - - Fire - - FloatCurve - - FlyweightService - - CSGDictionaryService - - NonReplicatedCSGDictionaryService - - Folder - - ForceField - - FunctionalTest - - GetTextBoundsParams - - CanvasGroup - - Frame - - ImageButton - - TextButton - - ImageLabel - - TextLabel - - ScrollingFrame - - TextBox - - VideoFrame - - ViewportFrame - - BillboardGui - - ScreenGui - - GuiMain - - AdGui - - SurfaceGui - - FloorWire - - SelectionBox - - BoxHandleAdornment - - ConeHandleAdornment - - CylinderHandleAdornment - - ImageHandleAdornment - - LineHandleAdornment - - SphereHandleAdornment - - WireframeHandleAdornment - - ParabolaAdornment - - SelectionSphere - - ArcHandles - - Handles - - SurfaceSelection - - SelectionPartLasso - - SelectionPointLasso - - HeightmapImporterService - - HiddenSurfaceRemovalAsset - - Highlight - - Humanoid - - HumanoidDescription - - IKControl - - RotateP - - RotateV - - Glue - - ManualGlue - - ManualWeld - - Motor - - Motor6D - - Rotate - - Snap - - VelocityMotor - - Weld - - Keyframe - - KeyframeMarker - - PointLight - - SpotLight - - SurfaceLight - - LocalizationTable - - Script - - LocalScript - - ModuleScript - - MarkerCurve - - MaterialVariant - - MemoryStoreService - - Message - - Hint - - NoCollisionConstraint - - CornerWedgePart - - Part - - FlagStand - - Seat - - SkateboardPlatform - - SpawnLocation - - WedgePart - - MeshPart - - PartOperation - - IntersectOperation - - NegateOperation - - UnionOperation - - TrussPart - - VehicleSeat - - Model - - Actor - - HopperBin - - Tool - - Flag - - WorldModel - - PartOperationAsset - - ParticleEmitter - - PathfindingLink - - PathfindingModifier - - Player - - PluginAction - - NumberPose - - Pose - - BloomEffect - - BlurEffect - - ColorCorrectionEffect - - DepthOfFieldEffect - - SunRaysEffect - - ProximityPrompt - - ProximityPromptService - - ReflectionMetadata - - ReflectionMetadataCallbacks - - ReflectionMetadataClasses - - ReflectionMetadataEnums - - ReflectionMetadataEvents - - ReflectionMetadataFunctions - - ReflectionMetadataClass - - ReflectionMetadataEnum - - ReflectionMetadataEnumItem - - ReflectionMetadataMember - - ReflectionMetadataProperties - - ReflectionMetadataYieldFunctions - - RemoteEvent - - RemoteFunction - - RenderingTest - - RotationCurve - - BuoyancySensor - - ControllerPartSensor - - Sky - - Smoke - - Sound - - ChorusSoundEffect - - CompressorSoundEffect - - DistortionSoundEffect - - EchoSoundEffect - - EqualizerSoundEffect - - FlangeSoundEffect - - PitchShiftSoundEffect - - ReverbSoundEffect - - TremoloSoundEffect - - SoundGroup - - Sparkles - - StandalonePluginScripts - - StarterGear - - SurfaceAppearance - - Team - - TeleportOptions - - TerrainDetail - - TerrainRegion - - TestService - - TextChannel - - TextChatCommand - - TextChatMessageProperties - - TrackerStreamAnimation - - Trail - - Tween - - UIAspectRatioConstraint - - UISizeConstraint - - UITextSizeConstraint - - UICorner - - UIGradient - - UIGridLayout - - UIListLayout - - UIPageLayout - - UITableLayout - - UIPadding - - UIScale - - UIStroke - - BinaryStringValue - - BoolValue - - BrickColorValue - - CFrameValue - - Color3Value - - DoubleConstrainedValue - - IntConstrainedValue - - IntValue - - NumberValue - - ObjectValue - - RayValue - - StringValue - - Vector3Value - - Vector3Curve - - VirtualInputManager - - WeldConstraint - must_use: true - NumberRange.new: - args: - - type: number - - required: false - type: number - must_use: true - NumberSequence.new: - args: - - type: any - - required: false - type: number - must_use: true - NumberSequenceKeypoint.new: - args: - - type: number - - type: number - - required: false - type: number - must_use: true - OverlapParams.new: - args: [] - must_use: true - PathWaypoint.new: - args: - - required: false - type: - display: Vector3 - - required: false - type: - display: PathWaypointAction - must_use: true - PhysicalProperties.new: - args: - - type: any - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Random.new: - args: - - required: false - type: number - must_use: true - Ray.new: - args: - - type: - display: Vector3 - - type: - display: Vector3 - must_use: true - RaycastParams.new: - args: [] - must_use: true - Rect.new: - args: - - type: any - - type: any - - required: false - type: number - - required: false - type: number - must_use: true - Region3.new: - args: - - type: - display: Vector3 - - type: - display: Vector3 - must_use: true - Region3int16.new: - args: - - required: false - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - RotationCurveKey.new: - args: - - type: number - - type: - display: CFrame - - type: - display: KeyInterpolationMode - must_use: true - TweenInfo.new: - args: - - required: false - type: number - - required: false - type: - display: EasingStyle - - required: false - type: - display: EasingDirection - - required: false - type: number - - required: false - type: bool - - required: false - type: number - must_use: true - UDim.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - UDim2.fromOffset: - args: - - required: use UDim2.new() if you want an empty UDim2 - type: number - - required: false - type: number - must_use: true - UDim2.fromScale: - args: - - required: use UDim2.new() if you want an empty UDim2 - type: number - - required: false - type: number - must_use: true - UDim2.new: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: number - - required: false - type: number - must_use: true - UserSettings: - args: [] - must_use: true - Vector2.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - Vector2.one: - property: read-only - Vector2.xAxis: - property: read-only - Vector2.yAxis: - property: read-only - Vector2.zero: - property: read-only - Vector2int16.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - Vector3.FromAxis: - args: - - type: - display: Axis - must_use: true - Vector3.FromNormalId: - args: - - type: - display: NormalId - must_use: true - Vector3.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Vector3.one: - property: read-only - Vector3.xAxis: - property: read-only - Vector3.yAxis: - property: read-only - Vector3.zAxis: - property: read-only - Vector3.zero: - property: read-only - Vector3int16.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - _G: - property: new-fields - _VERSION: - property: read-only - arg: - property: new-fields - assert: - args: - - type: any - - required: A failed assertion without a message is unhelpful to users. - type: string - bit32.arshift: - args: - - type: number - - type: number - must_use: true - bit32.band: - args: - - type: '...' - must_use: true - bit32.bnot: - args: - - type: number - must_use: true - bit32.bor: - args: - - type: '...' - must_use: true - bit32.btest: - args: - - type: '...' - must_use: true - bit32.bxor: - args: - - type: '...' - must_use: true - bit32.countlz: - args: - - type: number - must_use: true - bit32.countrz: - args: - - type: number - must_use: true - bit32.extract: - args: - - type: number - - type: number - - required: false - type: number - must_use: true - bit32.lrotate: - args: - - type: number - - type: number - must_use: true - bit32.lshift: - args: - - type: number - - type: number - must_use: true - bit32.replace: - args: - - type: number - - type: number - - type: number - - required: false - type: number - must_use: true - bit32.rrotate: - args: - - type: number - - type: number - must_use: true - bit32.rshift: - args: - - type: number - - type: number - must_use: true - collectgarbage: - args: - - type: - - count - must_use: true - coroutine.close: - args: - - type: - display: thread - coroutine.create: - args: - - type: function - must_use: true - coroutine.isyieldable: - args: [] - coroutine.resume: - args: - - type: - display: coroutine - - required: false - type: '...' - coroutine.running: - args: [] - must_use: true - coroutine.status: - args: - - type: - display: coroutine - must_use: true - coroutine.wrap: - args: - - type: function - coroutine.yield: - args: - - required: false - type: '...' - debug.info: - args: - - type: any - - type: any - - required: false - type: string - must_use: true - debug.profilebegin: - args: - - type: string - debug.profileend: - args: [] - debug.resetmemorycategory: - args: [] - debug.setmemorycategory: - args: - - type: string - debug.traceback: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - must_use: true - delay: - args: - - type: number - - type: function - elapsedTime: - args: [] - error: - args: - - required: Erroring without an explanation is unhelpful to users. - type: any - - required: false - type: number - game: - struct: DataModel - gcinfo: - args: [] - must_use: true - getfenv: - args: - - required: false - type: any - must_use: true - getmetatable: - args: - - type: table - must_use: true - io.close: - args: - - required: false - type: - display: file - io.flush: - args: [] - io.input: - args: - - required: false - type: - display: file - io.lines: - args: - - type: string - io.open: - args: - - type: string - - required: false - type: - - r - - rb - - w - - wb - - a - - ab - - r+ - - rb+ - - w+ - - wb+ - - a+ - - ab+ - io.output: - args: - - required: false - type: - display: file - io.popen: - args: - - type: string - - required: false - type: - - r - - rb - - w - - wb - - a - - ab - - r+ - - rb+ - - w+ - - wb+ - - a+ - - ab+ - io.read: - args: - - type: '...' - io.stderr: - property: read-only - io.stdin: - property: read-only - io.stdout: - property: read-only - io.tmpfile: - args: [] - io.type: - args: - - type: - display: potentially file-like object - io.write: - args: - - type: '...' - ipairs: - args: - - type: table - must_use: true - loadstring: - args: - - type: string - - required: false - type: string - math.abs: - args: - - type: number - must_use: true - math.acos: - args: - - type: number - must_use: true - math.asin: - args: - - type: number - must_use: true - math.atan: - args: - - type: number - must_use: true - math.atan2: - args: - - type: number - - type: number - must_use: true - math.ceil: - args: - - type: number - must_use: true - math.clamp: - args: - - type: number - - type: number - - type: number - must_use: true - math.cos: - args: - - type: number - must_use: true - math.cosh: - args: - - type: number - must_use: true - math.deg: - args: - - type: number - must_use: true - math.exp: - args: - - type: number - must_use: true - math.floor: - args: - - type: number - must_use: true - math.fmod: - args: - - type: number - - type: number - must_use: true - math.frexp: - args: - - type: number - must_use: true - math.huge: - property: read-only - math.ldexp: - args: - - type: number - - type: number - must_use: true - math.log: - args: - - type: number - - required: false - type: number - must_use: true - math.log10: - args: - - type: number - must_use: true - math.max: - args: - - type: number - - required: use of max only makes sense with more than 1 parameter - type: '...' - must_use: true - math.min: - args: - - type: number - - required: use of min only makes sense with more than 1 parameter - type: '...' - must_use: true - math.modf: - args: - - type: number - must_use: true - math.noise: - args: - - type: number - - required: false - type: number - - required: false - type: number - must_use: true - math.pi: - property: read-only - math.pow: - args: - - type: number - - type: number - must_use: true - math.rad: - args: - - type: number - must_use: true - math.random: - args: - - required: false - type: number - - required: false - type: number - must_use: true - math.randomseed: - args: - - type: number - math.round: - args: - - type: number - must_use: true - math.sign: - args: - - type: number - must_use: true - math.sin: - args: - - type: number - must_use: true - math.sinh: - args: - - type: number - must_use: true - math.sqrt: - args: - - type: number - must_use: true - math.tan: - args: - - type: number - must_use: true - math.tanh: - args: - - type: number - must_use: true - newproxy: - args: - - required: false - type: bool - must_use: true - next: - args: - - type: table - - required: false - type: number - os.clock: - args: [] - must_use: true - os.date: - args: - - required: false - type: string - - required: false - type: number - must_use: true - os.difftime: - args: - - type: number - - type: number - must_use: true - os.time: - args: - - required: false - type: table - must_use: true - package.cpath: - property: full-write - package.loaded: - property: new-fields - package.loaders: - property: new-fields - package.loadlib: - args: - - type: string - - type: string - package.path: - property: full-write - package.preload: - property: new-fields - package.seeall: - args: - - type: table - pairs: - args: - - type: table - must_use: true - pcall: - args: - - type: function - - required: false - type: '...' - plugin: - struct: Plugin - print: - args: - - required: false - type: '...' - rawequal: - args: - - type: any - - type: any - must_use: true - rawget: - args: - - type: any - - type: any - must_use: true - rawlen: - args: - - type: table - must_use: true - rawset: - args: - - type: any - - type: any - - type: any - require: - args: - - type: number - script: - struct: Script - select: - args: - - type: any - - type: '...' - must_use: true - setfenv: - args: - - type: any - - type: table - setmetatable: - args: - - type: table - - required: false - type: table - settings: - args: [] - shared: - property: new-fields - spawn: - args: - - type: function - string.byte: - args: - - type: string - - required: false - type: number - - required: false - type: number - string.char: - args: - - required: string.char should be used with an argument despite it not throwing - type: number - - required: false - type: '...' - must_use: true - string.find: - args: - - type: string - - type: string - - required: false - type: number - - required: false - type: bool - must_use: true - string.format: - args: - - type: string - - required: string.format should only be used for strings that need formatting - type: '...' - must_use: true - string.gmatch: - args: - - type: string - - type: string - must_use: true - string.gsub: - args: - - type: string - - type: string - - type: any - - required: false - type: number - must_use: true - string.len: - args: - - type: string - must_use: true - string.lower: - args: - - type: string - must_use: true - string.match: - args: - - type: string - - type: string - - required: false - type: number - must_use: true - string.pack: - args: - - type: string - - type: '...' - must_use: true - string.packsize: - args: - - type: string - must_use: true - string.rep: - args: - - type: string - - type: number - must_use: true - string.reverse: - args: - - type: string - must_use: true - string.split: - args: - - type: string - - required: false - type: string - must_use: true - string.sub: - args: - - type: string - - type: number - - required: false - type: number - must_use: true - string.unpack: - args: - - type: string - - type: string - - required: false - type: number - must_use: true - string.upper: - args: - - type: string - must_use: true - table.clear: - args: - - type: table - table.clone: - args: - - type: table - must_use: true - table.concat: - args: - - type: table - - required: false - type: string - - required: false - type: number - - required: false - type: number - must_use: true - table.create: - args: - - type: number - - required: false - type: any - must_use: true - table.find: - args: - - type: table - - type: any - - required: false - type: number - must_use: true - table.foreach: - args: - - type: table - - type: function - deprecated: - message: use a for loop instead. - replace: [] - table.foreachi: - args: - - type: table - - type: function - deprecated: - message: use a for loop instead. - replace: [] - table.freeze: - args: - - type: table - table.getn: - args: - - type: table - - type: number - must_use: true - deprecated: - message: '`table.getn` has been superceded by #.' - replace: - - '#%1' - table.insert: - args: - - type: table - observes: write - - type: any - - required: false - type: any - table.isfrozen: - args: - - type: table - must_use: true - table.maxn: - args: - - type: table - must_use: true - table.move: - args: - - type: table - - type: number - - type: number - - type: number - - required: false - type: table - table.pack: - args: - - type: '...' - must_use: true - table.remove: - args: - - type: table - - required: false - type: number - table.sort: - args: - - type: table - - required: false - type: function - table.unpack: - args: - - type: table - - required: false - type: number - - required: false - type: number - must_use: true - task.cancel: - args: - - type: - display: thread - task.defer: - args: - - type: function - - required: false - type: '...' - task.delay: - args: - - required: false - type: number - - type: function - - required: false - type: '...' - task.desynchronize: - args: [] - task.spawn: - args: - - type: function - - required: false - type: '...' - task.synchronize: - args: [] - task.wait: - args: - - required: false - type: number - tick: - args: [] - time: - args: [] - tonumber: - args: - - type: any - - required: false - type: number - must_use: true - tostring: - args: - - type: any - must_use: true - type: - args: - - type: any - typeof: - args: - - type: any - unpack: - args: - - type: table - - required: false - type: number - - required: false - type: number - must_use: true - utf8.char: - args: - - required: utf8.char should be used with an argument despite it not throwing - type: number - - required: false - type: '...' - must_use: true - utf8.charpattern: - property: read-only - utf8.codepoint: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.codes: - args: - - type: string - must_use: true - utf8.graphemes: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.len: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.nfcnormalize: - args: - - type: string - must_use: true - utf8.nfdnormalize: - args: - - type: string - must_use: true - utf8.offset: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - wait: - args: - - required: false - type: number - warn: - args: - - type: any - - required: false - type: '...' - workspace: - struct: Workspace - xpcall: - args: - - type: function - - required: false - type: '...' -structs: - BasePart: - '*': - struct: Instance - AncestryChanged: - struct: Event - Anchored: - property: override-fields - ApplyAngularImpulse: - args: - - required: false - type: any - method: true - ApplyImpulse: - args: - - required: false - type: any - method: true - ApplyImpulseAtPosition: - args: - - required: false - type: any - - required: false - type: any - method: true - Archivable: - property: override-fields - AssemblyAngularVelocity: - any: true - AssemblyCenterOfMass: - any: true - AssemblyLinearVelocity: - any: true - AssemblyMass: - property: read-only - AssemblyRootPart: - struct: BasePart - AttributeChanged: - struct: Event - BackParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackSurface: - property: override-fields - BackSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomSurface: - property: override-fields - BottomSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BrickColor: - property: override-fields - CFrame: - any: true - CanCollide: - property: override-fields - CanCollideWith: - args: - - required: false - type: any - method: true - CanQuery: - property: override-fields - CanSetNetworkOwnership: - args: [] - method: true - CanTouch: - property: override-fields - CastShadow: - property: override-fields - CenterOfMass: - any: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionGroup: - property: override-fields - CollisionGroupId: - property: override-fields - Color: - property: override-fields - CurrentPhysicalProperties: - property: read-only - CustomPhysicalProperties: - property: override-fields - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Elasticity: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - ExtentsCFrame: - any: true - ExtentsSize: - any: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - Friction: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontSurface: - property: override-fields - FrontSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetConnectedParts: - args: - - required: false - type: any - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetJoints: - args: [] - method: true - GetMass: - args: [] - method: true - GetNetworkOwner: - args: [] - method: true - GetNetworkOwnershipAuto: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetRootPart: - args: [] - method: true - GetTouchingParts: - args: [] - method: true - GetVelocityAtPosition: - args: - - required: false - type: any - method: true - IntersectAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGrounded: - args: [] - method: true - LeftParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftSurface: - property: override-fields - LeftSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LocalSimulationTouched: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - LocalTransparencyModifier: - property: override-fields - Locked: - property: override-fields - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Mass: - property: read-only - Massless: - property: override-fields - Material: - property: override-fields - MaterialVariant: - property: override-fields - Name: - property: override-fields - Orientation: - any: true - Origin: - any: true - OutfitChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - Pivot Offset: - any: true - PivotOffset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - Position: - any: true - ReceiveAge: - property: read-only - Reflectance: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Resize: - args: - - required: false - type: any - - required: false - type: any - method: true - ResizeIncrement: - property: read-only - ResizeableFaces: - property: read-only - RightParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightSurface: - property: override-fields - RightSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RootPriority: - property: override-fields - RotVelocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - Rotation: - any: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetNetworkOwner: - args: - - required: false - type: any - method: true - SetNetworkOwnershipAuto: - args: [] - method: true - Size: - any: true - SpecificGravity: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - StoppedTouching: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - SubtractAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - TopParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopSurface: - property: override-fields - TopSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TouchEnded: - struct: Event - Touched: - struct: Event - Transparency: - property: override-fields - UnionAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Velocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - brickColor: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getMass: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - resize: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - subtractAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - unionAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Camera: - '*': - struct: Instance - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - CFrame: - any: true - CameraSubject: - struct: Instance - CameraType: - property: override-fields - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CoordinateFrame: - any: true - deprecated: - message: this property is deprecated. - replace: [] - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - DiagonalFieldOfView: - property: override-fields - FieldOfView: - property: override-fields - FieldOfViewMode: - property: override-fields - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FirstPersonTransition: - struct: Event - Focus: - any: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetLargestCutoffDistance: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetPanSpeed: - args: [] - method: true - GetPartsObscuringTarget: - args: - - required: false - type: any - - required: false - type: any - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - GetRoll: - args: [] - method: true - GetTiltSpeed: - args: [] - method: true - HeadLocked: - property: override-fields - HeadScale: - property: override-fields - Interpolate: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - InterpolationFinished: - struct: Event - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - MaxAxisFieldOfView: - property: override-fields - Name: - property: override-fields - NearPlaneZ: - property: read-only - PanUnits: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ScreenPointToRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetCameraPanMode: - args: - - required: false - type: any - method: true - SetImageServerView: - args: - - required: false - type: any - method: true - SetRoll: - args: - - required: false - type: any - method: true - TiltUnits: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - ViewportPointToRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - ViewportSize: - any: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WorldToScreenPoint: - args: - - required: false - type: any - method: true - WorldToViewportPoint: - args: - - required: false - type: any - method: true - Zoom: - args: - - required: false - type: any - method: true - ZoomToExtents: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - focus: - any: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - DataModel: - '*': - struct: Instance - AllowedGearTypeChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - BindToClose: - args: - - required: false - type: any - method: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - Close: - struct: Event - CloseLate: - struct: Event - CreatorId: - property: read-only - CreatorType: - property: read-only - DefineFastFlag: - args: - - required: false - type: any - - required: false - type: any - method: true - DefineFastInt: - args: - - required: false - type: any - - required: false - type: any - method: true - DefineFastString: - args: - - required: false - type: any - - required: false - type: any - method: true - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FindService: - args: - - required: false - type: any - method: true - GameId: - property: read-only - GearGenreSetting: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - Genre: - property: read-only - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetEngineFeature: - args: - - required: false - type: any - method: true - GetFastFlag: - args: - - required: false - type: any - method: true - GetFastInt: - args: - - required: false - type: any - method: true - GetFastString: - args: - - required: false - type: any - method: true - GetFullName: - args: [] - method: true - GetJobsInfo: - args: [] - method: true - GetMessage: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetObjects: - args: - - required: false - type: any - method: true - GetObjectsAllOrNone: - args: - - required: false - type: any - - required: false - type: any - method: true - GetObjectsAsync: - args: - - required: false - type: any - method: true - GetObjectsList: - args: - - required: false - type: any - method: true - GetPlaySessionId: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRemoteBuildMode: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetService: - args: - - type: - - AdService - - AnalyticsService - - AnimationClipProvider - - AnimationFromVideoCreatorService - - AnimationFromVideoCreatorStudioService - - AppUpdateService - - AssetCounterService - - AssetDeliveryProxy - - AssetImportService - - AssetManagerService - - AssetService - - AvatarEditorService - - AvatarImportService - - BadgeService - - CoreGui - - StarterGui - - BrowserService - - BulkImportService - - CacheableContentProvider - - HSRDataContentProvider - - MeshContentProvider - - SolidModelContentProvider - - CalloutService - - ChangeHistoryService - - Chat - - ClusterPacketCache - - CollectionService - - CommandService - - ConfigureServerService - - ContentProvider - - ContextActionService - - ControllerService - - CookiesService - - CorePackages - - CoreScriptDebuggingManagerHelper - - CoreScriptSyncService - - CrossDMScriptChangeListener - - DataModelPatchService - - DataStoreService - - Debris - - DebuggablePluginWatcher - - DebuggerConnectionManager - - DebuggerManager - - DebuggerUIService - - DeviceIdService - - DraftsService - - DraggerService - - EventIngestService - - ExperienceAuthService - - FaceAnimatorService - - FacialAnimationRecordingService - - FacialAnimationStreamingService - - FacialAnimationStreamingServiceV2 - - FlagStandService - - FlyweightService - - CSGDictionaryService - - NonReplicatedCSGDictionaryService - - FriendService - - GamePassService - - GamepadService - - Geometry - - GoogleAnalyticsConfiguration - - GroupService - - GuiService - - GuidRegistryService - - HapticService - - HeightmapImporterService - - Hopper - - HttpRbxApiService - - HttpService - - ILegacyStudioBridge - - LegacyStudioBridge - - IXPService - - IncrementalPatchBuilder - - InsertService - - JointsService - - KeyboardService - - KeyframeSequenceProvider - - LSPFileSyncService - - LanguageService - - Lighting - - LiveScriptingService - - LocalStorageService - - AppStorageService - - UserStorageService - - LocalizationService - - LodDataService - - LogService - - LoginService - - LuaWebService - - LuauScriptAnalyzerService - - MarketplaceService - - MaterialGenerationService - - MaterialService - - MemStorageService - - MemoryStoreService - - MessageBusService - - MessagingService - - MetaBreakpointManager - - MouseService - - NetworkClient - - NetworkServer - - NetworkSettings - - NotificationService - - Workspace - - PackageService - - PackageUIService - - PatchBundlerFileWatch - - PathfindingService - - PermissionsService - - PhysicsService - - PlayerEmulatorService - - Players - - PluginDebugService - - PluginGuiService - - PluginManagementService - - PluginPolicyService - - PointsService - - PolicyService - - ProcessInstancePhysicsService - - ProximityPromptService - - PublishService - - RbxAnalyticsService - - RemoteCursorService - - RemoteDebuggerServer - - RenderSettings - - ReplicatedFirst - - ReplicatedStorage - - RobloxPluginGuiService - - RobloxReplicatedStorage - - RtMessagingService - - RunService - - RuntimeScriptService - - SafetyService - - ScriptChangeService - - ScriptCloneWatcher - - ScriptCloneWatcherHelper - - ScriptContext - - ScriptEditorService - - ScriptRegistrationService - - ScriptService - - Selection - - SelectionHighlightManager - - ServerScriptService - - ServerStorage - - ServiceVisibilityService - - SessionService - - SharedTableRegistry - - ShorelineUpgraderService - - SmoothVoxelsUpgraderService - - SnippetService - - SocialService - - SoundService - - SpawnerService - - StarterPack - - StarterPlayer - - Stats - - Studio - - StudioAssetService - - StudioData - - StudioDeviceEmulatorService - - StudioPublishService - - StudioScriptDebugEventListener - - StudioSdkService - - StudioService - - TaskScheduler - - TeamCreateData - - TeamCreatePublishService - - TeamCreateService - - Teams - - TeleportService - - TemporaryCageMeshProvider - - TemporaryScriptService - - TestService - - TextBoxService - - TextChatService - - TextService - - ThirdPartyUserService - - TimerService - - ToastNotificationService - - TouchInputService - - TracerService - - TweenService - - UGCValidationService - - UnvalidatedAssetService - - UserInputService - - UserService - - VRService - - VersionControlService - - VideoCaptureService - - VirtualInputManager - - VirtualUser - - VisibilityCheckDispatcher - - VisibilityService - - Visit - - VoiceChatInternal - - VoiceChatService - method: true - must_use: true - GraphicsQualityChangeRequest: - struct: Event - HttpGetAsync: - args: - - required: false - type: any - - required: false - type: any - method: true - HttpPostAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - InsertObjectsAndJoinIfLegacyAsync: - args: - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsContentLoaded: - args: [] - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGearTypeAllowed: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IsLoaded: - args: [] - method: true - IsUniverseMetadataLoaded: - args: [] - method: true - ItemChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - JobId: - property: read-only - Load: - args: - - required: false - type: any - method: true - Loaded: - struct: Event - Name: - property: override-fields - OnClose: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - OpenScreenshotsFolder: - args: [] - method: true - OpenVideosFolder: - args: [] - method: true - Parent: - struct: Instance - PlaceId: - property: read-only - PlaceVersion: - property: read-only - PrivateServerId: - property: read-only - PrivateServerOwnerId: - property: read-only - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ReportInGoogleAnalytics: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SavePlace: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - ScreenshotReady: - struct: Event - ScreenshotSavedToAlbum: - struct: Event - ServiceAdded: - struct: Event - ServiceRemoving: - struct: Event - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastFlagForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastIntForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastStringForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetIsLoaded: - args: - - required: false - type: any - - required: false - type: any - method: true - SetPlaceId: - args: - - required: false - type: any - method: true - SetUniverseId: - args: - - required: false - type: any - method: true - Shutdown: - args: [] - method: true - UniverseMetadataLoaded: - struct: Event - VIPServerId: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - VIPServerOwnerId: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - Workspace: - struct: Workspace - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getService: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - lighting: - struct: Instance - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - service: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - workspace: - struct: Workspace - deprecated: - message: this property is deprecated. - replace: [] - EnumItem: - Name: - property: read-only - Value: - property: read-only - Event: - Connect: - args: - - type: function - method: true - Once: - args: - - type: function - method: true - Wait: - args: [] - method: true - connect: - args: - - type: function - method: true - deprecated: - message: lowercase methods have been superceded by uppercase ones - replace: - - Connect(%1) - wait: - args: - - type: function - method: true - deprecated: - message: lowercase methods have been superceded by uppercase ones - replace: - - Wait(%1) - Instance: - '*': - any: true - Plugin: - '*': - struct: Instance - Activate: - args: - - required: false - type: any - method: true - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionEnabled: - property: read-only - CreateDockWidgetPluginGui: - args: - - required: false - type: any - - required: false - type: any - method: true - CreatePluginAction: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CreatePluginMenu: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CreateQWidgetPluginGui: - args: - - required: false - type: any - - required: false - type: any - method: true - CreateToolbar: - args: - - required: false - type: any - method: true - Deactivate: - args: [] - method: true - Deactivation: - struct: Event - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - GetJoinMode: - args: [] - method: true - GetMouse: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetSelectedRibbonTool: - args: [] - method: true - GetSetting: - args: - - required: false - type: any - method: true - GetStudioUserId: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GridSize: - property: read-only - ImportFbxAnimation: - args: - - required: false - type: any - - required: false - type: any - method: true - ImportFbxRig: - args: - - required: false - type: any - method: true - Intersect: - args: - - required: false - type: any - method: true - Invoke: - args: - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsActivated: - args: [] - method: true - IsActivatedWithExclusiveMouse: - args: [] - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - Name: - property: override-fields - Negate: - args: - - required: false - type: any - method: true - OnInvoke: - args: - - required: false - type: any - - required: false - type: any - method: true - OnSetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - OpenScript: - args: - - required: false - type: any - - required: false - type: any - method: true - OpenWikiPage: - args: - - required: false - type: any - method: true - Parent: - struct: Instance - PauseSound: - args: - - required: false - type: any - method: true - PlaySound: - args: - - required: false - type: any - - required: false - type: any - method: true - ProcessAssetInsertionDrag: - property: override-fields - ProcessAssetInsertionDrop: - property: override-fields - PromptForExistingAssetId: - args: - - required: false - type: any - method: true - PromptSaveSelection: - args: - - required: false - type: any - method: true - Ready: - struct: Event - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ResumeSound: - args: - - required: false - type: any - method: true - SaveSelectedToRoblox: - args: [] - method: true - SelectRibbonTool: - args: - - required: false - type: any - - required: false - type: any - method: true - Separate: - args: - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - SetReady: - args: [] - method: true - SetSetting: - args: - - required: false - type: any - - required: false - type: any - method: true - StartDecalDrag: - args: - - required: false - type: any - method: true - StartDrag: - args: - - required: false - type: any - method: true - StopAllSounds: - args: [] - method: true - Union: - args: - - required: false - type: any - method: true - Unloading: - struct: Event - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Script: - '*': - struct: Instance - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CurrentEditor: - struct: Instance - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Disabled: - property: override-fields - Enabled: - property: override-fields - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetHash: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - LinkedSource: - property: override-fields - Name: - property: override-fields - Parent: - struct: Instance - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Terrain: - '*': - struct: Instance - AncestryChanged: - struct: Event - Anchored: - property: override-fields - ApplyAngularImpulse: - args: - - required: false - type: any - method: true - ApplyImpulse: - args: - - required: false - type: any - method: true - ApplyImpulseAtPosition: - args: - - required: false - type: any - - required: false - type: any - method: true - Archivable: - property: override-fields - AssemblyAngularVelocity: - any: true - AssemblyCenterOfMass: - any: true - AssemblyLinearVelocity: - any: true - AssemblyMass: - property: read-only - AssemblyRootPart: - struct: BasePart - AttributeChanged: - struct: Event - AutowedgeCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - AutowedgeCells: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - BackParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackSurface: - property: override-fields - BackSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomSurface: - property: override-fields - BottomSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BrickColor: - property: override-fields - CFrame: - any: true - CanCollide: - property: override-fields - CanCollideWith: - args: - - required: false - type: any - method: true - CanQuery: - property: override-fields - CanSetNetworkOwnership: - args: [] - method: true - CanShorelinesBeUpgraded: - args: [] - method: true - CanSmoothVoxelsBeUpgraded: - args: [] - method: true - CanTouch: - property: override-fields - CastShadow: - property: override-fields - CellCenterToWorld: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CellCornerToWorld: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CenterOfMass: - any: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - Clear: - args: [] - method: true - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionGroup: - property: override-fields - CollisionGroupId: - property: override-fields - Color: - property: override-fields - ConvertToSmooth: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - CopyRegion: - args: - - required: false - type: any - method: true - CountCells: - args: [] - method: true - CurrentPhysicalProperties: - property: read-only - CustomPhysicalProperties: - property: override-fields - Decoration: - property: override-fields - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Elasticity: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - ExtentsCFrame: - any: true - ExtentsSize: - any: true - FillBall: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillBlock: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillCylinder: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillWedge: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - Friction: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontSurface: - property: override-fields - FrontSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetChildren: - args: [] - method: true - GetConnectedParts: - args: - - required: false - type: any - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetJoints: - args: [] - method: true - GetMass: - args: [] - method: true - GetMaterialColor: - args: - - required: false - type: any - method: true - GetNetworkOwner: - args: [] - method: true - GetNetworkOwnershipAuto: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetRootPart: - args: [] - method: true - GetTerrainWireframe: - args: - - required: false - type: any - - required: false - type: any - method: true - GetTouchingParts: - args: [] - method: true - GetVelocityAtPosition: - args: - - required: false - type: any - method: true - GetWaterCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IntersectAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGrounded: - args: [] - method: true - IsSmooth: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - LeftParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftSurface: - property: override-fields - LeftSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LocalSimulationTouched: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - LocalTransparencyModifier: - property: override-fields - Locked: - property: override-fields - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Mass: - property: read-only - Massless: - property: override-fields - Material: - property: override-fields - MaterialColors: - property: override-fields - MaterialVariant: - property: override-fields - MaxExtents: - property: read-only - Name: - property: override-fields - Orientation: - any: true - Origin: - any: true - OutfitChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - PasteRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Pivot Offset: - any: true - PivotOffset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - Position: - any: true - ReadVoxels: - args: - - required: false - type: any - - required: false - type: any - method: true - ReceiveAge: - property: read-only - Reflectance: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ReplaceMaterial: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - ReplaceMaterialInTransform: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Resize: - args: - - required: false - type: any - - required: false - type: any - method: true - ResizeIncrement: - property: read-only - ResizeableFaces: - property: read-only - RightParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightSurface: - property: override-fields - RightSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RootPriority: - property: override-fields - RotVelocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - Rotation: - any: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetCells: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetMaterialColor: - args: - - required: false - type: any - - required: false - type: any - method: true - SetMaterialInTransform: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SetNetworkOwner: - args: - - required: false - type: any - method: true - SetNetworkOwnershipAuto: - args: [] - method: true - SetWaterCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - Size: - any: true - SmoothRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SpecificGravity: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - StoppedTouching: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - SubtractAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - TopParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopSurface: - property: override-fields - TopSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TouchEnded: - struct: Event - Touched: - struct: Event - Transparency: - property: override-fields - UnionAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Velocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WaterColor: - property: override-fields - WaterReflectance: - property: override-fields - WaterTransparency: - property: override-fields - WaterWaveSize: - property: override-fields - WaterWaveSpeed: - property: override-fields - WorldToCell: - args: - - required: false - type: any - method: true - WorldToCellPreferEmpty: - args: - - required: false - type: any - method: true - WorldToCellPreferSolid: - args: - - required: false - type: any - method: true - WriteVoxels: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - brickColor: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getMass: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - resize: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - subtractAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - unionAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Workspace: - '*': - struct: Instance - AddPersistentPlayer: - args: - - required: false - type: any - method: true - AllowThirdPartySales: - property: override-fields - AncestryChanged: - struct: Event - Archivable: - property: override-fields - ArePartsTouchingOthers: - args: - - required: false - type: any - - required: false - type: any - method: true - AttributeChanged: - struct: Event - Blockcast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BulkMoveTo: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CacheCurrentTerrain: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpDistance: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpHeight: - args: - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpPower: - args: - - required: false - type: any - - required: false - type: any - method: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - ClearCachedTerrain: - args: - - required: false - type: any - method: true - ClientAnimatorThrottling: - property: override-fields - Clone: - args: [] - method: true - CurrentCamera: - struct: Camera - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - DistributedGameTime: - property: override-fields - ExperimentalSolverIsEnabled: - args: [] - method: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FindPartOnRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartOnRayWithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartOnRayWithWhitelist: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3WithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3WithWhiteList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetBoundingBox: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetExtentsSize: - args: [] - method: true - GetFullName: - args: [] - method: true - GetModelCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetModelSize: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetNumAwakeParts: - args: [] - method: true - GetPartBoundsInBox: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - GetPartBoundsInRadius: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - GetPartsInPart: - args: - - required: false - type: any - - required: false - type: any - method: true - GetPhysicsThrottling: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPrimaryPartCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRealPhysicsFPS: - args: [] - method: true - GetScale: - args: [] - method: true - GetServerTimeNow: - args: [] - method: true - GlobalWind: - any: true - Gravity: - property: override-fields - HumanoidOnlySetCollisionsOnStateChange: - property: override-fields - IKMoveTo: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsRegion3Empty: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IsRegion3EmptyWithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - JoinToOutsiders: - args: - - required: false - type: any - - required: false - type: any - method: true - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - MeshPartHeadsAndAccessories: - property: override-fields - ModelStreamingMode: - property: override-fields - MoveTo: - args: - - required: false - type: any - method: true - Name: - property: override-fields - Origin: - any: true - PGSIsEnabled: - args: [] - method: true - Parent: - struct: Instance - PersistentLoaded: - struct: Event - PhysicsSteppingMethod: - property: override-fields - Pivot Offset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - PrimaryPart: - struct: BasePart - Raycast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - RaycastCachedTerrain: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - RejectCharacterDeletions: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - RemovePersistentPlayer: - args: - - required: false - type: any - method: true - ReplicateInstanceDestroySetting: - property: override-fields - ResetOrientationToIdentity: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Retargeting: - property: override-fields - Scale: - property: override-fields - ScaleTo: - args: - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetIdentityOrientation: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetInsertPoint: - args: - - required: false - type: any - - required: false - type: any - method: true - SetMeshPartHeadsAndAccessories: - args: - - required: false - type: any - method: true - SetPhysicsThrottleEnabled: - args: - - required: false - type: any - method: true - SetPrimaryPartCFrame: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SignalBehavior: - property: override-fields - Spherecast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - StreamOutBehavior: - property: override-fields - StreamingIntegrityMode: - property: override-fields - StreamingMinRadius: - property: override-fields - StreamingTargetRadius: - property: override-fields - Terrain: - struct: Terrain - TouchesUseCollisionGroups: - property: override-fields - TranslateBy: - args: - - required: false - type: any - method: true - UnjoinFromOutsiders: - args: - - required: false - type: any - method: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WorldPivot: - any: true - ZoomToExtents: - args: [] - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - findPartOnRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - findPartsInRegion3: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - move: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - moveTo: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] -last_updated: 1681227519 -last_selene_version: 0.25.0 -roblox_classes: - Accessory: - superclass: Accoutrement - events: [] - properties: - - AccessoryType - Accoutrement: - superclass: Instance - events: [] - properties: - - AttachmentForward - - AttachmentPoint - - AttachmentPos - - AttachmentRight - - AttachmentUp - Actor: - superclass: Model - events: [] - properties: [] - AdGui: - superclass: SurfaceGuiBase - events: [] - properties: - - AdShape - - Status - AdPortal: - superclass: Instance - events: [] - properties: - - PortalInvalidReason - - PortalStatus - - PortalVersion - - Status - AdService: - superclass: Instance - events: - - AdTeleportEnded - - AdTeleportInitiated - - VideoAdClosed - properties: [] - AdvancedDragger: - superclass: Instance - events: [] - properties: [] - AirController: - superclass: ControllerBase - events: [] - properties: - - MaintainAngularMomentum - - MaintainLinearMomentum - - MoveMaxForce - - OrientationMaxTorque - - OrientationSpeedFactor - - VectorForce - AlignOrientation: - superclass: Constraint - events: [] - properties: - - AlignType - - CFrame - - MaxAngularVelocity - - MaxTorque - - Mode - - PrimaryAxis - - PrimaryAxisOnly - - ReactionTorqueEnabled - - Responsiveness - - RigidityEnabled - - SecondaryAxis - AlignPosition: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - MaxForce - - MaxVelocity - - Mode - - Position - - ReactionForceEnabled - - Responsiveness - - RigidityEnabled - AnalysticsSettings: - superclass: GenericSettings - events: [] - properties: [] - AnalyticsService: - superclass: Instance - events: [] - properties: - - ApiKey - AngularVelocity: - superclass: Constraint - events: [] - properties: - - AngularVelocity - - MaxTorque - - ReactionTorqueEnabled - - RelativeTo - Animation: - superclass: Instance - events: [] - properties: - - AnimationId - AnimationClip: - superclass: Instance - events: [] - properties: - - Guid - - Loop - - Priority - AnimationClipProvider: - superclass: Instance - events: [] - properties: [] - AnimationConstraint: - superclass: Constraint - events: [] - properties: - - IsKinematic - - MaxForce - - MaxTorque - - Transform - AnimationController: - superclass: Instance - events: - - AnimationPlayed - properties: [] - AnimationFromVideoCreatorService: - superclass: Instance - events: [] - properties: [] - AnimationFromVideoCreatorStudioService: - superclass: Instance - events: [] - properties: [] - AnimationRigData: - superclass: Instance - events: [] - properties: [] - AnimationStreamTrack: - superclass: Instance - events: - - Stopped - properties: - - Animation - - IsPlaying - - Priority - - WeightCurrent - - WeightTarget - AnimationTrack: - superclass: Instance - events: - - DidLoop - - Ended - - KeyframeReached - - Stopped - properties: - - Animation - - IsPlaying - - Length - - Looped - - Priority - - Speed - - TimePosition - - WeightCurrent - - WeightTarget - Animator: - superclass: Instance - events: - - AnimationPlayed - - AnimationPlayedCoreScript - - AnimationStreamTrackPlayed - properties: - - EvaluationThrottled - - PreferLodEnabled - AppStorageService: - superclass: LocalStorageService - events: [] - properties: [] - AppUpdateService: - superclass: Instance - events: [] - properties: [] - ArcHandles: - superclass: HandlesBase - events: - - MouseButton1Down - - MouseButton1Up - - MouseDrag - - MouseEnter - - MouseLeave - properties: - - Axes - AssetCounterService: - superclass: Instance - events: [] - properties: [] - AssetDeliveryProxy: - superclass: Instance - events: [] - properties: - - Interface - - Port - - StartServer - AssetImportService: - superclass: Instance - events: [] - properties: [] - AssetImportSession: - superclass: Instance - events: - - UploadComplete - - UploadCompleteDeprecated - - UploadProgress - properties: [] - AssetManagerService: - superclass: Instance - events: - - AssetImportedSignal - - ImportSessionFinished - - ImportSessionStarted - - MayBeLinkedSourceModified - properties: [] - AssetPatchSettings: - superclass: Instance - events: [] - properties: - - ContentId - - OutputPath - - PatchId - AssetService: - superclass: Instance - events: - - OpenPublishResultModal - properties: [] - AssetSoundEffect: - superclass: CustomSoundEffect - events: [] - properties: [] - Atmosphere: - superclass: Instance - events: [] - properties: - - Color - - Decay - - Density - - Glare - - Haze - - Offset - Attachment: - superclass: Instance - events: [] - properties: - - Axis - - CFrame - - Orientation - - Position - - Rotation - - SecondaryAxis - - Visible - - WorldAxis - - WorldCFrame - - WorldOrientation - - WorldPosition - - WorldRotation - - WorldSecondaryAxis - AudioPages: - superclass: Pages - events: [] - properties: [] - AudioSearchParams: - superclass: Instance - events: [] - properties: - - Album - - Artist - - AudioSubtype - - MaxDuration - - MinDuration - - SearchKeyword - - Tag - - Title - AvatarEditorService: - superclass: Instance - events: - - OpenAllowInventoryReadAccess - - OpenPromptCreateOufit - - OpenPromptDeleteOutfit - - OpenPromptRenameOutfit - - OpenPromptSaveAvatar - - OpenPromptSetFavorite - - OpenPromptUpdateOutfit - - PromptAllowInventoryReadAccessCompleted - - PromptCreateOutfitCompleted - - PromptDeleteOutfitCompleted - - PromptRenameOutfitCompleted - - PromptSaveAvatarCompleted - - PromptSaveAvatarThumbnailCustomizationCompleted - - PromptSetFavoriteCompleted - - PromptUpdateOutfitCompleted - properties: [] - AvatarImportService: - superclass: Instance - events: [] - properties: [] - Backpack: - superclass: Instance - events: [] - properties: [] - BackpackItem: - superclass: Model - events: [] - properties: - - TextureId - BadgeService: - superclass: Instance - events: - - BadgeAwarded - - OnBadgeAwarded - properties: [] - BallSocketConstraint: - superclass: Constraint - events: [] - properties: - - LimitsEnabled - - MaxFrictionTorque - - Radius - - Restitution - - TwistLimitsEnabled - - TwistLowerAngle - - TwistUpperAngle - - UpperAngle - BasePart: - superclass: PVInstance - events: - - LocalSimulationTouched - - OutfitChanged - - StoppedTouching - - TouchEnded - - Touched - properties: - - Anchored - - AssemblyAngularVelocity - - AssemblyCenterOfMass - - AssemblyLinearVelocity - - AssemblyMass - - AssemblyRootPart - - BackParamA - - BackParamB - - BackSurface - - BackSurfaceInput - - BottomParamA - - BottomParamB - - BottomSurface - - BottomSurfaceInput - - BrickColor - - CFrame - - CanCollide - - CanQuery - - CanTouch - - CastShadow - - CenterOfMass - - CollisionGroup - - CollisionGroupId - - Color - - CurrentPhysicalProperties - - CustomPhysicalProperties - - Elasticity - - ExtentsCFrame - - ExtentsSize - - Friction - - FrontParamA - - FrontParamB - - FrontSurface - - FrontSurfaceInput - - LeftParamA - - LeftParamB - - LeftSurface - - LeftSurfaceInput - - LocalTransparencyModifier - - Locked - - Mass - - Massless - - Material - - MaterialVariant - - Orientation - - PivotOffset - - Position - - ReceiveAge - - Reflectance - - ResizeIncrement - - ResizeableFaces - - RightParamA - - RightParamB - - RightSurface - - RightSurfaceInput - - RootPriority - - RotVelocity - - Rotation - - Size - - SpecificGravity - - TopParamA - - TopParamB - - TopSurface - - TopSurfaceInput - - Transparency - - Velocity - - brickColor - BasePlayerGui: - superclass: Instance - events: [] - properties: [] - BaseScript: - superclass: LuaSourceContainer - events: [] - properties: - - Disabled - - Enabled - - LinkedSource - - RunContext - BaseWrap: - superclass: Instance - events: [] - properties: - - CageMeshId - - CageOrigin - - CageOriginWorld - - HSRAssetId - - ImportOrigin - - ImportOriginWorld - Beam: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - Brightness - - Color - - CurveSize0 - - CurveSize1 - - Enabled - - FaceCamera - - LightEmission - - LightInfluence - - Segments - - Texture - - TextureLength - - TextureMode - - TextureSpeed - - Transparency - - Width0 - - Width1 - - ZOffset - BevelMesh: - superclass: DataModelMesh - events: [] - properties: [] - BillboardGui: - superclass: LayerCollector - events: [] - properties: - - Active - - Adornee - - AlwaysOnTop - - Brightness - - ClipsDescendants - - CurrentDistance - - DistanceLowerLimit - - DistanceStep - - DistanceUpperLimit - - ExtentsOffset - - ExtentsOffsetWorldSpace - - LightInfluence - - MaxDistance - - PlayerToHideFrom - - Size - - SizeOffset - - StudsOffset - - StudsOffsetWorldSpace - BinaryStringValue: - superclass: ValueBase - events: - - Changed - properties: [] - BindableEvent: - superclass: Instance - events: - - Event - properties: [] - BindableFunction: - superclass: Instance - events: [] - properties: [] - BlockMesh: - superclass: BevelMesh - events: [] - properties: [] - BloomEffect: - superclass: PostEffect - events: [] - properties: - - Intensity - - Size - - Threshold - BlurEffect: - superclass: PostEffect - events: [] - properties: - - Size - BodyAngularVelocity: - superclass: BodyMover - events: [] - properties: - - AngularVelocity - - MaxTorque - - P - - angularvelocity - - maxTorque - BodyColors: - superclass: CharacterAppearance - events: [] - properties: - - HeadColor - - HeadColor3 - - LeftArmColor - - LeftArmColor3 - - LeftLegColor - - LeftLegColor3 - - RightArmColor - - RightArmColor3 - - RightLegColor - - RightLegColor3 - - TorsoColor - - TorsoColor3 - BodyForce: - superclass: BodyMover - events: [] - properties: - - Force - - force - BodyGyro: - superclass: BodyMover - events: [] - properties: - - CFrame - - D - - MaxTorque - - P - - cframe - - maxTorque - BodyMover: - superclass: Instance - events: [] - properties: [] - BodyPosition: - superclass: BodyMover - events: - - ReachedTarget - properties: - - D - - MaxForce - - P - - Position - - maxForce - - position - BodyThrust: - superclass: BodyMover - events: [] - properties: - - Force - - Location - - force - - location - BodyVelocity: - superclass: BodyMover - events: [] - properties: - - MaxForce - - P - - Velocity - - maxForce - - velocity - Bone: - superclass: Attachment - events: [] - properties: - - Transform - - TransformedCFrame - - TransformedWorldCFrame - BoolValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - BoxHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Size - Breakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - Enabled - - Id - - Line - - LogMessage - - MetaBreakpointId - - Script - - Valid - - Verified - BrickColorValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - BrowserService: - superclass: Instance - events: - - AuthCookieCopiedToEngine - - BrowserWindowClosed - - BrowserWindowWillNavigate - - JavaScriptCallback - properties: [] - BubbleChatConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AdorneeName - - BackgroundColor3 - - BackgroundTransparency - - BubbleDuration - - BubblesSpacing - - Enabled - - Font - - FontFace - - LocalPlayerStudsOffset - - MaxDistance - - MinimizeDistance - - TextColor3 - - TextSize - - VerticalStudsOffset - BulkImportService: - superclass: Instance - events: - - AssetImported - - BulkImportFinished - - BulkImportStarted - properties: [] - BuoyancySensor: - superclass: SensorBase - events: [] - properties: - - FullySubmerged - - TouchingSurface - CFrameValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - CSGDictionaryService: - superclass: FlyweightService - events: [] - properties: [] - CacheableContentProvider: - superclass: Instance - events: [] - properties: [] - CalloutService: - superclass: Instance - events: [] - properties: [] - Camera: - superclass: Instance - events: - - FirstPersonTransition - - InterpolationFinished - properties: - - CFrame - - CameraSubject - - CameraType - - CoordinateFrame - - DiagonalFieldOfView - - FieldOfView - - FieldOfViewMode - - Focus - - HeadLocked - - HeadScale - - MaxAxisFieldOfView - - NearPlaneZ - - ViewportSize - - focus - CanvasGroup: - superclass: GuiObject - events: [] - properties: - - GroupColor3 - - GroupTransparency - CatalogPages: - superclass: Pages - events: [] - properties: [] - ChangeHistoryService: - superclass: Instance - events: - - OnRedo - - OnUndo - properties: [] - ChannelSelectorSoundEffect: - superclass: CustomSoundEffect - events: [] - properties: - - Channel - CharacterAppearance: - superclass: Instance - events: [] - properties: [] - CharacterMesh: - superclass: CharacterAppearance - events: [] - properties: - - BaseTextureId - - BodyPart - - MeshId - - OverlayTextureId - Chat: - superclass: Instance - events: - - BubbleChatSettingsChanged - - Chatted - properties: - - BubbleChatEnabled - - LoadDefaultChat - ChatInputBarConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AbsolutePosition - - AbsolutePositionWrite - - AbsoluteSize - - AbsoluteSizeWrite - - BackgroundColor3 - - BackgroundTransparency - - Enabled - - FontFace - - PlaceholderColor3 - - TargetTextChannel - - TextBox - - TextColor3 - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - ChatWindowConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AbsolutePosition - - AbsolutePositionWrite - - AbsoluteSize - - AbsoluteSizeWrite - - BackgroundColor3 - - BackgroundTransparency - - Enabled - - FontFace - - HeightScale - - HorizontalAlignment - - TextColor3 - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - VerticalAlignment - - WidthScale - ChorusSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Mix - - Rate - ClickDetector: - superclass: Instance - events: - - MouseClick - - MouseHoverEnter - - MouseHoverLeave - - RightMouseClick - - mouseClick - properties: - - CursorIcon - - MaxActivationDistance - ClientReplicator: - superclass: NetworkReplicator - events: - - RCCProfilerDataComplete - - StatsReceived - properties: [] - ClimbController: - superclass: ControllerBase - events: [] - properties: - - AccelerationTime - - MoveMaxForce - - OrientationMaxTorque - - OrientationSpeedFactor - Clothing: - superclass: CharacterAppearance - events: [] - properties: - - Color3 - CloudLocalizationTable: - superclass: LocalizationTable - events: [] - properties: [] - Clouds: - superclass: Instance - events: [] - properties: - - Color - - Cover - - Density - - Enabled - ClusterPacketCache: - superclass: Instance - events: [] - properties: [] - CollectionService: - superclass: Instance - events: - - ItemAdded - - ItemRemoved - - TagAdded - - TagRemoved - properties: [] - Color3Value: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - ColorCorrectionEffect: - superclass: PostEffect - events: [] - properties: - - Brightness - - Contrast - - Saturation - - TintColor - CommandInstance: - superclass: Instance - events: [] - properties: - - AllowGUIAccessPoints - - Checked - - DefaultShortcut - - DisplayName - - Enabled - - Icon - - Name - - Permission - - StatusTip - CommandService: - superclass: Instance - events: - - CommandExecuting - properties: [] - CompressorSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Attack - - GainMakeup - - Ratio - - Release - - SideChain - - Threshold - ConeHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Height - - Radius - Configuration: - superclass: Instance - events: [] - properties: [] - ConfigureServerService: - superclass: Instance - events: [] - properties: [] - Constraint: - superclass: Instance - events: [] - properties: - - Active - - Attachment0 - - Attachment1 - - Color - - Enabled - - Visible - ContentProvider: - superclass: Instance - events: - - AssetFetchFailed - properties: - - BaseUrl - - RequestQueueSize - ContextActionService: - superclass: Instance - events: - - BoundActionAdded - - BoundActionChanged - - BoundActionRemoved - - GetActionButtonEvent - - LocalToolEquipped - - LocalToolUnequipped - properties: [] - Controller: - superclass: Instance - events: - - ButtonChanged - properties: [] - ControllerBase: - superclass: Instance - events: [] - properties: - - MoveSpeedFactor - - RigidityEnabled - ControllerManager: - superclass: Instance - events: [] - properties: - - ActiveController - - BaseMoveSpeed - - BaseTurnSpeed - - ClimbSensor - - FacingDirection - - GroundSensor - - MovingDirection - ControllerPartSensor: - superclass: ControllerSensor - events: [] - properties: - - HitFrame - - HitNormal - - SearchDistance - - SensedPart - - SensorMode - ControllerSensor: - superclass: SensorBase - events: [] - properties: [] - ControllerService: - superclass: Instance - events: [] - properties: [] - CookiesService: - superclass: Instance - events: [] - properties: [] - CoreGui: - superclass: BasePlayerGui - events: - - UserGuiRenderingChanged - properties: - - SelectionImageObject - - Version - CorePackages: - superclass: Instance - events: [] - properties: [] - CoreScript: - superclass: BaseScript - events: [] - properties: [] - CoreScriptDebuggingManagerHelper: - superclass: Instance - events: [] - properties: [] - CoreScriptSyncService: - superclass: Instance - events: [] - properties: [] - CornerWedgePart: - superclass: BasePart - events: [] - properties: [] - CrossDMScriptChangeListener: - superclass: Instance - events: - - GuidLineContentsChanged - - GuidNameChanged - properties: [] - CurveAnimation: - superclass: AnimationClip - events: [] - properties: [] - CustomEvent: - superclass: Instance - events: - - ReceiverConnected - - ReceiverDisconnected - properties: [] - CustomEventReceiver: - superclass: Instance - events: - - EventConnected - - EventDisconnected - - SourceValueChanged - properties: - - Source - CustomSoundEffect: - superclass: SoundEffect - events: [] - properties: [] - CylinderHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Angle - - Height - - InnerRadius - - Radius - CylinderMesh: - superclass: BevelMesh - events: [] - properties: [] - CylindricalConstraint: - superclass: SlidingBallConstraint - events: [] - properties: - - AngularActuatorType - - AngularLimitsEnabled - - AngularResponsiveness - - AngularRestitution - - AngularSpeed - - AngularVelocity - - CurrentAngle - - InclinationAngle - - LowerAngle - - MotorMaxAngularAcceleration - - MotorMaxTorque - - RotationAxisVisible - - ServoMaxTorque - - TargetAngle - - UpperAngle - - WorldRotationAxis - DataModel: - superclass: ServiceProvider - events: - - AllowedGearTypeChanged - - GraphicsQualityChangeRequest - - ItemChanged - - Loaded - - ScreenshotReady - - ScreenshotSavedToAlbum - - UniverseMetadataLoaded - properties: - - CreatorId - - CreatorType - - GameId - - GearGenreSetting - - Genre - - IsSFFlagsLoaded - - JobId - - PlaceId - - PlaceVersion - - PrivateServerId - - PrivateServerOwnerId - - VIPServerId - - VIPServerOwnerId - - Workspace - - lighting - - workspace - DataModelMesh: - superclass: Instance - events: [] - properties: - - Offset - - Scale - - VertexColor - DataModelPatchService: - superclass: Instance - events: [] - properties: [] - DataModelSession: - superclass: Instance - events: - - CurrentDataModelTypeAboutToChange - - CurrentDataModelTypeChanged - - DataModelCreated - - DataModelWillBeDestroyed - properties: - - CurrentDataModelType - - SessionId - DataStore: - superclass: GlobalDataStore - events: [] - properties: [] - DataStoreIncrementOptions: - superclass: Instance - events: [] - properties: [] - DataStoreInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - DataStoreName - - UpdatedTime - DataStoreKey: - superclass: Instance - events: [] - properties: - - KeyName - DataStoreKeyInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - UpdatedTime - - Version - DataStoreKeyPages: - superclass: Pages - events: [] - properties: - - Cursor - DataStoreListingPages: - superclass: Pages - events: [] - properties: - - Cursor - DataStoreObjectVersionInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - IsDeleted - - Version - DataStoreOptions: - superclass: Instance - events: [] - properties: - - AllScopes - DataStorePages: - superclass: Pages - events: [] - properties: [] - DataStoreService: - superclass: Instance - events: [] - properties: - - AutomaticRetry - - LegacyNamingScheme - DataStoreSetOptions: - superclass: Instance - events: [] - properties: [] - DataStoreVersionPages: - superclass: Pages - events: [] - properties: [] - Debris: - superclass: Instance - events: [] - properties: - - MaxItems - DebugSettings: - superclass: Instance - events: [] - properties: - - DataModel - - InstanceCount - - IsScriptStackTracingEnabled - - JobCount - - PlayerCount - - ReportSoundWarnings - - RobloxVersion - - TickCountPreciseOverride - DebuggablePluginWatcher: - superclass: Instance - events: [] - properties: [] - DebuggerBreakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - IsEnabled - - Line - - LogExpression - - isContextDependentBreakpoint - DebuggerConnection: - superclass: Instance - events: - - BreakpointAdded - - BreakpointChanged - - BreakpointRemoved - - Paused - - Resumed - properties: - - ErrorMessage - - HasError - - Id - - IsPaused - DebuggerConnectionManager: - superclass: Instance - events: - - ConnectionEnded - - ConnectionStarted - - FocusChanged - properties: - - Timeout - DebuggerLuaResponse: - superclass: Instance - events: [] - properties: - - IsError - - IsSuccess - - Message - - RequestId - - Status - DebuggerManager: - superclass: Instance - events: - - DebuggerAdded - - DebuggerRemoved - properties: - - DebuggingEnabled - DebuggerUIService: - superclass: Instance - events: - - ExpressionAdded - properties: [] - DebuggerVariable: - superclass: Instance - events: [] - properties: - - Name - - Populated - - Type - - Value - - VariableId - - VariablesCount - DebuggerWatch: - superclass: Instance - events: [] - properties: - - Expression - Decal: - superclass: FaceInstance - events: [] - properties: - - Color3 - - LocalTransparencyModifier - - Shiny - - Specular - - Texture - - Transparency - - ZIndex - DepthOfFieldEffect: - superclass: PostEffect - events: [] - properties: - - FarIntensity - - FocusDistance - - InFocusRadius - - NearIntensity - DeviceIdService: - superclass: Instance - events: [] - properties: [] - Dialog: - superclass: Instance - events: - - DialogChoiceSelected - properties: - - BehaviorType - - ConversationDistance - - GoodbyeChoiceActive - - GoodbyeDialog - - InUse - - InitialPrompt - - Purpose - - Tone - - TriggerDistance - - TriggerOffset - DialogChoice: - superclass: Instance - events: [] - properties: - - GoodbyeChoiceActive - - GoodbyeDialog - - ResponseDialog - - UserDialog - DistortionSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Level - DockWidgetPluginGui: - superclass: PluginGui - events: [] - properties: - - HostWidgetWasRestored - DoubleConstrainedValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - ConstrainedValue - - MaxValue - - MinValue - - Value - DraftsService: - superclass: Instance - events: - - CommitStatusChanged - - DraftAdded - - DraftRemoved - - DraftStatusChanged - - EditorsListChanged - - UpdateStatusChanged - properties: [] - Dragger: - superclass: Instance - events: [] - properties: [] - DraggerService: - superclass: Instance - events: [] - properties: - - AlignDraggedObjects - - AngleSnapEnabled - - AngleSnapIncrement - - AnimateHover - - CollisionsEnabled - - DraggerCoordinateSpace - - DraggerMovementMode - - GeometrySnapColor - - HoverAnimateFrequency - - HoverLineThickness - - HoverThickness - - JointsEnabled - - LinearSnapEnabled - - LinearSnapIncrement - - PivotSnapToGeometry - - ShowHover - - ShowPivotIndicator - DynamicRotate: - superclass: JointInstance - events: [] - properties: - - BaseAngle - EchoSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Delay - - DryLevel - - Feedback - - WetLevel - EmotesPages: - superclass: InventoryPages - events: [] - properties: [] - EqualizerSoundEffect: - superclass: SoundEffect - events: [] - properties: - - HighGain - - LowGain - - MidGain - EulerRotationCurve: - superclass: Instance - events: [] - properties: - - RotationOrder - EventIngestService: - superclass: Instance - events: [] - properties: [] - ExperienceAuthService: - superclass: Instance - events: - - OpenAuthPrompt - properties: [] - ExperienceInviteOptions: - superclass: Instance - events: [] - properties: - - InviteMessageId - - InviteUser - - LaunchData - - PromptMessage - Explosion: - superclass: Instance - events: - - Hit - properties: - - BlastPressure - - BlastRadius - - DestroyJointRadiusPercent - - ExplosionType - - Position - - TimeScale - - Visible - FaceAnimatorService: - superclass: Instance - events: - - TrackerError - - TrackerPrompt - properties: - - AudioAnimationEnabled - - FlipHeadOrientation - - VideoAnimationEnabled - FaceControls: - superclass: Instance - events: [] - properties: - - ChinRaiser - - ChinRaiserUpperLip - - Corrugator - - EyesLookDown - - EyesLookLeft - - EyesLookRight - - EyesLookUp - - FlatPucker - - Funneler - - JawDrop - - JawLeft - - JawRight - - LeftBrowLowerer - - LeftCheekPuff - - LeftCheekRaiser - - LeftDimpler - - LeftEyeClosed - - LeftEyeUpperLidRaiser - - LeftInnerBrowRaiser - - LeftLipCornerDown - - LeftLipCornerPuller - - LeftLipStretcher - - LeftLowerLipDepressor - - LeftNoseWrinkler - - LeftOuterBrowRaiser - - LeftUpperLipRaiser - - LipPresser - - LipsTogether - - LowerLipSuck - - MouthLeft - - MouthRight - - Pucker - - RightBrowLowerer - - RightCheekPuff - - RightCheekRaiser - - RightDimpler - - RightEyeClosed - - RightEyeUpperLidRaiser - - RightInnerBrowRaiser - - RightLipCornerDown - - RightLipCornerPuller - - RightLipStretcher - - RightLowerLipDepressor - - RightNoseWrinkler - - RightOuterBrowRaiser - - RightUpperLipRaiser - - TongueDown - - TongueOut - - TongueUp - - UpperLipSuck - FaceInstance: - superclass: Instance - events: [] - properties: - - Face - FacialAnimationRecordingService: - superclass: Instance - events: [] - properties: - - BiometricDataConsent - FacialAnimationStreamingService: - superclass: Instance - events: [] - properties: - - EnableFlags - - Enabled - FacialAnimationStreamingServiceStats: - superclass: Instance - events: - - isStreamingFacsUpdated - properties: [] - FacialAnimationStreamingServiceV2: - superclass: Instance - events: [] - properties: - - ServiceState - Feature: - superclass: Instance - events: [] - properties: - - FaceId - - InOut - - LeftRight - - TopBottom - File: - superclass: Instance - events: [] - properties: - - Size - FileMesh: - superclass: DataModelMesh - events: [] - properties: - - MeshId - - TextureId - Fire: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - Heat - - SecondaryColor - - Size - - TimeScale - - size - Flag: - superclass: Tool - events: [] - properties: - - TeamColor - FlagStand: - superclass: Part - events: - - FlagCaptured - properties: - - TeamColor - FlagStandService: - superclass: Instance - events: [] - properties: [] - FlangeSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Mix - - Rate - FloatCurve: - superclass: Instance - events: [] - properties: - - Length - FloorWire: - superclass: GuiBase3d - events: [] - properties: - - CycleOffset - - From - - StudsBetweenTextures - - Texture - - TextureSize - - To - - Velocity - - WireRadius - FlyweightService: - superclass: Instance - events: [] - properties: [] - Folder: - superclass: Instance - events: [] - properties: [] - ForceField: - superclass: Instance - events: [] - properties: - - Visible - FormFactorPart: - superclass: BasePart - events: [] - properties: - - FormFactor - - formFactor - Frame: - superclass: GuiObject - events: [] - properties: - - Style - FriendPages: - superclass: Pages - events: [] - properties: [] - FriendService: - superclass: Instance - events: - - FriendsUpdated - properties: [] - FunctionalTest: - superclass: Instance - events: [] - properties: - - Description - GamePassService: - superclass: Instance - events: [] - properties: [] - GameSettings: - superclass: Instance - events: - - VideoRecordingChangeRequest - properties: - - VideoCaptureEnabled - - VideoRecording - GamepadService: - superclass: Instance - events: - - GamepadThumbstick1Changed - properties: - - GamepadCursorEnabled - GenericSettings: - superclass: ServiceProvider - events: [] - properties: [] - Geometry: - superclass: Instance - events: [] - properties: [] - GetTextBoundsParams: - superclass: Instance - events: [] - properties: - - Font - - Size - - Text - - Width - GlobalDataStore: - superclass: Instance - events: [] - properties: [] - GlobalSettings: - superclass: GenericSettings - events: [] - properties: [] - Glue: - superclass: JointInstance - events: [] - properties: - - F0 - - F1 - - F2 - - F3 - GoogleAnalyticsConfiguration: - superclass: Instance - events: [] - properties: [] - GroundController: - superclass: ControllerBase - events: [] - properties: - - AccelerationLean - - AccelerationTime - - AlignSpeed - - AlignTorque - - DecelerationTime - - Friction - - FrictionWeight - - GroundOffset - - StandForce - - StandSpeed - - TurningFactor - GroupService: - superclass: Instance - events: [] - properties: [] - GuiBase: - superclass: Instance - events: [] - properties: [] - GuiBase2d: - superclass: GuiBase - events: - - SelectionChanged - properties: - - AbsolutePosition - - AbsoluteRotation - - AbsoluteSize - - AutoLocalize - - ClippedRect - - IsNotOccluded - - Localize - - RawRect2D - - RootLocalizationTable - - SelectionBehaviorDown - - SelectionBehaviorLeft - - SelectionBehaviorRight - - SelectionBehaviorUp - - SelectionGroup - - TotalGroupScale - GuiBase3d: - superclass: GuiBase - events: [] - properties: - - Color - - Color3 - - Transparency - - Visible - GuiButton: - superclass: GuiObject - events: - - Activated - - MouseButton1Click - - MouseButton1Down - - MouseButton1Up - - MouseButton2Click - - MouseButton2Down - - MouseButton2Up - properties: - - AutoButtonColor - - Modal - - Selected - - Style - GuiLabel: - superclass: GuiObject - events: [] - properties: [] - GuiMain: - superclass: ScreenGui - events: [] - properties: [] - GuiObject: - superclass: GuiBase2d - events: - - DragBegin - - DragStopped - - InputBegan - - InputChanged - - InputEnded - - MouseEnter - - MouseLeave - - MouseMoved - - MouseWheelBackward - - MouseWheelForward - - SelectionGained - - SelectionLost - - TouchLongPress - - TouchPan - - TouchPinch - - TouchRotate - - TouchSwipe - - TouchTap - properties: - - Active - - AnchorPoint - - AutomaticSize - - BackgroundColor - - BackgroundColor3 - - BackgroundTransparency - - BorderColor - - BorderColor3 - - BorderMode - - BorderSizePixel - - ClipsDescendants - - Draggable - - LayoutOrder - - NextSelectionDown - - NextSelectionLeft - - NextSelectionRight - - NextSelectionUp - - Position - - Rotation - - Selectable - - SelectionImageObject - - SelectionOrder - - Size - - SizeConstraint - - Transparency - - Visible - - ZIndex - GuiService: - superclass: Instance - events: - - BrowserWindowClosed - - CloseInspectMenuRequest - - CoreGuiRenderOverflowed - - EmotesMenuOpenChanged - - ErrorMessageChanged - - GuiVisibilityChangedSignal - - InspectMenuEnabledChangedSignal - - InspectPlayerFromHumanoidDescriptionRequest - - InspectPlayerFromUserIdWithCtxRequest - - KeyPressed - - MenuClosed - - MenuOpened - - NativeClose - - NetworkPausedEnabledChanged - - Open9SliceEditor - - PurchasePromptShown - - SafeZoneOffsetsChanged - - ShowLeaveConfirmation - - SpecialKeyPressed - - UiMessageChanged - properties: - - AutoSelectGuiEnabled - - CoreEffectFolder - - CoreGuiFolder - - CoreGuiNavigationEnabled - - GuiNavigationEnabled - - IsModalDialog - - IsWindows - - MenuIsOpen - - SelectedCoreObject - - SelectedObject - - TouchControlsEnabled - GuidRegistryService: - superclass: Instance - events: [] - properties: [] - HSRDataContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - HandleAdornment: - superclass: PVAdornment - events: - - MouseButton1Down - - MouseButton1Up - - MouseEnter - - MouseLeave - properties: - - AdornCullingMode - - AlwaysOnTop - - CFrame - - SizeRelativeOffset - - ZIndex - Handles: - superclass: HandlesBase - events: - - MouseButton1Down - - MouseButton1Up - - MouseDrag - - MouseEnter - - MouseLeave - properties: - - Faces - - Style - HandlesBase: - superclass: PartAdornment - events: [] - properties: [] - HapticService: - superclass: Instance - events: [] - properties: [] - Hat: - superclass: Accoutrement - events: [] - properties: [] - HeightmapImporterService: - superclass: Instance - events: - - ColormapHasUnknownPixels - - ProgressUpdate - properties: [] - HiddenSurfaceRemovalAsset: - superclass: Instance - events: [] - properties: [] - Highlight: - superclass: Instance - events: [] - properties: - - Adornee - - DepthMode - - Enabled - - FillColor - - FillTransparency - - LineThickness - - OutlineColor - - OutlineTransparency - - ReservedId - HingeConstraint: - superclass: Constraint - events: [] - properties: - - ActuatorType - - AngularResponsiveness - - AngularSpeed - - AngularVelocity - - CurrentAngle - - LimitsEnabled - - LowerAngle - - MotorMaxAcceleration - - MotorMaxTorque - - Radius - - Restitution - - ServoMaxTorque - - TargetAngle - - UpperAngle - Hint: - superclass: Message - events: [] - properties: [] - Hole: - superclass: Feature - events: [] - properties: [] - Hopper: - superclass: Instance - events: [] - properties: [] - HopperBin: - superclass: BackpackItem - events: - - Deselected - - Selected - properties: - - Active - - BinType - HttpRbxApiService: - superclass: Instance - events: [] - properties: [] - HttpRequest: - superclass: Instance - events: [] - properties: [] - HttpService: - superclass: Instance - events: [] - properties: - - HttpEnabled - Humanoid: - superclass: Instance - events: - - AnimationPlayed - - Climbing - - ClusterCompositionFinished - - CustomStatusAdded - - CustomStatusRemoved - - Died - - EmoteTriggered - - FallingDown - - FreeFalling - - GettingUp - - HealthChanged - - Jumping - - MoveToFinished - - PlatformStanding - - Ragdoll - - Running - - Seated - - StateChanged - - StateEnabledChanged - - StatusAdded - - StatusRemoved - - Strafing - - Swimming - - Touched - properties: - - AutoJumpEnabled - - AutoRotate - - AutomaticScalingEnabled - - BreakJointsOnDeath - - CameraOffset - - CollisionType - - DisplayDistanceType - - DisplayName - - EvaluateStateMachine - - FloorMaterial - - Health - - HealthDisplayDistance - - HealthDisplayType - - HipHeight - - Jump - - JumpHeight - - JumpPower - - LeftLeg - - MaxHealth - - MaxSlopeAngle - - MoveDirection - - NameDisplayDistance - - NameOcclusion - - PlatformStand - - RequiresNeck - - RigType - - RightLeg - - RootPart - - SeatPart - - Sit - - TargetPoint - - Torso - - UseJumpPower - - WalkSpeed - - WalkToPart - - WalkToPoint - - maxHealth - HumanoidController: - superclass: Controller - events: [] - properties: [] - HumanoidDescription: - superclass: Instance - events: - - EmotesChanged - - EquippedEmotesChanged - properties: - - AccessoryBlob - - BackAccessory - - BodyTypeScale - - ClimbAnimation - - DepthScale - - Face - - FaceAccessory - - FallAnimation - - FrontAccessory - - GraphicTShirt - - HairAccessory - - HatAccessory - - Head - - HeadColor - - HeadScale - - HeightScale - - IdleAnimation - - JumpAnimation - - LeftArm - - LeftArmColor - - LeftLeg - - LeftLegColor - - MoodAnimation - - NeckAccessory - - NumberEmotesLoaded - - Pants - - ProportionScale - - RightArm - - RightArmColor - - RightLeg - - RightLegColor - - RunAnimation - - Shirt - - ShouldersAccessory - - SwimAnimation - - Torso - - TorsoColor - - WaistAccessory - - WalkAnimation - - WidthScale - IKControl: - superclass: Instance - events: [] - properties: - - ChainRoot - - Enabled - - EndEffector - - EndEffectorOffset - - Offset - - Pole - - Priority - - SmoothTime - - Target - - Type - - Weight - ILegacyStudioBridge: - superclass: Instance - events: [] - properties: [] - IXPService: - superclass: Instance - events: - - OnBrowserTrackerLayerLoadingStatusChanged - - OnUserLayerLoadingStatusChanged - properties: [] - ImageButton: - superclass: GuiButton - events: [] - properties: - - ContentImageSize - - HoverImage - - Image - - ImageColor3 - - ImageRectOffset - - ImageRectSize - - ImageTransparency - - IsLoaded - - PressedImage - - ResampleMode - - ScaleType - - SliceCenter - - SliceScale - - TileSize - ImageDataExperimental: - superclass: Instance - events: [] - properties: - - Size - - TemporaryId - ImageHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Image - - Size - ImageLabel: - superclass: GuiLabel - events: [] - properties: - - ContentImageSize - - Image - - ImageColor3 - - ImageRectOffset - - ImageRectSize - - ImageTransparency - - IsLoaded - - ResampleMode - - ScaleType - - SliceCenter - - SliceScale - - TileSize - ImporterAnimationSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterBaseSettings: - superclass: Instance - events: [] - properties: - - Id - - ImportName - - ShouldImport - ImporterFacsSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterGroupSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - Anchored - - ImportAsModelAsset - - InsertInWorkspace - ImporterJointSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterMaterialSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - DiffuseFilePath - - IsPbr - - MetalnessFilePath - - NormalFilePath - - RoughnessFilePath - ImporterMeshSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - Anchored - - CageManifold - - CageMeshIntersectedPreview - - CageMeshNotIntersected - - CageNoOverlappingVertices - - CageNonManifoldPreview - - CageOverlappingVerticesPreview - - CageUVMatched - - CageUVMisMatchedPreview - - Dimensions - - DoubleSided - - IgnoreVertexColors - - IrrelevantCageModifiedPreview - - MeshHoleDetectedPreview - - MeshNoHoleDetected - - NoIrrelevantCageModified - - NoOuterCageFarExtendedFromMesh - - OuterCageFarExtendedFromMeshPreview - - PolygonCount - - UseImportedPivot - ImporterRootSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - AddModelToInventory - - Anchored - - ExistingPackageId - - FileDimensions - - ImportAsModelAsset - - ImportAsPackage - - InsertInWorkspace - - InsertWithScenePosition - - InvertNegativeFaces - - MergeMeshes - - PolygonCount - - RigScale - - RigType - - ScaleUnit - - UseSceneOriginAsCFrame - - UseSceneOriginAsPivot - - UsesCages - - WorldForward - - WorldUp - IncrementalPatchBuilder: - superclass: Instance - events: [] - properties: - - AddPathsToBundle - - BuildDebouncePeriod - - HighCompression - - SerializePatch - - ZstdCompression - InputObject: - superclass: Instance - events: [] - properties: - - Delta - - KeyCode - - Position - - UserInputState - - UserInputType - InsertService: - superclass: Instance - events: [] - properties: - - AllowClientInsertModels - - AllowInsertFreeModels - Instance: - superclass: <<>> - events: - - AncestryChanged - - AttributeChanged - - Changed - - ChildAdded - - ChildRemoved - - DescendantAdded - - DescendantRemoving - - Destroying - - childAdded - properties: - - Archivable - - ClassName - - DataCost - - Name - - Parent - - RobloxLocked - - SourceAssetId - - archivable - - className - InstanceAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - IntConstrainedValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - ConstrainedValue - - MaxValue - - MinValue - - Value - IntValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - IntersectOperation: - superclass: PartOperation - events: [] - properties: [] - InventoryPages: - superclass: Pages - events: [] - properties: [] - JointInstance: - superclass: Instance - events: [] - properties: - - Active - - C0 - - C1 - - Enabled - - Part0 - - Part1 - - part1 - JointsService: - superclass: Instance - events: [] - properties: [] - KeyboardService: - superclass: Instance - events: [] - properties: [] - Keyframe: - superclass: Instance - events: [] - properties: - - Time - KeyframeMarker: - superclass: Instance - events: [] - properties: - - Value - KeyframeSequence: - superclass: AnimationClip - events: [] - properties: - - AuthoredHipHeight - KeyframeSequenceProvider: - superclass: Instance - events: [] - properties: [] - LSPFileSyncService: - superclass: Instance - events: [] - properties: [] - LanguageService: - superclass: Instance - events: [] - properties: [] - LayerCollector: - superclass: GuiBase2d - events: [] - properties: - - Enabled - - ResetOnSpawn - - ZIndexBehavior - LegacyStudioBridge: - superclass: ILegacyStudioBridge - events: [] - properties: [] - Light: - superclass: Instance - events: [] - properties: - - Brightness - - Color - - Enabled - - Shadows - Lighting: - superclass: Instance - events: - - LightingChanged - properties: - - Ambient - - Brightness - - TimerTime - - ColorShift_Bottom - - ColorShift_Top - - EnvironmentDiffuseScale - - EnvironmentSpecularScale - - ExposureCompensation - - FogColor - - FogEnd - - FogStart - - GeographicLatitude - - GlobalShadows - - OutdoorAmbient - - Outlines - - ShadowColor - - ShadowSoftness - - Technology - - TempUseNewSkyRemovalBehaviour - - TimeOfDay - LineForce: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - InverseSquareLaw - - Magnitude - - MaxForce - - ReactionForceEnabled - LineHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Length - - Thickness - LinearVelocity: - superclass: Constraint - events: [] - properties: - - LineDirection - - LineVelocity - - MaxForce - - PlaneVelocity - - PrimaryTangentAxis - - RelativeTo - - SecondaryTangentAxis - - VectorVelocity - - VelocityConstraintMode - LiveScriptingService: - superclass: Instance - events: [] - properties: [] - LocalDebuggerConnection: - superclass: DebuggerConnection - events: [] - properties: [] - LocalScript: - superclass: Script - events: [] - properties: [] - LocalStorageService: - superclass: Instance - events: - - ItemWasSet - - StoreWasCleared - properties: [] - LocalizationService: - superclass: Instance - events: - - AutoTranslateWillRun - properties: - - ForcePlayModeGameLocaleId - - ForcePlayModeRobloxLocaleId - - IsTextScraperRunning - - RobloxForcePlayModeGameLocaleId - - RobloxForcePlayModeRobloxLocaleId - - RobloxLocaleId - - SystemLocaleId - LocalizationTable: - superclass: Instance - events: [] - properties: - - DevelopmentLanguage - - Root - - SourceLocaleId - LodDataEntity: - superclass: Instance - events: [] - properties: - - EntityLodEnabled - LodDataService: - superclass: Instance - events: [] - properties: [] - LogService: - superclass: Instance - events: - - HttpResultOut - - MessageOut - - OnHttpResultApproved - - ServerHttpResultOut - - ServerMessageOut - properties: [] - LoginService: - superclass: Instance - events: - - LoginFailed - - LoginSucceeded - properties: [] - LuaSettings: - superclass: Instance - events: [] - properties: [] - LuaSourceContainer: - superclass: Instance - events: [] - properties: - - CurrentEditor - - RuntimeSource - LuaWebService: - superclass: Instance - events: [] - properties: [] - LuauScriptAnalyzerService: - superclass: Instance - events: [] - properties: [] - ManualGlue: - superclass: ManualSurfaceJointInstance - events: [] - properties: [] - ManualSurfaceJointInstance: - superclass: JointInstance - events: [] - properties: [] - ManualWeld: - superclass: ManualSurfaceJointInstance - events: [] - properties: [] - MarkerCurve: - superclass: Instance - events: [] - properties: - - Length - MarketplaceService: - superclass: Instance - events: - - ClientLuaDialogRequested - - ClientPurchaseSuccess - - NativePurchaseFinished - - NativePurchaseFinishedWithLocalPlayer - - PromptBundlePurchaseFinished - - PromptBundlePurchaseRequested - - PromptGamePassPurchaseFinished - - PromptGamePassPurchaseRequested - - PromptPremiumPurchaseFinished - - PromptPremiumPurchaseRequested - - PromptProductPurchaseFinished - - PromptProductPurchaseRequested - - PromptPurchaseFinished - - PromptPurchaseRequested - - PromptRobloxPurchaseRequested - - PromptSubscriptionCancellationFinished - - PromptSubscriptionCancellationRequested - - PromptSubscriptionPurchaseFinished - - PromptSubscriptionPurchaseRequested - - ServerPurchaseVerification - - ThirdPartyPurchaseFinished - properties: [] - MaterialGenerationService: - superclass: Instance - events: [] - properties: [] - MaterialGenerationSession: - superclass: Instance - events: [] - properties: [] - MaterialService: - superclass: Instance - events: - - OverrideStatusChanged - properties: - - AsphaltName - - BasaltName - - BrickName - - CobblestoneName - - ConcreteName - - CorrodedMetalName - - CrackedLavaName - - DiamondPlateName - - FabricName - - FoilName - - GlacierName - - GraniteName - - GrassName - - GroundName - - IceName - - LeafyGrassName - - LimestoneName - - MarbleName - - MetalName - - MudName - - PavementName - - PebbleName - - PlasticName - - RockName - - SaltName - - SandName - - SandstoneName - - SlateName - - SmoothPlasticName - - SnowName - - Use2022Materials - - WoodName - - WoodPlanksName - MaterialVariant: - superclass: Instance - events: [] - properties: - - BaseMaterial - - ColorMap - - CustomPhysicalProperties - - MaterialPattern - - MetalnessMap - - NormalMap - - RoughnessMap - - StudsPerTile - MemStorageConnection: - superclass: Instance - events: [] - properties: [] - MemStorageService: - superclass: Instance - events: [] - properties: [] - MemoryStoreQueue: - superclass: Instance - events: [] - properties: [] - MemoryStoreService: - superclass: Instance - events: [] - properties: [] - MemoryStoreSortedMap: - superclass: Instance - events: [] - properties: [] - MeshContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - MeshDataExperimental: - superclass: Instance - events: [] - properties: - - Size - MeshPart: - superclass: TriangleMeshPart - events: [] - properties: - - DoubleSided - - HasJointOffset - - HasSkinnedMesh - - JointOffset - - MeshId - - RenderFidelity - - TextureID - Message: - superclass: Instance - events: [] - properties: - - Text - MessageBusConnection: - superclass: Instance - events: [] - properties: [] - MessageBusService: - superclass: Instance - events: [] - properties: [] - MessagingService: - superclass: Instance - events: [] - properties: [] - MetaBreakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - Enabled - - Id - - IsLogpoint - - Line - - LogMessage - - Script - - Valid - MetaBreakpointContext: - superclass: Instance - events: [] - properties: [] - MetaBreakpointManager: - superclass: Instance - events: - - MetaBreakpointAdded - - MetaBreakpointChanged - - MetaBreakpointRemoved - - MetaBreakpointSetChanged - properties: [] - Model: - superclass: PVInstance - events: [] - properties: - - LevelOfDetail - - ModelStreamingMode - - PrimaryPart - - Scale - - WorldPivot - ModuleScript: - superclass: LuaSourceContainer - events: [] - properties: - - LinkedSource - - Source - Motor: - superclass: JointInstance - events: [] - properties: - - CurrentAngle - - DesiredAngle - - MaxVelocity - Motor6D: - superclass: Motor - events: [] - properties: - - ChildName - - ParentName - - Transform - MotorFeature: - superclass: Feature - events: [] - properties: [] - Mouse: - superclass: Instance - events: - - Button1Down - - Button1Up - - Button2Down - - Button2Up - - Idle - - KeyDown - - KeyUp - - Move - - WheelBackward - - WheelForward - - keyDown - properties: - - Hit - - Icon - - Origin - - Target - - TargetFilter - - TargetSurface - - UnitRay - - ViewSizeX - - ViewSizeY - - X - - Y - - hit - - target - MouseService: - superclass: Instance - events: [] - properties: [] - MultipleDocumentInterfaceInstance: - superclass: Instance - events: - - DataModelSessionEnded - - DataModelSessionStarted - properties: - - FocusedDataModelSession - NegateOperation: - superclass: PartOperation - events: [] - properties: [] - NetworkClient: - superclass: NetworkPeer - events: - - ConnectionAccepted - - ConnectionFailed - properties: [] - NetworkMarker: - superclass: Instance - events: - - Received - properties: [] - NetworkPeer: - superclass: Instance - events: [] - properties: [] - NetworkReplicator: - superclass: Instance - events: [] - properties: [] - NetworkServer: - superclass: NetworkPeer - events: [] - properties: [] - NetworkSettings: - superclass: Instance - events: [] - properties: - - EmulatedTotalMemoryInMB - - FreeMemoryMBytes - - HttpProxyEnabled - - HttpProxyURL - - IncomingReplicationLag - - PrintJoinSizeBreakdown - - PrintPhysicsErrors - - PrintStreamInstanceQuota - - RandomizeJoinInstanceOrder - - RenderStreamedRegions - - ShowActiveAnimationAsset - NoCollisionConstraint: - superclass: Instance - events: [] - properties: - - Enabled - - Part0 - - Part1 - NonReplicatedCSGDictionaryService: - superclass: FlyweightService - events: [] - properties: [] - NotificationService: - superclass: Instance - events: - - Roblox17sConnectionChanged - - Roblox17sEventReceived - - RobloxConnectionChanged - - RobloxEventReceived - properties: - - IsConnected - - IsLuaChatEnabled - - IsLuaGameDetailsEnabled - - SelectedTheme - NumberPose: - superclass: PoseBase - events: [] - properties: - - Value - NumberValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - ObjectValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - OrderedDataStore: - superclass: GlobalDataStore - events: [] - properties: [] - OutfitPages: - superclass: Pages - events: [] - properties: [] - PVAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - PVInstance: - superclass: Instance - events: [] - properties: - - Origin - - Pivot Offset - PackageLink: - superclass: Instance - events: [] - properties: - - AutoUpdate - - Creator - - PackageAssetName - - PackageId - - PermissionLevel - - Status - - VersionNumber - PackageService: - superclass: Instance - events: [] - properties: [] - PackageUIService: - superclass: Instance - events: - - OnConvertToPackageResult - - OnOpenConvertToPackagePlugin - properties: [] - Pages: - superclass: Instance - events: [] - properties: - - IsFinished - Pants: - superclass: Clothing - events: [] - properties: - - PantsTemplate - ParabolaAdornment: - superclass: PVAdornment - events: [] - properties: - - A - - B - - C - - Range - - Thickness - Part: - superclass: FormFactorPart - events: [] - properties: - - Shape - PartAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - PartOperation: - superclass: TriangleMeshPart - events: [] - properties: - - RenderFidelity - - SmoothingAngle - - TriangleCount - - UsePartColor - PartOperationAsset: - superclass: Instance - events: [] - properties: [] - ParticleEmitter: - superclass: Instance - events: [] - properties: - - Acceleration - - Brightness - - Color - - Drag - - EmissionDirection - - Enabled - - FlipbookFramerate - - FlipbookIncompatible - - FlipbookLayout - - FlipbookMode - - FlipbookStartRandom - - Lifetime - - LightEmission - - LightInfluence - - LockedToPart - - Orientation - - Rate - - RotSpeed - - Rotation - - Shape - - ShapeInOut - - ShapePartial - - ShapeStyle - - Size - - Speed - - SpreadAngle - - Squash - - Texture - - TimeScale - - Transparency - - VelocityInheritance - - VelocitySpread - - ZOffset - PatchBundlerFileWatch: - superclass: Instance - events: [] - properties: [] - PatchMapping: - superclass: Instance - events: [] - properties: - - FlattenTree - - PatchId - - TargetPath - Path: - superclass: Instance - events: - - Blocked - - Unblocked - properties: - - Status - PathfindingLink: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - IsBidirectional - - Label - PathfindingModifier: - superclass: Instance - events: [] - properties: - - Label - - PassThrough - PathfindingService: - superclass: Instance - events: [] - properties: - - EmptyCutoff - PausedState: - superclass: Instance - events: [] - properties: - - AllThreadsPaused - - Reason - - ThreadId - PausedStateBreakpoint: - superclass: PausedState - events: [] - properties: - - Breakpoint - PausedStateException: - superclass: PausedState - events: [] - properties: - - ExceptionText - PermissionsService: - superclass: Instance - events: [] - properties: [] - PhysicsService: - superclass: Instance - events: [] - properties: [] - PhysicsSettings: - superclass: Instance - events: [] - properties: - - AllowSleep - - AreAnchorsShown - - AreAssembliesShown - - AreAwakePartsHighlighted - - AreBodyTypesShown - - AreConstraintForcesShownForSelectedOrHoveredInstances - - AreConstraintTorquesShownForSelectedOrHoveredInstances - - AreContactForcesShownForSelectedOrHoveredAssemblies - - AreContactIslandsShown - - AreContactPointsShown - - AreJointCoordinatesShown - - AreMagnitudesShownForDrawnForcesAndTorques - - AreMechanismsShown - - AreModelCoordsShown - - AreOwnersShown - - ArePartCoordsShown - - AreRegionsShown - - AreSolverIslandsShown - - AreTerrainReplicationRegionsShown - - AreTimestepsShown - - AreUnalignedPartsShown - - AreWorldCoordsShown - - DisableCSGv2 - - ForceCSGv2 - - ForceDrawScale - - IsInterpolationThrottleShown - - IsReceiveAgeShown - - IsTreeShown - - PhysicsEnvironmentalThrottle - - ShowDecompositionGeometry - - SolverConvergenceVisualizationMode - - ThrottleAdjustTime - - UseCSGv2 - PitchShiftSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Octave - Plane: - superclass: PlaneConstraint - events: [] - properties: [] - PlaneConstraint: - superclass: Constraint - events: [] - properties: [] - Platform: - superclass: Part - events: [] - properties: [] - Player: - superclass: Instance - events: - - CharacterAdded - - CharacterAppearanceLoaded - - CharacterRemoving - - Chatted - - FriendStatusChanged - - Idled - - OnTeleport - - SimulationRadiusChanged - properties: - - AccountAge - - AppearanceDidLoad - - AutoJumpEnabled - - CameraMaxZoomDistance - - CameraMinZoomDistance - - CameraMode - - CanLoadCharacterAppearance - - Character - - CharacterAppearance - - CharacterAppearanceId - - ChatMode - - DataComplexity - - DataComplexityLimit - - DataReady - - DevCameraOcclusionMode - - DevComputerCameraMode - - DevComputerMovementMode - - DevEnableMouseLock - - DevTouchCameraMode - - DevTouchMovementMode - - DisplayName - - FollowUserId - - GameplayPaused - - Guest - - HasVerifiedBadge - - HealthDisplayDistance - - LocaleId - - MaximumSimulationRadius - - MembershipType - - NameDisplayDistance - - Neutral - - OsPlatform - - PlatformName - - ReplicationFocus - - RespawnLocation - - SimulationRadius - - Team - - TeamColor - - Teleported - - TeleportedIn - - UnfilteredChat - - UserId - - VRDevice - - VREnabled - - userId - PlayerEmulatorService: - superclass: Instance - events: [] - properties: - - CustomPoliciesEnabled - - EmulatedCountryCode - - EmulatedGameLocale - - PlayerEmulationEnabled - - SerializedEmulatedPolicyInfo - PlayerGui: - superclass: BasePlayerGui - events: - - TopbarTransparencyChangedSignal - properties: - - CurrentScreenOrientation - - ScreenOrientation - - SelectionImageObject - PlayerMouse: - superclass: Mouse - events: [] - properties: [] - PlayerScripts: - superclass: Instance - events: - - ComputerCameraMovementModeRegistered - - ComputerMovementModeRegistered - - TouchCameraMovementModeRegistered - - TouchMovementModeRegistered - properties: [] - Players: - superclass: Instance - events: - - FriendRequestEvent - - GameAnnounce - - PlayerAdded - - PlayerChatted - - PlayerConnecting - - PlayerDisconnecting - - PlayerMembershipChanged - - PlayerRejoining - - PlayerRemoving - properties: - - BubbleChat - - CharacterAutoLoads - - ClassicChat - - LocalPlayer - - MaxPlayers - - MaxPlayersInternal - - NumPlayers - - PreferredPlayers - - PreferredPlayersInternal - - RespawnTime - - UseStrafingAnimations - - localPlayer - - numPlayers - Plugin: - superclass: Instance - events: - - Deactivation - - Ready - - Unloading - properties: - - CollisionEnabled - - GridSize - - HostDataModelType - - HostDataModelTypeIsCurrent - - MultipleDocumentInterfaceInstance - - UsesAssetInsertionDrag - PluginAction: - superclass: Instance - events: - - Triggered - properties: - - ActionId - - AllowBinding - - Checked - - DefaultShortcut - - Enabled - - StatusTip - - Text - PluginDebugService: - superclass: Instance - events: [] - properties: [] - PluginDragEvent: - superclass: Instance - events: [] - properties: - - Data - - MimeType - - Position - - Sender - PluginGui: - superclass: LayerCollector - events: - - PluginDragDropped - - PluginDragEntered - - PluginDragLeft - - PluginDragMoved - - WindowFocusReleased - - WindowFocused - properties: - - Title - PluginGuiService: - superclass: Instance - events: [] - properties: [] - PluginManagementService: - superclass: Instance - events: [] - properties: [] - PluginManager: - superclass: Instance - events: [] - properties: [] - PluginManagerInterface: - superclass: Instance - events: [] - properties: [] - PluginMenu: - superclass: Instance - events: [] - properties: - - Icon - - Title - PluginMouse: - superclass: Mouse - events: - - DragEnter - properties: [] - PluginPolicyService: - superclass: Instance - events: [] - properties: [] - PluginToolbar: - superclass: Instance - events: [] - properties: [] - PluginToolbarButton: - superclass: Instance - events: - - Click - properties: - - ClickableWhenViewportHidden - - Enabled - - Icon - PointLight: - superclass: Light - events: [] - properties: - - Range - PointsService: - superclass: Instance - events: - - PointsAwarded - properties: [] - PolicyService: - superclass: Instance - events: [] - properties: - - IsLuobuServer - - LuobuWhitelisted - Pose: - superclass: PoseBase - events: [] - properties: - - CFrame - - MaskWeight - PoseBase: - superclass: Instance - events: [] - properties: - - EasingDirection - - EasingStyle - - Weight - PostEffect: - superclass: Instance - events: [] - properties: - - Enabled - PrismaticConstraint: - superclass: SlidingBallConstraint - events: [] - properties: [] - ProcessInstancePhysicsService: - superclass: Instance - events: [] - properties: [] - ProximityPrompt: - superclass: Instance - events: - - PromptButtonHoldBegan - - PromptButtonHoldEnded - - PromptHidden - - PromptShown - - TriggerEnded - - Triggered - properties: - - ActionText - - AutoLocalize - - ClickablePrompt - - Enabled - - Exclusivity - - GamepadKeyCode - - HoldDuration - - KeyboardKeyCode - - MaxActivationDistance - - ObjectText - - RequiresLineOfSight - - RootLocalizationTable - - Style - - UIOffset - ProximityPromptService: - superclass: Instance - events: - - PromptButtonHoldBegan - - PromptButtonHoldEnded - - PromptHidden - - PromptShown - - PromptTriggerEnded - - PromptTriggered - properties: - - Enabled - - MaxPromptsVisible - PublishService: - superclass: Instance - events: [] - properties: [] - QWidgetPluginGui: - superclass: PluginGui - events: [] - properties: [] - RayValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - RbxAnalyticsService: - superclass: Instance - events: [] - properties: [] - ReflectionMetadata: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataCallbacks: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataClass: - superclass: ReflectionMetadataItem - events: [] - properties: - - ExplorerImageIndex - - ExplorerOrder - - Insertable - - PreferredParent - - ServiceVisibility - ReflectionMetadataClasses: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataEnum: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataEnumItem: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataEnums: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataEvents: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataFunctions: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataItem: - superclass: Instance - events: [] - properties: - - Browsable - - ClassCategory - - ClientOnly - - Constraint - - Deprecated - - EditingDisabled - - EditorType - - FFlag - - IsBackend - - PropertyOrder - - ScriptContext - - ServerOnly - - SliderScaling - - UIMaximum - - UIMinimum - - UINumTicks - ReflectionMetadataMember: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataProperties: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataYieldFunctions: - superclass: Instance - events: [] - properties: [] - RemoteCursorService: - superclass: Instance - events: [] - properties: [] - RemoteDebuggerServer: - superclass: Instance - events: [] - properties: [] - RemoteEvent: - superclass: Instance - events: - - OnClientEvent - - OnServerEvent - properties: [] - RemoteFunction: - superclass: Instance - events: [] - properties: [] - RenderSettings: - superclass: Instance - events: [] - properties: - - AutoFRMLevel - - EagerBulkExecution - - EditQualityLevel - - EnableFRM - - ExportMergeByMaterial - - FrameRateManager - - GraphicsMode - - MeshCacheSize - - MeshPartDetailLevel - - QualityLevel - - ReloadAssets - - RenderCSGTrianglesDebug - - ShowBoundingBoxes - RenderingTest: - superclass: Instance - events: [] - properties: - - CFrame - - ComparisonDiffThreshold - - ComparisonMethod - - ComparisonPsnrThreshold - - Description - - FieldOfView - - Orientation - - Position - - QualityLevel - - ShouldSkip - - Ticket - ReplicatedFirst: - superclass: Instance - events: - - DefaultLoadingGuiRemoved - - FinishedReplicating - - RemoveDefaultLoadingGuiSignal - properties: [] - ReplicatedStorage: - superclass: Instance - events: [] - properties: [] - ReverbSoundEffect: - superclass: SoundEffect - events: [] - properties: - - DecayTime - - Density - - Diffusion - - DryLevel - - WetLevel - RigidConstraint: - superclass: Constraint - events: [] - properties: [] - RobloxPluginGuiService: - superclass: Instance - events: [] - properties: [] - RobloxReplicatedStorage: - superclass: Instance - events: [] - properties: [] - RocketPropulsion: - superclass: BodyMover - events: - - ReachedTarget - properties: - - CartoonFactor - - MaxSpeed - - MaxThrust - - MaxTorque - - Target - - TargetOffset - - TargetRadius - - ThrustD - - ThrustP - - TurnD - - TurnP - RodConstraint: - superclass: Constraint - events: [] - properties: - - CurrentDistance - - Length - - LimitAngle0 - - LimitAngle1 - - LimitsEnabled - - Thickness - RopeConstraint: - superclass: Constraint - events: [] - properties: - - CurrentDistance - - Length - - Restitution - - Thickness - - WinchEnabled - - WinchForce - - WinchResponsiveness - - WinchSpeed - - WinchTarget - Rotate: - superclass: JointInstance - events: [] - properties: [] - RotateP: - superclass: DynamicRotate - events: [] - properties: [] - RotateV: - superclass: DynamicRotate - events: [] - properties: [] - RotationCurve: - superclass: Instance - events: [] - properties: - - Length - RtMessagingService: - superclass: Instance - events: [] - properties: [] - RunService: - superclass: Instance - events: - - Heartbeat - - PostSimulation - - PreAnimation - - PreRender - - PreSimulation - - RenderStepped - - Stepped - properties: - - ClientGitHash - RunningAverageItemDouble: - superclass: StatsItem - events: [] - properties: [] - RunningAverageItemInt: - superclass: StatsItem - events: [] - properties: [] - RunningAverageTimeIntervalItem: - superclass: StatsItem - events: [] - properties: [] - RuntimeScriptService: - superclass: Instance - events: [] - properties: [] - SafetyService: - superclass: Instance - events: - - ScreenshotContentReady - - ScreenshotUploaded - properties: [] - ScreenGui: - superclass: LayerCollector - events: [] - properties: - - ClipToDeviceSafeArea - - DisplayOrder - - IgnoreGuiInset - - OnTopOfCoreBlur - - SafeAreaCompatibility - - ScreenInsets - ScreenshotHud: - superclass: Instance - events: [] - properties: - - CameraButtonIcon - - CameraButtonPosition - - CloseButtonPosition - - CloseWhenScreenshotTaken - - ExperienceNameOverlayEnabled - - OverlayFont - - UsernameOverlayEnabled - - Visible - Script: - superclass: BaseScript - events: [] - properties: - - Source - ScriptBuilder: - superclass: Instance - events: [] - properties: [] - ScriptChangeService: - superclass: Instance - events: - - ScriptAdded - - ScriptBeingRemoved - - ScriptChanged - - ScriptFullNameChanged - - ScriptSourceChanged - properties: [] - ScriptCloneWatcher: - superclass: Instance - events: [] - properties: [] - ScriptCloneWatcherHelper: - superclass: Instance - events: [] - properties: [] - ScriptContext: - superclass: Instance - events: - - Error - - ErrorDetailed - properties: - - ScriptsDisabled - ScriptDebugger: - superclass: Instance - events: - - BreakpointAdded - - BreakpointRemoved - - EncounteredBreak - - Resuming - - WatchAdded - - WatchRemoved - properties: - - CurrentLine - - IsDebugging - - IsPaused - - Script - ScriptDocument: - superclass: Instance - events: - - SelectionChanged - - ViewportChanged - properties: [] - ScriptEditorService: - superclass: Instance - events: - - TextDocumentDidChange - - TextDocumentDidClose - - TextDocumentDidOpen - properties: [] - ScriptRegistrationService: - superclass: Instance - events: [] - properties: [] - ScriptRuntime: - superclass: Instance - events: [] - properties: [] - ScriptService: - superclass: Instance - events: [] - properties: [] - ScrollingFrame: - superclass: GuiObject - events: [] - properties: - - AbsoluteCanvasSize - - AbsoluteWindowSize - - AutomaticCanvasSize - - BottomImage - - CanvasPosition - - CanvasSize - - ElasticBehavior - - HorizontalBarRect - - HorizontalScrollBarInset - - MaxCanvasPosition - - MidImage - - ScrollBarImageColor3 - - ScrollBarImageTransparency - - ScrollBarThickness - - ScrollVelocity - - ScrollingDirection - - ScrollingEnabled - - TopImage - - VerticalBarRect - - VerticalScrollBarInset - - VerticalScrollBarPosition - Seat: - superclass: Part - events: [] - properties: - - Disabled - - Occupant - Selection: - superclass: Instance - events: - - SelectionChanged - properties: - - ActiveInstance - - SelectionBoxThickness - - SelectionLineThickness - - SelectionThickness - - ShowBoundingBox - SelectionBox: - superclass: InstanceAdornment - events: [] - properties: - - LineThickness - - StudioSelectionBox - - SurfaceColor - - SurfaceColor3 - - SurfaceTransparency - SelectionHighlightManager: - superclass: Instance - events: [] - properties: [] - SelectionLasso: - superclass: GuiBase3d - events: [] - properties: - - Humanoid - SelectionPartLasso: - superclass: SelectionLasso - events: [] - properties: - - Part - SelectionPointLasso: - superclass: SelectionLasso - events: [] - properties: - - Point - SelectionSphere: - superclass: PVAdornment - events: [] - properties: - - SurfaceColor - - SurfaceColor3 - - SurfaceTransparency - SensorBase: - superclass: Instance - events: - - OnSensorOutputChanged - properties: - - UpdateType - ServerReplicator: - superclass: NetworkReplicator - events: [] - properties: [] - ServerScriptService: - superclass: Instance - events: [] - properties: - - LoadStringEnabled - ServerStorage: - superclass: Instance - events: [] - properties: [] - ServiceProvider: - superclass: Instance - events: - - Close - - CloseLate - - ServiceAdded - - ServiceRemoving - properties: [] - ServiceVisibilityService: - superclass: Instance - events: [] - properties: - - VisibleServices - SessionService: - superclass: Instance - events: [] - properties: [] - SharedTableRegistry: - superclass: Instance - events: [] - properties: [] - Shirt: - superclass: Clothing - events: [] - properties: - - ShirtTemplate - ShirtGraphic: - superclass: CharacterAppearance - events: [] - properties: - - Color3 - - Graphic - ShorelineUpgraderService: - superclass: Instance - events: - - Status - properties: [] - SkateboardController: - superclass: Controller - events: - - AxisChanged - properties: - - Steer - - Throttle - SkateboardPlatform: - superclass: Part - events: - - Equipped - - MoveStateChanged - - Unequipped - - equipped - - unequipped - properties: - - Controller - - ControllingHumanoid - - Steer - - StickyWheels - - Throttle - Skin: - superclass: CharacterAppearance - events: [] - properties: - - SkinColor - Sky: - superclass: Instance - events: [] - properties: - - CelestialBodiesShown - - MoonAngularSize - - MoonTextureId - - SkyboxBk - - SkyboxDn - - SkyboxFt - - SkyboxLf - - SkyboxRt - - SkyboxUp - - StarCount - - SunAngularSize - - SunTextureId - SlidingBallConstraint: - superclass: Constraint - events: [] - properties: - - ActuatorType - - CurrentPosition - - LimitsEnabled - - LinearResponsiveness - - LowerLimit - - MotorMaxAcceleration - - MotorMaxForce - - Restitution - - ServoMaxForce - - Size - - Speed - - TargetPosition - - UpperLimit - - Velocity - Smoke: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - Opacity - - RiseVelocity - - Size - - TimeScale - SmoothVoxelsUpgraderService: - superclass: Instance - events: - - Status - properties: [] - Snap: - superclass: JointInstance - events: [] - properties: [] - SnippetService: - superclass: Instance - events: [] - properties: [] - SocialService: - superclass: Instance - events: - - GameInvitePromptClosed - - PromptInviteRequested - properties: [] - SolidModelContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - Sound: - superclass: Instance - events: - - DidLoop - - Ended - - Loaded - - Paused - - Played - - Resumed - - Stopped - properties: - - ChannelCount - - EmitterSize - - IsLoaded - - IsPaused - - IsPlaying - - IsSpatial - - LoopRegion - - Looped - - MaxDistance - - MinDistance - - Pitch - - PlayOnRemove - - PlaybackLoudness - - PlaybackRegion - - PlaybackRegionsEnabled - - PlaybackSpeed - - Playing - - RollOffGain - - RollOffMaxDistance - - RollOffMinDistance - - RollOffMode - - SoundGroup - - SoundId - - TimeLength - - TimePosition - - UsageContextPermission - - Volume - - isPlaying - SoundEffect: - superclass: Instance - events: [] - properties: - - Enabled - - Priority - SoundGroup: - superclass: Instance - events: [] - properties: - - Volume - SoundService: - superclass: Instance - events: - - DeviceListChanged - properties: - - AmbientReverb - - DistanceFactor - - DopplerScale - - RespectFilteringEnabled - - RolloffScale - - VolumetricAudio - Sparkles: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - SparkleColor - - TimeScale - SpawnLocation: - superclass: Part - events: [] - properties: - - AllowTeamChangeOnTouch - - Duration - - Enabled - - Neutral - - TeamColor - SpawnerService: - superclass: Instance - events: [] - properties: [] - Speaker: - superclass: Instance - events: [] - properties: - - ChannelCount - - PlaybackLoudness - - RollOffMaxDistance - - RollOffMinDistance - - RollOffMode - - SoundGroup - - Source - - Volume - SpecialMesh: - superclass: FileMesh - events: [] - properties: - - MeshType - SphereHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Radius - SpotLight: - superclass: Light - events: [] - properties: - - Angle - - Face - - Range - SpringConstraint: - superclass: Constraint - events: [] - properties: - - Coils - - CurrentLength - - Damping - - FreeLength - - LimitsEnabled - - MaxForce - - MaxLength - - MinLength - - Radius - - Stiffness - - Thickness - StackFrame: - superclass: Instance - events: [] - properties: - - FrameId - - FrameName - - FrameType - - Globals - - Line - - Locals - - Populated - - Script - - Upvalues - StandalonePluginScripts: - superclass: Instance - events: [] - properties: [] - StandardPages: - superclass: Pages - events: [] - properties: [] - StarterCharacterScripts: - superclass: StarterPlayerScripts - events: [] - properties: [] - StarterGear: - superclass: Instance - events: [] - properties: [] - StarterGui: - superclass: BasePlayerGui - events: - - CoreGuiChangedSignal - properties: - - ProcessUserInput - - ResetPlayerGuiOnSpawn - - RtlTextSupport - - ScreenOrientation - - ShowDevelopmentGui - - VirtualCursorMode - StarterPack: - superclass: Instance - events: [] - properties: [] - StarterPlayer: - superclass: Instance - events: [] - properties: - - AllowCustomAnimations - - AutoJumpEnabled - - CameraMaxZoomDistance - - CameraMinZoomDistance - - CameraMode - - CharacterJumpHeight - - CharacterJumpPower - - CharacterMaxSlopeAngle - - CharacterUseJumpPower - - CharacterWalkSpeed - - DevCameraOcclusionMode - - DevComputerCameraMovementMode - - DevComputerMovementMode - - DevTouchCameraMovementMode - - DevTouchMovementMode - - EnableDynamicHeads - - EnableMouseLockOption - - GameSettingsAssetIDFace - - GameSettingsAssetIDHead - - GameSettingsAssetIDLeftArm - - GameSettingsAssetIDLeftLeg - - GameSettingsAssetIDPants - - GameSettingsAssetIDRightArm - - GameSettingsAssetIDRightLeg - - GameSettingsAssetIDShirt - - GameSettingsAssetIDTeeShirt - - GameSettingsAssetIDTorso - - GameSettingsAvatar - - GameSettingsR15Collision - - GameSettingsScaleRangeBodyType - - GameSettingsScaleRangeHead - - GameSettingsScaleRangeHeight - - GameSettingsScaleRangeProportion - - GameSettingsScaleRangeWidth - - HealthDisplayDistance - - HumanoidStateMachineMode - - LoadCharacterAppearance - - 'LoadCharacterLayeredClothing ' - - NameDisplayDistance - - UserEmotesEnabled - StarterPlayerScripts: - superclass: Instance - events: [] - properties: [] - Stats: - superclass: Instance - events: [] - properties: - - ContactsCount - - DataReceiveKbps - - DataSendKbps - - HeartbeatTimeMs - - InstanceCount - - MovingPrimitivesCount - - PhysicsReceiveKbps - - PhysicsSendKbps - - PhysicsStepTimeMs - - PrimitivesCount - StatsItem: - superclass: Instance - events: [] - properties: - - DisplayName - Status: - superclass: Model - events: [] - properties: [] - StringValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - Studio: - superclass: Instance - events: - - ThemeChanged - properties: - - '"TODO" Color' - - '"function" Color' - - '"local" Color' - - '"nil" Color' - - '"self" Color' - - Active Color - - Active Hover Over Color - - Always Save Script Changes - - Animate Hover Over - - Auto Clean Empty Line - - Auto Closing Brackets - - Auto Closing Quotes - - Auto Delete Closing Brackets and Quotes - - Auto Indent Rule - - Auto-Recovery Enabled - - Auto-Recovery Interval (Minutes) - - Auto-Recovery Path - - Automatically commit locked scripts when you save or publish to Roblox - - Background Color - - Basic Objects Display Mode - - Bool Color - - Bracket Color - - Built-in Function Color - - Camera Mouse Wheel Speed - - Camera Pan Speed - - Camera Shift Speed - - Camera Speed - - Camera Zoom to Mouse Position - - Clear Output On Start - - CommandBarLocalState - - Comment Color - - Current Line Highlight Color - - Debugger Current Line Color - - Debugger Error Line Color - - DefaultScriptFileDir - - DeprecatedObjectsShown - - Display Team Create toggle when creating a new experience - - DisplayLanguage - - Doc View Code Background Color - - Drag Multiple Parts As Single Part - - Enable Autocomplete - - Enable Autocomplete Doc View - - Enable CoreScript Debugger - - Enable Http Sandboxing - - Enable Internal Beta Features - - Enable Internal Features - - Enable Script Analysis - - Enable Scrollbar Markers - - Enable Signature Help - - Enable Signature Help Doc View - - Enable Temporary Tabs - - Enable Temporary Tabs In Explorer - - Enable Type Hover - - EnableOnTypeAutocomplete - - Error Color - - File > New creates a place with Team Create off - - Find Selection Background Color - - Font - - Format On Paste - - Format On Type - - Function Name Color - - Highlight Current Line - - Highlight Occurances - - Hover Animate Speed - - Hover Box Thickness - - Hover Line Thickness - - Hover Over Color - - IconOverrideDir - - Indent Using Spaces - - Keyword Color - - Line Thickness - - LocalAssetsFolder - - LuaDebuggerEnabled - - LuaDebuggerEnabledAtStartup - - Luau Keyword Color - - Main Volume - - Matching Word Background Color - - Maximum Output Lines - - Menu Item Background Color - - Method Color - - Number Color - - Only Play Audio from Window in Focus - - Operator Color - - Output Font - - Output Layout Mode - - PermissionLevelShown - - Physical Draggers Select Scope By Default - - Pivot Snap To Geometry Color - - PluginDebuggingEnabled - - PluginsDir - - Primary Text Color - - Property Color - - Render Throttle Percentage - - Respect Studio shortcuts when game has focus - - Ruler Color - - Rulers - - RuntimeUndoBehavior - - Script Editor Color Preset - - Script Editor Scrollbar Background Color - - Script Editor Scrollbar Handle Color - - ScriptEditorMenuBorderColor - - ScriptEditorShouldShowPluginMethods - - ScriptTimeoutLength - - Scroll Past Last Line - - Search Content For Core Scripts - - Secondary Text Color - - Select Color - - Select/Hover Color - - Selected Menu Item Background Color - - Selected Text Color - - Selection Background Color - - Selection Box Thickness - - Selection Color - - Selection Highlight Thickness - - Selection Line Thickness - - Server Audio Behavior - - Set Pivot of Imported Parts - - Show Core GUI in Explorer while Playing - - Show Diagnostics Bar - - Show FileSyncService - - Show Hidden Objects in Explorer - - Show Hover Over - - Show Light Guides - - Show Navigation Labels - - Show Navigation Mesh - - Show Pathfinding Links - - Show Plugin GUI Service in Explorer - - Show QT warnings in output - - Show Whitespace - - Show plus button on hover in Explorer - - ShowCorePackagesInExplorer - - Skip Closing Brackets and Quotes - - String Color - - Tab Width - - Text Color - - Text Wrapping - - Theme - - UI Theme - - Use Bounding Box Move Handles - - Warning Color - - Whitespace Color - StudioAssetService: - superclass: Instance - events: - - OnConvertToPackageResult - - OnPublishPackageResult - - OnSaveToRoblox - properties: [] - StudioData: - superclass: Instance - events: [] - properties: - - EnableScriptCollabByDefaultOnLoad - StudioDeviceEmulatorService: - superclass: Instance - events: - - CurrentDeviceIdChanged - - OrientationChanged - - TouchInBoundsChanged - - TouchPositionsChanged - properties: - - HasMultiTouchStarted - - IsMultiTouchEmulationOn - - IsMultiTouchEnabled - - PivotPosition - StudioPublishService: - superclass: Instance - events: - - GameNameUpdated - - GamePublishCancelled - - GamePublishFinished - - OnSaveOrPublishPlaceToRoblox - properties: [] - StudioScriptDebugEventListener: - superclass: Instance - events: [] - properties: [] - StudioSdkService: - superclass: Instance - events: [] - properties: [] - StudioService: - superclass: Instance - events: - - OnImportFromRoblox - - OnOpenGameSettings - - OnOpenManagePackagePlugin - - OnPluginInstalledFromToolbox - - OnPluginInstalledFromWeb - - OnPublishAsPlugin - - OnSaveToRoblox - - PromptTransformPluginCheckEnable - - SaveLocallyAsComplete - properties: - - ActiveScript - - AlignDraggedObjects - - DraggerSolveConstraints - - DrawConstraintsOnTop - - GridSize - - HoverInstance - - InstalledPluginData - - PivotSnapToGeometry - - RotateIncrement - - ShowActiveInstanceHighlight - - ShowConstraintDetails - - StudioLocaleId - - UseLocalSpace - StudioTheme: - superclass: Instance - events: [] - properties: [] - SunRaysEffect: - superclass: PostEffect - events: [] - properties: - - Intensity - - Spread - SurfaceAppearance: - superclass: Instance - events: [] - properties: - - AlphaMode - - ColorMap - - MetalnessMap - - NormalMap - - RoughnessMap - - TexturePack - SurfaceGui: - superclass: SurfaceGuiBase - events: [] - properties: - - AlwaysOnTop - - Brightness - - CanvasSize - - ClipsDescendants - - HorizontalCurvature - - LightInfluence - - PixelsPerStud - - Shape - - SizingMode - - ToolPunchThroughDistance - - ZOffset - SurfaceGuiBase: - superclass: LayerCollector - events: [] - properties: - - Active - - Adornee - - Face - SurfaceLight: - superclass: Light - events: [] - properties: - - Angle - - Face - - Range - SurfaceSelection: - superclass: PartAdornment - events: [] - properties: - - TargetSurface - SwimController: - superclass: ControllerBase - events: [] - properties: - - AccelerationTime - - PitchMaxTorque - - PitchSpeedFactor - - RollMaxTorque - - RollSpeedFactor - SyncScriptBuilder: - superclass: ScriptBuilder - events: [] - properties: - - CoverageInfo - - DebugInfo - - PackAsSource - - RawBytecode - TaskScheduler: - superclass: Instance - events: [] - properties: - - SchedulerDutyCycle - - SchedulerRate - - ThreadPoolConfig - - ThreadPoolSize - Team: - superclass: Instance - events: - - PlayerAdded - - PlayerRemoved - properties: - - AutoAssignable - - AutoColorCharacters - - ChildOrder - - Score - - TeamColor - TeamCreateData: - superclass: Instance - events: [] - properties: [] - TeamCreatePublishService: - superclass: Instance - events: [] - properties: [] - TeamCreateService: - superclass: Instance - events: - - ToggleManageCollaborators - properties: [] - Teams: - superclass: Instance - events: [] - properties: [] - TeleportAsyncResult: - superclass: Instance - events: [] - properties: - - PrivateServerId - - ReservedServerAccessCode - TeleportOptions: - superclass: Instance - events: [] - properties: - - ReservedServerAccessCode - - ServerInstanceId - - ShouldReserveServer - TeleportService: - superclass: Instance - events: - - LocalPlayerArrivedFromTeleport - - MenuTeleportAttempt - - TeleportInitFailed - properties: - - CustomizedTeleportUI - TemporaryCageMeshProvider: - superclass: Instance - events: [] - properties: [] - TemporaryScriptService: - superclass: Instance - events: [] - properties: [] - Terrain: - superclass: BasePart - events: [] - properties: - - Decoration - - IsSmooth - - LastUsedModificationMethod - - MaterialColors - - MaxExtents - - ShorelinesUpgraded - - SmoothVoxelsUpgraded - - WaterColor - - WaterReflectance - - WaterTransparency - - WaterWaveSize - - WaterWaveSpeed - TerrainDetail: - superclass: Instance - events: [] - properties: - - ColorMap - - Face - - MaterialPattern - - MetalnessMap - - NormalMap - - RoughnessMap - - StudsPerTile - TerrainRegion: - superclass: Instance - events: [] - properties: - - IsSmooth - - SizeInCells - TestService: - superclass: Instance - events: - - ServerCollectConditionalResult - - ServerCollectResult - properties: - - AutoRuns - - Description - - ErrorCount - - ExecuteWithStudioRun - - Is30FpsThrottleEnabled - - IsPhysicsEnvironmentalThrottled - - IsSleepAllowed - - NumberOfPlayers - - SimulateSecondsLag - - TestCount - - Timeout - - WarnCount - TextBox: - superclass: GuiObject - events: - - FocusLost - - Focused - - ReturnPressedFromOnScreenKeyboard - properties: - - ClearTextOnFocus - - ContentText - - CursorPosition - - Font - - FontFace - - FontSize - - LineHeight - - ManualFocusRelease - - MaxVisibleGraphemes - - MultiLine - - OverlayNativeInput - - PlaceholderColor3 - - PlaceholderText - - ReturnKeyType - - RichText - - SelectionStart - - ShowNativeInput - - Text - - TextBounds - - TextColor - - TextColor3 - - TextEditable - - TextFits - - TextInputType - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextBoxService: - superclass: Instance - events: [] - properties: [] - TextButton: - superclass: GuiButton - events: [] - properties: - - ContentText - - Font - - FontFace - - FontSize - - LineHeight - - LocalizedText - - MaxVisibleGraphemes - - RichText - - Text - - TextBounds - - TextColor - - TextColor3 - - TextFits - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextChannel: - superclass: Instance - events: - - MessageReceived - properties: [] - TextChatCommand: - superclass: Instance - events: - - Triggered - properties: - - Enabled - - PrimaryAlias - - SecondaryAlias - TextChatConfigurations: - superclass: Instance - events: [] - properties: [] - TextChatMessage: - superclass: Instance - events: [] - properties: - - MessageId - - Metadata - - PrefixText - - Status - - Text - - TextChannel - - TextSource - - Timestamp - TextChatMessageProperties: - superclass: Instance - events: [] - properties: - - PrefixText - - Text - TextChatService: - superclass: Instance - events: - - MessageReceived - - SendingMessage - properties: - - ChatVersion - - CreateDefaultCommands - - CreateDefaultTextChannels - TextFilterResult: - superclass: Instance - events: [] - properties: [] - TextLabel: - superclass: GuiLabel - events: [] - properties: - - ContentText - - Font - - FontFace - - FontSize - - LineHeight - - LocalizedText - - MaxVisibleGraphemes - - RichText - - Text - - TextBounds - - TextColor - - TextColor3 - - TextFits - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextService: - superclass: Instance - events: [] - properties: [] - TextSource: - superclass: Instance - events: [] - properties: - - CanSend - - UserId - Texture: - superclass: Decal - events: [] - properties: - - OffsetStudsU - - OffsetStudsV - - StudsPerTileU - - StudsPerTileV - TextureGuiExperimental: - superclass: LayerCollector - events: [] - properties: - - Size - - TemporaryId - ThirdPartyUserService: - superclass: Instance - events: - - ActiveGamepadAdded - - ActiveGamepadRemoved - - ActiveUserSignedOut - properties: [] - ThreadState: - superclass: Instance - events: [] - properties: - - FrameCount - - Populated - - ThreadId - - ThreadName - TimerService: - superclass: Instance - events: [] - properties: [] - ToastNotificationService: - superclass: Instance - events: [] - properties: [] - Tool: - superclass: BackpackItem - events: - - Activated - - Deactivated - - Equipped - - Unequipped - properties: - - CanBeDropped - - Enabled - - Grip - - GripForward - - GripPos - - GripRight - - GripUp - - ManualActivationOnly - - RequiresHandle - - ToolTip - Torque: - superclass: Constraint - events: [] - properties: - - RelativeTo - - Torque - TorsionSpringConstraint: - superclass: Constraint - events: [] - properties: - - Coils - - CurrentAngle - - Damping - - LimitEnabled - - LimitsEnabled - - MaxAngle - - MaxTorque - - Radius - - Restitution - - Stiffness - TotalCountTimeIntervalItem: - superclass: StatsItem - events: [] - properties: [] - TouchInputService: - superclass: Instance - events: [] - properties: [] - TouchTransmitter: - superclass: Instance - events: [] - properties: [] - TracerService: - superclass: Instance - events: [] - properties: [] - TrackerLodController: - superclass: Instance - events: - - UpdateState - properties: - - AudioMode - - VideoExtrapolationMode - - VideoLodMode - - VideoMode - TrackerStreamAnimation: - superclass: Instance - events: [] - properties: [] - Trail: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - Brightness - - Color - - Enabled - - FaceCamera - - Lifetime - - LightEmission - - LightInfluence - - MaxLength - - MinLength - - Texture - - TextureLength - - TextureMode - - Transparency - - WidthScale - Translator: - superclass: Instance - events: [] - properties: - - LocaleId - TremoloSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Duty - - Frequency - TriangleMeshPart: - superclass: BasePart - events: [] - properties: - - CollisionFidelity - - MeshSize - TrussPart: - superclass: BasePart - events: [] - properties: - - Style - Tween: - superclass: TweenBase - events: [] - properties: - - Instance - - TweenInfo - TweenBase: - superclass: Instance - events: - - Completed - properties: - - PlaybackState - TweenService: - superclass: Instance - events: [] - properties: [] - UGCValidationService: - superclass: Instance - events: [] - properties: [] - UIAspectRatioConstraint: - superclass: UIConstraint - events: [] - properties: - - AspectRatio - - AspectType - - DominantAxis - UIBase: - superclass: Instance - events: [] - properties: [] - UIComponent: - superclass: UIBase - events: [] - properties: [] - UIConstraint: - superclass: UIComponent - events: [] - properties: [] - UICorner: - superclass: UIComponent - events: [] - properties: - - CornerRadius - UIGradient: - superclass: UIComponent - events: [] - properties: - - Color - - Enabled - - Offset - - Rotation - - Transparency - UIGridLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - AbsoluteCellCount - - AbsoluteCellSize - - CellPadding - - CellSize - - FillDirectionMaxCells - - StartCorner - UIGridStyleLayout: - superclass: UILayout - events: [] - properties: - - AbsoluteContentSize - - FillDirection - - HorizontalAlignment - - SortOrder - - VerticalAlignment - UILayout: - superclass: UIComponent - events: [] - properties: [] - UIListLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - Padding - UIPadding: - superclass: UIComponent - events: [] - properties: - - PaddingBottom - - PaddingLeft - - PaddingRight - - PaddingTop - UIPageLayout: - superclass: UIGridStyleLayout - events: - - PageEnter - - PageLeave - - Stopped - properties: - - Animated - - Circular - - CurrentPage - - EasingDirection - - EasingStyle - - GamepadInputEnabled - - Padding - - ScrollWheelInputEnabled - - TouchInputEnabled - - TweenTime - UIScale: - superclass: UIComponent - events: [] - properties: - - Scale - UISizeConstraint: - superclass: UIConstraint - events: [] - properties: - - MaxSize - - MinSize - UIStroke: - superclass: UIComponent - events: [] - properties: - - ApplyStrokeMode - - Color - - Enabled - - LineJoinMode - - Thickness - - Transparency - UITableLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - FillEmptySpaceColumns - - FillEmptySpaceRows - - MajorAxis - - Padding - UITextSizeConstraint: - superclass: UIConstraint - events: [] - properties: - - MaxTextSize - - MinTextSize - UnionOperation: - superclass: PartOperation - events: [] - properties: [] - UniversalConstraint: - superclass: Constraint - events: [] - properties: - - LimitsEnabled - - MaxAngle - - Radius - - Restitution - UnvalidatedAssetService: - superclass: Instance - events: [] - properties: [] - UserGameSettings: - superclass: Instance - events: - - FullscreenChanged - - PerformanceStatsVisibleChanged - - StudioModeChanged - properties: - - AllTutorialsDisabled - - CameraMode - - CameraYInverted - - ChatVisible - - ComputerCameraMovementMode - - ComputerMovementMode - - ControlMode - - DefaultCameraID - - Fullscreen - - GamepadCameraSensitivity - - GraphicsQualityLevel - - HasEverUsedVR - - IsUsingCameraYInverted - - IsUsingGamepadCameraSensitivity - - MasterVolume - - MicroProfilerWebServerEnabled - - MicroProfilerWebServerIP - - MicroProfilerWebServerPort - - MouseSensitivity - - MouseSensitivityFirstPerson - - MouseSensitivityThirdPerson - - OnScreenProfilerEnabled - - OnboardingsCompleted - - PerformanceStatsVisible - - PlayerHeight - - RCCProfilerRecordFrameRate - - RCCProfilerRecordTimeFrame - - RotationType - - SavedQualityLevel - - StartMaximized - - StartScreenPosition - - StartScreenSize - - TouchCameraMovementMode - - TouchMovementMode - - UsedCoreGuiIsVisibleToggle - - UsedCustomGuiIsVisibleToggle - - UsedHideHudShortcut - - VREnabled - - VRPlayMode - - VRRotationIntensity - - VRSafetyBubbleMode - - VRSmoothRotationEnabled - - VignetteEnabled - UserInputService: - superclass: Instance - events: - - DeviceAccelerationChanged - - DeviceGravityChanged - - DeviceRotationChanged - - GamepadConnected - - GamepadDisconnected - - InputBegan - - InputChanged - - InputEnded - - JumpRequest - - LastInputTypeChanged - - PointerAction - - StatusBarTapped - - TextBoxFocusReleased - - TextBoxFocused - - TouchEnded - - TouchLongPress - - TouchMoved - - TouchPan - - TouchPinch - - TouchRotate - - TouchStarted - - TouchSwipe - - TouchTap - - TouchTapInWorld - - UserCFrameChanged - - WindowFocusReleased - - WindowFocused - properties: - - AccelerometerEnabled - - BottomBarSize - - GamepadEnabled - - GazeSelectionEnabled - - GyroscopeEnabled - - KeyboardEnabled - - LegacyInputEventsEnabled - - ModalEnabled - - MouseBehavior - - MouseDeltaSensitivity - - MouseEnabled - - MouseIcon - - MouseIconEnabled - - NavBarSize - - OnScreenKeyboardAnimationDuration - - OnScreenKeyboardPosition - - OnScreenKeyboardSize - - OnScreenKeyboardVisible - - OverrideMouseIconBehavior - - RightBarSize - - StatusBarSize - - TouchEnabled - - UserHeadCFrame - - VREnabled - UserService: - superclass: Instance - events: [] - properties: [] - UserSettings: - superclass: GenericSettings - events: [] - properties: [] - UserStorageService: - superclass: LocalStorageService - events: [] - properties: [] - VRService: - superclass: Instance - events: - - NavigationRequested - - TouchpadModeChanged - - UserCFrameChanged - - UserCFrameEnabled - properties: - - AutomaticScaling - - DidPointerHit - - FadeOutViewOnCollision - - GuiInputUserCFrame - - LaserDistance - - PointerHitCFrame - - VRDeviceAvailable - - VRDeviceName - - VREnabled - - VRSessionState - ValueBase: - superclass: Instance - events: [] - properties: [] - Vector3Curve: - superclass: Instance - events: [] - properties: [] - Vector3Value: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - VectorForce: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - Force - - RelativeTo - VehicleController: - superclass: Controller - events: [] - properties: [] - VehicleSeat: - superclass: BasePart - events: [] - properties: - - AreHingesDetected - - Disabled - - HeadsUpDisplay - - MaxSpeed - - Occupant - - Steer - - SteerFloat - - Throttle - - ThrottleFloat - - Torque - - TurnSpeed - VelocityMotor: - superclass: JointInstance - events: [] - properties: - - CurrentAngle - - DesiredAngle - - Hole - - MaxVelocity - VersionControlService: - superclass: Instance - events: [] - properties: - - ScriptCollabEnabled - VideoCaptureService: - superclass: Instance - events: - - DevicesChanged - - Error - - Started - - Stopped - properties: - - Active - - CameraID - VideoFrame: - superclass: GuiObject - events: - - DidLoop - - Ended - - Loaded - - Paused - - Played - properties: - - IsLoaded - - Looped - - Playing - - Resolution - - TimeLength - - TimePosition - - Video - - Volume - ViewportFrame: - superclass: GuiObject - events: [] - properties: - - Ambient - - CurrentCamera - - ImageColor3 - - ImageTransparency - - IsMirrored - - LightColor - - LightDirection - VirtualInputManager: - superclass: Instance - events: - - PlaybackCompleted - - RecordingCompleted - properties: - - AdditionalLuaState - VirtualUser: - superclass: Instance - events: [] - properties: [] - VisibilityCheckDispatcher: - superclass: Instance - events: [] - properties: [] - VisibilityService: - superclass: Instance - events: [] - properties: [] - Visit: - superclass: Instance - events: [] - properties: [] - VoiceChatInternal: - superclass: Instance - events: - - LocalPlayerModerated - - ParticipantsStateChanged - - PlayerMicActivitySignalChange - - StateChanged - properties: - - VoiceChatState - VoiceChatService: - superclass: Instance - events: [] - properties: - - EnableDefaultVoice - - VoiceChatEnabledForPlaceOnRcc - - VoiceChatEnabledForUniverseOnRcc - VoiceSource: - superclass: Instance - events: [] - properties: - - UserId - WedgePart: - superclass: FormFactorPart - events: [] - properties: [] - Weld: - superclass: JointInstance - events: [] - properties: [] - WeldConstraint: - superclass: Instance - events: [] - properties: - - Active - - Enabled - - Part0 - - Part1 - WireframeHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Scale - Workspace: - superclass: WorldRoot - events: - - PersistentLoaded - properties: - - AllowThirdPartySales - - ClientAnimatorThrottling - - CurrentCamera - - DistributedGameTime - - FallenPartsDestroyHeight - - FilteringEnabled - - GlobalWind - - Gravity - - HumanoidOnlySetCollisionsOnStateChange - - InterpolationThrottling - - MeshPartHeadsAndAccessories - - PhysicsSteppingMethod - - RejectCharacterDeletions - - ReplicateInstanceDestroySetting - - Retargeting - - SignalBehavior - - StreamOutBehavior - - StreamingEnabled - - StreamingIntegrityMode - - StreamingMinRadius - - StreamingTargetRadius - - Terrain - - TouchesUseCollisionGroups - WorldModel: - superclass: WorldRoot - events: [] - properties: [] - WorldRoot: - superclass: Model - events: [] - properties: [] - WrapLayer: - superclass: BaseWrap - events: [] - properties: - - AutoSkin - - BindOffset - - Color - - DebugMode - - Enabled - - Order - - Puffiness - - ReferenceMeshId - - ReferenceOrigin - - ReferenceOriginWorld - - ShrinkFactor - WrapTarget: - superclass: BaseWrap - events: [] - properties: - - Color - - DebugMode - - Stiffness diff --git a/Modules/Iter/selene.toml b/Modules/Iter/selene.toml deleted file mode 100644 index c1911be..0000000 --- a/Modules/Iter/selene.toml +++ /dev/null @@ -1 +0,0 @@ -std = "roblox+testez" \ No newline at end of file diff --git a/Modules/Iter/testez.yml b/Modules/Iter/testez.yml deleted file mode 100644 index 5c1adda..0000000 --- a/Modules/Iter/testez.yml +++ /dev/null @@ -1,53 +0,0 @@ ---- -globals: - FIXME: - args: - - required: false - type: string - FOCUS: - args: [] - SKIP: - args: [] - afterAll: - args: - - type: function - afterEach: - args: - - type: function - beforeAll: - args: - - type: function - beforeEach: - args: - - type: function - describe: - args: - - type: string - - type: function - describeFOCUS: - args: - - type: string - - type: function - describeSKIP: - args: - - type: string - - type: function - expect: - args: - - type: any - it: - args: - - type: string - - type: function - itFIXME: - args: - - type: string - - type: function - itFOCUS: - args: - - type: string - - type: function - itSKIP: - args: - - type: string - - type: function \ No newline at end of file diff --git a/Modules/Iter/wally.toml b/Modules/Iter/wally.toml deleted file mode 100644 index 39d093f..0000000 --- a/Modules/Iter/wally.toml +++ /dev/null @@ -1,18 +0,0 @@ -[package] -name = "4x8matrix/project" -version = "0.1.0" -realm = "shared" -registry = "https://github.com/UpliftGames/wally-index" -licence = "MIT" -authors = ["AsynchronousMatrix"] - -description = "" - -exclude = ["**"] -include = ["Source", "Source/*", "default.project.json", "wally.toml"] - -[dev-dependencies] -TestEz = "roblox/testez@0.4.1" -EmoticonReporter = "4x8matrix/emoticon-reporter@1.0.0" - -[dependencies] \ No newline at end of file diff --git a/Modules/RGBA/Backend/init.lua b/Modules/RGBA/Backend/init.lua deleted file mode 100644 index 38729cb..0000000 --- a/Modules/RGBA/Backend/init.lua +++ /dev/null @@ -1,16 +0,0 @@ -local net = require("@lune/net") -local fs = require("@lune/fs") - -local PORT = 1227 - -print(`Binding 'file-server' to port {PORT}!`) - -net.serve(PORT, function(data) - print("Writing PNG file!") - - fs.writeFile(`example.png`, data.body) - - return { - status = 200, - } -end) diff --git a/Modules/RGBA/Source/PNG.luau b/Modules/RGBA/Source/PNG.luau deleted file mode 100644 index e6644ba..0000000 --- a/Modules/RGBA/Source/PNG.luau +++ /dev/null @@ -1,269 +0,0 @@ ---[=[ - @class PNGObject - - The PNG Object enables a developer to write Roblox's flat RGBA array into a PNG file format, allowing developers to export - the contents of `EditableImage:ReadPixels`, which could come in handy for things such as Plugins. - - Most of the work is done upon creating this class, essentially all you have to do as a dev is call `:ToString` to get the - binary blob, the image itself. - - TL;DR, this is a PNG encoder. - - - Any PNG file created through this encoder will export an image w/o compression, true color with alpha. - - - --- - - I do want to credit the following people for both a resource and reference for this impl; - - - https://github.com/wyozi/lua-pngencoder/tree/master - - [Joonas](https://github.com/wyozi) - - [David Vogel](https://github.com/Dadido3) - - - https://www.w3.org/TR/png/ -]=] - -local DEFLATE_MAX_BLOCK_SIZE = 65535 - -local PNG = {} - -PNG.Interface = {} -PNG.Prototype = {} - -PNG.Prototype.Height = -0 -PNG.Prototype.Width = -0 -PNG.Prototype.LineSize = 0 -PNG.Prototype.UncompressedDataRemaining = 0 -PNG.Prototype.DeflateBlocksCount = 0 -PNG.Prototype.DeflateBlockFilled = -1 -PNG.Prototype.IDATSize = 0 -PNG.Prototype.Buffer = newproxy() :: buffer -PNG.Prototype.BufferPosition = -1 -PNG.Prototype.BufferSize = -1 - -function PNG.Prototype.Write(self: PNG, ...) - for _, object in { ... } do - buffer.writeu8(self.Buffer, self.BufferPosition, object) - self.BufferPosition += 1 - end -end - -function PNG.Prototype.Destroy(self: PNG, ...) - buffer.fill(self.Buffer, 0, 0) -end - -function PNG.Prototype.WriteUInt32(self: PNG, ...) - for _, object in { ... } do - for index = 0, 3 do - self:Write(bit32.band(bit32.rshift(object, (3 - index) * 8), 0xFF)) - end - end -end - -function PNG.Prototype.WriteIEND(self: PNG) - self:WriteUInt32(self.Adler) - self:WriteUInt32(self:UpdateCRC32(4)) - - self:Write(0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4E, 0x44, 0xAE, 0x42, 0x60, 0x82) -end - -function PNG.Prototype.WritePixels(self: PNG, rgba: { [number]: number }) - local positionX = 0 - local positionY = 0 - - for rgbaIndex = 1, #rgba, 4 do - local rawPixelQueue = { rgba[rgbaIndex + 0], rgba[rgbaIndex + 1], rgba[rgbaIndex + 2], rgba[rgbaIndex + 3] } - - repeat - if self.DeflateBlockFilled == -1 then - local deflateBlockSize = DEFLATE_MAX_BLOCK_SIZE - - if self.UncompressedDataRemaining < DEFLATE_MAX_BLOCK_SIZE then - deflateBlockSize = self.UncompressedDataRemaining - end - - self:Write(bit32.band((self.UncompressedDataRemaining <= DEFLATE_MAX_BLOCK_SIZE and 1 or 0), 0xFF)) - self:Write(bit32.band(bit32.rshift(deflateBlockSize, 0), 0xFF)) - self:Write(bit32.band(bit32.rshift(deflateBlockSize, 8), 0xFF)) - self:Write(bit32.band(bit32.bxor(bit32.rshift(deflateBlockSize, 0), 0xFF), 0xFF)) - self:Write(bit32.band(bit32.bxor(bit32.rshift(deflateBlockSize, 8), 0xFF), 0xFF)) - - self:UpdateCRC32(5) - - self.DeflateBlockFilled = 0 - end - - if positionX == 0 then - self:Write(0) - self:UpdateCRC32(1) - self:UpdateAdler32(1) - - positionX += 1 - - self.UncompressedDataRemaining -= 1 - self.DeflateBlockFilled += 1 - else - local index = math.clamp(DEFLATE_MAX_BLOCK_SIZE - self.DeflateBlockFilled, 0, 4) - - if self.LineSize - positionX < index then - index = self.LineSize - positionX - end - - if #rawPixelQueue < index then - index = #rawPixelQueue - end - - for pixelIndex = 1, index do - self:Write(table.remove(rawPixelQueue, 1) :: number * 255) - end - - self:UpdateCRC32(index) - self:UpdateAdler32(index) - - positionX += index - - self.DeflateBlockFilled += index - self.UncompressedDataRemaining -= index - end - - if self.DeflateBlockFilled >= DEFLATE_MAX_BLOCK_SIZE then - self.DeflateBlockFilled = -1 - end - - if positionX == self.LineSize then - positionX = 0 - positionY += 1 - end - until #rawPixelQueue == 0 - end -end - -function PNG.Prototype.UpdateCRC32(self: PNG, length: number, resetCRC: boolean) - if resetCRC then - self.CRC = 0 - end - - self.CRC = bit32.bnot(self.CRC) - - for index = self.BufferPosition - length, self.BufferPosition - 1 do - local byte = buffer.readu8(self.Buffer, index) - - for bitIndex = 0, 7 do -- Inefficient bitwise implementation, instead of table-based - local bit = bit32.band(bit32.bxor(self.CRC, bit32.rshift(byte, bitIndex)), 1); - - self.CRC = bit32.bxor(bit32.rshift(self.CRC, 1), bit32.band((-bit), 0xEDB88320)); - end - end - - self.CRC = bit32.bnot(self.CRC) - - return self.CRC -end - -function PNG.Prototype.UpdateAdler32(self: PNG, length: number) - local s1 = bit32.band(self.Adler, 0xFFFF) - local s2 = bit32.rshift(self.Adler, 16) - - for index = self.BufferPosition - length, self.BufferPosition - 1 do - s1 = (s1 + buffer.readu8(self.Buffer, index)) % 65521 - s2 = (s2 + s1) % 65521 - end - - self.Adler = bit32.bor(bit32.lshift(s2, 16), s1) -end - ---[=[ - @method ToString - @within PNGObject - - @return string - - Returns the binary blob for the PNG file, this is essentially the content you'd find under a `object.png` file. -]=] -function PNG.Prototype.ToString(self: PNG) - return buffer.tostring(self.Buffer) -end - ---[=[ - @function new - @within PNGObject - - @param size Vector2 - @param rgba { [number]: number } - - @return PNGObject - - Constructor function that creates a new PNG file, when this function is called, the binary data for the RGBA array will - be generated alongside this call. - - ```lua - local pixels = EditableImage:ReadPixels() - local pngObject = RGBA.PNG.new(EditableImage.Size, pixels) - - HttpService:PostAsync("https://some-image-uploading-site/upload", pngObject:ToString()) - ``` -]=] -function PNG.Interface.new(size: Vector2, rgba: { [number]: number }) - local self = setmetatable({}, { __index = PNG.Prototype }) - - self.Height = size.X - self.Width = size.Y - - self.LineSize = (self.Width * 4 + 1) - self.UncompressedDataRemaining = self.LineSize * self.Height - self.DeflateBlocksCount = math.ceil(self.UncompressedDataRemaining / DEFLATE_MAX_BLOCK_SIZE) - self.IDATSize = (self.DeflateBlocksCount * 5 + 6) + self.UncompressedDataRemaining - - self.BufferPosition = 0 - self.BufferSize = self.IDATSize + 96 - self.Buffer = buffer.create(self.BufferSize) - - self.CRC = 0 - self.Adler = 1 - - -- SIGNATURE - self:Write(0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A) - - -- IHDR - self:Write(0x00, 0x00, 0x00, 0x0D) -- magic - self:Write(0x49, 0x48, 0x44, 0x52) -- header - self:WriteUInt32(self.Width) -- width - self:WriteUInt32(self.Height) -- height - self:Write(0x08) -- bit depth - self:Write(6) -- color type - self:Write(0x00) -- compression method - self:Write(0x00) -- filter method - self:Write(0x00) -- interlace method - - self:UpdateCRC32(17) - self:WriteUInt32(self.CRC) - - -- TEXT - self:WriteUInt32(27) -- size - self:Write(0x74, 0x45, 0x58, 0x74) -- header - self:Write(0x53, 0x65, 0x63, 0x72, 0x65, 0x74) -- egg? - self:Write(0x00) - self:Write(0x41, 0x73, 0x79, 0x6E, 0x63, 0x4D, 0x61, 0x74, 0x72, 0x69, 0x78) -- not sure what this is - self:Write(0x20, 0x57, 0x61, 0x73, 0x20, 0x48, 0x65, 0x72, 0x65) -- or this - - self:UpdateCRC32(31, true) - self:WriteUInt32(self.CRC) - - -- -- IDAT - self:WriteUInt32(self.IDATSize) -- size - self:Write(0x49, 0x44, 0x41, 0x54) -- header - self:Write(0x08, 0x1D) -- deflate - - self:UpdateCRC32(6, true) - - self:WritePixels(rgba) - - self:WriteIEND() - - return self -end - -export type PNG = typeof(PNG.Prototype) - -return PNG.Interface diff --git a/Modules/RGBA/Source/init.luau b/Modules/RGBA/Source/init.luau deleted file mode 100644 index 5fc60cf..0000000 --- a/Modules/RGBA/Source/init.luau +++ /dev/null @@ -1,21 +0,0 @@ ---[=[ - @class RGBA - - RGBA is a Roblox/Luau library for encoding/decoding various image file formats, allowing developers to encode/decode roblox's - flat RGBA array into standard file formats. - - To note; I'm throwing the world 'RGBA' around a bit, by this, I mean the object Roblox returns when calling `EditableImage:ReadPixels` - https://create.roblox.com/docs/reference/engine/classes/EditableImage#ReadPixels -]=] - -local RGBA = {} - -RGBA.Interface = {} - ---[=[ - @prop PNG [PNG](/Packages/RGBA/PNGObject) - @within RGBA -]=] -RGBA.Interface.PNG = require(script.PNG) - -return RGBA.Interface diff --git a/Modules/RGBA/Source/init.spec.luau b/Modules/RGBA/Source/init.spec.luau deleted file mode 100644 index 65d7220..0000000 --- a/Modules/RGBA/Source/init.spec.luau +++ /dev/null @@ -1,3 +0,0 @@ -return function() - -end \ No newline at end of file diff --git a/Modules/RGBA/Tests/Runtime.server.luau b/Modules/RGBA/Tests/Runtime.server.luau deleted file mode 100644 index dc0d3ed..0000000 --- a/Modules/RGBA/Tests/Runtime.server.luau +++ /dev/null @@ -1,23 +0,0 @@ -local ReplicatedStorage = game:GetService("ReplicatedStorage") -local AssetService = game:GetService("AssetService") -local CaptureService = game:GetService("CaptureService") - -local RGBA = require(ReplicatedStorage.Packages.RGBA:Clone()) - -local IMAGE_SIZE = 1024 -- 512 - -CaptureService:CaptureScreenshot(function(id) - local EditableImage = AssetService:CreateEditableImageAsync(id) - local FlatRGBAArray = EditableImage:ReadPixels(Vector2.zero, Vector2.new(IMAGE_SIZE, IMAGE_SIZE)) - - local PNG = RGBA.PNG.new( - Vector2.new(IMAGE_SIZE, IMAGE_SIZE), - FlatRGBAArray - ) - - game:GetService("HttpService"):RequestAsync({ - Url = "http://localhost:1227", - Method = "POST", - Body = PNG:ToString() -- table.concat(png.output, "") - }) -end) diff --git a/Modules/RGBA/aftman.toml b/Modules/RGBA/aftman.toml deleted file mode 100644 index 349f6b9..0000000 --- a/Modules/RGBA/aftman.toml +++ /dev/null @@ -1,9 +0,0 @@ -# This file lists tools managed by Aftman, a cross-platform toolchain manager. -# For more information, see https://github.com/LPGhatguy/aftman - -# To add a new tool, add an entry to this table. - -[tools] -rojo = "rojo-rbx/rojo@7.3.0" -selene = "Kampfkarren/selene@0.25.0" -wally = "UpliftGames/wally@0.3.2" \ No newline at end of file diff --git a/Modules/RGBA/default.project.json b/Modules/RGBA/default.project.json deleted file mode 100644 index 602b917..0000000 --- a/Modules/RGBA/default.project.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "name": "rgba", - "tree": { - "$path": "Source" - } -} \ No newline at end of file diff --git a/Modules/RGBA/development.project.json b/Modules/RGBA/development.project.json deleted file mode 100644 index 0dcb621..0000000 --- a/Modules/RGBA/development.project.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "name": "rgba", - "tree": { - "$className": "DataModel", - - "Players": { - "$className": "Players", - "$properties": { - "CharacterAutoLoads": false - } - }, - - "ReplicatedStorage": { - "$className": "ReplicatedStorage", - "$ignoreUnknownInstances": true, - - "Packages": { - "$className": "Folder", - "$path": "Packages", - - "RGBA": { - "$path": "Source" - } - }, - - "DevPackages": { - "$className": "Folder", - "$path": "DevPackages" - } - }, - - "ServerScriptService": { - "$className": "ServerScriptService", - "$ignoreUnknownInstances": true, - "$path": "Tests" - } - } -} \ No newline at end of file diff --git a/Modules/RGBA/example.png b/Modules/RGBA/example.png deleted file mode 100644 index dca9a0e..0000000 Binary files a/Modules/RGBA/example.png and /dev/null differ diff --git a/Modules/RGBA/roblox.yml b/Modules/RGBA/roblox.yml deleted file mode 100644 index e4089d3..0000000 --- a/Modules/RGBA/roblox.yml +++ /dev/null @@ -1,16959 +0,0 @@ -# This file was @generated by generate-roblox-std at 2023-04-11 16:38:39.388332415 +01:00 -base: luau -name: roblox -globals: - Axes.new: - args: - - type: '...' - must_use: true - BrickColor.Black: - args: [] - must_use: true - BrickColor.Blue: - args: [] - must_use: true - BrickColor.DarkGray: - args: [] - must_use: true - BrickColor.Gray: - args: [] - must_use: true - BrickColor.Green: - args: [] - must_use: true - BrickColor.Red: - args: [] - must_use: true - BrickColor.White: - args: [] - must_use: true - BrickColor.Yellow: - args: [] - must_use: true - BrickColor.new: - args: - - type: any - - required: false - type: number - - required: false - type: number - must_use: true - BrickColor.palette: - args: - - type: number - must_use: true - BrickColor.random: - args: [] - must_use: true - CFrame.Angles: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - CFrame.fromAxisAngle: - args: - - type: - display: Vector3 - - type: number - must_use: true - CFrame.fromEulerAngles: - args: - - type: number - - type: number - - type: number - - required: false - type: - display: RotationOrder - must_use: true - CFrame.fromEulerAnglesXYZ: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.fromEulerAnglesYXZ: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.fromMatrix: - args: - - type: - display: Vector3 - - type: - display: Vector3 - - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - CFrame.fromOrientation: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.identity: - property: read-only - CFrame.lookAt: - args: - - type: - display: Vector3 - - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - CFrame.new: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - CatalogSearchParams.new: - args: [] - must_use: true - Color3.fromHSV: - args: - - type: number - - type: number - - type: number - must_use: true - Color3.fromHex: - args: - - type: string - must_use: true - Color3.fromRGB: - args: - - type: number - - type: number - - type: number - must_use: true - Color3.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Color3.toHSV: - args: - - type: - display: Color3 - must_use: true - ColorSequence.new: - args: - - type: any - - required: false - type: - display: Color3 - must_use: true - ColorSequenceKeypoint.new: - args: - - type: number - - type: - display: Color3 - must_use: true - DateTime.fromIsoDate: - args: - - type: string - must_use: true - DateTime.fromLocalTime: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - DateTime.fromUniversalTime: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - DateTime.fromUnixTimestamp: - args: - - type: number - must_use: true - DateTime.fromUnixTimestampMillis: - args: - - type: number - must_use: true - DateTime.now: - args: [] - must_use: true - DebuggerManager: - args: [] - must_use: true - DockWidgetPluginGuiInfo.new: - args: - - required: false - type: - display: InitialDockState - - required: false - type: bool - - required: false - type: bool - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Enum.AccessoryType.Back: - struct: EnumItem - Enum.AccessoryType.DressSkirt: - struct: EnumItem - Enum.AccessoryType.Eyebrow: - struct: EnumItem - Enum.AccessoryType.Eyelash: - struct: EnumItem - Enum.AccessoryType.Face: - struct: EnumItem - Enum.AccessoryType.Front: - struct: EnumItem - Enum.AccessoryType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AccessoryType.Hair: - struct: EnumItem - Enum.AccessoryType.Hat: - struct: EnumItem - Enum.AccessoryType.Jacket: - struct: EnumItem - Enum.AccessoryType.LeftShoe: - struct: EnumItem - Enum.AccessoryType.Neck: - struct: EnumItem - Enum.AccessoryType.Pants: - struct: EnumItem - Enum.AccessoryType.RightShoe: - struct: EnumItem - Enum.AccessoryType.Shirt: - struct: EnumItem - Enum.AccessoryType.Shorts: - struct: EnumItem - Enum.AccessoryType.Shoulder: - struct: EnumItem - Enum.AccessoryType.Sweater: - struct: EnumItem - Enum.AccessoryType.TShirt: - struct: EnumItem - Enum.AccessoryType.TeeShirt: - struct: EnumItem - deprecated: - message: Enum.AccessoryType.TeeShirt was replaced with Enum.AccessoryType.TShirt - replace: - - Enum.AccessoryType.TShirt - Enum.AccessoryType.Unknown: - struct: EnumItem - Enum.AccessoryType.Waist: - struct: EnumItem - Enum.ActionType.Draw: - struct: EnumItem - Enum.ActionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActionType.Lose: - struct: EnumItem - Enum.ActionType.Nothing: - struct: EnumItem - Enum.ActionType.Pause: - struct: EnumItem - Enum.ActionType.Win: - struct: EnumItem - Enum.ActuatorRelativeTo.Attachment0: - struct: EnumItem - Enum.ActuatorRelativeTo.Attachment1: - struct: EnumItem - Enum.ActuatorRelativeTo.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActuatorRelativeTo.World: - struct: EnumItem - Enum.ActuatorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActuatorType.Motor: - struct: EnumItem - Enum.ActuatorType.None: - struct: EnumItem - Enum.ActuatorType.Servo: - struct: EnumItem - Enum.AdPortalStatus.Active: - struct: EnumItem - Enum.AdPortalStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdPortalStatus.Inactive: - struct: EnumItem - Enum.AdPortalStatus.Invalid: - struct: EnumItem - Enum.AdPortalType.Forward: - struct: EnumItem - Enum.AdPortalType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdPortalType.Return: - struct: EnumItem - Enum.AdShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdShape.HorizontalRectangle: - struct: EnumItem - Enum.AdTeleportMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdTeleportMethod.InGameMenuBackButton: - struct: EnumItem - Enum.AdTeleportMethod.PortalForward: - struct: EnumItem - Enum.AdTeleportMethod.PortalReturn: - struct: EnumItem - Enum.AdTeleportMethod.UIBackButton: - struct: EnumItem - Enum.AdTeleportMethod.Undefined: - struct: EnumItem - Enum.AdUnitStatus.Active: - struct: EnumItem - Enum.AdUnitStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdUnitStatus.Inactive: - struct: EnumItem - Enum.AdornCullingMode.Automatic: - struct: EnumItem - Enum.AdornCullingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdornCullingMode.Never: - struct: EnumItem - Enum.AlignType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AlignType.Parallel: - struct: EnumItem - Enum.AlignType.Perpendicular: - struct: EnumItem - Enum.AlphaMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AlphaMode.Overlay: - struct: EnumItem - Enum.AlphaMode.Transparency: - struct: EnumItem - Enum.AnalyticsEconomyAction.Acquire: - struct: EnumItem - Enum.AnalyticsEconomyAction.Default: - struct: EnumItem - Enum.AnalyticsEconomyAction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnalyticsEconomyAction.Spend: - struct: EnumItem - Enum.AnalyticsLogLevel.Debug: - struct: EnumItem - Enum.AnalyticsLogLevel.Error: - struct: EnumItem - Enum.AnalyticsLogLevel.Fatal: - struct: EnumItem - Enum.AnalyticsLogLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnalyticsLogLevel.Information: - struct: EnumItem - Enum.AnalyticsLogLevel.Trace: - struct: EnumItem - Enum.AnalyticsLogLevel.Warning: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Abandon: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Begin: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Complete: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Default: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Fail: - struct: EnumItem - Enum.AnalyticsProgressionStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnimationPriority.Action: - struct: EnumItem - Enum.AnimationPriority.Action2: - struct: EnumItem - Enum.AnimationPriority.Action3: - struct: EnumItem - Enum.AnimationPriority.Action4: - struct: EnumItem - Enum.AnimationPriority.Core: - struct: EnumItem - Enum.AnimationPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnimationPriority.Idle: - struct: EnumItem - Enum.AnimationPriority.Movement: - struct: EnumItem - Enum.AnimatorRetargetingMode.Default: - struct: EnumItem - Enum.AnimatorRetargetingMode.Disabled: - struct: EnumItem - Enum.AnimatorRetargetingMode.Enabled: - struct: EnumItem - Enum.AnimatorRetargetingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellActionType.AvatarEditorPageLoaded: - struct: EnumItem - Enum.AppShellActionType.GamePageLoaded: - struct: EnumItem - Enum.AppShellActionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellActionType.HomePageLoaded: - struct: EnumItem - Enum.AppShellActionType.None: - struct: EnumItem - Enum.AppShellActionType.OpenApp: - struct: EnumItem - Enum.AppShellActionType.ReadConversation: - struct: EnumItem - Enum.AppShellActionType.TapAvatarTab: - struct: EnumItem - Enum.AppShellActionType.TapChatTab: - struct: EnumItem - Enum.AppShellActionType.TapConversationEntry: - struct: EnumItem - Enum.AppShellActionType.TapGamePageTab: - struct: EnumItem - Enum.AppShellActionType.TapHomePageTab: - struct: EnumItem - Enum.AppShellFeature.AvatarEditor: - struct: EnumItem - Enum.AppShellFeature.Chat: - struct: EnumItem - Enum.AppShellFeature.GamePage: - struct: EnumItem - Enum.AppShellFeature.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellFeature.HomePage: - struct: EnumItem - Enum.AppShellFeature.Landing: - struct: EnumItem - Enum.AppShellFeature.More: - struct: EnumItem - Enum.AppShellFeature.None: - struct: EnumItem - Enum.AppUpdateStatus.Available: - struct: EnumItem - Enum.AppUpdateStatus.Failed: - struct: EnumItem - Enum.AppUpdateStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppUpdateStatus.NotAvailable: - struct: EnumItem - Enum.AppUpdateStatus.NotSupported: - struct: EnumItem - Enum.AppUpdateStatus.Unknown: - struct: EnumItem - Enum.ApplyStrokeMode.Border: - struct: EnumItem - Enum.ApplyStrokeMode.Contextual: - struct: EnumItem - Enum.ApplyStrokeMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AspectType.FitWithinMaxSize: - struct: EnumItem - Enum.AspectType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AspectType.ScaleWithParentSize: - struct: EnumItem - Enum.AssetFetchStatus.Failure: - struct: EnumItem - Enum.AssetFetchStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AssetFetchStatus.Loading: - struct: EnumItem - Enum.AssetFetchStatus.None: - struct: EnumItem - Enum.AssetFetchStatus.Success: - struct: EnumItem - Enum.AssetFetchStatus.TimedOut: - struct: EnumItem - Enum.AssetType.Animation: - struct: EnumItem - Enum.AssetType.Audio: - struct: EnumItem - Enum.AssetType.BackAccessory: - struct: EnumItem - Enum.AssetType.Badge: - struct: EnumItem - Enum.AssetType.ClimbAnimation: - struct: EnumItem - Enum.AssetType.DeathAnimation: - struct: EnumItem - Enum.AssetType.Decal: - struct: EnumItem - Enum.AssetType.DressSkirtAccessory: - struct: EnumItem - Enum.AssetType.DynamicHead: - struct: EnumItem - Enum.AssetType.EarAccessory: - struct: EnumItem - Enum.AssetType.EmoteAnimation: - struct: EnumItem - Enum.AssetType.EyeAccessory: - struct: EnumItem - Enum.AssetType.EyebrowAccessory: - struct: EnumItem - Enum.AssetType.EyelashAccessory: - struct: EnumItem - Enum.AssetType.Face: - struct: EnumItem - Enum.AssetType.FaceAccessory: - struct: EnumItem - Enum.AssetType.FallAnimation: - struct: EnumItem - Enum.AssetType.FontFamily: - struct: EnumItem - Enum.AssetType.FrontAccessory: - struct: EnumItem - Enum.AssetType.GamePass: - struct: EnumItem - Enum.AssetType.Gear: - struct: EnumItem - Enum.AssetType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AssetType.HairAccessory: - struct: EnumItem - Enum.AssetType.Hat: - struct: EnumItem - Enum.AssetType.Head: - struct: EnumItem - Enum.AssetType.IdleAnimation: - struct: EnumItem - Enum.AssetType.Image: - struct: EnumItem - Enum.AssetType.JacketAccessory: - struct: EnumItem - Enum.AssetType.JumpAnimation: - struct: EnumItem - Enum.AssetType.LeftArm: - struct: EnumItem - Enum.AssetType.LeftLeg: - struct: EnumItem - Enum.AssetType.LeftShoeAccessory: - struct: EnumItem - Enum.AssetType.Lua: - struct: EnumItem - Enum.AssetType.Mesh: - struct: EnumItem - Enum.AssetType.MeshPart: - struct: EnumItem - Enum.AssetType.Model: - struct: EnumItem - Enum.AssetType.MoodAnimation: - struct: EnumItem - Enum.AssetType.NeckAccessory: - struct: EnumItem - Enum.AssetType.Package: - struct: EnumItem - Enum.AssetType.Pants: - struct: EnumItem - Enum.AssetType.PantsAccessory: - struct: EnumItem - Enum.AssetType.Place: - struct: EnumItem - Enum.AssetType.Plugin: - struct: EnumItem - Enum.AssetType.PoseAnimation: - struct: EnumItem - Enum.AssetType.RightArm: - struct: EnumItem - Enum.AssetType.RightLeg: - struct: EnumItem - Enum.AssetType.RightShoeAccessory: - struct: EnumItem - Enum.AssetType.RunAnimation: - struct: EnumItem - Enum.AssetType.Shirt: - struct: EnumItem - Enum.AssetType.ShirtAccessory: - struct: EnumItem - Enum.AssetType.ShortsAccessory: - struct: EnumItem - Enum.AssetType.ShoulderAccessory: - struct: EnumItem - Enum.AssetType.SweaterAccessory: - struct: EnumItem - Enum.AssetType.SwimAnimation: - struct: EnumItem - Enum.AssetType.TShirt: - struct: EnumItem - Enum.AssetType.TShirtAccessory: - struct: EnumItem - Enum.AssetType.TeeShirt: - struct: EnumItem - deprecated: - message: Enum.AssetType.TeeShirt was replaced with Enum.AssetType.TShirt - replace: - - Enum.AssetType.TShirt - Enum.AssetType.TeeShirtAccessory: - struct: EnumItem - deprecated: - message: Enum.AssetType.TeeShirtAccessory was replaced with Enum.AssetType.TShirtAccessory - replace: - - Enum.AssetType.TShirtAccessory - Enum.AssetType.Torso: - struct: EnumItem - Enum.AssetType.Video: - struct: EnumItem - Enum.AssetType.WaistAccessory: - struct: EnumItem - Enum.AssetType.WalkAnimation: - struct: EnumItem - Enum.AssetTypeVerification.Always: - struct: EnumItem - Enum.AssetTypeVerification.ClientOnly: - struct: EnumItem - Enum.AssetTypeVerification.Default: - struct: EnumItem - Enum.AssetTypeVerification.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AudioSubType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AudioSubType.Music: - struct: EnumItem - Enum.AudioSubType.SoundEffect: - struct: EnumItem - Enum.AutoIndentRule.Absolute: - struct: EnumItem - Enum.AutoIndentRule.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AutoIndentRule.Off: - struct: EnumItem - Enum.AutoIndentRule.Relative: - struct: EnumItem - Enum.AutomaticSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AutomaticSize.None: - struct: EnumItem - Enum.AutomaticSize.X: - struct: EnumItem - Enum.AutomaticSize.XY: - struct: EnumItem - Enum.AutomaticSize.Y: - struct: EnumItem - Enum.AvatarAssetType.BackAccessory: - struct: EnumItem - Enum.AvatarAssetType.ClimbAnimation: - struct: EnumItem - Enum.AvatarAssetType.DressSkirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.DynamicHead: - struct: EnumItem - Enum.AvatarAssetType.EmoteAnimation: - struct: EnumItem - Enum.AvatarAssetType.EyebrowAccessory: - struct: EnumItem - Enum.AvatarAssetType.EyelashAccessory: - struct: EnumItem - Enum.AvatarAssetType.Face: - struct: EnumItem - Enum.AvatarAssetType.FaceAccessory: - struct: EnumItem - Enum.AvatarAssetType.FallAnimation: - struct: EnumItem - Enum.AvatarAssetType.FrontAccessory: - struct: EnumItem - Enum.AvatarAssetType.Gear: - struct: EnumItem - Enum.AvatarAssetType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarAssetType.HairAccessory: - struct: EnumItem - Enum.AvatarAssetType.Hat: - struct: EnumItem - Enum.AvatarAssetType.Head: - struct: EnumItem - Enum.AvatarAssetType.IdleAnimation: - struct: EnumItem - Enum.AvatarAssetType.JacketAccessory: - struct: EnumItem - Enum.AvatarAssetType.JumpAnimation: - struct: EnumItem - Enum.AvatarAssetType.LeftArm: - struct: EnumItem - Enum.AvatarAssetType.LeftLeg: - struct: EnumItem - Enum.AvatarAssetType.LeftShoeAccessory: - struct: EnumItem - Enum.AvatarAssetType.MoodAnimation: - struct: EnumItem - Enum.AvatarAssetType.NeckAccessory: - struct: EnumItem - Enum.AvatarAssetType.Pants: - struct: EnumItem - Enum.AvatarAssetType.PantsAccessory: - struct: EnumItem - Enum.AvatarAssetType.RightArm: - struct: EnumItem - Enum.AvatarAssetType.RightLeg: - struct: EnumItem - Enum.AvatarAssetType.RightShoeAccessory: - struct: EnumItem - Enum.AvatarAssetType.RunAnimation: - struct: EnumItem - Enum.AvatarAssetType.Shirt: - struct: EnumItem - Enum.AvatarAssetType.ShirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.ShortsAccessory: - struct: EnumItem - Enum.AvatarAssetType.ShoulderAccessory: - struct: EnumItem - Enum.AvatarAssetType.SweaterAccessory: - struct: EnumItem - Enum.AvatarAssetType.SwimAnimation: - struct: EnumItem - Enum.AvatarAssetType.TShirt: - struct: EnumItem - Enum.AvatarAssetType.TShirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.TeeShirtAccessory: - struct: EnumItem - deprecated: - message: Enum.AvatarAssetType.TeeShirtAccessory was replaced with Enum.AvatarAssetType.TShirtAccessory - replace: - - Enum.AvatarAssetType.TShirtAccessory - Enum.AvatarAssetType.Torso: - struct: EnumItem - Enum.AvatarAssetType.WaistAccessory: - struct: EnumItem - Enum.AvatarAssetType.WalkAnimation: - struct: EnumItem - Enum.AvatarContextMenuOption.Chat: - struct: EnumItem - Enum.AvatarContextMenuOption.Emote: - struct: EnumItem - Enum.AvatarContextMenuOption.Friend: - struct: EnumItem - Enum.AvatarContextMenuOption.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarContextMenuOption.InspectMenu: - struct: EnumItem - Enum.AvatarItemType.Asset: - struct: EnumItem - Enum.AvatarItemType.Bundle: - struct: EnumItem - Enum.AvatarItemType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarPromptResult.Failed: - struct: EnumItem - Enum.AvatarPromptResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarPromptResult.PermissionDenied: - struct: EnumItem - Enum.AvatarPromptResult.Success: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.Closeup: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.FullBody: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Axis.Back: - struct: EnumItem - deprecated: - message: Enum.Axis.Back was replaced with Enum.Axis.Z - replace: - - Enum.Axis.Z - Enum.Axis.Bottom: - struct: EnumItem - deprecated: - message: Enum.Axis.Bottom was replaced with Enum.Axis.Y - replace: - - Enum.Axis.Y - Enum.Axis.Front: - struct: EnumItem - deprecated: - message: Enum.Axis.Front was replaced with Enum.Axis.Z - replace: - - Enum.Axis.Z - Enum.Axis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Axis.Left: - struct: EnumItem - deprecated: - message: Enum.Axis.Left was replaced with Enum.Axis.X - replace: - - Enum.Axis.X - Enum.Axis.Right: - struct: EnumItem - deprecated: - message: Enum.Axis.Right was replaced with Enum.Axis.X - replace: - - Enum.Axis.X - Enum.Axis.Top: - struct: EnumItem - deprecated: - message: Enum.Axis.Top was replaced with Enum.Axis.Y - replace: - - Enum.Axis.Y - Enum.Axis.X: - struct: EnumItem - Enum.Axis.Y: - struct: EnumItem - Enum.Axis.Z: - struct: EnumItem - Enum.BinType.Clone: - struct: EnumItem - Enum.BinType.GameTool: - struct: EnumItem - Enum.BinType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BinType.Grab: - struct: EnumItem - Enum.BinType.Hammer: - struct: EnumItem - Enum.BinType.Laser: - struct: EnumItem - deprecated: - message: Enum.BinType.Laser was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BinType.Rocket: - struct: EnumItem - deprecated: - message: Enum.BinType.Rocket was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BinType.Script: - struct: EnumItem - Enum.BinType.Slingshot: - struct: EnumItem - deprecated: - message: Enum.BinType.Slingshot was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BodyPart.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BodyPart.Head: - struct: EnumItem - Enum.BodyPart.LeftArm: - struct: EnumItem - Enum.BodyPart.LeftLeg: - struct: EnumItem - Enum.BodyPart.RightArm: - struct: EnumItem - Enum.BodyPart.RightLeg: - struct: EnumItem - Enum.BodyPart.Torso: - struct: EnumItem - Enum.BodyPartR15.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BodyPartR15.Head: - struct: EnumItem - Enum.BodyPartR15.LeftFoot: - struct: EnumItem - Enum.BodyPartR15.LeftHand: - struct: EnumItem - Enum.BodyPartR15.LeftLowerArm: - struct: EnumItem - Enum.BodyPartR15.LeftLowerLeg: - struct: EnumItem - Enum.BodyPartR15.LeftUpperArm: - struct: EnumItem - Enum.BodyPartR15.LeftUpperLeg: - struct: EnumItem - Enum.BodyPartR15.LowerTorso: - struct: EnumItem - Enum.BodyPartR15.RightFoot: - struct: EnumItem - Enum.BodyPartR15.RightHand: - struct: EnumItem - Enum.BodyPartR15.RightLowerArm: - struct: EnumItem - Enum.BodyPartR15.RightLowerLeg: - struct: EnumItem - Enum.BodyPartR15.RightUpperArm: - struct: EnumItem - Enum.BodyPartR15.RightUpperLeg: - struct: EnumItem - Enum.BodyPartR15.RootPart: - struct: EnumItem - Enum.BodyPartR15.Unknown: - struct: EnumItem - Enum.BodyPartR15.UpperTorso: - struct: EnumItem - Enum.BorderMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BorderMode.Inset: - struct: EnumItem - Enum.BorderMode.Middle: - struct: EnumItem - Enum.BorderMode.Outline: - struct: EnumItem - Enum.BreakReason.Error: - struct: EnumItem - Enum.BreakReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BreakReason.Other: - struct: EnumItem - Enum.BreakReason.SpecialBreakpoint: - struct: EnumItem - Enum.BreakReason.UserBreakpoint: - struct: EnumItem - Enum.BreakpointRemoveReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BreakpointRemoveReason.Requested: - struct: EnumItem - Enum.BreakpointRemoveReason.ScriptChanged: - struct: EnumItem - Enum.BreakpointRemoveReason.ScriptRemoved: - struct: EnumItem - Enum.BulkMoveMode.FireAllEvents: - struct: EnumItem - Enum.BulkMoveMode.FireCFrameChanged: - struct: EnumItem - Enum.BulkMoveMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BundleType.Animations: - struct: EnumItem - Enum.BundleType.BodyParts: - struct: EnumItem - Enum.BundleType.DynamicHead: - struct: EnumItem - Enum.BundleType.DynamicHeadAvatar: - struct: EnumItem - Enum.BundleType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BundleType.Shoes: - struct: EnumItem - Enum.Button.Dismount: - struct: EnumItem - Enum.Button.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Button.Jump: - struct: EnumItem - Enum.ButtonStyle.Custom: - struct: EnumItem - Enum.ButtonStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ButtonStyle.RobloxButton: - struct: EnumItem - Enum.ButtonStyle.RobloxButtonDefault: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundButton: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundDefaultButton: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundDropdownButton: - struct: EnumItem - Enum.CageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CageType.Inner: - struct: EnumItem - Enum.CageType.Outer: - struct: EnumItem - Enum.CameraMode.Classic: - struct: EnumItem - Enum.CameraMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraMode.LockFirstPerson: - struct: EnumItem - Enum.CameraPanMode.Classic: - struct: EnumItem - Enum.CameraPanMode.EdgeBump: - struct: EnumItem - Enum.CameraPanMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraType.Attach: - struct: EnumItem - Enum.CameraType.Custom: - struct: EnumItem - Enum.CameraType.Fixed: - struct: EnumItem - Enum.CameraType.Follow: - struct: EnumItem - Enum.CameraType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraType.Orbital: - struct: EnumItem - Enum.CameraType.Scriptable: - struct: EnumItem - Enum.CameraType.Track: - struct: EnumItem - Enum.CameraType.Watch: - struct: EnumItem - Enum.CatalogCategoryFilter.Collectibles: - struct: EnumItem - Enum.CatalogCategoryFilter.CommunityCreations: - struct: EnumItem - Enum.CatalogCategoryFilter.Featured: - struct: EnumItem - Enum.CatalogCategoryFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogCategoryFilter.None: - struct: EnumItem - Enum.CatalogCategoryFilter.Premium: - struct: EnumItem - Enum.CatalogCategoryFilter.Recommended: - struct: EnumItem - Enum.CatalogSortAggregation.AllTime: - struct: EnumItem - Enum.CatalogSortAggregation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogSortAggregation.Past12Hours: - struct: EnumItem - Enum.CatalogSortAggregation.Past3Days: - struct: EnumItem - Enum.CatalogSortAggregation.PastDay: - struct: EnumItem - Enum.CatalogSortAggregation.PastMonth: - struct: EnumItem - Enum.CatalogSortAggregation.PastWeek: - struct: EnumItem - Enum.CatalogSortType.Bestselling: - struct: EnumItem - Enum.CatalogSortType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogSortType.MostFavorited: - struct: EnumItem - Enum.CatalogSortType.PriceHighToLow: - struct: EnumItem - Enum.CatalogSortType.PriceLowToHigh: - struct: EnumItem - Enum.CatalogSortType.RecentlyCreated: - struct: EnumItem - Enum.CatalogSortType.RecentlyUpdated: - struct: EnumItem - deprecated: - message: Enum.CatalogSortType.RecentlyUpdated was replaced with Enum.CatalogSortType.RecentlyCreated - replace: - - Enum.CatalogSortType.RecentlyCreated - Enum.CatalogSortType.Relevance: - struct: EnumItem - Enum.CellBlock.CornerWedge: - struct: EnumItem - Enum.CellBlock.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellBlock.HorizontalWedge: - struct: EnumItem - Enum.CellBlock.InverseCornerWedge: - struct: EnumItem - Enum.CellBlock.Solid: - struct: EnumItem - Enum.CellBlock.VerticalWedge: - struct: EnumItem - Enum.CellMaterial.Aluminum: - struct: EnumItem - Enum.CellMaterial.Asphalt: - struct: EnumItem - Enum.CellMaterial.BluePlastic: - struct: EnumItem - Enum.CellMaterial.Brick: - struct: EnumItem - Enum.CellMaterial.Cement: - struct: EnumItem - Enum.CellMaterial.CinderBlock: - struct: EnumItem - Enum.CellMaterial.Empty: - struct: EnumItem - Enum.CellMaterial.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellMaterial.Gold: - struct: EnumItem - Enum.CellMaterial.Granite: - struct: EnumItem - Enum.CellMaterial.Grass: - struct: EnumItem - Enum.CellMaterial.Gravel: - struct: EnumItem - Enum.CellMaterial.Iron: - struct: EnumItem - Enum.CellMaterial.MossyStone: - struct: EnumItem - Enum.CellMaterial.RedPlastic: - struct: EnumItem - Enum.CellMaterial.Sand: - struct: EnumItem - Enum.CellMaterial.Water: - struct: EnumItem - Enum.CellMaterial.WoodLog: - struct: EnumItem - Enum.CellMaterial.WoodPlank: - struct: EnumItem - Enum.CellOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellOrientation.NegX: - struct: EnumItem - Enum.CellOrientation.NegZ: - struct: EnumItem - Enum.CellOrientation.X: - struct: EnumItem - Enum.CellOrientation.Z: - struct: EnumItem - Enum.CenterDialogType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CenterDialogType.ModalDialog: - struct: EnumItem - Enum.CenterDialogType.PlayerInitiatedDialog: - struct: EnumItem - Enum.CenterDialogType.QuitDialog: - struct: EnumItem - Enum.CenterDialogType.UnsolicitedDialog: - struct: EnumItem - Enum.ChatCallbackType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatCallbackType.OnClientFormattingMessage: - struct: EnumItem - Enum.ChatCallbackType.OnClientSendingMessage: - struct: EnumItem - Enum.ChatCallbackType.OnCreatingChatWindow: - struct: EnumItem - Enum.ChatCallbackType.OnServerReceivingMessage: - struct: EnumItem - Enum.ChatColor.Blue: - struct: EnumItem - Enum.ChatColor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatColor.Green: - struct: EnumItem - Enum.ChatColor.Red: - struct: EnumItem - Enum.ChatColor.White: - struct: EnumItem - Enum.ChatMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatMode.Menu: - struct: EnumItem - Enum.ChatMode.TextAndMenu: - struct: EnumItem - Enum.ChatPrivacyMode.AllUsers: - struct: EnumItem - Enum.ChatPrivacyMode.Friends: - struct: EnumItem - Enum.ChatPrivacyMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatPrivacyMode.NoOne: - struct: EnumItem - Enum.ChatStyle.Bubble: - struct: EnumItem - Enum.ChatStyle.Classic: - struct: EnumItem - Enum.ChatStyle.ClassicAndBubble: - struct: EnumItem - Enum.ChatStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatVersion.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatVersion.LegacyChatService: - struct: EnumItem - Enum.ChatVersion.TextChatService: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Default: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Disabled: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Enabled: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CollisionFidelity.Box: - struct: EnumItem - Enum.CollisionFidelity.Default: - struct: EnumItem - Enum.CollisionFidelity.DynamicPreciseConvexDecomposition: - struct: EnumItem - Enum.CollisionFidelity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CollisionFidelity.Hull: - struct: EnumItem - Enum.CollisionFidelity.PreciseConvexDecomposition: - struct: EnumItem - Enum.CommandPermission.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CommandPermission.LocalUser: - struct: EnumItem - Enum.CommandPermission.Plugin: - struct: EnumItem - Enum.CompletionItemKind.Class: - struct: EnumItem - Enum.CompletionItemKind.Color: - struct: EnumItem - Enum.CompletionItemKind.Constant: - struct: EnumItem - Enum.CompletionItemKind.Constructor: - struct: EnumItem - Enum.CompletionItemKind.Enum: - struct: EnumItem - Enum.CompletionItemKind.EnumMember: - struct: EnumItem - Enum.CompletionItemKind.Event: - struct: EnumItem - Enum.CompletionItemKind.Field: - struct: EnumItem - Enum.CompletionItemKind.File: - struct: EnumItem - Enum.CompletionItemKind.Folder: - struct: EnumItem - Enum.CompletionItemKind.Function: - struct: EnumItem - Enum.CompletionItemKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionItemKind.Interface: - struct: EnumItem - Enum.CompletionItemKind.Keyword: - struct: EnumItem - Enum.CompletionItemKind.Method: - struct: EnumItem - Enum.CompletionItemKind.Module: - struct: EnumItem - Enum.CompletionItemKind.Operator: - struct: EnumItem - Enum.CompletionItemKind.Property: - struct: EnumItem - Enum.CompletionItemKind.Reference: - struct: EnumItem - Enum.CompletionItemKind.Snippet: - struct: EnumItem - Enum.CompletionItemKind.Struct: - struct: EnumItem - Enum.CompletionItemKind.Text: - struct: EnumItem - Enum.CompletionItemKind.TypeParameter: - struct: EnumItem - Enum.CompletionItemKind.Unit: - struct: EnumItem - Enum.CompletionItemKind.Value: - struct: EnumItem - Enum.CompletionItemKind.Variable: - struct: EnumItem - Enum.CompletionItemTag.AddParens: - struct: EnumItem - Enum.CompletionItemTag.ClientServerBoundaryViolation: - struct: EnumItem - Enum.CompletionItemTag.CommandLinePermissions: - struct: EnumItem - Enum.CompletionItemTag.Deprecated: - struct: EnumItem - Enum.CompletionItemTag.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionItemTag.IncorrectIndexType: - struct: EnumItem - Enum.CompletionItemTag.PluginPermissions: - struct: EnumItem - Enum.CompletionItemTag.PutCursorInParens: - struct: EnumItem - Enum.CompletionItemTag.RobloxPermissions: - struct: EnumItem - Enum.CompletionItemTag.TypeCorrect: - struct: EnumItem - Enum.CompletionTriggerKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionTriggerKind.Invoked: - struct: EnumItem - Enum.CompletionTriggerKind.TriggerCharacter: - struct: EnumItem - Enum.CompletionTriggerKind.TriggerForIncompleteCompletions: - struct: EnumItem - Enum.ComputerCameraMovementMode.CameraToggle: - struct: EnumItem - Enum.ComputerCameraMovementMode.Classic: - struct: EnumItem - Enum.ComputerCameraMovementMode.Default: - struct: EnumItem - Enum.ComputerCameraMovementMode.Follow: - struct: EnumItem - Enum.ComputerCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ComputerCameraMovementMode.Orbital: - struct: EnumItem - Enum.ComputerMovementMode.ClickToMove: - struct: EnumItem - Enum.ComputerMovementMode.Default: - struct: EnumItem - Enum.ComputerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ComputerMovementMode.KeyboardMouse: - struct: EnumItem - Enum.ConnectionError.DisconnectBadhash: - struct: EnumItem - Enum.ConnectionError.DisconnectBlockedIP: - struct: EnumItem - Enum.ConnectionError.DisconnectBySecurityPolicy: - struct: EnumItem - Enum.ConnectionError.DisconnectClientFailure: - struct: EnumItem - Enum.ConnectionError.DisconnectClientRequest: - struct: EnumItem - Enum.ConnectionError.DisconnectCloudEditKick: - struct: EnumItem - Enum.ConnectionError.DisconnectConnectionLost: - struct: EnumItem - Enum.ConnectionError.DisconnectDevMaintenance: - struct: EnumItem - Enum.ConnectionError.DisconnectDuplicatePlayer: - struct: EnumItem - Enum.ConnectionError.DisconnectDuplicateTicket: - struct: EnumItem - Enum.ConnectionError.DisconnectErrors: - struct: EnumItem - Enum.ConnectionError.DisconnectEvicted: - struct: EnumItem - Enum.ConnectionError.DisconnectHashTimeout: - struct: EnumItem - Enum.ConnectionError.DisconnectIdle: - struct: EnumItem - Enum.ConnectionError.DisconnectIllegalTeleport: - struct: EnumItem - Enum.ConnectionError.DisconnectLuaKick: - struct: EnumItem - Enum.ConnectionError.DisconnectModeratedGame: - struct: EnumItem - Enum.ConnectionError.DisconnectNewSecurityKeyMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectOnRemoteSysStats: - struct: EnumItem - Enum.ConnectionError.DisconnectOutOfMemoryKeepPlayingLeave: - struct: EnumItem - Enum.ConnectionError.DisconnectPlayerless: - struct: EnumItem - Enum.ConnectionError.DisconnectProtocolMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectRaknetErrors: - struct: EnumItem - Enum.ConnectionError.DisconnectReceivePacketError: - struct: EnumItem - Enum.ConnectionError.DisconnectReceivePacketStreamError: - struct: EnumItem - Enum.ConnectionError.DisconnectRejoin: - struct: EnumItem - Enum.ConnectionError.DisconnectRobloxMaintenance: - struct: EnumItem - Enum.ConnectionError.DisconnectRomarkEndOfTest: - struct: EnumItem - Enum.ConnectionError.DisconnectSecurityKeyMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectSendPacketError: - struct: EnumItem - Enum.ConnectionError.DisconnectTimeout: - struct: EnumItem - Enum.ConnectionError.DisconnectWrongVersion: - struct: EnumItem - Enum.ConnectionError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ConnectionError.OK: - struct: EnumItem - Enum.ConnectionError.PlacelaunchCustomMessage: - struct: EnumItem - Enum.ConnectionError.PlacelaunchDisabled: - struct: EnumItem - Enum.ConnectionError.PlacelaunchError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchErrors: - struct: EnumItem - Enum.ConnectionError.PlacelaunchFlooded: - struct: EnumItem - Enum.ConnectionError.PlacelaunchGameEnded: - struct: EnumItem - Enum.ConnectionError.PlacelaunchGameFull: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHashException: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHashExpired: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHttpError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchOtherError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchPartyCannotFit: - struct: EnumItem - Enum.ConnectionError.PlacelaunchRestricted: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUnauthorized: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUserLeft: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUserPrivacyUnauthorized: - struct: EnumItem - Enum.ConnectionError.PlayerRemoved: - struct: EnumItem - Enum.ConnectionError.ReplicatorTimeout: - struct: EnumItem - Enum.ConnectionError.TeleportErrors: - struct: EnumItem - Enum.ConnectionError.TeleportFailure: - struct: EnumItem - Enum.ConnectionError.TeleportFlooded: - struct: EnumItem - Enum.ConnectionError.TeleportGameEnded: - struct: EnumItem - Enum.ConnectionError.TeleportGameFull: - struct: EnumItem - Enum.ConnectionError.TeleportGameNotFound: - struct: EnumItem - Enum.ConnectionError.TeleportIsTeleporting: - struct: EnumItem - Enum.ConnectionError.TeleportUnauthorized: - struct: EnumItem - Enum.ConnectionError.Unknown: - struct: EnumItem - Enum.ConnectionState.Connected: - struct: EnumItem - Enum.ConnectionState.Disconnected: - struct: EnumItem - Enum.ConnectionState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionPriority.Default: - struct: EnumItem - deprecated: - message: Enum.ContextActionPriority.Default was replaced with Enum.ContextActionPriority.Medium - replace: - - Enum.ContextActionPriority.Medium - Enum.ContextActionPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionPriority.High: - struct: EnumItem - Enum.ContextActionPriority.Low: - struct: EnumItem - Enum.ContextActionPriority.Medium: - struct: EnumItem - Enum.ContextActionResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionResult.Pass: - struct: EnumItem - Enum.ContextActionResult.Sink: - struct: EnumItem - Enum.ControlMode.Classic: - struct: EnumItem - Enum.ControlMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ControlMode.Mouse Lock Switch: - struct: EnumItem - deprecated: - message: Enum.ControlMode.Mouse Lock Switch was replaced with Enum.ControlMode.MouseLockSwitch - replace: - - Enum.ControlMode.MouseLockSwitch - Enum.ControlMode.MouseLockSwitch: - struct: EnumItem - Enum.CoreGuiType.All: - struct: EnumItem - Enum.CoreGuiType.Backpack: - struct: EnumItem - Enum.CoreGuiType.Chat: - struct: EnumItem - Enum.CoreGuiType.EmotesMenu: - struct: EnumItem - Enum.CoreGuiType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CoreGuiType.Health: - struct: EnumItem - Enum.CoreGuiType.PlayerList: - struct: EnumItem - Enum.CoreGuiType.SelfView: - struct: EnumItem - Enum.CreateOutfitFailure.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreateOutfitFailure.InvalidName: - struct: EnumItem - Enum.CreateOutfitFailure.Other: - struct: EnumItem - Enum.CreateOutfitFailure.OutfitLimitReached: - struct: EnumItem - Enum.CreatorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreatorType.Group: - struct: EnumItem - Enum.CreatorType.User: - struct: EnumItem - Enum.CreatorTypeFilter.All: - struct: EnumItem - Enum.CreatorTypeFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreatorTypeFilter.Group: - struct: EnumItem - Enum.CreatorTypeFilter.User: - struct: EnumItem - Enum.CurrencyType.Default: - struct: EnumItem - Enum.CurrencyType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CurrencyType.Robux: - struct: EnumItem - Enum.CurrencyType.Tix: - struct: EnumItem - Enum.CustomCameraMode.Classic: - struct: EnumItem - Enum.CustomCameraMode.Default: - struct: EnumItem - Enum.CustomCameraMode.Follow: - struct: EnumItem - Enum.CustomCameraMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DataStoreRequestType.GetAsync: - struct: EnumItem - Enum.DataStoreRequestType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DataStoreRequestType.GetSortedAsync: - struct: EnumItem - Enum.DataStoreRequestType.OnUpdate: - struct: EnumItem - Enum.DataStoreRequestType.SetIncrementAsync: - struct: EnumItem - Enum.DataStoreRequestType.SetIncrementSortedAsync: - struct: EnumItem - Enum.DataStoreRequestType.UpdateAsync: - struct: EnumItem - Enum.DebuggerEndReason.ClientRequest: - struct: EnumItem - Enum.DebuggerEndReason.ConfigurationFailed: - struct: EnumItem - Enum.DebuggerEndReason.Disconnected: - struct: EnumItem - Enum.DebuggerEndReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerEndReason.InvalidHost: - struct: EnumItem - Enum.DebuggerEndReason.RpcError: - struct: EnumItem - Enum.DebuggerEndReason.ServerProtocolMismatch: - struct: EnumItem - Enum.DebuggerEndReason.ServerShutdown: - struct: EnumItem - Enum.DebuggerEndReason.Timeout: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.Always: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerExceptionBreakMode.Never: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.Unhandled: - struct: EnumItem - Enum.DebuggerFrameType.C: - struct: EnumItem - Enum.DebuggerFrameType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerFrameType.Lua: - struct: EnumItem - Enum.DebuggerPauseReason.Breakpoint: - struct: EnumItem - Enum.DebuggerPauseReason.Entrypoint: - struct: EnumItem - Enum.DebuggerPauseReason.Exception: - struct: EnumItem - Enum.DebuggerPauseReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerPauseReason.Requested: - struct: EnumItem - Enum.DebuggerPauseReason.SingleStep: - struct: EnumItem - Enum.DebuggerPauseReason.Unknown: - struct: EnumItem - Enum.DebuggerStatus.ConnectionClosed: - struct: EnumItem - Enum.DebuggerStatus.ConnectionLost: - struct: EnumItem - Enum.DebuggerStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerStatus.InternalError: - struct: EnumItem - Enum.DebuggerStatus.InvalidArgument: - struct: EnumItem - Enum.DebuggerStatus.InvalidResponse: - struct: EnumItem - Enum.DebuggerStatus.InvalidState: - struct: EnumItem - Enum.DebuggerStatus.RpcError: - struct: EnumItem - Enum.DebuggerStatus.Success: - struct: EnumItem - Enum.DebuggerStatus.Timeout: - struct: EnumItem - Enum.DevCameraOcclusionMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevCameraOcclusionMode.Invisicam: - struct: EnumItem - Enum.DevCameraOcclusionMode.Zoom: - struct: EnumItem - Enum.DevComputerCameraMovementMode.CameraToggle: - struct: EnumItem - Enum.DevComputerCameraMovementMode.Classic: - struct: EnumItem - Enum.DevComputerCameraMovementMode.Follow: - struct: EnumItem - Enum.DevComputerCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevComputerCameraMovementMode.Orbital: - struct: EnumItem - Enum.DevComputerCameraMovementMode.UserChoice: - struct: EnumItem - Enum.DevComputerMovementMode.ClickToMove: - struct: EnumItem - Enum.DevComputerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevComputerMovementMode.KeyboardMouse: - struct: EnumItem - Enum.DevComputerMovementMode.Scriptable: - struct: EnumItem - Enum.DevComputerMovementMode.UserChoice: - struct: EnumItem - Enum.DevTouchCameraMovementMode.Classic: - struct: EnumItem - Enum.DevTouchCameraMovementMode.Follow: - struct: EnumItem - Enum.DevTouchCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevTouchCameraMovementMode.Orbital: - struct: EnumItem - Enum.DevTouchCameraMovementMode.UserChoice: - struct: EnumItem - Enum.DevTouchMovementMode.ClickToMove: - struct: EnumItem - Enum.DevTouchMovementMode.DPad: - struct: EnumItem - Enum.DevTouchMovementMode.DynamicThumbstick: - struct: EnumItem - Enum.DevTouchMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevTouchMovementMode.Scriptable: - struct: EnumItem - Enum.DevTouchMovementMode.Thumbpad: - struct: EnumItem - Enum.DevTouchMovementMode.Thumbstick: - struct: EnumItem - Enum.DevTouchMovementMode.UserChoice: - struct: EnumItem - Enum.DeveloperMemoryTag.Animation: - struct: EnumItem - Enum.DeveloperMemoryTag.GeometryCSG: - struct: EnumItem - Enum.DeveloperMemoryTag.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DeveloperMemoryTag.GraphicsMeshParts: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsParticles: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsParts: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsSolidModels: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsSpatialHash: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTerrain: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTexture: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTextureCharacter: - struct: EnumItem - Enum.DeveloperMemoryTag.Gui: - struct: EnumItem - Enum.DeveloperMemoryTag.HttpCache: - struct: EnumItem - Enum.DeveloperMemoryTag.Instances: - struct: EnumItem - Enum.DeveloperMemoryTag.Internal: - struct: EnumItem - Enum.DeveloperMemoryTag.LuaHeap: - struct: EnumItem - Enum.DeveloperMemoryTag.Navigation: - struct: EnumItem - Enum.DeveloperMemoryTag.PhysicsCollision: - struct: EnumItem - Enum.DeveloperMemoryTag.PhysicsParts: - struct: EnumItem - Enum.DeveloperMemoryTag.Script: - struct: EnumItem - Enum.DeveloperMemoryTag.Signals: - struct: EnumItem - Enum.DeveloperMemoryTag.Sounds: - struct: EnumItem - Enum.DeveloperMemoryTag.StreamingSounds: - struct: EnumItem - Enum.DeveloperMemoryTag.TerrainVoxels: - struct: EnumItem - Enum.DeviceType.Desktop: - struct: EnumItem - Enum.DeviceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DeviceType.Phone: - struct: EnumItem - Enum.DeviceType.Tablet: - struct: EnumItem - Enum.DeviceType.Unknown: - struct: EnumItem - Enum.DialogBehaviorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogBehaviorType.MultiplePlayers: - struct: EnumItem - Enum.DialogBehaviorType.SinglePlayer: - struct: EnumItem - Enum.DialogPurpose.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogPurpose.Help: - struct: EnumItem - Enum.DialogPurpose.Quest: - struct: EnumItem - Enum.DialogPurpose.Shop: - struct: EnumItem - Enum.DialogTone.Enemy: - struct: EnumItem - Enum.DialogTone.Friendly: - struct: EnumItem - Enum.DialogTone.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogTone.Neutral: - struct: EnumItem - Enum.DominantAxis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DominantAxis.Height: - struct: EnumItem - Enum.DominantAxis.Width: - struct: EnumItem - Enum.DraftStatusCode.DraftCommitted: - struct: EnumItem - Enum.DraftStatusCode.DraftOutdated: - struct: EnumItem - Enum.DraftStatusCode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraftStatusCode.OK: - struct: EnumItem - Enum.DraftStatusCode.ScriptRemoved: - struct: EnumItem - Enum.DraggerCoordinateSpace.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraggerCoordinateSpace.Object: - struct: EnumItem - Enum.DraggerCoordinateSpace.World: - struct: EnumItem - Enum.DraggerMovementMode.Geometric: - struct: EnumItem - Enum.DraggerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraggerMovementMode.Physical: - struct: EnumItem - Enum.EasingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EasingDirection.In: - struct: EnumItem - Enum.EasingDirection.InOut: - struct: EnumItem - Enum.EasingDirection.Out: - struct: EnumItem - Enum.EasingStyle.Back: - struct: EnumItem - Enum.EasingStyle.Bounce: - struct: EnumItem - Enum.EasingStyle.Circular: - struct: EnumItem - Enum.EasingStyle.Cubic: - struct: EnumItem - Enum.EasingStyle.Elastic: - struct: EnumItem - Enum.EasingStyle.Exponential: - struct: EnumItem - Enum.EasingStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EasingStyle.Linear: - struct: EnumItem - Enum.EasingStyle.Quad: - struct: EnumItem - Enum.EasingStyle.Quart: - struct: EnumItem - Enum.EasingStyle.Quint: - struct: EnumItem - Enum.EasingStyle.Sine: - struct: EnumItem - Enum.ElasticBehavior.Always: - struct: EnumItem - Enum.ElasticBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ElasticBehavior.Never: - struct: EnumItem - Enum.ElasticBehavior.WhenScrollable: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Always: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.DefaultAuto: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Disabled: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EnviromentalPhysicsThrottle.Skip16: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip2: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip4: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip8: - struct: EnumItem - Enum.ExperienceAuthScope.CreatorAssetsCreate: - struct: EnumItem - Enum.ExperienceAuthScope.DefaultScope: - struct: EnumItem - Enum.ExperienceAuthScope.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ExplosionType.Craters: - struct: EnumItem - Enum.ExplosionType.CratersAndDebris: - struct: EnumItem - deprecated: - message: Enum.ExplosionType.CratersAndDebris was replaced with Enum.ExplosionType.Craters - replace: - - Enum.ExplosionType.Craters - Enum.ExplosionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ExplosionType.NoCraters: - struct: EnumItem - Enum.FacialAnimationFlags.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FacialAnimationFlags.None: - struct: EnumItem - Enum.FacialAnimationFlags.Place: - struct: EnumItem - Enum.FacialAnimationFlags.PlaceServer: - struct: EnumItem - Enum.FacialAnimationFlags.Server: - struct: EnumItem - Enum.FacialAnimationStreamingState.Audio: - struct: EnumItem - Enum.FacialAnimationStreamingState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FacialAnimationStreamingState.None: - struct: EnumItem - Enum.FacialAnimationStreamingState.Place: - struct: EnumItem - Enum.FacialAnimationStreamingState.Server: - struct: EnumItem - Enum.FacialAnimationStreamingState.Video: - struct: EnumItem - Enum.FieldOfViewMode.Diagonal: - struct: EnumItem - Enum.FieldOfViewMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FieldOfViewMode.MaxAxis: - struct: EnumItem - Enum.FieldOfViewMode.Vertical: - struct: EnumItem - Enum.FillDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FillDirection.Horizontal: - struct: EnumItem - Enum.FillDirection.Vertical: - struct: EnumItem - Enum.FilterResult.Accepted: - struct: EnumItem - Enum.FilterResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FilterResult.Rejected: - struct: EnumItem - Enum.Font.AmaticSC: - struct: EnumItem - Enum.Font.Antique: - struct: EnumItem - Enum.Font.Arcade: - struct: EnumItem - Enum.Font.Arial: - struct: EnumItem - Enum.Font.ArialBold: - struct: EnumItem - Enum.Font.Bangers: - struct: EnumItem - Enum.Font.Bodoni: - struct: EnumItem - Enum.Font.Cartoon: - struct: EnumItem - Enum.Font.Code: - struct: EnumItem - Enum.Font.Creepster: - struct: EnumItem - Enum.Font.DenkOne: - struct: EnumItem - Enum.Font.Fantasy: - struct: EnumItem - Enum.Font.Fondamento: - struct: EnumItem - Enum.Font.FredokaOne: - struct: EnumItem - Enum.Font.Garamond: - struct: EnumItem - Enum.Font.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Font.Gotham: - struct: EnumItem - Enum.Font.GothamBlack: - struct: EnumItem - Enum.Font.GothamBold: - struct: EnumItem - Enum.Font.GothamMedium: - struct: EnumItem - Enum.Font.GothamSemibold: - struct: EnumItem - deprecated: - message: Enum.Font.GothamSemibold was replaced with Enum.Font.GothamMedium - replace: - - Enum.Font.GothamMedium - Enum.Font.GrenzeGotisch: - struct: EnumItem - Enum.Font.Highway: - struct: EnumItem - Enum.Font.IndieFlower: - struct: EnumItem - Enum.Font.JosefinSans: - struct: EnumItem - Enum.Font.Jura: - struct: EnumItem - Enum.Font.Kalam: - struct: EnumItem - Enum.Font.Legacy: - struct: EnumItem - Enum.Font.LuckiestGuy: - struct: EnumItem - Enum.Font.Merriweather: - struct: EnumItem - Enum.Font.Michroma: - struct: EnumItem - Enum.Font.Nunito: - struct: EnumItem - Enum.Font.Oswald: - struct: EnumItem - Enum.Font.PatrickHand: - struct: EnumItem - Enum.Font.PermanentMarker: - struct: EnumItem - Enum.Font.Roboto: - struct: EnumItem - Enum.Font.RobotoCondensed: - struct: EnumItem - Enum.Font.RobotoMono: - struct: EnumItem - Enum.Font.Sarpanch: - struct: EnumItem - Enum.Font.SciFi: - struct: EnumItem - Enum.Font.SourceSans: - struct: EnumItem - Enum.Font.SourceSansBold: - struct: EnumItem - Enum.Font.SourceSansItalic: - struct: EnumItem - Enum.Font.SourceSansLight: - struct: EnumItem - Enum.Font.SourceSansSemibold: - struct: EnumItem - Enum.Font.SpecialElite: - struct: EnumItem - Enum.Font.TitilliumWeb: - struct: EnumItem - Enum.Font.Ubuntu: - struct: EnumItem - Enum.Font.Unknown: - struct: EnumItem - Enum.FontSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontSize.Size10: - struct: EnumItem - Enum.FontSize.Size11: - struct: EnumItem - Enum.FontSize.Size12: - struct: EnumItem - Enum.FontSize.Size14: - struct: EnumItem - Enum.FontSize.Size18: - struct: EnumItem - Enum.FontSize.Size24: - struct: EnumItem - Enum.FontSize.Size28: - struct: EnumItem - Enum.FontSize.Size32: - struct: EnumItem - Enum.FontSize.Size36: - struct: EnumItem - Enum.FontSize.Size42: - struct: EnumItem - Enum.FontSize.Size48: - struct: EnumItem - Enum.FontSize.Size60: - struct: EnumItem - Enum.FontSize.Size8: - struct: EnumItem - Enum.FontSize.Size9: - struct: EnumItem - Enum.FontSize.Size96: - struct: EnumItem - Enum.FontStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontStyle.Italic: - struct: EnumItem - Enum.FontStyle.Normal: - struct: EnumItem - Enum.FontWeight.Bold: - struct: EnumItem - Enum.FontWeight.ExtraBold: - struct: EnumItem - Enum.FontWeight.ExtraLight: - struct: EnumItem - Enum.FontWeight.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontWeight.Heavy: - struct: EnumItem - Enum.FontWeight.Light: - struct: EnumItem - Enum.FontWeight.Medium: - struct: EnumItem - Enum.FontWeight.Regular: - struct: EnumItem - Enum.FontWeight.SemiBold: - struct: EnumItem - Enum.FontWeight.Thin: - struct: EnumItem - Enum.FormFactor.Block: - struct: EnumItem - deprecated: - message: Enum.FormFactor.Block was replaced with Enum.FormFactor.Brick - replace: - - Enum.FormFactor.Brick - Enum.FormFactor.Brick: - struct: EnumItem - Enum.FormFactor.Custom: - struct: EnumItem - Enum.FormFactor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FormFactor.Plate: - struct: EnumItem - Enum.FormFactor.Symmetric: - struct: EnumItem - Enum.FrameStyle.ChatBlue: - struct: EnumItem - Enum.FrameStyle.ChatGreen: - struct: EnumItem - Enum.FrameStyle.ChatRed: - struct: EnumItem - Enum.FrameStyle.Custom: - struct: EnumItem - Enum.FrameStyle.DropShadow: - struct: EnumItem - Enum.FrameStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FrameStyle.RobloxRound: - struct: EnumItem - Enum.FrameStyle.RobloxSquare: - struct: EnumItem - Enum.FramerateManagerMode.Automatic: - struct: EnumItem - Enum.FramerateManagerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FramerateManagerMode.Off: - struct: EnumItem - Enum.FramerateManagerMode.On: - struct: EnumItem - Enum.FriendRequestEvent.Accept: - struct: EnumItem - Enum.FriendRequestEvent.Deny: - struct: EnumItem - Enum.FriendRequestEvent.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FriendRequestEvent.Issue: - struct: EnumItem - Enum.FriendRequestEvent.Revoke: - struct: EnumItem - Enum.FriendStatus.Friend: - struct: EnumItem - Enum.FriendStatus.FriendRequestReceived: - struct: EnumItem - Enum.FriendStatus.FriendRequestSent: - struct: EnumItem - Enum.FriendStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FriendStatus.NotFriend: - struct: EnumItem - Enum.FriendStatus.Unknown: - struct: EnumItem - Enum.FunctionalTestResult.Error: - struct: EnumItem - Enum.FunctionalTestResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FunctionalTestResult.Passed: - struct: EnumItem - Enum.FunctionalTestResult.Warning: - struct: EnumItem - Enum.GameAvatarType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GameAvatarType.PlayerChoice: - struct: EnumItem - Enum.GameAvatarType.R15: - struct: EnumItem - Enum.GameAvatarType.R6: - struct: EnumItem - Enum.GearGenreSetting.AllGenres: - struct: EnumItem - Enum.GearGenreSetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GearGenreSetting.MatchingGenreOnly: - struct: EnumItem - Enum.GearType.BuildingTools: - struct: EnumItem - Enum.GearType.Explosives: - struct: EnumItem - Enum.GearType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GearType.MeleeWeapons: - struct: EnumItem - Enum.GearType.MusicalInstruments: - struct: EnumItem - Enum.GearType.NavigationEnhancers: - struct: EnumItem - Enum.GearType.PowerUps: - struct: EnumItem - Enum.GearType.RangedWeapons: - struct: EnumItem - Enum.GearType.SocialItems: - struct: EnumItem - Enum.GearType.Transport: - struct: EnumItem - Enum.Genre.Adventure: - struct: EnumItem - Enum.Genre.All: - struct: EnumItem - Enum.Genre.Fantasy: - struct: EnumItem - Enum.Genre.Funny: - struct: EnumItem - Enum.Genre.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Genre.Ninja: - struct: EnumItem - Enum.Genre.Pirate: - struct: EnumItem - Enum.Genre.Scary: - struct: EnumItem - Enum.Genre.SciFi: - struct: EnumItem - Enum.Genre.SkatePark: - struct: EnumItem - Enum.Genre.Sports: - struct: EnumItem - Enum.Genre.TownAndCity: - struct: EnumItem - Enum.Genre.Tutorial: - struct: EnumItem - Enum.Genre.War: - struct: EnumItem - Enum.Genre.WildWest: - struct: EnumItem - Enum.GetEnums: - args: [] - method: true - must_use: true - Enum.GraphicsMode.Automatic: - struct: EnumItem - Enum.GraphicsMode.Direct3D11: - struct: EnumItem - Enum.GraphicsMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GraphicsMode.Metal: - struct: EnumItem - Enum.GraphicsMode.NoGraphics: - struct: EnumItem - Enum.GraphicsMode.OpenGL: - struct: EnumItem - Enum.GraphicsMode.Vulkan: - struct: EnumItem - Enum.GuiType.Core: - struct: EnumItem - Enum.GuiType.Custom: - struct: EnumItem - Enum.GuiType.CustomBillboards: - struct: EnumItem - Enum.GuiType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GuiType.PlayerNameplates: - struct: EnumItem - Enum.HandlesStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HandlesStyle.Movement: - struct: EnumItem - Enum.HandlesStyle.Resize: - struct: EnumItem - Enum.HighlightDepthMode.AlwaysOnTop: - struct: EnumItem - Enum.HighlightDepthMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HighlightDepthMode.Occluded: - struct: EnumItem - Enum.HorizontalAlignment.Center: - struct: EnumItem - Enum.HorizontalAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HorizontalAlignment.Left: - struct: EnumItem - Enum.HorizontalAlignment.Right: - struct: EnumItem - Enum.HoverAnimateSpeed.Fast: - struct: EnumItem - Enum.HoverAnimateSpeed.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HoverAnimateSpeed.Medium: - struct: EnumItem - Enum.HoverAnimateSpeed.Slow: - struct: EnumItem - Enum.HoverAnimateSpeed.VeryFast: - struct: EnumItem - Enum.HoverAnimateSpeed.VerySlow: - struct: EnumItem - Enum.HttpCachePolicy.DataOnly: - struct: EnumItem - Enum.HttpCachePolicy.Default: - struct: EnumItem - Enum.HttpCachePolicy.Full: - struct: EnumItem - Enum.HttpCachePolicy.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpCachePolicy.InternalRedirectRefresh: - struct: EnumItem - Enum.HttpCachePolicy.None: - struct: EnumItem - Enum.HttpContentType.ApplicationJson: - struct: EnumItem - Enum.HttpContentType.ApplicationUrlEncoded: - struct: EnumItem - Enum.HttpContentType.ApplicationXml: - struct: EnumItem - Enum.HttpContentType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpContentType.TextPlain: - struct: EnumItem - Enum.HttpContentType.TextXml: - struct: EnumItem - Enum.HttpError.Aborted: - struct: EnumItem - Enum.HttpError.ConnectFail: - struct: EnumItem - Enum.HttpError.DnsResolve: - struct: EnumItem - Enum.HttpError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpError.InvalidRedirect: - struct: EnumItem - Enum.HttpError.InvalidUrl: - struct: EnumItem - Enum.HttpError.NetFail: - struct: EnumItem - Enum.HttpError.OK: - struct: EnumItem - Enum.HttpError.OutOfMemory: - struct: EnumItem - Enum.HttpError.SslConnectFail: - struct: EnumItem - Enum.HttpError.SslVerificationFail: - struct: EnumItem - Enum.HttpError.TimedOut: - struct: EnumItem - Enum.HttpError.TooManyRedirects: - struct: EnumItem - Enum.HttpError.Unknown: - struct: EnumItem - Enum.HttpRequestType.Analytics: - struct: EnumItem - Enum.HttpRequestType.Avatar: - struct: EnumItem - Enum.HttpRequestType.Chat: - struct: EnumItem - Enum.HttpRequestType.Default: - struct: EnumItem - Enum.HttpRequestType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpRequestType.Localization: - struct: EnumItem - Enum.HttpRequestType.MarketplaceService: - struct: EnumItem - Enum.HttpRequestType.Players: - struct: EnumItem - Enum.HumanoidCollisionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidCollisionType.InnerBox: - struct: EnumItem - Enum.HumanoidCollisionType.OuterBox: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidDisplayDistanceType.None: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.Subject: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.Viewer: - struct: EnumItem - Enum.HumanoidHealthDisplayType.AlwaysOff: - struct: EnumItem - Enum.HumanoidHealthDisplayType.AlwaysOn: - struct: EnumItem - Enum.HumanoidHealthDisplayType.DisplayWhenDamaged: - struct: EnumItem - Enum.HumanoidHealthDisplayType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidOnlySetCollisionsOnStateChange.Default: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.Disabled: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.Enabled: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidRigType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidRigType.R15: - struct: EnumItem - Enum.HumanoidRigType.R6: - struct: EnumItem - Enum.HumanoidStateMachineMode.Default: - struct: EnumItem - Enum.HumanoidStateMachineMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidStateMachineMode.Legacy: - struct: EnumItem - Enum.HumanoidStateMachineMode.LuaStateMachine: - struct: EnumItem - Enum.HumanoidStateMachineMode.NoStateMachine: - struct: EnumItem - Enum.HumanoidStateType.Climbing: - struct: EnumItem - Enum.HumanoidStateType.Dead: - struct: EnumItem - Enum.HumanoidStateType.FallingDown: - struct: EnumItem - Enum.HumanoidStateType.Flying: - struct: EnumItem - Enum.HumanoidStateType.Freefall: - struct: EnumItem - Enum.HumanoidStateType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidStateType.GettingUp: - struct: EnumItem - Enum.HumanoidStateType.Jumping: - struct: EnumItem - Enum.HumanoidStateType.Landed: - struct: EnumItem - Enum.HumanoidStateType.None: - struct: EnumItem - Enum.HumanoidStateType.Physics: - struct: EnumItem - Enum.HumanoidStateType.PlatformStanding: - struct: EnumItem - Enum.HumanoidStateType.Ragdoll: - struct: EnumItem - Enum.HumanoidStateType.Running: - struct: EnumItem - Enum.HumanoidStateType.RunningNoPhysics: - struct: EnumItem - Enum.HumanoidStateType.Seated: - struct: EnumItem - Enum.HumanoidStateType.StrafingNoPhysics: - struct: EnumItem - Enum.HumanoidStateType.Swimming: - struct: EnumItem - Enum.IKCollisionsMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IKCollisionsMode.IncludeContactedMechanisms: - struct: EnumItem - Enum.IKCollisionsMode.NoCollisions: - struct: EnumItem - Enum.IKCollisionsMode.OtherMechanismsAnchored: - struct: EnumItem - Enum.IKControlType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IKControlType.LookAt: - struct: EnumItem - Enum.IKControlType.Position: - struct: EnumItem - Enum.IKControlType.Rotation: - struct: EnumItem - Enum.IKControlType.Transform: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorConnection: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorInvalidUser: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorJsonParse: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorTimedOut: - struct: EnumItem - Enum.IXPLoadingStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IXPLoadingStatus.Initialized: - struct: EnumItem - Enum.IXPLoadingStatus.None: - struct: EnumItem - Enum.IXPLoadingStatus.Pending: - struct: EnumItem - Enum.InOut.Center: - struct: EnumItem - Enum.InOut.Edge: - struct: EnumItem - Enum.InOut.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InOut.Inset: - struct: EnumItem - Enum.InfoType.Asset: - struct: EnumItem - Enum.InfoType.Bundle: - struct: EnumItem - Enum.InfoType.GamePass: - struct: EnumItem - Enum.InfoType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InfoType.Product: - struct: EnumItem - Enum.InfoType.Subscription: - struct: EnumItem - Enum.InitialDockState.Bottom: - struct: EnumItem - Enum.InitialDockState.Float: - struct: EnumItem - Enum.InitialDockState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InitialDockState.Left: - struct: EnumItem - Enum.InitialDockState.Right: - struct: EnumItem - Enum.InitialDockState.Top: - struct: EnumItem - Enum.InputType.Action1: - struct: EnumItem - deprecated: - message: Enum.InputType.Action1 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action2: - struct: EnumItem - deprecated: - message: Enum.InputType.Action2 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action3: - struct: EnumItem - deprecated: - message: Enum.InputType.Action3 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action4: - struct: EnumItem - deprecated: - message: Enum.InputType.Action4 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action5: - struct: EnumItem - deprecated: - message: Enum.InputType.Action5 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Constant: - struct: EnumItem - Enum.InputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InputType.LeftTread: - struct: EnumItem - deprecated: - message: Enum.InputType.LeftTread was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.NoInput: - struct: EnumItem - Enum.InputType.RightTread: - struct: EnumItem - deprecated: - message: Enum.InputType.RightTread was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Sin: - struct: EnumItem - Enum.InputType.Steer: - struct: EnumItem - deprecated: - message: Enum.InputType.Steer was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Throtle: - struct: EnumItem - deprecated: - message: Enum.InputType.Throtle was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Throttle: - struct: EnumItem - deprecated: - message: Enum.InputType.Throttle was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.UpDown: - struct: EnumItem - deprecated: - message: Enum.InputType.UpDown was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InterpolationThrottlingMode.Default: - struct: EnumItem - Enum.InterpolationThrottlingMode.Disabled: - struct: EnumItem - Enum.InterpolationThrottlingMode.Enabled: - struct: EnumItem - Enum.InterpolationThrottlingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.JointCreationMode.All: - struct: EnumItem - Enum.JointCreationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.JointCreationMode.None: - struct: EnumItem - Enum.JointCreationMode.Surface: - struct: EnumItem - Enum.KeyCode.A: - struct: EnumItem - Enum.KeyCode.Ampersand: - struct: EnumItem - Enum.KeyCode.Asterisk: - struct: EnumItem - Enum.KeyCode.At: - struct: EnumItem - Enum.KeyCode.B: - struct: EnumItem - Enum.KeyCode.BackSlash: - struct: EnumItem - Enum.KeyCode.Backquote: - struct: EnumItem - Enum.KeyCode.Backspace: - struct: EnumItem - Enum.KeyCode.Break: - struct: EnumItem - Enum.KeyCode.ButtonA: - struct: EnumItem - Enum.KeyCode.ButtonB: - struct: EnumItem - Enum.KeyCode.ButtonL1: - struct: EnumItem - Enum.KeyCode.ButtonL2: - struct: EnumItem - Enum.KeyCode.ButtonL3: - struct: EnumItem - Enum.KeyCode.ButtonR1: - struct: EnumItem - Enum.KeyCode.ButtonR2: - struct: EnumItem - Enum.KeyCode.ButtonR3: - struct: EnumItem - Enum.KeyCode.ButtonSelect: - struct: EnumItem - Enum.KeyCode.ButtonStart: - struct: EnumItem - Enum.KeyCode.ButtonX: - struct: EnumItem - Enum.KeyCode.ButtonY: - struct: EnumItem - Enum.KeyCode.C: - struct: EnumItem - Enum.KeyCode.CapsLock: - struct: EnumItem - Enum.KeyCode.Caret: - struct: EnumItem - Enum.KeyCode.Clear: - struct: EnumItem - Enum.KeyCode.Colon: - struct: EnumItem - Enum.KeyCode.Comma: - struct: EnumItem - Enum.KeyCode.Compose: - struct: EnumItem - Enum.KeyCode.D: - struct: EnumItem - Enum.KeyCode.DPadDown: - struct: EnumItem - Enum.KeyCode.DPadLeft: - struct: EnumItem - Enum.KeyCode.DPadRight: - struct: EnumItem - Enum.KeyCode.DPadUp: - struct: EnumItem - Enum.KeyCode.Delete: - struct: EnumItem - Enum.KeyCode.Dollar: - struct: EnumItem - Enum.KeyCode.Down: - struct: EnumItem - Enum.KeyCode.E: - struct: EnumItem - Enum.KeyCode.Eight: - struct: EnumItem - Enum.KeyCode.End: - struct: EnumItem - Enum.KeyCode.Equals: - struct: EnumItem - Enum.KeyCode.Escape: - struct: EnumItem - Enum.KeyCode.Euro: - struct: EnumItem - Enum.KeyCode.F: - struct: EnumItem - Enum.KeyCode.F1: - struct: EnumItem - Enum.KeyCode.F10: - struct: EnumItem - Enum.KeyCode.F11: - struct: EnumItem - Enum.KeyCode.F12: - struct: EnumItem - Enum.KeyCode.F13: - struct: EnumItem - Enum.KeyCode.F14: - struct: EnumItem - Enum.KeyCode.F15: - struct: EnumItem - Enum.KeyCode.F2: - struct: EnumItem - Enum.KeyCode.F3: - struct: EnumItem - Enum.KeyCode.F4: - struct: EnumItem - Enum.KeyCode.F5: - struct: EnumItem - Enum.KeyCode.F6: - struct: EnumItem - Enum.KeyCode.F7: - struct: EnumItem - Enum.KeyCode.F8: - struct: EnumItem - Enum.KeyCode.F9: - struct: EnumItem - Enum.KeyCode.Five: - struct: EnumItem - Enum.KeyCode.Four: - struct: EnumItem - Enum.KeyCode.G: - struct: EnumItem - Enum.KeyCode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeyCode.GreaterThan: - struct: EnumItem - Enum.KeyCode.H: - struct: EnumItem - Enum.KeyCode.Hash: - struct: EnumItem - Enum.KeyCode.Help: - struct: EnumItem - Enum.KeyCode.Home: - struct: EnumItem - Enum.KeyCode.I: - struct: EnumItem - Enum.KeyCode.Insert: - struct: EnumItem - Enum.KeyCode.J: - struct: EnumItem - Enum.KeyCode.K: - struct: EnumItem - Enum.KeyCode.KeypadDivide: - struct: EnumItem - Enum.KeyCode.KeypadEight: - struct: EnumItem - Enum.KeyCode.KeypadEnter: - struct: EnumItem - Enum.KeyCode.KeypadEquals: - struct: EnumItem - Enum.KeyCode.KeypadFive: - struct: EnumItem - Enum.KeyCode.KeypadFour: - struct: EnumItem - Enum.KeyCode.KeypadMinus: - struct: EnumItem - Enum.KeyCode.KeypadMultiply: - struct: EnumItem - Enum.KeyCode.KeypadNine: - struct: EnumItem - Enum.KeyCode.KeypadOne: - struct: EnumItem - Enum.KeyCode.KeypadPeriod: - struct: EnumItem - Enum.KeyCode.KeypadPlus: - struct: EnumItem - Enum.KeyCode.KeypadSeven: - struct: EnumItem - Enum.KeyCode.KeypadSix: - struct: EnumItem - Enum.KeyCode.KeypadThree: - struct: EnumItem - Enum.KeyCode.KeypadTwo: - struct: EnumItem - Enum.KeyCode.KeypadZero: - struct: EnumItem - Enum.KeyCode.L: - struct: EnumItem - Enum.KeyCode.Left: - struct: EnumItem - Enum.KeyCode.LeftAlt: - struct: EnumItem - Enum.KeyCode.LeftBracket: - struct: EnumItem - Enum.KeyCode.LeftControl: - struct: EnumItem - Enum.KeyCode.LeftCurly: - struct: EnumItem - Enum.KeyCode.LeftMeta: - struct: EnumItem - Enum.KeyCode.LeftParenthesis: - struct: EnumItem - Enum.KeyCode.LeftShift: - struct: EnumItem - Enum.KeyCode.LeftSuper: - struct: EnumItem - Enum.KeyCode.LessThan: - struct: EnumItem - Enum.KeyCode.M: - struct: EnumItem - Enum.KeyCode.Menu: - struct: EnumItem - Enum.KeyCode.Minus: - struct: EnumItem - Enum.KeyCode.Mode: - struct: EnumItem - Enum.KeyCode.N: - struct: EnumItem - Enum.KeyCode.Nine: - struct: EnumItem - Enum.KeyCode.NumLock: - struct: EnumItem - Enum.KeyCode.O: - struct: EnumItem - Enum.KeyCode.One: - struct: EnumItem - Enum.KeyCode.P: - struct: EnumItem - Enum.KeyCode.PageDown: - struct: EnumItem - Enum.KeyCode.PageUp: - struct: EnumItem - Enum.KeyCode.Pause: - struct: EnumItem - Enum.KeyCode.Percent: - struct: EnumItem - Enum.KeyCode.Period: - struct: EnumItem - Enum.KeyCode.Pipe: - struct: EnumItem - Enum.KeyCode.Plus: - struct: EnumItem - Enum.KeyCode.Power: - struct: EnumItem - Enum.KeyCode.Print: - struct: EnumItem - Enum.KeyCode.Q: - struct: EnumItem - Enum.KeyCode.Question: - struct: EnumItem - Enum.KeyCode.Quote: - struct: EnumItem - Enum.KeyCode.QuotedDouble: - struct: EnumItem - Enum.KeyCode.R: - struct: EnumItem - Enum.KeyCode.Return: - struct: EnumItem - Enum.KeyCode.Right: - struct: EnumItem - Enum.KeyCode.RightAlt: - struct: EnumItem - Enum.KeyCode.RightBracket: - struct: EnumItem - Enum.KeyCode.RightControl: - struct: EnumItem - Enum.KeyCode.RightCurly: - struct: EnumItem - Enum.KeyCode.RightMeta: - struct: EnumItem - Enum.KeyCode.RightParenthesis: - struct: EnumItem - Enum.KeyCode.RightShift: - struct: EnumItem - Enum.KeyCode.RightSuper: - struct: EnumItem - Enum.KeyCode.S: - struct: EnumItem - Enum.KeyCode.ScrollLock: - struct: EnumItem - Enum.KeyCode.Semicolon: - struct: EnumItem - Enum.KeyCode.Seven: - struct: EnumItem - Enum.KeyCode.Six: - struct: EnumItem - Enum.KeyCode.Slash: - struct: EnumItem - Enum.KeyCode.Space: - struct: EnumItem - Enum.KeyCode.SysReq: - struct: EnumItem - Enum.KeyCode.T: - struct: EnumItem - Enum.KeyCode.Tab: - struct: EnumItem - Enum.KeyCode.Three: - struct: EnumItem - Enum.KeyCode.Thumbstick1: - struct: EnumItem - Enum.KeyCode.Thumbstick2: - struct: EnumItem - Enum.KeyCode.Tilde: - struct: EnumItem - Enum.KeyCode.Two: - struct: EnumItem - Enum.KeyCode.U: - struct: EnumItem - Enum.KeyCode.Underscore: - struct: EnumItem - Enum.KeyCode.Undo: - struct: EnumItem - Enum.KeyCode.Unknown: - struct: EnumItem - Enum.KeyCode.Up: - struct: EnumItem - Enum.KeyCode.V: - struct: EnumItem - Enum.KeyCode.W: - struct: EnumItem - Enum.KeyCode.World0: - struct: EnumItem - Enum.KeyCode.World1: - struct: EnumItem - Enum.KeyCode.World10: - struct: EnumItem - Enum.KeyCode.World11: - struct: EnumItem - Enum.KeyCode.World12: - struct: EnumItem - Enum.KeyCode.World13: - struct: EnumItem - Enum.KeyCode.World14: - struct: EnumItem - Enum.KeyCode.World15: - struct: EnumItem - Enum.KeyCode.World16: - struct: EnumItem - Enum.KeyCode.World17: - struct: EnumItem - Enum.KeyCode.World18: - struct: EnumItem - Enum.KeyCode.World19: - struct: EnumItem - Enum.KeyCode.World2: - struct: EnumItem - Enum.KeyCode.World20: - struct: EnumItem - Enum.KeyCode.World21: - struct: EnumItem - Enum.KeyCode.World22: - struct: EnumItem - Enum.KeyCode.World23: - struct: EnumItem - Enum.KeyCode.World24: - struct: EnumItem - Enum.KeyCode.World25: - struct: EnumItem - Enum.KeyCode.World26: - struct: EnumItem - Enum.KeyCode.World27: - struct: EnumItem - Enum.KeyCode.World28: - struct: EnumItem - Enum.KeyCode.World29: - struct: EnumItem - Enum.KeyCode.World3: - struct: EnumItem - Enum.KeyCode.World30: - struct: EnumItem - Enum.KeyCode.World31: - struct: EnumItem - Enum.KeyCode.World32: - struct: EnumItem - Enum.KeyCode.World33: - struct: EnumItem - Enum.KeyCode.World34: - struct: EnumItem - Enum.KeyCode.World35: - struct: EnumItem - Enum.KeyCode.World36: - struct: EnumItem - Enum.KeyCode.World37: - struct: EnumItem - Enum.KeyCode.World38: - struct: EnumItem - Enum.KeyCode.World39: - struct: EnumItem - Enum.KeyCode.World4: - struct: EnumItem - Enum.KeyCode.World40: - struct: EnumItem - Enum.KeyCode.World41: - struct: EnumItem - Enum.KeyCode.World42: - struct: EnumItem - Enum.KeyCode.World43: - struct: EnumItem - Enum.KeyCode.World44: - struct: EnumItem - Enum.KeyCode.World45: - struct: EnumItem - Enum.KeyCode.World46: - struct: EnumItem - Enum.KeyCode.World47: - struct: EnumItem - Enum.KeyCode.World48: - struct: EnumItem - Enum.KeyCode.World49: - struct: EnumItem - Enum.KeyCode.World5: - struct: EnumItem - Enum.KeyCode.World50: - struct: EnumItem - Enum.KeyCode.World51: - struct: EnumItem - Enum.KeyCode.World52: - struct: EnumItem - Enum.KeyCode.World53: - struct: EnumItem - Enum.KeyCode.World54: - struct: EnumItem - Enum.KeyCode.World55: - struct: EnumItem - Enum.KeyCode.World56: - struct: EnumItem - Enum.KeyCode.World57: - struct: EnumItem - Enum.KeyCode.World58: - struct: EnumItem - Enum.KeyCode.World59: - struct: EnumItem - Enum.KeyCode.World6: - struct: EnumItem - Enum.KeyCode.World60: - struct: EnumItem - Enum.KeyCode.World61: - struct: EnumItem - Enum.KeyCode.World62: - struct: EnumItem - Enum.KeyCode.World63: - struct: EnumItem - Enum.KeyCode.World64: - struct: EnumItem - Enum.KeyCode.World65: - struct: EnumItem - Enum.KeyCode.World66: - struct: EnumItem - Enum.KeyCode.World67: - struct: EnumItem - Enum.KeyCode.World68: - struct: EnumItem - Enum.KeyCode.World69: - struct: EnumItem - Enum.KeyCode.World7: - struct: EnumItem - Enum.KeyCode.World70: - struct: EnumItem - Enum.KeyCode.World71: - struct: EnumItem - Enum.KeyCode.World72: - struct: EnumItem - Enum.KeyCode.World73: - struct: EnumItem - Enum.KeyCode.World74: - struct: EnumItem - Enum.KeyCode.World75: - struct: EnumItem - Enum.KeyCode.World76: - struct: EnumItem - Enum.KeyCode.World77: - struct: EnumItem - Enum.KeyCode.World78: - struct: EnumItem - Enum.KeyCode.World79: - struct: EnumItem - Enum.KeyCode.World8: - struct: EnumItem - Enum.KeyCode.World80: - struct: EnumItem - Enum.KeyCode.World81: - struct: EnumItem - Enum.KeyCode.World82: - struct: EnumItem - Enum.KeyCode.World83: - struct: EnumItem - Enum.KeyCode.World84: - struct: EnumItem - Enum.KeyCode.World85: - struct: EnumItem - Enum.KeyCode.World86: - struct: EnumItem - Enum.KeyCode.World87: - struct: EnumItem - Enum.KeyCode.World88: - struct: EnumItem - Enum.KeyCode.World89: - struct: EnumItem - Enum.KeyCode.World9: - struct: EnumItem - Enum.KeyCode.World90: - struct: EnumItem - Enum.KeyCode.World91: - struct: EnumItem - Enum.KeyCode.World92: - struct: EnumItem - Enum.KeyCode.World93: - struct: EnumItem - Enum.KeyCode.World94: - struct: EnumItem - Enum.KeyCode.World95: - struct: EnumItem - Enum.KeyCode.X: - struct: EnumItem - Enum.KeyCode.Y: - struct: EnumItem - Enum.KeyCode.Z: - struct: EnumItem - Enum.KeyCode.Zero: - struct: EnumItem - Enum.KeyInterpolationMode.Constant: - struct: EnumItem - Enum.KeyInterpolationMode.Cubic: - struct: EnumItem - Enum.KeyInterpolationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeyInterpolationMode.Linear: - struct: EnumItem - Enum.KeywordFilterType.Exclude: - struct: EnumItem - Enum.KeywordFilterType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeywordFilterType.Include: - struct: EnumItem - Enum.Language.Default: - struct: EnumItem - Enum.Language.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LeftRight.Center: - struct: EnumItem - Enum.LeftRight.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LeftRight.Left: - struct: EnumItem - Enum.LeftRight.Right: - struct: EnumItem - Enum.Limb.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Limb.Head: - struct: EnumItem - Enum.Limb.LeftArm: - struct: EnumItem - Enum.Limb.LeftLeg: - struct: EnumItem - Enum.Limb.RightArm: - struct: EnumItem - Enum.Limb.RightLeg: - struct: EnumItem - Enum.Limb.Torso: - struct: EnumItem - Enum.Limb.Unknown: - struct: EnumItem - Enum.LineJoinMode.Bevel: - struct: EnumItem - Enum.LineJoinMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LineJoinMode.Miter: - struct: EnumItem - Enum.LineJoinMode.Round: - struct: EnumItem - Enum.ListDisplayMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ListDisplayMode.Horizontal: - struct: EnumItem - Enum.ListDisplayMode.Vertical: - struct: EnumItem - Enum.ListenerType.CFrame: - struct: EnumItem - Enum.ListenerType.Camera: - struct: EnumItem - Enum.ListenerType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ListenerType.ObjectCFrame: - struct: EnumItem - Enum.ListenerType.ObjectPosition: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Default: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Disabled: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Enabled: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LoadDynamicHeads.Default: - struct: EnumItem - Enum.LoadDynamicHeads.Disabled: - struct: EnumItem - Enum.LoadDynamicHeads.Enabled: - struct: EnumItem - Enum.LoadDynamicHeads.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MarkupKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MarkupKind.Markdown: - struct: EnumItem - Enum.MarkupKind.PlainText: - struct: EnumItem - Enum.Material.Air: - struct: EnumItem - Enum.Material.Aluminum: - struct: EnumItem - deprecated: - message: Enum.Material.Aluminum was replaced with Enum.Material.Foil - replace: - - Enum.Material.Foil - Enum.Material.Asphalt: - struct: EnumItem - Enum.Material.Basalt: - struct: EnumItem - Enum.Material.Brick: - struct: EnumItem - Enum.Material.Cobblestone: - struct: EnumItem - Enum.Material.Concrete: - struct: EnumItem - Enum.Material.Corroded Metal: - struct: EnumItem - deprecated: - message: Enum.Material.Corroded Metal was replaced with Enum.Material.CorrodedMetal - replace: - - Enum.Material.CorrodedMetal - Enum.Material.CorrodedMetal: - struct: EnumItem - Enum.Material.CrackedLava: - struct: EnumItem - Enum.Material.DiamondPlate: - struct: EnumItem - Enum.Material.Fabric: - struct: EnumItem - Enum.Material.Foil: - struct: EnumItem - Enum.Material.ForceField: - struct: EnumItem - Enum.Material.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Material.Glacier: - struct: EnumItem - Enum.Material.Glass: - struct: EnumItem - Enum.Material.Granite: - struct: EnumItem - Enum.Material.Grass: - struct: EnumItem - Enum.Material.Ground: - struct: EnumItem - Enum.Material.Ice: - struct: EnumItem - Enum.Material.LeafyGrass: - struct: EnumItem - Enum.Material.Limestone: - struct: EnumItem - Enum.Material.Marble: - struct: EnumItem - Enum.Material.Metal: - struct: EnumItem - Enum.Material.Mud: - struct: EnumItem - Enum.Material.Neon: - struct: EnumItem - Enum.Material.Pavement: - struct: EnumItem - Enum.Material.Pebble: - struct: EnumItem - Enum.Material.Plastic: - struct: EnumItem - Enum.Material.Rock: - struct: EnumItem - Enum.Material.Salt: - struct: EnumItem - Enum.Material.Sand: - struct: EnumItem - Enum.Material.Sandstone: - struct: EnumItem - Enum.Material.Slate: - struct: EnumItem - Enum.Material.SmoothPlastic: - struct: EnumItem - Enum.Material.Snow: - struct: EnumItem - Enum.Material.Water: - struct: EnumItem - Enum.Material.Wood: - struct: EnumItem - Enum.Material.WoodPlanks: - struct: EnumItem - Enum.MaterialPattern.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MaterialPattern.Organic: - struct: EnumItem - Enum.MaterialPattern.Regular: - struct: EnumItem - Enum.MembershipType.BuildersClub: - struct: EnumItem - Enum.MembershipType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MembershipType.None: - struct: EnumItem - Enum.MembershipType.OutrageousBuildersClub: - struct: EnumItem - Enum.MembershipType.Premium: - struct: EnumItem - Enum.MembershipType.TurboBuildersClub: - struct: EnumItem - Enum.MeshPartDetailLevel.DistanceBased: - struct: EnumItem - Enum.MeshPartDetailLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshPartDetailLevel.Level00: - struct: EnumItem - Enum.MeshPartDetailLevel.Level01: - struct: EnumItem - Enum.MeshPartDetailLevel.Level02: - struct: EnumItem - Enum.MeshPartDetailLevel.Level03: - struct: EnumItem - Enum.MeshPartDetailLevel.Level04: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Default: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Disabled: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Enabled: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshScaleUnit.CM: - struct: EnumItem - Enum.MeshScaleUnit.Foot: - struct: EnumItem - Enum.MeshScaleUnit.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshScaleUnit.Inch: - struct: EnumItem - Enum.MeshScaleUnit.MM: - struct: EnumItem - Enum.MeshScaleUnit.Meter: - struct: EnumItem - Enum.MeshScaleUnit.Stud: - struct: EnumItem - Enum.MeshType.Brick: - struct: EnumItem - Enum.MeshType.CornerWedge: - struct: EnumItem - Enum.MeshType.Cylinder: - struct: EnumItem - Enum.MeshType.FileMesh: - struct: EnumItem - Enum.MeshType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshType.Head: - struct: EnumItem - Enum.MeshType.ParallelRamp: - struct: EnumItem - Enum.MeshType.Prism: - struct: EnumItem - Enum.MeshType.Pyramid: - struct: EnumItem - Enum.MeshType.RightAngleRamp: - struct: EnumItem - Enum.MeshType.Sphere: - struct: EnumItem - Enum.MeshType.Torso: - struct: EnumItem - Enum.MeshType.Wedge: - struct: EnumItem - Enum.MessageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MessageType.MessageError: - struct: EnumItem - Enum.MessageType.MessageInfo: - struct: EnumItem - Enum.MessageType.MessageOutput: - struct: EnumItem - Enum.MessageType.MessageWarning: - struct: EnumItem - Enum.ModelLevelOfDetail.Automatic: - struct: EnumItem - Enum.ModelLevelOfDetail.Disabled: - struct: EnumItem - Enum.ModelLevelOfDetail.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModelLevelOfDetail.StreamingMesh: - struct: EnumItem - Enum.ModelStreamingMode.Atomic: - struct: EnumItem - Enum.ModelStreamingMode.Default: - struct: EnumItem - Enum.ModelStreamingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModelStreamingMode.Nonatomic: - struct: EnumItem - Enum.ModelStreamingMode.Persistent: - struct: EnumItem - Enum.ModelStreamingMode.PersistentPerPlayer: - struct: EnumItem - Enum.ModifierKey.Alt: - struct: EnumItem - Enum.ModifierKey.Ctrl: - struct: EnumItem - Enum.ModifierKey.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModifierKey.Meta: - struct: EnumItem - Enum.ModifierKey.Shift: - struct: EnumItem - Enum.MouseBehavior.Default: - struct: EnumItem - Enum.MouseBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MouseBehavior.LockCenter: - struct: EnumItem - Enum.MouseBehavior.LockCurrentPosition: - struct: EnumItem - Enum.MoveState.AirFree: - struct: EnumItem - Enum.MoveState.Coasting: - struct: EnumItem - Enum.MoveState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MoveState.Pushing: - struct: EnumItem - Enum.MoveState.Stopped: - struct: EnumItem - Enum.MoveState.Stopping: - struct: EnumItem - Enum.MuteState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MuteState.Muted: - struct: EnumItem - Enum.MuteState.Unmuted: - struct: EnumItem - Enum.NameOcclusion.EnemyOcclusion: - struct: EnumItem - Enum.NameOcclusion.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NameOcclusion.NoOcclusion: - struct: EnumItem - Enum.NameOcclusion.OccludeAll: - struct: EnumItem - Enum.NetworkOwnership.Automatic: - struct: EnumItem - Enum.NetworkOwnership.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NetworkOwnership.Manual: - struct: EnumItem - Enum.NetworkOwnership.OnContact: - struct: EnumItem - Enum.NormalId.Back: - struct: EnumItem - Enum.NormalId.Bottom: - struct: EnumItem - Enum.NormalId.Front: - struct: EnumItem - Enum.NormalId.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NormalId.Left: - struct: EnumItem - Enum.NormalId.Right: - struct: EnumItem - Enum.NormalId.Top: - struct: EnumItem - Enum.OrientationAlignmentMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OrientationAlignmentMode.OneAttachment: - struct: EnumItem - Enum.OrientationAlignmentMode.TwoAttachment: - struct: EnumItem - Enum.OutfitSource.All: - struct: EnumItem - Enum.OutfitSource.Created: - struct: EnumItem - Enum.OutfitSource.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutfitSource.Purchased: - struct: EnumItem - Enum.OutfitType.All: - struct: EnumItem - Enum.OutfitType.Avatar: - struct: EnumItem - Enum.OutfitType.DynamicHead: - struct: EnumItem - Enum.OutfitType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutputLayoutMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutputLayoutMode.Horizontal: - struct: EnumItem - Enum.OutputLayoutMode.Vertical: - struct: EnumItem - Enum.OverrideMouseIconBehavior.ForceHide: - struct: EnumItem - Enum.OverrideMouseIconBehavior.ForceShow: - struct: EnumItem - Enum.OverrideMouseIconBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OverrideMouseIconBehavior.None: - struct: EnumItem - Enum.PackagePermission.Edit: - struct: EnumItem - Enum.PackagePermission.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PackagePermission.NoAccess: - struct: EnumItem - Enum.PackagePermission.None: - struct: EnumItem - Enum.PackagePermission.Own: - struct: EnumItem - Enum.PackagePermission.Revoked: - struct: EnumItem - Enum.PackagePermission.UseView: - struct: EnumItem - Enum.PartType.Ball: - struct: EnumItem - Enum.PartType.Block: - struct: EnumItem - Enum.PartType.Cylinder: - struct: EnumItem - Enum.PartType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShape.Box: - struct: EnumItem - Enum.ParticleEmitterShape.Cylinder: - struct: EnumItem - Enum.ParticleEmitterShape.Disc: - struct: EnumItem - Enum.ParticleEmitterShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShape.Sphere: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShapeInOut.InAndOut: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.Inward: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.Outward: - struct: EnumItem - Enum.ParticleEmitterShapeStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShapeStyle.Surface: - struct: EnumItem - Enum.ParticleEmitterShapeStyle.Volume: - struct: EnumItem - Enum.ParticleFlipbookLayout.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookLayout.Grid2x2: - struct: EnumItem - Enum.ParticleFlipbookLayout.Grid4x4: - struct: EnumItem - Enum.ParticleFlipbookLayout.Grid8x8: - struct: EnumItem - Enum.ParticleFlipbookLayout.None: - struct: EnumItem - Enum.ParticleFlipbookMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookMode.Loop: - struct: EnumItem - Enum.ParticleFlipbookMode.OneShot: - struct: EnumItem - Enum.ParticleFlipbookMode.PingPong: - struct: EnumItem - Enum.ParticleFlipbookMode.Random: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.Compatible: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookTextureCompatible.NotCompatible: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.Unknown: - struct: EnumItem - Enum.ParticleOrientation.FacingCamera: - struct: EnumItem - Enum.ParticleOrientation.FacingCameraWorldUp: - struct: EnumItem - Enum.ParticleOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleOrientation.VelocityParallel: - struct: EnumItem - Enum.ParticleOrientation.VelocityPerpendicular: - struct: EnumItem - Enum.PathStatus.ClosestNoPath: - struct: EnumItem - Enum.PathStatus.ClosestOutOfRange: - struct: EnumItem - Enum.PathStatus.FailFinishNotEmpty: - struct: EnumItem - Enum.PathStatus.FailStartNotEmpty: - struct: EnumItem - Enum.PathStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PathStatus.NoPath: - struct: EnumItem - Enum.PathStatus.Success: - struct: EnumItem - Enum.PathWaypointAction.Custom: - struct: EnumItem - Enum.PathWaypointAction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PathWaypointAction.Jump: - struct: EnumItem - Enum.PathWaypointAction.Walk: - struct: EnumItem - Enum.PermissionLevelShown.Game: - struct: EnumItem - Enum.PermissionLevelShown.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PermissionLevelShown.Roblox: - struct: EnumItem - Enum.PermissionLevelShown.RobloxGame: - struct: EnumItem - Enum.PermissionLevelShown.RobloxScript: - struct: EnumItem - Enum.PermissionLevelShown.Studio: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed120Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed240Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed60Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PhysicsSteppingMethod.Adaptive: - struct: EnumItem - Enum.PhysicsSteppingMethod.Default: - struct: EnumItem - Enum.PhysicsSteppingMethod.Fixed: - struct: EnumItem - Enum.PhysicsSteppingMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Platform.Android: - struct: EnumItem - Enum.Platform.AndroidTV: - struct: EnumItem - Enum.Platform.BeOS: - struct: EnumItem - Enum.Platform.Chromecast: - struct: EnumItem - Enum.Platform.DOS: - struct: EnumItem - Enum.Platform.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Platform.IOS: - struct: EnumItem - Enum.Platform.Linux: - struct: EnumItem - Enum.Platform.NX: - struct: EnumItem - Enum.Platform.None: - struct: EnumItem - Enum.Platform.OSX: - struct: EnumItem - Enum.Platform.Ouya: - struct: EnumItem - Enum.Platform.PS3: - struct: EnumItem - Enum.Platform.PS4: - struct: EnumItem - Enum.Platform.SteamOS: - struct: EnumItem - Enum.Platform.UWP: - struct: EnumItem - Enum.Platform.WebOS: - struct: EnumItem - Enum.Platform.WiiU: - struct: EnumItem - Enum.Platform.Windows: - struct: EnumItem - Enum.Platform.XBox360: - struct: EnumItem - Enum.Platform.XBoxOne: - struct: EnumItem - Enum.PlaybackState.Begin: - struct: EnumItem - Enum.PlaybackState.Cancelled: - struct: EnumItem - Enum.PlaybackState.Completed: - struct: EnumItem - Enum.PlaybackState.Delayed: - struct: EnumItem - Enum.PlaybackState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlaybackState.Paused: - struct: EnumItem - Enum.PlaybackState.Playing: - struct: EnumItem - Enum.PlayerActions.CharacterBackward: - struct: EnumItem - Enum.PlayerActions.CharacterForward: - struct: EnumItem - Enum.PlayerActions.CharacterJump: - struct: EnumItem - Enum.PlayerActions.CharacterLeft: - struct: EnumItem - Enum.PlayerActions.CharacterRight: - struct: EnumItem - Enum.PlayerActions.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlayerChatType.All: - struct: EnumItem - Enum.PlayerChatType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlayerChatType.Team: - struct: EnumItem - Enum.PlayerChatType.Whisper: - struct: EnumItem - Enum.PoseEasingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PoseEasingDirection.In: - struct: EnumItem - Enum.PoseEasingDirection.InOut: - struct: EnumItem - Enum.PoseEasingDirection.Out: - struct: EnumItem - Enum.PoseEasingStyle.Bounce: - struct: EnumItem - Enum.PoseEasingStyle.Constant: - struct: EnumItem - Enum.PoseEasingStyle.Cubic: - struct: EnumItem - Enum.PoseEasingStyle.Elastic: - struct: EnumItem - Enum.PoseEasingStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PoseEasingStyle.Linear: - struct: EnumItem - Enum.PositionAlignmentMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PositionAlignmentMode.OneAttachment: - struct: EnumItem - Enum.PositionAlignmentMode.TwoAttachment: - struct: EnumItem - Enum.PrivilegeType.Admin: - struct: EnumItem - Enum.PrivilegeType.Banned: - struct: EnumItem - Enum.PrivilegeType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PrivilegeType.Member: - struct: EnumItem - Enum.PrivilegeType.Owner: - struct: EnumItem - Enum.PrivilegeType.Visitor: - struct: EnumItem - Enum.ProductLocationRestriction.AllGames: - struct: EnumItem - Enum.ProductLocationRestriction.AllowedGames: - struct: EnumItem - Enum.ProductLocationRestriction.AvatarShop: - struct: EnumItem - Enum.ProductLocationRestriction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProductPurchaseDecision.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProductPurchaseDecision.NotProcessedYet: - struct: EnumItem - Enum.ProductPurchaseDecision.PurchaseGranted: - struct: EnumItem - Enum.PromptPublishAssetResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PromptPublishAssetResult.NoUserInput: - struct: EnumItem - Enum.PromptPublishAssetResult.PermissionDenied: - struct: EnumItem - Enum.PromptPublishAssetResult.Success: - struct: EnumItem - Enum.PromptPublishAssetResult.Timeout: - struct: EnumItem - Enum.PromptPublishAssetResult.UploadFailed: - struct: EnumItem - Enum.PropertyStatus.Error: - struct: EnumItem - Enum.PropertyStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PropertyStatus.Ok: - struct: EnumItem - Enum.PropertyStatus.Warning: - struct: EnumItem - Enum.ProximityPromptExclusivity.AlwaysShow: - struct: EnumItem - Enum.ProximityPromptExclusivity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProximityPromptExclusivity.OneGlobally: - struct: EnumItem - Enum.ProximityPromptExclusivity.OnePerButton: - struct: EnumItem - Enum.ProximityPromptInputType.Gamepad: - struct: EnumItem - Enum.ProximityPromptInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProximityPromptInputType.Keyboard: - struct: EnumItem - Enum.ProximityPromptInputType.Touch: - struct: EnumItem - Enum.ProximityPromptStyle.Custom: - struct: EnumItem - Enum.ProximityPromptStyle.Default: - struct: EnumItem - Enum.ProximityPromptStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.QualityLevel.Automatic: - struct: EnumItem - Enum.QualityLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.QualityLevel.Level 1: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 1 was replaced with Enum.QualityLevel.Level01 - replace: - - Enum.QualityLevel.Level01 - Enum.QualityLevel.Level 2: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 2 was replaced with Enum.QualityLevel.Level02 - replace: - - Enum.QualityLevel.Level02 - Enum.QualityLevel.Level 3: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 3 was replaced with Enum.QualityLevel.Level03 - replace: - - Enum.QualityLevel.Level03 - Enum.QualityLevel.Level 4: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 4 was replaced with Enum.QualityLevel.Level04 - replace: - - Enum.QualityLevel.Level04 - Enum.QualityLevel.Level 5: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 5 was replaced with Enum.QualityLevel.Level05 - replace: - - Enum.QualityLevel.Level05 - Enum.QualityLevel.Level 6: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 6 was replaced with Enum.QualityLevel.Level06 - replace: - - Enum.QualityLevel.Level06 - Enum.QualityLevel.Level 7: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 7 was replaced with Enum.QualityLevel.Level07 - replace: - - Enum.QualityLevel.Level07 - Enum.QualityLevel.Level 8: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 8 was replaced with Enum.QualityLevel.Level08 - replace: - - Enum.QualityLevel.Level08 - Enum.QualityLevel.Level 9: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 9 was replaced with Enum.QualityLevel.Level09 - replace: - - Enum.QualityLevel.Level09 - Enum.QualityLevel.Level 10: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 10 was replaced with Enum.QualityLevel.Level10 - replace: - - Enum.QualityLevel.Level10 - Enum.QualityLevel.Level 11: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 11 was replaced with Enum.QualityLevel.Level11 - replace: - - Enum.QualityLevel.Level11 - Enum.QualityLevel.Level 12: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 12 was replaced with Enum.QualityLevel.Level12 - replace: - - Enum.QualityLevel.Level12 - Enum.QualityLevel.Level 13: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 13 was replaced with Enum.QualityLevel.Level13 - replace: - - Enum.QualityLevel.Level13 - Enum.QualityLevel.Level 14: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 14 was replaced with Enum.QualityLevel.Level14 - replace: - - Enum.QualityLevel.Level14 - Enum.QualityLevel.Level 15: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 15 was replaced with Enum.QualityLevel.Level15 - replace: - - Enum.QualityLevel.Level15 - Enum.QualityLevel.Level 16: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 16 was replaced with Enum.QualityLevel.Level16 - replace: - - Enum.QualityLevel.Level16 - Enum.QualityLevel.Level 17: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 17 was replaced with Enum.QualityLevel.Level17 - replace: - - Enum.QualityLevel.Level17 - Enum.QualityLevel.Level 18: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 18 was replaced with Enum.QualityLevel.Level18 - replace: - - Enum.QualityLevel.Level18 - Enum.QualityLevel.Level 19: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 19 was replaced with Enum.QualityLevel.Level19 - replace: - - Enum.QualityLevel.Level19 - Enum.QualityLevel.Level 20: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 20 was replaced with Enum.QualityLevel.Level20 - replace: - - Enum.QualityLevel.Level20 - Enum.QualityLevel.Level 21: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 21 was replaced with Enum.QualityLevel.Level21 - replace: - - Enum.QualityLevel.Level21 - Enum.QualityLevel.Level01: - struct: EnumItem - Enum.QualityLevel.Level02: - struct: EnumItem - Enum.QualityLevel.Level03: - struct: EnumItem - Enum.QualityLevel.Level04: - struct: EnumItem - Enum.QualityLevel.Level05: - struct: EnumItem - Enum.QualityLevel.Level06: - struct: EnumItem - Enum.QualityLevel.Level07: - struct: EnumItem - Enum.QualityLevel.Level08: - struct: EnumItem - Enum.QualityLevel.Level09: - struct: EnumItem - Enum.QualityLevel.Level10: - struct: EnumItem - Enum.QualityLevel.Level11: - struct: EnumItem - Enum.QualityLevel.Level12: - struct: EnumItem - Enum.QualityLevel.Level13: - struct: EnumItem - Enum.QualityLevel.Level14: - struct: EnumItem - Enum.QualityLevel.Level15: - struct: EnumItem - Enum.QualityLevel.Level16: - struct: EnumItem - Enum.QualityLevel.Level17: - struct: EnumItem - Enum.QualityLevel.Level18: - struct: EnumItem - Enum.QualityLevel.Level19: - struct: EnumItem - Enum.QualityLevel.Level20: - struct: EnumItem - Enum.QualityLevel.Level21: - struct: EnumItem - Enum.R15CollisionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.R15CollisionType.InnerBox: - struct: EnumItem - Enum.R15CollisionType.OuterBox: - struct: EnumItem - Enum.RaycastFilterType.Blacklist: - struct: EnumItem - deprecated: - message: Enum.RaycastFilterType.Blacklist was replaced with Enum.RaycastFilterType.Exclude - replace: - - Enum.RaycastFilterType.Exclude - Enum.RaycastFilterType.Exclude: - struct: EnumItem - Enum.RaycastFilterType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RaycastFilterType.Include: - struct: EnumItem - Enum.RaycastFilterType.Whitelist: - struct: EnumItem - deprecated: - message: Enum.RaycastFilterType.Whitelist was replaced with Enum.RaycastFilterType.Include - replace: - - Enum.RaycastFilterType.Include - Enum.RejectCharacterDeletions.Default: - struct: EnumItem - Enum.RejectCharacterDeletions.Disabled: - struct: EnumItem - Enum.RejectCharacterDeletions.Enabled: - struct: EnumItem - Enum.RejectCharacterDeletions.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderFidelity.Automatic: - struct: EnumItem - Enum.RenderFidelity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderFidelity.Performance: - struct: EnumItem - Enum.RenderFidelity.Precise: - struct: EnumItem - Enum.RenderPriority.Camera: - struct: EnumItem - Enum.RenderPriority.Character: - struct: EnumItem - Enum.RenderPriority.First: - struct: EnumItem - Enum.RenderPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderPriority.Input: - struct: EnumItem - Enum.RenderPriority.Last: - struct: EnumItem - Enum.RenderingTestComparisonMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderingTestComparisonMethod.diff: - struct: EnumItem - Enum.RenderingTestComparisonMethod.psnr: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Default: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Disabled: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Enabled: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ResamplerMode.Default: - struct: EnumItem - Enum.ResamplerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ResamplerMode.Pixelated: - struct: EnumItem - Enum.ReservedHighlightId.Active: - struct: EnumItem - Enum.ReservedHighlightId.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReservedHighlightId.Hover: - struct: EnumItem - Enum.ReservedHighlightId.Selection: - struct: EnumItem - Enum.ReservedHighlightId.Standard: - struct: EnumItem - Enum.ReturnKeyType.Default: - struct: EnumItem - Enum.ReturnKeyType.Done: - struct: EnumItem - Enum.ReturnKeyType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReturnKeyType.Go: - struct: EnumItem - Enum.ReturnKeyType.Next: - struct: EnumItem - Enum.ReturnKeyType.Search: - struct: EnumItem - Enum.ReturnKeyType.Send: - struct: EnumItem - Enum.ReverbType.Alley: - struct: EnumItem - Enum.ReverbType.Arena: - struct: EnumItem - Enum.ReverbType.Auditorium: - struct: EnumItem - Enum.ReverbType.Bathroom: - struct: EnumItem - Enum.ReverbType.CarpettedHallway: - struct: EnumItem - Enum.ReverbType.Cave: - struct: EnumItem - Enum.ReverbType.City: - struct: EnumItem - Enum.ReverbType.ConcertHall: - struct: EnumItem - Enum.ReverbType.Forest: - struct: EnumItem - Enum.ReverbType.GenericReverb: - struct: EnumItem - Enum.ReverbType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReverbType.Hallway: - struct: EnumItem - Enum.ReverbType.Hangar: - struct: EnumItem - Enum.ReverbType.LivingRoom: - struct: EnumItem - Enum.ReverbType.Mountains: - struct: EnumItem - Enum.ReverbType.NoReverb: - struct: EnumItem - Enum.ReverbType.PaddedCell: - struct: EnumItem - Enum.ReverbType.ParkingLot: - struct: EnumItem - Enum.ReverbType.Plain: - struct: EnumItem - Enum.ReverbType.Quarry: - struct: EnumItem - Enum.ReverbType.Room: - struct: EnumItem - Enum.ReverbType.SewerPipe: - struct: EnumItem - Enum.ReverbType.StoneCorridor: - struct: EnumItem - Enum.ReverbType.StoneRoom: - struct: EnumItem - Enum.ReverbType.UnderWater: - struct: EnumItem - Enum.RibbonTool.ColorPicker: - struct: EnumItem - Enum.RibbonTool.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RibbonTool.Group: - struct: EnumItem - Enum.RibbonTool.MaterialPicker: - struct: EnumItem - Enum.RibbonTool.Move: - struct: EnumItem - Enum.RibbonTool.None: - struct: EnumItem - Enum.RibbonTool.Rotate: - struct: EnumItem - Enum.RibbonTool.Scale: - struct: EnumItem - Enum.RibbonTool.Select: - struct: EnumItem - Enum.RibbonTool.Transform: - struct: EnumItem - Enum.RibbonTool.Ungroup: - struct: EnumItem - Enum.RigScale.Default: - struct: EnumItem - Enum.RigScale.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RigScale.Rthro: - struct: EnumItem - Enum.RigScale.RthroNarrow: - struct: EnumItem - Enum.RigType.Custom: - struct: EnumItem - Enum.RigType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RigType.None: - struct: EnumItem - Enum.RigType.R15: - struct: EnumItem - Enum.RigType.Rthro: - struct: EnumItem - Enum.RigType.RthroNarrow: - struct: EnumItem - Enum.RollOffMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RollOffMode.Inverse: - struct: EnumItem - Enum.RollOffMode.InverseTapered: - struct: EnumItem - Enum.RollOffMode.Linear: - struct: EnumItem - Enum.RollOffMode.LinearSquare: - struct: EnumItem - Enum.RotationOrder.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RotationOrder.XYZ: - struct: EnumItem - Enum.RotationOrder.XZY: - struct: EnumItem - Enum.RotationOrder.YXZ: - struct: EnumItem - Enum.RotationOrder.YZX: - struct: EnumItem - Enum.RotationOrder.ZXY: - struct: EnumItem - Enum.RotationOrder.ZYX: - struct: EnumItem - Enum.RotationType.CameraRelative: - struct: EnumItem - Enum.RotationType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RotationType.MovementRelative: - struct: EnumItem - Enum.RtlTextSupport.Default: - struct: EnumItem - Enum.RtlTextSupport.Disabled: - struct: EnumItem - Enum.RtlTextSupport.Enabled: - struct: EnumItem - Enum.RtlTextSupport.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RunContext.Client: - struct: EnumItem - Enum.RunContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RunContext.Legacy: - struct: EnumItem - Enum.RunContext.Plugin: - struct: EnumItem - Enum.RunContext.Server: - struct: EnumItem - Enum.RuntimeUndoBehavior.Aggregate: - struct: EnumItem - Enum.RuntimeUndoBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RuntimeUndoBehavior.Hybrid: - struct: EnumItem - Enum.RuntimeUndoBehavior.Snapshot: - struct: EnumItem - Enum.SafeAreaCompatibility.FullscreenExtension: - struct: EnumItem - Enum.SafeAreaCompatibility.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SafeAreaCompatibility.None: - struct: EnumItem - Enum.SalesTypeFilter.All: - struct: EnumItem - Enum.SalesTypeFilter.Collectibles: - struct: EnumItem - Enum.SalesTypeFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SalesTypeFilter.Premium: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadDistanceScale: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadFieldOfViewDeg: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadThumbnailType: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadYRotDeg: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SaveAvatarThumbnailCustomizationFailure.Other: - struct: EnumItem - Enum.SaveFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SaveFilter.SaveAll: - struct: EnumItem - Enum.SaveFilter.SaveGame: - struct: EnumItem - Enum.SaveFilter.SaveWorld: - struct: EnumItem - Enum.SavedQualitySetting.Automatic: - struct: EnumItem - Enum.SavedQualitySetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SavedQualitySetting.QualityLevel1: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel10: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel2: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel3: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel4: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel5: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel6: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel7: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel8: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel9: - struct: EnumItem - Enum.ScaleType.Crop: - struct: EnumItem - Enum.ScaleType.Fit: - struct: EnumItem - Enum.ScaleType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScaleType.Slice: - struct: EnumItem - Enum.ScaleType.Stretch: - struct: EnumItem - Enum.ScaleType.Tile: - struct: EnumItem - Enum.ScopeCheckResult.BackendError: - struct: EnumItem - Enum.ScopeCheckResult.ConsentAccepted: - struct: EnumItem - Enum.ScopeCheckResult.ConsentDenied: - struct: EnumItem - Enum.ScopeCheckResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScopeCheckResult.InvalidArgument: - struct: EnumItem - Enum.ScopeCheckResult.InvalidScopes: - struct: EnumItem - Enum.ScopeCheckResult.NoUserInput: - struct: EnumItem - Enum.ScopeCheckResult.Timeout: - struct: EnumItem - Enum.ScopeCheckResult.UnexpectedError: - struct: EnumItem - Enum.ScreenInsets.CoreUISafeInsets: - struct: EnumItem - Enum.ScreenInsets.DeviceSafeInsets: - struct: EnumItem - Enum.ScreenInsets.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScreenInsets.None: - struct: EnumItem - Enum.ScreenOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScreenOrientation.LandscapeLeft: - struct: EnumItem - Enum.ScreenOrientation.LandscapeRight: - struct: EnumItem - Enum.ScreenOrientation.LandscapeSensor: - struct: EnumItem - Enum.ScreenOrientation.Portrait: - struct: EnumItem - Enum.ScreenOrientation.Sensor: - struct: EnumItem - Enum.ScrollBarInset.Always: - struct: EnumItem - Enum.ScrollBarInset.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScrollBarInset.None: - struct: EnumItem - Enum.ScrollBarInset.ScrollBar: - struct: EnumItem - Enum.ScrollingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScrollingDirection.X: - struct: EnumItem - Enum.ScrollingDirection.XY: - struct: EnumItem - Enum.ScrollingDirection.Y: - struct: EnumItem - Enum.SelectionBehavior.Escape: - struct: EnumItem - Enum.SelectionBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SelectionBehavior.Stop: - struct: EnumItem - Enum.SensorMode.Floor: - struct: EnumItem - Enum.SensorMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SensorMode.Ladder: - struct: EnumItem - Enum.SensorUpdateType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SensorUpdateType.Manual: - struct: EnumItem - Enum.SensorUpdateType.OnRead: - struct: EnumItem - Enum.ServerAudioBehavior.Enabled: - struct: EnumItem - Enum.ServerAudioBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ServerAudioBehavior.Muted: - struct: EnumItem - Enum.ServerAudioBehavior.OnlineGame: - struct: EnumItem - Enum.ServiceVisibility.Always: - struct: EnumItem - Enum.ServiceVisibility.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ServiceVisibility.Off: - struct: EnumItem - Enum.ServiceVisibility.WithChildren: - struct: EnumItem - Enum.Severity.Error: - struct: EnumItem - Enum.Severity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Severity.Warning: - struct: EnumItem - Enum.SignalBehavior.AncestryDeferred: - struct: EnumItem - Enum.SignalBehavior.Default: - struct: EnumItem - Enum.SignalBehavior.Deferred: - struct: EnumItem - Enum.SignalBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SignalBehavior.Immediate: - struct: EnumItem - Enum.SizeConstraint.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SizeConstraint.RelativeXX: - struct: EnumItem - Enum.SizeConstraint.RelativeXY: - struct: EnumItem - Enum.SizeConstraint.RelativeYY: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.Disabled: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SolverConvergenceVisualizationMode.PerEdge: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.PerIsland: - struct: EnumItem - Enum.SortDirection.Ascending: - struct: EnumItem - Enum.SortDirection.Descending: - struct: EnumItem - Enum.SortDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SortOrder.Custom: - struct: EnumItem - Enum.SortOrder.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SortOrder.LayoutOrder: - struct: EnumItem - Enum.SortOrder.Name: - struct: EnumItem - Enum.SpecialKey.ChatHotkey: - struct: EnumItem - Enum.SpecialKey.End: - struct: EnumItem - Enum.SpecialKey.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SpecialKey.Home: - struct: EnumItem - Enum.SpecialKey.Insert: - struct: EnumItem - Enum.SpecialKey.PageDown: - struct: EnumItem - Enum.SpecialKey.PageUp: - struct: EnumItem - Enum.StartCorner.BottomLeft: - struct: EnumItem - Enum.StartCorner.BottomRight: - struct: EnumItem - Enum.StartCorner.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StartCorner.TopLeft: - struct: EnumItem - Enum.StartCorner.TopRight: - struct: EnumItem - Enum.Status.Confusion: - struct: EnumItem - Enum.Status.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Status.Poison: - struct: EnumItem - Enum.StreamOutBehavior.Default: - struct: EnumItem - Enum.StreamOutBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StreamOutBehavior.LowMemory: - struct: EnumItem - Enum.StreamOutBehavior.Opportunistic: - struct: EnumItem - Enum.StreamingIntegrityMode.Default: - struct: EnumItem - Enum.StreamingIntegrityMode.Disabled: - struct: EnumItem - Enum.StreamingIntegrityMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StreamingIntegrityMode.MinimumRadiusPause: - struct: EnumItem - Enum.StreamingIntegrityMode.PauseOutsideLoadedArea: - struct: EnumItem - Enum.StreamingPauseMode.ClientPhysicsPause: - struct: EnumItem - Enum.StreamingPauseMode.Default: - struct: EnumItem - Enum.StreamingPauseMode.Disabled: - struct: EnumItem - Enum.StreamingPauseMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioCloseMode.CloseDoc: - struct: EnumItem - Enum.StudioCloseMode.CloseStudio: - struct: EnumItem - Enum.StudioCloseMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioCloseMode.None: - struct: EnumItem - Enum.StudioDataModelType.Edit: - struct: EnumItem - Enum.StudioDataModelType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioDataModelType.None: - struct: EnumItem - Enum.StudioDataModelType.PlayClient: - struct: EnumItem - Enum.StudioDataModelType.PlayServer: - struct: EnumItem - Enum.StudioDataModelType.Standalone: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.ActiveLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Background: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Bool: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Bracket: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Builtin: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Comment: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DebuggerCurrentLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DebuggerErrorLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Default: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DocViewCodeBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Error: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.FindSelectionBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Function: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.FunctionName: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioScriptEditorColorCategories.Keyword: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Local: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.LuauKeyword: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MatchingWordBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuBorder: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuPrimaryText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuScrollbarBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuScrollbarHandle: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSecondaryText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSelectedBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSelectedText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Method: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Nil: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Number: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Operator: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Property: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Ruler: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.SelectionBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.SelectionText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Self: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.String: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.TODO: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Warning: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Whitespace: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Custom: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Extra1: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Extra2: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioScriptEditorColorPresets.RobloxDefault: - struct: EnumItem - Enum.StudioStyleGuideColor.AttributeCog: - struct: EnumItem - Enum.StudioStyleGuideColor.Border: - struct: EnumItem - Enum.StudioStyleGuideColor.BrightText: - struct: EnumItem - Enum.StudioStyleGuideColor.Button: - struct: EnumItem - Enum.StudioStyleGuideColor.ButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.ButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.CategoryItem: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatIncomingBgColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatIncomingTextColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatModeratedMessageColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatOutgoingBgColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatOutgoingTextColor: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldIndicator: - struct: EnumItem - Enum.StudioStyleGuideColor.ColorPickerFrame: - struct: EnumItem - Enum.StudioStyleGuideColor.CurrentMarker: - struct: EnumItem - Enum.StudioStyleGuideColor.Dark: - struct: EnumItem - Enum.StudioStyleGuideColor.DebuggerCurrentLine: - struct: EnumItem - Enum.StudioStyleGuideColor.DebuggerErrorLine: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButton: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogMainButton: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogMainButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathText: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNum: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumAdditionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumDeletionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumNoChangeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumSeparatorBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextAddition: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextAdditionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextDeletion: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextDeletionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextHunkInfo: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextNoChange: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextNoChangeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextSeparatorBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DimmedText: - struct: EnumItem - Enum.StudioStyleGuideColor.DocViewCodeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DropShadow: - struct: EnumItem - Enum.StudioStyleGuideColor.Dropdown: - struct: EnumItem - Enum.StudioStyleGuideColor.EmulatorBar: - struct: EnumItem - Enum.StudioStyleGuideColor.EmulatorDropDown: - struct: EnumItem - Enum.StudioStyleGuideColor.ErrorText: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonAccent: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonBorderAlt: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonChecked: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonDefault: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonHover: - struct: EnumItem - Enum.StudioStyleGuideColor.GameSettingsTableItem: - struct: EnumItem - Enum.StudioStyleGuideColor.GameSettingsTooltip: - struct: EnumItem - Enum.StudioStyleGuideColor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioStyleGuideColor.HeaderSection: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoBarWarningBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoBarWarningText: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoText: - struct: EnumItem - Enum.StudioStyleGuideColor.InputFieldBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.InputFieldBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.Item: - struct: EnumItem - Enum.StudioStyleGuideColor.Light: - struct: EnumItem - Enum.StudioStyleGuideColor.LinkText: - struct: EnumItem - Enum.StudioStyleGuideColor.MainBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.MainButton: - struct: EnumItem - Enum.StudioStyleGuideColor.MainText: - struct: EnumItem - Enum.StudioStyleGuideColor.Mid: - struct: EnumItem - Enum.StudioStyleGuideColor.Midlight: - struct: EnumItem - Enum.StudioStyleGuideColor.Notification: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonButton: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonTab: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonTabTopBar: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBool: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBracket: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBuiltInFunction: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptComment: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptEditorCurrentLine: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptError: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFindSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFunction: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFunctionName: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptKeyword: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptLocal: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptLuauKeyword: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptMatchingWordSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptMethod: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptNil: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptNumber: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptOperator: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptProperty: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptRuler: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelectionText: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelf: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSideWidget: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptString: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptText: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptTodo: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptWarning: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptWhitespace: - struct: EnumItem - Enum.StudioStyleGuideColor.ScrollBar: - struct: EnumItem - Enum.StudioStyleGuideColor.ScrollBarBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.SensitiveText: - struct: EnumItem - Enum.StudioStyleGuideColor.Separator: - struct: EnumItem - Enum.StudioStyleGuideColor.Shadow: - struct: EnumItem - Enum.StudioStyleGuideColor.StatusBar: - struct: EnumItem - Enum.StudioStyleGuideColor.SubText: - struct: EnumItem - Enum.StudioStyleGuideColor.Tab: - struct: EnumItem - Enum.StudioStyleGuideColor.TabBar: - struct: EnumItem - Enum.StudioStyleGuideColor.TableItem: - struct: EnumItem - Enum.StudioStyleGuideColor.Titlebar: - struct: EnumItem - Enum.StudioStyleGuideColor.TitlebarText: - struct: EnumItem - Enum.StudioStyleGuideColor.Tooltip: - struct: EnumItem - Enum.StudioStyleGuideColor.ViewPortBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.WarningText: - struct: EnumItem - Enum.StudioStyleGuideModifier.Default: - struct: EnumItem - Enum.StudioStyleGuideModifier.Disabled: - struct: EnumItem - Enum.StudioStyleGuideModifier.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioStyleGuideModifier.Hover: - struct: EnumItem - Enum.StudioStyleGuideModifier.Pressed: - struct: EnumItem - Enum.StudioStyleGuideModifier.Selected: - struct: EnumItem - Enum.Style.Alternating Supports: - struct: EnumItem - deprecated: - message: Enum.Style.Alternating Supports was replaced with Enum.Style.AlternatingSupports - replace: - - Enum.Style.AlternatingSupports - Enum.Style.AlternatingSupports: - struct: EnumItem - Enum.Style.Bridge Style Supports: - struct: EnumItem - deprecated: - message: Enum.Style.Bridge Style Supports was replaced with Enum.Style.BridgeStyleSupports - replace: - - Enum.Style.BridgeStyleSupports - Enum.Style.BridgeStyleSupports: - struct: EnumItem - Enum.Style.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Style.No Supports: - struct: EnumItem - deprecated: - message: Enum.Style.No Supports was replaced with Enum.Style.NoSupports - replace: - - Enum.Style.NoSupports - Enum.Style.NoSupports: - struct: EnumItem - Enum.SurfaceConstraint.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceConstraint.Hinge: - struct: EnumItem - Enum.SurfaceConstraint.Motor: - struct: EnumItem - Enum.SurfaceConstraint.None: - struct: EnumItem - Enum.SurfaceConstraint.SteppingMotor: - struct: EnumItem - Enum.SurfaceGuiShape.CurvedHorizontally: - struct: EnumItem - Enum.SurfaceGuiShape.Flat: - struct: EnumItem - Enum.SurfaceGuiShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceGuiSizingMode.FixedSize: - struct: EnumItem - Enum.SurfaceGuiSizingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceGuiSizingMode.PixelsPerStud: - struct: EnumItem - Enum.SurfaceType.Bumps: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Bumps was replaced with Enum.SurfaceType.Glue - replace: - - Enum.SurfaceType.Glue - Enum.SurfaceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceType.Glue: - struct: EnumItem - Enum.SurfaceType.Hinge: - struct: EnumItem - Enum.SurfaceType.Inlet: - struct: EnumItem - Enum.SurfaceType.Motor: - struct: EnumItem - Enum.SurfaceType.Smooth: - struct: EnumItem - Enum.SurfaceType.SmoothNoOutlines: - struct: EnumItem - Enum.SurfaceType.Spawn: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Spawn was replaced with Enum.SurfaceType.Smooth - replace: - - Enum.SurfaceType.Smooth - Enum.SurfaceType.SteppingMotor: - struct: EnumItem - Enum.SurfaceType.Studs: - struct: EnumItem - Enum.SurfaceType.Universal: - struct: EnumItem - Enum.SurfaceType.Unjoinable: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Unjoinable was replaced with Enum.SurfaceType.Smooth - replace: - - Enum.SurfaceType.Smooth - Enum.SurfaceType.Weld: - struct: EnumItem - Enum.SwipeDirection.Down: - struct: EnumItem - Enum.SwipeDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SwipeDirection.Left: - struct: EnumItem - Enum.SwipeDirection.None: - struct: EnumItem - Enum.SwipeDirection.Right: - struct: EnumItem - Enum.SwipeDirection.Up: - struct: EnumItem - Enum.TableMajorAxis.ColumnMajor: - struct: EnumItem - Enum.TableMajorAxis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TableMajorAxis.RowMajor: - struct: EnumItem - Enum.Technology.Compatibility: - struct: EnumItem - Enum.Technology.Future: - struct: EnumItem - Enum.Technology.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Technology.Legacy: - struct: EnumItem - Enum.Technology.ShadowMap: - struct: EnumItem - Enum.Technology.Voxel: - struct: EnumItem - Enum.TeleportMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportMethod.TeleportPartyAsync: - struct: EnumItem - Enum.TeleportMethod.TeleportToPlaceInstance: - struct: EnumItem - Enum.TeleportMethod.TeleportToPrivateServer: - struct: EnumItem - Enum.TeleportMethod.TeleportToSpawnByName: - struct: EnumItem - Enum.TeleportMethod.TeleportUnknown: - struct: EnumItem - Enum.TeleportResult.Failure: - struct: EnumItem - Enum.TeleportResult.Flooded: - struct: EnumItem - Enum.TeleportResult.GameEnded: - struct: EnumItem - Enum.TeleportResult.GameFull: - struct: EnumItem - Enum.TeleportResult.GameNotFound: - struct: EnumItem - Enum.TeleportResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportResult.IsTeleporting: - struct: EnumItem - Enum.TeleportResult.Success: - struct: EnumItem - Enum.TeleportResult.Unauthorized: - struct: EnumItem - Enum.TeleportState.Failed: - struct: EnumItem - Enum.TeleportState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportState.InProgress: - struct: EnumItem - Enum.TeleportState.RequestedFromServer: - struct: EnumItem - Enum.TeleportState.Started: - struct: EnumItem - Enum.TeleportState.WaitingForServer: - struct: EnumItem - Enum.TeleportType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportType.ToInstance: - struct: EnumItem - Enum.TeleportType.ToPlace: - struct: EnumItem - Enum.TeleportType.ToReservedServer: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Convert: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditAddTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditReplaceTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditSeaLevelTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Generate: - struct: EnumItem - Enum.TerrainAcquisitionMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TerrainAcquisitionMethod.Import: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Legacy: - struct: EnumItem - Enum.TerrainAcquisitionMethod.None: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Other: - struct: EnumItem - Enum.TerrainAcquisitionMethod.RegionFillTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.RegionPasteTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Template: - struct: EnumItem - Enum.TerrainFace.Bottom: - struct: EnumItem - Enum.TerrainFace.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TerrainFace.Side: - struct: EnumItem - Enum.TerrainFace.Top: - struct: EnumItem - Enum.TextChatMessageStatus.Floodchecked: - struct: EnumItem - Enum.TextChatMessageStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextChatMessageStatus.InvalidPrivacySettings: - struct: EnumItem - Enum.TextChatMessageStatus.InvalidTextChannelPermissions: - struct: EnumItem - Enum.TextChatMessageStatus.MessageTooLong: - struct: EnumItem - Enum.TextChatMessageStatus.Sending: - struct: EnumItem - Enum.TextChatMessageStatus.Success: - struct: EnumItem - Enum.TextChatMessageStatus.TextFilterFailed: - struct: EnumItem - Enum.TextChatMessageStatus.Unknown: - struct: EnumItem - Enum.TextFilterContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextFilterContext.PrivateChat: - struct: EnumItem - Enum.TextFilterContext.PublicChat: - struct: EnumItem - Enum.TextInputType.Default: - struct: EnumItem - Enum.TextInputType.Email: - struct: EnumItem - Enum.TextInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextInputType.NoSuggestions: - struct: EnumItem - Enum.TextInputType.Number: - struct: EnumItem - Enum.TextInputType.OneTimePassword: - struct: EnumItem - Enum.TextInputType.Password: - struct: EnumItem - Enum.TextInputType.PasswordShown: - struct: EnumItem - Enum.TextInputType.Phone: - struct: EnumItem - Enum.TextInputType.Username: - struct: EnumItem - Enum.TextTruncate.AtEnd: - struct: EnumItem - Enum.TextTruncate.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextTruncate.None: - struct: EnumItem - Enum.TextXAlignment.Center: - struct: EnumItem - Enum.TextXAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextXAlignment.Left: - struct: EnumItem - Enum.TextXAlignment.Right: - struct: EnumItem - Enum.TextYAlignment.Bottom: - struct: EnumItem - Enum.TextYAlignment.Center: - struct: EnumItem - Enum.TextYAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextYAlignment.Top: - struct: EnumItem - Enum.TextureMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextureMode.Static: - struct: EnumItem - Enum.TextureMode.Stretch: - struct: EnumItem - Enum.TextureMode.Wrap: - struct: EnumItem - Enum.TextureQueryType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextureQueryType.Humanoid: - struct: EnumItem - Enum.TextureQueryType.HumanoidOrphaned: - struct: EnumItem - Enum.TextureQueryType.NonHumanoid: - struct: EnumItem - Enum.TextureQueryType.NonHumanoidOrphaned: - struct: EnumItem - Enum.ThreadPoolConfig.Auto: - struct: EnumItem - Enum.ThreadPoolConfig.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThreadPoolConfig.PartialThread: - struct: EnumItem - deprecated: - message: Enum.ThreadPoolConfig.PartialThread was replaced with Enum.ThreadPoolConfig.Auto - replace: - - Enum.ThreadPoolConfig.Auto - Enum.ThreadPoolConfig.PerCore1: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore2: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore3: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore4: - struct: EnumItem - Enum.ThreadPoolConfig.Threads1: - struct: EnumItem - Enum.ThreadPoolConfig.Threads16: - struct: EnumItem - Enum.ThreadPoolConfig.Threads2: - struct: EnumItem - Enum.ThreadPoolConfig.Threads3: - struct: EnumItem - Enum.ThreadPoolConfig.Threads4: - struct: EnumItem - Enum.ThreadPoolConfig.Threads8: - struct: EnumItem - Enum.ThrottlingPriority.Default: - struct: EnumItem - Enum.ThrottlingPriority.ElevatedOnServer: - struct: EnumItem - Enum.ThrottlingPriority.Extreme: - struct: EnumItem - Enum.ThrottlingPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailSize.Size100x100: - struct: EnumItem - Enum.ThumbnailSize.Size150x150: - struct: EnumItem - Enum.ThumbnailSize.Size180x180: - struct: EnumItem - Enum.ThumbnailSize.Size352x352: - struct: EnumItem - Enum.ThumbnailSize.Size420x420: - struct: EnumItem - Enum.ThumbnailSize.Size48x48: - struct: EnumItem - Enum.ThumbnailSize.Size60x60: - struct: EnumItem - Enum.ThumbnailType.AvatarBust: - struct: EnumItem - Enum.ThumbnailType.AvatarThumbnail: - struct: EnumItem - Enum.ThumbnailType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailType.HeadShot: - struct: EnumItem - Enum.TickCountSampleMethod.Benchmark: - struct: EnumItem - Enum.TickCountSampleMethod.Fast: - struct: EnumItem - Enum.TickCountSampleMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TickCountSampleMethod.Precise: - struct: EnumItem - Enum.TopBottom.Bottom: - struct: EnumItem - Enum.TopBottom.Center: - struct: EnumItem - Enum.TopBottom.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TopBottom.Top: - struct: EnumItem - Enum.TouchCameraMovementMode.Classic: - struct: EnumItem - Enum.TouchCameraMovementMode.Default: - struct: EnumItem - Enum.TouchCameraMovementMode.Follow: - struct: EnumItem - Enum.TouchCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TouchCameraMovementMode.Orbital: - struct: EnumItem - Enum.TouchMovementMode.ClickToMove: - struct: EnumItem - Enum.TouchMovementMode.DPad: - struct: EnumItem - Enum.TouchMovementMode.Default: - struct: EnumItem - Enum.TouchMovementMode.DynamicThumbstick: - struct: EnumItem - Enum.TouchMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TouchMovementMode.Thumbpad: - struct: EnumItem - Enum.TouchMovementMode.Thumbstick: - struct: EnumItem - Enum.TrackerError.AudioError: - struct: EnumItem - Enum.TrackerError.AudioNoPermission: - struct: EnumItem - Enum.TrackerError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerError.InitFailed: - struct: EnumItem - Enum.TrackerError.NoAudio: - struct: EnumItem - Enum.TrackerError.NoService: - struct: EnumItem - Enum.TrackerError.NoVideo: - struct: EnumItem - Enum.TrackerError.Ok: - struct: EnumItem - Enum.TrackerError.VideoError: - struct: EnumItem - Enum.TrackerError.VideoNoPermission: - struct: EnumItem - Enum.TrackerError.VideoUnsupported: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.Auto: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ExtrapolateFacsAndPose: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ExtrapolateFacsOnly: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ForceDisabled: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerLodFlagMode.Auto: - struct: EnumItem - Enum.TrackerLodFlagMode.ForceFalse: - struct: EnumItem - Enum.TrackerLodFlagMode.ForceTrue: - struct: EnumItem - Enum.TrackerLodFlagMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerLodValueMode.Auto: - struct: EnumItem - Enum.TrackerLodValueMode.Force0: - struct: EnumItem - Enum.TrackerLodValueMode.Force1: - struct: EnumItem - Enum.TrackerLodValueMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerMode.Audio: - struct: EnumItem - Enum.TrackerMode.AudioVideo: - struct: EnumItem - Enum.TrackerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerMode.None: - struct: EnumItem - Enum.TrackerMode.Video: - struct: EnumItem - Enum.TrackerPromptEvent.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerPromptEvent.LODCameraRecommendDisable: - struct: EnumItem - Enum.TriStateBoolean.False: - struct: EnumItem - Enum.TriStateBoolean.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TriStateBoolean.True: - struct: EnumItem - Enum.TriStateBoolean.Unknown: - struct: EnumItem - Enum.TweenStatus.Canceled: - struct: EnumItem - Enum.TweenStatus.Completed: - struct: EnumItem - Enum.TweenStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UITheme.Dark: - struct: EnumItem - Enum.UITheme.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UITheme.Light: - struct: EnumItem - Enum.UiMessageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UiMessageType.UiMessageError: - struct: EnumItem - Enum.UiMessageType.UiMessageInfo: - struct: EnumItem - Enum.UsageContext.Default: - struct: EnumItem - Enum.UsageContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UsageContext.Preview: - struct: EnumItem - Enum.UserCFrame.Floor: - struct: EnumItem - Enum.UserCFrame.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserCFrame.Head: - struct: EnumItem - Enum.UserCFrame.LeftHand: - struct: EnumItem - Enum.UserCFrame.RightHand: - struct: EnumItem - Enum.UserInputState.Begin: - struct: EnumItem - Enum.UserInputState.Cancel: - struct: EnumItem - Enum.UserInputState.Change: - struct: EnumItem - Enum.UserInputState.End: - struct: EnumItem - Enum.UserInputState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserInputState.None: - struct: EnumItem - Enum.UserInputType.Accelerometer: - struct: EnumItem - Enum.UserInputType.Focus: - struct: EnumItem - Enum.UserInputType.Gamepad1: - struct: EnumItem - Enum.UserInputType.Gamepad2: - struct: EnumItem - Enum.UserInputType.Gamepad3: - struct: EnumItem - Enum.UserInputType.Gamepad4: - struct: EnumItem - Enum.UserInputType.Gamepad5: - struct: EnumItem - Enum.UserInputType.Gamepad6: - struct: EnumItem - Enum.UserInputType.Gamepad7: - struct: EnumItem - Enum.UserInputType.Gamepad8: - struct: EnumItem - Enum.UserInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserInputType.Gyro: - struct: EnumItem - Enum.UserInputType.InputMethod: - struct: EnumItem - Enum.UserInputType.Keyboard: - struct: EnumItem - Enum.UserInputType.MouseButton1: - struct: EnumItem - Enum.UserInputType.MouseButton2: - struct: EnumItem - Enum.UserInputType.MouseButton3: - struct: EnumItem - Enum.UserInputType.MouseMovement: - struct: EnumItem - Enum.UserInputType.MouseWheel: - struct: EnumItem - Enum.UserInputType.None: - struct: EnumItem - Enum.UserInputType.TextInput: - struct: EnumItem - Enum.UserInputType.Touch: - struct: EnumItem - Enum.VRPlayMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRPlayMode.Seated: - struct: EnumItem - Enum.VRPlayMode.Standing: - struct: EnumItem - Enum.VRSafetyBubbleMode.Anyone: - struct: EnumItem - Enum.VRSafetyBubbleMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRSafetyBubbleMode.NoOne: - struct: EnumItem - Enum.VRSafetyBubbleMode.OnlyFriends: - struct: EnumItem - Enum.VRScaling.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRScaling.Off: - struct: EnumItem - Enum.VRScaling.World: - struct: EnumItem - Enum.VRSessionState.Focused: - struct: EnumItem - Enum.VRSessionState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRSessionState.Idle: - struct: EnumItem - Enum.VRSessionState.Undefined: - struct: EnumItem - Enum.VRSessionState.Visible: - struct: EnumItem - Enum.VRTouchpad.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRTouchpad.Left: - struct: EnumItem - Enum.VRTouchpad.Right: - struct: EnumItem - Enum.VRTouchpadMode.ABXY: - struct: EnumItem - Enum.VRTouchpadMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRTouchpadMode.Touch: - struct: EnumItem - Enum.VRTouchpadMode.VirtualThumbstick: - struct: EnumItem - Enum.VelocityConstraintMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VelocityConstraintMode.Line: - struct: EnumItem - Enum.VelocityConstraintMode.Plane: - struct: EnumItem - Enum.VelocityConstraintMode.Vector: - struct: EnumItem - Enum.VerticalAlignment.Bottom: - struct: EnumItem - Enum.VerticalAlignment.Center: - struct: EnumItem - Enum.VerticalAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VerticalAlignment.Top: - struct: EnumItem - Enum.VerticalScrollBarPosition.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VerticalScrollBarPosition.Left: - struct: EnumItem - Enum.VerticalScrollBarPosition.Right: - struct: EnumItem - Enum.VibrationMotor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VibrationMotor.Large: - struct: EnumItem - Enum.VibrationMotor.LeftHand: - struct: EnumItem - Enum.VibrationMotor.LeftTrigger: - struct: EnumItem - Enum.VibrationMotor.RightHand: - struct: EnumItem - Enum.VibrationMotor.RightTrigger: - struct: EnumItem - Enum.VibrationMotor.Small: - struct: EnumItem - Enum.VirtualCursorMode.Default: - struct: EnumItem - Enum.VirtualCursorMode.Disabled: - struct: EnumItem - Enum.VirtualCursorMode.Enabled: - struct: EnumItem - Enum.VirtualCursorMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VirtualInputMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VirtualInputMode.None: - struct: EnumItem - Enum.VirtualInputMode.Playing: - struct: EnumItem - Enum.VirtualInputMode.Recording: - struct: EnumItem - Enum.VoiceChatState.Ended: - struct: EnumItem - Enum.VoiceChatState.Failed: - struct: EnumItem - Enum.VoiceChatState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VoiceChatState.Idle: - struct: EnumItem - Enum.VoiceChatState.Joined: - struct: EnumItem - Enum.VoiceChatState.Joining: - struct: EnumItem - Enum.VoiceChatState.JoiningRetry: - struct: EnumItem - Enum.VoiceChatState.Leaving: - struct: EnumItem - Enum.VolumetricAudio.Automatic: - struct: EnumItem - Enum.VolumetricAudio.Disabled: - struct: EnumItem - Enum.VolumetricAudio.Enabled: - struct: EnumItem - Enum.VolumetricAudio.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterDirection.NegX: - struct: EnumItem - Enum.WaterDirection.NegY: - struct: EnumItem - Enum.WaterDirection.NegZ: - struct: EnumItem - Enum.WaterDirection.X: - struct: EnumItem - Enum.WaterDirection.Y: - struct: EnumItem - Enum.WaterDirection.Z: - struct: EnumItem - Enum.WaterForce.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterForce.Max: - struct: EnumItem - Enum.WaterForce.Medium: - struct: EnumItem - Enum.WaterForce.None: - struct: EnumItem - Enum.WaterForce.Small: - struct: EnumItem - Enum.WaterForce.Strong: - struct: EnumItem - Enum.WrapLayerAutoSkin.Disabled: - struct: EnumItem - Enum.WrapLayerAutoSkin.EnabledOverride: - struct: EnumItem - Enum.WrapLayerAutoSkin.EnabledPreserve: - struct: EnumItem - Enum.WrapLayerAutoSkin.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapLayerDebugMode.BoundCage: - struct: EnumItem - Enum.WrapLayerDebugMode.BoundCageAndLinks: - struct: EnumItem - Enum.WrapLayerDebugMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapLayerDebugMode.HSRInner: - struct: EnumItem - Enum.WrapLayerDebugMode.HSRInnerReverse: - struct: EnumItem - Enum.WrapLayerDebugMode.HSROuter: - struct: EnumItem - Enum.WrapLayerDebugMode.HSROuterDetail: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCage: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCageFittedToBase: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCageFittedToPrev: - struct: EnumItem - Enum.WrapLayerDebugMode.None: - struct: EnumItem - Enum.WrapLayerDebugMode.OuterCage: - struct: EnumItem - Enum.WrapLayerDebugMode.Rbf: - struct: EnumItem - Enum.WrapLayerDebugMode.Reference: - struct: EnumItem - Enum.WrapLayerDebugMode.ReferenceMeshAfterMorph: - struct: EnumItem - Enum.WrapTargetDebugMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapTargetDebugMode.None: - struct: EnumItem - Enum.WrapTargetDebugMode.OuterCageDetail: - struct: EnumItem - Enum.WrapTargetDebugMode.Rbf: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageCompressed: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageInterface: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageOriginal: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerCageCompressed: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerCageOriginal: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerInterface: - struct: EnumItem - Enum.ZIndexBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ZIndexBehavior.Global: - struct: EnumItem - Enum.ZIndexBehavior.Sibling: - struct: EnumItem - Faces.new: - args: - - type: '...' - must_use: true - FloatCurveKey.new: - args: - - type: number - - type: number - - type: - display: KeyInterpolationMode - must_use: true - Font.fromEnum: - args: - - type: - display: Font - must_use: true - Font.fromId: - args: - - type: number - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Font.fromName: - args: - - type: string - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Font.new: - args: - - type: string - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Instance.new: - args: - - type: - - Accoutrement - - Accessory - - Hat - - AdPortal - - AdvancedDragger - - AnalyticsService - - Animation - - CurveAnimation - - KeyframeSequence - - AnimationController - - AnimationRigData - - Animator - - Atmosphere - - Attachment - - Bone - - AudioSearchParams - - Backpack - - WrapLayer - - WrapTarget - - Beam - - BindableEvent - - BindableFunction - - BodyAngularVelocity - - BodyForce - - BodyGyro - - BodyPosition - - BodyThrust - - BodyVelocity - - RocketPropulsion - - Breakpoint - - Camera - - BodyColors - - CharacterMesh - - Pants - - Shirt - - ShirtGraphic - - Skin - - ClickDetector - - Clouds - - Configuration - - AlignOrientation - - AlignPosition - - AngularVelocity - - AnimationConstraint - - BallSocketConstraint - - HingeConstraint - - LineForce - - LinearVelocity - - PlaneConstraint - - Plane - - RigidConstraint - - RodConstraint - - RopeConstraint - - CylindricalConstraint - - PrismaticConstraint - - SpringConstraint - - Torque - - TorsionSpringConstraint - - UniversalConstraint - - VectorForce - - HumanoidController - - SkateboardController - - VehicleController - - AirController - - ClimbController - - GroundController - - SwimController - - ControllerManager - - CustomEvent - - CustomEventReceiver - - BlockMesh - - CylinderMesh - - FileMesh - - SpecialMesh - - DataStoreIncrementOptions - - DataStoreOptions - - DataStoreSetOptions - - DebuggerWatch - - Dialog - - DialogChoice - - Dragger - - EulerRotationCurve - - ExperienceInviteOptions - - Explosion - - FaceControls - - Decal - - Texture - - Hole - - MotorFeature - - Fire - - FloatCurve - - FlyweightService - - CSGDictionaryService - - NonReplicatedCSGDictionaryService - - Folder - - ForceField - - FunctionalTest - - GetTextBoundsParams - - CanvasGroup - - Frame - - ImageButton - - TextButton - - ImageLabel - - TextLabel - - ScrollingFrame - - TextBox - - VideoFrame - - ViewportFrame - - BillboardGui - - ScreenGui - - GuiMain - - AdGui - - SurfaceGui - - FloorWire - - SelectionBox - - BoxHandleAdornment - - ConeHandleAdornment - - CylinderHandleAdornment - - ImageHandleAdornment - - LineHandleAdornment - - SphereHandleAdornment - - WireframeHandleAdornment - - ParabolaAdornment - - SelectionSphere - - ArcHandles - - Handles - - SurfaceSelection - - SelectionPartLasso - - SelectionPointLasso - - HeightmapImporterService - - HiddenSurfaceRemovalAsset - - Highlight - - Humanoid - - HumanoidDescription - - IKControl - - RotateP - - RotateV - - Glue - - ManualGlue - - ManualWeld - - Motor - - Motor6D - - Rotate - - Snap - - VelocityMotor - - Weld - - Keyframe - - KeyframeMarker - - PointLight - - SpotLight - - SurfaceLight - - LocalizationTable - - Script - - LocalScript - - ModuleScript - - MarkerCurve - - MaterialVariant - - MemoryStoreService - - Message - - Hint - - NoCollisionConstraint - - CornerWedgePart - - Part - - FlagStand - - Seat - - SkateboardPlatform - - SpawnLocation - - WedgePart - - MeshPart - - PartOperation - - IntersectOperation - - NegateOperation - - UnionOperation - - TrussPart - - VehicleSeat - - Model - - Actor - - HopperBin - - Tool - - Flag - - WorldModel - - PartOperationAsset - - ParticleEmitter - - PathfindingLink - - PathfindingModifier - - Player - - PluginAction - - NumberPose - - Pose - - BloomEffect - - BlurEffect - - ColorCorrectionEffect - - DepthOfFieldEffect - - SunRaysEffect - - ProximityPrompt - - ProximityPromptService - - ReflectionMetadata - - ReflectionMetadataCallbacks - - ReflectionMetadataClasses - - ReflectionMetadataEnums - - ReflectionMetadataEvents - - ReflectionMetadataFunctions - - ReflectionMetadataClass - - ReflectionMetadataEnum - - ReflectionMetadataEnumItem - - ReflectionMetadataMember - - ReflectionMetadataProperties - - ReflectionMetadataYieldFunctions - - RemoteEvent - - RemoteFunction - - RenderingTest - - RotationCurve - - BuoyancySensor - - ControllerPartSensor - - Sky - - Smoke - - Sound - - ChorusSoundEffect - - CompressorSoundEffect - - DistortionSoundEffect - - EchoSoundEffect - - EqualizerSoundEffect - - FlangeSoundEffect - - PitchShiftSoundEffect - - ReverbSoundEffect - - TremoloSoundEffect - - SoundGroup - - Sparkles - - StandalonePluginScripts - - StarterGear - - SurfaceAppearance - - Team - - TeleportOptions - - TerrainDetail - - TerrainRegion - - TestService - - TextChannel - - TextChatCommand - - TextChatMessageProperties - - TrackerStreamAnimation - - Trail - - Tween - - UIAspectRatioConstraint - - UISizeConstraint - - UITextSizeConstraint - - UICorner - - UIGradient - - UIGridLayout - - UIListLayout - - UIPageLayout - - UITableLayout - - UIPadding - - UIScale - - UIStroke - - BinaryStringValue - - BoolValue - - BrickColorValue - - CFrameValue - - Color3Value - - DoubleConstrainedValue - - IntConstrainedValue - - IntValue - - NumberValue - - ObjectValue - - RayValue - - StringValue - - Vector3Value - - Vector3Curve - - VirtualInputManager - - WeldConstraint - must_use: true - NumberRange.new: - args: - - type: number - - required: false - type: number - must_use: true - NumberSequence.new: - args: - - type: any - - required: false - type: number - must_use: true - NumberSequenceKeypoint.new: - args: - - type: number - - type: number - - required: false - type: number - must_use: true - OverlapParams.new: - args: [] - must_use: true - PathWaypoint.new: - args: - - required: false - type: - display: Vector3 - - required: false - type: - display: PathWaypointAction - must_use: true - PhysicalProperties.new: - args: - - type: any - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Random.new: - args: - - required: false - type: number - must_use: true - Ray.new: - args: - - type: - display: Vector3 - - type: - display: Vector3 - must_use: true - RaycastParams.new: - args: [] - must_use: true - Rect.new: - args: - - type: any - - type: any - - required: false - type: number - - required: false - type: number - must_use: true - Region3.new: - args: - - type: - display: Vector3 - - type: - display: Vector3 - must_use: true - Region3int16.new: - args: - - required: false - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - RotationCurveKey.new: - args: - - type: number - - type: - display: CFrame - - type: - display: KeyInterpolationMode - must_use: true - TweenInfo.new: - args: - - required: false - type: number - - required: false - type: - display: EasingStyle - - required: false - type: - display: EasingDirection - - required: false - type: number - - required: false - type: bool - - required: false - type: number - must_use: true - UDim.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - UDim2.fromOffset: - args: - - required: use UDim2.new() if you want an empty UDim2 - type: number - - required: false - type: number - must_use: true - UDim2.fromScale: - args: - - required: use UDim2.new() if you want an empty UDim2 - type: number - - required: false - type: number - must_use: true - UDim2.new: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: number - - required: false - type: number - must_use: true - UserSettings: - args: [] - must_use: true - Vector2.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - Vector2.one: - property: read-only - Vector2.xAxis: - property: read-only - Vector2.yAxis: - property: read-only - Vector2.zero: - property: read-only - Vector2int16.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - Vector3.FromAxis: - args: - - type: - display: Axis - must_use: true - Vector3.FromNormalId: - args: - - type: - display: NormalId - must_use: true - Vector3.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Vector3.one: - property: read-only - Vector3.xAxis: - property: read-only - Vector3.yAxis: - property: read-only - Vector3.zAxis: - property: read-only - Vector3.zero: - property: read-only - Vector3int16.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - _G: - property: new-fields - _VERSION: - property: read-only - arg: - property: new-fields - assert: - args: - - type: any - - required: A failed assertion without a message is unhelpful to users. - type: string - bit32.arshift: - args: - - type: number - - type: number - must_use: true - bit32.band: - args: - - type: '...' - must_use: true - bit32.bnot: - args: - - type: number - must_use: true - bit32.bor: - args: - - type: '...' - must_use: true - bit32.btest: - args: - - type: '...' - must_use: true - bit32.bxor: - args: - - type: '...' - must_use: true - bit32.countlz: - args: - - type: number - must_use: true - bit32.countrz: - args: - - type: number - must_use: true - bit32.extract: - args: - - type: number - - type: number - - required: false - type: number - must_use: true - bit32.lrotate: - args: - - type: number - - type: number - must_use: true - bit32.lshift: - args: - - type: number - - type: number - must_use: true - bit32.replace: - args: - - type: number - - type: number - - type: number - - required: false - type: number - must_use: true - bit32.rrotate: - args: - - type: number - - type: number - must_use: true - bit32.rshift: - args: - - type: number - - type: number - must_use: true - collectgarbage: - args: - - type: - - count - must_use: true - coroutine.close: - args: - - type: - display: thread - coroutine.create: - args: - - type: function - must_use: true - coroutine.isyieldable: - args: [] - coroutine.resume: - args: - - type: - display: coroutine - - required: false - type: '...' - coroutine.running: - args: [] - must_use: true - coroutine.status: - args: - - type: - display: coroutine - must_use: true - coroutine.wrap: - args: - - type: function - coroutine.yield: - args: - - required: false - type: '...' - debug.info: - args: - - type: any - - type: any - - required: false - type: string - must_use: true - debug.profilebegin: - args: - - type: string - debug.profileend: - args: [] - debug.resetmemorycategory: - args: [] - debug.setmemorycategory: - args: - - type: string - debug.traceback: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - must_use: true - delay: - args: - - type: number - - type: function - elapsedTime: - args: [] - error: - args: - - required: Erroring without an explanation is unhelpful to users. - type: any - - required: false - type: number - game: - struct: DataModel - gcinfo: - args: [] - must_use: true - getfenv: - args: - - required: false - type: any - must_use: true - getmetatable: - args: - - type: table - must_use: true - io.close: - args: - - required: false - type: - display: file - io.flush: - args: [] - io.input: - args: - - required: false - type: - display: file - io.lines: - args: - - type: string - io.open: - args: - - type: string - - required: false - type: - - r - - rb - - w - - wb - - a - - ab - - r+ - - rb+ - - w+ - - wb+ - - a+ - - ab+ - io.output: - args: - - required: false - type: - display: file - io.popen: - args: - - type: string - - required: false - type: - - r - - rb - - w - - wb - - a - - ab - - r+ - - rb+ - - w+ - - wb+ - - a+ - - ab+ - io.read: - args: - - type: '...' - io.stderr: - property: read-only - io.stdin: - property: read-only - io.stdout: - property: read-only - io.tmpfile: - args: [] - io.type: - args: - - type: - display: potentially file-like object - io.write: - args: - - type: '...' - ipairs: - args: - - type: table - must_use: true - loadstring: - args: - - type: string - - required: false - type: string - math.abs: - args: - - type: number - must_use: true - math.acos: - args: - - type: number - must_use: true - math.asin: - args: - - type: number - must_use: true - math.atan: - args: - - type: number - must_use: true - math.atan2: - args: - - type: number - - type: number - must_use: true - math.ceil: - args: - - type: number - must_use: true - math.clamp: - args: - - type: number - - type: number - - type: number - must_use: true - math.cos: - args: - - type: number - must_use: true - math.cosh: - args: - - type: number - must_use: true - math.deg: - args: - - type: number - must_use: true - math.exp: - args: - - type: number - must_use: true - math.floor: - args: - - type: number - must_use: true - math.fmod: - args: - - type: number - - type: number - must_use: true - math.frexp: - args: - - type: number - must_use: true - math.huge: - property: read-only - math.ldexp: - args: - - type: number - - type: number - must_use: true - math.log: - args: - - type: number - - required: false - type: number - must_use: true - math.log10: - args: - - type: number - must_use: true - math.max: - args: - - type: number - - required: use of max only makes sense with more than 1 parameter - type: '...' - must_use: true - math.min: - args: - - type: number - - required: use of min only makes sense with more than 1 parameter - type: '...' - must_use: true - math.modf: - args: - - type: number - must_use: true - math.noise: - args: - - type: number - - required: false - type: number - - required: false - type: number - must_use: true - math.pi: - property: read-only - math.pow: - args: - - type: number - - type: number - must_use: true - math.rad: - args: - - type: number - must_use: true - math.random: - args: - - required: false - type: number - - required: false - type: number - must_use: true - math.randomseed: - args: - - type: number - math.round: - args: - - type: number - must_use: true - math.sign: - args: - - type: number - must_use: true - math.sin: - args: - - type: number - must_use: true - math.sinh: - args: - - type: number - must_use: true - math.sqrt: - args: - - type: number - must_use: true - math.tan: - args: - - type: number - must_use: true - math.tanh: - args: - - type: number - must_use: true - newproxy: - args: - - required: false - type: bool - must_use: true - next: - args: - - type: table - - required: false - type: number - os.clock: - args: [] - must_use: true - os.date: - args: - - required: false - type: string - - required: false - type: number - must_use: true - os.difftime: - args: - - type: number - - type: number - must_use: true - os.time: - args: - - required: false - type: table - must_use: true - package.cpath: - property: full-write - package.loaded: - property: new-fields - package.loaders: - property: new-fields - package.loadlib: - args: - - type: string - - type: string - package.path: - property: full-write - package.preload: - property: new-fields - package.seeall: - args: - - type: table - pairs: - args: - - type: table - must_use: true - pcall: - args: - - type: function - - required: false - type: '...' - plugin: - struct: Plugin - print: - args: - - required: false - type: '...' - rawequal: - args: - - type: any - - type: any - must_use: true - rawget: - args: - - type: any - - type: any - must_use: true - rawlen: - args: - - type: table - must_use: true - rawset: - args: - - type: any - - type: any - - type: any - require: - args: - - type: number - script: - struct: Script - select: - args: - - type: any - - type: '...' - must_use: true - setfenv: - args: - - type: any - - type: table - setmetatable: - args: - - type: table - - required: false - type: table - settings: - args: [] - shared: - property: new-fields - spawn: - args: - - type: function - string.byte: - args: - - type: string - - required: false - type: number - - required: false - type: number - string.char: - args: - - required: string.char should be used with an argument despite it not throwing - type: number - - required: false - type: '...' - must_use: true - string.find: - args: - - type: string - - type: string - - required: false - type: number - - required: false - type: bool - must_use: true - string.format: - args: - - type: string - - required: string.format should only be used for strings that need formatting - type: '...' - must_use: true - string.gmatch: - args: - - type: string - - type: string - must_use: true - string.gsub: - args: - - type: string - - type: string - - type: any - - required: false - type: number - must_use: true - string.len: - args: - - type: string - must_use: true - string.lower: - args: - - type: string - must_use: true - string.match: - args: - - type: string - - type: string - - required: false - type: number - must_use: true - string.pack: - args: - - type: string - - type: '...' - must_use: true - string.packsize: - args: - - type: string - must_use: true - string.rep: - args: - - type: string - - type: number - must_use: true - string.reverse: - args: - - type: string - must_use: true - string.split: - args: - - type: string - - required: false - type: string - must_use: true - string.sub: - args: - - type: string - - type: number - - required: false - type: number - must_use: true - string.unpack: - args: - - type: string - - type: string - - required: false - type: number - must_use: true - string.upper: - args: - - type: string - must_use: true - table.clear: - args: - - type: table - table.clone: - args: - - type: table - must_use: true - table.concat: - args: - - type: table - - required: false - type: string - - required: false - type: number - - required: false - type: number - must_use: true - table.create: - args: - - type: number - - required: false - type: any - must_use: true - table.find: - args: - - type: table - - type: any - - required: false - type: number - must_use: true - table.foreach: - args: - - type: table - - type: function - deprecated: - message: use a for loop instead. - replace: [] - table.foreachi: - args: - - type: table - - type: function - deprecated: - message: use a for loop instead. - replace: [] - table.freeze: - args: - - type: table - table.getn: - args: - - type: table - - type: number - must_use: true - deprecated: - message: '`table.getn` has been superceded by #.' - replace: - - '#%1' - table.insert: - args: - - type: table - observes: write - - type: any - - required: false - type: any - table.isfrozen: - args: - - type: table - must_use: true - table.maxn: - args: - - type: table - must_use: true - table.move: - args: - - type: table - - type: number - - type: number - - type: number - - required: false - type: table - table.pack: - args: - - type: '...' - must_use: true - table.remove: - args: - - type: table - - required: false - type: number - table.sort: - args: - - type: table - - required: false - type: function - table.unpack: - args: - - type: table - - required: false - type: number - - required: false - type: number - must_use: true - task.cancel: - args: - - type: - display: thread - task.defer: - args: - - type: function - - required: false - type: '...' - task.delay: - args: - - required: false - type: number - - type: function - - required: false - type: '...' - task.desynchronize: - args: [] - task.spawn: - args: - - type: function - - required: false - type: '...' - task.synchronize: - args: [] - task.wait: - args: - - required: false - type: number - tick: - args: [] - time: - args: [] - tonumber: - args: - - type: any - - required: false - type: number - must_use: true - tostring: - args: - - type: any - must_use: true - type: - args: - - type: any - typeof: - args: - - type: any - unpack: - args: - - type: table - - required: false - type: number - - required: false - type: number - must_use: true - utf8.char: - args: - - required: utf8.char should be used with an argument despite it not throwing - type: number - - required: false - type: '...' - must_use: true - utf8.charpattern: - property: read-only - utf8.codepoint: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.codes: - args: - - type: string - must_use: true - utf8.graphemes: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.len: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.nfcnormalize: - args: - - type: string - must_use: true - utf8.nfdnormalize: - args: - - type: string - must_use: true - utf8.offset: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - wait: - args: - - required: false - type: number - warn: - args: - - type: any - - required: false - type: '...' - workspace: - struct: Workspace - xpcall: - args: - - type: function - - required: false - type: '...' -structs: - BasePart: - '*': - struct: Instance - AncestryChanged: - struct: Event - Anchored: - property: override-fields - ApplyAngularImpulse: - args: - - required: false - type: any - method: true - ApplyImpulse: - args: - - required: false - type: any - method: true - ApplyImpulseAtPosition: - args: - - required: false - type: any - - required: false - type: any - method: true - Archivable: - property: override-fields - AssemblyAngularVelocity: - any: true - AssemblyCenterOfMass: - any: true - AssemblyLinearVelocity: - any: true - AssemblyMass: - property: read-only - AssemblyRootPart: - struct: BasePart - AttributeChanged: - struct: Event - BackParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackSurface: - property: override-fields - BackSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomSurface: - property: override-fields - BottomSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BrickColor: - property: override-fields - CFrame: - any: true - CanCollide: - property: override-fields - CanCollideWith: - args: - - required: false - type: any - method: true - CanQuery: - property: override-fields - CanSetNetworkOwnership: - args: [] - method: true - CanTouch: - property: override-fields - CastShadow: - property: override-fields - CenterOfMass: - any: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionGroup: - property: override-fields - CollisionGroupId: - property: override-fields - Color: - property: override-fields - CurrentPhysicalProperties: - property: read-only - CustomPhysicalProperties: - property: override-fields - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Elasticity: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - ExtentsCFrame: - any: true - ExtentsSize: - any: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - Friction: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontSurface: - property: override-fields - FrontSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetConnectedParts: - args: - - required: false - type: any - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetJoints: - args: [] - method: true - GetMass: - args: [] - method: true - GetNetworkOwner: - args: [] - method: true - GetNetworkOwnershipAuto: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetRootPart: - args: [] - method: true - GetTouchingParts: - args: [] - method: true - GetVelocityAtPosition: - args: - - required: false - type: any - method: true - IntersectAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGrounded: - args: [] - method: true - LeftParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftSurface: - property: override-fields - LeftSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LocalSimulationTouched: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - LocalTransparencyModifier: - property: override-fields - Locked: - property: override-fields - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Mass: - property: read-only - Massless: - property: override-fields - Material: - property: override-fields - MaterialVariant: - property: override-fields - Name: - property: override-fields - Orientation: - any: true - Origin: - any: true - OutfitChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - Pivot Offset: - any: true - PivotOffset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - Position: - any: true - ReceiveAge: - property: read-only - Reflectance: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Resize: - args: - - required: false - type: any - - required: false - type: any - method: true - ResizeIncrement: - property: read-only - ResizeableFaces: - property: read-only - RightParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightSurface: - property: override-fields - RightSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RootPriority: - property: override-fields - RotVelocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - Rotation: - any: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetNetworkOwner: - args: - - required: false - type: any - method: true - SetNetworkOwnershipAuto: - args: [] - method: true - Size: - any: true - SpecificGravity: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - StoppedTouching: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - SubtractAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - TopParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopSurface: - property: override-fields - TopSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TouchEnded: - struct: Event - Touched: - struct: Event - Transparency: - property: override-fields - UnionAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Velocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - brickColor: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getMass: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - resize: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - subtractAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - unionAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Camera: - '*': - struct: Instance - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - CFrame: - any: true - CameraSubject: - struct: Instance - CameraType: - property: override-fields - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CoordinateFrame: - any: true - deprecated: - message: this property is deprecated. - replace: [] - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - DiagonalFieldOfView: - property: override-fields - FieldOfView: - property: override-fields - FieldOfViewMode: - property: override-fields - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FirstPersonTransition: - struct: Event - Focus: - any: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetLargestCutoffDistance: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetPanSpeed: - args: [] - method: true - GetPartsObscuringTarget: - args: - - required: false - type: any - - required: false - type: any - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - GetRoll: - args: [] - method: true - GetTiltSpeed: - args: [] - method: true - HeadLocked: - property: override-fields - HeadScale: - property: override-fields - Interpolate: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - InterpolationFinished: - struct: Event - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - MaxAxisFieldOfView: - property: override-fields - Name: - property: override-fields - NearPlaneZ: - property: read-only - PanUnits: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ScreenPointToRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetCameraPanMode: - args: - - required: false - type: any - method: true - SetImageServerView: - args: - - required: false - type: any - method: true - SetRoll: - args: - - required: false - type: any - method: true - TiltUnits: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - ViewportPointToRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - ViewportSize: - any: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WorldToScreenPoint: - args: - - required: false - type: any - method: true - WorldToViewportPoint: - args: - - required: false - type: any - method: true - Zoom: - args: - - required: false - type: any - method: true - ZoomToExtents: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - focus: - any: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - DataModel: - '*': - struct: Instance - AllowedGearTypeChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - BindToClose: - args: - - required: false - type: any - method: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - Close: - struct: Event - CloseLate: - struct: Event - CreatorId: - property: read-only - CreatorType: - property: read-only - DefineFastFlag: - args: - - required: false - type: any - - required: false - type: any - method: true - DefineFastInt: - args: - - required: false - type: any - - required: false - type: any - method: true - DefineFastString: - args: - - required: false - type: any - - required: false - type: any - method: true - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FindService: - args: - - required: false - type: any - method: true - GameId: - property: read-only - GearGenreSetting: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - Genre: - property: read-only - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetEngineFeature: - args: - - required: false - type: any - method: true - GetFastFlag: - args: - - required: false - type: any - method: true - GetFastInt: - args: - - required: false - type: any - method: true - GetFastString: - args: - - required: false - type: any - method: true - GetFullName: - args: [] - method: true - GetJobsInfo: - args: [] - method: true - GetMessage: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetObjects: - args: - - required: false - type: any - method: true - GetObjectsAllOrNone: - args: - - required: false - type: any - - required: false - type: any - method: true - GetObjectsAsync: - args: - - required: false - type: any - method: true - GetObjectsList: - args: - - required: false - type: any - method: true - GetPlaySessionId: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRemoteBuildMode: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetService: - args: - - type: - - AdService - - AnalyticsService - - AnimationClipProvider - - AnimationFromVideoCreatorService - - AnimationFromVideoCreatorStudioService - - AppUpdateService - - AssetCounterService - - AssetDeliveryProxy - - AssetImportService - - AssetManagerService - - AssetService - - AvatarEditorService - - AvatarImportService - - BadgeService - - CoreGui - - StarterGui - - BrowserService - - BulkImportService - - CacheableContentProvider - - HSRDataContentProvider - - MeshContentProvider - - SolidModelContentProvider - - CalloutService - - ChangeHistoryService - - Chat - - ClusterPacketCache - - CollectionService - - CommandService - - ConfigureServerService - - ContentProvider - - ContextActionService - - ControllerService - - CookiesService - - CorePackages - - CoreScriptDebuggingManagerHelper - - CoreScriptSyncService - - CrossDMScriptChangeListener - - DataModelPatchService - - DataStoreService - - Debris - - DebuggablePluginWatcher - - DebuggerConnectionManager - - DebuggerManager - - DebuggerUIService - - DeviceIdService - - DraftsService - - DraggerService - - EventIngestService - - ExperienceAuthService - - FaceAnimatorService - - FacialAnimationRecordingService - - FacialAnimationStreamingService - - FacialAnimationStreamingServiceV2 - - FlagStandService - - FlyweightService - - CSGDictionaryService - - NonReplicatedCSGDictionaryService - - FriendService - - GamePassService - - GamepadService - - Geometry - - GoogleAnalyticsConfiguration - - GroupService - - GuiService - - GuidRegistryService - - HapticService - - HeightmapImporterService - - Hopper - - HttpRbxApiService - - HttpService - - ILegacyStudioBridge - - LegacyStudioBridge - - IXPService - - IncrementalPatchBuilder - - InsertService - - JointsService - - KeyboardService - - KeyframeSequenceProvider - - LSPFileSyncService - - LanguageService - - Lighting - - LiveScriptingService - - LocalStorageService - - AppStorageService - - UserStorageService - - LocalizationService - - LodDataService - - LogService - - LoginService - - LuaWebService - - LuauScriptAnalyzerService - - MarketplaceService - - MaterialGenerationService - - MaterialService - - MemStorageService - - MemoryStoreService - - MessageBusService - - MessagingService - - MetaBreakpointManager - - MouseService - - NetworkClient - - NetworkServer - - NetworkSettings - - NotificationService - - Workspace - - PackageService - - PackageUIService - - PatchBundlerFileWatch - - PathfindingService - - PermissionsService - - PhysicsService - - PlayerEmulatorService - - Players - - PluginDebugService - - PluginGuiService - - PluginManagementService - - PluginPolicyService - - PointsService - - PolicyService - - ProcessInstancePhysicsService - - ProximityPromptService - - PublishService - - RbxAnalyticsService - - RemoteCursorService - - RemoteDebuggerServer - - RenderSettings - - ReplicatedFirst - - ReplicatedStorage - - RobloxPluginGuiService - - RobloxReplicatedStorage - - RtMessagingService - - RunService - - RuntimeScriptService - - SafetyService - - ScriptChangeService - - ScriptCloneWatcher - - ScriptCloneWatcherHelper - - ScriptContext - - ScriptEditorService - - ScriptRegistrationService - - ScriptService - - Selection - - SelectionHighlightManager - - ServerScriptService - - ServerStorage - - ServiceVisibilityService - - SessionService - - SharedTableRegistry - - ShorelineUpgraderService - - SmoothVoxelsUpgraderService - - SnippetService - - SocialService - - SoundService - - SpawnerService - - StarterPack - - StarterPlayer - - Stats - - Studio - - StudioAssetService - - StudioData - - StudioDeviceEmulatorService - - StudioPublishService - - StudioScriptDebugEventListener - - StudioSdkService - - StudioService - - TaskScheduler - - TeamCreateData - - TeamCreatePublishService - - TeamCreateService - - Teams - - TeleportService - - TemporaryCageMeshProvider - - TemporaryScriptService - - TestService - - TextBoxService - - TextChatService - - TextService - - ThirdPartyUserService - - TimerService - - ToastNotificationService - - TouchInputService - - TracerService - - TweenService - - UGCValidationService - - UnvalidatedAssetService - - UserInputService - - UserService - - VRService - - VersionControlService - - VideoCaptureService - - VirtualInputManager - - VirtualUser - - VisibilityCheckDispatcher - - VisibilityService - - Visit - - VoiceChatInternal - - VoiceChatService - method: true - must_use: true - GraphicsQualityChangeRequest: - struct: Event - HttpGetAsync: - args: - - required: false - type: any - - required: false - type: any - method: true - HttpPostAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - InsertObjectsAndJoinIfLegacyAsync: - args: - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsContentLoaded: - args: [] - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGearTypeAllowed: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IsLoaded: - args: [] - method: true - IsUniverseMetadataLoaded: - args: [] - method: true - ItemChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - JobId: - property: read-only - Load: - args: - - required: false - type: any - method: true - Loaded: - struct: Event - Name: - property: override-fields - OnClose: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - OpenScreenshotsFolder: - args: [] - method: true - OpenVideosFolder: - args: [] - method: true - Parent: - struct: Instance - PlaceId: - property: read-only - PlaceVersion: - property: read-only - PrivateServerId: - property: read-only - PrivateServerOwnerId: - property: read-only - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ReportInGoogleAnalytics: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SavePlace: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - ScreenshotReady: - struct: Event - ScreenshotSavedToAlbum: - struct: Event - ServiceAdded: - struct: Event - ServiceRemoving: - struct: Event - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastFlagForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastIntForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastStringForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetIsLoaded: - args: - - required: false - type: any - - required: false - type: any - method: true - SetPlaceId: - args: - - required: false - type: any - method: true - SetUniverseId: - args: - - required: false - type: any - method: true - Shutdown: - args: [] - method: true - UniverseMetadataLoaded: - struct: Event - VIPServerId: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - VIPServerOwnerId: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - Workspace: - struct: Workspace - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getService: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - lighting: - struct: Instance - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - service: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - workspace: - struct: Workspace - deprecated: - message: this property is deprecated. - replace: [] - EnumItem: - Name: - property: read-only - Value: - property: read-only - Event: - Connect: - args: - - type: function - method: true - Once: - args: - - type: function - method: true - Wait: - args: [] - method: true - connect: - args: - - type: function - method: true - deprecated: - message: lowercase methods have been superceded by uppercase ones - replace: - - Connect(%1) - wait: - args: - - type: function - method: true - deprecated: - message: lowercase methods have been superceded by uppercase ones - replace: - - Wait(%1) - Instance: - '*': - any: true - Plugin: - '*': - struct: Instance - Activate: - args: - - required: false - type: any - method: true - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionEnabled: - property: read-only - CreateDockWidgetPluginGui: - args: - - required: false - type: any - - required: false - type: any - method: true - CreatePluginAction: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CreatePluginMenu: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CreateQWidgetPluginGui: - args: - - required: false - type: any - - required: false - type: any - method: true - CreateToolbar: - args: - - required: false - type: any - method: true - Deactivate: - args: [] - method: true - Deactivation: - struct: Event - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - GetJoinMode: - args: [] - method: true - GetMouse: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetSelectedRibbonTool: - args: [] - method: true - GetSetting: - args: - - required: false - type: any - method: true - GetStudioUserId: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GridSize: - property: read-only - ImportFbxAnimation: - args: - - required: false - type: any - - required: false - type: any - method: true - ImportFbxRig: - args: - - required: false - type: any - method: true - Intersect: - args: - - required: false - type: any - method: true - Invoke: - args: - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsActivated: - args: [] - method: true - IsActivatedWithExclusiveMouse: - args: [] - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - Name: - property: override-fields - Negate: - args: - - required: false - type: any - method: true - OnInvoke: - args: - - required: false - type: any - - required: false - type: any - method: true - OnSetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - OpenScript: - args: - - required: false - type: any - - required: false - type: any - method: true - OpenWikiPage: - args: - - required: false - type: any - method: true - Parent: - struct: Instance - PauseSound: - args: - - required: false - type: any - method: true - PlaySound: - args: - - required: false - type: any - - required: false - type: any - method: true - ProcessAssetInsertionDrag: - property: override-fields - ProcessAssetInsertionDrop: - property: override-fields - PromptForExistingAssetId: - args: - - required: false - type: any - method: true - PromptSaveSelection: - args: - - required: false - type: any - method: true - Ready: - struct: Event - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ResumeSound: - args: - - required: false - type: any - method: true - SaveSelectedToRoblox: - args: [] - method: true - SelectRibbonTool: - args: - - required: false - type: any - - required: false - type: any - method: true - Separate: - args: - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - SetReady: - args: [] - method: true - SetSetting: - args: - - required: false - type: any - - required: false - type: any - method: true - StartDecalDrag: - args: - - required: false - type: any - method: true - StartDrag: - args: - - required: false - type: any - method: true - StopAllSounds: - args: [] - method: true - Union: - args: - - required: false - type: any - method: true - Unloading: - struct: Event - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Script: - '*': - struct: Instance - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CurrentEditor: - struct: Instance - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Disabled: - property: override-fields - Enabled: - property: override-fields - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetHash: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - LinkedSource: - property: override-fields - Name: - property: override-fields - Parent: - struct: Instance - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Terrain: - '*': - struct: Instance - AncestryChanged: - struct: Event - Anchored: - property: override-fields - ApplyAngularImpulse: - args: - - required: false - type: any - method: true - ApplyImpulse: - args: - - required: false - type: any - method: true - ApplyImpulseAtPosition: - args: - - required: false - type: any - - required: false - type: any - method: true - Archivable: - property: override-fields - AssemblyAngularVelocity: - any: true - AssemblyCenterOfMass: - any: true - AssemblyLinearVelocity: - any: true - AssemblyMass: - property: read-only - AssemblyRootPart: - struct: BasePart - AttributeChanged: - struct: Event - AutowedgeCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - AutowedgeCells: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - BackParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackSurface: - property: override-fields - BackSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomSurface: - property: override-fields - BottomSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BrickColor: - property: override-fields - CFrame: - any: true - CanCollide: - property: override-fields - CanCollideWith: - args: - - required: false - type: any - method: true - CanQuery: - property: override-fields - CanSetNetworkOwnership: - args: [] - method: true - CanShorelinesBeUpgraded: - args: [] - method: true - CanSmoothVoxelsBeUpgraded: - args: [] - method: true - CanTouch: - property: override-fields - CastShadow: - property: override-fields - CellCenterToWorld: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CellCornerToWorld: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CenterOfMass: - any: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - Clear: - args: [] - method: true - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionGroup: - property: override-fields - CollisionGroupId: - property: override-fields - Color: - property: override-fields - ConvertToSmooth: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - CopyRegion: - args: - - required: false - type: any - method: true - CountCells: - args: [] - method: true - CurrentPhysicalProperties: - property: read-only - CustomPhysicalProperties: - property: override-fields - Decoration: - property: override-fields - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Elasticity: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - ExtentsCFrame: - any: true - ExtentsSize: - any: true - FillBall: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillBlock: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillCylinder: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillWedge: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - Friction: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontSurface: - property: override-fields - FrontSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetChildren: - args: [] - method: true - GetConnectedParts: - args: - - required: false - type: any - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetJoints: - args: [] - method: true - GetMass: - args: [] - method: true - GetMaterialColor: - args: - - required: false - type: any - method: true - GetNetworkOwner: - args: [] - method: true - GetNetworkOwnershipAuto: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetRootPart: - args: [] - method: true - GetTerrainWireframe: - args: - - required: false - type: any - - required: false - type: any - method: true - GetTouchingParts: - args: [] - method: true - GetVelocityAtPosition: - args: - - required: false - type: any - method: true - GetWaterCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IntersectAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGrounded: - args: [] - method: true - IsSmooth: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - LeftParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftSurface: - property: override-fields - LeftSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LocalSimulationTouched: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - LocalTransparencyModifier: - property: override-fields - Locked: - property: override-fields - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Mass: - property: read-only - Massless: - property: override-fields - Material: - property: override-fields - MaterialColors: - property: override-fields - MaterialVariant: - property: override-fields - MaxExtents: - property: read-only - Name: - property: override-fields - Orientation: - any: true - Origin: - any: true - OutfitChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - PasteRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Pivot Offset: - any: true - PivotOffset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - Position: - any: true - ReadVoxels: - args: - - required: false - type: any - - required: false - type: any - method: true - ReceiveAge: - property: read-only - Reflectance: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ReplaceMaterial: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - ReplaceMaterialInTransform: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Resize: - args: - - required: false - type: any - - required: false - type: any - method: true - ResizeIncrement: - property: read-only - ResizeableFaces: - property: read-only - RightParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightSurface: - property: override-fields - RightSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RootPriority: - property: override-fields - RotVelocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - Rotation: - any: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetCells: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetMaterialColor: - args: - - required: false - type: any - - required: false - type: any - method: true - SetMaterialInTransform: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SetNetworkOwner: - args: - - required: false - type: any - method: true - SetNetworkOwnershipAuto: - args: [] - method: true - SetWaterCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - Size: - any: true - SmoothRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SpecificGravity: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - StoppedTouching: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - SubtractAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - TopParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopSurface: - property: override-fields - TopSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TouchEnded: - struct: Event - Touched: - struct: Event - Transparency: - property: override-fields - UnionAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Velocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WaterColor: - property: override-fields - WaterReflectance: - property: override-fields - WaterTransparency: - property: override-fields - WaterWaveSize: - property: override-fields - WaterWaveSpeed: - property: override-fields - WorldToCell: - args: - - required: false - type: any - method: true - WorldToCellPreferEmpty: - args: - - required: false - type: any - method: true - WorldToCellPreferSolid: - args: - - required: false - type: any - method: true - WriteVoxels: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - brickColor: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getMass: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - resize: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - subtractAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - unionAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Workspace: - '*': - struct: Instance - AddPersistentPlayer: - args: - - required: false - type: any - method: true - AllowThirdPartySales: - property: override-fields - AncestryChanged: - struct: Event - Archivable: - property: override-fields - ArePartsTouchingOthers: - args: - - required: false - type: any - - required: false - type: any - method: true - AttributeChanged: - struct: Event - Blockcast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BulkMoveTo: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CacheCurrentTerrain: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpDistance: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpHeight: - args: - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpPower: - args: - - required: false - type: any - - required: false - type: any - method: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - ClearCachedTerrain: - args: - - required: false - type: any - method: true - ClientAnimatorThrottling: - property: override-fields - Clone: - args: [] - method: true - CurrentCamera: - struct: Camera - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - DistributedGameTime: - property: override-fields - ExperimentalSolverIsEnabled: - args: [] - method: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FindPartOnRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartOnRayWithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartOnRayWithWhitelist: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3WithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3WithWhiteList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetBoundingBox: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetExtentsSize: - args: [] - method: true - GetFullName: - args: [] - method: true - GetModelCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetModelSize: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetNumAwakeParts: - args: [] - method: true - GetPartBoundsInBox: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - GetPartBoundsInRadius: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - GetPartsInPart: - args: - - required: false - type: any - - required: false - type: any - method: true - GetPhysicsThrottling: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPrimaryPartCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRealPhysicsFPS: - args: [] - method: true - GetScale: - args: [] - method: true - GetServerTimeNow: - args: [] - method: true - GlobalWind: - any: true - Gravity: - property: override-fields - HumanoidOnlySetCollisionsOnStateChange: - property: override-fields - IKMoveTo: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsRegion3Empty: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IsRegion3EmptyWithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - JoinToOutsiders: - args: - - required: false - type: any - - required: false - type: any - method: true - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - MeshPartHeadsAndAccessories: - property: override-fields - ModelStreamingMode: - property: override-fields - MoveTo: - args: - - required: false - type: any - method: true - Name: - property: override-fields - Origin: - any: true - PGSIsEnabled: - args: [] - method: true - Parent: - struct: Instance - PersistentLoaded: - struct: Event - PhysicsSteppingMethod: - property: override-fields - Pivot Offset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - PrimaryPart: - struct: BasePart - Raycast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - RaycastCachedTerrain: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - RejectCharacterDeletions: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - RemovePersistentPlayer: - args: - - required: false - type: any - method: true - ReplicateInstanceDestroySetting: - property: override-fields - ResetOrientationToIdentity: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Retargeting: - property: override-fields - Scale: - property: override-fields - ScaleTo: - args: - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetIdentityOrientation: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetInsertPoint: - args: - - required: false - type: any - - required: false - type: any - method: true - SetMeshPartHeadsAndAccessories: - args: - - required: false - type: any - method: true - SetPhysicsThrottleEnabled: - args: - - required: false - type: any - method: true - SetPrimaryPartCFrame: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SignalBehavior: - property: override-fields - Spherecast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - StreamOutBehavior: - property: override-fields - StreamingIntegrityMode: - property: override-fields - StreamingMinRadius: - property: override-fields - StreamingTargetRadius: - property: override-fields - Terrain: - struct: Terrain - TouchesUseCollisionGroups: - property: override-fields - TranslateBy: - args: - - required: false - type: any - method: true - UnjoinFromOutsiders: - args: - - required: false - type: any - method: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WorldPivot: - any: true - ZoomToExtents: - args: [] - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - findPartOnRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - findPartsInRegion3: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - move: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - moveTo: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] -last_updated: 1681227519 -last_selene_version: 0.25.0 -roblox_classes: - Accessory: - superclass: Accoutrement - events: [] - properties: - - AccessoryType - Accoutrement: - superclass: Instance - events: [] - properties: - - AttachmentForward - - AttachmentPoint - - AttachmentPos - - AttachmentRight - - AttachmentUp - Actor: - superclass: Model - events: [] - properties: [] - AdGui: - superclass: SurfaceGuiBase - events: [] - properties: - - AdShape - - Status - AdPortal: - superclass: Instance - events: [] - properties: - - PortalInvalidReason - - PortalStatus - - PortalVersion - - Status - AdService: - superclass: Instance - events: - - AdTeleportEnded - - AdTeleportInitiated - - VideoAdClosed - properties: [] - AdvancedDragger: - superclass: Instance - events: [] - properties: [] - AirController: - superclass: ControllerBase - events: [] - properties: - - MaintainAngularMomentum - - MaintainLinearMomentum - - MoveMaxForce - - OrientationMaxTorque - - OrientationSpeedFactor - - VectorForce - AlignOrientation: - superclass: Constraint - events: [] - properties: - - AlignType - - CFrame - - MaxAngularVelocity - - MaxTorque - - Mode - - PrimaryAxis - - PrimaryAxisOnly - - ReactionTorqueEnabled - - Responsiveness - - RigidityEnabled - - SecondaryAxis - AlignPosition: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - MaxForce - - MaxVelocity - - Mode - - Position - - ReactionForceEnabled - - Responsiveness - - RigidityEnabled - AnalysticsSettings: - superclass: GenericSettings - events: [] - properties: [] - AnalyticsService: - superclass: Instance - events: [] - properties: - - ApiKey - AngularVelocity: - superclass: Constraint - events: [] - properties: - - AngularVelocity - - MaxTorque - - ReactionTorqueEnabled - - RelativeTo - Animation: - superclass: Instance - events: [] - properties: - - AnimationId - AnimationClip: - superclass: Instance - events: [] - properties: - - Guid - - Loop - - Priority - AnimationClipProvider: - superclass: Instance - events: [] - properties: [] - AnimationConstraint: - superclass: Constraint - events: [] - properties: - - IsKinematic - - MaxForce - - MaxTorque - - Transform - AnimationController: - superclass: Instance - events: - - AnimationPlayed - properties: [] - AnimationFromVideoCreatorService: - superclass: Instance - events: [] - properties: [] - AnimationFromVideoCreatorStudioService: - superclass: Instance - events: [] - properties: [] - AnimationRigData: - superclass: Instance - events: [] - properties: [] - AnimationStreamTrack: - superclass: Instance - events: - - Stopped - properties: - - Animation - - IsPlaying - - Priority - - WeightCurrent - - WeightTarget - AnimationTrack: - superclass: Instance - events: - - DidLoop - - Ended - - KeyframeReached - - Stopped - properties: - - Animation - - IsPlaying - - Length - - Looped - - Priority - - Speed - - TimePosition - - WeightCurrent - - WeightTarget - Animator: - superclass: Instance - events: - - AnimationPlayed - - AnimationPlayedCoreScript - - AnimationStreamTrackPlayed - properties: - - EvaluationThrottled - - PreferLodEnabled - AppStorageService: - superclass: LocalStorageService - events: [] - properties: [] - AppUpdateService: - superclass: Instance - events: [] - properties: [] - ArcHandles: - superclass: HandlesBase - events: - - MouseButton1Down - - MouseButton1Up - - MouseDrag - - MouseEnter - - MouseLeave - properties: - - Axes - AssetCounterService: - superclass: Instance - events: [] - properties: [] - AssetDeliveryProxy: - superclass: Instance - events: [] - properties: - - Interface - - Port - - StartServer - AssetImportService: - superclass: Instance - events: [] - properties: [] - AssetImportSession: - superclass: Instance - events: - - UploadComplete - - UploadCompleteDeprecated - - UploadProgress - properties: [] - AssetManagerService: - superclass: Instance - events: - - AssetImportedSignal - - ImportSessionFinished - - ImportSessionStarted - - MayBeLinkedSourceModified - properties: [] - AssetPatchSettings: - superclass: Instance - events: [] - properties: - - ContentId - - OutputPath - - PatchId - AssetService: - superclass: Instance - events: - - OpenPublishResultModal - properties: [] - AssetSoundEffect: - superclass: CustomSoundEffect - events: [] - properties: [] - Atmosphere: - superclass: Instance - events: [] - properties: - - Color - - Decay - - Density - - Glare - - Haze - - Offset - Attachment: - superclass: Instance - events: [] - properties: - - Axis - - CFrame - - Orientation - - Position - - Rotation - - SecondaryAxis - - Visible - - WorldAxis - - WorldCFrame - - WorldOrientation - - WorldPosition - - WorldRotation - - WorldSecondaryAxis - AudioPages: - superclass: Pages - events: [] - properties: [] - AudioSearchParams: - superclass: Instance - events: [] - properties: - - Album - - Artist - - AudioSubtype - - MaxDuration - - MinDuration - - SearchKeyword - - Tag - - Title - AvatarEditorService: - superclass: Instance - events: - - OpenAllowInventoryReadAccess - - OpenPromptCreateOufit - - OpenPromptDeleteOutfit - - OpenPromptRenameOutfit - - OpenPromptSaveAvatar - - OpenPromptSetFavorite - - OpenPromptUpdateOutfit - - PromptAllowInventoryReadAccessCompleted - - PromptCreateOutfitCompleted - - PromptDeleteOutfitCompleted - - PromptRenameOutfitCompleted - - PromptSaveAvatarCompleted - - PromptSaveAvatarThumbnailCustomizationCompleted - - PromptSetFavoriteCompleted - - PromptUpdateOutfitCompleted - properties: [] - AvatarImportService: - superclass: Instance - events: [] - properties: [] - Backpack: - superclass: Instance - events: [] - properties: [] - BackpackItem: - superclass: Model - events: [] - properties: - - TextureId - BadgeService: - superclass: Instance - events: - - BadgeAwarded - - OnBadgeAwarded - properties: [] - BallSocketConstraint: - superclass: Constraint - events: [] - properties: - - LimitsEnabled - - MaxFrictionTorque - - Radius - - Restitution - - TwistLimitsEnabled - - TwistLowerAngle - - TwistUpperAngle - - UpperAngle - BasePart: - superclass: PVInstance - events: - - LocalSimulationTouched - - OutfitChanged - - StoppedTouching - - TouchEnded - - Touched - properties: - - Anchored - - AssemblyAngularVelocity - - AssemblyCenterOfMass - - AssemblyLinearVelocity - - AssemblyMass - - AssemblyRootPart - - BackParamA - - BackParamB - - BackSurface - - BackSurfaceInput - - BottomParamA - - BottomParamB - - BottomSurface - - BottomSurfaceInput - - BrickColor - - CFrame - - CanCollide - - CanQuery - - CanTouch - - CastShadow - - CenterOfMass - - CollisionGroup - - CollisionGroupId - - Color - - CurrentPhysicalProperties - - CustomPhysicalProperties - - Elasticity - - ExtentsCFrame - - ExtentsSize - - Friction - - FrontParamA - - FrontParamB - - FrontSurface - - FrontSurfaceInput - - LeftParamA - - LeftParamB - - LeftSurface - - LeftSurfaceInput - - LocalTransparencyModifier - - Locked - - Mass - - Massless - - Material - - MaterialVariant - - Orientation - - PivotOffset - - Position - - ReceiveAge - - Reflectance - - ResizeIncrement - - ResizeableFaces - - RightParamA - - RightParamB - - RightSurface - - RightSurfaceInput - - RootPriority - - RotVelocity - - Rotation - - Size - - SpecificGravity - - TopParamA - - TopParamB - - TopSurface - - TopSurfaceInput - - Transparency - - Velocity - - brickColor - BasePlayerGui: - superclass: Instance - events: [] - properties: [] - BaseScript: - superclass: LuaSourceContainer - events: [] - properties: - - Disabled - - Enabled - - LinkedSource - - RunContext - BaseWrap: - superclass: Instance - events: [] - properties: - - CageMeshId - - CageOrigin - - CageOriginWorld - - HSRAssetId - - ImportOrigin - - ImportOriginWorld - Beam: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - Brightness - - Color - - CurveSize0 - - CurveSize1 - - Enabled - - FaceCamera - - LightEmission - - LightInfluence - - Segments - - Texture - - TextureLength - - TextureMode - - TextureSpeed - - Transparency - - Width0 - - Width1 - - ZOffset - BevelMesh: - superclass: DataModelMesh - events: [] - properties: [] - BillboardGui: - superclass: LayerCollector - events: [] - properties: - - Active - - Adornee - - AlwaysOnTop - - Brightness - - ClipsDescendants - - CurrentDistance - - DistanceLowerLimit - - DistanceStep - - DistanceUpperLimit - - ExtentsOffset - - ExtentsOffsetWorldSpace - - LightInfluence - - MaxDistance - - PlayerToHideFrom - - Size - - SizeOffset - - StudsOffset - - StudsOffsetWorldSpace - BinaryStringValue: - superclass: ValueBase - events: - - Changed - properties: [] - BindableEvent: - superclass: Instance - events: - - Event - properties: [] - BindableFunction: - superclass: Instance - events: [] - properties: [] - BlockMesh: - superclass: BevelMesh - events: [] - properties: [] - BloomEffect: - superclass: PostEffect - events: [] - properties: - - Intensity - - Size - - Threshold - BlurEffect: - superclass: PostEffect - events: [] - properties: - - Size - BodyAngularVelocity: - superclass: BodyMover - events: [] - properties: - - AngularVelocity - - MaxTorque - - P - - angularvelocity - - maxTorque - BodyColors: - superclass: CharacterAppearance - events: [] - properties: - - HeadColor - - HeadColor3 - - LeftArmColor - - LeftArmColor3 - - LeftLegColor - - LeftLegColor3 - - RightArmColor - - RightArmColor3 - - RightLegColor - - RightLegColor3 - - TorsoColor - - TorsoColor3 - BodyForce: - superclass: BodyMover - events: [] - properties: - - Force - - force - BodyGyro: - superclass: BodyMover - events: [] - properties: - - CFrame - - D - - MaxTorque - - P - - cframe - - maxTorque - BodyMover: - superclass: Instance - events: [] - properties: [] - BodyPosition: - superclass: BodyMover - events: - - ReachedTarget - properties: - - D - - MaxForce - - P - - Position - - maxForce - - position - BodyThrust: - superclass: BodyMover - events: [] - properties: - - Force - - Location - - force - - location - BodyVelocity: - superclass: BodyMover - events: [] - properties: - - MaxForce - - P - - Velocity - - maxForce - - velocity - Bone: - superclass: Attachment - events: [] - properties: - - Transform - - TransformedCFrame - - TransformedWorldCFrame - BoolValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - BoxHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Size - Breakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - Enabled - - Id - - Line - - LogMessage - - MetaBreakpointId - - Script - - Valid - - Verified - BrickColorValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - BrowserService: - superclass: Instance - events: - - AuthCookieCopiedToEngine - - BrowserWindowClosed - - BrowserWindowWillNavigate - - JavaScriptCallback - properties: [] - BubbleChatConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AdorneeName - - BackgroundColor3 - - BackgroundTransparency - - BubbleDuration - - BubblesSpacing - - Enabled - - Font - - FontFace - - LocalPlayerStudsOffset - - MaxDistance - - MinimizeDistance - - TextColor3 - - TextSize - - VerticalStudsOffset - BulkImportService: - superclass: Instance - events: - - AssetImported - - BulkImportFinished - - BulkImportStarted - properties: [] - BuoyancySensor: - superclass: SensorBase - events: [] - properties: - - FullySubmerged - - TouchingSurface - CFrameValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - CSGDictionaryService: - superclass: FlyweightService - events: [] - properties: [] - CacheableContentProvider: - superclass: Instance - events: [] - properties: [] - CalloutService: - superclass: Instance - events: [] - properties: [] - Camera: - superclass: Instance - events: - - FirstPersonTransition - - InterpolationFinished - properties: - - CFrame - - CameraSubject - - CameraType - - CoordinateFrame - - DiagonalFieldOfView - - FieldOfView - - FieldOfViewMode - - Focus - - HeadLocked - - HeadScale - - MaxAxisFieldOfView - - NearPlaneZ - - ViewportSize - - focus - CanvasGroup: - superclass: GuiObject - events: [] - properties: - - GroupColor3 - - GroupTransparency - CatalogPages: - superclass: Pages - events: [] - properties: [] - ChangeHistoryService: - superclass: Instance - events: - - OnRedo - - OnUndo - properties: [] - ChannelSelectorSoundEffect: - superclass: CustomSoundEffect - events: [] - properties: - - Channel - CharacterAppearance: - superclass: Instance - events: [] - properties: [] - CharacterMesh: - superclass: CharacterAppearance - events: [] - properties: - - BaseTextureId - - BodyPart - - MeshId - - OverlayTextureId - Chat: - superclass: Instance - events: - - BubbleChatSettingsChanged - - Chatted - properties: - - BubbleChatEnabled - - LoadDefaultChat - ChatInputBarConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AbsolutePosition - - AbsolutePositionWrite - - AbsoluteSize - - AbsoluteSizeWrite - - BackgroundColor3 - - BackgroundTransparency - - Enabled - - FontFace - - PlaceholderColor3 - - TargetTextChannel - - TextBox - - TextColor3 - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - ChatWindowConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AbsolutePosition - - AbsolutePositionWrite - - AbsoluteSize - - AbsoluteSizeWrite - - BackgroundColor3 - - BackgroundTransparency - - Enabled - - FontFace - - HeightScale - - HorizontalAlignment - - TextColor3 - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - VerticalAlignment - - WidthScale - ChorusSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Mix - - Rate - ClickDetector: - superclass: Instance - events: - - MouseClick - - MouseHoverEnter - - MouseHoverLeave - - RightMouseClick - - mouseClick - properties: - - CursorIcon - - MaxActivationDistance - ClientReplicator: - superclass: NetworkReplicator - events: - - RCCProfilerDataComplete - - StatsReceived - properties: [] - ClimbController: - superclass: ControllerBase - events: [] - properties: - - AccelerationTime - - MoveMaxForce - - OrientationMaxTorque - - OrientationSpeedFactor - Clothing: - superclass: CharacterAppearance - events: [] - properties: - - Color3 - CloudLocalizationTable: - superclass: LocalizationTable - events: [] - properties: [] - Clouds: - superclass: Instance - events: [] - properties: - - Color - - Cover - - Density - - Enabled - ClusterPacketCache: - superclass: Instance - events: [] - properties: [] - CollectionService: - superclass: Instance - events: - - ItemAdded - - ItemRemoved - - TagAdded - - TagRemoved - properties: [] - Color3Value: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - ColorCorrectionEffect: - superclass: PostEffect - events: [] - properties: - - Brightness - - Contrast - - Saturation - - TintColor - CommandInstance: - superclass: Instance - events: [] - properties: - - AllowGUIAccessPoints - - Checked - - DefaultShortcut - - DisplayName - - Enabled - - Icon - - Name - - Permission - - StatusTip - CommandService: - superclass: Instance - events: - - CommandExecuting - properties: [] - CompressorSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Attack - - GainMakeup - - Ratio - - Release - - SideChain - - Threshold - ConeHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Height - - Radius - Configuration: - superclass: Instance - events: [] - properties: [] - ConfigureServerService: - superclass: Instance - events: [] - properties: [] - Constraint: - superclass: Instance - events: [] - properties: - - Active - - Attachment0 - - Attachment1 - - Color - - Enabled - - Visible - ContentProvider: - superclass: Instance - events: - - AssetFetchFailed - properties: - - BaseUrl - - RequestQueueSize - ContextActionService: - superclass: Instance - events: - - BoundActionAdded - - BoundActionChanged - - BoundActionRemoved - - GetActionButtonEvent - - LocalToolEquipped - - LocalToolUnequipped - properties: [] - Controller: - superclass: Instance - events: - - ButtonChanged - properties: [] - ControllerBase: - superclass: Instance - events: [] - properties: - - MoveSpeedFactor - - RigidityEnabled - ControllerManager: - superclass: Instance - events: [] - properties: - - ActiveController - - BaseMoveSpeed - - BaseTurnSpeed - - ClimbSensor - - FacingDirection - - GroundSensor - - MovingDirection - ControllerPartSensor: - superclass: ControllerSensor - events: [] - properties: - - HitFrame - - HitNormal - - SearchDistance - - SensedPart - - SensorMode - ControllerSensor: - superclass: SensorBase - events: [] - properties: [] - ControllerService: - superclass: Instance - events: [] - properties: [] - CookiesService: - superclass: Instance - events: [] - properties: [] - CoreGui: - superclass: BasePlayerGui - events: - - UserGuiRenderingChanged - properties: - - SelectionImageObject - - Version - CorePackages: - superclass: Instance - events: [] - properties: [] - CoreScript: - superclass: BaseScript - events: [] - properties: [] - CoreScriptDebuggingManagerHelper: - superclass: Instance - events: [] - properties: [] - CoreScriptSyncService: - superclass: Instance - events: [] - properties: [] - CornerWedgePart: - superclass: BasePart - events: [] - properties: [] - CrossDMScriptChangeListener: - superclass: Instance - events: - - GuidLineContentsChanged - - GuidNameChanged - properties: [] - CurveAnimation: - superclass: AnimationClip - events: [] - properties: [] - CustomEvent: - superclass: Instance - events: - - ReceiverConnected - - ReceiverDisconnected - properties: [] - CustomEventReceiver: - superclass: Instance - events: - - EventConnected - - EventDisconnected - - SourceValueChanged - properties: - - Source - CustomSoundEffect: - superclass: SoundEffect - events: [] - properties: [] - CylinderHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Angle - - Height - - InnerRadius - - Radius - CylinderMesh: - superclass: BevelMesh - events: [] - properties: [] - CylindricalConstraint: - superclass: SlidingBallConstraint - events: [] - properties: - - AngularActuatorType - - AngularLimitsEnabled - - AngularResponsiveness - - AngularRestitution - - AngularSpeed - - AngularVelocity - - CurrentAngle - - InclinationAngle - - LowerAngle - - MotorMaxAngularAcceleration - - MotorMaxTorque - - RotationAxisVisible - - ServoMaxTorque - - TargetAngle - - UpperAngle - - WorldRotationAxis - DataModel: - superclass: ServiceProvider - events: - - AllowedGearTypeChanged - - GraphicsQualityChangeRequest - - ItemChanged - - Loaded - - ScreenshotReady - - ScreenshotSavedToAlbum - - UniverseMetadataLoaded - properties: - - CreatorId - - CreatorType - - GameId - - GearGenreSetting - - Genre - - IsSFFlagsLoaded - - JobId - - PlaceId - - PlaceVersion - - PrivateServerId - - PrivateServerOwnerId - - VIPServerId - - VIPServerOwnerId - - Workspace - - lighting - - workspace - DataModelMesh: - superclass: Instance - events: [] - properties: - - Offset - - Scale - - VertexColor - DataModelPatchService: - superclass: Instance - events: [] - properties: [] - DataModelSession: - superclass: Instance - events: - - CurrentDataModelTypeAboutToChange - - CurrentDataModelTypeChanged - - DataModelCreated - - DataModelWillBeDestroyed - properties: - - CurrentDataModelType - - SessionId - DataStore: - superclass: GlobalDataStore - events: [] - properties: [] - DataStoreIncrementOptions: - superclass: Instance - events: [] - properties: [] - DataStoreInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - DataStoreName - - UpdatedTime - DataStoreKey: - superclass: Instance - events: [] - properties: - - KeyName - DataStoreKeyInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - UpdatedTime - - Version - DataStoreKeyPages: - superclass: Pages - events: [] - properties: - - Cursor - DataStoreListingPages: - superclass: Pages - events: [] - properties: - - Cursor - DataStoreObjectVersionInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - IsDeleted - - Version - DataStoreOptions: - superclass: Instance - events: [] - properties: - - AllScopes - DataStorePages: - superclass: Pages - events: [] - properties: [] - DataStoreService: - superclass: Instance - events: [] - properties: - - AutomaticRetry - - LegacyNamingScheme - DataStoreSetOptions: - superclass: Instance - events: [] - properties: [] - DataStoreVersionPages: - superclass: Pages - events: [] - properties: [] - Debris: - superclass: Instance - events: [] - properties: - - MaxItems - DebugSettings: - superclass: Instance - events: [] - properties: - - DataModel - - InstanceCount - - IsScriptStackTracingEnabled - - JobCount - - PlayerCount - - ReportSoundWarnings - - RobloxVersion - - TickCountPreciseOverride - DebuggablePluginWatcher: - superclass: Instance - events: [] - properties: [] - DebuggerBreakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - IsEnabled - - Line - - LogExpression - - isContextDependentBreakpoint - DebuggerConnection: - superclass: Instance - events: - - BreakpointAdded - - BreakpointChanged - - BreakpointRemoved - - Paused - - Resumed - properties: - - ErrorMessage - - HasError - - Id - - IsPaused - DebuggerConnectionManager: - superclass: Instance - events: - - ConnectionEnded - - ConnectionStarted - - FocusChanged - properties: - - Timeout - DebuggerLuaResponse: - superclass: Instance - events: [] - properties: - - IsError - - IsSuccess - - Message - - RequestId - - Status - DebuggerManager: - superclass: Instance - events: - - DebuggerAdded - - DebuggerRemoved - properties: - - DebuggingEnabled - DebuggerUIService: - superclass: Instance - events: - - ExpressionAdded - properties: [] - DebuggerVariable: - superclass: Instance - events: [] - properties: - - Name - - Populated - - Type - - Value - - VariableId - - VariablesCount - DebuggerWatch: - superclass: Instance - events: [] - properties: - - Expression - Decal: - superclass: FaceInstance - events: [] - properties: - - Color3 - - LocalTransparencyModifier - - Shiny - - Specular - - Texture - - Transparency - - ZIndex - DepthOfFieldEffect: - superclass: PostEffect - events: [] - properties: - - FarIntensity - - FocusDistance - - InFocusRadius - - NearIntensity - DeviceIdService: - superclass: Instance - events: [] - properties: [] - Dialog: - superclass: Instance - events: - - DialogChoiceSelected - properties: - - BehaviorType - - ConversationDistance - - GoodbyeChoiceActive - - GoodbyeDialog - - InUse - - InitialPrompt - - Purpose - - Tone - - TriggerDistance - - TriggerOffset - DialogChoice: - superclass: Instance - events: [] - properties: - - GoodbyeChoiceActive - - GoodbyeDialog - - ResponseDialog - - UserDialog - DistortionSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Level - DockWidgetPluginGui: - superclass: PluginGui - events: [] - properties: - - HostWidgetWasRestored - DoubleConstrainedValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - ConstrainedValue - - MaxValue - - MinValue - - Value - DraftsService: - superclass: Instance - events: - - CommitStatusChanged - - DraftAdded - - DraftRemoved - - DraftStatusChanged - - EditorsListChanged - - UpdateStatusChanged - properties: [] - Dragger: - superclass: Instance - events: [] - properties: [] - DraggerService: - superclass: Instance - events: [] - properties: - - AlignDraggedObjects - - AngleSnapEnabled - - AngleSnapIncrement - - AnimateHover - - CollisionsEnabled - - DraggerCoordinateSpace - - DraggerMovementMode - - GeometrySnapColor - - HoverAnimateFrequency - - HoverLineThickness - - HoverThickness - - JointsEnabled - - LinearSnapEnabled - - LinearSnapIncrement - - PivotSnapToGeometry - - ShowHover - - ShowPivotIndicator - DynamicRotate: - superclass: JointInstance - events: [] - properties: - - BaseAngle - EchoSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Delay - - DryLevel - - Feedback - - WetLevel - EmotesPages: - superclass: InventoryPages - events: [] - properties: [] - EqualizerSoundEffect: - superclass: SoundEffect - events: [] - properties: - - HighGain - - LowGain - - MidGain - EulerRotationCurve: - superclass: Instance - events: [] - properties: - - RotationOrder - EventIngestService: - superclass: Instance - events: [] - properties: [] - ExperienceAuthService: - superclass: Instance - events: - - OpenAuthPrompt - properties: [] - ExperienceInviteOptions: - superclass: Instance - events: [] - properties: - - InviteMessageId - - InviteUser - - LaunchData - - PromptMessage - Explosion: - superclass: Instance - events: - - Hit - properties: - - BlastPressure - - BlastRadius - - DestroyJointRadiusPercent - - ExplosionType - - Position - - TimeScale - - Visible - FaceAnimatorService: - superclass: Instance - events: - - TrackerError - - TrackerPrompt - properties: - - AudioAnimationEnabled - - FlipHeadOrientation - - VideoAnimationEnabled - FaceControls: - superclass: Instance - events: [] - properties: - - ChinRaiser - - ChinRaiserUpperLip - - Corrugator - - EyesLookDown - - EyesLookLeft - - EyesLookRight - - EyesLookUp - - FlatPucker - - Funneler - - JawDrop - - JawLeft - - JawRight - - LeftBrowLowerer - - LeftCheekPuff - - LeftCheekRaiser - - LeftDimpler - - LeftEyeClosed - - LeftEyeUpperLidRaiser - - LeftInnerBrowRaiser - - LeftLipCornerDown - - LeftLipCornerPuller - - LeftLipStretcher - - LeftLowerLipDepressor - - LeftNoseWrinkler - - LeftOuterBrowRaiser - - LeftUpperLipRaiser - - LipPresser - - LipsTogether - - LowerLipSuck - - MouthLeft - - MouthRight - - Pucker - - RightBrowLowerer - - RightCheekPuff - - RightCheekRaiser - - RightDimpler - - RightEyeClosed - - RightEyeUpperLidRaiser - - RightInnerBrowRaiser - - RightLipCornerDown - - RightLipCornerPuller - - RightLipStretcher - - RightLowerLipDepressor - - RightNoseWrinkler - - RightOuterBrowRaiser - - RightUpperLipRaiser - - TongueDown - - TongueOut - - TongueUp - - UpperLipSuck - FaceInstance: - superclass: Instance - events: [] - properties: - - Face - FacialAnimationRecordingService: - superclass: Instance - events: [] - properties: - - BiometricDataConsent - FacialAnimationStreamingService: - superclass: Instance - events: [] - properties: - - EnableFlags - - Enabled - FacialAnimationStreamingServiceStats: - superclass: Instance - events: - - isStreamingFacsUpdated - properties: [] - FacialAnimationStreamingServiceV2: - superclass: Instance - events: [] - properties: - - ServiceState - Feature: - superclass: Instance - events: [] - properties: - - FaceId - - InOut - - LeftRight - - TopBottom - File: - superclass: Instance - events: [] - properties: - - Size - FileMesh: - superclass: DataModelMesh - events: [] - properties: - - MeshId - - TextureId - Fire: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - Heat - - SecondaryColor - - Size - - TimeScale - - size - Flag: - superclass: Tool - events: [] - properties: - - TeamColor - FlagStand: - superclass: Part - events: - - FlagCaptured - properties: - - TeamColor - FlagStandService: - superclass: Instance - events: [] - properties: [] - FlangeSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Mix - - Rate - FloatCurve: - superclass: Instance - events: [] - properties: - - Length - FloorWire: - superclass: GuiBase3d - events: [] - properties: - - CycleOffset - - From - - StudsBetweenTextures - - Texture - - TextureSize - - To - - Velocity - - WireRadius - FlyweightService: - superclass: Instance - events: [] - properties: [] - Folder: - superclass: Instance - events: [] - properties: [] - ForceField: - superclass: Instance - events: [] - properties: - - Visible - FormFactorPart: - superclass: BasePart - events: [] - properties: - - FormFactor - - formFactor - Frame: - superclass: GuiObject - events: [] - properties: - - Style - FriendPages: - superclass: Pages - events: [] - properties: [] - FriendService: - superclass: Instance - events: - - FriendsUpdated - properties: [] - FunctionalTest: - superclass: Instance - events: [] - properties: - - Description - GamePassService: - superclass: Instance - events: [] - properties: [] - GameSettings: - superclass: Instance - events: - - VideoRecordingChangeRequest - properties: - - VideoCaptureEnabled - - VideoRecording - GamepadService: - superclass: Instance - events: - - GamepadThumbstick1Changed - properties: - - GamepadCursorEnabled - GenericSettings: - superclass: ServiceProvider - events: [] - properties: [] - Geometry: - superclass: Instance - events: [] - properties: [] - GetTextBoundsParams: - superclass: Instance - events: [] - properties: - - Font - - Size - - Text - - Width - GlobalDataStore: - superclass: Instance - events: [] - properties: [] - GlobalSettings: - superclass: GenericSettings - events: [] - properties: [] - Glue: - superclass: JointInstance - events: [] - properties: - - F0 - - F1 - - F2 - - F3 - GoogleAnalyticsConfiguration: - superclass: Instance - events: [] - properties: [] - GroundController: - superclass: ControllerBase - events: [] - properties: - - AccelerationLean - - AccelerationTime - - AlignSpeed - - AlignTorque - - DecelerationTime - - Friction - - FrictionWeight - - GroundOffset - - StandForce - - StandSpeed - - TurningFactor - GroupService: - superclass: Instance - events: [] - properties: [] - GuiBase: - superclass: Instance - events: [] - properties: [] - GuiBase2d: - superclass: GuiBase - events: - - SelectionChanged - properties: - - AbsolutePosition - - AbsoluteRotation - - AbsoluteSize - - AutoLocalize - - ClippedRect - - IsNotOccluded - - Localize - - RawRect2D - - RootLocalizationTable - - SelectionBehaviorDown - - SelectionBehaviorLeft - - SelectionBehaviorRight - - SelectionBehaviorUp - - SelectionGroup - - TotalGroupScale - GuiBase3d: - superclass: GuiBase - events: [] - properties: - - Color - - Color3 - - Transparency - - Visible - GuiButton: - superclass: GuiObject - events: - - Activated - - MouseButton1Click - - MouseButton1Down - - MouseButton1Up - - MouseButton2Click - - MouseButton2Down - - MouseButton2Up - properties: - - AutoButtonColor - - Modal - - Selected - - Style - GuiLabel: - superclass: GuiObject - events: [] - properties: [] - GuiMain: - superclass: ScreenGui - events: [] - properties: [] - GuiObject: - superclass: GuiBase2d - events: - - DragBegin - - DragStopped - - InputBegan - - InputChanged - - InputEnded - - MouseEnter - - MouseLeave - - MouseMoved - - MouseWheelBackward - - MouseWheelForward - - SelectionGained - - SelectionLost - - TouchLongPress - - TouchPan - - TouchPinch - - TouchRotate - - TouchSwipe - - TouchTap - properties: - - Active - - AnchorPoint - - AutomaticSize - - BackgroundColor - - BackgroundColor3 - - BackgroundTransparency - - BorderColor - - BorderColor3 - - BorderMode - - BorderSizePixel - - ClipsDescendants - - Draggable - - LayoutOrder - - NextSelectionDown - - NextSelectionLeft - - NextSelectionRight - - NextSelectionUp - - Position - - Rotation - - Selectable - - SelectionImageObject - - SelectionOrder - - Size - - SizeConstraint - - Transparency - - Visible - - ZIndex - GuiService: - superclass: Instance - events: - - BrowserWindowClosed - - CloseInspectMenuRequest - - CoreGuiRenderOverflowed - - EmotesMenuOpenChanged - - ErrorMessageChanged - - GuiVisibilityChangedSignal - - InspectMenuEnabledChangedSignal - - InspectPlayerFromHumanoidDescriptionRequest - - InspectPlayerFromUserIdWithCtxRequest - - KeyPressed - - MenuClosed - - MenuOpened - - NativeClose - - NetworkPausedEnabledChanged - - Open9SliceEditor - - PurchasePromptShown - - SafeZoneOffsetsChanged - - ShowLeaveConfirmation - - SpecialKeyPressed - - UiMessageChanged - properties: - - AutoSelectGuiEnabled - - CoreEffectFolder - - CoreGuiFolder - - CoreGuiNavigationEnabled - - GuiNavigationEnabled - - IsModalDialog - - IsWindows - - MenuIsOpen - - SelectedCoreObject - - SelectedObject - - TouchControlsEnabled - GuidRegistryService: - superclass: Instance - events: [] - properties: [] - HSRDataContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - HandleAdornment: - superclass: PVAdornment - events: - - MouseButton1Down - - MouseButton1Up - - MouseEnter - - MouseLeave - properties: - - AdornCullingMode - - AlwaysOnTop - - CFrame - - SizeRelativeOffset - - ZIndex - Handles: - superclass: HandlesBase - events: - - MouseButton1Down - - MouseButton1Up - - MouseDrag - - MouseEnter - - MouseLeave - properties: - - Faces - - Style - HandlesBase: - superclass: PartAdornment - events: [] - properties: [] - HapticService: - superclass: Instance - events: [] - properties: [] - Hat: - superclass: Accoutrement - events: [] - properties: [] - HeightmapImporterService: - superclass: Instance - events: - - ColormapHasUnknownPixels - - ProgressUpdate - properties: [] - HiddenSurfaceRemovalAsset: - superclass: Instance - events: [] - properties: [] - Highlight: - superclass: Instance - events: [] - properties: - - Adornee - - DepthMode - - Enabled - - FillColor - - FillTransparency - - LineThickness - - OutlineColor - - OutlineTransparency - - ReservedId - HingeConstraint: - superclass: Constraint - events: [] - properties: - - ActuatorType - - AngularResponsiveness - - AngularSpeed - - AngularVelocity - - CurrentAngle - - LimitsEnabled - - LowerAngle - - MotorMaxAcceleration - - MotorMaxTorque - - Radius - - Restitution - - ServoMaxTorque - - TargetAngle - - UpperAngle - Hint: - superclass: Message - events: [] - properties: [] - Hole: - superclass: Feature - events: [] - properties: [] - Hopper: - superclass: Instance - events: [] - properties: [] - HopperBin: - superclass: BackpackItem - events: - - Deselected - - Selected - properties: - - Active - - BinType - HttpRbxApiService: - superclass: Instance - events: [] - properties: [] - HttpRequest: - superclass: Instance - events: [] - properties: [] - HttpService: - superclass: Instance - events: [] - properties: - - HttpEnabled - Humanoid: - superclass: Instance - events: - - AnimationPlayed - - Climbing - - ClusterCompositionFinished - - CustomStatusAdded - - CustomStatusRemoved - - Died - - EmoteTriggered - - FallingDown - - FreeFalling - - GettingUp - - HealthChanged - - Jumping - - MoveToFinished - - PlatformStanding - - Ragdoll - - Running - - Seated - - StateChanged - - StateEnabledChanged - - StatusAdded - - StatusRemoved - - Strafing - - Swimming - - Touched - properties: - - AutoJumpEnabled - - AutoRotate - - AutomaticScalingEnabled - - BreakJointsOnDeath - - CameraOffset - - CollisionType - - DisplayDistanceType - - DisplayName - - EvaluateStateMachine - - FloorMaterial - - Health - - HealthDisplayDistance - - HealthDisplayType - - HipHeight - - Jump - - JumpHeight - - JumpPower - - LeftLeg - - MaxHealth - - MaxSlopeAngle - - MoveDirection - - NameDisplayDistance - - NameOcclusion - - PlatformStand - - RequiresNeck - - RigType - - RightLeg - - RootPart - - SeatPart - - Sit - - TargetPoint - - Torso - - UseJumpPower - - WalkSpeed - - WalkToPart - - WalkToPoint - - maxHealth - HumanoidController: - superclass: Controller - events: [] - properties: [] - HumanoidDescription: - superclass: Instance - events: - - EmotesChanged - - EquippedEmotesChanged - properties: - - AccessoryBlob - - BackAccessory - - BodyTypeScale - - ClimbAnimation - - DepthScale - - Face - - FaceAccessory - - FallAnimation - - FrontAccessory - - GraphicTShirt - - HairAccessory - - HatAccessory - - Head - - HeadColor - - HeadScale - - HeightScale - - IdleAnimation - - JumpAnimation - - LeftArm - - LeftArmColor - - LeftLeg - - LeftLegColor - - MoodAnimation - - NeckAccessory - - NumberEmotesLoaded - - Pants - - ProportionScale - - RightArm - - RightArmColor - - RightLeg - - RightLegColor - - RunAnimation - - Shirt - - ShouldersAccessory - - SwimAnimation - - Torso - - TorsoColor - - WaistAccessory - - WalkAnimation - - WidthScale - IKControl: - superclass: Instance - events: [] - properties: - - ChainRoot - - Enabled - - EndEffector - - EndEffectorOffset - - Offset - - Pole - - Priority - - SmoothTime - - Target - - Type - - Weight - ILegacyStudioBridge: - superclass: Instance - events: [] - properties: [] - IXPService: - superclass: Instance - events: - - OnBrowserTrackerLayerLoadingStatusChanged - - OnUserLayerLoadingStatusChanged - properties: [] - ImageButton: - superclass: GuiButton - events: [] - properties: - - ContentImageSize - - HoverImage - - Image - - ImageColor3 - - ImageRectOffset - - ImageRectSize - - ImageTransparency - - IsLoaded - - PressedImage - - ResampleMode - - ScaleType - - SliceCenter - - SliceScale - - TileSize - ImageDataExperimental: - superclass: Instance - events: [] - properties: - - Size - - TemporaryId - ImageHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Image - - Size - ImageLabel: - superclass: GuiLabel - events: [] - properties: - - ContentImageSize - - Image - - ImageColor3 - - ImageRectOffset - - ImageRectSize - - ImageTransparency - - IsLoaded - - ResampleMode - - ScaleType - - SliceCenter - - SliceScale - - TileSize - ImporterAnimationSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterBaseSettings: - superclass: Instance - events: [] - properties: - - Id - - ImportName - - ShouldImport - ImporterFacsSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterGroupSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - Anchored - - ImportAsModelAsset - - InsertInWorkspace - ImporterJointSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterMaterialSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - DiffuseFilePath - - IsPbr - - MetalnessFilePath - - NormalFilePath - - RoughnessFilePath - ImporterMeshSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - Anchored - - CageManifold - - CageMeshIntersectedPreview - - CageMeshNotIntersected - - CageNoOverlappingVertices - - CageNonManifoldPreview - - CageOverlappingVerticesPreview - - CageUVMatched - - CageUVMisMatchedPreview - - Dimensions - - DoubleSided - - IgnoreVertexColors - - IrrelevantCageModifiedPreview - - MeshHoleDetectedPreview - - MeshNoHoleDetected - - NoIrrelevantCageModified - - NoOuterCageFarExtendedFromMesh - - OuterCageFarExtendedFromMeshPreview - - PolygonCount - - UseImportedPivot - ImporterRootSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - AddModelToInventory - - Anchored - - ExistingPackageId - - FileDimensions - - ImportAsModelAsset - - ImportAsPackage - - InsertInWorkspace - - InsertWithScenePosition - - InvertNegativeFaces - - MergeMeshes - - PolygonCount - - RigScale - - RigType - - ScaleUnit - - UseSceneOriginAsCFrame - - UseSceneOriginAsPivot - - UsesCages - - WorldForward - - WorldUp - IncrementalPatchBuilder: - superclass: Instance - events: [] - properties: - - AddPathsToBundle - - BuildDebouncePeriod - - HighCompression - - SerializePatch - - ZstdCompression - InputObject: - superclass: Instance - events: [] - properties: - - Delta - - KeyCode - - Position - - UserInputState - - UserInputType - InsertService: - superclass: Instance - events: [] - properties: - - AllowClientInsertModels - - AllowInsertFreeModels - Instance: - superclass: <<>> - events: - - AncestryChanged - - AttributeChanged - - Changed - - ChildAdded - - ChildRemoved - - DescendantAdded - - DescendantRemoving - - Destroying - - childAdded - properties: - - Archivable - - ClassName - - DataCost - - Name - - Parent - - RobloxLocked - - SourceAssetId - - archivable - - className - InstanceAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - IntConstrainedValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - ConstrainedValue - - MaxValue - - MinValue - - Value - IntValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - IntersectOperation: - superclass: PartOperation - events: [] - properties: [] - InventoryPages: - superclass: Pages - events: [] - properties: [] - JointInstance: - superclass: Instance - events: [] - properties: - - Active - - C0 - - C1 - - Enabled - - Part0 - - Part1 - - part1 - JointsService: - superclass: Instance - events: [] - properties: [] - KeyboardService: - superclass: Instance - events: [] - properties: [] - Keyframe: - superclass: Instance - events: [] - properties: - - Time - KeyframeMarker: - superclass: Instance - events: [] - properties: - - Value - KeyframeSequence: - superclass: AnimationClip - events: [] - properties: - - AuthoredHipHeight - KeyframeSequenceProvider: - superclass: Instance - events: [] - properties: [] - LSPFileSyncService: - superclass: Instance - events: [] - properties: [] - LanguageService: - superclass: Instance - events: [] - properties: [] - LayerCollector: - superclass: GuiBase2d - events: [] - properties: - - Enabled - - ResetOnSpawn - - ZIndexBehavior - LegacyStudioBridge: - superclass: ILegacyStudioBridge - events: [] - properties: [] - Light: - superclass: Instance - events: [] - properties: - - Brightness - - Color - - Enabled - - Shadows - Lighting: - superclass: Instance - events: - - LightingChanged - properties: - - Ambient - - Brightness - - TimerTime - - ColorShift_Bottom - - ColorShift_Top - - EnvironmentDiffuseScale - - EnvironmentSpecularScale - - ExposureCompensation - - FogColor - - FogEnd - - FogStart - - GeographicLatitude - - GlobalShadows - - OutdoorAmbient - - Outlines - - ShadowColor - - ShadowSoftness - - Technology - - TempUseNewSkyRemovalBehaviour - - TimeOfDay - LineForce: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - InverseSquareLaw - - Magnitude - - MaxForce - - ReactionForceEnabled - LineHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Length - - Thickness - LinearVelocity: - superclass: Constraint - events: [] - properties: - - LineDirection - - LineVelocity - - MaxForce - - PlaneVelocity - - PrimaryTangentAxis - - RelativeTo - - SecondaryTangentAxis - - VectorVelocity - - VelocityConstraintMode - LiveScriptingService: - superclass: Instance - events: [] - properties: [] - LocalDebuggerConnection: - superclass: DebuggerConnection - events: [] - properties: [] - LocalScript: - superclass: Script - events: [] - properties: [] - LocalStorageService: - superclass: Instance - events: - - ItemWasSet - - StoreWasCleared - properties: [] - LocalizationService: - superclass: Instance - events: - - AutoTranslateWillRun - properties: - - ForcePlayModeGameLocaleId - - ForcePlayModeRobloxLocaleId - - IsTextScraperRunning - - RobloxForcePlayModeGameLocaleId - - RobloxForcePlayModeRobloxLocaleId - - RobloxLocaleId - - SystemLocaleId - LocalizationTable: - superclass: Instance - events: [] - properties: - - DevelopmentLanguage - - Root - - SourceLocaleId - LodDataEntity: - superclass: Instance - events: [] - properties: - - EntityLodEnabled - LodDataService: - superclass: Instance - events: [] - properties: [] - LogService: - superclass: Instance - events: - - HttpResultOut - - MessageOut - - OnHttpResultApproved - - ServerHttpResultOut - - ServerMessageOut - properties: [] - LoginService: - superclass: Instance - events: - - LoginFailed - - LoginSucceeded - properties: [] - LuaSettings: - superclass: Instance - events: [] - properties: [] - LuaSourceContainer: - superclass: Instance - events: [] - properties: - - CurrentEditor - - RuntimeSource - LuaWebService: - superclass: Instance - events: [] - properties: [] - LuauScriptAnalyzerService: - superclass: Instance - events: [] - properties: [] - ManualGlue: - superclass: ManualSurfaceJointInstance - events: [] - properties: [] - ManualSurfaceJointInstance: - superclass: JointInstance - events: [] - properties: [] - ManualWeld: - superclass: ManualSurfaceJointInstance - events: [] - properties: [] - MarkerCurve: - superclass: Instance - events: [] - properties: - - Length - MarketplaceService: - superclass: Instance - events: - - ClientLuaDialogRequested - - ClientPurchaseSuccess - - NativePurchaseFinished - - NativePurchaseFinishedWithLocalPlayer - - PromptBundlePurchaseFinished - - PromptBundlePurchaseRequested - - PromptGamePassPurchaseFinished - - PromptGamePassPurchaseRequested - - PromptPremiumPurchaseFinished - - PromptPremiumPurchaseRequested - - PromptProductPurchaseFinished - - PromptProductPurchaseRequested - - PromptPurchaseFinished - - PromptPurchaseRequested - - PromptRobloxPurchaseRequested - - PromptSubscriptionCancellationFinished - - PromptSubscriptionCancellationRequested - - PromptSubscriptionPurchaseFinished - - PromptSubscriptionPurchaseRequested - - ServerPurchaseVerification - - ThirdPartyPurchaseFinished - properties: [] - MaterialGenerationService: - superclass: Instance - events: [] - properties: [] - MaterialGenerationSession: - superclass: Instance - events: [] - properties: [] - MaterialService: - superclass: Instance - events: - - OverrideStatusChanged - properties: - - AsphaltName - - BasaltName - - BrickName - - CobblestoneName - - ConcreteName - - CorrodedMetalName - - CrackedLavaName - - DiamondPlateName - - FabricName - - FoilName - - GlacierName - - GraniteName - - GrassName - - GroundName - - IceName - - LeafyGrassName - - LimestoneName - - MarbleName - - MetalName - - MudName - - PavementName - - PebbleName - - PlasticName - - RockName - - SaltName - - SandName - - SandstoneName - - SlateName - - SmoothPlasticName - - SnowName - - Use2022Materials - - WoodName - - WoodPlanksName - MaterialVariant: - superclass: Instance - events: [] - properties: - - BaseMaterial - - ColorMap - - CustomPhysicalProperties - - MaterialPattern - - MetalnessMap - - NormalMap - - RoughnessMap - - StudsPerTile - MemStorageConnection: - superclass: Instance - events: [] - properties: [] - MemStorageService: - superclass: Instance - events: [] - properties: [] - MemoryStoreQueue: - superclass: Instance - events: [] - properties: [] - MemoryStoreService: - superclass: Instance - events: [] - properties: [] - MemoryStoreSortedMap: - superclass: Instance - events: [] - properties: [] - MeshContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - MeshDataExperimental: - superclass: Instance - events: [] - properties: - - Size - MeshPart: - superclass: TriangleMeshPart - events: [] - properties: - - DoubleSided - - HasJointOffset - - HasSkinnedMesh - - JointOffset - - MeshId - - RenderFidelity - - TextureID - Message: - superclass: Instance - events: [] - properties: - - Text - MessageBusConnection: - superclass: Instance - events: [] - properties: [] - MessageBusService: - superclass: Instance - events: [] - properties: [] - MessagingService: - superclass: Instance - events: [] - properties: [] - MetaBreakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - Enabled - - Id - - IsLogpoint - - Line - - LogMessage - - Script - - Valid - MetaBreakpointContext: - superclass: Instance - events: [] - properties: [] - MetaBreakpointManager: - superclass: Instance - events: - - MetaBreakpointAdded - - MetaBreakpointChanged - - MetaBreakpointRemoved - - MetaBreakpointSetChanged - properties: [] - Model: - superclass: PVInstance - events: [] - properties: - - LevelOfDetail - - ModelStreamingMode - - PrimaryPart - - Scale - - WorldPivot - ModuleScript: - superclass: LuaSourceContainer - events: [] - properties: - - LinkedSource - - Source - Motor: - superclass: JointInstance - events: [] - properties: - - CurrentAngle - - DesiredAngle - - MaxVelocity - Motor6D: - superclass: Motor - events: [] - properties: - - ChildName - - ParentName - - Transform - MotorFeature: - superclass: Feature - events: [] - properties: [] - Mouse: - superclass: Instance - events: - - Button1Down - - Button1Up - - Button2Down - - Button2Up - - Idle - - KeyDown - - KeyUp - - Move - - WheelBackward - - WheelForward - - keyDown - properties: - - Hit - - Icon - - Origin - - Target - - TargetFilter - - TargetSurface - - UnitRay - - ViewSizeX - - ViewSizeY - - X - - Y - - hit - - target - MouseService: - superclass: Instance - events: [] - properties: [] - MultipleDocumentInterfaceInstance: - superclass: Instance - events: - - DataModelSessionEnded - - DataModelSessionStarted - properties: - - FocusedDataModelSession - NegateOperation: - superclass: PartOperation - events: [] - properties: [] - NetworkClient: - superclass: NetworkPeer - events: - - ConnectionAccepted - - ConnectionFailed - properties: [] - NetworkMarker: - superclass: Instance - events: - - Received - properties: [] - NetworkPeer: - superclass: Instance - events: [] - properties: [] - NetworkReplicator: - superclass: Instance - events: [] - properties: [] - NetworkServer: - superclass: NetworkPeer - events: [] - properties: [] - NetworkSettings: - superclass: Instance - events: [] - properties: - - EmulatedTotalMemoryInMB - - FreeMemoryMBytes - - HttpProxyEnabled - - HttpProxyURL - - IncomingReplicationLag - - PrintJoinSizeBreakdown - - PrintPhysicsErrors - - PrintStreamInstanceQuota - - RandomizeJoinInstanceOrder - - RenderStreamedRegions - - ShowActiveAnimationAsset - NoCollisionConstraint: - superclass: Instance - events: [] - properties: - - Enabled - - Part0 - - Part1 - NonReplicatedCSGDictionaryService: - superclass: FlyweightService - events: [] - properties: [] - NotificationService: - superclass: Instance - events: - - Roblox17sConnectionChanged - - Roblox17sEventReceived - - RobloxConnectionChanged - - RobloxEventReceived - properties: - - IsConnected - - IsLuaChatEnabled - - IsLuaGameDetailsEnabled - - SelectedTheme - NumberPose: - superclass: PoseBase - events: [] - properties: - - Value - NumberValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - ObjectValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - OrderedDataStore: - superclass: GlobalDataStore - events: [] - properties: [] - OutfitPages: - superclass: Pages - events: [] - properties: [] - PVAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - PVInstance: - superclass: Instance - events: [] - properties: - - Origin - - Pivot Offset - PackageLink: - superclass: Instance - events: [] - properties: - - AutoUpdate - - Creator - - PackageAssetName - - PackageId - - PermissionLevel - - Status - - VersionNumber - PackageService: - superclass: Instance - events: [] - properties: [] - PackageUIService: - superclass: Instance - events: - - OnConvertToPackageResult - - OnOpenConvertToPackagePlugin - properties: [] - Pages: - superclass: Instance - events: [] - properties: - - IsFinished - Pants: - superclass: Clothing - events: [] - properties: - - PantsTemplate - ParabolaAdornment: - superclass: PVAdornment - events: [] - properties: - - A - - B - - C - - Range - - Thickness - Part: - superclass: FormFactorPart - events: [] - properties: - - Shape - PartAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - PartOperation: - superclass: TriangleMeshPart - events: [] - properties: - - RenderFidelity - - SmoothingAngle - - TriangleCount - - UsePartColor - PartOperationAsset: - superclass: Instance - events: [] - properties: [] - ParticleEmitter: - superclass: Instance - events: [] - properties: - - Acceleration - - Brightness - - Color - - Drag - - EmissionDirection - - Enabled - - FlipbookFramerate - - FlipbookIncompatible - - FlipbookLayout - - FlipbookMode - - FlipbookStartRandom - - Lifetime - - LightEmission - - LightInfluence - - LockedToPart - - Orientation - - Rate - - RotSpeed - - Rotation - - Shape - - ShapeInOut - - ShapePartial - - ShapeStyle - - Size - - Speed - - SpreadAngle - - Squash - - Texture - - TimeScale - - Transparency - - VelocityInheritance - - VelocitySpread - - ZOffset - PatchBundlerFileWatch: - superclass: Instance - events: [] - properties: [] - PatchMapping: - superclass: Instance - events: [] - properties: - - FlattenTree - - PatchId - - TargetPath - Path: - superclass: Instance - events: - - Blocked - - Unblocked - properties: - - Status - PathfindingLink: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - IsBidirectional - - Label - PathfindingModifier: - superclass: Instance - events: [] - properties: - - Label - - PassThrough - PathfindingService: - superclass: Instance - events: [] - properties: - - EmptyCutoff - PausedState: - superclass: Instance - events: [] - properties: - - AllThreadsPaused - - Reason - - ThreadId - PausedStateBreakpoint: - superclass: PausedState - events: [] - properties: - - Breakpoint - PausedStateException: - superclass: PausedState - events: [] - properties: - - ExceptionText - PermissionsService: - superclass: Instance - events: [] - properties: [] - PhysicsService: - superclass: Instance - events: [] - properties: [] - PhysicsSettings: - superclass: Instance - events: [] - properties: - - AllowSleep - - AreAnchorsShown - - AreAssembliesShown - - AreAwakePartsHighlighted - - AreBodyTypesShown - - AreConstraintForcesShownForSelectedOrHoveredInstances - - AreConstraintTorquesShownForSelectedOrHoveredInstances - - AreContactForcesShownForSelectedOrHoveredAssemblies - - AreContactIslandsShown - - AreContactPointsShown - - AreJointCoordinatesShown - - AreMagnitudesShownForDrawnForcesAndTorques - - AreMechanismsShown - - AreModelCoordsShown - - AreOwnersShown - - ArePartCoordsShown - - AreRegionsShown - - AreSolverIslandsShown - - AreTerrainReplicationRegionsShown - - AreTimestepsShown - - AreUnalignedPartsShown - - AreWorldCoordsShown - - DisableCSGv2 - - ForceCSGv2 - - ForceDrawScale - - IsInterpolationThrottleShown - - IsReceiveAgeShown - - IsTreeShown - - PhysicsEnvironmentalThrottle - - ShowDecompositionGeometry - - SolverConvergenceVisualizationMode - - ThrottleAdjustTime - - UseCSGv2 - PitchShiftSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Octave - Plane: - superclass: PlaneConstraint - events: [] - properties: [] - PlaneConstraint: - superclass: Constraint - events: [] - properties: [] - Platform: - superclass: Part - events: [] - properties: [] - Player: - superclass: Instance - events: - - CharacterAdded - - CharacterAppearanceLoaded - - CharacterRemoving - - Chatted - - FriendStatusChanged - - Idled - - OnTeleport - - SimulationRadiusChanged - properties: - - AccountAge - - AppearanceDidLoad - - AutoJumpEnabled - - CameraMaxZoomDistance - - CameraMinZoomDistance - - CameraMode - - CanLoadCharacterAppearance - - Character - - CharacterAppearance - - CharacterAppearanceId - - ChatMode - - DataComplexity - - DataComplexityLimit - - DataReady - - DevCameraOcclusionMode - - DevComputerCameraMode - - DevComputerMovementMode - - DevEnableMouseLock - - DevTouchCameraMode - - DevTouchMovementMode - - DisplayName - - FollowUserId - - GameplayPaused - - Guest - - HasVerifiedBadge - - HealthDisplayDistance - - LocaleId - - MaximumSimulationRadius - - MembershipType - - NameDisplayDistance - - Neutral - - OsPlatform - - PlatformName - - ReplicationFocus - - RespawnLocation - - SimulationRadius - - Team - - TeamColor - - Teleported - - TeleportedIn - - UnfilteredChat - - UserId - - VRDevice - - VREnabled - - userId - PlayerEmulatorService: - superclass: Instance - events: [] - properties: - - CustomPoliciesEnabled - - EmulatedCountryCode - - EmulatedGameLocale - - PlayerEmulationEnabled - - SerializedEmulatedPolicyInfo - PlayerGui: - superclass: BasePlayerGui - events: - - TopbarTransparencyChangedSignal - properties: - - CurrentScreenOrientation - - ScreenOrientation - - SelectionImageObject - PlayerMouse: - superclass: Mouse - events: [] - properties: [] - PlayerScripts: - superclass: Instance - events: - - ComputerCameraMovementModeRegistered - - ComputerMovementModeRegistered - - TouchCameraMovementModeRegistered - - TouchMovementModeRegistered - properties: [] - Players: - superclass: Instance - events: - - FriendRequestEvent - - GameAnnounce - - PlayerAdded - - PlayerChatted - - PlayerConnecting - - PlayerDisconnecting - - PlayerMembershipChanged - - PlayerRejoining - - PlayerRemoving - properties: - - BubbleChat - - CharacterAutoLoads - - ClassicChat - - LocalPlayer - - MaxPlayers - - MaxPlayersInternal - - NumPlayers - - PreferredPlayers - - PreferredPlayersInternal - - RespawnTime - - UseStrafingAnimations - - localPlayer - - numPlayers - Plugin: - superclass: Instance - events: - - Deactivation - - Ready - - Unloading - properties: - - CollisionEnabled - - GridSize - - HostDataModelType - - HostDataModelTypeIsCurrent - - MultipleDocumentInterfaceInstance - - UsesAssetInsertionDrag - PluginAction: - superclass: Instance - events: - - Triggered - properties: - - ActionId - - AllowBinding - - Checked - - DefaultShortcut - - Enabled - - StatusTip - - Text - PluginDebugService: - superclass: Instance - events: [] - properties: [] - PluginDragEvent: - superclass: Instance - events: [] - properties: - - Data - - MimeType - - Position - - Sender - PluginGui: - superclass: LayerCollector - events: - - PluginDragDropped - - PluginDragEntered - - PluginDragLeft - - PluginDragMoved - - WindowFocusReleased - - WindowFocused - properties: - - Title - PluginGuiService: - superclass: Instance - events: [] - properties: [] - PluginManagementService: - superclass: Instance - events: [] - properties: [] - PluginManager: - superclass: Instance - events: [] - properties: [] - PluginManagerInterface: - superclass: Instance - events: [] - properties: [] - PluginMenu: - superclass: Instance - events: [] - properties: - - Icon - - Title - PluginMouse: - superclass: Mouse - events: - - DragEnter - properties: [] - PluginPolicyService: - superclass: Instance - events: [] - properties: [] - PluginToolbar: - superclass: Instance - events: [] - properties: [] - PluginToolbarButton: - superclass: Instance - events: - - Click - properties: - - ClickableWhenViewportHidden - - Enabled - - Icon - PointLight: - superclass: Light - events: [] - properties: - - Range - PointsService: - superclass: Instance - events: - - PointsAwarded - properties: [] - PolicyService: - superclass: Instance - events: [] - properties: - - IsLuobuServer - - LuobuWhitelisted - Pose: - superclass: PoseBase - events: [] - properties: - - CFrame - - MaskWeight - PoseBase: - superclass: Instance - events: [] - properties: - - EasingDirection - - EasingStyle - - Weight - PostEffect: - superclass: Instance - events: [] - properties: - - Enabled - PrismaticConstraint: - superclass: SlidingBallConstraint - events: [] - properties: [] - ProcessInstancePhysicsService: - superclass: Instance - events: [] - properties: [] - ProximityPrompt: - superclass: Instance - events: - - PromptButtonHoldBegan - - PromptButtonHoldEnded - - PromptHidden - - PromptShown - - TriggerEnded - - Triggered - properties: - - ActionText - - AutoLocalize - - ClickablePrompt - - Enabled - - Exclusivity - - GamepadKeyCode - - HoldDuration - - KeyboardKeyCode - - MaxActivationDistance - - ObjectText - - RequiresLineOfSight - - RootLocalizationTable - - Style - - UIOffset - ProximityPromptService: - superclass: Instance - events: - - PromptButtonHoldBegan - - PromptButtonHoldEnded - - PromptHidden - - PromptShown - - PromptTriggerEnded - - PromptTriggered - properties: - - Enabled - - MaxPromptsVisible - PublishService: - superclass: Instance - events: [] - properties: [] - QWidgetPluginGui: - superclass: PluginGui - events: [] - properties: [] - RayValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - RbxAnalyticsService: - superclass: Instance - events: [] - properties: [] - ReflectionMetadata: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataCallbacks: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataClass: - superclass: ReflectionMetadataItem - events: [] - properties: - - ExplorerImageIndex - - ExplorerOrder - - Insertable - - PreferredParent - - ServiceVisibility - ReflectionMetadataClasses: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataEnum: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataEnumItem: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataEnums: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataEvents: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataFunctions: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataItem: - superclass: Instance - events: [] - properties: - - Browsable - - ClassCategory - - ClientOnly - - Constraint - - Deprecated - - EditingDisabled - - EditorType - - FFlag - - IsBackend - - PropertyOrder - - ScriptContext - - ServerOnly - - SliderScaling - - UIMaximum - - UIMinimum - - UINumTicks - ReflectionMetadataMember: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataProperties: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataYieldFunctions: - superclass: Instance - events: [] - properties: [] - RemoteCursorService: - superclass: Instance - events: [] - properties: [] - RemoteDebuggerServer: - superclass: Instance - events: [] - properties: [] - RemoteEvent: - superclass: Instance - events: - - OnClientEvent - - OnServerEvent - properties: [] - RemoteFunction: - superclass: Instance - events: [] - properties: [] - RenderSettings: - superclass: Instance - events: [] - properties: - - AutoFRMLevel - - EagerBulkExecution - - EditQualityLevel - - EnableFRM - - ExportMergeByMaterial - - FrameRateManager - - GraphicsMode - - MeshCacheSize - - MeshPartDetailLevel - - QualityLevel - - ReloadAssets - - RenderCSGTrianglesDebug - - ShowBoundingBoxes - RenderingTest: - superclass: Instance - events: [] - properties: - - CFrame - - ComparisonDiffThreshold - - ComparisonMethod - - ComparisonPsnrThreshold - - Description - - FieldOfView - - Orientation - - Position - - QualityLevel - - ShouldSkip - - Ticket - ReplicatedFirst: - superclass: Instance - events: - - DefaultLoadingGuiRemoved - - FinishedReplicating - - RemoveDefaultLoadingGuiSignal - properties: [] - ReplicatedStorage: - superclass: Instance - events: [] - properties: [] - ReverbSoundEffect: - superclass: SoundEffect - events: [] - properties: - - DecayTime - - Density - - Diffusion - - DryLevel - - WetLevel - RigidConstraint: - superclass: Constraint - events: [] - properties: [] - RobloxPluginGuiService: - superclass: Instance - events: [] - properties: [] - RobloxReplicatedStorage: - superclass: Instance - events: [] - properties: [] - RocketPropulsion: - superclass: BodyMover - events: - - ReachedTarget - properties: - - CartoonFactor - - MaxSpeed - - MaxThrust - - MaxTorque - - Target - - TargetOffset - - TargetRadius - - ThrustD - - ThrustP - - TurnD - - TurnP - RodConstraint: - superclass: Constraint - events: [] - properties: - - CurrentDistance - - Length - - LimitAngle0 - - LimitAngle1 - - LimitsEnabled - - Thickness - RopeConstraint: - superclass: Constraint - events: [] - properties: - - CurrentDistance - - Length - - Restitution - - Thickness - - WinchEnabled - - WinchForce - - WinchResponsiveness - - WinchSpeed - - WinchTarget - Rotate: - superclass: JointInstance - events: [] - properties: [] - RotateP: - superclass: DynamicRotate - events: [] - properties: [] - RotateV: - superclass: DynamicRotate - events: [] - properties: [] - RotationCurve: - superclass: Instance - events: [] - properties: - - Length - RtMessagingService: - superclass: Instance - events: [] - properties: [] - RunService: - superclass: Instance - events: - - Heartbeat - - PostSimulation - - PreAnimation - - PreRender - - PreSimulation - - RenderStepped - - Stepped - properties: - - ClientGitHash - RunningAverageItemDouble: - superclass: StatsItem - events: [] - properties: [] - RunningAverageItemInt: - superclass: StatsItem - events: [] - properties: [] - RunningAverageTimeIntervalItem: - superclass: StatsItem - events: [] - properties: [] - RuntimeScriptService: - superclass: Instance - events: [] - properties: [] - SafetyService: - superclass: Instance - events: - - ScreenshotContentReady - - ScreenshotUploaded - properties: [] - ScreenGui: - superclass: LayerCollector - events: [] - properties: - - ClipToDeviceSafeArea - - DisplayOrder - - IgnoreGuiInset - - OnTopOfCoreBlur - - SafeAreaCompatibility - - ScreenInsets - ScreenshotHud: - superclass: Instance - events: [] - properties: - - CameraButtonIcon - - CameraButtonPosition - - CloseButtonPosition - - CloseWhenScreenshotTaken - - ExperienceNameOverlayEnabled - - OverlayFont - - UsernameOverlayEnabled - - Visible - Script: - superclass: BaseScript - events: [] - properties: - - Source - ScriptBuilder: - superclass: Instance - events: [] - properties: [] - ScriptChangeService: - superclass: Instance - events: - - ScriptAdded - - ScriptBeingRemoved - - ScriptChanged - - ScriptFullNameChanged - - ScriptSourceChanged - properties: [] - ScriptCloneWatcher: - superclass: Instance - events: [] - properties: [] - ScriptCloneWatcherHelper: - superclass: Instance - events: [] - properties: [] - ScriptContext: - superclass: Instance - events: - - Error - - ErrorDetailed - properties: - - ScriptsDisabled - ScriptDebugger: - superclass: Instance - events: - - BreakpointAdded - - BreakpointRemoved - - EncounteredBreak - - Resuming - - WatchAdded - - WatchRemoved - properties: - - CurrentLine - - IsDebugging - - IsPaused - - Script - ScriptDocument: - superclass: Instance - events: - - SelectionChanged - - ViewportChanged - properties: [] - ScriptEditorService: - superclass: Instance - events: - - TextDocumentDidChange - - TextDocumentDidClose - - TextDocumentDidOpen - properties: [] - ScriptRegistrationService: - superclass: Instance - events: [] - properties: [] - ScriptRuntime: - superclass: Instance - events: [] - properties: [] - ScriptService: - superclass: Instance - events: [] - properties: [] - ScrollingFrame: - superclass: GuiObject - events: [] - properties: - - AbsoluteCanvasSize - - AbsoluteWindowSize - - AutomaticCanvasSize - - BottomImage - - CanvasPosition - - CanvasSize - - ElasticBehavior - - HorizontalBarRect - - HorizontalScrollBarInset - - MaxCanvasPosition - - MidImage - - ScrollBarImageColor3 - - ScrollBarImageTransparency - - ScrollBarThickness - - ScrollVelocity - - ScrollingDirection - - ScrollingEnabled - - TopImage - - VerticalBarRect - - VerticalScrollBarInset - - VerticalScrollBarPosition - Seat: - superclass: Part - events: [] - properties: - - Disabled - - Occupant - Selection: - superclass: Instance - events: - - SelectionChanged - properties: - - ActiveInstance - - SelectionBoxThickness - - SelectionLineThickness - - SelectionThickness - - ShowBoundingBox - SelectionBox: - superclass: InstanceAdornment - events: [] - properties: - - LineThickness - - StudioSelectionBox - - SurfaceColor - - SurfaceColor3 - - SurfaceTransparency - SelectionHighlightManager: - superclass: Instance - events: [] - properties: [] - SelectionLasso: - superclass: GuiBase3d - events: [] - properties: - - Humanoid - SelectionPartLasso: - superclass: SelectionLasso - events: [] - properties: - - Part - SelectionPointLasso: - superclass: SelectionLasso - events: [] - properties: - - Point - SelectionSphere: - superclass: PVAdornment - events: [] - properties: - - SurfaceColor - - SurfaceColor3 - - SurfaceTransparency - SensorBase: - superclass: Instance - events: - - OnSensorOutputChanged - properties: - - UpdateType - ServerReplicator: - superclass: NetworkReplicator - events: [] - properties: [] - ServerScriptService: - superclass: Instance - events: [] - properties: - - LoadStringEnabled - ServerStorage: - superclass: Instance - events: [] - properties: [] - ServiceProvider: - superclass: Instance - events: - - Close - - CloseLate - - ServiceAdded - - ServiceRemoving - properties: [] - ServiceVisibilityService: - superclass: Instance - events: [] - properties: - - VisibleServices - SessionService: - superclass: Instance - events: [] - properties: [] - SharedTableRegistry: - superclass: Instance - events: [] - properties: [] - Shirt: - superclass: Clothing - events: [] - properties: - - ShirtTemplate - ShirtGraphic: - superclass: CharacterAppearance - events: [] - properties: - - Color3 - - Graphic - ShorelineUpgraderService: - superclass: Instance - events: - - Status - properties: [] - SkateboardController: - superclass: Controller - events: - - AxisChanged - properties: - - Steer - - Throttle - SkateboardPlatform: - superclass: Part - events: - - Equipped - - MoveStateChanged - - Unequipped - - equipped - - unequipped - properties: - - Controller - - ControllingHumanoid - - Steer - - StickyWheels - - Throttle - Skin: - superclass: CharacterAppearance - events: [] - properties: - - SkinColor - Sky: - superclass: Instance - events: [] - properties: - - CelestialBodiesShown - - MoonAngularSize - - MoonTextureId - - SkyboxBk - - SkyboxDn - - SkyboxFt - - SkyboxLf - - SkyboxRt - - SkyboxUp - - StarCount - - SunAngularSize - - SunTextureId - SlidingBallConstraint: - superclass: Constraint - events: [] - properties: - - ActuatorType - - CurrentPosition - - LimitsEnabled - - LinearResponsiveness - - LowerLimit - - MotorMaxAcceleration - - MotorMaxForce - - Restitution - - ServoMaxForce - - Size - - Speed - - TargetPosition - - UpperLimit - - Velocity - Smoke: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - Opacity - - RiseVelocity - - Size - - TimeScale - SmoothVoxelsUpgraderService: - superclass: Instance - events: - - Status - properties: [] - Snap: - superclass: JointInstance - events: [] - properties: [] - SnippetService: - superclass: Instance - events: [] - properties: [] - SocialService: - superclass: Instance - events: - - GameInvitePromptClosed - - PromptInviteRequested - properties: [] - SolidModelContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - Sound: - superclass: Instance - events: - - DidLoop - - Ended - - Loaded - - Paused - - Played - - Resumed - - Stopped - properties: - - ChannelCount - - EmitterSize - - IsLoaded - - IsPaused - - IsPlaying - - IsSpatial - - LoopRegion - - Looped - - MaxDistance - - MinDistance - - Pitch - - PlayOnRemove - - PlaybackLoudness - - PlaybackRegion - - PlaybackRegionsEnabled - - PlaybackSpeed - - Playing - - RollOffGain - - RollOffMaxDistance - - RollOffMinDistance - - RollOffMode - - SoundGroup - - SoundId - - TimeLength - - TimePosition - - UsageContextPermission - - Volume - - isPlaying - SoundEffect: - superclass: Instance - events: [] - properties: - - Enabled - - Priority - SoundGroup: - superclass: Instance - events: [] - properties: - - Volume - SoundService: - superclass: Instance - events: - - DeviceListChanged - properties: - - AmbientReverb - - DistanceFactor - - DopplerScale - - RespectFilteringEnabled - - RolloffScale - - VolumetricAudio - Sparkles: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - SparkleColor - - TimeScale - SpawnLocation: - superclass: Part - events: [] - properties: - - AllowTeamChangeOnTouch - - Duration - - Enabled - - Neutral - - TeamColor - SpawnerService: - superclass: Instance - events: [] - properties: [] - Speaker: - superclass: Instance - events: [] - properties: - - ChannelCount - - PlaybackLoudness - - RollOffMaxDistance - - RollOffMinDistance - - RollOffMode - - SoundGroup - - Source - - Volume - SpecialMesh: - superclass: FileMesh - events: [] - properties: - - MeshType - SphereHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Radius - SpotLight: - superclass: Light - events: [] - properties: - - Angle - - Face - - Range - SpringConstraint: - superclass: Constraint - events: [] - properties: - - Coils - - CurrentLength - - Damping - - FreeLength - - LimitsEnabled - - MaxForce - - MaxLength - - MinLength - - Radius - - Stiffness - - Thickness - StackFrame: - superclass: Instance - events: [] - properties: - - FrameId - - FrameName - - FrameType - - Globals - - Line - - Locals - - Populated - - Script - - Upvalues - StandalonePluginScripts: - superclass: Instance - events: [] - properties: [] - StandardPages: - superclass: Pages - events: [] - properties: [] - StarterCharacterScripts: - superclass: StarterPlayerScripts - events: [] - properties: [] - StarterGear: - superclass: Instance - events: [] - properties: [] - StarterGui: - superclass: BasePlayerGui - events: - - CoreGuiChangedSignal - properties: - - ProcessUserInput - - ResetPlayerGuiOnSpawn - - RtlTextSupport - - ScreenOrientation - - ShowDevelopmentGui - - VirtualCursorMode - StarterPack: - superclass: Instance - events: [] - properties: [] - StarterPlayer: - superclass: Instance - events: [] - properties: - - AllowCustomAnimations - - AutoJumpEnabled - - CameraMaxZoomDistance - - CameraMinZoomDistance - - CameraMode - - CharacterJumpHeight - - CharacterJumpPower - - CharacterMaxSlopeAngle - - CharacterUseJumpPower - - CharacterWalkSpeed - - DevCameraOcclusionMode - - DevComputerCameraMovementMode - - DevComputerMovementMode - - DevTouchCameraMovementMode - - DevTouchMovementMode - - EnableDynamicHeads - - EnableMouseLockOption - - GameSettingsAssetIDFace - - GameSettingsAssetIDHead - - GameSettingsAssetIDLeftArm - - GameSettingsAssetIDLeftLeg - - GameSettingsAssetIDPants - - GameSettingsAssetIDRightArm - - GameSettingsAssetIDRightLeg - - GameSettingsAssetIDShirt - - GameSettingsAssetIDTeeShirt - - GameSettingsAssetIDTorso - - GameSettingsAvatar - - GameSettingsR15Collision - - GameSettingsScaleRangeBodyType - - GameSettingsScaleRangeHead - - GameSettingsScaleRangeHeight - - GameSettingsScaleRangeProportion - - GameSettingsScaleRangeWidth - - HealthDisplayDistance - - HumanoidStateMachineMode - - LoadCharacterAppearance - - 'LoadCharacterLayeredClothing ' - - NameDisplayDistance - - UserEmotesEnabled - StarterPlayerScripts: - superclass: Instance - events: [] - properties: [] - Stats: - superclass: Instance - events: [] - properties: - - ContactsCount - - DataReceiveKbps - - DataSendKbps - - HeartbeatTimeMs - - InstanceCount - - MovingPrimitivesCount - - PhysicsReceiveKbps - - PhysicsSendKbps - - PhysicsStepTimeMs - - PrimitivesCount - StatsItem: - superclass: Instance - events: [] - properties: - - DisplayName - Status: - superclass: Model - events: [] - properties: [] - StringValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - Studio: - superclass: Instance - events: - - ThemeChanged - properties: - - '"TODO" Color' - - '"function" Color' - - '"local" Color' - - '"nil" Color' - - '"self" Color' - - Active Color - - Active Hover Over Color - - Always Save Script Changes - - Animate Hover Over - - Auto Clean Empty Line - - Auto Closing Brackets - - Auto Closing Quotes - - Auto Delete Closing Brackets and Quotes - - Auto Indent Rule - - Auto-Recovery Enabled - - Auto-Recovery Interval (Minutes) - - Auto-Recovery Path - - Automatically commit locked scripts when you save or publish to Roblox - - Background Color - - Basic Objects Display Mode - - Bool Color - - Bracket Color - - Built-in Function Color - - Camera Mouse Wheel Speed - - Camera Pan Speed - - Camera Shift Speed - - Camera Speed - - Camera Zoom to Mouse Position - - Clear Output On Start - - CommandBarLocalState - - Comment Color - - Current Line Highlight Color - - Debugger Current Line Color - - Debugger Error Line Color - - DefaultScriptFileDir - - DeprecatedObjectsShown - - Display Team Create toggle when creating a new experience - - DisplayLanguage - - Doc View Code Background Color - - Drag Multiple Parts As Single Part - - Enable Autocomplete - - Enable Autocomplete Doc View - - Enable CoreScript Debugger - - Enable Http Sandboxing - - Enable Internal Beta Features - - Enable Internal Features - - Enable Script Analysis - - Enable Scrollbar Markers - - Enable Signature Help - - Enable Signature Help Doc View - - Enable Temporary Tabs - - Enable Temporary Tabs In Explorer - - Enable Type Hover - - EnableOnTypeAutocomplete - - Error Color - - File > New creates a place with Team Create off - - Find Selection Background Color - - Font - - Format On Paste - - Format On Type - - Function Name Color - - Highlight Current Line - - Highlight Occurances - - Hover Animate Speed - - Hover Box Thickness - - Hover Line Thickness - - Hover Over Color - - IconOverrideDir - - Indent Using Spaces - - Keyword Color - - Line Thickness - - LocalAssetsFolder - - LuaDebuggerEnabled - - LuaDebuggerEnabledAtStartup - - Luau Keyword Color - - Main Volume - - Matching Word Background Color - - Maximum Output Lines - - Menu Item Background Color - - Method Color - - Number Color - - Only Play Audio from Window in Focus - - Operator Color - - Output Font - - Output Layout Mode - - PermissionLevelShown - - Physical Draggers Select Scope By Default - - Pivot Snap To Geometry Color - - PluginDebuggingEnabled - - PluginsDir - - Primary Text Color - - Property Color - - Render Throttle Percentage - - Respect Studio shortcuts when game has focus - - Ruler Color - - Rulers - - RuntimeUndoBehavior - - Script Editor Color Preset - - Script Editor Scrollbar Background Color - - Script Editor Scrollbar Handle Color - - ScriptEditorMenuBorderColor - - ScriptEditorShouldShowPluginMethods - - ScriptTimeoutLength - - Scroll Past Last Line - - Search Content For Core Scripts - - Secondary Text Color - - Select Color - - Select/Hover Color - - Selected Menu Item Background Color - - Selected Text Color - - Selection Background Color - - Selection Box Thickness - - Selection Color - - Selection Highlight Thickness - - Selection Line Thickness - - Server Audio Behavior - - Set Pivot of Imported Parts - - Show Core GUI in Explorer while Playing - - Show Diagnostics Bar - - Show FileSyncService - - Show Hidden Objects in Explorer - - Show Hover Over - - Show Light Guides - - Show Navigation Labels - - Show Navigation Mesh - - Show Pathfinding Links - - Show Plugin GUI Service in Explorer - - Show QT warnings in output - - Show Whitespace - - Show plus button on hover in Explorer - - ShowCorePackagesInExplorer - - Skip Closing Brackets and Quotes - - String Color - - Tab Width - - Text Color - - Text Wrapping - - Theme - - UI Theme - - Use Bounding Box Move Handles - - Warning Color - - Whitespace Color - StudioAssetService: - superclass: Instance - events: - - OnConvertToPackageResult - - OnPublishPackageResult - - OnSaveToRoblox - properties: [] - StudioData: - superclass: Instance - events: [] - properties: - - EnableScriptCollabByDefaultOnLoad - StudioDeviceEmulatorService: - superclass: Instance - events: - - CurrentDeviceIdChanged - - OrientationChanged - - TouchInBoundsChanged - - TouchPositionsChanged - properties: - - HasMultiTouchStarted - - IsMultiTouchEmulationOn - - IsMultiTouchEnabled - - PivotPosition - StudioPublishService: - superclass: Instance - events: - - GameNameUpdated - - GamePublishCancelled - - GamePublishFinished - - OnSaveOrPublishPlaceToRoblox - properties: [] - StudioScriptDebugEventListener: - superclass: Instance - events: [] - properties: [] - StudioSdkService: - superclass: Instance - events: [] - properties: [] - StudioService: - superclass: Instance - events: - - OnImportFromRoblox - - OnOpenGameSettings - - OnOpenManagePackagePlugin - - OnPluginInstalledFromToolbox - - OnPluginInstalledFromWeb - - OnPublishAsPlugin - - OnSaveToRoblox - - PromptTransformPluginCheckEnable - - SaveLocallyAsComplete - properties: - - ActiveScript - - AlignDraggedObjects - - DraggerSolveConstraints - - DrawConstraintsOnTop - - GridSize - - HoverInstance - - InstalledPluginData - - PivotSnapToGeometry - - RotateIncrement - - ShowActiveInstanceHighlight - - ShowConstraintDetails - - StudioLocaleId - - UseLocalSpace - StudioTheme: - superclass: Instance - events: [] - properties: [] - SunRaysEffect: - superclass: PostEffect - events: [] - properties: - - Intensity - - Spread - SurfaceAppearance: - superclass: Instance - events: [] - properties: - - AlphaMode - - ColorMap - - MetalnessMap - - NormalMap - - RoughnessMap - - TexturePack - SurfaceGui: - superclass: SurfaceGuiBase - events: [] - properties: - - AlwaysOnTop - - Brightness - - CanvasSize - - ClipsDescendants - - HorizontalCurvature - - LightInfluence - - PixelsPerStud - - Shape - - SizingMode - - ToolPunchThroughDistance - - ZOffset - SurfaceGuiBase: - superclass: LayerCollector - events: [] - properties: - - Active - - Adornee - - Face - SurfaceLight: - superclass: Light - events: [] - properties: - - Angle - - Face - - Range - SurfaceSelection: - superclass: PartAdornment - events: [] - properties: - - TargetSurface - SwimController: - superclass: ControllerBase - events: [] - properties: - - AccelerationTime - - PitchMaxTorque - - PitchSpeedFactor - - RollMaxTorque - - RollSpeedFactor - SyncScriptBuilder: - superclass: ScriptBuilder - events: [] - properties: - - CoverageInfo - - DebugInfo - - PackAsSource - - RawBytecode - TaskScheduler: - superclass: Instance - events: [] - properties: - - SchedulerDutyCycle - - SchedulerRate - - ThreadPoolConfig - - ThreadPoolSize - Team: - superclass: Instance - events: - - PlayerAdded - - PlayerRemoved - properties: - - AutoAssignable - - AutoColorCharacters - - ChildOrder - - Score - - TeamColor - TeamCreateData: - superclass: Instance - events: [] - properties: [] - TeamCreatePublishService: - superclass: Instance - events: [] - properties: [] - TeamCreateService: - superclass: Instance - events: - - ToggleManageCollaborators - properties: [] - Teams: - superclass: Instance - events: [] - properties: [] - TeleportAsyncResult: - superclass: Instance - events: [] - properties: - - PrivateServerId - - ReservedServerAccessCode - TeleportOptions: - superclass: Instance - events: [] - properties: - - ReservedServerAccessCode - - ServerInstanceId - - ShouldReserveServer - TeleportService: - superclass: Instance - events: - - LocalPlayerArrivedFromTeleport - - MenuTeleportAttempt - - TeleportInitFailed - properties: - - CustomizedTeleportUI - TemporaryCageMeshProvider: - superclass: Instance - events: [] - properties: [] - TemporaryScriptService: - superclass: Instance - events: [] - properties: [] - Terrain: - superclass: BasePart - events: [] - properties: - - Decoration - - IsSmooth - - LastUsedModificationMethod - - MaterialColors - - MaxExtents - - ShorelinesUpgraded - - SmoothVoxelsUpgraded - - WaterColor - - WaterReflectance - - WaterTransparency - - WaterWaveSize - - WaterWaveSpeed - TerrainDetail: - superclass: Instance - events: [] - properties: - - ColorMap - - Face - - MaterialPattern - - MetalnessMap - - NormalMap - - RoughnessMap - - StudsPerTile - TerrainRegion: - superclass: Instance - events: [] - properties: - - IsSmooth - - SizeInCells - TestService: - superclass: Instance - events: - - ServerCollectConditionalResult - - ServerCollectResult - properties: - - AutoRuns - - Description - - ErrorCount - - ExecuteWithStudioRun - - Is30FpsThrottleEnabled - - IsPhysicsEnvironmentalThrottled - - IsSleepAllowed - - NumberOfPlayers - - SimulateSecondsLag - - TestCount - - Timeout - - WarnCount - TextBox: - superclass: GuiObject - events: - - FocusLost - - Focused - - ReturnPressedFromOnScreenKeyboard - properties: - - ClearTextOnFocus - - ContentText - - CursorPosition - - Font - - FontFace - - FontSize - - LineHeight - - ManualFocusRelease - - MaxVisibleGraphemes - - MultiLine - - OverlayNativeInput - - PlaceholderColor3 - - PlaceholderText - - ReturnKeyType - - RichText - - SelectionStart - - ShowNativeInput - - Text - - TextBounds - - TextColor - - TextColor3 - - TextEditable - - TextFits - - TextInputType - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextBoxService: - superclass: Instance - events: [] - properties: [] - TextButton: - superclass: GuiButton - events: [] - properties: - - ContentText - - Font - - FontFace - - FontSize - - LineHeight - - LocalizedText - - MaxVisibleGraphemes - - RichText - - Text - - TextBounds - - TextColor - - TextColor3 - - TextFits - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextChannel: - superclass: Instance - events: - - MessageReceived - properties: [] - TextChatCommand: - superclass: Instance - events: - - Triggered - properties: - - Enabled - - PrimaryAlias - - SecondaryAlias - TextChatConfigurations: - superclass: Instance - events: [] - properties: [] - TextChatMessage: - superclass: Instance - events: [] - properties: - - MessageId - - Metadata - - PrefixText - - Status - - Text - - TextChannel - - TextSource - - Timestamp - TextChatMessageProperties: - superclass: Instance - events: [] - properties: - - PrefixText - - Text - TextChatService: - superclass: Instance - events: - - MessageReceived - - SendingMessage - properties: - - ChatVersion - - CreateDefaultCommands - - CreateDefaultTextChannels - TextFilterResult: - superclass: Instance - events: [] - properties: [] - TextLabel: - superclass: GuiLabel - events: [] - properties: - - ContentText - - Font - - FontFace - - FontSize - - LineHeight - - LocalizedText - - MaxVisibleGraphemes - - RichText - - Text - - TextBounds - - TextColor - - TextColor3 - - TextFits - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextService: - superclass: Instance - events: [] - properties: [] - TextSource: - superclass: Instance - events: [] - properties: - - CanSend - - UserId - Texture: - superclass: Decal - events: [] - properties: - - OffsetStudsU - - OffsetStudsV - - StudsPerTileU - - StudsPerTileV - TextureGuiExperimental: - superclass: LayerCollector - events: [] - properties: - - Size - - TemporaryId - ThirdPartyUserService: - superclass: Instance - events: - - ActiveGamepadAdded - - ActiveGamepadRemoved - - ActiveUserSignedOut - properties: [] - ThreadState: - superclass: Instance - events: [] - properties: - - FrameCount - - Populated - - ThreadId - - ThreadName - TimerService: - superclass: Instance - events: [] - properties: [] - ToastNotificationService: - superclass: Instance - events: [] - properties: [] - Tool: - superclass: BackpackItem - events: - - Activated - - Deactivated - - Equipped - - Unequipped - properties: - - CanBeDropped - - Enabled - - Grip - - GripForward - - GripPos - - GripRight - - GripUp - - ManualActivationOnly - - RequiresHandle - - ToolTip - Torque: - superclass: Constraint - events: [] - properties: - - RelativeTo - - Torque - TorsionSpringConstraint: - superclass: Constraint - events: [] - properties: - - Coils - - CurrentAngle - - Damping - - LimitEnabled - - LimitsEnabled - - MaxAngle - - MaxTorque - - Radius - - Restitution - - Stiffness - TotalCountTimeIntervalItem: - superclass: StatsItem - events: [] - properties: [] - TouchInputService: - superclass: Instance - events: [] - properties: [] - TouchTransmitter: - superclass: Instance - events: [] - properties: [] - TracerService: - superclass: Instance - events: [] - properties: [] - TrackerLodController: - superclass: Instance - events: - - UpdateState - properties: - - AudioMode - - VideoExtrapolationMode - - VideoLodMode - - VideoMode - TrackerStreamAnimation: - superclass: Instance - events: [] - properties: [] - Trail: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - Brightness - - Color - - Enabled - - FaceCamera - - Lifetime - - LightEmission - - LightInfluence - - MaxLength - - MinLength - - Texture - - TextureLength - - TextureMode - - Transparency - - WidthScale - Translator: - superclass: Instance - events: [] - properties: - - LocaleId - TremoloSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Duty - - Frequency - TriangleMeshPart: - superclass: BasePart - events: [] - properties: - - CollisionFidelity - - MeshSize - TrussPart: - superclass: BasePart - events: [] - properties: - - Style - Tween: - superclass: TweenBase - events: [] - properties: - - Instance - - TweenInfo - TweenBase: - superclass: Instance - events: - - Completed - properties: - - PlaybackState - TweenService: - superclass: Instance - events: [] - properties: [] - UGCValidationService: - superclass: Instance - events: [] - properties: [] - UIAspectRatioConstraint: - superclass: UIConstraint - events: [] - properties: - - AspectRatio - - AspectType - - DominantAxis - UIBase: - superclass: Instance - events: [] - properties: [] - UIComponent: - superclass: UIBase - events: [] - properties: [] - UIConstraint: - superclass: UIComponent - events: [] - properties: [] - UICorner: - superclass: UIComponent - events: [] - properties: - - CornerRadius - UIGradient: - superclass: UIComponent - events: [] - properties: - - Color - - Enabled - - Offset - - Rotation - - Transparency - UIGridLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - AbsoluteCellCount - - AbsoluteCellSize - - CellPadding - - CellSize - - FillDirectionMaxCells - - StartCorner - UIGridStyleLayout: - superclass: UILayout - events: [] - properties: - - AbsoluteContentSize - - FillDirection - - HorizontalAlignment - - SortOrder - - VerticalAlignment - UILayout: - superclass: UIComponent - events: [] - properties: [] - UIListLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - Padding - UIPadding: - superclass: UIComponent - events: [] - properties: - - PaddingBottom - - PaddingLeft - - PaddingRight - - PaddingTop - UIPageLayout: - superclass: UIGridStyleLayout - events: - - PageEnter - - PageLeave - - Stopped - properties: - - Animated - - Circular - - CurrentPage - - EasingDirection - - EasingStyle - - GamepadInputEnabled - - Padding - - ScrollWheelInputEnabled - - TouchInputEnabled - - TweenTime - UIScale: - superclass: UIComponent - events: [] - properties: - - Scale - UISizeConstraint: - superclass: UIConstraint - events: [] - properties: - - MaxSize - - MinSize - UIStroke: - superclass: UIComponent - events: [] - properties: - - ApplyStrokeMode - - Color - - Enabled - - LineJoinMode - - Thickness - - Transparency - UITableLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - FillEmptySpaceColumns - - FillEmptySpaceRows - - MajorAxis - - Padding - UITextSizeConstraint: - superclass: UIConstraint - events: [] - properties: - - MaxTextSize - - MinTextSize - UnionOperation: - superclass: PartOperation - events: [] - properties: [] - UniversalConstraint: - superclass: Constraint - events: [] - properties: - - LimitsEnabled - - MaxAngle - - Radius - - Restitution - UnvalidatedAssetService: - superclass: Instance - events: [] - properties: [] - UserGameSettings: - superclass: Instance - events: - - FullscreenChanged - - PerformanceStatsVisibleChanged - - StudioModeChanged - properties: - - AllTutorialsDisabled - - CameraMode - - CameraYInverted - - ChatVisible - - ComputerCameraMovementMode - - ComputerMovementMode - - ControlMode - - DefaultCameraID - - Fullscreen - - GamepadCameraSensitivity - - GraphicsQualityLevel - - HasEverUsedVR - - IsUsingCameraYInverted - - IsUsingGamepadCameraSensitivity - - MasterVolume - - MicroProfilerWebServerEnabled - - MicroProfilerWebServerIP - - MicroProfilerWebServerPort - - MouseSensitivity - - MouseSensitivityFirstPerson - - MouseSensitivityThirdPerson - - OnScreenProfilerEnabled - - OnboardingsCompleted - - PerformanceStatsVisible - - PlayerHeight - - RCCProfilerRecordFrameRate - - RCCProfilerRecordTimeFrame - - RotationType - - SavedQualityLevel - - StartMaximized - - StartScreenPosition - - StartScreenSize - - TouchCameraMovementMode - - TouchMovementMode - - UsedCoreGuiIsVisibleToggle - - UsedCustomGuiIsVisibleToggle - - UsedHideHudShortcut - - VREnabled - - VRPlayMode - - VRRotationIntensity - - VRSafetyBubbleMode - - VRSmoothRotationEnabled - - VignetteEnabled - UserInputService: - superclass: Instance - events: - - DeviceAccelerationChanged - - DeviceGravityChanged - - DeviceRotationChanged - - GamepadConnected - - GamepadDisconnected - - InputBegan - - InputChanged - - InputEnded - - JumpRequest - - LastInputTypeChanged - - PointerAction - - StatusBarTapped - - TextBoxFocusReleased - - TextBoxFocused - - TouchEnded - - TouchLongPress - - TouchMoved - - TouchPan - - TouchPinch - - TouchRotate - - TouchStarted - - TouchSwipe - - TouchTap - - TouchTapInWorld - - UserCFrameChanged - - WindowFocusReleased - - WindowFocused - properties: - - AccelerometerEnabled - - BottomBarSize - - GamepadEnabled - - GazeSelectionEnabled - - GyroscopeEnabled - - KeyboardEnabled - - LegacyInputEventsEnabled - - ModalEnabled - - MouseBehavior - - MouseDeltaSensitivity - - MouseEnabled - - MouseIcon - - MouseIconEnabled - - NavBarSize - - OnScreenKeyboardAnimationDuration - - OnScreenKeyboardPosition - - OnScreenKeyboardSize - - OnScreenKeyboardVisible - - OverrideMouseIconBehavior - - RightBarSize - - StatusBarSize - - TouchEnabled - - UserHeadCFrame - - VREnabled - UserService: - superclass: Instance - events: [] - properties: [] - UserSettings: - superclass: GenericSettings - events: [] - properties: [] - UserStorageService: - superclass: LocalStorageService - events: [] - properties: [] - VRService: - superclass: Instance - events: - - NavigationRequested - - TouchpadModeChanged - - UserCFrameChanged - - UserCFrameEnabled - properties: - - AutomaticScaling - - DidPointerHit - - FadeOutViewOnCollision - - GuiInputUserCFrame - - LaserDistance - - PointerHitCFrame - - VRDeviceAvailable - - VRDeviceName - - VREnabled - - VRSessionState - ValueBase: - superclass: Instance - events: [] - properties: [] - Vector3Curve: - superclass: Instance - events: [] - properties: [] - Vector3Value: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - VectorForce: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - Force - - RelativeTo - VehicleController: - superclass: Controller - events: [] - properties: [] - VehicleSeat: - superclass: BasePart - events: [] - properties: - - AreHingesDetected - - Disabled - - HeadsUpDisplay - - MaxSpeed - - Occupant - - Steer - - SteerFloat - - Throttle - - ThrottleFloat - - Torque - - TurnSpeed - VelocityMotor: - superclass: JointInstance - events: [] - properties: - - CurrentAngle - - DesiredAngle - - Hole - - MaxVelocity - VersionControlService: - superclass: Instance - events: [] - properties: - - ScriptCollabEnabled - VideoCaptureService: - superclass: Instance - events: - - DevicesChanged - - Error - - Started - - Stopped - properties: - - Active - - CameraID - VideoFrame: - superclass: GuiObject - events: - - DidLoop - - Ended - - Loaded - - Paused - - Played - properties: - - IsLoaded - - Looped - - Playing - - Resolution - - TimeLength - - TimePosition - - Video - - Volume - ViewportFrame: - superclass: GuiObject - events: [] - properties: - - Ambient - - CurrentCamera - - ImageColor3 - - ImageTransparency - - IsMirrored - - LightColor - - LightDirection - VirtualInputManager: - superclass: Instance - events: - - PlaybackCompleted - - RecordingCompleted - properties: - - AdditionalLuaState - VirtualUser: - superclass: Instance - events: [] - properties: [] - VisibilityCheckDispatcher: - superclass: Instance - events: [] - properties: [] - VisibilityService: - superclass: Instance - events: [] - properties: [] - Visit: - superclass: Instance - events: [] - properties: [] - VoiceChatInternal: - superclass: Instance - events: - - LocalPlayerModerated - - ParticipantsStateChanged - - PlayerMicActivitySignalChange - - StateChanged - properties: - - VoiceChatState - VoiceChatService: - superclass: Instance - events: [] - properties: - - EnableDefaultVoice - - VoiceChatEnabledForPlaceOnRcc - - VoiceChatEnabledForUniverseOnRcc - VoiceSource: - superclass: Instance - events: [] - properties: - - UserId - WedgePart: - superclass: FormFactorPart - events: [] - properties: [] - Weld: - superclass: JointInstance - events: [] - properties: [] - WeldConstraint: - superclass: Instance - events: [] - properties: - - Active - - Enabled - - Part0 - - Part1 - WireframeHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Scale - Workspace: - superclass: WorldRoot - events: - - PersistentLoaded - properties: - - AllowThirdPartySales - - ClientAnimatorThrottling - - CurrentCamera - - DistributedGameTime - - FallenPartsDestroyHeight - - FilteringEnabled - - GlobalWind - - Gravity - - HumanoidOnlySetCollisionsOnStateChange - - InterpolationThrottling - - MeshPartHeadsAndAccessories - - PhysicsSteppingMethod - - RejectCharacterDeletions - - ReplicateInstanceDestroySetting - - Retargeting - - SignalBehavior - - StreamOutBehavior - - StreamingEnabled - - StreamingIntegrityMode - - StreamingMinRadius - - StreamingTargetRadius - - Terrain - - TouchesUseCollisionGroups - WorldModel: - superclass: WorldRoot - events: [] - properties: [] - WorldRoot: - superclass: Model - events: [] - properties: [] - WrapLayer: - superclass: BaseWrap - events: [] - properties: - - AutoSkin - - BindOffset - - Color - - DebugMode - - Enabled - - Order - - Puffiness - - ReferenceMeshId - - ReferenceOrigin - - ReferenceOriginWorld - - ShrinkFactor - WrapTarget: - superclass: BaseWrap - events: [] - properties: - - Color - - DebugMode - - Stiffness diff --git a/Modules/RGBA/selene.toml b/Modules/RGBA/selene.toml deleted file mode 100644 index c1911be..0000000 --- a/Modules/RGBA/selene.toml +++ /dev/null @@ -1 +0,0 @@ -std = "roblox+testez" \ No newline at end of file diff --git a/Modules/RGBA/testez.yml b/Modules/RGBA/testez.yml deleted file mode 100644 index 5c1adda..0000000 --- a/Modules/RGBA/testez.yml +++ /dev/null @@ -1,53 +0,0 @@ ---- -globals: - FIXME: - args: - - required: false - type: string - FOCUS: - args: [] - SKIP: - args: [] - afterAll: - args: - - type: function - afterEach: - args: - - type: function - beforeAll: - args: - - type: function - beforeEach: - args: - - type: function - describe: - args: - - type: string - - type: function - describeFOCUS: - args: - - type: string - - type: function - describeSKIP: - args: - - type: string - - type: function - expect: - args: - - type: any - it: - args: - - type: string - - type: function - itFIXME: - args: - - type: string - - type: function - itFOCUS: - args: - - type: string - - type: function - itSKIP: - args: - - type: string - - type: function \ No newline at end of file diff --git a/Modules/RGBA/wally.toml b/Modules/RGBA/wally.toml deleted file mode 100644 index b04a398..0000000 --- a/Modules/RGBA/wally.toml +++ /dev/null @@ -1,16 +0,0 @@ -[package] -name = "4x8matrix/rgba" -version = "0.1.0" -realm = "shared" -registry = "https://github.com/UpliftGames/wally-index" -licence = "MIT" -authors = ["AsynchronousMatrix"] - -description = "A serialisation library to convert Roblox's flat pixel array into a image binary formats." - -exclude = ["**"] -include = ["Source", "Source/*", "default.project.json", "wally.toml"] - -[dev-dependencies] - -[dependencies] \ No newline at end of file diff --git a/Modules/RobloxControls/Source/init.luau b/Modules/RobloxControls/Source/init.luau deleted file mode 100644 index 75eac79..0000000 --- a/Modules/RobloxControls/Source/init.luau +++ /dev/null @@ -1,263 +0,0 @@ -local ContextActionService = game:GetService("ContextActionService") -local StarterGui = game:GetService("StarterGui") -local Players = game:GetService("Players") - -local Promise = require(script.Parent.Promise) - -local FREEZE_ACTION = "RobloxControls-FreezeAction" - -local resetRequestedBindable = Instance.new("BindableEvent") -local gameCoreGuiElements = { - Enum.CoreGuiType.All, -} - ---[=[ - @class RobloxControls - - RobloxControls is a package that wraps around Roblox CoreGui and Core actions, in the hopes of reducing boilerplate - code and improving the interaction between Roblox v Developer. - - When this module is required, it will by default disable Respawning, this module implements it's own Respawn loop. -]=] -local RobloxControls = {} - -RobloxControls.Public = {} -RobloxControls.Private = {} - -function RobloxControls.Private.OnRespawnCharacterRequested() - local localPlayer = Players.LocalPlayer - local character = localPlayer.Character - - if not character then - return - end - - local humanoid = character:FindFirstChildOfClass("Humanoid") - - if not humanoid then - return - end - - humanoid.Health = 0 -end - ---[=[ - @method SetCoreAsync - @within RobloxControls - - @return promise - - Wraps a `:SetCore` call into a promise, will attempt to keep calling `:SetCore` if the initial request failed. - - This method is useful to combat Core actions being called, before Roblox has registered them: - - > SetCore: ResetButtonCallback has not been registered by the CoreScripts - - ```lua - RobloxControls:SetCoreAsync("SendNotification", { - Title = "Example Core Notification", - Text = "Hello, World!" - }) - ``` -]=] -function RobloxControls.Public.SetCoreAsync(self: RobloxControls, ...) - local setCoreParameters = { ... } - - return Promise.new(function(resolve) - local success - local response - - while not success do - success, response = pcall(StarterGui.SetCore, StarterGui, table.unpack(setCoreParameters)) - - if not success then - warn(response) - end - - task.wait(0.5) - end - - return resolve() - end) -end - ---[=[ - @method GetCoreAsync - @within RobloxControls - - @return promise - - Wraps a `:GetCore` call into a promise, will attempt to keep calling `:GetCore` if the initial request failed. - - This method is useful to combat Core actions being called, before Roblox has registered them: - - > GetCore: ResetButtonCallback has not been registered by the CoreScripts - - ```lua - local isDevConsoleVisible = RobloxControls:GetCoreAsync("DevConsoleVisible"):expect() - ``` -]=] -function RobloxControls.Public.GetCoreAsync(self: RobloxControls, ...) - local getCoreParameters = { ... } - - return Promise.new(function(resolve) - local success - local response - - while not success do - success, response = pcall(StarterGui.SetCore, StarterGui, table.unpack(getCoreParameters)) - - if not success then - warn(response) - end - - task.wait(0.5) - end - - return resolve(response) - end) -end - ---[=[ - @method SetRespawnCallback - @within RobloxControls - - Set the respawn callback, this callback will be invoked when the player resets their character through the roblox Core UI. - - ```lua - RobloxControls:SetRespawnCallback(function() - print("Local-Player has tried to reset their character!") - end) - ``` -]=] -function RobloxControls.Public.SetRespawnCallback(self: RobloxControls, callback: () -> ()) - RobloxControls.Private.OnRespawnCharacterRequested = callback -end - ---[=[ - @method DisableRespawning - @within RobloxControls - - Convenience method for disabling respawning - - ```lua - RobloxControls:DisableRespawning() - ``` -]=] -function RobloxControls.Public.DisableRespawning(self: RobloxControls) - self:SetCoreAsync("ResetButtonCallback", false) -end - ---[=[ - @method EnableRespawning - @within RobloxControls - - Convenience method for enabling respawning - - ```lua - RobloxControls:EnableRespawning() - ``` -]=] -function RobloxControls.Public.EnableRespawning(self: RobloxControls) - self:SetCoreAsync("ResetButtonCallback", resetRequestedBindable) -end - ---[=[ - @method SetDefaultCoreGui - @within RobloxControls - - Enables a developer to specify specific Core Gui elements that will be rendered in the current place. - - Any elements that are NOT passed into this function, will be disabled, and should remain disabled. - - ```lua - RobloxControls:SetDefaultCoreGui( - Enum.CoreGuiType.Chat -- the current game will ONLY support the Chat Core UI - ) - ``` -]=] -function RobloxControls.Public.SetDefaultCoreGui(self: RobloxControls, ...) - gameCoreGuiElements = { ... } - - StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, false) - - for _, coreGuiType in gameCoreGuiElements do - StarterGui:SetCoreGuiEnabled(coreGuiType, true) - end -end - ---[=[ - @method EnableCoreGui - @within RobloxControls - - Enables the CoreGui specified through the `:SetDefaultCoreGui` method. - - ```lua - RobloxControls:EnableCoreGui() - ``` -]=] -function RobloxControls.Public.EnableCoreGui(self: RobloxControls) - for _, coreGuiType in gameCoreGuiElements do - StarterGui:SetCoreGuiEnabled(coreGuiType, true) - end -end - ---[=[ - @method DisableCoreGui - @within RobloxControls - - Disables the CoreGui specified through the `:SetDefaultCoreGui` method. - - ```lua - RobloxControls:EnableCoreGui() - ``` -]=] -function RobloxControls.Public.DisableCoreGui(self: RobloxControls) - for _, coreGuiType in gameCoreGuiElements do - StarterGui:SetCoreGuiEnabled(coreGuiType, false) - end -end - ---[=[ - @method DisableCharacterInput - @within RobloxControls - - Disables player-character input. - - ```lua - RobloxControls:DisableCharacterInput() - ``` -]=] -function RobloxControls.Public.DisableCharacterInput(self: RobloxControls) - ContextActionService:BindAction( - FREEZE_ACTION, - function() - return Enum.ContextActionResult.Sink - end, - false, - table.unpack(Enum.PlayerActions:GetEnumItems()) - ) -end - ---[=[ - @method EnableCharacterInput - @within RobloxControls - - Enables player-character input. - - ```lua - RobloxControls:EnableCharacterInput() - ``` -]=] -function RobloxControls.Public.EnableCharacterInput(self: RobloxControls) - ContextActionService:UnbindAction(FREEZE_ACTION) -end - -RobloxControls.Public:DisableRespawning() -resetRequestedBindable.Event:Connect(function() - RobloxControls.Private.OnRespawnCharacterRequested() -end) - -type RobloxControls = typeof(RobloxControls.Public) - -return RobloxControls.Public \ No newline at end of file diff --git a/Modules/RobloxControls/Source/init.spec.luau b/Modules/RobloxControls/Source/init.spec.luau deleted file mode 100644 index 65d7220..0000000 --- a/Modules/RobloxControls/Source/init.spec.luau +++ /dev/null @@ -1,3 +0,0 @@ -return function() - -end \ No newline at end of file diff --git a/Modules/RobloxControls/Tests/Runtime.server.luau b/Modules/RobloxControls/Tests/Runtime.server.luau deleted file mode 100644 index 16785c6..0000000 --- a/Modules/RobloxControls/Tests/Runtime.server.luau +++ /dev/null @@ -1,5 +0,0 @@ -local EXECUTE_PROJECT_TESTEZ_TESTS = true - -if EXECUTE_PROJECT_TESTEZ_TESTS then - return -end \ No newline at end of file diff --git a/Modules/RobloxControls/aftman.toml b/Modules/RobloxControls/aftman.toml deleted file mode 100644 index 349f6b9..0000000 --- a/Modules/RobloxControls/aftman.toml +++ /dev/null @@ -1,9 +0,0 @@ -# This file lists tools managed by Aftman, a cross-platform toolchain manager. -# For more information, see https://github.com/LPGhatguy/aftman - -# To add a new tool, add an entry to this table. - -[tools] -rojo = "rojo-rbx/rojo@7.3.0" -selene = "Kampfkarren/selene@0.25.0" -wally = "UpliftGames/wally@0.3.2" \ No newline at end of file diff --git a/Modules/RobloxControls/default.project.json b/Modules/RobloxControls/default.project.json deleted file mode 100644 index d4801ac..0000000 --- a/Modules/RobloxControls/default.project.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "name": "RobloxControls", - "tree": { - "$path": "Source" - } -} \ No newline at end of file diff --git a/Modules/RobloxControls/development.project.json b/Modules/RobloxControls/development.project.json deleted file mode 100644 index ba3f23c..0000000 --- a/Modules/RobloxControls/development.project.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "name": "RobloxControls", - "tree": { - "$className": "DataModel", - - "Players": { - "$className": "Players", - "$properties": { - "CharacterAutoLoads": false - } - }, - - "ReplicatedStorage": { - "$className": "ReplicatedStorage", - "$ignoreUnknownInstances": true, - - "Packages": { - "$className": "Folder", - "$path": "Packages", - - "RobloxControls": { - "$path": "Source" - } - }, - - "DevPackages": { - "$className": "Folder", - "$path": "DevPackages" - } - }, - - "ServerScriptService": { - "$className": "ServerScriptService", - "$ignoreUnknownInstances": true, - "$path": "Tests" - } - } -} \ No newline at end of file diff --git a/Modules/RobloxControls/roblox.yml b/Modules/RobloxControls/roblox.yml deleted file mode 100644 index e4089d3..0000000 --- a/Modules/RobloxControls/roblox.yml +++ /dev/null @@ -1,16959 +0,0 @@ -# This file was @generated by generate-roblox-std at 2023-04-11 16:38:39.388332415 +01:00 -base: luau -name: roblox -globals: - Axes.new: - args: - - type: '...' - must_use: true - BrickColor.Black: - args: [] - must_use: true - BrickColor.Blue: - args: [] - must_use: true - BrickColor.DarkGray: - args: [] - must_use: true - BrickColor.Gray: - args: [] - must_use: true - BrickColor.Green: - args: [] - must_use: true - BrickColor.Red: - args: [] - must_use: true - BrickColor.White: - args: [] - must_use: true - BrickColor.Yellow: - args: [] - must_use: true - BrickColor.new: - args: - - type: any - - required: false - type: number - - required: false - type: number - must_use: true - BrickColor.palette: - args: - - type: number - must_use: true - BrickColor.random: - args: [] - must_use: true - CFrame.Angles: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - CFrame.fromAxisAngle: - args: - - type: - display: Vector3 - - type: number - must_use: true - CFrame.fromEulerAngles: - args: - - type: number - - type: number - - type: number - - required: false - type: - display: RotationOrder - must_use: true - CFrame.fromEulerAnglesXYZ: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.fromEulerAnglesYXZ: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.fromMatrix: - args: - - type: - display: Vector3 - - type: - display: Vector3 - - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - CFrame.fromOrientation: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.identity: - property: read-only - CFrame.lookAt: - args: - - type: - display: Vector3 - - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - CFrame.new: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - CatalogSearchParams.new: - args: [] - must_use: true - Color3.fromHSV: - args: - - type: number - - type: number - - type: number - must_use: true - Color3.fromHex: - args: - - type: string - must_use: true - Color3.fromRGB: - args: - - type: number - - type: number - - type: number - must_use: true - Color3.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Color3.toHSV: - args: - - type: - display: Color3 - must_use: true - ColorSequence.new: - args: - - type: any - - required: false - type: - display: Color3 - must_use: true - ColorSequenceKeypoint.new: - args: - - type: number - - type: - display: Color3 - must_use: true - DateTime.fromIsoDate: - args: - - type: string - must_use: true - DateTime.fromLocalTime: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - DateTime.fromUniversalTime: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - DateTime.fromUnixTimestamp: - args: - - type: number - must_use: true - DateTime.fromUnixTimestampMillis: - args: - - type: number - must_use: true - DateTime.now: - args: [] - must_use: true - DebuggerManager: - args: [] - must_use: true - DockWidgetPluginGuiInfo.new: - args: - - required: false - type: - display: InitialDockState - - required: false - type: bool - - required: false - type: bool - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Enum.AccessoryType.Back: - struct: EnumItem - Enum.AccessoryType.DressSkirt: - struct: EnumItem - Enum.AccessoryType.Eyebrow: - struct: EnumItem - Enum.AccessoryType.Eyelash: - struct: EnumItem - Enum.AccessoryType.Face: - struct: EnumItem - Enum.AccessoryType.Front: - struct: EnumItem - Enum.AccessoryType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AccessoryType.Hair: - struct: EnumItem - Enum.AccessoryType.Hat: - struct: EnumItem - Enum.AccessoryType.Jacket: - struct: EnumItem - Enum.AccessoryType.LeftShoe: - struct: EnumItem - Enum.AccessoryType.Neck: - struct: EnumItem - Enum.AccessoryType.Pants: - struct: EnumItem - Enum.AccessoryType.RightShoe: - struct: EnumItem - Enum.AccessoryType.Shirt: - struct: EnumItem - Enum.AccessoryType.Shorts: - struct: EnumItem - Enum.AccessoryType.Shoulder: - struct: EnumItem - Enum.AccessoryType.Sweater: - struct: EnumItem - Enum.AccessoryType.TShirt: - struct: EnumItem - Enum.AccessoryType.TeeShirt: - struct: EnumItem - deprecated: - message: Enum.AccessoryType.TeeShirt was replaced with Enum.AccessoryType.TShirt - replace: - - Enum.AccessoryType.TShirt - Enum.AccessoryType.Unknown: - struct: EnumItem - Enum.AccessoryType.Waist: - struct: EnumItem - Enum.ActionType.Draw: - struct: EnumItem - Enum.ActionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActionType.Lose: - struct: EnumItem - Enum.ActionType.Nothing: - struct: EnumItem - Enum.ActionType.Pause: - struct: EnumItem - Enum.ActionType.Win: - struct: EnumItem - Enum.ActuatorRelativeTo.Attachment0: - struct: EnumItem - Enum.ActuatorRelativeTo.Attachment1: - struct: EnumItem - Enum.ActuatorRelativeTo.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActuatorRelativeTo.World: - struct: EnumItem - Enum.ActuatorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActuatorType.Motor: - struct: EnumItem - Enum.ActuatorType.None: - struct: EnumItem - Enum.ActuatorType.Servo: - struct: EnumItem - Enum.AdPortalStatus.Active: - struct: EnumItem - Enum.AdPortalStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdPortalStatus.Inactive: - struct: EnumItem - Enum.AdPortalStatus.Invalid: - struct: EnumItem - Enum.AdPortalType.Forward: - struct: EnumItem - Enum.AdPortalType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdPortalType.Return: - struct: EnumItem - Enum.AdShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdShape.HorizontalRectangle: - struct: EnumItem - Enum.AdTeleportMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdTeleportMethod.InGameMenuBackButton: - struct: EnumItem - Enum.AdTeleportMethod.PortalForward: - struct: EnumItem - Enum.AdTeleportMethod.PortalReturn: - struct: EnumItem - Enum.AdTeleportMethod.UIBackButton: - struct: EnumItem - Enum.AdTeleportMethod.Undefined: - struct: EnumItem - Enum.AdUnitStatus.Active: - struct: EnumItem - Enum.AdUnitStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdUnitStatus.Inactive: - struct: EnumItem - Enum.AdornCullingMode.Automatic: - struct: EnumItem - Enum.AdornCullingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdornCullingMode.Never: - struct: EnumItem - Enum.AlignType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AlignType.Parallel: - struct: EnumItem - Enum.AlignType.Perpendicular: - struct: EnumItem - Enum.AlphaMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AlphaMode.Overlay: - struct: EnumItem - Enum.AlphaMode.Transparency: - struct: EnumItem - Enum.AnalyticsEconomyAction.Acquire: - struct: EnumItem - Enum.AnalyticsEconomyAction.Default: - struct: EnumItem - Enum.AnalyticsEconomyAction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnalyticsEconomyAction.Spend: - struct: EnumItem - Enum.AnalyticsLogLevel.Debug: - struct: EnumItem - Enum.AnalyticsLogLevel.Error: - struct: EnumItem - Enum.AnalyticsLogLevel.Fatal: - struct: EnumItem - Enum.AnalyticsLogLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnalyticsLogLevel.Information: - struct: EnumItem - Enum.AnalyticsLogLevel.Trace: - struct: EnumItem - Enum.AnalyticsLogLevel.Warning: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Abandon: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Begin: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Complete: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Default: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Fail: - struct: EnumItem - Enum.AnalyticsProgressionStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnimationPriority.Action: - struct: EnumItem - Enum.AnimationPriority.Action2: - struct: EnumItem - Enum.AnimationPriority.Action3: - struct: EnumItem - Enum.AnimationPriority.Action4: - struct: EnumItem - Enum.AnimationPriority.Core: - struct: EnumItem - Enum.AnimationPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnimationPriority.Idle: - struct: EnumItem - Enum.AnimationPriority.Movement: - struct: EnumItem - Enum.AnimatorRetargetingMode.Default: - struct: EnumItem - Enum.AnimatorRetargetingMode.Disabled: - struct: EnumItem - Enum.AnimatorRetargetingMode.Enabled: - struct: EnumItem - Enum.AnimatorRetargetingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellActionType.AvatarEditorPageLoaded: - struct: EnumItem - Enum.AppShellActionType.GamePageLoaded: - struct: EnumItem - Enum.AppShellActionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellActionType.HomePageLoaded: - struct: EnumItem - Enum.AppShellActionType.None: - struct: EnumItem - Enum.AppShellActionType.OpenApp: - struct: EnumItem - Enum.AppShellActionType.ReadConversation: - struct: EnumItem - Enum.AppShellActionType.TapAvatarTab: - struct: EnumItem - Enum.AppShellActionType.TapChatTab: - struct: EnumItem - Enum.AppShellActionType.TapConversationEntry: - struct: EnumItem - Enum.AppShellActionType.TapGamePageTab: - struct: EnumItem - Enum.AppShellActionType.TapHomePageTab: - struct: EnumItem - Enum.AppShellFeature.AvatarEditor: - struct: EnumItem - Enum.AppShellFeature.Chat: - struct: EnumItem - Enum.AppShellFeature.GamePage: - struct: EnumItem - Enum.AppShellFeature.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellFeature.HomePage: - struct: EnumItem - Enum.AppShellFeature.Landing: - struct: EnumItem - Enum.AppShellFeature.More: - struct: EnumItem - Enum.AppShellFeature.None: - struct: EnumItem - Enum.AppUpdateStatus.Available: - struct: EnumItem - Enum.AppUpdateStatus.Failed: - struct: EnumItem - Enum.AppUpdateStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppUpdateStatus.NotAvailable: - struct: EnumItem - Enum.AppUpdateStatus.NotSupported: - struct: EnumItem - Enum.AppUpdateStatus.Unknown: - struct: EnumItem - Enum.ApplyStrokeMode.Border: - struct: EnumItem - Enum.ApplyStrokeMode.Contextual: - struct: EnumItem - Enum.ApplyStrokeMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AspectType.FitWithinMaxSize: - struct: EnumItem - Enum.AspectType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AspectType.ScaleWithParentSize: - struct: EnumItem - Enum.AssetFetchStatus.Failure: - struct: EnumItem - Enum.AssetFetchStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AssetFetchStatus.Loading: - struct: EnumItem - Enum.AssetFetchStatus.None: - struct: EnumItem - Enum.AssetFetchStatus.Success: - struct: EnumItem - Enum.AssetFetchStatus.TimedOut: - struct: EnumItem - Enum.AssetType.Animation: - struct: EnumItem - Enum.AssetType.Audio: - struct: EnumItem - Enum.AssetType.BackAccessory: - struct: EnumItem - Enum.AssetType.Badge: - struct: EnumItem - Enum.AssetType.ClimbAnimation: - struct: EnumItem - Enum.AssetType.DeathAnimation: - struct: EnumItem - Enum.AssetType.Decal: - struct: EnumItem - Enum.AssetType.DressSkirtAccessory: - struct: EnumItem - Enum.AssetType.DynamicHead: - struct: EnumItem - Enum.AssetType.EarAccessory: - struct: EnumItem - Enum.AssetType.EmoteAnimation: - struct: EnumItem - Enum.AssetType.EyeAccessory: - struct: EnumItem - Enum.AssetType.EyebrowAccessory: - struct: EnumItem - Enum.AssetType.EyelashAccessory: - struct: EnumItem - Enum.AssetType.Face: - struct: EnumItem - Enum.AssetType.FaceAccessory: - struct: EnumItem - Enum.AssetType.FallAnimation: - struct: EnumItem - Enum.AssetType.FontFamily: - struct: EnumItem - Enum.AssetType.FrontAccessory: - struct: EnumItem - Enum.AssetType.GamePass: - struct: EnumItem - Enum.AssetType.Gear: - struct: EnumItem - Enum.AssetType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AssetType.HairAccessory: - struct: EnumItem - Enum.AssetType.Hat: - struct: EnumItem - Enum.AssetType.Head: - struct: EnumItem - Enum.AssetType.IdleAnimation: - struct: EnumItem - Enum.AssetType.Image: - struct: EnumItem - Enum.AssetType.JacketAccessory: - struct: EnumItem - Enum.AssetType.JumpAnimation: - struct: EnumItem - Enum.AssetType.LeftArm: - struct: EnumItem - Enum.AssetType.LeftLeg: - struct: EnumItem - Enum.AssetType.LeftShoeAccessory: - struct: EnumItem - Enum.AssetType.Lua: - struct: EnumItem - Enum.AssetType.Mesh: - struct: EnumItem - Enum.AssetType.MeshPart: - struct: EnumItem - Enum.AssetType.Model: - struct: EnumItem - Enum.AssetType.MoodAnimation: - struct: EnumItem - Enum.AssetType.NeckAccessory: - struct: EnumItem - Enum.AssetType.Package: - struct: EnumItem - Enum.AssetType.Pants: - struct: EnumItem - Enum.AssetType.PantsAccessory: - struct: EnumItem - Enum.AssetType.Place: - struct: EnumItem - Enum.AssetType.Plugin: - struct: EnumItem - Enum.AssetType.PoseAnimation: - struct: EnumItem - Enum.AssetType.RightArm: - struct: EnumItem - Enum.AssetType.RightLeg: - struct: EnumItem - Enum.AssetType.RightShoeAccessory: - struct: EnumItem - Enum.AssetType.RunAnimation: - struct: EnumItem - Enum.AssetType.Shirt: - struct: EnumItem - Enum.AssetType.ShirtAccessory: - struct: EnumItem - Enum.AssetType.ShortsAccessory: - struct: EnumItem - Enum.AssetType.ShoulderAccessory: - struct: EnumItem - Enum.AssetType.SweaterAccessory: - struct: EnumItem - Enum.AssetType.SwimAnimation: - struct: EnumItem - Enum.AssetType.TShirt: - struct: EnumItem - Enum.AssetType.TShirtAccessory: - struct: EnumItem - Enum.AssetType.TeeShirt: - struct: EnumItem - deprecated: - message: Enum.AssetType.TeeShirt was replaced with Enum.AssetType.TShirt - replace: - - Enum.AssetType.TShirt - Enum.AssetType.TeeShirtAccessory: - struct: EnumItem - deprecated: - message: Enum.AssetType.TeeShirtAccessory was replaced with Enum.AssetType.TShirtAccessory - replace: - - Enum.AssetType.TShirtAccessory - Enum.AssetType.Torso: - struct: EnumItem - Enum.AssetType.Video: - struct: EnumItem - Enum.AssetType.WaistAccessory: - struct: EnumItem - Enum.AssetType.WalkAnimation: - struct: EnumItem - Enum.AssetTypeVerification.Always: - struct: EnumItem - Enum.AssetTypeVerification.ClientOnly: - struct: EnumItem - Enum.AssetTypeVerification.Default: - struct: EnumItem - Enum.AssetTypeVerification.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AudioSubType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AudioSubType.Music: - struct: EnumItem - Enum.AudioSubType.SoundEffect: - struct: EnumItem - Enum.AutoIndentRule.Absolute: - struct: EnumItem - Enum.AutoIndentRule.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AutoIndentRule.Off: - struct: EnumItem - Enum.AutoIndentRule.Relative: - struct: EnumItem - Enum.AutomaticSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AutomaticSize.None: - struct: EnumItem - Enum.AutomaticSize.X: - struct: EnumItem - Enum.AutomaticSize.XY: - struct: EnumItem - Enum.AutomaticSize.Y: - struct: EnumItem - Enum.AvatarAssetType.BackAccessory: - struct: EnumItem - Enum.AvatarAssetType.ClimbAnimation: - struct: EnumItem - Enum.AvatarAssetType.DressSkirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.DynamicHead: - struct: EnumItem - Enum.AvatarAssetType.EmoteAnimation: - struct: EnumItem - Enum.AvatarAssetType.EyebrowAccessory: - struct: EnumItem - Enum.AvatarAssetType.EyelashAccessory: - struct: EnumItem - Enum.AvatarAssetType.Face: - struct: EnumItem - Enum.AvatarAssetType.FaceAccessory: - struct: EnumItem - Enum.AvatarAssetType.FallAnimation: - struct: EnumItem - Enum.AvatarAssetType.FrontAccessory: - struct: EnumItem - Enum.AvatarAssetType.Gear: - struct: EnumItem - Enum.AvatarAssetType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarAssetType.HairAccessory: - struct: EnumItem - Enum.AvatarAssetType.Hat: - struct: EnumItem - Enum.AvatarAssetType.Head: - struct: EnumItem - Enum.AvatarAssetType.IdleAnimation: - struct: EnumItem - Enum.AvatarAssetType.JacketAccessory: - struct: EnumItem - Enum.AvatarAssetType.JumpAnimation: - struct: EnumItem - Enum.AvatarAssetType.LeftArm: - struct: EnumItem - Enum.AvatarAssetType.LeftLeg: - struct: EnumItem - Enum.AvatarAssetType.LeftShoeAccessory: - struct: EnumItem - Enum.AvatarAssetType.MoodAnimation: - struct: EnumItem - Enum.AvatarAssetType.NeckAccessory: - struct: EnumItem - Enum.AvatarAssetType.Pants: - struct: EnumItem - Enum.AvatarAssetType.PantsAccessory: - struct: EnumItem - Enum.AvatarAssetType.RightArm: - struct: EnumItem - Enum.AvatarAssetType.RightLeg: - struct: EnumItem - Enum.AvatarAssetType.RightShoeAccessory: - struct: EnumItem - Enum.AvatarAssetType.RunAnimation: - struct: EnumItem - Enum.AvatarAssetType.Shirt: - struct: EnumItem - Enum.AvatarAssetType.ShirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.ShortsAccessory: - struct: EnumItem - Enum.AvatarAssetType.ShoulderAccessory: - struct: EnumItem - Enum.AvatarAssetType.SweaterAccessory: - struct: EnumItem - Enum.AvatarAssetType.SwimAnimation: - struct: EnumItem - Enum.AvatarAssetType.TShirt: - struct: EnumItem - Enum.AvatarAssetType.TShirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.TeeShirtAccessory: - struct: EnumItem - deprecated: - message: Enum.AvatarAssetType.TeeShirtAccessory was replaced with Enum.AvatarAssetType.TShirtAccessory - replace: - - Enum.AvatarAssetType.TShirtAccessory - Enum.AvatarAssetType.Torso: - struct: EnumItem - Enum.AvatarAssetType.WaistAccessory: - struct: EnumItem - Enum.AvatarAssetType.WalkAnimation: - struct: EnumItem - Enum.AvatarContextMenuOption.Chat: - struct: EnumItem - Enum.AvatarContextMenuOption.Emote: - struct: EnumItem - Enum.AvatarContextMenuOption.Friend: - struct: EnumItem - Enum.AvatarContextMenuOption.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarContextMenuOption.InspectMenu: - struct: EnumItem - Enum.AvatarItemType.Asset: - struct: EnumItem - Enum.AvatarItemType.Bundle: - struct: EnumItem - Enum.AvatarItemType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarPromptResult.Failed: - struct: EnumItem - Enum.AvatarPromptResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarPromptResult.PermissionDenied: - struct: EnumItem - Enum.AvatarPromptResult.Success: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.Closeup: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.FullBody: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Axis.Back: - struct: EnumItem - deprecated: - message: Enum.Axis.Back was replaced with Enum.Axis.Z - replace: - - Enum.Axis.Z - Enum.Axis.Bottom: - struct: EnumItem - deprecated: - message: Enum.Axis.Bottom was replaced with Enum.Axis.Y - replace: - - Enum.Axis.Y - Enum.Axis.Front: - struct: EnumItem - deprecated: - message: Enum.Axis.Front was replaced with Enum.Axis.Z - replace: - - Enum.Axis.Z - Enum.Axis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Axis.Left: - struct: EnumItem - deprecated: - message: Enum.Axis.Left was replaced with Enum.Axis.X - replace: - - Enum.Axis.X - Enum.Axis.Right: - struct: EnumItem - deprecated: - message: Enum.Axis.Right was replaced with Enum.Axis.X - replace: - - Enum.Axis.X - Enum.Axis.Top: - struct: EnumItem - deprecated: - message: Enum.Axis.Top was replaced with Enum.Axis.Y - replace: - - Enum.Axis.Y - Enum.Axis.X: - struct: EnumItem - Enum.Axis.Y: - struct: EnumItem - Enum.Axis.Z: - struct: EnumItem - Enum.BinType.Clone: - struct: EnumItem - Enum.BinType.GameTool: - struct: EnumItem - Enum.BinType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BinType.Grab: - struct: EnumItem - Enum.BinType.Hammer: - struct: EnumItem - Enum.BinType.Laser: - struct: EnumItem - deprecated: - message: Enum.BinType.Laser was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BinType.Rocket: - struct: EnumItem - deprecated: - message: Enum.BinType.Rocket was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BinType.Script: - struct: EnumItem - Enum.BinType.Slingshot: - struct: EnumItem - deprecated: - message: Enum.BinType.Slingshot was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BodyPart.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BodyPart.Head: - struct: EnumItem - Enum.BodyPart.LeftArm: - struct: EnumItem - Enum.BodyPart.LeftLeg: - struct: EnumItem - Enum.BodyPart.RightArm: - struct: EnumItem - Enum.BodyPart.RightLeg: - struct: EnumItem - Enum.BodyPart.Torso: - struct: EnumItem - Enum.BodyPartR15.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BodyPartR15.Head: - struct: EnumItem - Enum.BodyPartR15.LeftFoot: - struct: EnumItem - Enum.BodyPartR15.LeftHand: - struct: EnumItem - Enum.BodyPartR15.LeftLowerArm: - struct: EnumItem - Enum.BodyPartR15.LeftLowerLeg: - struct: EnumItem - Enum.BodyPartR15.LeftUpperArm: - struct: EnumItem - Enum.BodyPartR15.LeftUpperLeg: - struct: EnumItem - Enum.BodyPartR15.LowerTorso: - struct: EnumItem - Enum.BodyPartR15.RightFoot: - struct: EnumItem - Enum.BodyPartR15.RightHand: - struct: EnumItem - Enum.BodyPartR15.RightLowerArm: - struct: EnumItem - Enum.BodyPartR15.RightLowerLeg: - struct: EnumItem - Enum.BodyPartR15.RightUpperArm: - struct: EnumItem - Enum.BodyPartR15.RightUpperLeg: - struct: EnumItem - Enum.BodyPartR15.RootPart: - struct: EnumItem - Enum.BodyPartR15.Unknown: - struct: EnumItem - Enum.BodyPartR15.UpperTorso: - struct: EnumItem - Enum.BorderMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BorderMode.Inset: - struct: EnumItem - Enum.BorderMode.Middle: - struct: EnumItem - Enum.BorderMode.Outline: - struct: EnumItem - Enum.BreakReason.Error: - struct: EnumItem - Enum.BreakReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BreakReason.Other: - struct: EnumItem - Enum.BreakReason.SpecialBreakpoint: - struct: EnumItem - Enum.BreakReason.UserBreakpoint: - struct: EnumItem - Enum.BreakpointRemoveReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BreakpointRemoveReason.Requested: - struct: EnumItem - Enum.BreakpointRemoveReason.ScriptChanged: - struct: EnumItem - Enum.BreakpointRemoveReason.ScriptRemoved: - struct: EnumItem - Enum.BulkMoveMode.FireAllEvents: - struct: EnumItem - Enum.BulkMoveMode.FireCFrameChanged: - struct: EnumItem - Enum.BulkMoveMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BundleType.Animations: - struct: EnumItem - Enum.BundleType.BodyParts: - struct: EnumItem - Enum.BundleType.DynamicHead: - struct: EnumItem - Enum.BundleType.DynamicHeadAvatar: - struct: EnumItem - Enum.BundleType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BundleType.Shoes: - struct: EnumItem - Enum.Button.Dismount: - struct: EnumItem - Enum.Button.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Button.Jump: - struct: EnumItem - Enum.ButtonStyle.Custom: - struct: EnumItem - Enum.ButtonStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ButtonStyle.RobloxButton: - struct: EnumItem - Enum.ButtonStyle.RobloxButtonDefault: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundButton: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundDefaultButton: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundDropdownButton: - struct: EnumItem - Enum.CageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CageType.Inner: - struct: EnumItem - Enum.CageType.Outer: - struct: EnumItem - Enum.CameraMode.Classic: - struct: EnumItem - Enum.CameraMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraMode.LockFirstPerson: - struct: EnumItem - Enum.CameraPanMode.Classic: - struct: EnumItem - Enum.CameraPanMode.EdgeBump: - struct: EnumItem - Enum.CameraPanMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraType.Attach: - struct: EnumItem - Enum.CameraType.Custom: - struct: EnumItem - Enum.CameraType.Fixed: - struct: EnumItem - Enum.CameraType.Follow: - struct: EnumItem - Enum.CameraType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraType.Orbital: - struct: EnumItem - Enum.CameraType.Scriptable: - struct: EnumItem - Enum.CameraType.Track: - struct: EnumItem - Enum.CameraType.Watch: - struct: EnumItem - Enum.CatalogCategoryFilter.Collectibles: - struct: EnumItem - Enum.CatalogCategoryFilter.CommunityCreations: - struct: EnumItem - Enum.CatalogCategoryFilter.Featured: - struct: EnumItem - Enum.CatalogCategoryFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogCategoryFilter.None: - struct: EnumItem - Enum.CatalogCategoryFilter.Premium: - struct: EnumItem - Enum.CatalogCategoryFilter.Recommended: - struct: EnumItem - Enum.CatalogSortAggregation.AllTime: - struct: EnumItem - Enum.CatalogSortAggregation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogSortAggregation.Past12Hours: - struct: EnumItem - Enum.CatalogSortAggregation.Past3Days: - struct: EnumItem - Enum.CatalogSortAggregation.PastDay: - struct: EnumItem - Enum.CatalogSortAggregation.PastMonth: - struct: EnumItem - Enum.CatalogSortAggregation.PastWeek: - struct: EnumItem - Enum.CatalogSortType.Bestselling: - struct: EnumItem - Enum.CatalogSortType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogSortType.MostFavorited: - struct: EnumItem - Enum.CatalogSortType.PriceHighToLow: - struct: EnumItem - Enum.CatalogSortType.PriceLowToHigh: - struct: EnumItem - Enum.CatalogSortType.RecentlyCreated: - struct: EnumItem - Enum.CatalogSortType.RecentlyUpdated: - struct: EnumItem - deprecated: - message: Enum.CatalogSortType.RecentlyUpdated was replaced with Enum.CatalogSortType.RecentlyCreated - replace: - - Enum.CatalogSortType.RecentlyCreated - Enum.CatalogSortType.Relevance: - struct: EnumItem - Enum.CellBlock.CornerWedge: - struct: EnumItem - Enum.CellBlock.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellBlock.HorizontalWedge: - struct: EnumItem - Enum.CellBlock.InverseCornerWedge: - struct: EnumItem - Enum.CellBlock.Solid: - struct: EnumItem - Enum.CellBlock.VerticalWedge: - struct: EnumItem - Enum.CellMaterial.Aluminum: - struct: EnumItem - Enum.CellMaterial.Asphalt: - struct: EnumItem - Enum.CellMaterial.BluePlastic: - struct: EnumItem - Enum.CellMaterial.Brick: - struct: EnumItem - Enum.CellMaterial.Cement: - struct: EnumItem - Enum.CellMaterial.CinderBlock: - struct: EnumItem - Enum.CellMaterial.Empty: - struct: EnumItem - Enum.CellMaterial.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellMaterial.Gold: - struct: EnumItem - Enum.CellMaterial.Granite: - struct: EnumItem - Enum.CellMaterial.Grass: - struct: EnumItem - Enum.CellMaterial.Gravel: - struct: EnumItem - Enum.CellMaterial.Iron: - struct: EnumItem - Enum.CellMaterial.MossyStone: - struct: EnumItem - Enum.CellMaterial.RedPlastic: - struct: EnumItem - Enum.CellMaterial.Sand: - struct: EnumItem - Enum.CellMaterial.Water: - struct: EnumItem - Enum.CellMaterial.WoodLog: - struct: EnumItem - Enum.CellMaterial.WoodPlank: - struct: EnumItem - Enum.CellOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellOrientation.NegX: - struct: EnumItem - Enum.CellOrientation.NegZ: - struct: EnumItem - Enum.CellOrientation.X: - struct: EnumItem - Enum.CellOrientation.Z: - struct: EnumItem - Enum.CenterDialogType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CenterDialogType.ModalDialog: - struct: EnumItem - Enum.CenterDialogType.PlayerInitiatedDialog: - struct: EnumItem - Enum.CenterDialogType.QuitDialog: - struct: EnumItem - Enum.CenterDialogType.UnsolicitedDialog: - struct: EnumItem - Enum.ChatCallbackType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatCallbackType.OnClientFormattingMessage: - struct: EnumItem - Enum.ChatCallbackType.OnClientSendingMessage: - struct: EnumItem - Enum.ChatCallbackType.OnCreatingChatWindow: - struct: EnumItem - Enum.ChatCallbackType.OnServerReceivingMessage: - struct: EnumItem - Enum.ChatColor.Blue: - struct: EnumItem - Enum.ChatColor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatColor.Green: - struct: EnumItem - Enum.ChatColor.Red: - struct: EnumItem - Enum.ChatColor.White: - struct: EnumItem - Enum.ChatMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatMode.Menu: - struct: EnumItem - Enum.ChatMode.TextAndMenu: - struct: EnumItem - Enum.ChatPrivacyMode.AllUsers: - struct: EnumItem - Enum.ChatPrivacyMode.Friends: - struct: EnumItem - Enum.ChatPrivacyMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatPrivacyMode.NoOne: - struct: EnumItem - Enum.ChatStyle.Bubble: - struct: EnumItem - Enum.ChatStyle.Classic: - struct: EnumItem - Enum.ChatStyle.ClassicAndBubble: - struct: EnumItem - Enum.ChatStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatVersion.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatVersion.LegacyChatService: - struct: EnumItem - Enum.ChatVersion.TextChatService: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Default: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Disabled: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Enabled: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CollisionFidelity.Box: - struct: EnumItem - Enum.CollisionFidelity.Default: - struct: EnumItem - Enum.CollisionFidelity.DynamicPreciseConvexDecomposition: - struct: EnumItem - Enum.CollisionFidelity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CollisionFidelity.Hull: - struct: EnumItem - Enum.CollisionFidelity.PreciseConvexDecomposition: - struct: EnumItem - Enum.CommandPermission.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CommandPermission.LocalUser: - struct: EnumItem - Enum.CommandPermission.Plugin: - struct: EnumItem - Enum.CompletionItemKind.Class: - struct: EnumItem - Enum.CompletionItemKind.Color: - struct: EnumItem - Enum.CompletionItemKind.Constant: - struct: EnumItem - Enum.CompletionItemKind.Constructor: - struct: EnumItem - Enum.CompletionItemKind.Enum: - struct: EnumItem - Enum.CompletionItemKind.EnumMember: - struct: EnumItem - Enum.CompletionItemKind.Event: - struct: EnumItem - Enum.CompletionItemKind.Field: - struct: EnumItem - Enum.CompletionItemKind.File: - struct: EnumItem - Enum.CompletionItemKind.Folder: - struct: EnumItem - Enum.CompletionItemKind.Function: - struct: EnumItem - Enum.CompletionItemKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionItemKind.Interface: - struct: EnumItem - Enum.CompletionItemKind.Keyword: - struct: EnumItem - Enum.CompletionItemKind.Method: - struct: EnumItem - Enum.CompletionItemKind.Module: - struct: EnumItem - Enum.CompletionItemKind.Operator: - struct: EnumItem - Enum.CompletionItemKind.Property: - struct: EnumItem - Enum.CompletionItemKind.Reference: - struct: EnumItem - Enum.CompletionItemKind.Snippet: - struct: EnumItem - Enum.CompletionItemKind.Struct: - struct: EnumItem - Enum.CompletionItemKind.Text: - struct: EnumItem - Enum.CompletionItemKind.TypeParameter: - struct: EnumItem - Enum.CompletionItemKind.Unit: - struct: EnumItem - Enum.CompletionItemKind.Value: - struct: EnumItem - Enum.CompletionItemKind.Variable: - struct: EnumItem - Enum.CompletionItemTag.AddParens: - struct: EnumItem - Enum.CompletionItemTag.ClientServerBoundaryViolation: - struct: EnumItem - Enum.CompletionItemTag.CommandLinePermissions: - struct: EnumItem - Enum.CompletionItemTag.Deprecated: - struct: EnumItem - Enum.CompletionItemTag.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionItemTag.IncorrectIndexType: - struct: EnumItem - Enum.CompletionItemTag.PluginPermissions: - struct: EnumItem - Enum.CompletionItemTag.PutCursorInParens: - struct: EnumItem - Enum.CompletionItemTag.RobloxPermissions: - struct: EnumItem - Enum.CompletionItemTag.TypeCorrect: - struct: EnumItem - Enum.CompletionTriggerKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionTriggerKind.Invoked: - struct: EnumItem - Enum.CompletionTriggerKind.TriggerCharacter: - struct: EnumItem - Enum.CompletionTriggerKind.TriggerForIncompleteCompletions: - struct: EnumItem - Enum.ComputerCameraMovementMode.CameraToggle: - struct: EnumItem - Enum.ComputerCameraMovementMode.Classic: - struct: EnumItem - Enum.ComputerCameraMovementMode.Default: - struct: EnumItem - Enum.ComputerCameraMovementMode.Follow: - struct: EnumItem - Enum.ComputerCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ComputerCameraMovementMode.Orbital: - struct: EnumItem - Enum.ComputerMovementMode.ClickToMove: - struct: EnumItem - Enum.ComputerMovementMode.Default: - struct: EnumItem - Enum.ComputerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ComputerMovementMode.KeyboardMouse: - struct: EnumItem - Enum.ConnectionError.DisconnectBadhash: - struct: EnumItem - Enum.ConnectionError.DisconnectBlockedIP: - struct: EnumItem - Enum.ConnectionError.DisconnectBySecurityPolicy: - struct: EnumItem - Enum.ConnectionError.DisconnectClientFailure: - struct: EnumItem - Enum.ConnectionError.DisconnectClientRequest: - struct: EnumItem - Enum.ConnectionError.DisconnectCloudEditKick: - struct: EnumItem - Enum.ConnectionError.DisconnectConnectionLost: - struct: EnumItem - Enum.ConnectionError.DisconnectDevMaintenance: - struct: EnumItem - Enum.ConnectionError.DisconnectDuplicatePlayer: - struct: EnumItem - Enum.ConnectionError.DisconnectDuplicateTicket: - struct: EnumItem - Enum.ConnectionError.DisconnectErrors: - struct: EnumItem - Enum.ConnectionError.DisconnectEvicted: - struct: EnumItem - Enum.ConnectionError.DisconnectHashTimeout: - struct: EnumItem - Enum.ConnectionError.DisconnectIdle: - struct: EnumItem - Enum.ConnectionError.DisconnectIllegalTeleport: - struct: EnumItem - Enum.ConnectionError.DisconnectLuaKick: - struct: EnumItem - Enum.ConnectionError.DisconnectModeratedGame: - struct: EnumItem - Enum.ConnectionError.DisconnectNewSecurityKeyMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectOnRemoteSysStats: - struct: EnumItem - Enum.ConnectionError.DisconnectOutOfMemoryKeepPlayingLeave: - struct: EnumItem - Enum.ConnectionError.DisconnectPlayerless: - struct: EnumItem - Enum.ConnectionError.DisconnectProtocolMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectRaknetErrors: - struct: EnumItem - Enum.ConnectionError.DisconnectReceivePacketError: - struct: EnumItem - Enum.ConnectionError.DisconnectReceivePacketStreamError: - struct: EnumItem - Enum.ConnectionError.DisconnectRejoin: - struct: EnumItem - Enum.ConnectionError.DisconnectRobloxMaintenance: - struct: EnumItem - Enum.ConnectionError.DisconnectRomarkEndOfTest: - struct: EnumItem - Enum.ConnectionError.DisconnectSecurityKeyMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectSendPacketError: - struct: EnumItem - Enum.ConnectionError.DisconnectTimeout: - struct: EnumItem - Enum.ConnectionError.DisconnectWrongVersion: - struct: EnumItem - Enum.ConnectionError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ConnectionError.OK: - struct: EnumItem - Enum.ConnectionError.PlacelaunchCustomMessage: - struct: EnumItem - Enum.ConnectionError.PlacelaunchDisabled: - struct: EnumItem - Enum.ConnectionError.PlacelaunchError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchErrors: - struct: EnumItem - Enum.ConnectionError.PlacelaunchFlooded: - struct: EnumItem - Enum.ConnectionError.PlacelaunchGameEnded: - struct: EnumItem - Enum.ConnectionError.PlacelaunchGameFull: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHashException: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHashExpired: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHttpError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchOtherError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchPartyCannotFit: - struct: EnumItem - Enum.ConnectionError.PlacelaunchRestricted: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUnauthorized: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUserLeft: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUserPrivacyUnauthorized: - struct: EnumItem - Enum.ConnectionError.PlayerRemoved: - struct: EnumItem - Enum.ConnectionError.ReplicatorTimeout: - struct: EnumItem - Enum.ConnectionError.TeleportErrors: - struct: EnumItem - Enum.ConnectionError.TeleportFailure: - struct: EnumItem - Enum.ConnectionError.TeleportFlooded: - struct: EnumItem - Enum.ConnectionError.TeleportGameEnded: - struct: EnumItem - Enum.ConnectionError.TeleportGameFull: - struct: EnumItem - Enum.ConnectionError.TeleportGameNotFound: - struct: EnumItem - Enum.ConnectionError.TeleportIsTeleporting: - struct: EnumItem - Enum.ConnectionError.TeleportUnauthorized: - struct: EnumItem - Enum.ConnectionError.Unknown: - struct: EnumItem - Enum.ConnectionState.Connected: - struct: EnumItem - Enum.ConnectionState.Disconnected: - struct: EnumItem - Enum.ConnectionState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionPriority.Default: - struct: EnumItem - deprecated: - message: Enum.ContextActionPriority.Default was replaced with Enum.ContextActionPriority.Medium - replace: - - Enum.ContextActionPriority.Medium - Enum.ContextActionPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionPriority.High: - struct: EnumItem - Enum.ContextActionPriority.Low: - struct: EnumItem - Enum.ContextActionPriority.Medium: - struct: EnumItem - Enum.ContextActionResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionResult.Pass: - struct: EnumItem - Enum.ContextActionResult.Sink: - struct: EnumItem - Enum.ControlMode.Classic: - struct: EnumItem - Enum.ControlMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ControlMode.Mouse Lock Switch: - struct: EnumItem - deprecated: - message: Enum.ControlMode.Mouse Lock Switch was replaced with Enum.ControlMode.MouseLockSwitch - replace: - - Enum.ControlMode.MouseLockSwitch - Enum.ControlMode.MouseLockSwitch: - struct: EnumItem - Enum.CoreGuiType.All: - struct: EnumItem - Enum.CoreGuiType.Backpack: - struct: EnumItem - Enum.CoreGuiType.Chat: - struct: EnumItem - Enum.CoreGuiType.EmotesMenu: - struct: EnumItem - Enum.CoreGuiType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CoreGuiType.Health: - struct: EnumItem - Enum.CoreGuiType.PlayerList: - struct: EnumItem - Enum.CoreGuiType.SelfView: - struct: EnumItem - Enum.CreateOutfitFailure.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreateOutfitFailure.InvalidName: - struct: EnumItem - Enum.CreateOutfitFailure.Other: - struct: EnumItem - Enum.CreateOutfitFailure.OutfitLimitReached: - struct: EnumItem - Enum.CreatorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreatorType.Group: - struct: EnumItem - Enum.CreatorType.User: - struct: EnumItem - Enum.CreatorTypeFilter.All: - struct: EnumItem - Enum.CreatorTypeFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreatorTypeFilter.Group: - struct: EnumItem - Enum.CreatorTypeFilter.User: - struct: EnumItem - Enum.CurrencyType.Default: - struct: EnumItem - Enum.CurrencyType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CurrencyType.Robux: - struct: EnumItem - Enum.CurrencyType.Tix: - struct: EnumItem - Enum.CustomCameraMode.Classic: - struct: EnumItem - Enum.CustomCameraMode.Default: - struct: EnumItem - Enum.CustomCameraMode.Follow: - struct: EnumItem - Enum.CustomCameraMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DataStoreRequestType.GetAsync: - struct: EnumItem - Enum.DataStoreRequestType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DataStoreRequestType.GetSortedAsync: - struct: EnumItem - Enum.DataStoreRequestType.OnUpdate: - struct: EnumItem - Enum.DataStoreRequestType.SetIncrementAsync: - struct: EnumItem - Enum.DataStoreRequestType.SetIncrementSortedAsync: - struct: EnumItem - Enum.DataStoreRequestType.UpdateAsync: - struct: EnumItem - Enum.DebuggerEndReason.ClientRequest: - struct: EnumItem - Enum.DebuggerEndReason.ConfigurationFailed: - struct: EnumItem - Enum.DebuggerEndReason.Disconnected: - struct: EnumItem - Enum.DebuggerEndReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerEndReason.InvalidHost: - struct: EnumItem - Enum.DebuggerEndReason.RpcError: - struct: EnumItem - Enum.DebuggerEndReason.ServerProtocolMismatch: - struct: EnumItem - Enum.DebuggerEndReason.ServerShutdown: - struct: EnumItem - Enum.DebuggerEndReason.Timeout: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.Always: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerExceptionBreakMode.Never: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.Unhandled: - struct: EnumItem - Enum.DebuggerFrameType.C: - struct: EnumItem - Enum.DebuggerFrameType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerFrameType.Lua: - struct: EnumItem - Enum.DebuggerPauseReason.Breakpoint: - struct: EnumItem - Enum.DebuggerPauseReason.Entrypoint: - struct: EnumItem - Enum.DebuggerPauseReason.Exception: - struct: EnumItem - Enum.DebuggerPauseReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerPauseReason.Requested: - struct: EnumItem - Enum.DebuggerPauseReason.SingleStep: - struct: EnumItem - Enum.DebuggerPauseReason.Unknown: - struct: EnumItem - Enum.DebuggerStatus.ConnectionClosed: - struct: EnumItem - Enum.DebuggerStatus.ConnectionLost: - struct: EnumItem - Enum.DebuggerStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerStatus.InternalError: - struct: EnumItem - Enum.DebuggerStatus.InvalidArgument: - struct: EnumItem - Enum.DebuggerStatus.InvalidResponse: - struct: EnumItem - Enum.DebuggerStatus.InvalidState: - struct: EnumItem - Enum.DebuggerStatus.RpcError: - struct: EnumItem - Enum.DebuggerStatus.Success: - struct: EnumItem - Enum.DebuggerStatus.Timeout: - struct: EnumItem - Enum.DevCameraOcclusionMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevCameraOcclusionMode.Invisicam: - struct: EnumItem - Enum.DevCameraOcclusionMode.Zoom: - struct: EnumItem - Enum.DevComputerCameraMovementMode.CameraToggle: - struct: EnumItem - Enum.DevComputerCameraMovementMode.Classic: - struct: EnumItem - Enum.DevComputerCameraMovementMode.Follow: - struct: EnumItem - Enum.DevComputerCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevComputerCameraMovementMode.Orbital: - struct: EnumItem - Enum.DevComputerCameraMovementMode.UserChoice: - struct: EnumItem - Enum.DevComputerMovementMode.ClickToMove: - struct: EnumItem - Enum.DevComputerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevComputerMovementMode.KeyboardMouse: - struct: EnumItem - Enum.DevComputerMovementMode.Scriptable: - struct: EnumItem - Enum.DevComputerMovementMode.UserChoice: - struct: EnumItem - Enum.DevTouchCameraMovementMode.Classic: - struct: EnumItem - Enum.DevTouchCameraMovementMode.Follow: - struct: EnumItem - Enum.DevTouchCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevTouchCameraMovementMode.Orbital: - struct: EnumItem - Enum.DevTouchCameraMovementMode.UserChoice: - struct: EnumItem - Enum.DevTouchMovementMode.ClickToMove: - struct: EnumItem - Enum.DevTouchMovementMode.DPad: - struct: EnumItem - Enum.DevTouchMovementMode.DynamicThumbstick: - struct: EnumItem - Enum.DevTouchMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevTouchMovementMode.Scriptable: - struct: EnumItem - Enum.DevTouchMovementMode.Thumbpad: - struct: EnumItem - Enum.DevTouchMovementMode.Thumbstick: - struct: EnumItem - Enum.DevTouchMovementMode.UserChoice: - struct: EnumItem - Enum.DeveloperMemoryTag.Animation: - struct: EnumItem - Enum.DeveloperMemoryTag.GeometryCSG: - struct: EnumItem - Enum.DeveloperMemoryTag.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DeveloperMemoryTag.GraphicsMeshParts: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsParticles: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsParts: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsSolidModels: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsSpatialHash: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTerrain: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTexture: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTextureCharacter: - struct: EnumItem - Enum.DeveloperMemoryTag.Gui: - struct: EnumItem - Enum.DeveloperMemoryTag.HttpCache: - struct: EnumItem - Enum.DeveloperMemoryTag.Instances: - struct: EnumItem - Enum.DeveloperMemoryTag.Internal: - struct: EnumItem - Enum.DeveloperMemoryTag.LuaHeap: - struct: EnumItem - Enum.DeveloperMemoryTag.Navigation: - struct: EnumItem - Enum.DeveloperMemoryTag.PhysicsCollision: - struct: EnumItem - Enum.DeveloperMemoryTag.PhysicsParts: - struct: EnumItem - Enum.DeveloperMemoryTag.Script: - struct: EnumItem - Enum.DeveloperMemoryTag.Signals: - struct: EnumItem - Enum.DeveloperMemoryTag.Sounds: - struct: EnumItem - Enum.DeveloperMemoryTag.StreamingSounds: - struct: EnumItem - Enum.DeveloperMemoryTag.TerrainVoxels: - struct: EnumItem - Enum.DeviceType.Desktop: - struct: EnumItem - Enum.DeviceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DeviceType.Phone: - struct: EnumItem - Enum.DeviceType.Tablet: - struct: EnumItem - Enum.DeviceType.Unknown: - struct: EnumItem - Enum.DialogBehaviorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogBehaviorType.MultiplePlayers: - struct: EnumItem - Enum.DialogBehaviorType.SinglePlayer: - struct: EnumItem - Enum.DialogPurpose.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogPurpose.Help: - struct: EnumItem - Enum.DialogPurpose.Quest: - struct: EnumItem - Enum.DialogPurpose.Shop: - struct: EnumItem - Enum.DialogTone.Enemy: - struct: EnumItem - Enum.DialogTone.Friendly: - struct: EnumItem - Enum.DialogTone.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogTone.Neutral: - struct: EnumItem - Enum.DominantAxis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DominantAxis.Height: - struct: EnumItem - Enum.DominantAxis.Width: - struct: EnumItem - Enum.DraftStatusCode.DraftCommitted: - struct: EnumItem - Enum.DraftStatusCode.DraftOutdated: - struct: EnumItem - Enum.DraftStatusCode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraftStatusCode.OK: - struct: EnumItem - Enum.DraftStatusCode.ScriptRemoved: - struct: EnumItem - Enum.DraggerCoordinateSpace.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraggerCoordinateSpace.Object: - struct: EnumItem - Enum.DraggerCoordinateSpace.World: - struct: EnumItem - Enum.DraggerMovementMode.Geometric: - struct: EnumItem - Enum.DraggerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraggerMovementMode.Physical: - struct: EnumItem - Enum.EasingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EasingDirection.In: - struct: EnumItem - Enum.EasingDirection.InOut: - struct: EnumItem - Enum.EasingDirection.Out: - struct: EnumItem - Enum.EasingStyle.Back: - struct: EnumItem - Enum.EasingStyle.Bounce: - struct: EnumItem - Enum.EasingStyle.Circular: - struct: EnumItem - Enum.EasingStyle.Cubic: - struct: EnumItem - Enum.EasingStyle.Elastic: - struct: EnumItem - Enum.EasingStyle.Exponential: - struct: EnumItem - Enum.EasingStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EasingStyle.Linear: - struct: EnumItem - Enum.EasingStyle.Quad: - struct: EnumItem - Enum.EasingStyle.Quart: - struct: EnumItem - Enum.EasingStyle.Quint: - struct: EnumItem - Enum.EasingStyle.Sine: - struct: EnumItem - Enum.ElasticBehavior.Always: - struct: EnumItem - Enum.ElasticBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ElasticBehavior.Never: - struct: EnumItem - Enum.ElasticBehavior.WhenScrollable: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Always: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.DefaultAuto: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Disabled: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EnviromentalPhysicsThrottle.Skip16: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip2: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip4: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip8: - struct: EnumItem - Enum.ExperienceAuthScope.CreatorAssetsCreate: - struct: EnumItem - Enum.ExperienceAuthScope.DefaultScope: - struct: EnumItem - Enum.ExperienceAuthScope.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ExplosionType.Craters: - struct: EnumItem - Enum.ExplosionType.CratersAndDebris: - struct: EnumItem - deprecated: - message: Enum.ExplosionType.CratersAndDebris was replaced with Enum.ExplosionType.Craters - replace: - - Enum.ExplosionType.Craters - Enum.ExplosionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ExplosionType.NoCraters: - struct: EnumItem - Enum.FacialAnimationFlags.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FacialAnimationFlags.None: - struct: EnumItem - Enum.FacialAnimationFlags.Place: - struct: EnumItem - Enum.FacialAnimationFlags.PlaceServer: - struct: EnumItem - Enum.FacialAnimationFlags.Server: - struct: EnumItem - Enum.FacialAnimationStreamingState.Audio: - struct: EnumItem - Enum.FacialAnimationStreamingState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FacialAnimationStreamingState.None: - struct: EnumItem - Enum.FacialAnimationStreamingState.Place: - struct: EnumItem - Enum.FacialAnimationStreamingState.Server: - struct: EnumItem - Enum.FacialAnimationStreamingState.Video: - struct: EnumItem - Enum.FieldOfViewMode.Diagonal: - struct: EnumItem - Enum.FieldOfViewMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FieldOfViewMode.MaxAxis: - struct: EnumItem - Enum.FieldOfViewMode.Vertical: - struct: EnumItem - Enum.FillDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FillDirection.Horizontal: - struct: EnumItem - Enum.FillDirection.Vertical: - struct: EnumItem - Enum.FilterResult.Accepted: - struct: EnumItem - Enum.FilterResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FilterResult.Rejected: - struct: EnumItem - Enum.Font.AmaticSC: - struct: EnumItem - Enum.Font.Antique: - struct: EnumItem - Enum.Font.Arcade: - struct: EnumItem - Enum.Font.Arial: - struct: EnumItem - Enum.Font.ArialBold: - struct: EnumItem - Enum.Font.Bangers: - struct: EnumItem - Enum.Font.Bodoni: - struct: EnumItem - Enum.Font.Cartoon: - struct: EnumItem - Enum.Font.Code: - struct: EnumItem - Enum.Font.Creepster: - struct: EnumItem - Enum.Font.DenkOne: - struct: EnumItem - Enum.Font.Fantasy: - struct: EnumItem - Enum.Font.Fondamento: - struct: EnumItem - Enum.Font.FredokaOne: - struct: EnumItem - Enum.Font.Garamond: - struct: EnumItem - Enum.Font.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Font.Gotham: - struct: EnumItem - Enum.Font.GothamBlack: - struct: EnumItem - Enum.Font.GothamBold: - struct: EnumItem - Enum.Font.GothamMedium: - struct: EnumItem - Enum.Font.GothamSemibold: - struct: EnumItem - deprecated: - message: Enum.Font.GothamSemibold was replaced with Enum.Font.GothamMedium - replace: - - Enum.Font.GothamMedium - Enum.Font.GrenzeGotisch: - struct: EnumItem - Enum.Font.Highway: - struct: EnumItem - Enum.Font.IndieFlower: - struct: EnumItem - Enum.Font.JosefinSans: - struct: EnumItem - Enum.Font.Jura: - struct: EnumItem - Enum.Font.Kalam: - struct: EnumItem - Enum.Font.Legacy: - struct: EnumItem - Enum.Font.LuckiestGuy: - struct: EnumItem - Enum.Font.Merriweather: - struct: EnumItem - Enum.Font.Michroma: - struct: EnumItem - Enum.Font.Nunito: - struct: EnumItem - Enum.Font.Oswald: - struct: EnumItem - Enum.Font.PatrickHand: - struct: EnumItem - Enum.Font.PermanentMarker: - struct: EnumItem - Enum.Font.Roboto: - struct: EnumItem - Enum.Font.RobotoCondensed: - struct: EnumItem - Enum.Font.RobotoMono: - struct: EnumItem - Enum.Font.Sarpanch: - struct: EnumItem - Enum.Font.SciFi: - struct: EnumItem - Enum.Font.SourceSans: - struct: EnumItem - Enum.Font.SourceSansBold: - struct: EnumItem - Enum.Font.SourceSansItalic: - struct: EnumItem - Enum.Font.SourceSansLight: - struct: EnumItem - Enum.Font.SourceSansSemibold: - struct: EnumItem - Enum.Font.SpecialElite: - struct: EnumItem - Enum.Font.TitilliumWeb: - struct: EnumItem - Enum.Font.Ubuntu: - struct: EnumItem - Enum.Font.Unknown: - struct: EnumItem - Enum.FontSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontSize.Size10: - struct: EnumItem - Enum.FontSize.Size11: - struct: EnumItem - Enum.FontSize.Size12: - struct: EnumItem - Enum.FontSize.Size14: - struct: EnumItem - Enum.FontSize.Size18: - struct: EnumItem - Enum.FontSize.Size24: - struct: EnumItem - Enum.FontSize.Size28: - struct: EnumItem - Enum.FontSize.Size32: - struct: EnumItem - Enum.FontSize.Size36: - struct: EnumItem - Enum.FontSize.Size42: - struct: EnumItem - Enum.FontSize.Size48: - struct: EnumItem - Enum.FontSize.Size60: - struct: EnumItem - Enum.FontSize.Size8: - struct: EnumItem - Enum.FontSize.Size9: - struct: EnumItem - Enum.FontSize.Size96: - struct: EnumItem - Enum.FontStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontStyle.Italic: - struct: EnumItem - Enum.FontStyle.Normal: - struct: EnumItem - Enum.FontWeight.Bold: - struct: EnumItem - Enum.FontWeight.ExtraBold: - struct: EnumItem - Enum.FontWeight.ExtraLight: - struct: EnumItem - Enum.FontWeight.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontWeight.Heavy: - struct: EnumItem - Enum.FontWeight.Light: - struct: EnumItem - Enum.FontWeight.Medium: - struct: EnumItem - Enum.FontWeight.Regular: - struct: EnumItem - Enum.FontWeight.SemiBold: - struct: EnumItem - Enum.FontWeight.Thin: - struct: EnumItem - Enum.FormFactor.Block: - struct: EnumItem - deprecated: - message: Enum.FormFactor.Block was replaced with Enum.FormFactor.Brick - replace: - - Enum.FormFactor.Brick - Enum.FormFactor.Brick: - struct: EnumItem - Enum.FormFactor.Custom: - struct: EnumItem - Enum.FormFactor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FormFactor.Plate: - struct: EnumItem - Enum.FormFactor.Symmetric: - struct: EnumItem - Enum.FrameStyle.ChatBlue: - struct: EnumItem - Enum.FrameStyle.ChatGreen: - struct: EnumItem - Enum.FrameStyle.ChatRed: - struct: EnumItem - Enum.FrameStyle.Custom: - struct: EnumItem - Enum.FrameStyle.DropShadow: - struct: EnumItem - Enum.FrameStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FrameStyle.RobloxRound: - struct: EnumItem - Enum.FrameStyle.RobloxSquare: - struct: EnumItem - Enum.FramerateManagerMode.Automatic: - struct: EnumItem - Enum.FramerateManagerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FramerateManagerMode.Off: - struct: EnumItem - Enum.FramerateManagerMode.On: - struct: EnumItem - Enum.FriendRequestEvent.Accept: - struct: EnumItem - Enum.FriendRequestEvent.Deny: - struct: EnumItem - Enum.FriendRequestEvent.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FriendRequestEvent.Issue: - struct: EnumItem - Enum.FriendRequestEvent.Revoke: - struct: EnumItem - Enum.FriendStatus.Friend: - struct: EnumItem - Enum.FriendStatus.FriendRequestReceived: - struct: EnumItem - Enum.FriendStatus.FriendRequestSent: - struct: EnumItem - Enum.FriendStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FriendStatus.NotFriend: - struct: EnumItem - Enum.FriendStatus.Unknown: - struct: EnumItem - Enum.FunctionalTestResult.Error: - struct: EnumItem - Enum.FunctionalTestResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FunctionalTestResult.Passed: - struct: EnumItem - Enum.FunctionalTestResult.Warning: - struct: EnumItem - Enum.GameAvatarType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GameAvatarType.PlayerChoice: - struct: EnumItem - Enum.GameAvatarType.R15: - struct: EnumItem - Enum.GameAvatarType.R6: - struct: EnumItem - Enum.GearGenreSetting.AllGenres: - struct: EnumItem - Enum.GearGenreSetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GearGenreSetting.MatchingGenreOnly: - struct: EnumItem - Enum.GearType.BuildingTools: - struct: EnumItem - Enum.GearType.Explosives: - struct: EnumItem - Enum.GearType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GearType.MeleeWeapons: - struct: EnumItem - Enum.GearType.MusicalInstruments: - struct: EnumItem - Enum.GearType.NavigationEnhancers: - struct: EnumItem - Enum.GearType.PowerUps: - struct: EnumItem - Enum.GearType.RangedWeapons: - struct: EnumItem - Enum.GearType.SocialItems: - struct: EnumItem - Enum.GearType.Transport: - struct: EnumItem - Enum.Genre.Adventure: - struct: EnumItem - Enum.Genre.All: - struct: EnumItem - Enum.Genre.Fantasy: - struct: EnumItem - Enum.Genre.Funny: - struct: EnumItem - Enum.Genre.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Genre.Ninja: - struct: EnumItem - Enum.Genre.Pirate: - struct: EnumItem - Enum.Genre.Scary: - struct: EnumItem - Enum.Genre.SciFi: - struct: EnumItem - Enum.Genre.SkatePark: - struct: EnumItem - Enum.Genre.Sports: - struct: EnumItem - Enum.Genre.TownAndCity: - struct: EnumItem - Enum.Genre.Tutorial: - struct: EnumItem - Enum.Genre.War: - struct: EnumItem - Enum.Genre.WildWest: - struct: EnumItem - Enum.GetEnums: - args: [] - method: true - must_use: true - Enum.GraphicsMode.Automatic: - struct: EnumItem - Enum.GraphicsMode.Direct3D11: - struct: EnumItem - Enum.GraphicsMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GraphicsMode.Metal: - struct: EnumItem - Enum.GraphicsMode.NoGraphics: - struct: EnumItem - Enum.GraphicsMode.OpenGL: - struct: EnumItem - Enum.GraphicsMode.Vulkan: - struct: EnumItem - Enum.GuiType.Core: - struct: EnumItem - Enum.GuiType.Custom: - struct: EnumItem - Enum.GuiType.CustomBillboards: - struct: EnumItem - Enum.GuiType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GuiType.PlayerNameplates: - struct: EnumItem - Enum.HandlesStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HandlesStyle.Movement: - struct: EnumItem - Enum.HandlesStyle.Resize: - struct: EnumItem - Enum.HighlightDepthMode.AlwaysOnTop: - struct: EnumItem - Enum.HighlightDepthMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HighlightDepthMode.Occluded: - struct: EnumItem - Enum.HorizontalAlignment.Center: - struct: EnumItem - Enum.HorizontalAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HorizontalAlignment.Left: - struct: EnumItem - Enum.HorizontalAlignment.Right: - struct: EnumItem - Enum.HoverAnimateSpeed.Fast: - struct: EnumItem - Enum.HoverAnimateSpeed.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HoverAnimateSpeed.Medium: - struct: EnumItem - Enum.HoverAnimateSpeed.Slow: - struct: EnumItem - Enum.HoverAnimateSpeed.VeryFast: - struct: EnumItem - Enum.HoverAnimateSpeed.VerySlow: - struct: EnumItem - Enum.HttpCachePolicy.DataOnly: - struct: EnumItem - Enum.HttpCachePolicy.Default: - struct: EnumItem - Enum.HttpCachePolicy.Full: - struct: EnumItem - Enum.HttpCachePolicy.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpCachePolicy.InternalRedirectRefresh: - struct: EnumItem - Enum.HttpCachePolicy.None: - struct: EnumItem - Enum.HttpContentType.ApplicationJson: - struct: EnumItem - Enum.HttpContentType.ApplicationUrlEncoded: - struct: EnumItem - Enum.HttpContentType.ApplicationXml: - struct: EnumItem - Enum.HttpContentType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpContentType.TextPlain: - struct: EnumItem - Enum.HttpContentType.TextXml: - struct: EnumItem - Enum.HttpError.Aborted: - struct: EnumItem - Enum.HttpError.ConnectFail: - struct: EnumItem - Enum.HttpError.DnsResolve: - struct: EnumItem - Enum.HttpError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpError.InvalidRedirect: - struct: EnumItem - Enum.HttpError.InvalidUrl: - struct: EnumItem - Enum.HttpError.NetFail: - struct: EnumItem - Enum.HttpError.OK: - struct: EnumItem - Enum.HttpError.OutOfMemory: - struct: EnumItem - Enum.HttpError.SslConnectFail: - struct: EnumItem - Enum.HttpError.SslVerificationFail: - struct: EnumItem - Enum.HttpError.TimedOut: - struct: EnumItem - Enum.HttpError.TooManyRedirects: - struct: EnumItem - Enum.HttpError.Unknown: - struct: EnumItem - Enum.HttpRequestType.Analytics: - struct: EnumItem - Enum.HttpRequestType.Avatar: - struct: EnumItem - Enum.HttpRequestType.Chat: - struct: EnumItem - Enum.HttpRequestType.Default: - struct: EnumItem - Enum.HttpRequestType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpRequestType.Localization: - struct: EnumItem - Enum.HttpRequestType.MarketplaceService: - struct: EnumItem - Enum.HttpRequestType.Players: - struct: EnumItem - Enum.HumanoidCollisionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidCollisionType.InnerBox: - struct: EnumItem - Enum.HumanoidCollisionType.OuterBox: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidDisplayDistanceType.None: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.Subject: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.Viewer: - struct: EnumItem - Enum.HumanoidHealthDisplayType.AlwaysOff: - struct: EnumItem - Enum.HumanoidHealthDisplayType.AlwaysOn: - struct: EnumItem - Enum.HumanoidHealthDisplayType.DisplayWhenDamaged: - struct: EnumItem - Enum.HumanoidHealthDisplayType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidOnlySetCollisionsOnStateChange.Default: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.Disabled: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.Enabled: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidRigType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidRigType.R15: - struct: EnumItem - Enum.HumanoidRigType.R6: - struct: EnumItem - Enum.HumanoidStateMachineMode.Default: - struct: EnumItem - Enum.HumanoidStateMachineMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidStateMachineMode.Legacy: - struct: EnumItem - Enum.HumanoidStateMachineMode.LuaStateMachine: - struct: EnumItem - Enum.HumanoidStateMachineMode.NoStateMachine: - struct: EnumItem - Enum.HumanoidStateType.Climbing: - struct: EnumItem - Enum.HumanoidStateType.Dead: - struct: EnumItem - Enum.HumanoidStateType.FallingDown: - struct: EnumItem - Enum.HumanoidStateType.Flying: - struct: EnumItem - Enum.HumanoidStateType.Freefall: - struct: EnumItem - Enum.HumanoidStateType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidStateType.GettingUp: - struct: EnumItem - Enum.HumanoidStateType.Jumping: - struct: EnumItem - Enum.HumanoidStateType.Landed: - struct: EnumItem - Enum.HumanoidStateType.None: - struct: EnumItem - Enum.HumanoidStateType.Physics: - struct: EnumItem - Enum.HumanoidStateType.PlatformStanding: - struct: EnumItem - Enum.HumanoidStateType.Ragdoll: - struct: EnumItem - Enum.HumanoidStateType.Running: - struct: EnumItem - Enum.HumanoidStateType.RunningNoPhysics: - struct: EnumItem - Enum.HumanoidStateType.Seated: - struct: EnumItem - Enum.HumanoidStateType.StrafingNoPhysics: - struct: EnumItem - Enum.HumanoidStateType.Swimming: - struct: EnumItem - Enum.IKCollisionsMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IKCollisionsMode.IncludeContactedMechanisms: - struct: EnumItem - Enum.IKCollisionsMode.NoCollisions: - struct: EnumItem - Enum.IKCollisionsMode.OtherMechanismsAnchored: - struct: EnumItem - Enum.IKControlType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IKControlType.LookAt: - struct: EnumItem - Enum.IKControlType.Position: - struct: EnumItem - Enum.IKControlType.Rotation: - struct: EnumItem - Enum.IKControlType.Transform: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorConnection: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorInvalidUser: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorJsonParse: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorTimedOut: - struct: EnumItem - Enum.IXPLoadingStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IXPLoadingStatus.Initialized: - struct: EnumItem - Enum.IXPLoadingStatus.None: - struct: EnumItem - Enum.IXPLoadingStatus.Pending: - struct: EnumItem - Enum.InOut.Center: - struct: EnumItem - Enum.InOut.Edge: - struct: EnumItem - Enum.InOut.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InOut.Inset: - struct: EnumItem - Enum.InfoType.Asset: - struct: EnumItem - Enum.InfoType.Bundle: - struct: EnumItem - Enum.InfoType.GamePass: - struct: EnumItem - Enum.InfoType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InfoType.Product: - struct: EnumItem - Enum.InfoType.Subscription: - struct: EnumItem - Enum.InitialDockState.Bottom: - struct: EnumItem - Enum.InitialDockState.Float: - struct: EnumItem - Enum.InitialDockState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InitialDockState.Left: - struct: EnumItem - Enum.InitialDockState.Right: - struct: EnumItem - Enum.InitialDockState.Top: - struct: EnumItem - Enum.InputType.Action1: - struct: EnumItem - deprecated: - message: Enum.InputType.Action1 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action2: - struct: EnumItem - deprecated: - message: Enum.InputType.Action2 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action3: - struct: EnumItem - deprecated: - message: Enum.InputType.Action3 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action4: - struct: EnumItem - deprecated: - message: Enum.InputType.Action4 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action5: - struct: EnumItem - deprecated: - message: Enum.InputType.Action5 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Constant: - struct: EnumItem - Enum.InputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InputType.LeftTread: - struct: EnumItem - deprecated: - message: Enum.InputType.LeftTread was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.NoInput: - struct: EnumItem - Enum.InputType.RightTread: - struct: EnumItem - deprecated: - message: Enum.InputType.RightTread was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Sin: - struct: EnumItem - Enum.InputType.Steer: - struct: EnumItem - deprecated: - message: Enum.InputType.Steer was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Throtle: - struct: EnumItem - deprecated: - message: Enum.InputType.Throtle was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Throttle: - struct: EnumItem - deprecated: - message: Enum.InputType.Throttle was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.UpDown: - struct: EnumItem - deprecated: - message: Enum.InputType.UpDown was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InterpolationThrottlingMode.Default: - struct: EnumItem - Enum.InterpolationThrottlingMode.Disabled: - struct: EnumItem - Enum.InterpolationThrottlingMode.Enabled: - struct: EnumItem - Enum.InterpolationThrottlingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.JointCreationMode.All: - struct: EnumItem - Enum.JointCreationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.JointCreationMode.None: - struct: EnumItem - Enum.JointCreationMode.Surface: - struct: EnumItem - Enum.KeyCode.A: - struct: EnumItem - Enum.KeyCode.Ampersand: - struct: EnumItem - Enum.KeyCode.Asterisk: - struct: EnumItem - Enum.KeyCode.At: - struct: EnumItem - Enum.KeyCode.B: - struct: EnumItem - Enum.KeyCode.BackSlash: - struct: EnumItem - Enum.KeyCode.Backquote: - struct: EnumItem - Enum.KeyCode.Backspace: - struct: EnumItem - Enum.KeyCode.Break: - struct: EnumItem - Enum.KeyCode.ButtonA: - struct: EnumItem - Enum.KeyCode.ButtonB: - struct: EnumItem - Enum.KeyCode.ButtonL1: - struct: EnumItem - Enum.KeyCode.ButtonL2: - struct: EnumItem - Enum.KeyCode.ButtonL3: - struct: EnumItem - Enum.KeyCode.ButtonR1: - struct: EnumItem - Enum.KeyCode.ButtonR2: - struct: EnumItem - Enum.KeyCode.ButtonR3: - struct: EnumItem - Enum.KeyCode.ButtonSelect: - struct: EnumItem - Enum.KeyCode.ButtonStart: - struct: EnumItem - Enum.KeyCode.ButtonX: - struct: EnumItem - Enum.KeyCode.ButtonY: - struct: EnumItem - Enum.KeyCode.C: - struct: EnumItem - Enum.KeyCode.CapsLock: - struct: EnumItem - Enum.KeyCode.Caret: - struct: EnumItem - Enum.KeyCode.Clear: - struct: EnumItem - Enum.KeyCode.Colon: - struct: EnumItem - Enum.KeyCode.Comma: - struct: EnumItem - Enum.KeyCode.Compose: - struct: EnumItem - Enum.KeyCode.D: - struct: EnumItem - Enum.KeyCode.DPadDown: - struct: EnumItem - Enum.KeyCode.DPadLeft: - struct: EnumItem - Enum.KeyCode.DPadRight: - struct: EnumItem - Enum.KeyCode.DPadUp: - struct: EnumItem - Enum.KeyCode.Delete: - struct: EnumItem - Enum.KeyCode.Dollar: - struct: EnumItem - Enum.KeyCode.Down: - struct: EnumItem - Enum.KeyCode.E: - struct: EnumItem - Enum.KeyCode.Eight: - struct: EnumItem - Enum.KeyCode.End: - struct: EnumItem - Enum.KeyCode.Equals: - struct: EnumItem - Enum.KeyCode.Escape: - struct: EnumItem - Enum.KeyCode.Euro: - struct: EnumItem - Enum.KeyCode.F: - struct: EnumItem - Enum.KeyCode.F1: - struct: EnumItem - Enum.KeyCode.F10: - struct: EnumItem - Enum.KeyCode.F11: - struct: EnumItem - Enum.KeyCode.F12: - struct: EnumItem - Enum.KeyCode.F13: - struct: EnumItem - Enum.KeyCode.F14: - struct: EnumItem - Enum.KeyCode.F15: - struct: EnumItem - Enum.KeyCode.F2: - struct: EnumItem - Enum.KeyCode.F3: - struct: EnumItem - Enum.KeyCode.F4: - struct: EnumItem - Enum.KeyCode.F5: - struct: EnumItem - Enum.KeyCode.F6: - struct: EnumItem - Enum.KeyCode.F7: - struct: EnumItem - Enum.KeyCode.F8: - struct: EnumItem - Enum.KeyCode.F9: - struct: EnumItem - Enum.KeyCode.Five: - struct: EnumItem - Enum.KeyCode.Four: - struct: EnumItem - Enum.KeyCode.G: - struct: EnumItem - Enum.KeyCode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeyCode.GreaterThan: - struct: EnumItem - Enum.KeyCode.H: - struct: EnumItem - Enum.KeyCode.Hash: - struct: EnumItem - Enum.KeyCode.Help: - struct: EnumItem - Enum.KeyCode.Home: - struct: EnumItem - Enum.KeyCode.I: - struct: EnumItem - Enum.KeyCode.Insert: - struct: EnumItem - Enum.KeyCode.J: - struct: EnumItem - Enum.KeyCode.K: - struct: EnumItem - Enum.KeyCode.KeypadDivide: - struct: EnumItem - Enum.KeyCode.KeypadEight: - struct: EnumItem - Enum.KeyCode.KeypadEnter: - struct: EnumItem - Enum.KeyCode.KeypadEquals: - struct: EnumItem - Enum.KeyCode.KeypadFive: - struct: EnumItem - Enum.KeyCode.KeypadFour: - struct: EnumItem - Enum.KeyCode.KeypadMinus: - struct: EnumItem - Enum.KeyCode.KeypadMultiply: - struct: EnumItem - Enum.KeyCode.KeypadNine: - struct: EnumItem - Enum.KeyCode.KeypadOne: - struct: EnumItem - Enum.KeyCode.KeypadPeriod: - struct: EnumItem - Enum.KeyCode.KeypadPlus: - struct: EnumItem - Enum.KeyCode.KeypadSeven: - struct: EnumItem - Enum.KeyCode.KeypadSix: - struct: EnumItem - Enum.KeyCode.KeypadThree: - struct: EnumItem - Enum.KeyCode.KeypadTwo: - struct: EnumItem - Enum.KeyCode.KeypadZero: - struct: EnumItem - Enum.KeyCode.L: - struct: EnumItem - Enum.KeyCode.Left: - struct: EnumItem - Enum.KeyCode.LeftAlt: - struct: EnumItem - Enum.KeyCode.LeftBracket: - struct: EnumItem - Enum.KeyCode.LeftControl: - struct: EnumItem - Enum.KeyCode.LeftCurly: - struct: EnumItem - Enum.KeyCode.LeftMeta: - struct: EnumItem - Enum.KeyCode.LeftParenthesis: - struct: EnumItem - Enum.KeyCode.LeftShift: - struct: EnumItem - Enum.KeyCode.LeftSuper: - struct: EnumItem - Enum.KeyCode.LessThan: - struct: EnumItem - Enum.KeyCode.M: - struct: EnumItem - Enum.KeyCode.Menu: - struct: EnumItem - Enum.KeyCode.Minus: - struct: EnumItem - Enum.KeyCode.Mode: - struct: EnumItem - Enum.KeyCode.N: - struct: EnumItem - Enum.KeyCode.Nine: - struct: EnumItem - Enum.KeyCode.NumLock: - struct: EnumItem - Enum.KeyCode.O: - struct: EnumItem - Enum.KeyCode.One: - struct: EnumItem - Enum.KeyCode.P: - struct: EnumItem - Enum.KeyCode.PageDown: - struct: EnumItem - Enum.KeyCode.PageUp: - struct: EnumItem - Enum.KeyCode.Pause: - struct: EnumItem - Enum.KeyCode.Percent: - struct: EnumItem - Enum.KeyCode.Period: - struct: EnumItem - Enum.KeyCode.Pipe: - struct: EnumItem - Enum.KeyCode.Plus: - struct: EnumItem - Enum.KeyCode.Power: - struct: EnumItem - Enum.KeyCode.Print: - struct: EnumItem - Enum.KeyCode.Q: - struct: EnumItem - Enum.KeyCode.Question: - struct: EnumItem - Enum.KeyCode.Quote: - struct: EnumItem - Enum.KeyCode.QuotedDouble: - struct: EnumItem - Enum.KeyCode.R: - struct: EnumItem - Enum.KeyCode.Return: - struct: EnumItem - Enum.KeyCode.Right: - struct: EnumItem - Enum.KeyCode.RightAlt: - struct: EnumItem - Enum.KeyCode.RightBracket: - struct: EnumItem - Enum.KeyCode.RightControl: - struct: EnumItem - Enum.KeyCode.RightCurly: - struct: EnumItem - Enum.KeyCode.RightMeta: - struct: EnumItem - Enum.KeyCode.RightParenthesis: - struct: EnumItem - Enum.KeyCode.RightShift: - struct: EnumItem - Enum.KeyCode.RightSuper: - struct: EnumItem - Enum.KeyCode.S: - struct: EnumItem - Enum.KeyCode.ScrollLock: - struct: EnumItem - Enum.KeyCode.Semicolon: - struct: EnumItem - Enum.KeyCode.Seven: - struct: EnumItem - Enum.KeyCode.Six: - struct: EnumItem - Enum.KeyCode.Slash: - struct: EnumItem - Enum.KeyCode.Space: - struct: EnumItem - Enum.KeyCode.SysReq: - struct: EnumItem - Enum.KeyCode.T: - struct: EnumItem - Enum.KeyCode.Tab: - struct: EnumItem - Enum.KeyCode.Three: - struct: EnumItem - Enum.KeyCode.Thumbstick1: - struct: EnumItem - Enum.KeyCode.Thumbstick2: - struct: EnumItem - Enum.KeyCode.Tilde: - struct: EnumItem - Enum.KeyCode.Two: - struct: EnumItem - Enum.KeyCode.U: - struct: EnumItem - Enum.KeyCode.Underscore: - struct: EnumItem - Enum.KeyCode.Undo: - struct: EnumItem - Enum.KeyCode.Unknown: - struct: EnumItem - Enum.KeyCode.Up: - struct: EnumItem - Enum.KeyCode.V: - struct: EnumItem - Enum.KeyCode.W: - struct: EnumItem - Enum.KeyCode.World0: - struct: EnumItem - Enum.KeyCode.World1: - struct: EnumItem - Enum.KeyCode.World10: - struct: EnumItem - Enum.KeyCode.World11: - struct: EnumItem - Enum.KeyCode.World12: - struct: EnumItem - Enum.KeyCode.World13: - struct: EnumItem - Enum.KeyCode.World14: - struct: EnumItem - Enum.KeyCode.World15: - struct: EnumItem - Enum.KeyCode.World16: - struct: EnumItem - Enum.KeyCode.World17: - struct: EnumItem - Enum.KeyCode.World18: - struct: EnumItem - Enum.KeyCode.World19: - struct: EnumItem - Enum.KeyCode.World2: - struct: EnumItem - Enum.KeyCode.World20: - struct: EnumItem - Enum.KeyCode.World21: - struct: EnumItem - Enum.KeyCode.World22: - struct: EnumItem - Enum.KeyCode.World23: - struct: EnumItem - Enum.KeyCode.World24: - struct: EnumItem - Enum.KeyCode.World25: - struct: EnumItem - Enum.KeyCode.World26: - struct: EnumItem - Enum.KeyCode.World27: - struct: EnumItem - Enum.KeyCode.World28: - struct: EnumItem - Enum.KeyCode.World29: - struct: EnumItem - Enum.KeyCode.World3: - struct: EnumItem - Enum.KeyCode.World30: - struct: EnumItem - Enum.KeyCode.World31: - struct: EnumItem - Enum.KeyCode.World32: - struct: EnumItem - Enum.KeyCode.World33: - struct: EnumItem - Enum.KeyCode.World34: - struct: EnumItem - Enum.KeyCode.World35: - struct: EnumItem - Enum.KeyCode.World36: - struct: EnumItem - Enum.KeyCode.World37: - struct: EnumItem - Enum.KeyCode.World38: - struct: EnumItem - Enum.KeyCode.World39: - struct: EnumItem - Enum.KeyCode.World4: - struct: EnumItem - Enum.KeyCode.World40: - struct: EnumItem - Enum.KeyCode.World41: - struct: EnumItem - Enum.KeyCode.World42: - struct: EnumItem - Enum.KeyCode.World43: - struct: EnumItem - Enum.KeyCode.World44: - struct: EnumItem - Enum.KeyCode.World45: - struct: EnumItem - Enum.KeyCode.World46: - struct: EnumItem - Enum.KeyCode.World47: - struct: EnumItem - Enum.KeyCode.World48: - struct: EnumItem - Enum.KeyCode.World49: - struct: EnumItem - Enum.KeyCode.World5: - struct: EnumItem - Enum.KeyCode.World50: - struct: EnumItem - Enum.KeyCode.World51: - struct: EnumItem - Enum.KeyCode.World52: - struct: EnumItem - Enum.KeyCode.World53: - struct: EnumItem - Enum.KeyCode.World54: - struct: EnumItem - Enum.KeyCode.World55: - struct: EnumItem - Enum.KeyCode.World56: - struct: EnumItem - Enum.KeyCode.World57: - struct: EnumItem - Enum.KeyCode.World58: - struct: EnumItem - Enum.KeyCode.World59: - struct: EnumItem - Enum.KeyCode.World6: - struct: EnumItem - Enum.KeyCode.World60: - struct: EnumItem - Enum.KeyCode.World61: - struct: EnumItem - Enum.KeyCode.World62: - struct: EnumItem - Enum.KeyCode.World63: - struct: EnumItem - Enum.KeyCode.World64: - struct: EnumItem - Enum.KeyCode.World65: - struct: EnumItem - Enum.KeyCode.World66: - struct: EnumItem - Enum.KeyCode.World67: - struct: EnumItem - Enum.KeyCode.World68: - struct: EnumItem - Enum.KeyCode.World69: - struct: EnumItem - Enum.KeyCode.World7: - struct: EnumItem - Enum.KeyCode.World70: - struct: EnumItem - Enum.KeyCode.World71: - struct: EnumItem - Enum.KeyCode.World72: - struct: EnumItem - Enum.KeyCode.World73: - struct: EnumItem - Enum.KeyCode.World74: - struct: EnumItem - Enum.KeyCode.World75: - struct: EnumItem - Enum.KeyCode.World76: - struct: EnumItem - Enum.KeyCode.World77: - struct: EnumItem - Enum.KeyCode.World78: - struct: EnumItem - Enum.KeyCode.World79: - struct: EnumItem - Enum.KeyCode.World8: - struct: EnumItem - Enum.KeyCode.World80: - struct: EnumItem - Enum.KeyCode.World81: - struct: EnumItem - Enum.KeyCode.World82: - struct: EnumItem - Enum.KeyCode.World83: - struct: EnumItem - Enum.KeyCode.World84: - struct: EnumItem - Enum.KeyCode.World85: - struct: EnumItem - Enum.KeyCode.World86: - struct: EnumItem - Enum.KeyCode.World87: - struct: EnumItem - Enum.KeyCode.World88: - struct: EnumItem - Enum.KeyCode.World89: - struct: EnumItem - Enum.KeyCode.World9: - struct: EnumItem - Enum.KeyCode.World90: - struct: EnumItem - Enum.KeyCode.World91: - struct: EnumItem - Enum.KeyCode.World92: - struct: EnumItem - Enum.KeyCode.World93: - struct: EnumItem - Enum.KeyCode.World94: - struct: EnumItem - Enum.KeyCode.World95: - struct: EnumItem - Enum.KeyCode.X: - struct: EnumItem - Enum.KeyCode.Y: - struct: EnumItem - Enum.KeyCode.Z: - struct: EnumItem - Enum.KeyCode.Zero: - struct: EnumItem - Enum.KeyInterpolationMode.Constant: - struct: EnumItem - Enum.KeyInterpolationMode.Cubic: - struct: EnumItem - Enum.KeyInterpolationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeyInterpolationMode.Linear: - struct: EnumItem - Enum.KeywordFilterType.Exclude: - struct: EnumItem - Enum.KeywordFilterType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeywordFilterType.Include: - struct: EnumItem - Enum.Language.Default: - struct: EnumItem - Enum.Language.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LeftRight.Center: - struct: EnumItem - Enum.LeftRight.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LeftRight.Left: - struct: EnumItem - Enum.LeftRight.Right: - struct: EnumItem - Enum.Limb.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Limb.Head: - struct: EnumItem - Enum.Limb.LeftArm: - struct: EnumItem - Enum.Limb.LeftLeg: - struct: EnumItem - Enum.Limb.RightArm: - struct: EnumItem - Enum.Limb.RightLeg: - struct: EnumItem - Enum.Limb.Torso: - struct: EnumItem - Enum.Limb.Unknown: - struct: EnumItem - Enum.LineJoinMode.Bevel: - struct: EnumItem - Enum.LineJoinMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LineJoinMode.Miter: - struct: EnumItem - Enum.LineJoinMode.Round: - struct: EnumItem - Enum.ListDisplayMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ListDisplayMode.Horizontal: - struct: EnumItem - Enum.ListDisplayMode.Vertical: - struct: EnumItem - Enum.ListenerType.CFrame: - struct: EnumItem - Enum.ListenerType.Camera: - struct: EnumItem - Enum.ListenerType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ListenerType.ObjectCFrame: - struct: EnumItem - Enum.ListenerType.ObjectPosition: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Default: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Disabled: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Enabled: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LoadDynamicHeads.Default: - struct: EnumItem - Enum.LoadDynamicHeads.Disabled: - struct: EnumItem - Enum.LoadDynamicHeads.Enabled: - struct: EnumItem - Enum.LoadDynamicHeads.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MarkupKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MarkupKind.Markdown: - struct: EnumItem - Enum.MarkupKind.PlainText: - struct: EnumItem - Enum.Material.Air: - struct: EnumItem - Enum.Material.Aluminum: - struct: EnumItem - deprecated: - message: Enum.Material.Aluminum was replaced with Enum.Material.Foil - replace: - - Enum.Material.Foil - Enum.Material.Asphalt: - struct: EnumItem - Enum.Material.Basalt: - struct: EnumItem - Enum.Material.Brick: - struct: EnumItem - Enum.Material.Cobblestone: - struct: EnumItem - Enum.Material.Concrete: - struct: EnumItem - Enum.Material.Corroded Metal: - struct: EnumItem - deprecated: - message: Enum.Material.Corroded Metal was replaced with Enum.Material.CorrodedMetal - replace: - - Enum.Material.CorrodedMetal - Enum.Material.CorrodedMetal: - struct: EnumItem - Enum.Material.CrackedLava: - struct: EnumItem - Enum.Material.DiamondPlate: - struct: EnumItem - Enum.Material.Fabric: - struct: EnumItem - Enum.Material.Foil: - struct: EnumItem - Enum.Material.ForceField: - struct: EnumItem - Enum.Material.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Material.Glacier: - struct: EnumItem - Enum.Material.Glass: - struct: EnumItem - Enum.Material.Granite: - struct: EnumItem - Enum.Material.Grass: - struct: EnumItem - Enum.Material.Ground: - struct: EnumItem - Enum.Material.Ice: - struct: EnumItem - Enum.Material.LeafyGrass: - struct: EnumItem - Enum.Material.Limestone: - struct: EnumItem - Enum.Material.Marble: - struct: EnumItem - Enum.Material.Metal: - struct: EnumItem - Enum.Material.Mud: - struct: EnumItem - Enum.Material.Neon: - struct: EnumItem - Enum.Material.Pavement: - struct: EnumItem - Enum.Material.Pebble: - struct: EnumItem - Enum.Material.Plastic: - struct: EnumItem - Enum.Material.Rock: - struct: EnumItem - Enum.Material.Salt: - struct: EnumItem - Enum.Material.Sand: - struct: EnumItem - Enum.Material.Sandstone: - struct: EnumItem - Enum.Material.Slate: - struct: EnumItem - Enum.Material.SmoothPlastic: - struct: EnumItem - Enum.Material.Snow: - struct: EnumItem - Enum.Material.Water: - struct: EnumItem - Enum.Material.Wood: - struct: EnumItem - Enum.Material.WoodPlanks: - struct: EnumItem - Enum.MaterialPattern.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MaterialPattern.Organic: - struct: EnumItem - Enum.MaterialPattern.Regular: - struct: EnumItem - Enum.MembershipType.BuildersClub: - struct: EnumItem - Enum.MembershipType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MembershipType.None: - struct: EnumItem - Enum.MembershipType.OutrageousBuildersClub: - struct: EnumItem - Enum.MembershipType.Premium: - struct: EnumItem - Enum.MembershipType.TurboBuildersClub: - struct: EnumItem - Enum.MeshPartDetailLevel.DistanceBased: - struct: EnumItem - Enum.MeshPartDetailLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshPartDetailLevel.Level00: - struct: EnumItem - Enum.MeshPartDetailLevel.Level01: - struct: EnumItem - Enum.MeshPartDetailLevel.Level02: - struct: EnumItem - Enum.MeshPartDetailLevel.Level03: - struct: EnumItem - Enum.MeshPartDetailLevel.Level04: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Default: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Disabled: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Enabled: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshScaleUnit.CM: - struct: EnumItem - Enum.MeshScaleUnit.Foot: - struct: EnumItem - Enum.MeshScaleUnit.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshScaleUnit.Inch: - struct: EnumItem - Enum.MeshScaleUnit.MM: - struct: EnumItem - Enum.MeshScaleUnit.Meter: - struct: EnumItem - Enum.MeshScaleUnit.Stud: - struct: EnumItem - Enum.MeshType.Brick: - struct: EnumItem - Enum.MeshType.CornerWedge: - struct: EnumItem - Enum.MeshType.Cylinder: - struct: EnumItem - Enum.MeshType.FileMesh: - struct: EnumItem - Enum.MeshType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshType.Head: - struct: EnumItem - Enum.MeshType.ParallelRamp: - struct: EnumItem - Enum.MeshType.Prism: - struct: EnumItem - Enum.MeshType.Pyramid: - struct: EnumItem - Enum.MeshType.RightAngleRamp: - struct: EnumItem - Enum.MeshType.Sphere: - struct: EnumItem - Enum.MeshType.Torso: - struct: EnumItem - Enum.MeshType.Wedge: - struct: EnumItem - Enum.MessageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MessageType.MessageError: - struct: EnumItem - Enum.MessageType.MessageInfo: - struct: EnumItem - Enum.MessageType.MessageOutput: - struct: EnumItem - Enum.MessageType.MessageWarning: - struct: EnumItem - Enum.ModelLevelOfDetail.Automatic: - struct: EnumItem - Enum.ModelLevelOfDetail.Disabled: - struct: EnumItem - Enum.ModelLevelOfDetail.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModelLevelOfDetail.StreamingMesh: - struct: EnumItem - Enum.ModelStreamingMode.Atomic: - struct: EnumItem - Enum.ModelStreamingMode.Default: - struct: EnumItem - Enum.ModelStreamingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModelStreamingMode.Nonatomic: - struct: EnumItem - Enum.ModelStreamingMode.Persistent: - struct: EnumItem - Enum.ModelStreamingMode.PersistentPerPlayer: - struct: EnumItem - Enum.ModifierKey.Alt: - struct: EnumItem - Enum.ModifierKey.Ctrl: - struct: EnumItem - Enum.ModifierKey.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModifierKey.Meta: - struct: EnumItem - Enum.ModifierKey.Shift: - struct: EnumItem - Enum.MouseBehavior.Default: - struct: EnumItem - Enum.MouseBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MouseBehavior.LockCenter: - struct: EnumItem - Enum.MouseBehavior.LockCurrentPosition: - struct: EnumItem - Enum.MoveState.AirFree: - struct: EnumItem - Enum.MoveState.Coasting: - struct: EnumItem - Enum.MoveState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MoveState.Pushing: - struct: EnumItem - Enum.MoveState.Stopped: - struct: EnumItem - Enum.MoveState.Stopping: - struct: EnumItem - Enum.MuteState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MuteState.Muted: - struct: EnumItem - Enum.MuteState.Unmuted: - struct: EnumItem - Enum.NameOcclusion.EnemyOcclusion: - struct: EnumItem - Enum.NameOcclusion.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NameOcclusion.NoOcclusion: - struct: EnumItem - Enum.NameOcclusion.OccludeAll: - struct: EnumItem - Enum.NetworkOwnership.Automatic: - struct: EnumItem - Enum.NetworkOwnership.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NetworkOwnership.Manual: - struct: EnumItem - Enum.NetworkOwnership.OnContact: - struct: EnumItem - Enum.NormalId.Back: - struct: EnumItem - Enum.NormalId.Bottom: - struct: EnumItem - Enum.NormalId.Front: - struct: EnumItem - Enum.NormalId.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NormalId.Left: - struct: EnumItem - Enum.NormalId.Right: - struct: EnumItem - Enum.NormalId.Top: - struct: EnumItem - Enum.OrientationAlignmentMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OrientationAlignmentMode.OneAttachment: - struct: EnumItem - Enum.OrientationAlignmentMode.TwoAttachment: - struct: EnumItem - Enum.OutfitSource.All: - struct: EnumItem - Enum.OutfitSource.Created: - struct: EnumItem - Enum.OutfitSource.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutfitSource.Purchased: - struct: EnumItem - Enum.OutfitType.All: - struct: EnumItem - Enum.OutfitType.Avatar: - struct: EnumItem - Enum.OutfitType.DynamicHead: - struct: EnumItem - Enum.OutfitType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutputLayoutMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutputLayoutMode.Horizontal: - struct: EnumItem - Enum.OutputLayoutMode.Vertical: - struct: EnumItem - Enum.OverrideMouseIconBehavior.ForceHide: - struct: EnumItem - Enum.OverrideMouseIconBehavior.ForceShow: - struct: EnumItem - Enum.OverrideMouseIconBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OverrideMouseIconBehavior.None: - struct: EnumItem - Enum.PackagePermission.Edit: - struct: EnumItem - Enum.PackagePermission.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PackagePermission.NoAccess: - struct: EnumItem - Enum.PackagePermission.None: - struct: EnumItem - Enum.PackagePermission.Own: - struct: EnumItem - Enum.PackagePermission.Revoked: - struct: EnumItem - Enum.PackagePermission.UseView: - struct: EnumItem - Enum.PartType.Ball: - struct: EnumItem - Enum.PartType.Block: - struct: EnumItem - Enum.PartType.Cylinder: - struct: EnumItem - Enum.PartType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShape.Box: - struct: EnumItem - Enum.ParticleEmitterShape.Cylinder: - struct: EnumItem - Enum.ParticleEmitterShape.Disc: - struct: EnumItem - Enum.ParticleEmitterShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShape.Sphere: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShapeInOut.InAndOut: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.Inward: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.Outward: - struct: EnumItem - Enum.ParticleEmitterShapeStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShapeStyle.Surface: - struct: EnumItem - Enum.ParticleEmitterShapeStyle.Volume: - struct: EnumItem - Enum.ParticleFlipbookLayout.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookLayout.Grid2x2: - struct: EnumItem - Enum.ParticleFlipbookLayout.Grid4x4: - struct: EnumItem - Enum.ParticleFlipbookLayout.Grid8x8: - struct: EnumItem - Enum.ParticleFlipbookLayout.None: - struct: EnumItem - Enum.ParticleFlipbookMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookMode.Loop: - struct: EnumItem - Enum.ParticleFlipbookMode.OneShot: - struct: EnumItem - Enum.ParticleFlipbookMode.PingPong: - struct: EnumItem - Enum.ParticleFlipbookMode.Random: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.Compatible: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookTextureCompatible.NotCompatible: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.Unknown: - struct: EnumItem - Enum.ParticleOrientation.FacingCamera: - struct: EnumItem - Enum.ParticleOrientation.FacingCameraWorldUp: - struct: EnumItem - Enum.ParticleOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleOrientation.VelocityParallel: - struct: EnumItem - Enum.ParticleOrientation.VelocityPerpendicular: - struct: EnumItem - Enum.PathStatus.ClosestNoPath: - struct: EnumItem - Enum.PathStatus.ClosestOutOfRange: - struct: EnumItem - Enum.PathStatus.FailFinishNotEmpty: - struct: EnumItem - Enum.PathStatus.FailStartNotEmpty: - struct: EnumItem - Enum.PathStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PathStatus.NoPath: - struct: EnumItem - Enum.PathStatus.Success: - struct: EnumItem - Enum.PathWaypointAction.Custom: - struct: EnumItem - Enum.PathWaypointAction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PathWaypointAction.Jump: - struct: EnumItem - Enum.PathWaypointAction.Walk: - struct: EnumItem - Enum.PermissionLevelShown.Game: - struct: EnumItem - Enum.PermissionLevelShown.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PermissionLevelShown.Roblox: - struct: EnumItem - Enum.PermissionLevelShown.RobloxGame: - struct: EnumItem - Enum.PermissionLevelShown.RobloxScript: - struct: EnumItem - Enum.PermissionLevelShown.Studio: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed120Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed240Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed60Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PhysicsSteppingMethod.Adaptive: - struct: EnumItem - Enum.PhysicsSteppingMethod.Default: - struct: EnumItem - Enum.PhysicsSteppingMethod.Fixed: - struct: EnumItem - Enum.PhysicsSteppingMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Platform.Android: - struct: EnumItem - Enum.Platform.AndroidTV: - struct: EnumItem - Enum.Platform.BeOS: - struct: EnumItem - Enum.Platform.Chromecast: - struct: EnumItem - Enum.Platform.DOS: - struct: EnumItem - Enum.Platform.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Platform.IOS: - struct: EnumItem - Enum.Platform.Linux: - struct: EnumItem - Enum.Platform.NX: - struct: EnumItem - Enum.Platform.None: - struct: EnumItem - Enum.Platform.OSX: - struct: EnumItem - Enum.Platform.Ouya: - struct: EnumItem - Enum.Platform.PS3: - struct: EnumItem - Enum.Platform.PS4: - struct: EnumItem - Enum.Platform.SteamOS: - struct: EnumItem - Enum.Platform.UWP: - struct: EnumItem - Enum.Platform.WebOS: - struct: EnumItem - Enum.Platform.WiiU: - struct: EnumItem - Enum.Platform.Windows: - struct: EnumItem - Enum.Platform.XBox360: - struct: EnumItem - Enum.Platform.XBoxOne: - struct: EnumItem - Enum.PlaybackState.Begin: - struct: EnumItem - Enum.PlaybackState.Cancelled: - struct: EnumItem - Enum.PlaybackState.Completed: - struct: EnumItem - Enum.PlaybackState.Delayed: - struct: EnumItem - Enum.PlaybackState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlaybackState.Paused: - struct: EnumItem - Enum.PlaybackState.Playing: - struct: EnumItem - Enum.PlayerActions.CharacterBackward: - struct: EnumItem - Enum.PlayerActions.CharacterForward: - struct: EnumItem - Enum.PlayerActions.CharacterJump: - struct: EnumItem - Enum.PlayerActions.CharacterLeft: - struct: EnumItem - Enum.PlayerActions.CharacterRight: - struct: EnumItem - Enum.PlayerActions.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlayerChatType.All: - struct: EnumItem - Enum.PlayerChatType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlayerChatType.Team: - struct: EnumItem - Enum.PlayerChatType.Whisper: - struct: EnumItem - Enum.PoseEasingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PoseEasingDirection.In: - struct: EnumItem - Enum.PoseEasingDirection.InOut: - struct: EnumItem - Enum.PoseEasingDirection.Out: - struct: EnumItem - Enum.PoseEasingStyle.Bounce: - struct: EnumItem - Enum.PoseEasingStyle.Constant: - struct: EnumItem - Enum.PoseEasingStyle.Cubic: - struct: EnumItem - Enum.PoseEasingStyle.Elastic: - struct: EnumItem - Enum.PoseEasingStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PoseEasingStyle.Linear: - struct: EnumItem - Enum.PositionAlignmentMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PositionAlignmentMode.OneAttachment: - struct: EnumItem - Enum.PositionAlignmentMode.TwoAttachment: - struct: EnumItem - Enum.PrivilegeType.Admin: - struct: EnumItem - Enum.PrivilegeType.Banned: - struct: EnumItem - Enum.PrivilegeType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PrivilegeType.Member: - struct: EnumItem - Enum.PrivilegeType.Owner: - struct: EnumItem - Enum.PrivilegeType.Visitor: - struct: EnumItem - Enum.ProductLocationRestriction.AllGames: - struct: EnumItem - Enum.ProductLocationRestriction.AllowedGames: - struct: EnumItem - Enum.ProductLocationRestriction.AvatarShop: - struct: EnumItem - Enum.ProductLocationRestriction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProductPurchaseDecision.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProductPurchaseDecision.NotProcessedYet: - struct: EnumItem - Enum.ProductPurchaseDecision.PurchaseGranted: - struct: EnumItem - Enum.PromptPublishAssetResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PromptPublishAssetResult.NoUserInput: - struct: EnumItem - Enum.PromptPublishAssetResult.PermissionDenied: - struct: EnumItem - Enum.PromptPublishAssetResult.Success: - struct: EnumItem - Enum.PromptPublishAssetResult.Timeout: - struct: EnumItem - Enum.PromptPublishAssetResult.UploadFailed: - struct: EnumItem - Enum.PropertyStatus.Error: - struct: EnumItem - Enum.PropertyStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PropertyStatus.Ok: - struct: EnumItem - Enum.PropertyStatus.Warning: - struct: EnumItem - Enum.ProximityPromptExclusivity.AlwaysShow: - struct: EnumItem - Enum.ProximityPromptExclusivity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProximityPromptExclusivity.OneGlobally: - struct: EnumItem - Enum.ProximityPromptExclusivity.OnePerButton: - struct: EnumItem - Enum.ProximityPromptInputType.Gamepad: - struct: EnumItem - Enum.ProximityPromptInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProximityPromptInputType.Keyboard: - struct: EnumItem - Enum.ProximityPromptInputType.Touch: - struct: EnumItem - Enum.ProximityPromptStyle.Custom: - struct: EnumItem - Enum.ProximityPromptStyle.Default: - struct: EnumItem - Enum.ProximityPromptStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.QualityLevel.Automatic: - struct: EnumItem - Enum.QualityLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.QualityLevel.Level 1: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 1 was replaced with Enum.QualityLevel.Level01 - replace: - - Enum.QualityLevel.Level01 - Enum.QualityLevel.Level 2: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 2 was replaced with Enum.QualityLevel.Level02 - replace: - - Enum.QualityLevel.Level02 - Enum.QualityLevel.Level 3: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 3 was replaced with Enum.QualityLevel.Level03 - replace: - - Enum.QualityLevel.Level03 - Enum.QualityLevel.Level 4: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 4 was replaced with Enum.QualityLevel.Level04 - replace: - - Enum.QualityLevel.Level04 - Enum.QualityLevel.Level 5: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 5 was replaced with Enum.QualityLevel.Level05 - replace: - - Enum.QualityLevel.Level05 - Enum.QualityLevel.Level 6: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 6 was replaced with Enum.QualityLevel.Level06 - replace: - - Enum.QualityLevel.Level06 - Enum.QualityLevel.Level 7: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 7 was replaced with Enum.QualityLevel.Level07 - replace: - - Enum.QualityLevel.Level07 - Enum.QualityLevel.Level 8: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 8 was replaced with Enum.QualityLevel.Level08 - replace: - - Enum.QualityLevel.Level08 - Enum.QualityLevel.Level 9: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 9 was replaced with Enum.QualityLevel.Level09 - replace: - - Enum.QualityLevel.Level09 - Enum.QualityLevel.Level 10: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 10 was replaced with Enum.QualityLevel.Level10 - replace: - - Enum.QualityLevel.Level10 - Enum.QualityLevel.Level 11: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 11 was replaced with Enum.QualityLevel.Level11 - replace: - - Enum.QualityLevel.Level11 - Enum.QualityLevel.Level 12: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 12 was replaced with Enum.QualityLevel.Level12 - replace: - - Enum.QualityLevel.Level12 - Enum.QualityLevel.Level 13: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 13 was replaced with Enum.QualityLevel.Level13 - replace: - - Enum.QualityLevel.Level13 - Enum.QualityLevel.Level 14: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 14 was replaced with Enum.QualityLevel.Level14 - replace: - - Enum.QualityLevel.Level14 - Enum.QualityLevel.Level 15: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 15 was replaced with Enum.QualityLevel.Level15 - replace: - - Enum.QualityLevel.Level15 - Enum.QualityLevel.Level 16: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 16 was replaced with Enum.QualityLevel.Level16 - replace: - - Enum.QualityLevel.Level16 - Enum.QualityLevel.Level 17: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 17 was replaced with Enum.QualityLevel.Level17 - replace: - - Enum.QualityLevel.Level17 - Enum.QualityLevel.Level 18: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 18 was replaced with Enum.QualityLevel.Level18 - replace: - - Enum.QualityLevel.Level18 - Enum.QualityLevel.Level 19: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 19 was replaced with Enum.QualityLevel.Level19 - replace: - - Enum.QualityLevel.Level19 - Enum.QualityLevel.Level 20: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 20 was replaced with Enum.QualityLevel.Level20 - replace: - - Enum.QualityLevel.Level20 - Enum.QualityLevel.Level 21: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 21 was replaced with Enum.QualityLevel.Level21 - replace: - - Enum.QualityLevel.Level21 - Enum.QualityLevel.Level01: - struct: EnumItem - Enum.QualityLevel.Level02: - struct: EnumItem - Enum.QualityLevel.Level03: - struct: EnumItem - Enum.QualityLevel.Level04: - struct: EnumItem - Enum.QualityLevel.Level05: - struct: EnumItem - Enum.QualityLevel.Level06: - struct: EnumItem - Enum.QualityLevel.Level07: - struct: EnumItem - Enum.QualityLevel.Level08: - struct: EnumItem - Enum.QualityLevel.Level09: - struct: EnumItem - Enum.QualityLevel.Level10: - struct: EnumItem - Enum.QualityLevel.Level11: - struct: EnumItem - Enum.QualityLevel.Level12: - struct: EnumItem - Enum.QualityLevel.Level13: - struct: EnumItem - Enum.QualityLevel.Level14: - struct: EnumItem - Enum.QualityLevel.Level15: - struct: EnumItem - Enum.QualityLevel.Level16: - struct: EnumItem - Enum.QualityLevel.Level17: - struct: EnumItem - Enum.QualityLevel.Level18: - struct: EnumItem - Enum.QualityLevel.Level19: - struct: EnumItem - Enum.QualityLevel.Level20: - struct: EnumItem - Enum.QualityLevel.Level21: - struct: EnumItem - Enum.R15CollisionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.R15CollisionType.InnerBox: - struct: EnumItem - Enum.R15CollisionType.OuterBox: - struct: EnumItem - Enum.RaycastFilterType.Blacklist: - struct: EnumItem - deprecated: - message: Enum.RaycastFilterType.Blacklist was replaced with Enum.RaycastFilterType.Exclude - replace: - - Enum.RaycastFilterType.Exclude - Enum.RaycastFilterType.Exclude: - struct: EnumItem - Enum.RaycastFilterType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RaycastFilterType.Include: - struct: EnumItem - Enum.RaycastFilterType.Whitelist: - struct: EnumItem - deprecated: - message: Enum.RaycastFilterType.Whitelist was replaced with Enum.RaycastFilterType.Include - replace: - - Enum.RaycastFilterType.Include - Enum.RejectCharacterDeletions.Default: - struct: EnumItem - Enum.RejectCharacterDeletions.Disabled: - struct: EnumItem - Enum.RejectCharacterDeletions.Enabled: - struct: EnumItem - Enum.RejectCharacterDeletions.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderFidelity.Automatic: - struct: EnumItem - Enum.RenderFidelity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderFidelity.Performance: - struct: EnumItem - Enum.RenderFidelity.Precise: - struct: EnumItem - Enum.RenderPriority.Camera: - struct: EnumItem - Enum.RenderPriority.Character: - struct: EnumItem - Enum.RenderPriority.First: - struct: EnumItem - Enum.RenderPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderPriority.Input: - struct: EnumItem - Enum.RenderPriority.Last: - struct: EnumItem - Enum.RenderingTestComparisonMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderingTestComparisonMethod.diff: - struct: EnumItem - Enum.RenderingTestComparisonMethod.psnr: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Default: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Disabled: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Enabled: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ResamplerMode.Default: - struct: EnumItem - Enum.ResamplerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ResamplerMode.Pixelated: - struct: EnumItem - Enum.ReservedHighlightId.Active: - struct: EnumItem - Enum.ReservedHighlightId.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReservedHighlightId.Hover: - struct: EnumItem - Enum.ReservedHighlightId.Selection: - struct: EnumItem - Enum.ReservedHighlightId.Standard: - struct: EnumItem - Enum.ReturnKeyType.Default: - struct: EnumItem - Enum.ReturnKeyType.Done: - struct: EnumItem - Enum.ReturnKeyType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReturnKeyType.Go: - struct: EnumItem - Enum.ReturnKeyType.Next: - struct: EnumItem - Enum.ReturnKeyType.Search: - struct: EnumItem - Enum.ReturnKeyType.Send: - struct: EnumItem - Enum.ReverbType.Alley: - struct: EnumItem - Enum.ReverbType.Arena: - struct: EnumItem - Enum.ReverbType.Auditorium: - struct: EnumItem - Enum.ReverbType.Bathroom: - struct: EnumItem - Enum.ReverbType.CarpettedHallway: - struct: EnumItem - Enum.ReverbType.Cave: - struct: EnumItem - Enum.ReverbType.City: - struct: EnumItem - Enum.ReverbType.ConcertHall: - struct: EnumItem - Enum.ReverbType.Forest: - struct: EnumItem - Enum.ReverbType.GenericReverb: - struct: EnumItem - Enum.ReverbType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReverbType.Hallway: - struct: EnumItem - Enum.ReverbType.Hangar: - struct: EnumItem - Enum.ReverbType.LivingRoom: - struct: EnumItem - Enum.ReverbType.Mountains: - struct: EnumItem - Enum.ReverbType.NoReverb: - struct: EnumItem - Enum.ReverbType.PaddedCell: - struct: EnumItem - Enum.ReverbType.ParkingLot: - struct: EnumItem - Enum.ReverbType.Plain: - struct: EnumItem - Enum.ReverbType.Quarry: - struct: EnumItem - Enum.ReverbType.Room: - struct: EnumItem - Enum.ReverbType.SewerPipe: - struct: EnumItem - Enum.ReverbType.StoneCorridor: - struct: EnumItem - Enum.ReverbType.StoneRoom: - struct: EnumItem - Enum.ReverbType.UnderWater: - struct: EnumItem - Enum.RibbonTool.ColorPicker: - struct: EnumItem - Enum.RibbonTool.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RibbonTool.Group: - struct: EnumItem - Enum.RibbonTool.MaterialPicker: - struct: EnumItem - Enum.RibbonTool.Move: - struct: EnumItem - Enum.RibbonTool.None: - struct: EnumItem - Enum.RibbonTool.Rotate: - struct: EnumItem - Enum.RibbonTool.Scale: - struct: EnumItem - Enum.RibbonTool.Select: - struct: EnumItem - Enum.RibbonTool.Transform: - struct: EnumItem - Enum.RibbonTool.Ungroup: - struct: EnumItem - Enum.RigScale.Default: - struct: EnumItem - Enum.RigScale.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RigScale.Rthro: - struct: EnumItem - Enum.RigScale.RthroNarrow: - struct: EnumItem - Enum.RigType.Custom: - struct: EnumItem - Enum.RigType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RigType.None: - struct: EnumItem - Enum.RigType.R15: - struct: EnumItem - Enum.RigType.Rthro: - struct: EnumItem - Enum.RigType.RthroNarrow: - struct: EnumItem - Enum.RollOffMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RollOffMode.Inverse: - struct: EnumItem - Enum.RollOffMode.InverseTapered: - struct: EnumItem - Enum.RollOffMode.Linear: - struct: EnumItem - Enum.RollOffMode.LinearSquare: - struct: EnumItem - Enum.RotationOrder.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RotationOrder.XYZ: - struct: EnumItem - Enum.RotationOrder.XZY: - struct: EnumItem - Enum.RotationOrder.YXZ: - struct: EnumItem - Enum.RotationOrder.YZX: - struct: EnumItem - Enum.RotationOrder.ZXY: - struct: EnumItem - Enum.RotationOrder.ZYX: - struct: EnumItem - Enum.RotationType.CameraRelative: - struct: EnumItem - Enum.RotationType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RotationType.MovementRelative: - struct: EnumItem - Enum.RtlTextSupport.Default: - struct: EnumItem - Enum.RtlTextSupport.Disabled: - struct: EnumItem - Enum.RtlTextSupport.Enabled: - struct: EnumItem - Enum.RtlTextSupport.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RunContext.Client: - struct: EnumItem - Enum.RunContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RunContext.Legacy: - struct: EnumItem - Enum.RunContext.Plugin: - struct: EnumItem - Enum.RunContext.Server: - struct: EnumItem - Enum.RuntimeUndoBehavior.Aggregate: - struct: EnumItem - Enum.RuntimeUndoBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RuntimeUndoBehavior.Hybrid: - struct: EnumItem - Enum.RuntimeUndoBehavior.Snapshot: - struct: EnumItem - Enum.SafeAreaCompatibility.FullscreenExtension: - struct: EnumItem - Enum.SafeAreaCompatibility.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SafeAreaCompatibility.None: - struct: EnumItem - Enum.SalesTypeFilter.All: - struct: EnumItem - Enum.SalesTypeFilter.Collectibles: - struct: EnumItem - Enum.SalesTypeFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SalesTypeFilter.Premium: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadDistanceScale: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadFieldOfViewDeg: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadThumbnailType: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadYRotDeg: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SaveAvatarThumbnailCustomizationFailure.Other: - struct: EnumItem - Enum.SaveFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SaveFilter.SaveAll: - struct: EnumItem - Enum.SaveFilter.SaveGame: - struct: EnumItem - Enum.SaveFilter.SaveWorld: - struct: EnumItem - Enum.SavedQualitySetting.Automatic: - struct: EnumItem - Enum.SavedQualitySetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SavedQualitySetting.QualityLevel1: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel10: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel2: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel3: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel4: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel5: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel6: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel7: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel8: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel9: - struct: EnumItem - Enum.ScaleType.Crop: - struct: EnumItem - Enum.ScaleType.Fit: - struct: EnumItem - Enum.ScaleType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScaleType.Slice: - struct: EnumItem - Enum.ScaleType.Stretch: - struct: EnumItem - Enum.ScaleType.Tile: - struct: EnumItem - Enum.ScopeCheckResult.BackendError: - struct: EnumItem - Enum.ScopeCheckResult.ConsentAccepted: - struct: EnumItem - Enum.ScopeCheckResult.ConsentDenied: - struct: EnumItem - Enum.ScopeCheckResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScopeCheckResult.InvalidArgument: - struct: EnumItem - Enum.ScopeCheckResult.InvalidScopes: - struct: EnumItem - Enum.ScopeCheckResult.NoUserInput: - struct: EnumItem - Enum.ScopeCheckResult.Timeout: - struct: EnumItem - Enum.ScopeCheckResult.UnexpectedError: - struct: EnumItem - Enum.ScreenInsets.CoreUISafeInsets: - struct: EnumItem - Enum.ScreenInsets.DeviceSafeInsets: - struct: EnumItem - Enum.ScreenInsets.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScreenInsets.None: - struct: EnumItem - Enum.ScreenOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScreenOrientation.LandscapeLeft: - struct: EnumItem - Enum.ScreenOrientation.LandscapeRight: - struct: EnumItem - Enum.ScreenOrientation.LandscapeSensor: - struct: EnumItem - Enum.ScreenOrientation.Portrait: - struct: EnumItem - Enum.ScreenOrientation.Sensor: - struct: EnumItem - Enum.ScrollBarInset.Always: - struct: EnumItem - Enum.ScrollBarInset.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScrollBarInset.None: - struct: EnumItem - Enum.ScrollBarInset.ScrollBar: - struct: EnumItem - Enum.ScrollingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScrollingDirection.X: - struct: EnumItem - Enum.ScrollingDirection.XY: - struct: EnumItem - Enum.ScrollingDirection.Y: - struct: EnumItem - Enum.SelectionBehavior.Escape: - struct: EnumItem - Enum.SelectionBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SelectionBehavior.Stop: - struct: EnumItem - Enum.SensorMode.Floor: - struct: EnumItem - Enum.SensorMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SensorMode.Ladder: - struct: EnumItem - Enum.SensorUpdateType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SensorUpdateType.Manual: - struct: EnumItem - Enum.SensorUpdateType.OnRead: - struct: EnumItem - Enum.ServerAudioBehavior.Enabled: - struct: EnumItem - Enum.ServerAudioBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ServerAudioBehavior.Muted: - struct: EnumItem - Enum.ServerAudioBehavior.OnlineGame: - struct: EnumItem - Enum.ServiceVisibility.Always: - struct: EnumItem - Enum.ServiceVisibility.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ServiceVisibility.Off: - struct: EnumItem - Enum.ServiceVisibility.WithChildren: - struct: EnumItem - Enum.Severity.Error: - struct: EnumItem - Enum.Severity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Severity.Warning: - struct: EnumItem - Enum.SignalBehavior.AncestryDeferred: - struct: EnumItem - Enum.SignalBehavior.Default: - struct: EnumItem - Enum.SignalBehavior.Deferred: - struct: EnumItem - Enum.SignalBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SignalBehavior.Immediate: - struct: EnumItem - Enum.SizeConstraint.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SizeConstraint.RelativeXX: - struct: EnumItem - Enum.SizeConstraint.RelativeXY: - struct: EnumItem - Enum.SizeConstraint.RelativeYY: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.Disabled: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SolverConvergenceVisualizationMode.PerEdge: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.PerIsland: - struct: EnumItem - Enum.SortDirection.Ascending: - struct: EnumItem - Enum.SortDirection.Descending: - struct: EnumItem - Enum.SortDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SortOrder.Custom: - struct: EnumItem - Enum.SortOrder.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SortOrder.LayoutOrder: - struct: EnumItem - Enum.SortOrder.Name: - struct: EnumItem - Enum.SpecialKey.ChatHotkey: - struct: EnumItem - Enum.SpecialKey.End: - struct: EnumItem - Enum.SpecialKey.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SpecialKey.Home: - struct: EnumItem - Enum.SpecialKey.Insert: - struct: EnumItem - Enum.SpecialKey.PageDown: - struct: EnumItem - Enum.SpecialKey.PageUp: - struct: EnumItem - Enum.StartCorner.BottomLeft: - struct: EnumItem - Enum.StartCorner.BottomRight: - struct: EnumItem - Enum.StartCorner.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StartCorner.TopLeft: - struct: EnumItem - Enum.StartCorner.TopRight: - struct: EnumItem - Enum.Status.Confusion: - struct: EnumItem - Enum.Status.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Status.Poison: - struct: EnumItem - Enum.StreamOutBehavior.Default: - struct: EnumItem - Enum.StreamOutBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StreamOutBehavior.LowMemory: - struct: EnumItem - Enum.StreamOutBehavior.Opportunistic: - struct: EnumItem - Enum.StreamingIntegrityMode.Default: - struct: EnumItem - Enum.StreamingIntegrityMode.Disabled: - struct: EnumItem - Enum.StreamingIntegrityMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StreamingIntegrityMode.MinimumRadiusPause: - struct: EnumItem - Enum.StreamingIntegrityMode.PauseOutsideLoadedArea: - struct: EnumItem - Enum.StreamingPauseMode.ClientPhysicsPause: - struct: EnumItem - Enum.StreamingPauseMode.Default: - struct: EnumItem - Enum.StreamingPauseMode.Disabled: - struct: EnumItem - Enum.StreamingPauseMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioCloseMode.CloseDoc: - struct: EnumItem - Enum.StudioCloseMode.CloseStudio: - struct: EnumItem - Enum.StudioCloseMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioCloseMode.None: - struct: EnumItem - Enum.StudioDataModelType.Edit: - struct: EnumItem - Enum.StudioDataModelType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioDataModelType.None: - struct: EnumItem - Enum.StudioDataModelType.PlayClient: - struct: EnumItem - Enum.StudioDataModelType.PlayServer: - struct: EnumItem - Enum.StudioDataModelType.Standalone: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.ActiveLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Background: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Bool: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Bracket: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Builtin: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Comment: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DebuggerCurrentLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DebuggerErrorLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Default: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DocViewCodeBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Error: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.FindSelectionBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Function: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.FunctionName: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioScriptEditorColorCategories.Keyword: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Local: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.LuauKeyword: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MatchingWordBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuBorder: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuPrimaryText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuScrollbarBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuScrollbarHandle: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSecondaryText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSelectedBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSelectedText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Method: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Nil: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Number: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Operator: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Property: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Ruler: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.SelectionBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.SelectionText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Self: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.String: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.TODO: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Warning: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Whitespace: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Custom: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Extra1: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Extra2: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioScriptEditorColorPresets.RobloxDefault: - struct: EnumItem - Enum.StudioStyleGuideColor.AttributeCog: - struct: EnumItem - Enum.StudioStyleGuideColor.Border: - struct: EnumItem - Enum.StudioStyleGuideColor.BrightText: - struct: EnumItem - Enum.StudioStyleGuideColor.Button: - struct: EnumItem - Enum.StudioStyleGuideColor.ButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.ButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.CategoryItem: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatIncomingBgColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatIncomingTextColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatModeratedMessageColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatOutgoingBgColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatOutgoingTextColor: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldIndicator: - struct: EnumItem - Enum.StudioStyleGuideColor.ColorPickerFrame: - struct: EnumItem - Enum.StudioStyleGuideColor.CurrentMarker: - struct: EnumItem - Enum.StudioStyleGuideColor.Dark: - struct: EnumItem - Enum.StudioStyleGuideColor.DebuggerCurrentLine: - struct: EnumItem - Enum.StudioStyleGuideColor.DebuggerErrorLine: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButton: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogMainButton: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogMainButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathText: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNum: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumAdditionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumDeletionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumNoChangeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumSeparatorBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextAddition: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextAdditionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextDeletion: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextDeletionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextHunkInfo: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextNoChange: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextNoChangeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextSeparatorBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DimmedText: - struct: EnumItem - Enum.StudioStyleGuideColor.DocViewCodeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DropShadow: - struct: EnumItem - Enum.StudioStyleGuideColor.Dropdown: - struct: EnumItem - Enum.StudioStyleGuideColor.EmulatorBar: - struct: EnumItem - Enum.StudioStyleGuideColor.EmulatorDropDown: - struct: EnumItem - Enum.StudioStyleGuideColor.ErrorText: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonAccent: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonBorderAlt: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonChecked: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonDefault: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonHover: - struct: EnumItem - Enum.StudioStyleGuideColor.GameSettingsTableItem: - struct: EnumItem - Enum.StudioStyleGuideColor.GameSettingsTooltip: - struct: EnumItem - Enum.StudioStyleGuideColor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioStyleGuideColor.HeaderSection: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoBarWarningBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoBarWarningText: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoText: - struct: EnumItem - Enum.StudioStyleGuideColor.InputFieldBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.InputFieldBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.Item: - struct: EnumItem - Enum.StudioStyleGuideColor.Light: - struct: EnumItem - Enum.StudioStyleGuideColor.LinkText: - struct: EnumItem - Enum.StudioStyleGuideColor.MainBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.MainButton: - struct: EnumItem - Enum.StudioStyleGuideColor.MainText: - struct: EnumItem - Enum.StudioStyleGuideColor.Mid: - struct: EnumItem - Enum.StudioStyleGuideColor.Midlight: - struct: EnumItem - Enum.StudioStyleGuideColor.Notification: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonButton: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonTab: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonTabTopBar: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBool: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBracket: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBuiltInFunction: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptComment: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptEditorCurrentLine: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptError: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFindSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFunction: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFunctionName: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptKeyword: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptLocal: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptLuauKeyword: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptMatchingWordSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptMethod: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptNil: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptNumber: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptOperator: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptProperty: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptRuler: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelectionText: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelf: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSideWidget: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptString: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptText: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptTodo: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptWarning: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptWhitespace: - struct: EnumItem - Enum.StudioStyleGuideColor.ScrollBar: - struct: EnumItem - Enum.StudioStyleGuideColor.ScrollBarBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.SensitiveText: - struct: EnumItem - Enum.StudioStyleGuideColor.Separator: - struct: EnumItem - Enum.StudioStyleGuideColor.Shadow: - struct: EnumItem - Enum.StudioStyleGuideColor.StatusBar: - struct: EnumItem - Enum.StudioStyleGuideColor.SubText: - struct: EnumItem - Enum.StudioStyleGuideColor.Tab: - struct: EnumItem - Enum.StudioStyleGuideColor.TabBar: - struct: EnumItem - Enum.StudioStyleGuideColor.TableItem: - struct: EnumItem - Enum.StudioStyleGuideColor.Titlebar: - struct: EnumItem - Enum.StudioStyleGuideColor.TitlebarText: - struct: EnumItem - Enum.StudioStyleGuideColor.Tooltip: - struct: EnumItem - Enum.StudioStyleGuideColor.ViewPortBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.WarningText: - struct: EnumItem - Enum.StudioStyleGuideModifier.Default: - struct: EnumItem - Enum.StudioStyleGuideModifier.Disabled: - struct: EnumItem - Enum.StudioStyleGuideModifier.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioStyleGuideModifier.Hover: - struct: EnumItem - Enum.StudioStyleGuideModifier.Pressed: - struct: EnumItem - Enum.StudioStyleGuideModifier.Selected: - struct: EnumItem - Enum.Style.Alternating Supports: - struct: EnumItem - deprecated: - message: Enum.Style.Alternating Supports was replaced with Enum.Style.AlternatingSupports - replace: - - Enum.Style.AlternatingSupports - Enum.Style.AlternatingSupports: - struct: EnumItem - Enum.Style.Bridge Style Supports: - struct: EnumItem - deprecated: - message: Enum.Style.Bridge Style Supports was replaced with Enum.Style.BridgeStyleSupports - replace: - - Enum.Style.BridgeStyleSupports - Enum.Style.BridgeStyleSupports: - struct: EnumItem - Enum.Style.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Style.No Supports: - struct: EnumItem - deprecated: - message: Enum.Style.No Supports was replaced with Enum.Style.NoSupports - replace: - - Enum.Style.NoSupports - Enum.Style.NoSupports: - struct: EnumItem - Enum.SurfaceConstraint.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceConstraint.Hinge: - struct: EnumItem - Enum.SurfaceConstraint.Motor: - struct: EnumItem - Enum.SurfaceConstraint.None: - struct: EnumItem - Enum.SurfaceConstraint.SteppingMotor: - struct: EnumItem - Enum.SurfaceGuiShape.CurvedHorizontally: - struct: EnumItem - Enum.SurfaceGuiShape.Flat: - struct: EnumItem - Enum.SurfaceGuiShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceGuiSizingMode.FixedSize: - struct: EnumItem - Enum.SurfaceGuiSizingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceGuiSizingMode.PixelsPerStud: - struct: EnumItem - Enum.SurfaceType.Bumps: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Bumps was replaced with Enum.SurfaceType.Glue - replace: - - Enum.SurfaceType.Glue - Enum.SurfaceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceType.Glue: - struct: EnumItem - Enum.SurfaceType.Hinge: - struct: EnumItem - Enum.SurfaceType.Inlet: - struct: EnumItem - Enum.SurfaceType.Motor: - struct: EnumItem - Enum.SurfaceType.Smooth: - struct: EnumItem - Enum.SurfaceType.SmoothNoOutlines: - struct: EnumItem - Enum.SurfaceType.Spawn: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Spawn was replaced with Enum.SurfaceType.Smooth - replace: - - Enum.SurfaceType.Smooth - Enum.SurfaceType.SteppingMotor: - struct: EnumItem - Enum.SurfaceType.Studs: - struct: EnumItem - Enum.SurfaceType.Universal: - struct: EnumItem - Enum.SurfaceType.Unjoinable: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Unjoinable was replaced with Enum.SurfaceType.Smooth - replace: - - Enum.SurfaceType.Smooth - Enum.SurfaceType.Weld: - struct: EnumItem - Enum.SwipeDirection.Down: - struct: EnumItem - Enum.SwipeDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SwipeDirection.Left: - struct: EnumItem - Enum.SwipeDirection.None: - struct: EnumItem - Enum.SwipeDirection.Right: - struct: EnumItem - Enum.SwipeDirection.Up: - struct: EnumItem - Enum.TableMajorAxis.ColumnMajor: - struct: EnumItem - Enum.TableMajorAxis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TableMajorAxis.RowMajor: - struct: EnumItem - Enum.Technology.Compatibility: - struct: EnumItem - Enum.Technology.Future: - struct: EnumItem - Enum.Technology.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Technology.Legacy: - struct: EnumItem - Enum.Technology.ShadowMap: - struct: EnumItem - Enum.Technology.Voxel: - struct: EnumItem - Enum.TeleportMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportMethod.TeleportPartyAsync: - struct: EnumItem - Enum.TeleportMethod.TeleportToPlaceInstance: - struct: EnumItem - Enum.TeleportMethod.TeleportToPrivateServer: - struct: EnumItem - Enum.TeleportMethod.TeleportToSpawnByName: - struct: EnumItem - Enum.TeleportMethod.TeleportUnknown: - struct: EnumItem - Enum.TeleportResult.Failure: - struct: EnumItem - Enum.TeleportResult.Flooded: - struct: EnumItem - Enum.TeleportResult.GameEnded: - struct: EnumItem - Enum.TeleportResult.GameFull: - struct: EnumItem - Enum.TeleportResult.GameNotFound: - struct: EnumItem - Enum.TeleportResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportResult.IsTeleporting: - struct: EnumItem - Enum.TeleportResult.Success: - struct: EnumItem - Enum.TeleportResult.Unauthorized: - struct: EnumItem - Enum.TeleportState.Failed: - struct: EnumItem - Enum.TeleportState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportState.InProgress: - struct: EnumItem - Enum.TeleportState.RequestedFromServer: - struct: EnumItem - Enum.TeleportState.Started: - struct: EnumItem - Enum.TeleportState.WaitingForServer: - struct: EnumItem - Enum.TeleportType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportType.ToInstance: - struct: EnumItem - Enum.TeleportType.ToPlace: - struct: EnumItem - Enum.TeleportType.ToReservedServer: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Convert: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditAddTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditReplaceTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditSeaLevelTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Generate: - struct: EnumItem - Enum.TerrainAcquisitionMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TerrainAcquisitionMethod.Import: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Legacy: - struct: EnumItem - Enum.TerrainAcquisitionMethod.None: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Other: - struct: EnumItem - Enum.TerrainAcquisitionMethod.RegionFillTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.RegionPasteTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Template: - struct: EnumItem - Enum.TerrainFace.Bottom: - struct: EnumItem - Enum.TerrainFace.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TerrainFace.Side: - struct: EnumItem - Enum.TerrainFace.Top: - struct: EnumItem - Enum.TextChatMessageStatus.Floodchecked: - struct: EnumItem - Enum.TextChatMessageStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextChatMessageStatus.InvalidPrivacySettings: - struct: EnumItem - Enum.TextChatMessageStatus.InvalidTextChannelPermissions: - struct: EnumItem - Enum.TextChatMessageStatus.MessageTooLong: - struct: EnumItem - Enum.TextChatMessageStatus.Sending: - struct: EnumItem - Enum.TextChatMessageStatus.Success: - struct: EnumItem - Enum.TextChatMessageStatus.TextFilterFailed: - struct: EnumItem - Enum.TextChatMessageStatus.Unknown: - struct: EnumItem - Enum.TextFilterContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextFilterContext.PrivateChat: - struct: EnumItem - Enum.TextFilterContext.PublicChat: - struct: EnumItem - Enum.TextInputType.Default: - struct: EnumItem - Enum.TextInputType.Email: - struct: EnumItem - Enum.TextInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextInputType.NoSuggestions: - struct: EnumItem - Enum.TextInputType.Number: - struct: EnumItem - Enum.TextInputType.OneTimePassword: - struct: EnumItem - Enum.TextInputType.Password: - struct: EnumItem - Enum.TextInputType.PasswordShown: - struct: EnumItem - Enum.TextInputType.Phone: - struct: EnumItem - Enum.TextInputType.Username: - struct: EnumItem - Enum.TextTruncate.AtEnd: - struct: EnumItem - Enum.TextTruncate.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextTruncate.None: - struct: EnumItem - Enum.TextXAlignment.Center: - struct: EnumItem - Enum.TextXAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextXAlignment.Left: - struct: EnumItem - Enum.TextXAlignment.Right: - struct: EnumItem - Enum.TextYAlignment.Bottom: - struct: EnumItem - Enum.TextYAlignment.Center: - struct: EnumItem - Enum.TextYAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextYAlignment.Top: - struct: EnumItem - Enum.TextureMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextureMode.Static: - struct: EnumItem - Enum.TextureMode.Stretch: - struct: EnumItem - Enum.TextureMode.Wrap: - struct: EnumItem - Enum.TextureQueryType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextureQueryType.Humanoid: - struct: EnumItem - Enum.TextureQueryType.HumanoidOrphaned: - struct: EnumItem - Enum.TextureQueryType.NonHumanoid: - struct: EnumItem - Enum.TextureQueryType.NonHumanoidOrphaned: - struct: EnumItem - Enum.ThreadPoolConfig.Auto: - struct: EnumItem - Enum.ThreadPoolConfig.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThreadPoolConfig.PartialThread: - struct: EnumItem - deprecated: - message: Enum.ThreadPoolConfig.PartialThread was replaced with Enum.ThreadPoolConfig.Auto - replace: - - Enum.ThreadPoolConfig.Auto - Enum.ThreadPoolConfig.PerCore1: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore2: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore3: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore4: - struct: EnumItem - Enum.ThreadPoolConfig.Threads1: - struct: EnumItem - Enum.ThreadPoolConfig.Threads16: - struct: EnumItem - Enum.ThreadPoolConfig.Threads2: - struct: EnumItem - Enum.ThreadPoolConfig.Threads3: - struct: EnumItem - Enum.ThreadPoolConfig.Threads4: - struct: EnumItem - Enum.ThreadPoolConfig.Threads8: - struct: EnumItem - Enum.ThrottlingPriority.Default: - struct: EnumItem - Enum.ThrottlingPriority.ElevatedOnServer: - struct: EnumItem - Enum.ThrottlingPriority.Extreme: - struct: EnumItem - Enum.ThrottlingPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailSize.Size100x100: - struct: EnumItem - Enum.ThumbnailSize.Size150x150: - struct: EnumItem - Enum.ThumbnailSize.Size180x180: - struct: EnumItem - Enum.ThumbnailSize.Size352x352: - struct: EnumItem - Enum.ThumbnailSize.Size420x420: - struct: EnumItem - Enum.ThumbnailSize.Size48x48: - struct: EnumItem - Enum.ThumbnailSize.Size60x60: - struct: EnumItem - Enum.ThumbnailType.AvatarBust: - struct: EnumItem - Enum.ThumbnailType.AvatarThumbnail: - struct: EnumItem - Enum.ThumbnailType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailType.HeadShot: - struct: EnumItem - Enum.TickCountSampleMethod.Benchmark: - struct: EnumItem - Enum.TickCountSampleMethod.Fast: - struct: EnumItem - Enum.TickCountSampleMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TickCountSampleMethod.Precise: - struct: EnumItem - Enum.TopBottom.Bottom: - struct: EnumItem - Enum.TopBottom.Center: - struct: EnumItem - Enum.TopBottom.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TopBottom.Top: - struct: EnumItem - Enum.TouchCameraMovementMode.Classic: - struct: EnumItem - Enum.TouchCameraMovementMode.Default: - struct: EnumItem - Enum.TouchCameraMovementMode.Follow: - struct: EnumItem - Enum.TouchCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TouchCameraMovementMode.Orbital: - struct: EnumItem - Enum.TouchMovementMode.ClickToMove: - struct: EnumItem - Enum.TouchMovementMode.DPad: - struct: EnumItem - Enum.TouchMovementMode.Default: - struct: EnumItem - Enum.TouchMovementMode.DynamicThumbstick: - struct: EnumItem - Enum.TouchMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TouchMovementMode.Thumbpad: - struct: EnumItem - Enum.TouchMovementMode.Thumbstick: - struct: EnumItem - Enum.TrackerError.AudioError: - struct: EnumItem - Enum.TrackerError.AudioNoPermission: - struct: EnumItem - Enum.TrackerError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerError.InitFailed: - struct: EnumItem - Enum.TrackerError.NoAudio: - struct: EnumItem - Enum.TrackerError.NoService: - struct: EnumItem - Enum.TrackerError.NoVideo: - struct: EnumItem - Enum.TrackerError.Ok: - struct: EnumItem - Enum.TrackerError.VideoError: - struct: EnumItem - Enum.TrackerError.VideoNoPermission: - struct: EnumItem - Enum.TrackerError.VideoUnsupported: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.Auto: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ExtrapolateFacsAndPose: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ExtrapolateFacsOnly: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ForceDisabled: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerLodFlagMode.Auto: - struct: EnumItem - Enum.TrackerLodFlagMode.ForceFalse: - struct: EnumItem - Enum.TrackerLodFlagMode.ForceTrue: - struct: EnumItem - Enum.TrackerLodFlagMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerLodValueMode.Auto: - struct: EnumItem - Enum.TrackerLodValueMode.Force0: - struct: EnumItem - Enum.TrackerLodValueMode.Force1: - struct: EnumItem - Enum.TrackerLodValueMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerMode.Audio: - struct: EnumItem - Enum.TrackerMode.AudioVideo: - struct: EnumItem - Enum.TrackerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerMode.None: - struct: EnumItem - Enum.TrackerMode.Video: - struct: EnumItem - Enum.TrackerPromptEvent.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerPromptEvent.LODCameraRecommendDisable: - struct: EnumItem - Enum.TriStateBoolean.False: - struct: EnumItem - Enum.TriStateBoolean.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TriStateBoolean.True: - struct: EnumItem - Enum.TriStateBoolean.Unknown: - struct: EnumItem - Enum.TweenStatus.Canceled: - struct: EnumItem - Enum.TweenStatus.Completed: - struct: EnumItem - Enum.TweenStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UITheme.Dark: - struct: EnumItem - Enum.UITheme.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UITheme.Light: - struct: EnumItem - Enum.UiMessageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UiMessageType.UiMessageError: - struct: EnumItem - Enum.UiMessageType.UiMessageInfo: - struct: EnumItem - Enum.UsageContext.Default: - struct: EnumItem - Enum.UsageContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UsageContext.Preview: - struct: EnumItem - Enum.UserCFrame.Floor: - struct: EnumItem - Enum.UserCFrame.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserCFrame.Head: - struct: EnumItem - Enum.UserCFrame.LeftHand: - struct: EnumItem - Enum.UserCFrame.RightHand: - struct: EnumItem - Enum.UserInputState.Begin: - struct: EnumItem - Enum.UserInputState.Cancel: - struct: EnumItem - Enum.UserInputState.Change: - struct: EnumItem - Enum.UserInputState.End: - struct: EnumItem - Enum.UserInputState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserInputState.None: - struct: EnumItem - Enum.UserInputType.Accelerometer: - struct: EnumItem - Enum.UserInputType.Focus: - struct: EnumItem - Enum.UserInputType.Gamepad1: - struct: EnumItem - Enum.UserInputType.Gamepad2: - struct: EnumItem - Enum.UserInputType.Gamepad3: - struct: EnumItem - Enum.UserInputType.Gamepad4: - struct: EnumItem - Enum.UserInputType.Gamepad5: - struct: EnumItem - Enum.UserInputType.Gamepad6: - struct: EnumItem - Enum.UserInputType.Gamepad7: - struct: EnumItem - Enum.UserInputType.Gamepad8: - struct: EnumItem - Enum.UserInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserInputType.Gyro: - struct: EnumItem - Enum.UserInputType.InputMethod: - struct: EnumItem - Enum.UserInputType.Keyboard: - struct: EnumItem - Enum.UserInputType.MouseButton1: - struct: EnumItem - Enum.UserInputType.MouseButton2: - struct: EnumItem - Enum.UserInputType.MouseButton3: - struct: EnumItem - Enum.UserInputType.MouseMovement: - struct: EnumItem - Enum.UserInputType.MouseWheel: - struct: EnumItem - Enum.UserInputType.None: - struct: EnumItem - Enum.UserInputType.TextInput: - struct: EnumItem - Enum.UserInputType.Touch: - struct: EnumItem - Enum.VRPlayMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRPlayMode.Seated: - struct: EnumItem - Enum.VRPlayMode.Standing: - struct: EnumItem - Enum.VRSafetyBubbleMode.Anyone: - struct: EnumItem - Enum.VRSafetyBubbleMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRSafetyBubbleMode.NoOne: - struct: EnumItem - Enum.VRSafetyBubbleMode.OnlyFriends: - struct: EnumItem - Enum.VRScaling.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRScaling.Off: - struct: EnumItem - Enum.VRScaling.World: - struct: EnumItem - Enum.VRSessionState.Focused: - struct: EnumItem - Enum.VRSessionState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRSessionState.Idle: - struct: EnumItem - Enum.VRSessionState.Undefined: - struct: EnumItem - Enum.VRSessionState.Visible: - struct: EnumItem - Enum.VRTouchpad.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRTouchpad.Left: - struct: EnumItem - Enum.VRTouchpad.Right: - struct: EnumItem - Enum.VRTouchpadMode.ABXY: - struct: EnumItem - Enum.VRTouchpadMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRTouchpadMode.Touch: - struct: EnumItem - Enum.VRTouchpadMode.VirtualThumbstick: - struct: EnumItem - Enum.VelocityConstraintMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VelocityConstraintMode.Line: - struct: EnumItem - Enum.VelocityConstraintMode.Plane: - struct: EnumItem - Enum.VelocityConstraintMode.Vector: - struct: EnumItem - Enum.VerticalAlignment.Bottom: - struct: EnumItem - Enum.VerticalAlignment.Center: - struct: EnumItem - Enum.VerticalAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VerticalAlignment.Top: - struct: EnumItem - Enum.VerticalScrollBarPosition.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VerticalScrollBarPosition.Left: - struct: EnumItem - Enum.VerticalScrollBarPosition.Right: - struct: EnumItem - Enum.VibrationMotor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VibrationMotor.Large: - struct: EnumItem - Enum.VibrationMotor.LeftHand: - struct: EnumItem - Enum.VibrationMotor.LeftTrigger: - struct: EnumItem - Enum.VibrationMotor.RightHand: - struct: EnumItem - Enum.VibrationMotor.RightTrigger: - struct: EnumItem - Enum.VibrationMotor.Small: - struct: EnumItem - Enum.VirtualCursorMode.Default: - struct: EnumItem - Enum.VirtualCursorMode.Disabled: - struct: EnumItem - Enum.VirtualCursorMode.Enabled: - struct: EnumItem - Enum.VirtualCursorMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VirtualInputMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VirtualInputMode.None: - struct: EnumItem - Enum.VirtualInputMode.Playing: - struct: EnumItem - Enum.VirtualInputMode.Recording: - struct: EnumItem - Enum.VoiceChatState.Ended: - struct: EnumItem - Enum.VoiceChatState.Failed: - struct: EnumItem - Enum.VoiceChatState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VoiceChatState.Idle: - struct: EnumItem - Enum.VoiceChatState.Joined: - struct: EnumItem - Enum.VoiceChatState.Joining: - struct: EnumItem - Enum.VoiceChatState.JoiningRetry: - struct: EnumItem - Enum.VoiceChatState.Leaving: - struct: EnumItem - Enum.VolumetricAudio.Automatic: - struct: EnumItem - Enum.VolumetricAudio.Disabled: - struct: EnumItem - Enum.VolumetricAudio.Enabled: - struct: EnumItem - Enum.VolumetricAudio.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterDirection.NegX: - struct: EnumItem - Enum.WaterDirection.NegY: - struct: EnumItem - Enum.WaterDirection.NegZ: - struct: EnumItem - Enum.WaterDirection.X: - struct: EnumItem - Enum.WaterDirection.Y: - struct: EnumItem - Enum.WaterDirection.Z: - struct: EnumItem - Enum.WaterForce.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterForce.Max: - struct: EnumItem - Enum.WaterForce.Medium: - struct: EnumItem - Enum.WaterForce.None: - struct: EnumItem - Enum.WaterForce.Small: - struct: EnumItem - Enum.WaterForce.Strong: - struct: EnumItem - Enum.WrapLayerAutoSkin.Disabled: - struct: EnumItem - Enum.WrapLayerAutoSkin.EnabledOverride: - struct: EnumItem - Enum.WrapLayerAutoSkin.EnabledPreserve: - struct: EnumItem - Enum.WrapLayerAutoSkin.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapLayerDebugMode.BoundCage: - struct: EnumItem - Enum.WrapLayerDebugMode.BoundCageAndLinks: - struct: EnumItem - Enum.WrapLayerDebugMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapLayerDebugMode.HSRInner: - struct: EnumItem - Enum.WrapLayerDebugMode.HSRInnerReverse: - struct: EnumItem - Enum.WrapLayerDebugMode.HSROuter: - struct: EnumItem - Enum.WrapLayerDebugMode.HSROuterDetail: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCage: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCageFittedToBase: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCageFittedToPrev: - struct: EnumItem - Enum.WrapLayerDebugMode.None: - struct: EnumItem - Enum.WrapLayerDebugMode.OuterCage: - struct: EnumItem - Enum.WrapLayerDebugMode.Rbf: - struct: EnumItem - Enum.WrapLayerDebugMode.Reference: - struct: EnumItem - Enum.WrapLayerDebugMode.ReferenceMeshAfterMorph: - struct: EnumItem - Enum.WrapTargetDebugMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapTargetDebugMode.None: - struct: EnumItem - Enum.WrapTargetDebugMode.OuterCageDetail: - struct: EnumItem - Enum.WrapTargetDebugMode.Rbf: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageCompressed: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageInterface: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageOriginal: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerCageCompressed: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerCageOriginal: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerInterface: - struct: EnumItem - Enum.ZIndexBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ZIndexBehavior.Global: - struct: EnumItem - Enum.ZIndexBehavior.Sibling: - struct: EnumItem - Faces.new: - args: - - type: '...' - must_use: true - FloatCurveKey.new: - args: - - type: number - - type: number - - type: - display: KeyInterpolationMode - must_use: true - Font.fromEnum: - args: - - type: - display: Font - must_use: true - Font.fromId: - args: - - type: number - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Font.fromName: - args: - - type: string - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Font.new: - args: - - type: string - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Instance.new: - args: - - type: - - Accoutrement - - Accessory - - Hat - - AdPortal - - AdvancedDragger - - AnalyticsService - - Animation - - CurveAnimation - - KeyframeSequence - - AnimationController - - AnimationRigData - - Animator - - Atmosphere - - Attachment - - Bone - - AudioSearchParams - - Backpack - - WrapLayer - - WrapTarget - - Beam - - BindableEvent - - BindableFunction - - BodyAngularVelocity - - BodyForce - - BodyGyro - - BodyPosition - - BodyThrust - - BodyVelocity - - RocketPropulsion - - Breakpoint - - Camera - - BodyColors - - CharacterMesh - - Pants - - Shirt - - ShirtGraphic - - Skin - - ClickDetector - - Clouds - - Configuration - - AlignOrientation - - AlignPosition - - AngularVelocity - - AnimationConstraint - - BallSocketConstraint - - HingeConstraint - - LineForce - - LinearVelocity - - PlaneConstraint - - Plane - - RigidConstraint - - RodConstraint - - RopeConstraint - - CylindricalConstraint - - PrismaticConstraint - - SpringConstraint - - Torque - - TorsionSpringConstraint - - UniversalConstraint - - VectorForce - - HumanoidController - - SkateboardController - - VehicleController - - AirController - - ClimbController - - GroundController - - SwimController - - ControllerManager - - CustomEvent - - CustomEventReceiver - - BlockMesh - - CylinderMesh - - FileMesh - - SpecialMesh - - DataStoreIncrementOptions - - DataStoreOptions - - DataStoreSetOptions - - DebuggerWatch - - Dialog - - DialogChoice - - Dragger - - EulerRotationCurve - - ExperienceInviteOptions - - Explosion - - FaceControls - - Decal - - Texture - - Hole - - MotorFeature - - Fire - - FloatCurve - - FlyweightService - - CSGDictionaryService - - NonReplicatedCSGDictionaryService - - Folder - - ForceField - - FunctionalTest - - GetTextBoundsParams - - CanvasGroup - - Frame - - ImageButton - - TextButton - - ImageLabel - - TextLabel - - ScrollingFrame - - TextBox - - VideoFrame - - ViewportFrame - - BillboardGui - - ScreenGui - - GuiMain - - AdGui - - SurfaceGui - - FloorWire - - SelectionBox - - BoxHandleAdornment - - ConeHandleAdornment - - CylinderHandleAdornment - - ImageHandleAdornment - - LineHandleAdornment - - SphereHandleAdornment - - WireframeHandleAdornment - - ParabolaAdornment - - SelectionSphere - - ArcHandles - - Handles - - SurfaceSelection - - SelectionPartLasso - - SelectionPointLasso - - HeightmapImporterService - - HiddenSurfaceRemovalAsset - - Highlight - - Humanoid - - HumanoidDescription - - IKControl - - RotateP - - RotateV - - Glue - - ManualGlue - - ManualWeld - - Motor - - Motor6D - - Rotate - - Snap - - VelocityMotor - - Weld - - Keyframe - - KeyframeMarker - - PointLight - - SpotLight - - SurfaceLight - - LocalizationTable - - Script - - LocalScript - - ModuleScript - - MarkerCurve - - MaterialVariant - - MemoryStoreService - - Message - - Hint - - NoCollisionConstraint - - CornerWedgePart - - Part - - FlagStand - - Seat - - SkateboardPlatform - - SpawnLocation - - WedgePart - - MeshPart - - PartOperation - - IntersectOperation - - NegateOperation - - UnionOperation - - TrussPart - - VehicleSeat - - Model - - Actor - - HopperBin - - Tool - - Flag - - WorldModel - - PartOperationAsset - - ParticleEmitter - - PathfindingLink - - PathfindingModifier - - Player - - PluginAction - - NumberPose - - Pose - - BloomEffect - - BlurEffect - - ColorCorrectionEffect - - DepthOfFieldEffect - - SunRaysEffect - - ProximityPrompt - - ProximityPromptService - - ReflectionMetadata - - ReflectionMetadataCallbacks - - ReflectionMetadataClasses - - ReflectionMetadataEnums - - ReflectionMetadataEvents - - ReflectionMetadataFunctions - - ReflectionMetadataClass - - ReflectionMetadataEnum - - ReflectionMetadataEnumItem - - ReflectionMetadataMember - - ReflectionMetadataProperties - - ReflectionMetadataYieldFunctions - - RemoteEvent - - RemoteFunction - - RenderingTest - - RotationCurve - - BuoyancySensor - - ControllerPartSensor - - Sky - - Smoke - - Sound - - ChorusSoundEffect - - CompressorSoundEffect - - DistortionSoundEffect - - EchoSoundEffect - - EqualizerSoundEffect - - FlangeSoundEffect - - PitchShiftSoundEffect - - ReverbSoundEffect - - TremoloSoundEffect - - SoundGroup - - Sparkles - - StandalonePluginScripts - - StarterGear - - SurfaceAppearance - - Team - - TeleportOptions - - TerrainDetail - - TerrainRegion - - TestService - - TextChannel - - TextChatCommand - - TextChatMessageProperties - - TrackerStreamAnimation - - Trail - - Tween - - UIAspectRatioConstraint - - UISizeConstraint - - UITextSizeConstraint - - UICorner - - UIGradient - - UIGridLayout - - UIListLayout - - UIPageLayout - - UITableLayout - - UIPadding - - UIScale - - UIStroke - - BinaryStringValue - - BoolValue - - BrickColorValue - - CFrameValue - - Color3Value - - DoubleConstrainedValue - - IntConstrainedValue - - IntValue - - NumberValue - - ObjectValue - - RayValue - - StringValue - - Vector3Value - - Vector3Curve - - VirtualInputManager - - WeldConstraint - must_use: true - NumberRange.new: - args: - - type: number - - required: false - type: number - must_use: true - NumberSequence.new: - args: - - type: any - - required: false - type: number - must_use: true - NumberSequenceKeypoint.new: - args: - - type: number - - type: number - - required: false - type: number - must_use: true - OverlapParams.new: - args: [] - must_use: true - PathWaypoint.new: - args: - - required: false - type: - display: Vector3 - - required: false - type: - display: PathWaypointAction - must_use: true - PhysicalProperties.new: - args: - - type: any - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Random.new: - args: - - required: false - type: number - must_use: true - Ray.new: - args: - - type: - display: Vector3 - - type: - display: Vector3 - must_use: true - RaycastParams.new: - args: [] - must_use: true - Rect.new: - args: - - type: any - - type: any - - required: false - type: number - - required: false - type: number - must_use: true - Region3.new: - args: - - type: - display: Vector3 - - type: - display: Vector3 - must_use: true - Region3int16.new: - args: - - required: false - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - RotationCurveKey.new: - args: - - type: number - - type: - display: CFrame - - type: - display: KeyInterpolationMode - must_use: true - TweenInfo.new: - args: - - required: false - type: number - - required: false - type: - display: EasingStyle - - required: false - type: - display: EasingDirection - - required: false - type: number - - required: false - type: bool - - required: false - type: number - must_use: true - UDim.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - UDim2.fromOffset: - args: - - required: use UDim2.new() if you want an empty UDim2 - type: number - - required: false - type: number - must_use: true - UDim2.fromScale: - args: - - required: use UDim2.new() if you want an empty UDim2 - type: number - - required: false - type: number - must_use: true - UDim2.new: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: number - - required: false - type: number - must_use: true - UserSettings: - args: [] - must_use: true - Vector2.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - Vector2.one: - property: read-only - Vector2.xAxis: - property: read-only - Vector2.yAxis: - property: read-only - Vector2.zero: - property: read-only - Vector2int16.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - Vector3.FromAxis: - args: - - type: - display: Axis - must_use: true - Vector3.FromNormalId: - args: - - type: - display: NormalId - must_use: true - Vector3.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Vector3.one: - property: read-only - Vector3.xAxis: - property: read-only - Vector3.yAxis: - property: read-only - Vector3.zAxis: - property: read-only - Vector3.zero: - property: read-only - Vector3int16.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - _G: - property: new-fields - _VERSION: - property: read-only - arg: - property: new-fields - assert: - args: - - type: any - - required: A failed assertion without a message is unhelpful to users. - type: string - bit32.arshift: - args: - - type: number - - type: number - must_use: true - bit32.band: - args: - - type: '...' - must_use: true - bit32.bnot: - args: - - type: number - must_use: true - bit32.bor: - args: - - type: '...' - must_use: true - bit32.btest: - args: - - type: '...' - must_use: true - bit32.bxor: - args: - - type: '...' - must_use: true - bit32.countlz: - args: - - type: number - must_use: true - bit32.countrz: - args: - - type: number - must_use: true - bit32.extract: - args: - - type: number - - type: number - - required: false - type: number - must_use: true - bit32.lrotate: - args: - - type: number - - type: number - must_use: true - bit32.lshift: - args: - - type: number - - type: number - must_use: true - bit32.replace: - args: - - type: number - - type: number - - type: number - - required: false - type: number - must_use: true - bit32.rrotate: - args: - - type: number - - type: number - must_use: true - bit32.rshift: - args: - - type: number - - type: number - must_use: true - collectgarbage: - args: - - type: - - count - must_use: true - coroutine.close: - args: - - type: - display: thread - coroutine.create: - args: - - type: function - must_use: true - coroutine.isyieldable: - args: [] - coroutine.resume: - args: - - type: - display: coroutine - - required: false - type: '...' - coroutine.running: - args: [] - must_use: true - coroutine.status: - args: - - type: - display: coroutine - must_use: true - coroutine.wrap: - args: - - type: function - coroutine.yield: - args: - - required: false - type: '...' - debug.info: - args: - - type: any - - type: any - - required: false - type: string - must_use: true - debug.profilebegin: - args: - - type: string - debug.profileend: - args: [] - debug.resetmemorycategory: - args: [] - debug.setmemorycategory: - args: - - type: string - debug.traceback: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - must_use: true - delay: - args: - - type: number - - type: function - elapsedTime: - args: [] - error: - args: - - required: Erroring without an explanation is unhelpful to users. - type: any - - required: false - type: number - game: - struct: DataModel - gcinfo: - args: [] - must_use: true - getfenv: - args: - - required: false - type: any - must_use: true - getmetatable: - args: - - type: table - must_use: true - io.close: - args: - - required: false - type: - display: file - io.flush: - args: [] - io.input: - args: - - required: false - type: - display: file - io.lines: - args: - - type: string - io.open: - args: - - type: string - - required: false - type: - - r - - rb - - w - - wb - - a - - ab - - r+ - - rb+ - - w+ - - wb+ - - a+ - - ab+ - io.output: - args: - - required: false - type: - display: file - io.popen: - args: - - type: string - - required: false - type: - - r - - rb - - w - - wb - - a - - ab - - r+ - - rb+ - - w+ - - wb+ - - a+ - - ab+ - io.read: - args: - - type: '...' - io.stderr: - property: read-only - io.stdin: - property: read-only - io.stdout: - property: read-only - io.tmpfile: - args: [] - io.type: - args: - - type: - display: potentially file-like object - io.write: - args: - - type: '...' - ipairs: - args: - - type: table - must_use: true - loadstring: - args: - - type: string - - required: false - type: string - math.abs: - args: - - type: number - must_use: true - math.acos: - args: - - type: number - must_use: true - math.asin: - args: - - type: number - must_use: true - math.atan: - args: - - type: number - must_use: true - math.atan2: - args: - - type: number - - type: number - must_use: true - math.ceil: - args: - - type: number - must_use: true - math.clamp: - args: - - type: number - - type: number - - type: number - must_use: true - math.cos: - args: - - type: number - must_use: true - math.cosh: - args: - - type: number - must_use: true - math.deg: - args: - - type: number - must_use: true - math.exp: - args: - - type: number - must_use: true - math.floor: - args: - - type: number - must_use: true - math.fmod: - args: - - type: number - - type: number - must_use: true - math.frexp: - args: - - type: number - must_use: true - math.huge: - property: read-only - math.ldexp: - args: - - type: number - - type: number - must_use: true - math.log: - args: - - type: number - - required: false - type: number - must_use: true - math.log10: - args: - - type: number - must_use: true - math.max: - args: - - type: number - - required: use of max only makes sense with more than 1 parameter - type: '...' - must_use: true - math.min: - args: - - type: number - - required: use of min only makes sense with more than 1 parameter - type: '...' - must_use: true - math.modf: - args: - - type: number - must_use: true - math.noise: - args: - - type: number - - required: false - type: number - - required: false - type: number - must_use: true - math.pi: - property: read-only - math.pow: - args: - - type: number - - type: number - must_use: true - math.rad: - args: - - type: number - must_use: true - math.random: - args: - - required: false - type: number - - required: false - type: number - must_use: true - math.randomseed: - args: - - type: number - math.round: - args: - - type: number - must_use: true - math.sign: - args: - - type: number - must_use: true - math.sin: - args: - - type: number - must_use: true - math.sinh: - args: - - type: number - must_use: true - math.sqrt: - args: - - type: number - must_use: true - math.tan: - args: - - type: number - must_use: true - math.tanh: - args: - - type: number - must_use: true - newproxy: - args: - - required: false - type: bool - must_use: true - next: - args: - - type: table - - required: false - type: number - os.clock: - args: [] - must_use: true - os.date: - args: - - required: false - type: string - - required: false - type: number - must_use: true - os.difftime: - args: - - type: number - - type: number - must_use: true - os.time: - args: - - required: false - type: table - must_use: true - package.cpath: - property: full-write - package.loaded: - property: new-fields - package.loaders: - property: new-fields - package.loadlib: - args: - - type: string - - type: string - package.path: - property: full-write - package.preload: - property: new-fields - package.seeall: - args: - - type: table - pairs: - args: - - type: table - must_use: true - pcall: - args: - - type: function - - required: false - type: '...' - plugin: - struct: Plugin - print: - args: - - required: false - type: '...' - rawequal: - args: - - type: any - - type: any - must_use: true - rawget: - args: - - type: any - - type: any - must_use: true - rawlen: - args: - - type: table - must_use: true - rawset: - args: - - type: any - - type: any - - type: any - require: - args: - - type: number - script: - struct: Script - select: - args: - - type: any - - type: '...' - must_use: true - setfenv: - args: - - type: any - - type: table - setmetatable: - args: - - type: table - - required: false - type: table - settings: - args: [] - shared: - property: new-fields - spawn: - args: - - type: function - string.byte: - args: - - type: string - - required: false - type: number - - required: false - type: number - string.char: - args: - - required: string.char should be used with an argument despite it not throwing - type: number - - required: false - type: '...' - must_use: true - string.find: - args: - - type: string - - type: string - - required: false - type: number - - required: false - type: bool - must_use: true - string.format: - args: - - type: string - - required: string.format should only be used for strings that need formatting - type: '...' - must_use: true - string.gmatch: - args: - - type: string - - type: string - must_use: true - string.gsub: - args: - - type: string - - type: string - - type: any - - required: false - type: number - must_use: true - string.len: - args: - - type: string - must_use: true - string.lower: - args: - - type: string - must_use: true - string.match: - args: - - type: string - - type: string - - required: false - type: number - must_use: true - string.pack: - args: - - type: string - - type: '...' - must_use: true - string.packsize: - args: - - type: string - must_use: true - string.rep: - args: - - type: string - - type: number - must_use: true - string.reverse: - args: - - type: string - must_use: true - string.split: - args: - - type: string - - required: false - type: string - must_use: true - string.sub: - args: - - type: string - - type: number - - required: false - type: number - must_use: true - string.unpack: - args: - - type: string - - type: string - - required: false - type: number - must_use: true - string.upper: - args: - - type: string - must_use: true - table.clear: - args: - - type: table - table.clone: - args: - - type: table - must_use: true - table.concat: - args: - - type: table - - required: false - type: string - - required: false - type: number - - required: false - type: number - must_use: true - table.create: - args: - - type: number - - required: false - type: any - must_use: true - table.find: - args: - - type: table - - type: any - - required: false - type: number - must_use: true - table.foreach: - args: - - type: table - - type: function - deprecated: - message: use a for loop instead. - replace: [] - table.foreachi: - args: - - type: table - - type: function - deprecated: - message: use a for loop instead. - replace: [] - table.freeze: - args: - - type: table - table.getn: - args: - - type: table - - type: number - must_use: true - deprecated: - message: '`table.getn` has been superceded by #.' - replace: - - '#%1' - table.insert: - args: - - type: table - observes: write - - type: any - - required: false - type: any - table.isfrozen: - args: - - type: table - must_use: true - table.maxn: - args: - - type: table - must_use: true - table.move: - args: - - type: table - - type: number - - type: number - - type: number - - required: false - type: table - table.pack: - args: - - type: '...' - must_use: true - table.remove: - args: - - type: table - - required: false - type: number - table.sort: - args: - - type: table - - required: false - type: function - table.unpack: - args: - - type: table - - required: false - type: number - - required: false - type: number - must_use: true - task.cancel: - args: - - type: - display: thread - task.defer: - args: - - type: function - - required: false - type: '...' - task.delay: - args: - - required: false - type: number - - type: function - - required: false - type: '...' - task.desynchronize: - args: [] - task.spawn: - args: - - type: function - - required: false - type: '...' - task.synchronize: - args: [] - task.wait: - args: - - required: false - type: number - tick: - args: [] - time: - args: [] - tonumber: - args: - - type: any - - required: false - type: number - must_use: true - tostring: - args: - - type: any - must_use: true - type: - args: - - type: any - typeof: - args: - - type: any - unpack: - args: - - type: table - - required: false - type: number - - required: false - type: number - must_use: true - utf8.char: - args: - - required: utf8.char should be used with an argument despite it not throwing - type: number - - required: false - type: '...' - must_use: true - utf8.charpattern: - property: read-only - utf8.codepoint: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.codes: - args: - - type: string - must_use: true - utf8.graphemes: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.len: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.nfcnormalize: - args: - - type: string - must_use: true - utf8.nfdnormalize: - args: - - type: string - must_use: true - utf8.offset: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - wait: - args: - - required: false - type: number - warn: - args: - - type: any - - required: false - type: '...' - workspace: - struct: Workspace - xpcall: - args: - - type: function - - required: false - type: '...' -structs: - BasePart: - '*': - struct: Instance - AncestryChanged: - struct: Event - Anchored: - property: override-fields - ApplyAngularImpulse: - args: - - required: false - type: any - method: true - ApplyImpulse: - args: - - required: false - type: any - method: true - ApplyImpulseAtPosition: - args: - - required: false - type: any - - required: false - type: any - method: true - Archivable: - property: override-fields - AssemblyAngularVelocity: - any: true - AssemblyCenterOfMass: - any: true - AssemblyLinearVelocity: - any: true - AssemblyMass: - property: read-only - AssemblyRootPart: - struct: BasePart - AttributeChanged: - struct: Event - BackParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackSurface: - property: override-fields - BackSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomSurface: - property: override-fields - BottomSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BrickColor: - property: override-fields - CFrame: - any: true - CanCollide: - property: override-fields - CanCollideWith: - args: - - required: false - type: any - method: true - CanQuery: - property: override-fields - CanSetNetworkOwnership: - args: [] - method: true - CanTouch: - property: override-fields - CastShadow: - property: override-fields - CenterOfMass: - any: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionGroup: - property: override-fields - CollisionGroupId: - property: override-fields - Color: - property: override-fields - CurrentPhysicalProperties: - property: read-only - CustomPhysicalProperties: - property: override-fields - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Elasticity: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - ExtentsCFrame: - any: true - ExtentsSize: - any: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - Friction: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontSurface: - property: override-fields - FrontSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetConnectedParts: - args: - - required: false - type: any - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetJoints: - args: [] - method: true - GetMass: - args: [] - method: true - GetNetworkOwner: - args: [] - method: true - GetNetworkOwnershipAuto: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetRootPart: - args: [] - method: true - GetTouchingParts: - args: [] - method: true - GetVelocityAtPosition: - args: - - required: false - type: any - method: true - IntersectAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGrounded: - args: [] - method: true - LeftParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftSurface: - property: override-fields - LeftSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LocalSimulationTouched: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - LocalTransparencyModifier: - property: override-fields - Locked: - property: override-fields - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Mass: - property: read-only - Massless: - property: override-fields - Material: - property: override-fields - MaterialVariant: - property: override-fields - Name: - property: override-fields - Orientation: - any: true - Origin: - any: true - OutfitChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - Pivot Offset: - any: true - PivotOffset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - Position: - any: true - ReceiveAge: - property: read-only - Reflectance: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Resize: - args: - - required: false - type: any - - required: false - type: any - method: true - ResizeIncrement: - property: read-only - ResizeableFaces: - property: read-only - RightParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightSurface: - property: override-fields - RightSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RootPriority: - property: override-fields - RotVelocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - Rotation: - any: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetNetworkOwner: - args: - - required: false - type: any - method: true - SetNetworkOwnershipAuto: - args: [] - method: true - Size: - any: true - SpecificGravity: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - StoppedTouching: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - SubtractAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - TopParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopSurface: - property: override-fields - TopSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TouchEnded: - struct: Event - Touched: - struct: Event - Transparency: - property: override-fields - UnionAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Velocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - brickColor: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getMass: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - resize: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - subtractAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - unionAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Camera: - '*': - struct: Instance - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - CFrame: - any: true - CameraSubject: - struct: Instance - CameraType: - property: override-fields - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CoordinateFrame: - any: true - deprecated: - message: this property is deprecated. - replace: [] - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - DiagonalFieldOfView: - property: override-fields - FieldOfView: - property: override-fields - FieldOfViewMode: - property: override-fields - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FirstPersonTransition: - struct: Event - Focus: - any: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetLargestCutoffDistance: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetPanSpeed: - args: [] - method: true - GetPartsObscuringTarget: - args: - - required: false - type: any - - required: false - type: any - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - GetRoll: - args: [] - method: true - GetTiltSpeed: - args: [] - method: true - HeadLocked: - property: override-fields - HeadScale: - property: override-fields - Interpolate: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - InterpolationFinished: - struct: Event - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - MaxAxisFieldOfView: - property: override-fields - Name: - property: override-fields - NearPlaneZ: - property: read-only - PanUnits: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ScreenPointToRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetCameraPanMode: - args: - - required: false - type: any - method: true - SetImageServerView: - args: - - required: false - type: any - method: true - SetRoll: - args: - - required: false - type: any - method: true - TiltUnits: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - ViewportPointToRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - ViewportSize: - any: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WorldToScreenPoint: - args: - - required: false - type: any - method: true - WorldToViewportPoint: - args: - - required: false - type: any - method: true - Zoom: - args: - - required: false - type: any - method: true - ZoomToExtents: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - focus: - any: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - DataModel: - '*': - struct: Instance - AllowedGearTypeChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - BindToClose: - args: - - required: false - type: any - method: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - Close: - struct: Event - CloseLate: - struct: Event - CreatorId: - property: read-only - CreatorType: - property: read-only - DefineFastFlag: - args: - - required: false - type: any - - required: false - type: any - method: true - DefineFastInt: - args: - - required: false - type: any - - required: false - type: any - method: true - DefineFastString: - args: - - required: false - type: any - - required: false - type: any - method: true - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FindService: - args: - - required: false - type: any - method: true - GameId: - property: read-only - GearGenreSetting: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - Genre: - property: read-only - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetEngineFeature: - args: - - required: false - type: any - method: true - GetFastFlag: - args: - - required: false - type: any - method: true - GetFastInt: - args: - - required: false - type: any - method: true - GetFastString: - args: - - required: false - type: any - method: true - GetFullName: - args: [] - method: true - GetJobsInfo: - args: [] - method: true - GetMessage: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetObjects: - args: - - required: false - type: any - method: true - GetObjectsAllOrNone: - args: - - required: false - type: any - - required: false - type: any - method: true - GetObjectsAsync: - args: - - required: false - type: any - method: true - GetObjectsList: - args: - - required: false - type: any - method: true - GetPlaySessionId: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRemoteBuildMode: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetService: - args: - - type: - - AdService - - AnalyticsService - - AnimationClipProvider - - AnimationFromVideoCreatorService - - AnimationFromVideoCreatorStudioService - - AppUpdateService - - AssetCounterService - - AssetDeliveryProxy - - AssetImportService - - AssetManagerService - - AssetService - - AvatarEditorService - - AvatarImportService - - BadgeService - - CoreGui - - StarterGui - - BrowserService - - BulkImportService - - CacheableContentProvider - - HSRDataContentProvider - - MeshContentProvider - - SolidModelContentProvider - - CalloutService - - ChangeHistoryService - - Chat - - ClusterPacketCache - - CollectionService - - CommandService - - ConfigureServerService - - ContentProvider - - ContextActionService - - ControllerService - - CookiesService - - CorePackages - - CoreScriptDebuggingManagerHelper - - CoreScriptSyncService - - CrossDMScriptChangeListener - - DataModelPatchService - - DataStoreService - - Debris - - DebuggablePluginWatcher - - DebuggerConnectionManager - - DebuggerManager - - DebuggerUIService - - DeviceIdService - - DraftsService - - DraggerService - - EventIngestService - - ExperienceAuthService - - FaceAnimatorService - - FacialAnimationRecordingService - - FacialAnimationStreamingService - - FacialAnimationStreamingServiceV2 - - FlagStandService - - FlyweightService - - CSGDictionaryService - - NonReplicatedCSGDictionaryService - - FriendService - - GamePassService - - GamepadService - - Geometry - - GoogleAnalyticsConfiguration - - GroupService - - GuiService - - GuidRegistryService - - HapticService - - HeightmapImporterService - - Hopper - - HttpRbxApiService - - HttpService - - ILegacyStudioBridge - - LegacyStudioBridge - - IXPService - - IncrementalPatchBuilder - - InsertService - - JointsService - - KeyboardService - - KeyframeSequenceProvider - - LSPFileSyncService - - LanguageService - - Lighting - - LiveScriptingService - - LocalStorageService - - AppStorageService - - UserStorageService - - LocalizationService - - LodDataService - - LogService - - LoginService - - LuaWebService - - LuauScriptAnalyzerService - - MarketplaceService - - MaterialGenerationService - - MaterialService - - MemStorageService - - MemoryStoreService - - MessageBusService - - MessagingService - - MetaBreakpointManager - - MouseService - - NetworkClient - - NetworkServer - - NetworkSettings - - NotificationService - - Workspace - - PackageService - - PackageUIService - - PatchBundlerFileWatch - - PathfindingService - - PermissionsService - - PhysicsService - - PlayerEmulatorService - - Players - - PluginDebugService - - PluginGuiService - - PluginManagementService - - PluginPolicyService - - PointsService - - PolicyService - - ProcessInstancePhysicsService - - ProximityPromptService - - PublishService - - RbxAnalyticsService - - RemoteCursorService - - RemoteDebuggerServer - - RenderSettings - - ReplicatedFirst - - ReplicatedStorage - - RobloxPluginGuiService - - RobloxReplicatedStorage - - RtMessagingService - - RunService - - RuntimeScriptService - - SafetyService - - ScriptChangeService - - ScriptCloneWatcher - - ScriptCloneWatcherHelper - - ScriptContext - - ScriptEditorService - - ScriptRegistrationService - - ScriptService - - Selection - - SelectionHighlightManager - - ServerScriptService - - ServerStorage - - ServiceVisibilityService - - SessionService - - SharedTableRegistry - - ShorelineUpgraderService - - SmoothVoxelsUpgraderService - - SnippetService - - SocialService - - SoundService - - SpawnerService - - StarterPack - - StarterPlayer - - Stats - - Studio - - StudioAssetService - - StudioData - - StudioDeviceEmulatorService - - StudioPublishService - - StudioScriptDebugEventListener - - StudioSdkService - - StudioService - - TaskScheduler - - TeamCreateData - - TeamCreatePublishService - - TeamCreateService - - Teams - - TeleportService - - TemporaryCageMeshProvider - - TemporaryScriptService - - TestService - - TextBoxService - - TextChatService - - TextService - - ThirdPartyUserService - - TimerService - - ToastNotificationService - - TouchInputService - - TracerService - - TweenService - - UGCValidationService - - UnvalidatedAssetService - - UserInputService - - UserService - - VRService - - VersionControlService - - VideoCaptureService - - VirtualInputManager - - VirtualUser - - VisibilityCheckDispatcher - - VisibilityService - - Visit - - VoiceChatInternal - - VoiceChatService - method: true - must_use: true - GraphicsQualityChangeRequest: - struct: Event - HttpGetAsync: - args: - - required: false - type: any - - required: false - type: any - method: true - HttpPostAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - InsertObjectsAndJoinIfLegacyAsync: - args: - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsContentLoaded: - args: [] - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGearTypeAllowed: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IsLoaded: - args: [] - method: true - IsUniverseMetadataLoaded: - args: [] - method: true - ItemChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - JobId: - property: read-only - Load: - args: - - required: false - type: any - method: true - Loaded: - struct: Event - Name: - property: override-fields - OnClose: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - OpenScreenshotsFolder: - args: [] - method: true - OpenVideosFolder: - args: [] - method: true - Parent: - struct: Instance - PlaceId: - property: read-only - PlaceVersion: - property: read-only - PrivateServerId: - property: read-only - PrivateServerOwnerId: - property: read-only - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ReportInGoogleAnalytics: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SavePlace: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - ScreenshotReady: - struct: Event - ScreenshotSavedToAlbum: - struct: Event - ServiceAdded: - struct: Event - ServiceRemoving: - struct: Event - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastFlagForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastIntForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastStringForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetIsLoaded: - args: - - required: false - type: any - - required: false - type: any - method: true - SetPlaceId: - args: - - required: false - type: any - method: true - SetUniverseId: - args: - - required: false - type: any - method: true - Shutdown: - args: [] - method: true - UniverseMetadataLoaded: - struct: Event - VIPServerId: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - VIPServerOwnerId: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - Workspace: - struct: Workspace - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getService: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - lighting: - struct: Instance - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - service: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - workspace: - struct: Workspace - deprecated: - message: this property is deprecated. - replace: [] - EnumItem: - Name: - property: read-only - Value: - property: read-only - Event: - Connect: - args: - - type: function - method: true - Once: - args: - - type: function - method: true - Wait: - args: [] - method: true - connect: - args: - - type: function - method: true - deprecated: - message: lowercase methods have been superceded by uppercase ones - replace: - - Connect(%1) - wait: - args: - - type: function - method: true - deprecated: - message: lowercase methods have been superceded by uppercase ones - replace: - - Wait(%1) - Instance: - '*': - any: true - Plugin: - '*': - struct: Instance - Activate: - args: - - required: false - type: any - method: true - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionEnabled: - property: read-only - CreateDockWidgetPluginGui: - args: - - required: false - type: any - - required: false - type: any - method: true - CreatePluginAction: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CreatePluginMenu: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CreateQWidgetPluginGui: - args: - - required: false - type: any - - required: false - type: any - method: true - CreateToolbar: - args: - - required: false - type: any - method: true - Deactivate: - args: [] - method: true - Deactivation: - struct: Event - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - GetJoinMode: - args: [] - method: true - GetMouse: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetSelectedRibbonTool: - args: [] - method: true - GetSetting: - args: - - required: false - type: any - method: true - GetStudioUserId: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GridSize: - property: read-only - ImportFbxAnimation: - args: - - required: false - type: any - - required: false - type: any - method: true - ImportFbxRig: - args: - - required: false - type: any - method: true - Intersect: - args: - - required: false - type: any - method: true - Invoke: - args: - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsActivated: - args: [] - method: true - IsActivatedWithExclusiveMouse: - args: [] - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - Name: - property: override-fields - Negate: - args: - - required: false - type: any - method: true - OnInvoke: - args: - - required: false - type: any - - required: false - type: any - method: true - OnSetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - OpenScript: - args: - - required: false - type: any - - required: false - type: any - method: true - OpenWikiPage: - args: - - required: false - type: any - method: true - Parent: - struct: Instance - PauseSound: - args: - - required: false - type: any - method: true - PlaySound: - args: - - required: false - type: any - - required: false - type: any - method: true - ProcessAssetInsertionDrag: - property: override-fields - ProcessAssetInsertionDrop: - property: override-fields - PromptForExistingAssetId: - args: - - required: false - type: any - method: true - PromptSaveSelection: - args: - - required: false - type: any - method: true - Ready: - struct: Event - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ResumeSound: - args: - - required: false - type: any - method: true - SaveSelectedToRoblox: - args: [] - method: true - SelectRibbonTool: - args: - - required: false - type: any - - required: false - type: any - method: true - Separate: - args: - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - SetReady: - args: [] - method: true - SetSetting: - args: - - required: false - type: any - - required: false - type: any - method: true - StartDecalDrag: - args: - - required: false - type: any - method: true - StartDrag: - args: - - required: false - type: any - method: true - StopAllSounds: - args: [] - method: true - Union: - args: - - required: false - type: any - method: true - Unloading: - struct: Event - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Script: - '*': - struct: Instance - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CurrentEditor: - struct: Instance - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Disabled: - property: override-fields - Enabled: - property: override-fields - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetHash: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - LinkedSource: - property: override-fields - Name: - property: override-fields - Parent: - struct: Instance - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Terrain: - '*': - struct: Instance - AncestryChanged: - struct: Event - Anchored: - property: override-fields - ApplyAngularImpulse: - args: - - required: false - type: any - method: true - ApplyImpulse: - args: - - required: false - type: any - method: true - ApplyImpulseAtPosition: - args: - - required: false - type: any - - required: false - type: any - method: true - Archivable: - property: override-fields - AssemblyAngularVelocity: - any: true - AssemblyCenterOfMass: - any: true - AssemblyLinearVelocity: - any: true - AssemblyMass: - property: read-only - AssemblyRootPart: - struct: BasePart - AttributeChanged: - struct: Event - AutowedgeCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - AutowedgeCells: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - BackParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackSurface: - property: override-fields - BackSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomSurface: - property: override-fields - BottomSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BrickColor: - property: override-fields - CFrame: - any: true - CanCollide: - property: override-fields - CanCollideWith: - args: - - required: false - type: any - method: true - CanQuery: - property: override-fields - CanSetNetworkOwnership: - args: [] - method: true - CanShorelinesBeUpgraded: - args: [] - method: true - CanSmoothVoxelsBeUpgraded: - args: [] - method: true - CanTouch: - property: override-fields - CastShadow: - property: override-fields - CellCenterToWorld: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CellCornerToWorld: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CenterOfMass: - any: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - Clear: - args: [] - method: true - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionGroup: - property: override-fields - CollisionGroupId: - property: override-fields - Color: - property: override-fields - ConvertToSmooth: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - CopyRegion: - args: - - required: false - type: any - method: true - CountCells: - args: [] - method: true - CurrentPhysicalProperties: - property: read-only - CustomPhysicalProperties: - property: override-fields - Decoration: - property: override-fields - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Elasticity: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - ExtentsCFrame: - any: true - ExtentsSize: - any: true - FillBall: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillBlock: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillCylinder: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillWedge: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - Friction: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontSurface: - property: override-fields - FrontSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetChildren: - args: [] - method: true - GetConnectedParts: - args: - - required: false - type: any - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetJoints: - args: [] - method: true - GetMass: - args: [] - method: true - GetMaterialColor: - args: - - required: false - type: any - method: true - GetNetworkOwner: - args: [] - method: true - GetNetworkOwnershipAuto: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetRootPart: - args: [] - method: true - GetTerrainWireframe: - args: - - required: false - type: any - - required: false - type: any - method: true - GetTouchingParts: - args: [] - method: true - GetVelocityAtPosition: - args: - - required: false - type: any - method: true - GetWaterCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IntersectAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGrounded: - args: [] - method: true - IsSmooth: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - LeftParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftSurface: - property: override-fields - LeftSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LocalSimulationTouched: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - LocalTransparencyModifier: - property: override-fields - Locked: - property: override-fields - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Mass: - property: read-only - Massless: - property: override-fields - Material: - property: override-fields - MaterialColors: - property: override-fields - MaterialVariant: - property: override-fields - MaxExtents: - property: read-only - Name: - property: override-fields - Orientation: - any: true - Origin: - any: true - OutfitChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - PasteRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Pivot Offset: - any: true - PivotOffset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - Position: - any: true - ReadVoxels: - args: - - required: false - type: any - - required: false - type: any - method: true - ReceiveAge: - property: read-only - Reflectance: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ReplaceMaterial: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - ReplaceMaterialInTransform: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Resize: - args: - - required: false - type: any - - required: false - type: any - method: true - ResizeIncrement: - property: read-only - ResizeableFaces: - property: read-only - RightParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightSurface: - property: override-fields - RightSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RootPriority: - property: override-fields - RotVelocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - Rotation: - any: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetCells: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetMaterialColor: - args: - - required: false - type: any - - required: false - type: any - method: true - SetMaterialInTransform: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SetNetworkOwner: - args: - - required: false - type: any - method: true - SetNetworkOwnershipAuto: - args: [] - method: true - SetWaterCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - Size: - any: true - SmoothRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SpecificGravity: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - StoppedTouching: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - SubtractAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - TopParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopSurface: - property: override-fields - TopSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TouchEnded: - struct: Event - Touched: - struct: Event - Transparency: - property: override-fields - UnionAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Velocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WaterColor: - property: override-fields - WaterReflectance: - property: override-fields - WaterTransparency: - property: override-fields - WaterWaveSize: - property: override-fields - WaterWaveSpeed: - property: override-fields - WorldToCell: - args: - - required: false - type: any - method: true - WorldToCellPreferEmpty: - args: - - required: false - type: any - method: true - WorldToCellPreferSolid: - args: - - required: false - type: any - method: true - WriteVoxels: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - brickColor: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getMass: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - resize: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - subtractAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - unionAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Workspace: - '*': - struct: Instance - AddPersistentPlayer: - args: - - required: false - type: any - method: true - AllowThirdPartySales: - property: override-fields - AncestryChanged: - struct: Event - Archivable: - property: override-fields - ArePartsTouchingOthers: - args: - - required: false - type: any - - required: false - type: any - method: true - AttributeChanged: - struct: Event - Blockcast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BulkMoveTo: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CacheCurrentTerrain: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpDistance: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpHeight: - args: - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpPower: - args: - - required: false - type: any - - required: false - type: any - method: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - ClearCachedTerrain: - args: - - required: false - type: any - method: true - ClientAnimatorThrottling: - property: override-fields - Clone: - args: [] - method: true - CurrentCamera: - struct: Camera - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - DistributedGameTime: - property: override-fields - ExperimentalSolverIsEnabled: - args: [] - method: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FindPartOnRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartOnRayWithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartOnRayWithWhitelist: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3WithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3WithWhiteList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetBoundingBox: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetExtentsSize: - args: [] - method: true - GetFullName: - args: [] - method: true - GetModelCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetModelSize: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetNumAwakeParts: - args: [] - method: true - GetPartBoundsInBox: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - GetPartBoundsInRadius: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - GetPartsInPart: - args: - - required: false - type: any - - required: false - type: any - method: true - GetPhysicsThrottling: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPrimaryPartCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRealPhysicsFPS: - args: [] - method: true - GetScale: - args: [] - method: true - GetServerTimeNow: - args: [] - method: true - GlobalWind: - any: true - Gravity: - property: override-fields - HumanoidOnlySetCollisionsOnStateChange: - property: override-fields - IKMoveTo: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsRegion3Empty: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IsRegion3EmptyWithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - JoinToOutsiders: - args: - - required: false - type: any - - required: false - type: any - method: true - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - MeshPartHeadsAndAccessories: - property: override-fields - ModelStreamingMode: - property: override-fields - MoveTo: - args: - - required: false - type: any - method: true - Name: - property: override-fields - Origin: - any: true - PGSIsEnabled: - args: [] - method: true - Parent: - struct: Instance - PersistentLoaded: - struct: Event - PhysicsSteppingMethod: - property: override-fields - Pivot Offset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - PrimaryPart: - struct: BasePart - Raycast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - RaycastCachedTerrain: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - RejectCharacterDeletions: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - RemovePersistentPlayer: - args: - - required: false - type: any - method: true - ReplicateInstanceDestroySetting: - property: override-fields - ResetOrientationToIdentity: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Retargeting: - property: override-fields - Scale: - property: override-fields - ScaleTo: - args: - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetIdentityOrientation: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetInsertPoint: - args: - - required: false - type: any - - required: false - type: any - method: true - SetMeshPartHeadsAndAccessories: - args: - - required: false - type: any - method: true - SetPhysicsThrottleEnabled: - args: - - required: false - type: any - method: true - SetPrimaryPartCFrame: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SignalBehavior: - property: override-fields - Spherecast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - StreamOutBehavior: - property: override-fields - StreamingIntegrityMode: - property: override-fields - StreamingMinRadius: - property: override-fields - StreamingTargetRadius: - property: override-fields - Terrain: - struct: Terrain - TouchesUseCollisionGroups: - property: override-fields - TranslateBy: - args: - - required: false - type: any - method: true - UnjoinFromOutsiders: - args: - - required: false - type: any - method: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WorldPivot: - any: true - ZoomToExtents: - args: [] - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - findPartOnRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - findPartsInRegion3: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - move: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - moveTo: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] -last_updated: 1681227519 -last_selene_version: 0.25.0 -roblox_classes: - Accessory: - superclass: Accoutrement - events: [] - properties: - - AccessoryType - Accoutrement: - superclass: Instance - events: [] - properties: - - AttachmentForward - - AttachmentPoint - - AttachmentPos - - AttachmentRight - - AttachmentUp - Actor: - superclass: Model - events: [] - properties: [] - AdGui: - superclass: SurfaceGuiBase - events: [] - properties: - - AdShape - - Status - AdPortal: - superclass: Instance - events: [] - properties: - - PortalInvalidReason - - PortalStatus - - PortalVersion - - Status - AdService: - superclass: Instance - events: - - AdTeleportEnded - - AdTeleportInitiated - - VideoAdClosed - properties: [] - AdvancedDragger: - superclass: Instance - events: [] - properties: [] - AirController: - superclass: ControllerBase - events: [] - properties: - - MaintainAngularMomentum - - MaintainLinearMomentum - - MoveMaxForce - - OrientationMaxTorque - - OrientationSpeedFactor - - VectorForce - AlignOrientation: - superclass: Constraint - events: [] - properties: - - AlignType - - CFrame - - MaxAngularVelocity - - MaxTorque - - Mode - - PrimaryAxis - - PrimaryAxisOnly - - ReactionTorqueEnabled - - Responsiveness - - RigidityEnabled - - SecondaryAxis - AlignPosition: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - MaxForce - - MaxVelocity - - Mode - - Position - - ReactionForceEnabled - - Responsiveness - - RigidityEnabled - AnalysticsSettings: - superclass: GenericSettings - events: [] - properties: [] - AnalyticsService: - superclass: Instance - events: [] - properties: - - ApiKey - AngularVelocity: - superclass: Constraint - events: [] - properties: - - AngularVelocity - - MaxTorque - - ReactionTorqueEnabled - - RelativeTo - Animation: - superclass: Instance - events: [] - properties: - - AnimationId - AnimationClip: - superclass: Instance - events: [] - properties: - - Guid - - Loop - - Priority - AnimationClipProvider: - superclass: Instance - events: [] - properties: [] - AnimationConstraint: - superclass: Constraint - events: [] - properties: - - IsKinematic - - MaxForce - - MaxTorque - - Transform - AnimationController: - superclass: Instance - events: - - AnimationPlayed - properties: [] - AnimationFromVideoCreatorService: - superclass: Instance - events: [] - properties: [] - AnimationFromVideoCreatorStudioService: - superclass: Instance - events: [] - properties: [] - AnimationRigData: - superclass: Instance - events: [] - properties: [] - AnimationStreamTrack: - superclass: Instance - events: - - Stopped - properties: - - Animation - - IsPlaying - - Priority - - WeightCurrent - - WeightTarget - AnimationTrack: - superclass: Instance - events: - - DidLoop - - Ended - - KeyframeReached - - Stopped - properties: - - Animation - - IsPlaying - - Length - - Looped - - Priority - - Speed - - TimePosition - - WeightCurrent - - WeightTarget - Animator: - superclass: Instance - events: - - AnimationPlayed - - AnimationPlayedCoreScript - - AnimationStreamTrackPlayed - properties: - - EvaluationThrottled - - PreferLodEnabled - AppStorageService: - superclass: LocalStorageService - events: [] - properties: [] - AppUpdateService: - superclass: Instance - events: [] - properties: [] - ArcHandles: - superclass: HandlesBase - events: - - MouseButton1Down - - MouseButton1Up - - MouseDrag - - MouseEnter - - MouseLeave - properties: - - Axes - AssetCounterService: - superclass: Instance - events: [] - properties: [] - AssetDeliveryProxy: - superclass: Instance - events: [] - properties: - - Interface - - Port - - StartServer - AssetImportService: - superclass: Instance - events: [] - properties: [] - AssetImportSession: - superclass: Instance - events: - - UploadComplete - - UploadCompleteDeprecated - - UploadProgress - properties: [] - AssetManagerService: - superclass: Instance - events: - - AssetImportedSignal - - ImportSessionFinished - - ImportSessionStarted - - MayBeLinkedSourceModified - properties: [] - AssetPatchSettings: - superclass: Instance - events: [] - properties: - - ContentId - - OutputPath - - PatchId - AssetService: - superclass: Instance - events: - - OpenPublishResultModal - properties: [] - AssetSoundEffect: - superclass: CustomSoundEffect - events: [] - properties: [] - Atmosphere: - superclass: Instance - events: [] - properties: - - Color - - Decay - - Density - - Glare - - Haze - - Offset - Attachment: - superclass: Instance - events: [] - properties: - - Axis - - CFrame - - Orientation - - Position - - Rotation - - SecondaryAxis - - Visible - - WorldAxis - - WorldCFrame - - WorldOrientation - - WorldPosition - - WorldRotation - - WorldSecondaryAxis - AudioPages: - superclass: Pages - events: [] - properties: [] - AudioSearchParams: - superclass: Instance - events: [] - properties: - - Album - - Artist - - AudioSubtype - - MaxDuration - - MinDuration - - SearchKeyword - - Tag - - Title - AvatarEditorService: - superclass: Instance - events: - - OpenAllowInventoryReadAccess - - OpenPromptCreateOufit - - OpenPromptDeleteOutfit - - OpenPromptRenameOutfit - - OpenPromptSaveAvatar - - OpenPromptSetFavorite - - OpenPromptUpdateOutfit - - PromptAllowInventoryReadAccessCompleted - - PromptCreateOutfitCompleted - - PromptDeleteOutfitCompleted - - PromptRenameOutfitCompleted - - PromptSaveAvatarCompleted - - PromptSaveAvatarThumbnailCustomizationCompleted - - PromptSetFavoriteCompleted - - PromptUpdateOutfitCompleted - properties: [] - AvatarImportService: - superclass: Instance - events: [] - properties: [] - Backpack: - superclass: Instance - events: [] - properties: [] - BackpackItem: - superclass: Model - events: [] - properties: - - TextureId - BadgeService: - superclass: Instance - events: - - BadgeAwarded - - OnBadgeAwarded - properties: [] - BallSocketConstraint: - superclass: Constraint - events: [] - properties: - - LimitsEnabled - - MaxFrictionTorque - - Radius - - Restitution - - TwistLimitsEnabled - - TwistLowerAngle - - TwistUpperAngle - - UpperAngle - BasePart: - superclass: PVInstance - events: - - LocalSimulationTouched - - OutfitChanged - - StoppedTouching - - TouchEnded - - Touched - properties: - - Anchored - - AssemblyAngularVelocity - - AssemblyCenterOfMass - - AssemblyLinearVelocity - - AssemblyMass - - AssemblyRootPart - - BackParamA - - BackParamB - - BackSurface - - BackSurfaceInput - - BottomParamA - - BottomParamB - - BottomSurface - - BottomSurfaceInput - - BrickColor - - CFrame - - CanCollide - - CanQuery - - CanTouch - - CastShadow - - CenterOfMass - - CollisionGroup - - CollisionGroupId - - Color - - CurrentPhysicalProperties - - CustomPhysicalProperties - - Elasticity - - ExtentsCFrame - - ExtentsSize - - Friction - - FrontParamA - - FrontParamB - - FrontSurface - - FrontSurfaceInput - - LeftParamA - - LeftParamB - - LeftSurface - - LeftSurfaceInput - - LocalTransparencyModifier - - Locked - - Mass - - Massless - - Material - - MaterialVariant - - Orientation - - PivotOffset - - Position - - ReceiveAge - - Reflectance - - ResizeIncrement - - ResizeableFaces - - RightParamA - - RightParamB - - RightSurface - - RightSurfaceInput - - RootPriority - - RotVelocity - - Rotation - - Size - - SpecificGravity - - TopParamA - - TopParamB - - TopSurface - - TopSurfaceInput - - Transparency - - Velocity - - brickColor - BasePlayerGui: - superclass: Instance - events: [] - properties: [] - BaseScript: - superclass: LuaSourceContainer - events: [] - properties: - - Disabled - - Enabled - - LinkedSource - - RunContext - BaseWrap: - superclass: Instance - events: [] - properties: - - CageMeshId - - CageOrigin - - CageOriginWorld - - HSRAssetId - - ImportOrigin - - ImportOriginWorld - Beam: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - Brightness - - Color - - CurveSize0 - - CurveSize1 - - Enabled - - FaceCamera - - LightEmission - - LightInfluence - - Segments - - Texture - - TextureLength - - TextureMode - - TextureSpeed - - Transparency - - Width0 - - Width1 - - ZOffset - BevelMesh: - superclass: DataModelMesh - events: [] - properties: [] - BillboardGui: - superclass: LayerCollector - events: [] - properties: - - Active - - Adornee - - AlwaysOnTop - - Brightness - - ClipsDescendants - - CurrentDistance - - DistanceLowerLimit - - DistanceStep - - DistanceUpperLimit - - ExtentsOffset - - ExtentsOffsetWorldSpace - - LightInfluence - - MaxDistance - - PlayerToHideFrom - - Size - - SizeOffset - - StudsOffset - - StudsOffsetWorldSpace - BinaryStringValue: - superclass: ValueBase - events: - - Changed - properties: [] - BindableEvent: - superclass: Instance - events: - - Event - properties: [] - BindableFunction: - superclass: Instance - events: [] - properties: [] - BlockMesh: - superclass: BevelMesh - events: [] - properties: [] - BloomEffect: - superclass: PostEffect - events: [] - properties: - - Intensity - - Size - - Threshold - BlurEffect: - superclass: PostEffect - events: [] - properties: - - Size - BodyAngularVelocity: - superclass: BodyMover - events: [] - properties: - - AngularVelocity - - MaxTorque - - P - - angularvelocity - - maxTorque - BodyColors: - superclass: CharacterAppearance - events: [] - properties: - - HeadColor - - HeadColor3 - - LeftArmColor - - LeftArmColor3 - - LeftLegColor - - LeftLegColor3 - - RightArmColor - - RightArmColor3 - - RightLegColor - - RightLegColor3 - - TorsoColor - - TorsoColor3 - BodyForce: - superclass: BodyMover - events: [] - properties: - - Force - - force - BodyGyro: - superclass: BodyMover - events: [] - properties: - - CFrame - - D - - MaxTorque - - P - - cframe - - maxTorque - BodyMover: - superclass: Instance - events: [] - properties: [] - BodyPosition: - superclass: BodyMover - events: - - ReachedTarget - properties: - - D - - MaxForce - - P - - Position - - maxForce - - position - BodyThrust: - superclass: BodyMover - events: [] - properties: - - Force - - Location - - force - - location - BodyVelocity: - superclass: BodyMover - events: [] - properties: - - MaxForce - - P - - Velocity - - maxForce - - velocity - Bone: - superclass: Attachment - events: [] - properties: - - Transform - - TransformedCFrame - - TransformedWorldCFrame - BoolValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - BoxHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Size - Breakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - Enabled - - Id - - Line - - LogMessage - - MetaBreakpointId - - Script - - Valid - - Verified - BrickColorValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - BrowserService: - superclass: Instance - events: - - AuthCookieCopiedToEngine - - BrowserWindowClosed - - BrowserWindowWillNavigate - - JavaScriptCallback - properties: [] - BubbleChatConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AdorneeName - - BackgroundColor3 - - BackgroundTransparency - - BubbleDuration - - BubblesSpacing - - Enabled - - Font - - FontFace - - LocalPlayerStudsOffset - - MaxDistance - - MinimizeDistance - - TextColor3 - - TextSize - - VerticalStudsOffset - BulkImportService: - superclass: Instance - events: - - AssetImported - - BulkImportFinished - - BulkImportStarted - properties: [] - BuoyancySensor: - superclass: SensorBase - events: [] - properties: - - FullySubmerged - - TouchingSurface - CFrameValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - CSGDictionaryService: - superclass: FlyweightService - events: [] - properties: [] - CacheableContentProvider: - superclass: Instance - events: [] - properties: [] - CalloutService: - superclass: Instance - events: [] - properties: [] - Camera: - superclass: Instance - events: - - FirstPersonTransition - - InterpolationFinished - properties: - - CFrame - - CameraSubject - - CameraType - - CoordinateFrame - - DiagonalFieldOfView - - FieldOfView - - FieldOfViewMode - - Focus - - HeadLocked - - HeadScale - - MaxAxisFieldOfView - - NearPlaneZ - - ViewportSize - - focus - CanvasGroup: - superclass: GuiObject - events: [] - properties: - - GroupColor3 - - GroupTransparency - CatalogPages: - superclass: Pages - events: [] - properties: [] - ChangeHistoryService: - superclass: Instance - events: - - OnRedo - - OnUndo - properties: [] - ChannelSelectorSoundEffect: - superclass: CustomSoundEffect - events: [] - properties: - - Channel - CharacterAppearance: - superclass: Instance - events: [] - properties: [] - CharacterMesh: - superclass: CharacterAppearance - events: [] - properties: - - BaseTextureId - - BodyPart - - MeshId - - OverlayTextureId - Chat: - superclass: Instance - events: - - BubbleChatSettingsChanged - - Chatted - properties: - - BubbleChatEnabled - - LoadDefaultChat - ChatInputBarConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AbsolutePosition - - AbsolutePositionWrite - - AbsoluteSize - - AbsoluteSizeWrite - - BackgroundColor3 - - BackgroundTransparency - - Enabled - - FontFace - - PlaceholderColor3 - - TargetTextChannel - - TextBox - - TextColor3 - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - ChatWindowConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AbsolutePosition - - AbsolutePositionWrite - - AbsoluteSize - - AbsoluteSizeWrite - - BackgroundColor3 - - BackgroundTransparency - - Enabled - - FontFace - - HeightScale - - HorizontalAlignment - - TextColor3 - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - VerticalAlignment - - WidthScale - ChorusSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Mix - - Rate - ClickDetector: - superclass: Instance - events: - - MouseClick - - MouseHoverEnter - - MouseHoverLeave - - RightMouseClick - - mouseClick - properties: - - CursorIcon - - MaxActivationDistance - ClientReplicator: - superclass: NetworkReplicator - events: - - RCCProfilerDataComplete - - StatsReceived - properties: [] - ClimbController: - superclass: ControllerBase - events: [] - properties: - - AccelerationTime - - MoveMaxForce - - OrientationMaxTorque - - OrientationSpeedFactor - Clothing: - superclass: CharacterAppearance - events: [] - properties: - - Color3 - CloudLocalizationTable: - superclass: LocalizationTable - events: [] - properties: [] - Clouds: - superclass: Instance - events: [] - properties: - - Color - - Cover - - Density - - Enabled - ClusterPacketCache: - superclass: Instance - events: [] - properties: [] - CollectionService: - superclass: Instance - events: - - ItemAdded - - ItemRemoved - - TagAdded - - TagRemoved - properties: [] - Color3Value: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - ColorCorrectionEffect: - superclass: PostEffect - events: [] - properties: - - Brightness - - Contrast - - Saturation - - TintColor - CommandInstance: - superclass: Instance - events: [] - properties: - - AllowGUIAccessPoints - - Checked - - DefaultShortcut - - DisplayName - - Enabled - - Icon - - Name - - Permission - - StatusTip - CommandService: - superclass: Instance - events: - - CommandExecuting - properties: [] - CompressorSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Attack - - GainMakeup - - Ratio - - Release - - SideChain - - Threshold - ConeHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Height - - Radius - Configuration: - superclass: Instance - events: [] - properties: [] - ConfigureServerService: - superclass: Instance - events: [] - properties: [] - Constraint: - superclass: Instance - events: [] - properties: - - Active - - Attachment0 - - Attachment1 - - Color - - Enabled - - Visible - ContentProvider: - superclass: Instance - events: - - AssetFetchFailed - properties: - - BaseUrl - - RequestQueueSize - ContextActionService: - superclass: Instance - events: - - BoundActionAdded - - BoundActionChanged - - BoundActionRemoved - - GetActionButtonEvent - - LocalToolEquipped - - LocalToolUnequipped - properties: [] - Controller: - superclass: Instance - events: - - ButtonChanged - properties: [] - ControllerBase: - superclass: Instance - events: [] - properties: - - MoveSpeedFactor - - RigidityEnabled - ControllerManager: - superclass: Instance - events: [] - properties: - - ActiveController - - BaseMoveSpeed - - BaseTurnSpeed - - ClimbSensor - - FacingDirection - - GroundSensor - - MovingDirection - ControllerPartSensor: - superclass: ControllerSensor - events: [] - properties: - - HitFrame - - HitNormal - - SearchDistance - - SensedPart - - SensorMode - ControllerSensor: - superclass: SensorBase - events: [] - properties: [] - ControllerService: - superclass: Instance - events: [] - properties: [] - CookiesService: - superclass: Instance - events: [] - properties: [] - CoreGui: - superclass: BasePlayerGui - events: - - UserGuiRenderingChanged - properties: - - SelectionImageObject - - Version - CorePackages: - superclass: Instance - events: [] - properties: [] - CoreScript: - superclass: BaseScript - events: [] - properties: [] - CoreScriptDebuggingManagerHelper: - superclass: Instance - events: [] - properties: [] - CoreScriptSyncService: - superclass: Instance - events: [] - properties: [] - CornerWedgePart: - superclass: BasePart - events: [] - properties: [] - CrossDMScriptChangeListener: - superclass: Instance - events: - - GuidLineContentsChanged - - GuidNameChanged - properties: [] - CurveAnimation: - superclass: AnimationClip - events: [] - properties: [] - CustomEvent: - superclass: Instance - events: - - ReceiverConnected - - ReceiverDisconnected - properties: [] - CustomEventReceiver: - superclass: Instance - events: - - EventConnected - - EventDisconnected - - SourceValueChanged - properties: - - Source - CustomSoundEffect: - superclass: SoundEffect - events: [] - properties: [] - CylinderHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Angle - - Height - - InnerRadius - - Radius - CylinderMesh: - superclass: BevelMesh - events: [] - properties: [] - CylindricalConstraint: - superclass: SlidingBallConstraint - events: [] - properties: - - AngularActuatorType - - AngularLimitsEnabled - - AngularResponsiveness - - AngularRestitution - - AngularSpeed - - AngularVelocity - - CurrentAngle - - InclinationAngle - - LowerAngle - - MotorMaxAngularAcceleration - - MotorMaxTorque - - RotationAxisVisible - - ServoMaxTorque - - TargetAngle - - UpperAngle - - WorldRotationAxis - DataModel: - superclass: ServiceProvider - events: - - AllowedGearTypeChanged - - GraphicsQualityChangeRequest - - ItemChanged - - Loaded - - ScreenshotReady - - ScreenshotSavedToAlbum - - UniverseMetadataLoaded - properties: - - CreatorId - - CreatorType - - GameId - - GearGenreSetting - - Genre - - IsSFFlagsLoaded - - JobId - - PlaceId - - PlaceVersion - - PrivateServerId - - PrivateServerOwnerId - - VIPServerId - - VIPServerOwnerId - - Workspace - - lighting - - workspace - DataModelMesh: - superclass: Instance - events: [] - properties: - - Offset - - Scale - - VertexColor - DataModelPatchService: - superclass: Instance - events: [] - properties: [] - DataModelSession: - superclass: Instance - events: - - CurrentDataModelTypeAboutToChange - - CurrentDataModelTypeChanged - - DataModelCreated - - DataModelWillBeDestroyed - properties: - - CurrentDataModelType - - SessionId - DataStore: - superclass: GlobalDataStore - events: [] - properties: [] - DataStoreIncrementOptions: - superclass: Instance - events: [] - properties: [] - DataStoreInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - DataStoreName - - UpdatedTime - DataStoreKey: - superclass: Instance - events: [] - properties: - - KeyName - DataStoreKeyInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - UpdatedTime - - Version - DataStoreKeyPages: - superclass: Pages - events: [] - properties: - - Cursor - DataStoreListingPages: - superclass: Pages - events: [] - properties: - - Cursor - DataStoreObjectVersionInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - IsDeleted - - Version - DataStoreOptions: - superclass: Instance - events: [] - properties: - - AllScopes - DataStorePages: - superclass: Pages - events: [] - properties: [] - DataStoreService: - superclass: Instance - events: [] - properties: - - AutomaticRetry - - LegacyNamingScheme - DataStoreSetOptions: - superclass: Instance - events: [] - properties: [] - DataStoreVersionPages: - superclass: Pages - events: [] - properties: [] - Debris: - superclass: Instance - events: [] - properties: - - MaxItems - DebugSettings: - superclass: Instance - events: [] - properties: - - DataModel - - InstanceCount - - IsScriptStackTracingEnabled - - JobCount - - PlayerCount - - ReportSoundWarnings - - RobloxVersion - - TickCountPreciseOverride - DebuggablePluginWatcher: - superclass: Instance - events: [] - properties: [] - DebuggerBreakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - IsEnabled - - Line - - LogExpression - - isContextDependentBreakpoint - DebuggerConnection: - superclass: Instance - events: - - BreakpointAdded - - BreakpointChanged - - BreakpointRemoved - - Paused - - Resumed - properties: - - ErrorMessage - - HasError - - Id - - IsPaused - DebuggerConnectionManager: - superclass: Instance - events: - - ConnectionEnded - - ConnectionStarted - - FocusChanged - properties: - - Timeout - DebuggerLuaResponse: - superclass: Instance - events: [] - properties: - - IsError - - IsSuccess - - Message - - RequestId - - Status - DebuggerManager: - superclass: Instance - events: - - DebuggerAdded - - DebuggerRemoved - properties: - - DebuggingEnabled - DebuggerUIService: - superclass: Instance - events: - - ExpressionAdded - properties: [] - DebuggerVariable: - superclass: Instance - events: [] - properties: - - Name - - Populated - - Type - - Value - - VariableId - - VariablesCount - DebuggerWatch: - superclass: Instance - events: [] - properties: - - Expression - Decal: - superclass: FaceInstance - events: [] - properties: - - Color3 - - LocalTransparencyModifier - - Shiny - - Specular - - Texture - - Transparency - - ZIndex - DepthOfFieldEffect: - superclass: PostEffect - events: [] - properties: - - FarIntensity - - FocusDistance - - InFocusRadius - - NearIntensity - DeviceIdService: - superclass: Instance - events: [] - properties: [] - Dialog: - superclass: Instance - events: - - DialogChoiceSelected - properties: - - BehaviorType - - ConversationDistance - - GoodbyeChoiceActive - - GoodbyeDialog - - InUse - - InitialPrompt - - Purpose - - Tone - - TriggerDistance - - TriggerOffset - DialogChoice: - superclass: Instance - events: [] - properties: - - GoodbyeChoiceActive - - GoodbyeDialog - - ResponseDialog - - UserDialog - DistortionSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Level - DockWidgetPluginGui: - superclass: PluginGui - events: [] - properties: - - HostWidgetWasRestored - DoubleConstrainedValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - ConstrainedValue - - MaxValue - - MinValue - - Value - DraftsService: - superclass: Instance - events: - - CommitStatusChanged - - DraftAdded - - DraftRemoved - - DraftStatusChanged - - EditorsListChanged - - UpdateStatusChanged - properties: [] - Dragger: - superclass: Instance - events: [] - properties: [] - DraggerService: - superclass: Instance - events: [] - properties: - - AlignDraggedObjects - - AngleSnapEnabled - - AngleSnapIncrement - - AnimateHover - - CollisionsEnabled - - DraggerCoordinateSpace - - DraggerMovementMode - - GeometrySnapColor - - HoverAnimateFrequency - - HoverLineThickness - - HoverThickness - - JointsEnabled - - LinearSnapEnabled - - LinearSnapIncrement - - PivotSnapToGeometry - - ShowHover - - ShowPivotIndicator - DynamicRotate: - superclass: JointInstance - events: [] - properties: - - BaseAngle - EchoSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Delay - - DryLevel - - Feedback - - WetLevel - EmotesPages: - superclass: InventoryPages - events: [] - properties: [] - EqualizerSoundEffect: - superclass: SoundEffect - events: [] - properties: - - HighGain - - LowGain - - MidGain - EulerRotationCurve: - superclass: Instance - events: [] - properties: - - RotationOrder - EventIngestService: - superclass: Instance - events: [] - properties: [] - ExperienceAuthService: - superclass: Instance - events: - - OpenAuthPrompt - properties: [] - ExperienceInviteOptions: - superclass: Instance - events: [] - properties: - - InviteMessageId - - InviteUser - - LaunchData - - PromptMessage - Explosion: - superclass: Instance - events: - - Hit - properties: - - BlastPressure - - BlastRadius - - DestroyJointRadiusPercent - - ExplosionType - - Position - - TimeScale - - Visible - FaceAnimatorService: - superclass: Instance - events: - - TrackerError - - TrackerPrompt - properties: - - AudioAnimationEnabled - - FlipHeadOrientation - - VideoAnimationEnabled - FaceControls: - superclass: Instance - events: [] - properties: - - ChinRaiser - - ChinRaiserUpperLip - - Corrugator - - EyesLookDown - - EyesLookLeft - - EyesLookRight - - EyesLookUp - - FlatPucker - - Funneler - - JawDrop - - JawLeft - - JawRight - - LeftBrowLowerer - - LeftCheekPuff - - LeftCheekRaiser - - LeftDimpler - - LeftEyeClosed - - LeftEyeUpperLidRaiser - - LeftInnerBrowRaiser - - LeftLipCornerDown - - LeftLipCornerPuller - - LeftLipStretcher - - LeftLowerLipDepressor - - LeftNoseWrinkler - - LeftOuterBrowRaiser - - LeftUpperLipRaiser - - LipPresser - - LipsTogether - - LowerLipSuck - - MouthLeft - - MouthRight - - Pucker - - RightBrowLowerer - - RightCheekPuff - - RightCheekRaiser - - RightDimpler - - RightEyeClosed - - RightEyeUpperLidRaiser - - RightInnerBrowRaiser - - RightLipCornerDown - - RightLipCornerPuller - - RightLipStretcher - - RightLowerLipDepressor - - RightNoseWrinkler - - RightOuterBrowRaiser - - RightUpperLipRaiser - - TongueDown - - TongueOut - - TongueUp - - UpperLipSuck - FaceInstance: - superclass: Instance - events: [] - properties: - - Face - FacialAnimationRecordingService: - superclass: Instance - events: [] - properties: - - BiometricDataConsent - FacialAnimationStreamingService: - superclass: Instance - events: [] - properties: - - EnableFlags - - Enabled - FacialAnimationStreamingServiceStats: - superclass: Instance - events: - - isStreamingFacsUpdated - properties: [] - FacialAnimationStreamingServiceV2: - superclass: Instance - events: [] - properties: - - ServiceState - Feature: - superclass: Instance - events: [] - properties: - - FaceId - - InOut - - LeftRight - - TopBottom - File: - superclass: Instance - events: [] - properties: - - Size - FileMesh: - superclass: DataModelMesh - events: [] - properties: - - MeshId - - TextureId - Fire: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - Heat - - SecondaryColor - - Size - - TimeScale - - size - Flag: - superclass: Tool - events: [] - properties: - - TeamColor - FlagStand: - superclass: Part - events: - - FlagCaptured - properties: - - TeamColor - FlagStandService: - superclass: Instance - events: [] - properties: [] - FlangeSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Mix - - Rate - FloatCurve: - superclass: Instance - events: [] - properties: - - Length - FloorWire: - superclass: GuiBase3d - events: [] - properties: - - CycleOffset - - From - - StudsBetweenTextures - - Texture - - TextureSize - - To - - Velocity - - WireRadius - FlyweightService: - superclass: Instance - events: [] - properties: [] - Folder: - superclass: Instance - events: [] - properties: [] - ForceField: - superclass: Instance - events: [] - properties: - - Visible - FormFactorPart: - superclass: BasePart - events: [] - properties: - - FormFactor - - formFactor - Frame: - superclass: GuiObject - events: [] - properties: - - Style - FriendPages: - superclass: Pages - events: [] - properties: [] - FriendService: - superclass: Instance - events: - - FriendsUpdated - properties: [] - FunctionalTest: - superclass: Instance - events: [] - properties: - - Description - GamePassService: - superclass: Instance - events: [] - properties: [] - GameSettings: - superclass: Instance - events: - - VideoRecordingChangeRequest - properties: - - VideoCaptureEnabled - - VideoRecording - GamepadService: - superclass: Instance - events: - - GamepadThumbstick1Changed - properties: - - GamepadCursorEnabled - GenericSettings: - superclass: ServiceProvider - events: [] - properties: [] - Geometry: - superclass: Instance - events: [] - properties: [] - GetTextBoundsParams: - superclass: Instance - events: [] - properties: - - Font - - Size - - Text - - Width - GlobalDataStore: - superclass: Instance - events: [] - properties: [] - GlobalSettings: - superclass: GenericSettings - events: [] - properties: [] - Glue: - superclass: JointInstance - events: [] - properties: - - F0 - - F1 - - F2 - - F3 - GoogleAnalyticsConfiguration: - superclass: Instance - events: [] - properties: [] - GroundController: - superclass: ControllerBase - events: [] - properties: - - AccelerationLean - - AccelerationTime - - AlignSpeed - - AlignTorque - - DecelerationTime - - Friction - - FrictionWeight - - GroundOffset - - StandForce - - StandSpeed - - TurningFactor - GroupService: - superclass: Instance - events: [] - properties: [] - GuiBase: - superclass: Instance - events: [] - properties: [] - GuiBase2d: - superclass: GuiBase - events: - - SelectionChanged - properties: - - AbsolutePosition - - AbsoluteRotation - - AbsoluteSize - - AutoLocalize - - ClippedRect - - IsNotOccluded - - Localize - - RawRect2D - - RootLocalizationTable - - SelectionBehaviorDown - - SelectionBehaviorLeft - - SelectionBehaviorRight - - SelectionBehaviorUp - - SelectionGroup - - TotalGroupScale - GuiBase3d: - superclass: GuiBase - events: [] - properties: - - Color - - Color3 - - Transparency - - Visible - GuiButton: - superclass: GuiObject - events: - - Activated - - MouseButton1Click - - MouseButton1Down - - MouseButton1Up - - MouseButton2Click - - MouseButton2Down - - MouseButton2Up - properties: - - AutoButtonColor - - Modal - - Selected - - Style - GuiLabel: - superclass: GuiObject - events: [] - properties: [] - GuiMain: - superclass: ScreenGui - events: [] - properties: [] - GuiObject: - superclass: GuiBase2d - events: - - DragBegin - - DragStopped - - InputBegan - - InputChanged - - InputEnded - - MouseEnter - - MouseLeave - - MouseMoved - - MouseWheelBackward - - MouseWheelForward - - SelectionGained - - SelectionLost - - TouchLongPress - - TouchPan - - TouchPinch - - TouchRotate - - TouchSwipe - - TouchTap - properties: - - Active - - AnchorPoint - - AutomaticSize - - BackgroundColor - - BackgroundColor3 - - BackgroundTransparency - - BorderColor - - BorderColor3 - - BorderMode - - BorderSizePixel - - ClipsDescendants - - Draggable - - LayoutOrder - - NextSelectionDown - - NextSelectionLeft - - NextSelectionRight - - NextSelectionUp - - Position - - Rotation - - Selectable - - SelectionImageObject - - SelectionOrder - - Size - - SizeConstraint - - Transparency - - Visible - - ZIndex - GuiService: - superclass: Instance - events: - - BrowserWindowClosed - - CloseInspectMenuRequest - - CoreGuiRenderOverflowed - - EmotesMenuOpenChanged - - ErrorMessageChanged - - GuiVisibilityChangedSignal - - InspectMenuEnabledChangedSignal - - InspectPlayerFromHumanoidDescriptionRequest - - InspectPlayerFromUserIdWithCtxRequest - - KeyPressed - - MenuClosed - - MenuOpened - - NativeClose - - NetworkPausedEnabledChanged - - Open9SliceEditor - - PurchasePromptShown - - SafeZoneOffsetsChanged - - ShowLeaveConfirmation - - SpecialKeyPressed - - UiMessageChanged - properties: - - AutoSelectGuiEnabled - - CoreEffectFolder - - CoreGuiFolder - - CoreGuiNavigationEnabled - - GuiNavigationEnabled - - IsModalDialog - - IsWindows - - MenuIsOpen - - SelectedCoreObject - - SelectedObject - - TouchControlsEnabled - GuidRegistryService: - superclass: Instance - events: [] - properties: [] - HSRDataContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - HandleAdornment: - superclass: PVAdornment - events: - - MouseButton1Down - - MouseButton1Up - - MouseEnter - - MouseLeave - properties: - - AdornCullingMode - - AlwaysOnTop - - CFrame - - SizeRelativeOffset - - ZIndex - Handles: - superclass: HandlesBase - events: - - MouseButton1Down - - MouseButton1Up - - MouseDrag - - MouseEnter - - MouseLeave - properties: - - Faces - - Style - HandlesBase: - superclass: PartAdornment - events: [] - properties: [] - HapticService: - superclass: Instance - events: [] - properties: [] - Hat: - superclass: Accoutrement - events: [] - properties: [] - HeightmapImporterService: - superclass: Instance - events: - - ColormapHasUnknownPixels - - ProgressUpdate - properties: [] - HiddenSurfaceRemovalAsset: - superclass: Instance - events: [] - properties: [] - Highlight: - superclass: Instance - events: [] - properties: - - Adornee - - DepthMode - - Enabled - - FillColor - - FillTransparency - - LineThickness - - OutlineColor - - OutlineTransparency - - ReservedId - HingeConstraint: - superclass: Constraint - events: [] - properties: - - ActuatorType - - AngularResponsiveness - - AngularSpeed - - AngularVelocity - - CurrentAngle - - LimitsEnabled - - LowerAngle - - MotorMaxAcceleration - - MotorMaxTorque - - Radius - - Restitution - - ServoMaxTorque - - TargetAngle - - UpperAngle - Hint: - superclass: Message - events: [] - properties: [] - Hole: - superclass: Feature - events: [] - properties: [] - Hopper: - superclass: Instance - events: [] - properties: [] - HopperBin: - superclass: BackpackItem - events: - - Deselected - - Selected - properties: - - Active - - BinType - HttpRbxApiService: - superclass: Instance - events: [] - properties: [] - HttpRequest: - superclass: Instance - events: [] - properties: [] - HttpService: - superclass: Instance - events: [] - properties: - - HttpEnabled - Humanoid: - superclass: Instance - events: - - AnimationPlayed - - Climbing - - ClusterCompositionFinished - - CustomStatusAdded - - CustomStatusRemoved - - Died - - EmoteTriggered - - FallingDown - - FreeFalling - - GettingUp - - HealthChanged - - Jumping - - MoveToFinished - - PlatformStanding - - Ragdoll - - Running - - Seated - - StateChanged - - StateEnabledChanged - - StatusAdded - - StatusRemoved - - Strafing - - Swimming - - Touched - properties: - - AutoJumpEnabled - - AutoRotate - - AutomaticScalingEnabled - - BreakJointsOnDeath - - CameraOffset - - CollisionType - - DisplayDistanceType - - DisplayName - - EvaluateStateMachine - - FloorMaterial - - Health - - HealthDisplayDistance - - HealthDisplayType - - HipHeight - - Jump - - JumpHeight - - JumpPower - - LeftLeg - - MaxHealth - - MaxSlopeAngle - - MoveDirection - - NameDisplayDistance - - NameOcclusion - - PlatformStand - - RequiresNeck - - RigType - - RightLeg - - RootPart - - SeatPart - - Sit - - TargetPoint - - Torso - - UseJumpPower - - WalkSpeed - - WalkToPart - - WalkToPoint - - maxHealth - HumanoidController: - superclass: Controller - events: [] - properties: [] - HumanoidDescription: - superclass: Instance - events: - - EmotesChanged - - EquippedEmotesChanged - properties: - - AccessoryBlob - - BackAccessory - - BodyTypeScale - - ClimbAnimation - - DepthScale - - Face - - FaceAccessory - - FallAnimation - - FrontAccessory - - GraphicTShirt - - HairAccessory - - HatAccessory - - Head - - HeadColor - - HeadScale - - HeightScale - - IdleAnimation - - JumpAnimation - - LeftArm - - LeftArmColor - - LeftLeg - - LeftLegColor - - MoodAnimation - - NeckAccessory - - NumberEmotesLoaded - - Pants - - ProportionScale - - RightArm - - RightArmColor - - RightLeg - - RightLegColor - - RunAnimation - - Shirt - - ShouldersAccessory - - SwimAnimation - - Torso - - TorsoColor - - WaistAccessory - - WalkAnimation - - WidthScale - IKControl: - superclass: Instance - events: [] - properties: - - ChainRoot - - Enabled - - EndEffector - - EndEffectorOffset - - Offset - - Pole - - Priority - - SmoothTime - - Target - - Type - - Weight - ILegacyStudioBridge: - superclass: Instance - events: [] - properties: [] - IXPService: - superclass: Instance - events: - - OnBrowserTrackerLayerLoadingStatusChanged - - OnUserLayerLoadingStatusChanged - properties: [] - ImageButton: - superclass: GuiButton - events: [] - properties: - - ContentImageSize - - HoverImage - - Image - - ImageColor3 - - ImageRectOffset - - ImageRectSize - - ImageTransparency - - IsLoaded - - PressedImage - - ResampleMode - - ScaleType - - SliceCenter - - SliceScale - - TileSize - ImageDataExperimental: - superclass: Instance - events: [] - properties: - - Size - - TemporaryId - ImageHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Image - - Size - ImageLabel: - superclass: GuiLabel - events: [] - properties: - - ContentImageSize - - Image - - ImageColor3 - - ImageRectOffset - - ImageRectSize - - ImageTransparency - - IsLoaded - - ResampleMode - - ScaleType - - SliceCenter - - SliceScale - - TileSize - ImporterAnimationSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterBaseSettings: - superclass: Instance - events: [] - properties: - - Id - - ImportName - - ShouldImport - ImporterFacsSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterGroupSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - Anchored - - ImportAsModelAsset - - InsertInWorkspace - ImporterJointSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterMaterialSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - DiffuseFilePath - - IsPbr - - MetalnessFilePath - - NormalFilePath - - RoughnessFilePath - ImporterMeshSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - Anchored - - CageManifold - - CageMeshIntersectedPreview - - CageMeshNotIntersected - - CageNoOverlappingVertices - - CageNonManifoldPreview - - CageOverlappingVerticesPreview - - CageUVMatched - - CageUVMisMatchedPreview - - Dimensions - - DoubleSided - - IgnoreVertexColors - - IrrelevantCageModifiedPreview - - MeshHoleDetectedPreview - - MeshNoHoleDetected - - NoIrrelevantCageModified - - NoOuterCageFarExtendedFromMesh - - OuterCageFarExtendedFromMeshPreview - - PolygonCount - - UseImportedPivot - ImporterRootSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - AddModelToInventory - - Anchored - - ExistingPackageId - - FileDimensions - - ImportAsModelAsset - - ImportAsPackage - - InsertInWorkspace - - InsertWithScenePosition - - InvertNegativeFaces - - MergeMeshes - - PolygonCount - - RigScale - - RigType - - ScaleUnit - - UseSceneOriginAsCFrame - - UseSceneOriginAsPivot - - UsesCages - - WorldForward - - WorldUp - IncrementalPatchBuilder: - superclass: Instance - events: [] - properties: - - AddPathsToBundle - - BuildDebouncePeriod - - HighCompression - - SerializePatch - - ZstdCompression - InputObject: - superclass: Instance - events: [] - properties: - - Delta - - KeyCode - - Position - - UserInputState - - UserInputType - InsertService: - superclass: Instance - events: [] - properties: - - AllowClientInsertModels - - AllowInsertFreeModels - Instance: - superclass: <<>> - events: - - AncestryChanged - - AttributeChanged - - Changed - - ChildAdded - - ChildRemoved - - DescendantAdded - - DescendantRemoving - - Destroying - - childAdded - properties: - - Archivable - - ClassName - - DataCost - - Name - - Parent - - RobloxLocked - - SourceAssetId - - archivable - - className - InstanceAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - IntConstrainedValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - ConstrainedValue - - MaxValue - - MinValue - - Value - IntValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - IntersectOperation: - superclass: PartOperation - events: [] - properties: [] - InventoryPages: - superclass: Pages - events: [] - properties: [] - JointInstance: - superclass: Instance - events: [] - properties: - - Active - - C0 - - C1 - - Enabled - - Part0 - - Part1 - - part1 - JointsService: - superclass: Instance - events: [] - properties: [] - KeyboardService: - superclass: Instance - events: [] - properties: [] - Keyframe: - superclass: Instance - events: [] - properties: - - Time - KeyframeMarker: - superclass: Instance - events: [] - properties: - - Value - KeyframeSequence: - superclass: AnimationClip - events: [] - properties: - - AuthoredHipHeight - KeyframeSequenceProvider: - superclass: Instance - events: [] - properties: [] - LSPFileSyncService: - superclass: Instance - events: [] - properties: [] - LanguageService: - superclass: Instance - events: [] - properties: [] - LayerCollector: - superclass: GuiBase2d - events: [] - properties: - - Enabled - - ResetOnSpawn - - ZIndexBehavior - LegacyStudioBridge: - superclass: ILegacyStudioBridge - events: [] - properties: [] - Light: - superclass: Instance - events: [] - properties: - - Brightness - - Color - - Enabled - - Shadows - Lighting: - superclass: Instance - events: - - LightingChanged - properties: - - Ambient - - Brightness - - TimerTime - - ColorShift_Bottom - - ColorShift_Top - - EnvironmentDiffuseScale - - EnvironmentSpecularScale - - ExposureCompensation - - FogColor - - FogEnd - - FogStart - - GeographicLatitude - - GlobalShadows - - OutdoorAmbient - - Outlines - - ShadowColor - - ShadowSoftness - - Technology - - TempUseNewSkyRemovalBehaviour - - TimeOfDay - LineForce: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - InverseSquareLaw - - Magnitude - - MaxForce - - ReactionForceEnabled - LineHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Length - - Thickness - LinearVelocity: - superclass: Constraint - events: [] - properties: - - LineDirection - - LineVelocity - - MaxForce - - PlaneVelocity - - PrimaryTangentAxis - - RelativeTo - - SecondaryTangentAxis - - VectorVelocity - - VelocityConstraintMode - LiveScriptingService: - superclass: Instance - events: [] - properties: [] - LocalDebuggerConnection: - superclass: DebuggerConnection - events: [] - properties: [] - LocalScript: - superclass: Script - events: [] - properties: [] - LocalStorageService: - superclass: Instance - events: - - ItemWasSet - - StoreWasCleared - properties: [] - LocalizationService: - superclass: Instance - events: - - AutoTranslateWillRun - properties: - - ForcePlayModeGameLocaleId - - ForcePlayModeRobloxLocaleId - - IsTextScraperRunning - - RobloxForcePlayModeGameLocaleId - - RobloxForcePlayModeRobloxLocaleId - - RobloxLocaleId - - SystemLocaleId - LocalizationTable: - superclass: Instance - events: [] - properties: - - DevelopmentLanguage - - Root - - SourceLocaleId - LodDataEntity: - superclass: Instance - events: [] - properties: - - EntityLodEnabled - LodDataService: - superclass: Instance - events: [] - properties: [] - LogService: - superclass: Instance - events: - - HttpResultOut - - MessageOut - - OnHttpResultApproved - - ServerHttpResultOut - - ServerMessageOut - properties: [] - LoginService: - superclass: Instance - events: - - LoginFailed - - LoginSucceeded - properties: [] - LuaSettings: - superclass: Instance - events: [] - properties: [] - LuaSourceContainer: - superclass: Instance - events: [] - properties: - - CurrentEditor - - RuntimeSource - LuaWebService: - superclass: Instance - events: [] - properties: [] - LuauScriptAnalyzerService: - superclass: Instance - events: [] - properties: [] - ManualGlue: - superclass: ManualSurfaceJointInstance - events: [] - properties: [] - ManualSurfaceJointInstance: - superclass: JointInstance - events: [] - properties: [] - ManualWeld: - superclass: ManualSurfaceJointInstance - events: [] - properties: [] - MarkerCurve: - superclass: Instance - events: [] - properties: - - Length - MarketplaceService: - superclass: Instance - events: - - ClientLuaDialogRequested - - ClientPurchaseSuccess - - NativePurchaseFinished - - NativePurchaseFinishedWithLocalPlayer - - PromptBundlePurchaseFinished - - PromptBundlePurchaseRequested - - PromptGamePassPurchaseFinished - - PromptGamePassPurchaseRequested - - PromptPremiumPurchaseFinished - - PromptPremiumPurchaseRequested - - PromptProductPurchaseFinished - - PromptProductPurchaseRequested - - PromptPurchaseFinished - - PromptPurchaseRequested - - PromptRobloxPurchaseRequested - - PromptSubscriptionCancellationFinished - - PromptSubscriptionCancellationRequested - - PromptSubscriptionPurchaseFinished - - PromptSubscriptionPurchaseRequested - - ServerPurchaseVerification - - ThirdPartyPurchaseFinished - properties: [] - MaterialGenerationService: - superclass: Instance - events: [] - properties: [] - MaterialGenerationSession: - superclass: Instance - events: [] - properties: [] - MaterialService: - superclass: Instance - events: - - OverrideStatusChanged - properties: - - AsphaltName - - BasaltName - - BrickName - - CobblestoneName - - ConcreteName - - CorrodedMetalName - - CrackedLavaName - - DiamondPlateName - - FabricName - - FoilName - - GlacierName - - GraniteName - - GrassName - - GroundName - - IceName - - LeafyGrassName - - LimestoneName - - MarbleName - - MetalName - - MudName - - PavementName - - PebbleName - - PlasticName - - RockName - - SaltName - - SandName - - SandstoneName - - SlateName - - SmoothPlasticName - - SnowName - - Use2022Materials - - WoodName - - WoodPlanksName - MaterialVariant: - superclass: Instance - events: [] - properties: - - BaseMaterial - - ColorMap - - CustomPhysicalProperties - - MaterialPattern - - MetalnessMap - - NormalMap - - RoughnessMap - - StudsPerTile - MemStorageConnection: - superclass: Instance - events: [] - properties: [] - MemStorageService: - superclass: Instance - events: [] - properties: [] - MemoryStoreQueue: - superclass: Instance - events: [] - properties: [] - MemoryStoreService: - superclass: Instance - events: [] - properties: [] - MemoryStoreSortedMap: - superclass: Instance - events: [] - properties: [] - MeshContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - MeshDataExperimental: - superclass: Instance - events: [] - properties: - - Size - MeshPart: - superclass: TriangleMeshPart - events: [] - properties: - - DoubleSided - - HasJointOffset - - HasSkinnedMesh - - JointOffset - - MeshId - - RenderFidelity - - TextureID - Message: - superclass: Instance - events: [] - properties: - - Text - MessageBusConnection: - superclass: Instance - events: [] - properties: [] - MessageBusService: - superclass: Instance - events: [] - properties: [] - MessagingService: - superclass: Instance - events: [] - properties: [] - MetaBreakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - Enabled - - Id - - IsLogpoint - - Line - - LogMessage - - Script - - Valid - MetaBreakpointContext: - superclass: Instance - events: [] - properties: [] - MetaBreakpointManager: - superclass: Instance - events: - - MetaBreakpointAdded - - MetaBreakpointChanged - - MetaBreakpointRemoved - - MetaBreakpointSetChanged - properties: [] - Model: - superclass: PVInstance - events: [] - properties: - - LevelOfDetail - - ModelStreamingMode - - PrimaryPart - - Scale - - WorldPivot - ModuleScript: - superclass: LuaSourceContainer - events: [] - properties: - - LinkedSource - - Source - Motor: - superclass: JointInstance - events: [] - properties: - - CurrentAngle - - DesiredAngle - - MaxVelocity - Motor6D: - superclass: Motor - events: [] - properties: - - ChildName - - ParentName - - Transform - MotorFeature: - superclass: Feature - events: [] - properties: [] - Mouse: - superclass: Instance - events: - - Button1Down - - Button1Up - - Button2Down - - Button2Up - - Idle - - KeyDown - - KeyUp - - Move - - WheelBackward - - WheelForward - - keyDown - properties: - - Hit - - Icon - - Origin - - Target - - TargetFilter - - TargetSurface - - UnitRay - - ViewSizeX - - ViewSizeY - - X - - Y - - hit - - target - MouseService: - superclass: Instance - events: [] - properties: [] - MultipleDocumentInterfaceInstance: - superclass: Instance - events: - - DataModelSessionEnded - - DataModelSessionStarted - properties: - - FocusedDataModelSession - NegateOperation: - superclass: PartOperation - events: [] - properties: [] - NetworkClient: - superclass: NetworkPeer - events: - - ConnectionAccepted - - ConnectionFailed - properties: [] - NetworkMarker: - superclass: Instance - events: - - Received - properties: [] - NetworkPeer: - superclass: Instance - events: [] - properties: [] - NetworkReplicator: - superclass: Instance - events: [] - properties: [] - NetworkServer: - superclass: NetworkPeer - events: [] - properties: [] - NetworkSettings: - superclass: Instance - events: [] - properties: - - EmulatedTotalMemoryInMB - - FreeMemoryMBytes - - HttpProxyEnabled - - HttpProxyURL - - IncomingReplicationLag - - PrintJoinSizeBreakdown - - PrintPhysicsErrors - - PrintStreamInstanceQuota - - RandomizeJoinInstanceOrder - - RenderStreamedRegions - - ShowActiveAnimationAsset - NoCollisionConstraint: - superclass: Instance - events: [] - properties: - - Enabled - - Part0 - - Part1 - NonReplicatedCSGDictionaryService: - superclass: FlyweightService - events: [] - properties: [] - NotificationService: - superclass: Instance - events: - - Roblox17sConnectionChanged - - Roblox17sEventReceived - - RobloxConnectionChanged - - RobloxEventReceived - properties: - - IsConnected - - IsLuaChatEnabled - - IsLuaGameDetailsEnabled - - SelectedTheme - NumberPose: - superclass: PoseBase - events: [] - properties: - - Value - NumberValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - ObjectValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - OrderedDataStore: - superclass: GlobalDataStore - events: [] - properties: [] - OutfitPages: - superclass: Pages - events: [] - properties: [] - PVAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - PVInstance: - superclass: Instance - events: [] - properties: - - Origin - - Pivot Offset - PackageLink: - superclass: Instance - events: [] - properties: - - AutoUpdate - - Creator - - PackageAssetName - - PackageId - - PermissionLevel - - Status - - VersionNumber - PackageService: - superclass: Instance - events: [] - properties: [] - PackageUIService: - superclass: Instance - events: - - OnConvertToPackageResult - - OnOpenConvertToPackagePlugin - properties: [] - Pages: - superclass: Instance - events: [] - properties: - - IsFinished - Pants: - superclass: Clothing - events: [] - properties: - - PantsTemplate - ParabolaAdornment: - superclass: PVAdornment - events: [] - properties: - - A - - B - - C - - Range - - Thickness - Part: - superclass: FormFactorPart - events: [] - properties: - - Shape - PartAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - PartOperation: - superclass: TriangleMeshPart - events: [] - properties: - - RenderFidelity - - SmoothingAngle - - TriangleCount - - UsePartColor - PartOperationAsset: - superclass: Instance - events: [] - properties: [] - ParticleEmitter: - superclass: Instance - events: [] - properties: - - Acceleration - - Brightness - - Color - - Drag - - EmissionDirection - - Enabled - - FlipbookFramerate - - FlipbookIncompatible - - FlipbookLayout - - FlipbookMode - - FlipbookStartRandom - - Lifetime - - LightEmission - - LightInfluence - - LockedToPart - - Orientation - - Rate - - RotSpeed - - Rotation - - Shape - - ShapeInOut - - ShapePartial - - ShapeStyle - - Size - - Speed - - SpreadAngle - - Squash - - Texture - - TimeScale - - Transparency - - VelocityInheritance - - VelocitySpread - - ZOffset - PatchBundlerFileWatch: - superclass: Instance - events: [] - properties: [] - PatchMapping: - superclass: Instance - events: [] - properties: - - FlattenTree - - PatchId - - TargetPath - Path: - superclass: Instance - events: - - Blocked - - Unblocked - properties: - - Status - PathfindingLink: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - IsBidirectional - - Label - PathfindingModifier: - superclass: Instance - events: [] - properties: - - Label - - PassThrough - PathfindingService: - superclass: Instance - events: [] - properties: - - EmptyCutoff - PausedState: - superclass: Instance - events: [] - properties: - - AllThreadsPaused - - Reason - - ThreadId - PausedStateBreakpoint: - superclass: PausedState - events: [] - properties: - - Breakpoint - PausedStateException: - superclass: PausedState - events: [] - properties: - - ExceptionText - PermissionsService: - superclass: Instance - events: [] - properties: [] - PhysicsService: - superclass: Instance - events: [] - properties: [] - PhysicsSettings: - superclass: Instance - events: [] - properties: - - AllowSleep - - AreAnchorsShown - - AreAssembliesShown - - AreAwakePartsHighlighted - - AreBodyTypesShown - - AreConstraintForcesShownForSelectedOrHoveredInstances - - AreConstraintTorquesShownForSelectedOrHoveredInstances - - AreContactForcesShownForSelectedOrHoveredAssemblies - - AreContactIslandsShown - - AreContactPointsShown - - AreJointCoordinatesShown - - AreMagnitudesShownForDrawnForcesAndTorques - - AreMechanismsShown - - AreModelCoordsShown - - AreOwnersShown - - ArePartCoordsShown - - AreRegionsShown - - AreSolverIslandsShown - - AreTerrainReplicationRegionsShown - - AreTimestepsShown - - AreUnalignedPartsShown - - AreWorldCoordsShown - - DisableCSGv2 - - ForceCSGv2 - - ForceDrawScale - - IsInterpolationThrottleShown - - IsReceiveAgeShown - - IsTreeShown - - PhysicsEnvironmentalThrottle - - ShowDecompositionGeometry - - SolverConvergenceVisualizationMode - - ThrottleAdjustTime - - UseCSGv2 - PitchShiftSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Octave - Plane: - superclass: PlaneConstraint - events: [] - properties: [] - PlaneConstraint: - superclass: Constraint - events: [] - properties: [] - Platform: - superclass: Part - events: [] - properties: [] - Player: - superclass: Instance - events: - - CharacterAdded - - CharacterAppearanceLoaded - - CharacterRemoving - - Chatted - - FriendStatusChanged - - Idled - - OnTeleport - - SimulationRadiusChanged - properties: - - AccountAge - - AppearanceDidLoad - - AutoJumpEnabled - - CameraMaxZoomDistance - - CameraMinZoomDistance - - CameraMode - - CanLoadCharacterAppearance - - Character - - CharacterAppearance - - CharacterAppearanceId - - ChatMode - - DataComplexity - - DataComplexityLimit - - DataReady - - DevCameraOcclusionMode - - DevComputerCameraMode - - DevComputerMovementMode - - DevEnableMouseLock - - DevTouchCameraMode - - DevTouchMovementMode - - DisplayName - - FollowUserId - - GameplayPaused - - Guest - - HasVerifiedBadge - - HealthDisplayDistance - - LocaleId - - MaximumSimulationRadius - - MembershipType - - NameDisplayDistance - - Neutral - - OsPlatform - - PlatformName - - ReplicationFocus - - RespawnLocation - - SimulationRadius - - Team - - TeamColor - - Teleported - - TeleportedIn - - UnfilteredChat - - UserId - - VRDevice - - VREnabled - - userId - PlayerEmulatorService: - superclass: Instance - events: [] - properties: - - CustomPoliciesEnabled - - EmulatedCountryCode - - EmulatedGameLocale - - PlayerEmulationEnabled - - SerializedEmulatedPolicyInfo - PlayerGui: - superclass: BasePlayerGui - events: - - TopbarTransparencyChangedSignal - properties: - - CurrentScreenOrientation - - ScreenOrientation - - SelectionImageObject - PlayerMouse: - superclass: Mouse - events: [] - properties: [] - PlayerScripts: - superclass: Instance - events: - - ComputerCameraMovementModeRegistered - - ComputerMovementModeRegistered - - TouchCameraMovementModeRegistered - - TouchMovementModeRegistered - properties: [] - Players: - superclass: Instance - events: - - FriendRequestEvent - - GameAnnounce - - PlayerAdded - - PlayerChatted - - PlayerConnecting - - PlayerDisconnecting - - PlayerMembershipChanged - - PlayerRejoining - - PlayerRemoving - properties: - - BubbleChat - - CharacterAutoLoads - - ClassicChat - - LocalPlayer - - MaxPlayers - - MaxPlayersInternal - - NumPlayers - - PreferredPlayers - - PreferredPlayersInternal - - RespawnTime - - UseStrafingAnimations - - localPlayer - - numPlayers - Plugin: - superclass: Instance - events: - - Deactivation - - Ready - - Unloading - properties: - - CollisionEnabled - - GridSize - - HostDataModelType - - HostDataModelTypeIsCurrent - - MultipleDocumentInterfaceInstance - - UsesAssetInsertionDrag - PluginAction: - superclass: Instance - events: - - Triggered - properties: - - ActionId - - AllowBinding - - Checked - - DefaultShortcut - - Enabled - - StatusTip - - Text - PluginDebugService: - superclass: Instance - events: [] - properties: [] - PluginDragEvent: - superclass: Instance - events: [] - properties: - - Data - - MimeType - - Position - - Sender - PluginGui: - superclass: LayerCollector - events: - - PluginDragDropped - - PluginDragEntered - - PluginDragLeft - - PluginDragMoved - - WindowFocusReleased - - WindowFocused - properties: - - Title - PluginGuiService: - superclass: Instance - events: [] - properties: [] - PluginManagementService: - superclass: Instance - events: [] - properties: [] - PluginManager: - superclass: Instance - events: [] - properties: [] - PluginManagerInterface: - superclass: Instance - events: [] - properties: [] - PluginMenu: - superclass: Instance - events: [] - properties: - - Icon - - Title - PluginMouse: - superclass: Mouse - events: - - DragEnter - properties: [] - PluginPolicyService: - superclass: Instance - events: [] - properties: [] - PluginToolbar: - superclass: Instance - events: [] - properties: [] - PluginToolbarButton: - superclass: Instance - events: - - Click - properties: - - ClickableWhenViewportHidden - - Enabled - - Icon - PointLight: - superclass: Light - events: [] - properties: - - Range - PointsService: - superclass: Instance - events: - - PointsAwarded - properties: [] - PolicyService: - superclass: Instance - events: [] - properties: - - IsLuobuServer - - LuobuWhitelisted - Pose: - superclass: PoseBase - events: [] - properties: - - CFrame - - MaskWeight - PoseBase: - superclass: Instance - events: [] - properties: - - EasingDirection - - EasingStyle - - Weight - PostEffect: - superclass: Instance - events: [] - properties: - - Enabled - PrismaticConstraint: - superclass: SlidingBallConstraint - events: [] - properties: [] - ProcessInstancePhysicsService: - superclass: Instance - events: [] - properties: [] - ProximityPrompt: - superclass: Instance - events: - - PromptButtonHoldBegan - - PromptButtonHoldEnded - - PromptHidden - - PromptShown - - TriggerEnded - - Triggered - properties: - - ActionText - - AutoLocalize - - ClickablePrompt - - Enabled - - Exclusivity - - GamepadKeyCode - - HoldDuration - - KeyboardKeyCode - - MaxActivationDistance - - ObjectText - - RequiresLineOfSight - - RootLocalizationTable - - Style - - UIOffset - ProximityPromptService: - superclass: Instance - events: - - PromptButtonHoldBegan - - PromptButtonHoldEnded - - PromptHidden - - PromptShown - - PromptTriggerEnded - - PromptTriggered - properties: - - Enabled - - MaxPromptsVisible - PublishService: - superclass: Instance - events: [] - properties: [] - QWidgetPluginGui: - superclass: PluginGui - events: [] - properties: [] - RayValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - RbxAnalyticsService: - superclass: Instance - events: [] - properties: [] - ReflectionMetadata: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataCallbacks: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataClass: - superclass: ReflectionMetadataItem - events: [] - properties: - - ExplorerImageIndex - - ExplorerOrder - - Insertable - - PreferredParent - - ServiceVisibility - ReflectionMetadataClasses: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataEnum: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataEnumItem: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataEnums: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataEvents: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataFunctions: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataItem: - superclass: Instance - events: [] - properties: - - Browsable - - ClassCategory - - ClientOnly - - Constraint - - Deprecated - - EditingDisabled - - EditorType - - FFlag - - IsBackend - - PropertyOrder - - ScriptContext - - ServerOnly - - SliderScaling - - UIMaximum - - UIMinimum - - UINumTicks - ReflectionMetadataMember: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataProperties: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataYieldFunctions: - superclass: Instance - events: [] - properties: [] - RemoteCursorService: - superclass: Instance - events: [] - properties: [] - RemoteDebuggerServer: - superclass: Instance - events: [] - properties: [] - RemoteEvent: - superclass: Instance - events: - - OnClientEvent - - OnServerEvent - properties: [] - RemoteFunction: - superclass: Instance - events: [] - properties: [] - RenderSettings: - superclass: Instance - events: [] - properties: - - AutoFRMLevel - - EagerBulkExecution - - EditQualityLevel - - EnableFRM - - ExportMergeByMaterial - - FrameRateManager - - GraphicsMode - - MeshCacheSize - - MeshPartDetailLevel - - QualityLevel - - ReloadAssets - - RenderCSGTrianglesDebug - - ShowBoundingBoxes - RenderingTest: - superclass: Instance - events: [] - properties: - - CFrame - - ComparisonDiffThreshold - - ComparisonMethod - - ComparisonPsnrThreshold - - Description - - FieldOfView - - Orientation - - Position - - QualityLevel - - ShouldSkip - - Ticket - ReplicatedFirst: - superclass: Instance - events: - - DefaultLoadingGuiRemoved - - FinishedReplicating - - RemoveDefaultLoadingGuiSignal - properties: [] - ReplicatedStorage: - superclass: Instance - events: [] - properties: [] - ReverbSoundEffect: - superclass: SoundEffect - events: [] - properties: - - DecayTime - - Density - - Diffusion - - DryLevel - - WetLevel - RigidConstraint: - superclass: Constraint - events: [] - properties: [] - RobloxPluginGuiService: - superclass: Instance - events: [] - properties: [] - RobloxReplicatedStorage: - superclass: Instance - events: [] - properties: [] - RocketPropulsion: - superclass: BodyMover - events: - - ReachedTarget - properties: - - CartoonFactor - - MaxSpeed - - MaxThrust - - MaxTorque - - Target - - TargetOffset - - TargetRadius - - ThrustD - - ThrustP - - TurnD - - TurnP - RodConstraint: - superclass: Constraint - events: [] - properties: - - CurrentDistance - - Length - - LimitAngle0 - - LimitAngle1 - - LimitsEnabled - - Thickness - RopeConstraint: - superclass: Constraint - events: [] - properties: - - CurrentDistance - - Length - - Restitution - - Thickness - - WinchEnabled - - WinchForce - - WinchResponsiveness - - WinchSpeed - - WinchTarget - Rotate: - superclass: JointInstance - events: [] - properties: [] - RotateP: - superclass: DynamicRotate - events: [] - properties: [] - RotateV: - superclass: DynamicRotate - events: [] - properties: [] - RotationCurve: - superclass: Instance - events: [] - properties: - - Length - RtMessagingService: - superclass: Instance - events: [] - properties: [] - RunService: - superclass: Instance - events: - - Heartbeat - - PostSimulation - - PreAnimation - - PreRender - - PreSimulation - - RenderStepped - - Stepped - properties: - - ClientGitHash - RunningAverageItemDouble: - superclass: StatsItem - events: [] - properties: [] - RunningAverageItemInt: - superclass: StatsItem - events: [] - properties: [] - RunningAverageTimeIntervalItem: - superclass: StatsItem - events: [] - properties: [] - RuntimeScriptService: - superclass: Instance - events: [] - properties: [] - SafetyService: - superclass: Instance - events: - - ScreenshotContentReady - - ScreenshotUploaded - properties: [] - ScreenGui: - superclass: LayerCollector - events: [] - properties: - - ClipToDeviceSafeArea - - DisplayOrder - - IgnoreGuiInset - - OnTopOfCoreBlur - - SafeAreaCompatibility - - ScreenInsets - ScreenshotHud: - superclass: Instance - events: [] - properties: - - CameraButtonIcon - - CameraButtonPosition - - CloseButtonPosition - - CloseWhenScreenshotTaken - - ExperienceNameOverlayEnabled - - OverlayFont - - UsernameOverlayEnabled - - Visible - Script: - superclass: BaseScript - events: [] - properties: - - Source - ScriptBuilder: - superclass: Instance - events: [] - properties: [] - ScriptChangeService: - superclass: Instance - events: - - ScriptAdded - - ScriptBeingRemoved - - ScriptChanged - - ScriptFullNameChanged - - ScriptSourceChanged - properties: [] - ScriptCloneWatcher: - superclass: Instance - events: [] - properties: [] - ScriptCloneWatcherHelper: - superclass: Instance - events: [] - properties: [] - ScriptContext: - superclass: Instance - events: - - Error - - ErrorDetailed - properties: - - ScriptsDisabled - ScriptDebugger: - superclass: Instance - events: - - BreakpointAdded - - BreakpointRemoved - - EncounteredBreak - - Resuming - - WatchAdded - - WatchRemoved - properties: - - CurrentLine - - IsDebugging - - IsPaused - - Script - ScriptDocument: - superclass: Instance - events: - - SelectionChanged - - ViewportChanged - properties: [] - ScriptEditorService: - superclass: Instance - events: - - TextDocumentDidChange - - TextDocumentDidClose - - TextDocumentDidOpen - properties: [] - ScriptRegistrationService: - superclass: Instance - events: [] - properties: [] - ScriptRuntime: - superclass: Instance - events: [] - properties: [] - ScriptService: - superclass: Instance - events: [] - properties: [] - ScrollingFrame: - superclass: GuiObject - events: [] - properties: - - AbsoluteCanvasSize - - AbsoluteWindowSize - - AutomaticCanvasSize - - BottomImage - - CanvasPosition - - CanvasSize - - ElasticBehavior - - HorizontalBarRect - - HorizontalScrollBarInset - - MaxCanvasPosition - - MidImage - - ScrollBarImageColor3 - - ScrollBarImageTransparency - - ScrollBarThickness - - ScrollVelocity - - ScrollingDirection - - ScrollingEnabled - - TopImage - - VerticalBarRect - - VerticalScrollBarInset - - VerticalScrollBarPosition - Seat: - superclass: Part - events: [] - properties: - - Disabled - - Occupant - Selection: - superclass: Instance - events: - - SelectionChanged - properties: - - ActiveInstance - - SelectionBoxThickness - - SelectionLineThickness - - SelectionThickness - - ShowBoundingBox - SelectionBox: - superclass: InstanceAdornment - events: [] - properties: - - LineThickness - - StudioSelectionBox - - SurfaceColor - - SurfaceColor3 - - SurfaceTransparency - SelectionHighlightManager: - superclass: Instance - events: [] - properties: [] - SelectionLasso: - superclass: GuiBase3d - events: [] - properties: - - Humanoid - SelectionPartLasso: - superclass: SelectionLasso - events: [] - properties: - - Part - SelectionPointLasso: - superclass: SelectionLasso - events: [] - properties: - - Point - SelectionSphere: - superclass: PVAdornment - events: [] - properties: - - SurfaceColor - - SurfaceColor3 - - SurfaceTransparency - SensorBase: - superclass: Instance - events: - - OnSensorOutputChanged - properties: - - UpdateType - ServerReplicator: - superclass: NetworkReplicator - events: [] - properties: [] - ServerScriptService: - superclass: Instance - events: [] - properties: - - LoadStringEnabled - ServerStorage: - superclass: Instance - events: [] - properties: [] - ServiceProvider: - superclass: Instance - events: - - Close - - CloseLate - - ServiceAdded - - ServiceRemoving - properties: [] - ServiceVisibilityService: - superclass: Instance - events: [] - properties: - - VisibleServices - SessionService: - superclass: Instance - events: [] - properties: [] - SharedTableRegistry: - superclass: Instance - events: [] - properties: [] - Shirt: - superclass: Clothing - events: [] - properties: - - ShirtTemplate - ShirtGraphic: - superclass: CharacterAppearance - events: [] - properties: - - Color3 - - Graphic - ShorelineUpgraderService: - superclass: Instance - events: - - Status - properties: [] - SkateboardController: - superclass: Controller - events: - - AxisChanged - properties: - - Steer - - Throttle - SkateboardPlatform: - superclass: Part - events: - - Equipped - - MoveStateChanged - - Unequipped - - equipped - - unequipped - properties: - - Controller - - ControllingHumanoid - - Steer - - StickyWheels - - Throttle - Skin: - superclass: CharacterAppearance - events: [] - properties: - - SkinColor - Sky: - superclass: Instance - events: [] - properties: - - CelestialBodiesShown - - MoonAngularSize - - MoonTextureId - - SkyboxBk - - SkyboxDn - - SkyboxFt - - SkyboxLf - - SkyboxRt - - SkyboxUp - - StarCount - - SunAngularSize - - SunTextureId - SlidingBallConstraint: - superclass: Constraint - events: [] - properties: - - ActuatorType - - CurrentPosition - - LimitsEnabled - - LinearResponsiveness - - LowerLimit - - MotorMaxAcceleration - - MotorMaxForce - - Restitution - - ServoMaxForce - - Size - - Speed - - TargetPosition - - UpperLimit - - Velocity - Smoke: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - Opacity - - RiseVelocity - - Size - - TimeScale - SmoothVoxelsUpgraderService: - superclass: Instance - events: - - Status - properties: [] - Snap: - superclass: JointInstance - events: [] - properties: [] - SnippetService: - superclass: Instance - events: [] - properties: [] - SocialService: - superclass: Instance - events: - - GameInvitePromptClosed - - PromptInviteRequested - properties: [] - SolidModelContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - Sound: - superclass: Instance - events: - - DidLoop - - Ended - - Loaded - - Paused - - Played - - Resumed - - Stopped - properties: - - ChannelCount - - EmitterSize - - IsLoaded - - IsPaused - - IsPlaying - - IsSpatial - - LoopRegion - - Looped - - MaxDistance - - MinDistance - - Pitch - - PlayOnRemove - - PlaybackLoudness - - PlaybackRegion - - PlaybackRegionsEnabled - - PlaybackSpeed - - Playing - - RollOffGain - - RollOffMaxDistance - - RollOffMinDistance - - RollOffMode - - SoundGroup - - SoundId - - TimeLength - - TimePosition - - UsageContextPermission - - Volume - - isPlaying - SoundEffect: - superclass: Instance - events: [] - properties: - - Enabled - - Priority - SoundGroup: - superclass: Instance - events: [] - properties: - - Volume - SoundService: - superclass: Instance - events: - - DeviceListChanged - properties: - - AmbientReverb - - DistanceFactor - - DopplerScale - - RespectFilteringEnabled - - RolloffScale - - VolumetricAudio - Sparkles: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - SparkleColor - - TimeScale - SpawnLocation: - superclass: Part - events: [] - properties: - - AllowTeamChangeOnTouch - - Duration - - Enabled - - Neutral - - TeamColor - SpawnerService: - superclass: Instance - events: [] - properties: [] - Speaker: - superclass: Instance - events: [] - properties: - - ChannelCount - - PlaybackLoudness - - RollOffMaxDistance - - RollOffMinDistance - - RollOffMode - - SoundGroup - - Source - - Volume - SpecialMesh: - superclass: FileMesh - events: [] - properties: - - MeshType - SphereHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Radius - SpotLight: - superclass: Light - events: [] - properties: - - Angle - - Face - - Range - SpringConstraint: - superclass: Constraint - events: [] - properties: - - Coils - - CurrentLength - - Damping - - FreeLength - - LimitsEnabled - - MaxForce - - MaxLength - - MinLength - - Radius - - Stiffness - - Thickness - StackFrame: - superclass: Instance - events: [] - properties: - - FrameId - - FrameName - - FrameType - - Globals - - Line - - Locals - - Populated - - Script - - Upvalues - StandalonePluginScripts: - superclass: Instance - events: [] - properties: [] - StandardPages: - superclass: Pages - events: [] - properties: [] - StarterCharacterScripts: - superclass: StarterPlayerScripts - events: [] - properties: [] - StarterGear: - superclass: Instance - events: [] - properties: [] - StarterGui: - superclass: BasePlayerGui - events: - - CoreGuiChangedSignal - properties: - - ProcessUserInput - - ResetPlayerGuiOnSpawn - - RtlTextSupport - - ScreenOrientation - - ShowDevelopmentGui - - VirtualCursorMode - StarterPack: - superclass: Instance - events: [] - properties: [] - StarterPlayer: - superclass: Instance - events: [] - properties: - - AllowCustomAnimations - - AutoJumpEnabled - - CameraMaxZoomDistance - - CameraMinZoomDistance - - CameraMode - - CharacterJumpHeight - - CharacterJumpPower - - CharacterMaxSlopeAngle - - CharacterUseJumpPower - - CharacterWalkSpeed - - DevCameraOcclusionMode - - DevComputerCameraMovementMode - - DevComputerMovementMode - - DevTouchCameraMovementMode - - DevTouchMovementMode - - EnableDynamicHeads - - EnableMouseLockOption - - GameSettingsAssetIDFace - - GameSettingsAssetIDHead - - GameSettingsAssetIDLeftArm - - GameSettingsAssetIDLeftLeg - - GameSettingsAssetIDPants - - GameSettingsAssetIDRightArm - - GameSettingsAssetIDRightLeg - - GameSettingsAssetIDShirt - - GameSettingsAssetIDTeeShirt - - GameSettingsAssetIDTorso - - GameSettingsAvatar - - GameSettingsR15Collision - - GameSettingsScaleRangeBodyType - - GameSettingsScaleRangeHead - - GameSettingsScaleRangeHeight - - GameSettingsScaleRangeProportion - - GameSettingsScaleRangeWidth - - HealthDisplayDistance - - HumanoidStateMachineMode - - LoadCharacterAppearance - - 'LoadCharacterLayeredClothing ' - - NameDisplayDistance - - UserEmotesEnabled - StarterPlayerScripts: - superclass: Instance - events: [] - properties: [] - Stats: - superclass: Instance - events: [] - properties: - - ContactsCount - - DataReceiveKbps - - DataSendKbps - - HeartbeatTimeMs - - InstanceCount - - MovingPrimitivesCount - - PhysicsReceiveKbps - - PhysicsSendKbps - - PhysicsStepTimeMs - - PrimitivesCount - StatsItem: - superclass: Instance - events: [] - properties: - - DisplayName - Status: - superclass: Model - events: [] - properties: [] - StringValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - Studio: - superclass: Instance - events: - - ThemeChanged - properties: - - '"TODO" Color' - - '"function" Color' - - '"local" Color' - - '"nil" Color' - - '"self" Color' - - Active Color - - Active Hover Over Color - - Always Save Script Changes - - Animate Hover Over - - Auto Clean Empty Line - - Auto Closing Brackets - - Auto Closing Quotes - - Auto Delete Closing Brackets and Quotes - - Auto Indent Rule - - Auto-Recovery Enabled - - Auto-Recovery Interval (Minutes) - - Auto-Recovery Path - - Automatically commit locked scripts when you save or publish to Roblox - - Background Color - - Basic Objects Display Mode - - Bool Color - - Bracket Color - - Built-in Function Color - - Camera Mouse Wheel Speed - - Camera Pan Speed - - Camera Shift Speed - - Camera Speed - - Camera Zoom to Mouse Position - - Clear Output On Start - - CommandBarLocalState - - Comment Color - - Current Line Highlight Color - - Debugger Current Line Color - - Debugger Error Line Color - - DefaultScriptFileDir - - DeprecatedObjectsShown - - Display Team Create toggle when creating a new experience - - DisplayLanguage - - Doc View Code Background Color - - Drag Multiple Parts As Single Part - - Enable Autocomplete - - Enable Autocomplete Doc View - - Enable CoreScript Debugger - - Enable Http Sandboxing - - Enable Internal Beta Features - - Enable Internal Features - - Enable Script Analysis - - Enable Scrollbar Markers - - Enable Signature Help - - Enable Signature Help Doc View - - Enable Temporary Tabs - - Enable Temporary Tabs In Explorer - - Enable Type Hover - - EnableOnTypeAutocomplete - - Error Color - - File > New creates a place with Team Create off - - Find Selection Background Color - - Font - - Format On Paste - - Format On Type - - Function Name Color - - Highlight Current Line - - Highlight Occurances - - Hover Animate Speed - - Hover Box Thickness - - Hover Line Thickness - - Hover Over Color - - IconOverrideDir - - Indent Using Spaces - - Keyword Color - - Line Thickness - - LocalAssetsFolder - - LuaDebuggerEnabled - - LuaDebuggerEnabledAtStartup - - Luau Keyword Color - - Main Volume - - Matching Word Background Color - - Maximum Output Lines - - Menu Item Background Color - - Method Color - - Number Color - - Only Play Audio from Window in Focus - - Operator Color - - Output Font - - Output Layout Mode - - PermissionLevelShown - - Physical Draggers Select Scope By Default - - Pivot Snap To Geometry Color - - PluginDebuggingEnabled - - PluginsDir - - Primary Text Color - - Property Color - - Render Throttle Percentage - - Respect Studio shortcuts when game has focus - - Ruler Color - - Rulers - - RuntimeUndoBehavior - - Script Editor Color Preset - - Script Editor Scrollbar Background Color - - Script Editor Scrollbar Handle Color - - ScriptEditorMenuBorderColor - - ScriptEditorShouldShowPluginMethods - - ScriptTimeoutLength - - Scroll Past Last Line - - Search Content For Core Scripts - - Secondary Text Color - - Select Color - - Select/Hover Color - - Selected Menu Item Background Color - - Selected Text Color - - Selection Background Color - - Selection Box Thickness - - Selection Color - - Selection Highlight Thickness - - Selection Line Thickness - - Server Audio Behavior - - Set Pivot of Imported Parts - - Show Core GUI in Explorer while Playing - - Show Diagnostics Bar - - Show FileSyncService - - Show Hidden Objects in Explorer - - Show Hover Over - - Show Light Guides - - Show Navigation Labels - - Show Navigation Mesh - - Show Pathfinding Links - - Show Plugin GUI Service in Explorer - - Show QT warnings in output - - Show Whitespace - - Show plus button on hover in Explorer - - ShowCorePackagesInExplorer - - Skip Closing Brackets and Quotes - - String Color - - Tab Width - - Text Color - - Text Wrapping - - Theme - - UI Theme - - Use Bounding Box Move Handles - - Warning Color - - Whitespace Color - StudioAssetService: - superclass: Instance - events: - - OnConvertToPackageResult - - OnPublishPackageResult - - OnSaveToRoblox - properties: [] - StudioData: - superclass: Instance - events: [] - properties: - - EnableScriptCollabByDefaultOnLoad - StudioDeviceEmulatorService: - superclass: Instance - events: - - CurrentDeviceIdChanged - - OrientationChanged - - TouchInBoundsChanged - - TouchPositionsChanged - properties: - - HasMultiTouchStarted - - IsMultiTouchEmulationOn - - IsMultiTouchEnabled - - PivotPosition - StudioPublishService: - superclass: Instance - events: - - GameNameUpdated - - GamePublishCancelled - - GamePublishFinished - - OnSaveOrPublishPlaceToRoblox - properties: [] - StudioScriptDebugEventListener: - superclass: Instance - events: [] - properties: [] - StudioSdkService: - superclass: Instance - events: [] - properties: [] - StudioService: - superclass: Instance - events: - - OnImportFromRoblox - - OnOpenGameSettings - - OnOpenManagePackagePlugin - - OnPluginInstalledFromToolbox - - OnPluginInstalledFromWeb - - OnPublishAsPlugin - - OnSaveToRoblox - - PromptTransformPluginCheckEnable - - SaveLocallyAsComplete - properties: - - ActiveScript - - AlignDraggedObjects - - DraggerSolveConstraints - - DrawConstraintsOnTop - - GridSize - - HoverInstance - - InstalledPluginData - - PivotSnapToGeometry - - RotateIncrement - - ShowActiveInstanceHighlight - - ShowConstraintDetails - - StudioLocaleId - - UseLocalSpace - StudioTheme: - superclass: Instance - events: [] - properties: [] - SunRaysEffect: - superclass: PostEffect - events: [] - properties: - - Intensity - - Spread - SurfaceAppearance: - superclass: Instance - events: [] - properties: - - AlphaMode - - ColorMap - - MetalnessMap - - NormalMap - - RoughnessMap - - TexturePack - SurfaceGui: - superclass: SurfaceGuiBase - events: [] - properties: - - AlwaysOnTop - - Brightness - - CanvasSize - - ClipsDescendants - - HorizontalCurvature - - LightInfluence - - PixelsPerStud - - Shape - - SizingMode - - ToolPunchThroughDistance - - ZOffset - SurfaceGuiBase: - superclass: LayerCollector - events: [] - properties: - - Active - - Adornee - - Face - SurfaceLight: - superclass: Light - events: [] - properties: - - Angle - - Face - - Range - SurfaceSelection: - superclass: PartAdornment - events: [] - properties: - - TargetSurface - SwimController: - superclass: ControllerBase - events: [] - properties: - - AccelerationTime - - PitchMaxTorque - - PitchSpeedFactor - - RollMaxTorque - - RollSpeedFactor - SyncScriptBuilder: - superclass: ScriptBuilder - events: [] - properties: - - CoverageInfo - - DebugInfo - - PackAsSource - - RawBytecode - TaskScheduler: - superclass: Instance - events: [] - properties: - - SchedulerDutyCycle - - SchedulerRate - - ThreadPoolConfig - - ThreadPoolSize - Team: - superclass: Instance - events: - - PlayerAdded - - PlayerRemoved - properties: - - AutoAssignable - - AutoColorCharacters - - ChildOrder - - Score - - TeamColor - TeamCreateData: - superclass: Instance - events: [] - properties: [] - TeamCreatePublishService: - superclass: Instance - events: [] - properties: [] - TeamCreateService: - superclass: Instance - events: - - ToggleManageCollaborators - properties: [] - Teams: - superclass: Instance - events: [] - properties: [] - TeleportAsyncResult: - superclass: Instance - events: [] - properties: - - PrivateServerId - - ReservedServerAccessCode - TeleportOptions: - superclass: Instance - events: [] - properties: - - ReservedServerAccessCode - - ServerInstanceId - - ShouldReserveServer - TeleportService: - superclass: Instance - events: - - LocalPlayerArrivedFromTeleport - - MenuTeleportAttempt - - TeleportInitFailed - properties: - - CustomizedTeleportUI - TemporaryCageMeshProvider: - superclass: Instance - events: [] - properties: [] - TemporaryScriptService: - superclass: Instance - events: [] - properties: [] - Terrain: - superclass: BasePart - events: [] - properties: - - Decoration - - IsSmooth - - LastUsedModificationMethod - - MaterialColors - - MaxExtents - - ShorelinesUpgraded - - SmoothVoxelsUpgraded - - WaterColor - - WaterReflectance - - WaterTransparency - - WaterWaveSize - - WaterWaveSpeed - TerrainDetail: - superclass: Instance - events: [] - properties: - - ColorMap - - Face - - MaterialPattern - - MetalnessMap - - NormalMap - - RoughnessMap - - StudsPerTile - TerrainRegion: - superclass: Instance - events: [] - properties: - - IsSmooth - - SizeInCells - TestService: - superclass: Instance - events: - - ServerCollectConditionalResult - - ServerCollectResult - properties: - - AutoRuns - - Description - - ErrorCount - - ExecuteWithStudioRun - - Is30FpsThrottleEnabled - - IsPhysicsEnvironmentalThrottled - - IsSleepAllowed - - NumberOfPlayers - - SimulateSecondsLag - - TestCount - - Timeout - - WarnCount - TextBox: - superclass: GuiObject - events: - - FocusLost - - Focused - - ReturnPressedFromOnScreenKeyboard - properties: - - ClearTextOnFocus - - ContentText - - CursorPosition - - Font - - FontFace - - FontSize - - LineHeight - - ManualFocusRelease - - MaxVisibleGraphemes - - MultiLine - - OverlayNativeInput - - PlaceholderColor3 - - PlaceholderText - - ReturnKeyType - - RichText - - SelectionStart - - ShowNativeInput - - Text - - TextBounds - - TextColor - - TextColor3 - - TextEditable - - TextFits - - TextInputType - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextBoxService: - superclass: Instance - events: [] - properties: [] - TextButton: - superclass: GuiButton - events: [] - properties: - - ContentText - - Font - - FontFace - - FontSize - - LineHeight - - LocalizedText - - MaxVisibleGraphemes - - RichText - - Text - - TextBounds - - TextColor - - TextColor3 - - TextFits - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextChannel: - superclass: Instance - events: - - MessageReceived - properties: [] - TextChatCommand: - superclass: Instance - events: - - Triggered - properties: - - Enabled - - PrimaryAlias - - SecondaryAlias - TextChatConfigurations: - superclass: Instance - events: [] - properties: [] - TextChatMessage: - superclass: Instance - events: [] - properties: - - MessageId - - Metadata - - PrefixText - - Status - - Text - - TextChannel - - TextSource - - Timestamp - TextChatMessageProperties: - superclass: Instance - events: [] - properties: - - PrefixText - - Text - TextChatService: - superclass: Instance - events: - - MessageReceived - - SendingMessage - properties: - - ChatVersion - - CreateDefaultCommands - - CreateDefaultTextChannels - TextFilterResult: - superclass: Instance - events: [] - properties: [] - TextLabel: - superclass: GuiLabel - events: [] - properties: - - ContentText - - Font - - FontFace - - FontSize - - LineHeight - - LocalizedText - - MaxVisibleGraphemes - - RichText - - Text - - TextBounds - - TextColor - - TextColor3 - - TextFits - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextService: - superclass: Instance - events: [] - properties: [] - TextSource: - superclass: Instance - events: [] - properties: - - CanSend - - UserId - Texture: - superclass: Decal - events: [] - properties: - - OffsetStudsU - - OffsetStudsV - - StudsPerTileU - - StudsPerTileV - TextureGuiExperimental: - superclass: LayerCollector - events: [] - properties: - - Size - - TemporaryId - ThirdPartyUserService: - superclass: Instance - events: - - ActiveGamepadAdded - - ActiveGamepadRemoved - - ActiveUserSignedOut - properties: [] - ThreadState: - superclass: Instance - events: [] - properties: - - FrameCount - - Populated - - ThreadId - - ThreadName - TimerService: - superclass: Instance - events: [] - properties: [] - ToastNotificationService: - superclass: Instance - events: [] - properties: [] - Tool: - superclass: BackpackItem - events: - - Activated - - Deactivated - - Equipped - - Unequipped - properties: - - CanBeDropped - - Enabled - - Grip - - GripForward - - GripPos - - GripRight - - GripUp - - ManualActivationOnly - - RequiresHandle - - ToolTip - Torque: - superclass: Constraint - events: [] - properties: - - RelativeTo - - Torque - TorsionSpringConstraint: - superclass: Constraint - events: [] - properties: - - Coils - - CurrentAngle - - Damping - - LimitEnabled - - LimitsEnabled - - MaxAngle - - MaxTorque - - Radius - - Restitution - - Stiffness - TotalCountTimeIntervalItem: - superclass: StatsItem - events: [] - properties: [] - TouchInputService: - superclass: Instance - events: [] - properties: [] - TouchTransmitter: - superclass: Instance - events: [] - properties: [] - TracerService: - superclass: Instance - events: [] - properties: [] - TrackerLodController: - superclass: Instance - events: - - UpdateState - properties: - - AudioMode - - VideoExtrapolationMode - - VideoLodMode - - VideoMode - TrackerStreamAnimation: - superclass: Instance - events: [] - properties: [] - Trail: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - Brightness - - Color - - Enabled - - FaceCamera - - Lifetime - - LightEmission - - LightInfluence - - MaxLength - - MinLength - - Texture - - TextureLength - - TextureMode - - Transparency - - WidthScale - Translator: - superclass: Instance - events: [] - properties: - - LocaleId - TremoloSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Duty - - Frequency - TriangleMeshPart: - superclass: BasePart - events: [] - properties: - - CollisionFidelity - - MeshSize - TrussPart: - superclass: BasePart - events: [] - properties: - - Style - Tween: - superclass: TweenBase - events: [] - properties: - - Instance - - TweenInfo - TweenBase: - superclass: Instance - events: - - Completed - properties: - - PlaybackState - TweenService: - superclass: Instance - events: [] - properties: [] - UGCValidationService: - superclass: Instance - events: [] - properties: [] - UIAspectRatioConstraint: - superclass: UIConstraint - events: [] - properties: - - AspectRatio - - AspectType - - DominantAxis - UIBase: - superclass: Instance - events: [] - properties: [] - UIComponent: - superclass: UIBase - events: [] - properties: [] - UIConstraint: - superclass: UIComponent - events: [] - properties: [] - UICorner: - superclass: UIComponent - events: [] - properties: - - CornerRadius - UIGradient: - superclass: UIComponent - events: [] - properties: - - Color - - Enabled - - Offset - - Rotation - - Transparency - UIGridLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - AbsoluteCellCount - - AbsoluteCellSize - - CellPadding - - CellSize - - FillDirectionMaxCells - - StartCorner - UIGridStyleLayout: - superclass: UILayout - events: [] - properties: - - AbsoluteContentSize - - FillDirection - - HorizontalAlignment - - SortOrder - - VerticalAlignment - UILayout: - superclass: UIComponent - events: [] - properties: [] - UIListLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - Padding - UIPadding: - superclass: UIComponent - events: [] - properties: - - PaddingBottom - - PaddingLeft - - PaddingRight - - PaddingTop - UIPageLayout: - superclass: UIGridStyleLayout - events: - - PageEnter - - PageLeave - - Stopped - properties: - - Animated - - Circular - - CurrentPage - - EasingDirection - - EasingStyle - - GamepadInputEnabled - - Padding - - ScrollWheelInputEnabled - - TouchInputEnabled - - TweenTime - UIScale: - superclass: UIComponent - events: [] - properties: - - Scale - UISizeConstraint: - superclass: UIConstraint - events: [] - properties: - - MaxSize - - MinSize - UIStroke: - superclass: UIComponent - events: [] - properties: - - ApplyStrokeMode - - Color - - Enabled - - LineJoinMode - - Thickness - - Transparency - UITableLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - FillEmptySpaceColumns - - FillEmptySpaceRows - - MajorAxis - - Padding - UITextSizeConstraint: - superclass: UIConstraint - events: [] - properties: - - MaxTextSize - - MinTextSize - UnionOperation: - superclass: PartOperation - events: [] - properties: [] - UniversalConstraint: - superclass: Constraint - events: [] - properties: - - LimitsEnabled - - MaxAngle - - Radius - - Restitution - UnvalidatedAssetService: - superclass: Instance - events: [] - properties: [] - UserGameSettings: - superclass: Instance - events: - - FullscreenChanged - - PerformanceStatsVisibleChanged - - StudioModeChanged - properties: - - AllTutorialsDisabled - - CameraMode - - CameraYInverted - - ChatVisible - - ComputerCameraMovementMode - - ComputerMovementMode - - ControlMode - - DefaultCameraID - - Fullscreen - - GamepadCameraSensitivity - - GraphicsQualityLevel - - HasEverUsedVR - - IsUsingCameraYInverted - - IsUsingGamepadCameraSensitivity - - MasterVolume - - MicroProfilerWebServerEnabled - - MicroProfilerWebServerIP - - MicroProfilerWebServerPort - - MouseSensitivity - - MouseSensitivityFirstPerson - - MouseSensitivityThirdPerson - - OnScreenProfilerEnabled - - OnboardingsCompleted - - PerformanceStatsVisible - - PlayerHeight - - RCCProfilerRecordFrameRate - - RCCProfilerRecordTimeFrame - - RotationType - - SavedQualityLevel - - StartMaximized - - StartScreenPosition - - StartScreenSize - - TouchCameraMovementMode - - TouchMovementMode - - UsedCoreGuiIsVisibleToggle - - UsedCustomGuiIsVisibleToggle - - UsedHideHudShortcut - - VREnabled - - VRPlayMode - - VRRotationIntensity - - VRSafetyBubbleMode - - VRSmoothRotationEnabled - - VignetteEnabled - UserInputService: - superclass: Instance - events: - - DeviceAccelerationChanged - - DeviceGravityChanged - - DeviceRotationChanged - - GamepadConnected - - GamepadDisconnected - - InputBegan - - InputChanged - - InputEnded - - JumpRequest - - LastInputTypeChanged - - PointerAction - - StatusBarTapped - - TextBoxFocusReleased - - TextBoxFocused - - TouchEnded - - TouchLongPress - - TouchMoved - - TouchPan - - TouchPinch - - TouchRotate - - TouchStarted - - TouchSwipe - - TouchTap - - TouchTapInWorld - - UserCFrameChanged - - WindowFocusReleased - - WindowFocused - properties: - - AccelerometerEnabled - - BottomBarSize - - GamepadEnabled - - GazeSelectionEnabled - - GyroscopeEnabled - - KeyboardEnabled - - LegacyInputEventsEnabled - - ModalEnabled - - MouseBehavior - - MouseDeltaSensitivity - - MouseEnabled - - MouseIcon - - MouseIconEnabled - - NavBarSize - - OnScreenKeyboardAnimationDuration - - OnScreenKeyboardPosition - - OnScreenKeyboardSize - - OnScreenKeyboardVisible - - OverrideMouseIconBehavior - - RightBarSize - - StatusBarSize - - TouchEnabled - - UserHeadCFrame - - VREnabled - UserService: - superclass: Instance - events: [] - properties: [] - UserSettings: - superclass: GenericSettings - events: [] - properties: [] - UserStorageService: - superclass: LocalStorageService - events: [] - properties: [] - VRService: - superclass: Instance - events: - - NavigationRequested - - TouchpadModeChanged - - UserCFrameChanged - - UserCFrameEnabled - properties: - - AutomaticScaling - - DidPointerHit - - FadeOutViewOnCollision - - GuiInputUserCFrame - - LaserDistance - - PointerHitCFrame - - VRDeviceAvailable - - VRDeviceName - - VREnabled - - VRSessionState - ValueBase: - superclass: Instance - events: [] - properties: [] - Vector3Curve: - superclass: Instance - events: [] - properties: [] - Vector3Value: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - VectorForce: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - Force - - RelativeTo - VehicleController: - superclass: Controller - events: [] - properties: [] - VehicleSeat: - superclass: BasePart - events: [] - properties: - - AreHingesDetected - - Disabled - - HeadsUpDisplay - - MaxSpeed - - Occupant - - Steer - - SteerFloat - - Throttle - - ThrottleFloat - - Torque - - TurnSpeed - VelocityMotor: - superclass: JointInstance - events: [] - properties: - - CurrentAngle - - DesiredAngle - - Hole - - MaxVelocity - VersionControlService: - superclass: Instance - events: [] - properties: - - ScriptCollabEnabled - VideoCaptureService: - superclass: Instance - events: - - DevicesChanged - - Error - - Started - - Stopped - properties: - - Active - - CameraID - VideoFrame: - superclass: GuiObject - events: - - DidLoop - - Ended - - Loaded - - Paused - - Played - properties: - - IsLoaded - - Looped - - Playing - - Resolution - - TimeLength - - TimePosition - - Video - - Volume - ViewportFrame: - superclass: GuiObject - events: [] - properties: - - Ambient - - CurrentCamera - - ImageColor3 - - ImageTransparency - - IsMirrored - - LightColor - - LightDirection - VirtualInputManager: - superclass: Instance - events: - - PlaybackCompleted - - RecordingCompleted - properties: - - AdditionalLuaState - VirtualUser: - superclass: Instance - events: [] - properties: [] - VisibilityCheckDispatcher: - superclass: Instance - events: [] - properties: [] - VisibilityService: - superclass: Instance - events: [] - properties: [] - Visit: - superclass: Instance - events: [] - properties: [] - VoiceChatInternal: - superclass: Instance - events: - - LocalPlayerModerated - - ParticipantsStateChanged - - PlayerMicActivitySignalChange - - StateChanged - properties: - - VoiceChatState - VoiceChatService: - superclass: Instance - events: [] - properties: - - EnableDefaultVoice - - VoiceChatEnabledForPlaceOnRcc - - VoiceChatEnabledForUniverseOnRcc - VoiceSource: - superclass: Instance - events: [] - properties: - - UserId - WedgePart: - superclass: FormFactorPart - events: [] - properties: [] - Weld: - superclass: JointInstance - events: [] - properties: [] - WeldConstraint: - superclass: Instance - events: [] - properties: - - Active - - Enabled - - Part0 - - Part1 - WireframeHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Scale - Workspace: - superclass: WorldRoot - events: - - PersistentLoaded - properties: - - AllowThirdPartySales - - ClientAnimatorThrottling - - CurrentCamera - - DistributedGameTime - - FallenPartsDestroyHeight - - FilteringEnabled - - GlobalWind - - Gravity - - HumanoidOnlySetCollisionsOnStateChange - - InterpolationThrottling - - MeshPartHeadsAndAccessories - - PhysicsSteppingMethod - - RejectCharacterDeletions - - ReplicateInstanceDestroySetting - - Retargeting - - SignalBehavior - - StreamOutBehavior - - StreamingEnabled - - StreamingIntegrityMode - - StreamingMinRadius - - StreamingTargetRadius - - Terrain - - TouchesUseCollisionGroups - WorldModel: - superclass: WorldRoot - events: [] - properties: [] - WorldRoot: - superclass: Model - events: [] - properties: [] - WrapLayer: - superclass: BaseWrap - events: [] - properties: - - AutoSkin - - BindOffset - - Color - - DebugMode - - Enabled - - Order - - Puffiness - - ReferenceMeshId - - ReferenceOrigin - - ReferenceOriginWorld - - ShrinkFactor - WrapTarget: - superclass: BaseWrap - events: [] - properties: - - Color - - DebugMode - - Stiffness diff --git a/Modules/RobloxControls/selene.toml b/Modules/RobloxControls/selene.toml deleted file mode 100644 index 1f1e170..0000000 --- a/Modules/RobloxControls/selene.toml +++ /dev/null @@ -1 +0,0 @@ -std = "roblox" \ No newline at end of file diff --git a/Modules/RobloxControls/wally.toml b/Modules/RobloxControls/wally.toml deleted file mode 100644 index 8845d57..0000000 --- a/Modules/RobloxControls/wally.toml +++ /dev/null @@ -1,19 +0,0 @@ -[package] -name = "4x8matrix/roblox-controls" -version = "0.1.0" -realm = "shared" -registry = "https://github.com/UpliftGames/wally-index" -licence = "MIT" -authors = ["AsynchronousMatrix"] - -description = "A simple luau package to manipulate Roblox CoreGui & Controls." - -exclude = ["**"] -include = ["Source", "Source/*", "default.project.json", "wally.toml"] - -[dev-dependencies] -TestEz = "roblox/testez@0.4.1" -EmoticonReporter = "4x8matrix/emoticon-reporter@1.0.0" - -[dependencies] -Promise = "evaera/promise@4.x.x" \ No newline at end of file diff --git a/Modules/Runtime/Source/init.luau b/Modules/Runtime/Source/init.luau deleted file mode 100644 index 9733c05..0000000 --- a/Modules/Runtime/Source/init.luau +++ /dev/null @@ -1,220 +0,0 @@ ---[=[ - @class Runtime - - Runtime is a simple wally package that helps to "initialize" core game modules. Ideally helping to cut down the "loader" script size and improve the - look of the loader script. - - This package was inspired by sleitnicks 'Loader' class, please go check it out! - - https://sleitnick.github.io/RbxUtil/api/Loader -]=] -local Runtime = {} - -Runtime.Public = {} -Runtime.Private = {} - -Runtime.Private.FastFlags = {} - ---[=[ - @method RequireChildren - @within Runtime - - @param parent Instance - @param middlewareFn (module: ModuleScript, content: { [any]: any }) -> { [any]: any } - - @return { { [any]: any } } - - A simple function that will iterate over a "Parent" instance's children and require all modules. This module will then return an array, containing the result of each `require` call - - ```lua - local Runtime = require(ReplicatedStorage.Packages.Runtime) - - Runtime:RequireChildren(script.Parent.Controllers, function(module: ModuleScript, moduleContent: { [any]: any }) - print(`Loaded module '{module.Name}'`) - - return moduleContent - end) - ``` -]=] -function Runtime.Public.RequireChildren(self: Runtime, parent: Instance, middlewareFn: Middleware?) - local children = {} - - for _, object in parent:GetChildren() do - if not object:IsA("ModuleScript") then - continue - end - - local requiredObject = require(object) - - if middlewareFn then - requiredObject = middlewareFn(object, requiredObject) - end - - table.insert(children, requiredObject) - end - - return children -end - ---[=[ - @method RequireDescendants - @within Runtime - - @param parent Instance - @param middlewareFn (module: ModuleScript, content: { [any]: any }) -> { [any]: any } - - @return { { [any]: any } } - - A simple function that will iterate over a "Parent" instance's descendants and require all modules. This module will then return an array, containing the result of each `require` call - - ```lua - local Runtime = require(ReplicatedStorage.Packages.Runtime) - - Runtime:RequireDescendants(script.Parent, function(module: ModuleScript, moduleContent: { [any]: any }) - print(`Loaded module '{module.Name}'`) - - return moduleContent - end) - ``` -]=] -function Runtime.Public.RequireDescendants(self: Runtime, parent: Instance, middlewareFn: Middleware?) - local descendants = {} - - for _, object in parent:GetDescendants() do - if not object:IsA("ModuleScript") then - continue - end - - local requiredObject = require(object) - - if middlewareFn then - requiredObject = middlewareFn(object, requiredObject) - end - - table.insert(descendants, requiredObject) - end - - return descendants -end - ---[=[ - @method CallMethodOn - @within Runtime - - @param modules { { [any]: any } } - @param methodName string - @param arguments ... - - A simple function that will call a method on an array of tables. Useful when used in combination with `RequireDescendants`/`RequireChildren` calls. - - ```lua - local Runtime = require(ReplicatedStorage.Packages.Runtime) - - local gameConstants = { - ... - } - - -- require all modules under the 'Controllers' instance, call 'OnInit' - -- function in each module, if it exists, with the parameter of 'GameConstants! - - Runtime:CallMethodOn(Runtime:RequireChildren(script.Parent.Controllers), "OnInit", gameConstants) - ``` -]=] -function Runtime.Public.CallMethodOn(self: Runtime, modules: { [any]: any }, methodName: string, ...) - for _, module in modules do - if not module[methodName] then - continue - end - - module[methodName](module, ...) - end -end - ---[=[ - @method CallSpawnedMethodOn - @within Runtime - - @since 1.0.0 - - @param modules { { [any]: any } } - @param methodName string - @param arguments ... - - A simple function that will spawn a new function to call a method on an array of tables. Useful when used in combination with `RequireDescendants`/`RequireChildren` calls. - - ```lua - local Runtime = require(ReplicatedStorage.Packages.Runtime) - - local gameConstants = { - ... - } - - -- require all modules under the 'Controllers' instance, call 'OnInit' - -- function in each module, if it exists, with the parameter of 'GameConstants! - - Runtime:CallSpawnedMethodOn(Runtime:RequireChildren(script.Parent.Controllers), "OnInit", gameConstants) - ``` -]=] -function Runtime.Public.CallSpawnedMethodOn(self: Runtime, modules: { [any]: any }, methodName: string, ...) - for _, module in modules do - if not module[methodName] then - continue - end - - task.spawn(module[methodName], module, ...) - end -end - ---[=[ - @method SetFFValue - @within Runtime - - @param ffName string - @param value any - - A simple method to allow the developer to set runtime variables, useful when setting/getting metadata for the Runtime of a game. - - ```lua - local Runtime = require(ReplicatedStorage.Packages.Runtime) - - Runtime:RequireChildren(script.Parent.Controllers) - Runtime:RequireChildren(script.Parent.Cameras) - Runtime:RequireChildren(script.Parent.Components) - - Runtime:SetFFValue("IsLoaded", true) - Runtime:SetFFValue("GameVersion", "0.1.0") - ``` -]=] -function Runtime.Public.SetFFValue(self: Runtime, ffName: string, value: any) - Runtime.Private.FastFlags[ffName] = value -end - ---[=[ - @method GetFFValue - @within Runtime - - @param ffName string - - Fetch the value of a fast flag set by a different script. - - ```lua - local Runtime = require(ReplicatedStorage.Packages.Runtime) - - local Module = {} - - function Module.OnInit() - -- GameVersion is set by the loader script. - - Module.GameVersion = Runtime:GetFFValue("GameVersion") - end - - return Module - ``` -]=] -function Runtime.Public.GetFFValue(self: Runtime, ffName: string) - return Runtime.Private.FastFlags[ffName] -end - -export type Runtime = typeof(Runtime.Public) -export type Middleware = (module: ModuleScript, content: { [any]: any }) -> { [any]: any } - -return Runtime.Public diff --git a/Modules/Runtime/Tests/Development.server.luau b/Modules/Runtime/Tests/Development.server.luau deleted file mode 100644 index 4975565..0000000 --- a/Modules/Runtime/Tests/Development.server.luau +++ /dev/null @@ -1,12 +0,0 @@ -local ReplicatedStorage = game:GetService("ReplicatedStorage") - -local Runtime = require(ReplicatedStorage.Packages.Runtime) - -Runtime:CallMethodOn( - Runtime:RequireChildren(script.Parent.Services, function(object: ModuleScript, module: { [any]: any }) - warn("Loaded", object) - - return module - end), - "OnInit" -) diff --git a/Modules/Runtime/Tests/Services/ServiceExample.luau b/Modules/Runtime/Tests/Services/ServiceExample.luau deleted file mode 100644 index ce6caec..0000000 --- a/Modules/Runtime/Tests/Services/ServiceExample.luau +++ /dev/null @@ -1,9 +0,0 @@ -local Service = {} - -function Service.OnInit(self: Service) - print("Service 'OnInit' called!") -end - -export type Service = typeof(Service) - -return Service diff --git a/Modules/Runtime/aftman.toml b/Modules/Runtime/aftman.toml deleted file mode 100644 index 349f6b9..0000000 --- a/Modules/Runtime/aftman.toml +++ /dev/null @@ -1,9 +0,0 @@ -# This file lists tools managed by Aftman, a cross-platform toolchain manager. -# For more information, see https://github.com/LPGhatguy/aftman - -# To add a new tool, add an entry to this table. - -[tools] -rojo = "rojo-rbx/rojo@7.3.0" -selene = "Kampfkarren/selene@0.25.0" -wally = "UpliftGames/wally@0.3.2" \ No newline at end of file diff --git a/Modules/Runtime/default.project.json b/Modules/Runtime/default.project.json deleted file mode 100644 index de894d7..0000000 --- a/Modules/Runtime/default.project.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "name": "Runtime", - "tree": { - "$path": "Source" - } -} \ No newline at end of file diff --git a/Modules/Runtime/development.project.json b/Modules/Runtime/development.project.json deleted file mode 100644 index c960ac8..0000000 --- a/Modules/Runtime/development.project.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "name": "runtime", - "tree": { - "$className": "DataModel", - - "Players": { - "$className": "Players", - "$properties": { - "CharacterAutoLoads": false - } - }, - - "ReplicatedStorage": { - "$className": "ReplicatedStorage", - "$ignoreUnknownInstances": true, - - "Packages": { - "$className": "Folder", - "$path": "Packages", - - "Runtime": { - "$path": "Source" - } - }, - - "DevPackages": { - "$className": "Folder", - "$path": "DevPackages" - } - }, - - "ServerScriptService": { - "$className": "ServerScriptService", - "$ignoreUnknownInstances": true, - "$path": "Tests" - } - } -} \ No newline at end of file diff --git a/Modules/Runtime/roblox.yml b/Modules/Runtime/roblox.yml deleted file mode 100644 index e4089d3..0000000 --- a/Modules/Runtime/roblox.yml +++ /dev/null @@ -1,16959 +0,0 @@ -# This file was @generated by generate-roblox-std at 2023-04-11 16:38:39.388332415 +01:00 -base: luau -name: roblox -globals: - Axes.new: - args: - - type: '...' - must_use: true - BrickColor.Black: - args: [] - must_use: true - BrickColor.Blue: - args: [] - must_use: true - BrickColor.DarkGray: - args: [] - must_use: true - BrickColor.Gray: - args: [] - must_use: true - BrickColor.Green: - args: [] - must_use: true - BrickColor.Red: - args: [] - must_use: true - BrickColor.White: - args: [] - must_use: true - BrickColor.Yellow: - args: [] - must_use: true - BrickColor.new: - args: - - type: any - - required: false - type: number - - required: false - type: number - must_use: true - BrickColor.palette: - args: - - type: number - must_use: true - BrickColor.random: - args: [] - must_use: true - CFrame.Angles: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - CFrame.fromAxisAngle: - args: - - type: - display: Vector3 - - type: number - must_use: true - CFrame.fromEulerAngles: - args: - - type: number - - type: number - - type: number - - required: false - type: - display: RotationOrder - must_use: true - CFrame.fromEulerAnglesXYZ: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.fromEulerAnglesYXZ: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.fromMatrix: - args: - - type: - display: Vector3 - - type: - display: Vector3 - - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - CFrame.fromOrientation: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.identity: - property: read-only - CFrame.lookAt: - args: - - type: - display: Vector3 - - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - CFrame.new: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - CatalogSearchParams.new: - args: [] - must_use: true - Color3.fromHSV: - args: - - type: number - - type: number - - type: number - must_use: true - Color3.fromHex: - args: - - type: string - must_use: true - Color3.fromRGB: - args: - - type: number - - type: number - - type: number - must_use: true - Color3.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Color3.toHSV: - args: - - type: - display: Color3 - must_use: true - ColorSequence.new: - args: - - type: any - - required: false - type: - display: Color3 - must_use: true - ColorSequenceKeypoint.new: - args: - - type: number - - type: - display: Color3 - must_use: true - DateTime.fromIsoDate: - args: - - type: string - must_use: true - DateTime.fromLocalTime: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - DateTime.fromUniversalTime: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - DateTime.fromUnixTimestamp: - args: - - type: number - must_use: true - DateTime.fromUnixTimestampMillis: - args: - - type: number - must_use: true - DateTime.now: - args: [] - must_use: true - DebuggerManager: - args: [] - must_use: true - DockWidgetPluginGuiInfo.new: - args: - - required: false - type: - display: InitialDockState - - required: false - type: bool - - required: false - type: bool - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Enum.AccessoryType.Back: - struct: EnumItem - Enum.AccessoryType.DressSkirt: - struct: EnumItem - Enum.AccessoryType.Eyebrow: - struct: EnumItem - Enum.AccessoryType.Eyelash: - struct: EnumItem - Enum.AccessoryType.Face: - struct: EnumItem - Enum.AccessoryType.Front: - struct: EnumItem - Enum.AccessoryType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AccessoryType.Hair: - struct: EnumItem - Enum.AccessoryType.Hat: - struct: EnumItem - Enum.AccessoryType.Jacket: - struct: EnumItem - Enum.AccessoryType.LeftShoe: - struct: EnumItem - Enum.AccessoryType.Neck: - struct: EnumItem - Enum.AccessoryType.Pants: - struct: EnumItem - Enum.AccessoryType.RightShoe: - struct: EnumItem - Enum.AccessoryType.Shirt: - struct: EnumItem - Enum.AccessoryType.Shorts: - struct: EnumItem - Enum.AccessoryType.Shoulder: - struct: EnumItem - Enum.AccessoryType.Sweater: - struct: EnumItem - Enum.AccessoryType.TShirt: - struct: EnumItem - Enum.AccessoryType.TeeShirt: - struct: EnumItem - deprecated: - message: Enum.AccessoryType.TeeShirt was replaced with Enum.AccessoryType.TShirt - replace: - - Enum.AccessoryType.TShirt - Enum.AccessoryType.Unknown: - struct: EnumItem - Enum.AccessoryType.Waist: - struct: EnumItem - Enum.ActionType.Draw: - struct: EnumItem - Enum.ActionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActionType.Lose: - struct: EnumItem - Enum.ActionType.Nothing: - struct: EnumItem - Enum.ActionType.Pause: - struct: EnumItem - Enum.ActionType.Win: - struct: EnumItem - Enum.ActuatorRelativeTo.Attachment0: - struct: EnumItem - Enum.ActuatorRelativeTo.Attachment1: - struct: EnumItem - Enum.ActuatorRelativeTo.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActuatorRelativeTo.World: - struct: EnumItem - Enum.ActuatorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActuatorType.Motor: - struct: EnumItem - Enum.ActuatorType.None: - struct: EnumItem - Enum.ActuatorType.Servo: - struct: EnumItem - Enum.AdPortalStatus.Active: - struct: EnumItem - Enum.AdPortalStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdPortalStatus.Inactive: - struct: EnumItem - Enum.AdPortalStatus.Invalid: - struct: EnumItem - Enum.AdPortalType.Forward: - struct: EnumItem - Enum.AdPortalType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdPortalType.Return: - struct: EnumItem - Enum.AdShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdShape.HorizontalRectangle: - struct: EnumItem - Enum.AdTeleportMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdTeleportMethod.InGameMenuBackButton: - struct: EnumItem - Enum.AdTeleportMethod.PortalForward: - struct: EnumItem - Enum.AdTeleportMethod.PortalReturn: - struct: EnumItem - Enum.AdTeleportMethod.UIBackButton: - struct: EnumItem - Enum.AdTeleportMethod.Undefined: - struct: EnumItem - Enum.AdUnitStatus.Active: - struct: EnumItem - Enum.AdUnitStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdUnitStatus.Inactive: - struct: EnumItem - Enum.AdornCullingMode.Automatic: - struct: EnumItem - Enum.AdornCullingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdornCullingMode.Never: - struct: EnumItem - Enum.AlignType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AlignType.Parallel: - struct: EnumItem - Enum.AlignType.Perpendicular: - struct: EnumItem - Enum.AlphaMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AlphaMode.Overlay: - struct: EnumItem - Enum.AlphaMode.Transparency: - struct: EnumItem - Enum.AnalyticsEconomyAction.Acquire: - struct: EnumItem - Enum.AnalyticsEconomyAction.Default: - struct: EnumItem - Enum.AnalyticsEconomyAction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnalyticsEconomyAction.Spend: - struct: EnumItem - Enum.AnalyticsLogLevel.Debug: - struct: EnumItem - Enum.AnalyticsLogLevel.Error: - struct: EnumItem - Enum.AnalyticsLogLevel.Fatal: - struct: EnumItem - Enum.AnalyticsLogLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnalyticsLogLevel.Information: - struct: EnumItem - Enum.AnalyticsLogLevel.Trace: - struct: EnumItem - Enum.AnalyticsLogLevel.Warning: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Abandon: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Begin: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Complete: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Default: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Fail: - struct: EnumItem - Enum.AnalyticsProgressionStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnimationPriority.Action: - struct: EnumItem - Enum.AnimationPriority.Action2: - struct: EnumItem - Enum.AnimationPriority.Action3: - struct: EnumItem - Enum.AnimationPriority.Action4: - struct: EnumItem - Enum.AnimationPriority.Core: - struct: EnumItem - Enum.AnimationPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnimationPriority.Idle: - struct: EnumItem - Enum.AnimationPriority.Movement: - struct: EnumItem - Enum.AnimatorRetargetingMode.Default: - struct: EnumItem - Enum.AnimatorRetargetingMode.Disabled: - struct: EnumItem - Enum.AnimatorRetargetingMode.Enabled: - struct: EnumItem - Enum.AnimatorRetargetingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellActionType.AvatarEditorPageLoaded: - struct: EnumItem - Enum.AppShellActionType.GamePageLoaded: - struct: EnumItem - Enum.AppShellActionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellActionType.HomePageLoaded: - struct: EnumItem - Enum.AppShellActionType.None: - struct: EnumItem - Enum.AppShellActionType.OpenApp: - struct: EnumItem - Enum.AppShellActionType.ReadConversation: - struct: EnumItem - Enum.AppShellActionType.TapAvatarTab: - struct: EnumItem - Enum.AppShellActionType.TapChatTab: - struct: EnumItem - Enum.AppShellActionType.TapConversationEntry: - struct: EnumItem - Enum.AppShellActionType.TapGamePageTab: - struct: EnumItem - Enum.AppShellActionType.TapHomePageTab: - struct: EnumItem - Enum.AppShellFeature.AvatarEditor: - struct: EnumItem - Enum.AppShellFeature.Chat: - struct: EnumItem - Enum.AppShellFeature.GamePage: - struct: EnumItem - Enum.AppShellFeature.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellFeature.HomePage: - struct: EnumItem - Enum.AppShellFeature.Landing: - struct: EnumItem - Enum.AppShellFeature.More: - struct: EnumItem - Enum.AppShellFeature.None: - struct: EnumItem - Enum.AppUpdateStatus.Available: - struct: EnumItem - Enum.AppUpdateStatus.Failed: - struct: EnumItem - Enum.AppUpdateStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppUpdateStatus.NotAvailable: - struct: EnumItem - Enum.AppUpdateStatus.NotSupported: - struct: EnumItem - Enum.AppUpdateStatus.Unknown: - struct: EnumItem - Enum.ApplyStrokeMode.Border: - struct: EnumItem - Enum.ApplyStrokeMode.Contextual: - struct: EnumItem - Enum.ApplyStrokeMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AspectType.FitWithinMaxSize: - struct: EnumItem - Enum.AspectType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AspectType.ScaleWithParentSize: - struct: EnumItem - Enum.AssetFetchStatus.Failure: - struct: EnumItem - Enum.AssetFetchStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AssetFetchStatus.Loading: - struct: EnumItem - Enum.AssetFetchStatus.None: - struct: EnumItem - Enum.AssetFetchStatus.Success: - struct: EnumItem - Enum.AssetFetchStatus.TimedOut: - struct: EnumItem - Enum.AssetType.Animation: - struct: EnumItem - Enum.AssetType.Audio: - struct: EnumItem - Enum.AssetType.BackAccessory: - struct: EnumItem - Enum.AssetType.Badge: - struct: EnumItem - Enum.AssetType.ClimbAnimation: - struct: EnumItem - Enum.AssetType.DeathAnimation: - struct: EnumItem - Enum.AssetType.Decal: - struct: EnumItem - Enum.AssetType.DressSkirtAccessory: - struct: EnumItem - Enum.AssetType.DynamicHead: - struct: EnumItem - Enum.AssetType.EarAccessory: - struct: EnumItem - Enum.AssetType.EmoteAnimation: - struct: EnumItem - Enum.AssetType.EyeAccessory: - struct: EnumItem - Enum.AssetType.EyebrowAccessory: - struct: EnumItem - Enum.AssetType.EyelashAccessory: - struct: EnumItem - Enum.AssetType.Face: - struct: EnumItem - Enum.AssetType.FaceAccessory: - struct: EnumItem - Enum.AssetType.FallAnimation: - struct: EnumItem - Enum.AssetType.FontFamily: - struct: EnumItem - Enum.AssetType.FrontAccessory: - struct: EnumItem - Enum.AssetType.GamePass: - struct: EnumItem - Enum.AssetType.Gear: - struct: EnumItem - Enum.AssetType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AssetType.HairAccessory: - struct: EnumItem - Enum.AssetType.Hat: - struct: EnumItem - Enum.AssetType.Head: - struct: EnumItem - Enum.AssetType.IdleAnimation: - struct: EnumItem - Enum.AssetType.Image: - struct: EnumItem - Enum.AssetType.JacketAccessory: - struct: EnumItem - Enum.AssetType.JumpAnimation: - struct: EnumItem - Enum.AssetType.LeftArm: - struct: EnumItem - Enum.AssetType.LeftLeg: - struct: EnumItem - Enum.AssetType.LeftShoeAccessory: - struct: EnumItem - Enum.AssetType.Lua: - struct: EnumItem - Enum.AssetType.Mesh: - struct: EnumItem - Enum.AssetType.MeshPart: - struct: EnumItem - Enum.AssetType.Model: - struct: EnumItem - Enum.AssetType.MoodAnimation: - struct: EnumItem - Enum.AssetType.NeckAccessory: - struct: EnumItem - Enum.AssetType.Package: - struct: EnumItem - Enum.AssetType.Pants: - struct: EnumItem - Enum.AssetType.PantsAccessory: - struct: EnumItem - Enum.AssetType.Place: - struct: EnumItem - Enum.AssetType.Plugin: - struct: EnumItem - Enum.AssetType.PoseAnimation: - struct: EnumItem - Enum.AssetType.RightArm: - struct: EnumItem - Enum.AssetType.RightLeg: - struct: EnumItem - Enum.AssetType.RightShoeAccessory: - struct: EnumItem - Enum.AssetType.RunAnimation: - struct: EnumItem - Enum.AssetType.Shirt: - struct: EnumItem - Enum.AssetType.ShirtAccessory: - struct: EnumItem - Enum.AssetType.ShortsAccessory: - struct: EnumItem - Enum.AssetType.ShoulderAccessory: - struct: EnumItem - Enum.AssetType.SweaterAccessory: - struct: EnumItem - Enum.AssetType.SwimAnimation: - struct: EnumItem - Enum.AssetType.TShirt: - struct: EnumItem - Enum.AssetType.TShirtAccessory: - struct: EnumItem - Enum.AssetType.TeeShirt: - struct: EnumItem - deprecated: - message: Enum.AssetType.TeeShirt was replaced with Enum.AssetType.TShirt - replace: - - Enum.AssetType.TShirt - Enum.AssetType.TeeShirtAccessory: - struct: EnumItem - deprecated: - message: Enum.AssetType.TeeShirtAccessory was replaced with Enum.AssetType.TShirtAccessory - replace: - - Enum.AssetType.TShirtAccessory - Enum.AssetType.Torso: - struct: EnumItem - Enum.AssetType.Video: - struct: EnumItem - Enum.AssetType.WaistAccessory: - struct: EnumItem - Enum.AssetType.WalkAnimation: - struct: EnumItem - Enum.AssetTypeVerification.Always: - struct: EnumItem - Enum.AssetTypeVerification.ClientOnly: - struct: EnumItem - Enum.AssetTypeVerification.Default: - struct: EnumItem - Enum.AssetTypeVerification.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AudioSubType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AudioSubType.Music: - struct: EnumItem - Enum.AudioSubType.SoundEffect: - struct: EnumItem - Enum.AutoIndentRule.Absolute: - struct: EnumItem - Enum.AutoIndentRule.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AutoIndentRule.Off: - struct: EnumItem - Enum.AutoIndentRule.Relative: - struct: EnumItem - Enum.AutomaticSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AutomaticSize.None: - struct: EnumItem - Enum.AutomaticSize.X: - struct: EnumItem - Enum.AutomaticSize.XY: - struct: EnumItem - Enum.AutomaticSize.Y: - struct: EnumItem - Enum.AvatarAssetType.BackAccessory: - struct: EnumItem - Enum.AvatarAssetType.ClimbAnimation: - struct: EnumItem - Enum.AvatarAssetType.DressSkirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.DynamicHead: - struct: EnumItem - Enum.AvatarAssetType.EmoteAnimation: - struct: EnumItem - Enum.AvatarAssetType.EyebrowAccessory: - struct: EnumItem - Enum.AvatarAssetType.EyelashAccessory: - struct: EnumItem - Enum.AvatarAssetType.Face: - struct: EnumItem - Enum.AvatarAssetType.FaceAccessory: - struct: EnumItem - Enum.AvatarAssetType.FallAnimation: - struct: EnumItem - Enum.AvatarAssetType.FrontAccessory: - struct: EnumItem - Enum.AvatarAssetType.Gear: - struct: EnumItem - Enum.AvatarAssetType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarAssetType.HairAccessory: - struct: EnumItem - Enum.AvatarAssetType.Hat: - struct: EnumItem - Enum.AvatarAssetType.Head: - struct: EnumItem - Enum.AvatarAssetType.IdleAnimation: - struct: EnumItem - Enum.AvatarAssetType.JacketAccessory: - struct: EnumItem - Enum.AvatarAssetType.JumpAnimation: - struct: EnumItem - Enum.AvatarAssetType.LeftArm: - struct: EnumItem - Enum.AvatarAssetType.LeftLeg: - struct: EnumItem - Enum.AvatarAssetType.LeftShoeAccessory: - struct: EnumItem - Enum.AvatarAssetType.MoodAnimation: - struct: EnumItem - Enum.AvatarAssetType.NeckAccessory: - struct: EnumItem - Enum.AvatarAssetType.Pants: - struct: EnumItem - Enum.AvatarAssetType.PantsAccessory: - struct: EnumItem - Enum.AvatarAssetType.RightArm: - struct: EnumItem - Enum.AvatarAssetType.RightLeg: - struct: EnumItem - Enum.AvatarAssetType.RightShoeAccessory: - struct: EnumItem - Enum.AvatarAssetType.RunAnimation: - struct: EnumItem - Enum.AvatarAssetType.Shirt: - struct: EnumItem - Enum.AvatarAssetType.ShirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.ShortsAccessory: - struct: EnumItem - Enum.AvatarAssetType.ShoulderAccessory: - struct: EnumItem - Enum.AvatarAssetType.SweaterAccessory: - struct: EnumItem - Enum.AvatarAssetType.SwimAnimation: - struct: EnumItem - Enum.AvatarAssetType.TShirt: - struct: EnumItem - Enum.AvatarAssetType.TShirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.TeeShirtAccessory: - struct: EnumItem - deprecated: - message: Enum.AvatarAssetType.TeeShirtAccessory was replaced with Enum.AvatarAssetType.TShirtAccessory - replace: - - Enum.AvatarAssetType.TShirtAccessory - Enum.AvatarAssetType.Torso: - struct: EnumItem - Enum.AvatarAssetType.WaistAccessory: - struct: EnumItem - Enum.AvatarAssetType.WalkAnimation: - struct: EnumItem - Enum.AvatarContextMenuOption.Chat: - struct: EnumItem - Enum.AvatarContextMenuOption.Emote: - struct: EnumItem - Enum.AvatarContextMenuOption.Friend: - struct: EnumItem - Enum.AvatarContextMenuOption.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarContextMenuOption.InspectMenu: - struct: EnumItem - Enum.AvatarItemType.Asset: - struct: EnumItem - Enum.AvatarItemType.Bundle: - struct: EnumItem - Enum.AvatarItemType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarPromptResult.Failed: - struct: EnumItem - Enum.AvatarPromptResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarPromptResult.PermissionDenied: - struct: EnumItem - Enum.AvatarPromptResult.Success: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.Closeup: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.FullBody: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Axis.Back: - struct: EnumItem - deprecated: - message: Enum.Axis.Back was replaced with Enum.Axis.Z - replace: - - Enum.Axis.Z - Enum.Axis.Bottom: - struct: EnumItem - deprecated: - message: Enum.Axis.Bottom was replaced with Enum.Axis.Y - replace: - - Enum.Axis.Y - Enum.Axis.Front: - struct: EnumItem - deprecated: - message: Enum.Axis.Front was replaced with Enum.Axis.Z - replace: - - Enum.Axis.Z - Enum.Axis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Axis.Left: - struct: EnumItem - deprecated: - message: Enum.Axis.Left was replaced with Enum.Axis.X - replace: - - Enum.Axis.X - Enum.Axis.Right: - struct: EnumItem - deprecated: - message: Enum.Axis.Right was replaced with Enum.Axis.X - replace: - - Enum.Axis.X - Enum.Axis.Top: - struct: EnumItem - deprecated: - message: Enum.Axis.Top was replaced with Enum.Axis.Y - replace: - - Enum.Axis.Y - Enum.Axis.X: - struct: EnumItem - Enum.Axis.Y: - struct: EnumItem - Enum.Axis.Z: - struct: EnumItem - Enum.BinType.Clone: - struct: EnumItem - Enum.BinType.GameTool: - struct: EnumItem - Enum.BinType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BinType.Grab: - struct: EnumItem - Enum.BinType.Hammer: - struct: EnumItem - Enum.BinType.Laser: - struct: EnumItem - deprecated: - message: Enum.BinType.Laser was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BinType.Rocket: - struct: EnumItem - deprecated: - message: Enum.BinType.Rocket was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BinType.Script: - struct: EnumItem - Enum.BinType.Slingshot: - struct: EnumItem - deprecated: - message: Enum.BinType.Slingshot was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BodyPart.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BodyPart.Head: - struct: EnumItem - Enum.BodyPart.LeftArm: - struct: EnumItem - Enum.BodyPart.LeftLeg: - struct: EnumItem - Enum.BodyPart.RightArm: - struct: EnumItem - Enum.BodyPart.RightLeg: - struct: EnumItem - Enum.BodyPart.Torso: - struct: EnumItem - Enum.BodyPartR15.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BodyPartR15.Head: - struct: EnumItem - Enum.BodyPartR15.LeftFoot: - struct: EnumItem - Enum.BodyPartR15.LeftHand: - struct: EnumItem - Enum.BodyPartR15.LeftLowerArm: - struct: EnumItem - Enum.BodyPartR15.LeftLowerLeg: - struct: EnumItem - Enum.BodyPartR15.LeftUpperArm: - struct: EnumItem - Enum.BodyPartR15.LeftUpperLeg: - struct: EnumItem - Enum.BodyPartR15.LowerTorso: - struct: EnumItem - Enum.BodyPartR15.RightFoot: - struct: EnumItem - Enum.BodyPartR15.RightHand: - struct: EnumItem - Enum.BodyPartR15.RightLowerArm: - struct: EnumItem - Enum.BodyPartR15.RightLowerLeg: - struct: EnumItem - Enum.BodyPartR15.RightUpperArm: - struct: EnumItem - Enum.BodyPartR15.RightUpperLeg: - struct: EnumItem - Enum.BodyPartR15.RootPart: - struct: EnumItem - Enum.BodyPartR15.Unknown: - struct: EnumItem - Enum.BodyPartR15.UpperTorso: - struct: EnumItem - Enum.BorderMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BorderMode.Inset: - struct: EnumItem - Enum.BorderMode.Middle: - struct: EnumItem - Enum.BorderMode.Outline: - struct: EnumItem - Enum.BreakReason.Error: - struct: EnumItem - Enum.BreakReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BreakReason.Other: - struct: EnumItem - Enum.BreakReason.SpecialBreakpoint: - struct: EnumItem - Enum.BreakReason.UserBreakpoint: - struct: EnumItem - Enum.BreakpointRemoveReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BreakpointRemoveReason.Requested: - struct: EnumItem - Enum.BreakpointRemoveReason.ScriptChanged: - struct: EnumItem - Enum.BreakpointRemoveReason.ScriptRemoved: - struct: EnumItem - Enum.BulkMoveMode.FireAllEvents: - struct: EnumItem - Enum.BulkMoveMode.FireCFrameChanged: - struct: EnumItem - Enum.BulkMoveMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BundleType.Animations: - struct: EnumItem - Enum.BundleType.BodyParts: - struct: EnumItem - Enum.BundleType.DynamicHead: - struct: EnumItem - Enum.BundleType.DynamicHeadAvatar: - struct: EnumItem - Enum.BundleType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BundleType.Shoes: - struct: EnumItem - Enum.Button.Dismount: - struct: EnumItem - Enum.Button.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Button.Jump: - struct: EnumItem - Enum.ButtonStyle.Custom: - struct: EnumItem - Enum.ButtonStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ButtonStyle.RobloxButton: - struct: EnumItem - Enum.ButtonStyle.RobloxButtonDefault: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundButton: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundDefaultButton: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundDropdownButton: - struct: EnumItem - Enum.CageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CageType.Inner: - struct: EnumItem - Enum.CageType.Outer: - struct: EnumItem - Enum.CameraMode.Classic: - struct: EnumItem - Enum.CameraMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraMode.LockFirstPerson: - struct: EnumItem - Enum.CameraPanMode.Classic: - struct: EnumItem - Enum.CameraPanMode.EdgeBump: - struct: EnumItem - Enum.CameraPanMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraType.Attach: - struct: EnumItem - Enum.CameraType.Custom: - struct: EnumItem - Enum.CameraType.Fixed: - struct: EnumItem - Enum.CameraType.Follow: - struct: EnumItem - Enum.CameraType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraType.Orbital: - struct: EnumItem - Enum.CameraType.Scriptable: - struct: EnumItem - Enum.CameraType.Track: - struct: EnumItem - Enum.CameraType.Watch: - struct: EnumItem - Enum.CatalogCategoryFilter.Collectibles: - struct: EnumItem - Enum.CatalogCategoryFilter.CommunityCreations: - struct: EnumItem - Enum.CatalogCategoryFilter.Featured: - struct: EnumItem - Enum.CatalogCategoryFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogCategoryFilter.None: - struct: EnumItem - Enum.CatalogCategoryFilter.Premium: - struct: EnumItem - Enum.CatalogCategoryFilter.Recommended: - struct: EnumItem - Enum.CatalogSortAggregation.AllTime: - struct: EnumItem - Enum.CatalogSortAggregation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogSortAggregation.Past12Hours: - struct: EnumItem - Enum.CatalogSortAggregation.Past3Days: - struct: EnumItem - Enum.CatalogSortAggregation.PastDay: - struct: EnumItem - Enum.CatalogSortAggregation.PastMonth: - struct: EnumItem - Enum.CatalogSortAggregation.PastWeek: - struct: EnumItem - Enum.CatalogSortType.Bestselling: - struct: EnumItem - Enum.CatalogSortType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogSortType.MostFavorited: - struct: EnumItem - Enum.CatalogSortType.PriceHighToLow: - struct: EnumItem - Enum.CatalogSortType.PriceLowToHigh: - struct: EnumItem - Enum.CatalogSortType.RecentlyCreated: - struct: EnumItem - Enum.CatalogSortType.RecentlyUpdated: - struct: EnumItem - deprecated: - message: Enum.CatalogSortType.RecentlyUpdated was replaced with Enum.CatalogSortType.RecentlyCreated - replace: - - Enum.CatalogSortType.RecentlyCreated - Enum.CatalogSortType.Relevance: - struct: EnumItem - Enum.CellBlock.CornerWedge: - struct: EnumItem - Enum.CellBlock.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellBlock.HorizontalWedge: - struct: EnumItem - Enum.CellBlock.InverseCornerWedge: - struct: EnumItem - Enum.CellBlock.Solid: - struct: EnumItem - Enum.CellBlock.VerticalWedge: - struct: EnumItem - Enum.CellMaterial.Aluminum: - struct: EnumItem - Enum.CellMaterial.Asphalt: - struct: EnumItem - Enum.CellMaterial.BluePlastic: - struct: EnumItem - Enum.CellMaterial.Brick: - struct: EnumItem - Enum.CellMaterial.Cement: - struct: EnumItem - Enum.CellMaterial.CinderBlock: - struct: EnumItem - Enum.CellMaterial.Empty: - struct: EnumItem - Enum.CellMaterial.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellMaterial.Gold: - struct: EnumItem - Enum.CellMaterial.Granite: - struct: EnumItem - Enum.CellMaterial.Grass: - struct: EnumItem - Enum.CellMaterial.Gravel: - struct: EnumItem - Enum.CellMaterial.Iron: - struct: EnumItem - Enum.CellMaterial.MossyStone: - struct: EnumItem - Enum.CellMaterial.RedPlastic: - struct: EnumItem - Enum.CellMaterial.Sand: - struct: EnumItem - Enum.CellMaterial.Water: - struct: EnumItem - Enum.CellMaterial.WoodLog: - struct: EnumItem - Enum.CellMaterial.WoodPlank: - struct: EnumItem - Enum.CellOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellOrientation.NegX: - struct: EnumItem - Enum.CellOrientation.NegZ: - struct: EnumItem - Enum.CellOrientation.X: - struct: EnumItem - Enum.CellOrientation.Z: - struct: EnumItem - Enum.CenterDialogType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CenterDialogType.ModalDialog: - struct: EnumItem - Enum.CenterDialogType.PlayerInitiatedDialog: - struct: EnumItem - Enum.CenterDialogType.QuitDialog: - struct: EnumItem - Enum.CenterDialogType.UnsolicitedDialog: - struct: EnumItem - Enum.ChatCallbackType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatCallbackType.OnClientFormattingMessage: - struct: EnumItem - Enum.ChatCallbackType.OnClientSendingMessage: - struct: EnumItem - Enum.ChatCallbackType.OnCreatingChatWindow: - struct: EnumItem - Enum.ChatCallbackType.OnServerReceivingMessage: - struct: EnumItem - Enum.ChatColor.Blue: - struct: EnumItem - Enum.ChatColor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatColor.Green: - struct: EnumItem - Enum.ChatColor.Red: - struct: EnumItem - Enum.ChatColor.White: - struct: EnumItem - Enum.ChatMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatMode.Menu: - struct: EnumItem - Enum.ChatMode.TextAndMenu: - struct: EnumItem - Enum.ChatPrivacyMode.AllUsers: - struct: EnumItem - Enum.ChatPrivacyMode.Friends: - struct: EnumItem - Enum.ChatPrivacyMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatPrivacyMode.NoOne: - struct: EnumItem - Enum.ChatStyle.Bubble: - struct: EnumItem - Enum.ChatStyle.Classic: - struct: EnumItem - Enum.ChatStyle.ClassicAndBubble: - struct: EnumItem - Enum.ChatStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatVersion.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatVersion.LegacyChatService: - struct: EnumItem - Enum.ChatVersion.TextChatService: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Default: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Disabled: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Enabled: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CollisionFidelity.Box: - struct: EnumItem - Enum.CollisionFidelity.Default: - struct: EnumItem - Enum.CollisionFidelity.DynamicPreciseConvexDecomposition: - struct: EnumItem - Enum.CollisionFidelity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CollisionFidelity.Hull: - struct: EnumItem - Enum.CollisionFidelity.PreciseConvexDecomposition: - struct: EnumItem - Enum.CommandPermission.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CommandPermission.LocalUser: - struct: EnumItem - Enum.CommandPermission.Plugin: - struct: EnumItem - Enum.CompletionItemKind.Class: - struct: EnumItem - Enum.CompletionItemKind.Color: - struct: EnumItem - Enum.CompletionItemKind.Constant: - struct: EnumItem - Enum.CompletionItemKind.Constructor: - struct: EnumItem - Enum.CompletionItemKind.Enum: - struct: EnumItem - Enum.CompletionItemKind.EnumMember: - struct: EnumItem - Enum.CompletionItemKind.Event: - struct: EnumItem - Enum.CompletionItemKind.Field: - struct: EnumItem - Enum.CompletionItemKind.File: - struct: EnumItem - Enum.CompletionItemKind.Folder: - struct: EnumItem - Enum.CompletionItemKind.Function: - struct: EnumItem - Enum.CompletionItemKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionItemKind.Interface: - struct: EnumItem - Enum.CompletionItemKind.Keyword: - struct: EnumItem - Enum.CompletionItemKind.Method: - struct: EnumItem - Enum.CompletionItemKind.Module: - struct: EnumItem - Enum.CompletionItemKind.Operator: - struct: EnumItem - Enum.CompletionItemKind.Property: - struct: EnumItem - Enum.CompletionItemKind.Reference: - struct: EnumItem - Enum.CompletionItemKind.Snippet: - struct: EnumItem - Enum.CompletionItemKind.Struct: - struct: EnumItem - Enum.CompletionItemKind.Text: - struct: EnumItem - Enum.CompletionItemKind.TypeParameter: - struct: EnumItem - Enum.CompletionItemKind.Unit: - struct: EnumItem - Enum.CompletionItemKind.Value: - struct: EnumItem - Enum.CompletionItemKind.Variable: - struct: EnumItem - Enum.CompletionItemTag.AddParens: - struct: EnumItem - Enum.CompletionItemTag.ClientServerBoundaryViolation: - struct: EnumItem - Enum.CompletionItemTag.CommandLinePermissions: - struct: EnumItem - Enum.CompletionItemTag.Deprecated: - struct: EnumItem - Enum.CompletionItemTag.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionItemTag.IncorrectIndexType: - struct: EnumItem - Enum.CompletionItemTag.PluginPermissions: - struct: EnumItem - Enum.CompletionItemTag.PutCursorInParens: - struct: EnumItem - Enum.CompletionItemTag.RobloxPermissions: - struct: EnumItem - Enum.CompletionItemTag.TypeCorrect: - struct: EnumItem - Enum.CompletionTriggerKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionTriggerKind.Invoked: - struct: EnumItem - Enum.CompletionTriggerKind.TriggerCharacter: - struct: EnumItem - Enum.CompletionTriggerKind.TriggerForIncompleteCompletions: - struct: EnumItem - Enum.ComputerCameraMovementMode.CameraToggle: - struct: EnumItem - Enum.ComputerCameraMovementMode.Classic: - struct: EnumItem - Enum.ComputerCameraMovementMode.Default: - struct: EnumItem - Enum.ComputerCameraMovementMode.Follow: - struct: EnumItem - Enum.ComputerCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ComputerCameraMovementMode.Orbital: - struct: EnumItem - Enum.ComputerMovementMode.ClickToMove: - struct: EnumItem - Enum.ComputerMovementMode.Default: - struct: EnumItem - Enum.ComputerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ComputerMovementMode.KeyboardMouse: - struct: EnumItem - Enum.ConnectionError.DisconnectBadhash: - struct: EnumItem - Enum.ConnectionError.DisconnectBlockedIP: - struct: EnumItem - Enum.ConnectionError.DisconnectBySecurityPolicy: - struct: EnumItem - Enum.ConnectionError.DisconnectClientFailure: - struct: EnumItem - Enum.ConnectionError.DisconnectClientRequest: - struct: EnumItem - Enum.ConnectionError.DisconnectCloudEditKick: - struct: EnumItem - Enum.ConnectionError.DisconnectConnectionLost: - struct: EnumItem - Enum.ConnectionError.DisconnectDevMaintenance: - struct: EnumItem - Enum.ConnectionError.DisconnectDuplicatePlayer: - struct: EnumItem - Enum.ConnectionError.DisconnectDuplicateTicket: - struct: EnumItem - Enum.ConnectionError.DisconnectErrors: - struct: EnumItem - Enum.ConnectionError.DisconnectEvicted: - struct: EnumItem - Enum.ConnectionError.DisconnectHashTimeout: - struct: EnumItem - Enum.ConnectionError.DisconnectIdle: - struct: EnumItem - Enum.ConnectionError.DisconnectIllegalTeleport: - struct: EnumItem - Enum.ConnectionError.DisconnectLuaKick: - struct: EnumItem - Enum.ConnectionError.DisconnectModeratedGame: - struct: EnumItem - Enum.ConnectionError.DisconnectNewSecurityKeyMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectOnRemoteSysStats: - struct: EnumItem - Enum.ConnectionError.DisconnectOutOfMemoryKeepPlayingLeave: - struct: EnumItem - Enum.ConnectionError.DisconnectPlayerless: - struct: EnumItem - Enum.ConnectionError.DisconnectProtocolMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectRaknetErrors: - struct: EnumItem - Enum.ConnectionError.DisconnectReceivePacketError: - struct: EnumItem - Enum.ConnectionError.DisconnectReceivePacketStreamError: - struct: EnumItem - Enum.ConnectionError.DisconnectRejoin: - struct: EnumItem - Enum.ConnectionError.DisconnectRobloxMaintenance: - struct: EnumItem - Enum.ConnectionError.DisconnectRomarkEndOfTest: - struct: EnumItem - Enum.ConnectionError.DisconnectSecurityKeyMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectSendPacketError: - struct: EnumItem - Enum.ConnectionError.DisconnectTimeout: - struct: EnumItem - Enum.ConnectionError.DisconnectWrongVersion: - struct: EnumItem - Enum.ConnectionError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ConnectionError.OK: - struct: EnumItem - Enum.ConnectionError.PlacelaunchCustomMessage: - struct: EnumItem - Enum.ConnectionError.PlacelaunchDisabled: - struct: EnumItem - Enum.ConnectionError.PlacelaunchError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchErrors: - struct: EnumItem - Enum.ConnectionError.PlacelaunchFlooded: - struct: EnumItem - Enum.ConnectionError.PlacelaunchGameEnded: - struct: EnumItem - Enum.ConnectionError.PlacelaunchGameFull: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHashException: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHashExpired: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHttpError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchOtherError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchPartyCannotFit: - struct: EnumItem - Enum.ConnectionError.PlacelaunchRestricted: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUnauthorized: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUserLeft: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUserPrivacyUnauthorized: - struct: EnumItem - Enum.ConnectionError.PlayerRemoved: - struct: EnumItem - Enum.ConnectionError.ReplicatorTimeout: - struct: EnumItem - Enum.ConnectionError.TeleportErrors: - struct: EnumItem - Enum.ConnectionError.TeleportFailure: - struct: EnumItem - Enum.ConnectionError.TeleportFlooded: - struct: EnumItem - Enum.ConnectionError.TeleportGameEnded: - struct: EnumItem - Enum.ConnectionError.TeleportGameFull: - struct: EnumItem - Enum.ConnectionError.TeleportGameNotFound: - struct: EnumItem - Enum.ConnectionError.TeleportIsTeleporting: - struct: EnumItem - Enum.ConnectionError.TeleportUnauthorized: - struct: EnumItem - Enum.ConnectionError.Unknown: - struct: EnumItem - Enum.ConnectionState.Connected: - struct: EnumItem - Enum.ConnectionState.Disconnected: - struct: EnumItem - Enum.ConnectionState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionPriority.Default: - struct: EnumItem - deprecated: - message: Enum.ContextActionPriority.Default was replaced with Enum.ContextActionPriority.Medium - replace: - - Enum.ContextActionPriority.Medium - Enum.ContextActionPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionPriority.High: - struct: EnumItem - Enum.ContextActionPriority.Low: - struct: EnumItem - Enum.ContextActionPriority.Medium: - struct: EnumItem - Enum.ContextActionResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionResult.Pass: - struct: EnumItem - Enum.ContextActionResult.Sink: - struct: EnumItem - Enum.ControlMode.Classic: - struct: EnumItem - Enum.ControlMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ControlMode.Mouse Lock Switch: - struct: EnumItem - deprecated: - message: Enum.ControlMode.Mouse Lock Switch was replaced with Enum.ControlMode.MouseLockSwitch - replace: - - Enum.ControlMode.MouseLockSwitch - Enum.ControlMode.MouseLockSwitch: - struct: EnumItem - Enum.CoreGuiType.All: - struct: EnumItem - Enum.CoreGuiType.Backpack: - struct: EnumItem - Enum.CoreGuiType.Chat: - struct: EnumItem - Enum.CoreGuiType.EmotesMenu: - struct: EnumItem - Enum.CoreGuiType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CoreGuiType.Health: - struct: EnumItem - Enum.CoreGuiType.PlayerList: - struct: EnumItem - Enum.CoreGuiType.SelfView: - struct: EnumItem - Enum.CreateOutfitFailure.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreateOutfitFailure.InvalidName: - struct: EnumItem - Enum.CreateOutfitFailure.Other: - struct: EnumItem - Enum.CreateOutfitFailure.OutfitLimitReached: - struct: EnumItem - Enum.CreatorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreatorType.Group: - struct: EnumItem - Enum.CreatorType.User: - struct: EnumItem - Enum.CreatorTypeFilter.All: - struct: EnumItem - Enum.CreatorTypeFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreatorTypeFilter.Group: - struct: EnumItem - Enum.CreatorTypeFilter.User: - struct: EnumItem - Enum.CurrencyType.Default: - struct: EnumItem - Enum.CurrencyType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CurrencyType.Robux: - struct: EnumItem - Enum.CurrencyType.Tix: - struct: EnumItem - Enum.CustomCameraMode.Classic: - struct: EnumItem - Enum.CustomCameraMode.Default: - struct: EnumItem - Enum.CustomCameraMode.Follow: - struct: EnumItem - Enum.CustomCameraMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DataStoreRequestType.GetAsync: - struct: EnumItem - Enum.DataStoreRequestType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DataStoreRequestType.GetSortedAsync: - struct: EnumItem - Enum.DataStoreRequestType.OnUpdate: - struct: EnumItem - Enum.DataStoreRequestType.SetIncrementAsync: - struct: EnumItem - Enum.DataStoreRequestType.SetIncrementSortedAsync: - struct: EnumItem - Enum.DataStoreRequestType.UpdateAsync: - struct: EnumItem - Enum.DebuggerEndReason.ClientRequest: - struct: EnumItem - Enum.DebuggerEndReason.ConfigurationFailed: - struct: EnumItem - Enum.DebuggerEndReason.Disconnected: - struct: EnumItem - Enum.DebuggerEndReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerEndReason.InvalidHost: - struct: EnumItem - Enum.DebuggerEndReason.RpcError: - struct: EnumItem - Enum.DebuggerEndReason.ServerProtocolMismatch: - struct: EnumItem - Enum.DebuggerEndReason.ServerShutdown: - struct: EnumItem - Enum.DebuggerEndReason.Timeout: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.Always: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerExceptionBreakMode.Never: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.Unhandled: - struct: EnumItem - Enum.DebuggerFrameType.C: - struct: EnumItem - Enum.DebuggerFrameType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerFrameType.Lua: - struct: EnumItem - Enum.DebuggerPauseReason.Breakpoint: - struct: EnumItem - Enum.DebuggerPauseReason.Entrypoint: - struct: EnumItem - Enum.DebuggerPauseReason.Exception: - struct: EnumItem - Enum.DebuggerPauseReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerPauseReason.Requested: - struct: EnumItem - Enum.DebuggerPauseReason.SingleStep: - struct: EnumItem - Enum.DebuggerPauseReason.Unknown: - struct: EnumItem - Enum.DebuggerStatus.ConnectionClosed: - struct: EnumItem - Enum.DebuggerStatus.ConnectionLost: - struct: EnumItem - Enum.DebuggerStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerStatus.InternalError: - struct: EnumItem - Enum.DebuggerStatus.InvalidArgument: - struct: EnumItem - Enum.DebuggerStatus.InvalidResponse: - struct: EnumItem - Enum.DebuggerStatus.InvalidState: - struct: EnumItem - Enum.DebuggerStatus.RpcError: - struct: EnumItem - Enum.DebuggerStatus.Success: - struct: EnumItem - Enum.DebuggerStatus.Timeout: - struct: EnumItem - Enum.DevCameraOcclusionMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevCameraOcclusionMode.Invisicam: - struct: EnumItem - Enum.DevCameraOcclusionMode.Zoom: - struct: EnumItem - Enum.DevComputerCameraMovementMode.CameraToggle: - struct: EnumItem - Enum.DevComputerCameraMovementMode.Classic: - struct: EnumItem - Enum.DevComputerCameraMovementMode.Follow: - struct: EnumItem - Enum.DevComputerCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevComputerCameraMovementMode.Orbital: - struct: EnumItem - Enum.DevComputerCameraMovementMode.UserChoice: - struct: EnumItem - Enum.DevComputerMovementMode.ClickToMove: - struct: EnumItem - Enum.DevComputerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevComputerMovementMode.KeyboardMouse: - struct: EnumItem - Enum.DevComputerMovementMode.Scriptable: - struct: EnumItem - Enum.DevComputerMovementMode.UserChoice: - struct: EnumItem - Enum.DevTouchCameraMovementMode.Classic: - struct: EnumItem - Enum.DevTouchCameraMovementMode.Follow: - struct: EnumItem - Enum.DevTouchCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevTouchCameraMovementMode.Orbital: - struct: EnumItem - Enum.DevTouchCameraMovementMode.UserChoice: - struct: EnumItem - Enum.DevTouchMovementMode.ClickToMove: - struct: EnumItem - Enum.DevTouchMovementMode.DPad: - struct: EnumItem - Enum.DevTouchMovementMode.DynamicThumbstick: - struct: EnumItem - Enum.DevTouchMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevTouchMovementMode.Scriptable: - struct: EnumItem - Enum.DevTouchMovementMode.Thumbpad: - struct: EnumItem - Enum.DevTouchMovementMode.Thumbstick: - struct: EnumItem - Enum.DevTouchMovementMode.UserChoice: - struct: EnumItem - Enum.DeveloperMemoryTag.Animation: - struct: EnumItem - Enum.DeveloperMemoryTag.GeometryCSG: - struct: EnumItem - Enum.DeveloperMemoryTag.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DeveloperMemoryTag.GraphicsMeshParts: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsParticles: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsParts: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsSolidModels: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsSpatialHash: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTerrain: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTexture: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTextureCharacter: - struct: EnumItem - Enum.DeveloperMemoryTag.Gui: - struct: EnumItem - Enum.DeveloperMemoryTag.HttpCache: - struct: EnumItem - Enum.DeveloperMemoryTag.Instances: - struct: EnumItem - Enum.DeveloperMemoryTag.Internal: - struct: EnumItem - Enum.DeveloperMemoryTag.LuaHeap: - struct: EnumItem - Enum.DeveloperMemoryTag.Navigation: - struct: EnumItem - Enum.DeveloperMemoryTag.PhysicsCollision: - struct: EnumItem - Enum.DeveloperMemoryTag.PhysicsParts: - struct: EnumItem - Enum.DeveloperMemoryTag.Script: - struct: EnumItem - Enum.DeveloperMemoryTag.Signals: - struct: EnumItem - Enum.DeveloperMemoryTag.Sounds: - struct: EnumItem - Enum.DeveloperMemoryTag.StreamingSounds: - struct: EnumItem - Enum.DeveloperMemoryTag.TerrainVoxels: - struct: EnumItem - Enum.DeviceType.Desktop: - struct: EnumItem - Enum.DeviceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DeviceType.Phone: - struct: EnumItem - Enum.DeviceType.Tablet: - struct: EnumItem - Enum.DeviceType.Unknown: - struct: EnumItem - Enum.DialogBehaviorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogBehaviorType.MultiplePlayers: - struct: EnumItem - Enum.DialogBehaviorType.SinglePlayer: - struct: EnumItem - Enum.DialogPurpose.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogPurpose.Help: - struct: EnumItem - Enum.DialogPurpose.Quest: - struct: EnumItem - Enum.DialogPurpose.Shop: - struct: EnumItem - Enum.DialogTone.Enemy: - struct: EnumItem - Enum.DialogTone.Friendly: - struct: EnumItem - Enum.DialogTone.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogTone.Neutral: - struct: EnumItem - Enum.DominantAxis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DominantAxis.Height: - struct: EnumItem - Enum.DominantAxis.Width: - struct: EnumItem - Enum.DraftStatusCode.DraftCommitted: - struct: EnumItem - Enum.DraftStatusCode.DraftOutdated: - struct: EnumItem - Enum.DraftStatusCode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraftStatusCode.OK: - struct: EnumItem - Enum.DraftStatusCode.ScriptRemoved: - struct: EnumItem - Enum.DraggerCoordinateSpace.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraggerCoordinateSpace.Object: - struct: EnumItem - Enum.DraggerCoordinateSpace.World: - struct: EnumItem - Enum.DraggerMovementMode.Geometric: - struct: EnumItem - Enum.DraggerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraggerMovementMode.Physical: - struct: EnumItem - Enum.EasingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EasingDirection.In: - struct: EnumItem - Enum.EasingDirection.InOut: - struct: EnumItem - Enum.EasingDirection.Out: - struct: EnumItem - Enum.EasingStyle.Back: - struct: EnumItem - Enum.EasingStyle.Bounce: - struct: EnumItem - Enum.EasingStyle.Circular: - struct: EnumItem - Enum.EasingStyle.Cubic: - struct: EnumItem - Enum.EasingStyle.Elastic: - struct: EnumItem - Enum.EasingStyle.Exponential: - struct: EnumItem - Enum.EasingStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EasingStyle.Linear: - struct: EnumItem - Enum.EasingStyle.Quad: - struct: EnumItem - Enum.EasingStyle.Quart: - struct: EnumItem - Enum.EasingStyle.Quint: - struct: EnumItem - Enum.EasingStyle.Sine: - struct: EnumItem - Enum.ElasticBehavior.Always: - struct: EnumItem - Enum.ElasticBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ElasticBehavior.Never: - struct: EnumItem - Enum.ElasticBehavior.WhenScrollable: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Always: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.DefaultAuto: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Disabled: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EnviromentalPhysicsThrottle.Skip16: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip2: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip4: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip8: - struct: EnumItem - Enum.ExperienceAuthScope.CreatorAssetsCreate: - struct: EnumItem - Enum.ExperienceAuthScope.DefaultScope: - struct: EnumItem - Enum.ExperienceAuthScope.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ExplosionType.Craters: - struct: EnumItem - Enum.ExplosionType.CratersAndDebris: - struct: EnumItem - deprecated: - message: Enum.ExplosionType.CratersAndDebris was replaced with Enum.ExplosionType.Craters - replace: - - Enum.ExplosionType.Craters - Enum.ExplosionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ExplosionType.NoCraters: - struct: EnumItem - Enum.FacialAnimationFlags.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FacialAnimationFlags.None: - struct: EnumItem - Enum.FacialAnimationFlags.Place: - struct: EnumItem - Enum.FacialAnimationFlags.PlaceServer: - struct: EnumItem - Enum.FacialAnimationFlags.Server: - struct: EnumItem - Enum.FacialAnimationStreamingState.Audio: - struct: EnumItem - Enum.FacialAnimationStreamingState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FacialAnimationStreamingState.None: - struct: EnumItem - Enum.FacialAnimationStreamingState.Place: - struct: EnumItem - Enum.FacialAnimationStreamingState.Server: - struct: EnumItem - Enum.FacialAnimationStreamingState.Video: - struct: EnumItem - Enum.FieldOfViewMode.Diagonal: - struct: EnumItem - Enum.FieldOfViewMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FieldOfViewMode.MaxAxis: - struct: EnumItem - Enum.FieldOfViewMode.Vertical: - struct: EnumItem - Enum.FillDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FillDirection.Horizontal: - struct: EnumItem - Enum.FillDirection.Vertical: - struct: EnumItem - Enum.FilterResult.Accepted: - struct: EnumItem - Enum.FilterResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FilterResult.Rejected: - struct: EnumItem - Enum.Font.AmaticSC: - struct: EnumItem - Enum.Font.Antique: - struct: EnumItem - Enum.Font.Arcade: - struct: EnumItem - Enum.Font.Arial: - struct: EnumItem - Enum.Font.ArialBold: - struct: EnumItem - Enum.Font.Bangers: - struct: EnumItem - Enum.Font.Bodoni: - struct: EnumItem - Enum.Font.Cartoon: - struct: EnumItem - Enum.Font.Code: - struct: EnumItem - Enum.Font.Creepster: - struct: EnumItem - Enum.Font.DenkOne: - struct: EnumItem - Enum.Font.Fantasy: - struct: EnumItem - Enum.Font.Fondamento: - struct: EnumItem - Enum.Font.FredokaOne: - struct: EnumItem - Enum.Font.Garamond: - struct: EnumItem - Enum.Font.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Font.Gotham: - struct: EnumItem - Enum.Font.GothamBlack: - struct: EnumItem - Enum.Font.GothamBold: - struct: EnumItem - Enum.Font.GothamMedium: - struct: EnumItem - Enum.Font.GothamSemibold: - struct: EnumItem - deprecated: - message: Enum.Font.GothamSemibold was replaced with Enum.Font.GothamMedium - replace: - - Enum.Font.GothamMedium - Enum.Font.GrenzeGotisch: - struct: EnumItem - Enum.Font.Highway: - struct: EnumItem - Enum.Font.IndieFlower: - struct: EnumItem - Enum.Font.JosefinSans: - struct: EnumItem - Enum.Font.Jura: - struct: EnumItem - Enum.Font.Kalam: - struct: EnumItem - Enum.Font.Legacy: - struct: EnumItem - Enum.Font.LuckiestGuy: - struct: EnumItem - Enum.Font.Merriweather: - struct: EnumItem - Enum.Font.Michroma: - struct: EnumItem - Enum.Font.Nunito: - struct: EnumItem - Enum.Font.Oswald: - struct: EnumItem - Enum.Font.PatrickHand: - struct: EnumItem - Enum.Font.PermanentMarker: - struct: EnumItem - Enum.Font.Roboto: - struct: EnumItem - Enum.Font.RobotoCondensed: - struct: EnumItem - Enum.Font.RobotoMono: - struct: EnumItem - Enum.Font.Sarpanch: - struct: EnumItem - Enum.Font.SciFi: - struct: EnumItem - Enum.Font.SourceSans: - struct: EnumItem - Enum.Font.SourceSansBold: - struct: EnumItem - Enum.Font.SourceSansItalic: - struct: EnumItem - Enum.Font.SourceSansLight: - struct: EnumItem - Enum.Font.SourceSansSemibold: - struct: EnumItem - Enum.Font.SpecialElite: - struct: EnumItem - Enum.Font.TitilliumWeb: - struct: EnumItem - Enum.Font.Ubuntu: - struct: EnumItem - Enum.Font.Unknown: - struct: EnumItem - Enum.FontSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontSize.Size10: - struct: EnumItem - Enum.FontSize.Size11: - struct: EnumItem - Enum.FontSize.Size12: - struct: EnumItem - Enum.FontSize.Size14: - struct: EnumItem - Enum.FontSize.Size18: - struct: EnumItem - Enum.FontSize.Size24: - struct: EnumItem - Enum.FontSize.Size28: - struct: EnumItem - Enum.FontSize.Size32: - struct: EnumItem - Enum.FontSize.Size36: - struct: EnumItem - Enum.FontSize.Size42: - struct: EnumItem - Enum.FontSize.Size48: - struct: EnumItem - Enum.FontSize.Size60: - struct: EnumItem - Enum.FontSize.Size8: - struct: EnumItem - Enum.FontSize.Size9: - struct: EnumItem - Enum.FontSize.Size96: - struct: EnumItem - Enum.FontStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontStyle.Italic: - struct: EnumItem - Enum.FontStyle.Normal: - struct: EnumItem - Enum.FontWeight.Bold: - struct: EnumItem - Enum.FontWeight.ExtraBold: - struct: EnumItem - Enum.FontWeight.ExtraLight: - struct: EnumItem - Enum.FontWeight.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontWeight.Heavy: - struct: EnumItem - Enum.FontWeight.Light: - struct: EnumItem - Enum.FontWeight.Medium: - struct: EnumItem - Enum.FontWeight.Regular: - struct: EnumItem - Enum.FontWeight.SemiBold: - struct: EnumItem - Enum.FontWeight.Thin: - struct: EnumItem - Enum.FormFactor.Block: - struct: EnumItem - deprecated: - message: Enum.FormFactor.Block was replaced with Enum.FormFactor.Brick - replace: - - Enum.FormFactor.Brick - Enum.FormFactor.Brick: - struct: EnumItem - Enum.FormFactor.Custom: - struct: EnumItem - Enum.FormFactor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FormFactor.Plate: - struct: EnumItem - Enum.FormFactor.Symmetric: - struct: EnumItem - Enum.FrameStyle.ChatBlue: - struct: EnumItem - Enum.FrameStyle.ChatGreen: - struct: EnumItem - Enum.FrameStyle.ChatRed: - struct: EnumItem - Enum.FrameStyle.Custom: - struct: EnumItem - Enum.FrameStyle.DropShadow: - struct: EnumItem - Enum.FrameStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FrameStyle.RobloxRound: - struct: EnumItem - Enum.FrameStyle.RobloxSquare: - struct: EnumItem - Enum.FramerateManagerMode.Automatic: - struct: EnumItem - Enum.FramerateManagerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FramerateManagerMode.Off: - struct: EnumItem - Enum.FramerateManagerMode.On: - struct: EnumItem - Enum.FriendRequestEvent.Accept: - struct: EnumItem - Enum.FriendRequestEvent.Deny: - struct: EnumItem - Enum.FriendRequestEvent.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FriendRequestEvent.Issue: - struct: EnumItem - Enum.FriendRequestEvent.Revoke: - struct: EnumItem - Enum.FriendStatus.Friend: - struct: EnumItem - Enum.FriendStatus.FriendRequestReceived: - struct: EnumItem - Enum.FriendStatus.FriendRequestSent: - struct: EnumItem - Enum.FriendStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FriendStatus.NotFriend: - struct: EnumItem - Enum.FriendStatus.Unknown: - struct: EnumItem - Enum.FunctionalTestResult.Error: - struct: EnumItem - Enum.FunctionalTestResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FunctionalTestResult.Passed: - struct: EnumItem - Enum.FunctionalTestResult.Warning: - struct: EnumItem - Enum.GameAvatarType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GameAvatarType.PlayerChoice: - struct: EnumItem - Enum.GameAvatarType.R15: - struct: EnumItem - Enum.GameAvatarType.R6: - struct: EnumItem - Enum.GearGenreSetting.AllGenres: - struct: EnumItem - Enum.GearGenreSetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GearGenreSetting.MatchingGenreOnly: - struct: EnumItem - Enum.GearType.BuildingTools: - struct: EnumItem - Enum.GearType.Explosives: - struct: EnumItem - Enum.GearType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GearType.MeleeWeapons: - struct: EnumItem - Enum.GearType.MusicalInstruments: - struct: EnumItem - Enum.GearType.NavigationEnhancers: - struct: EnumItem - Enum.GearType.PowerUps: - struct: EnumItem - Enum.GearType.RangedWeapons: - struct: EnumItem - Enum.GearType.SocialItems: - struct: EnumItem - Enum.GearType.Transport: - struct: EnumItem - Enum.Genre.Adventure: - struct: EnumItem - Enum.Genre.All: - struct: EnumItem - Enum.Genre.Fantasy: - struct: EnumItem - Enum.Genre.Funny: - struct: EnumItem - Enum.Genre.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Genre.Ninja: - struct: EnumItem - Enum.Genre.Pirate: - struct: EnumItem - Enum.Genre.Scary: - struct: EnumItem - Enum.Genre.SciFi: - struct: EnumItem - Enum.Genre.SkatePark: - struct: EnumItem - Enum.Genre.Sports: - struct: EnumItem - Enum.Genre.TownAndCity: - struct: EnumItem - Enum.Genre.Tutorial: - struct: EnumItem - Enum.Genre.War: - struct: EnumItem - Enum.Genre.WildWest: - struct: EnumItem - Enum.GetEnums: - args: [] - method: true - must_use: true - Enum.GraphicsMode.Automatic: - struct: EnumItem - Enum.GraphicsMode.Direct3D11: - struct: EnumItem - Enum.GraphicsMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GraphicsMode.Metal: - struct: EnumItem - Enum.GraphicsMode.NoGraphics: - struct: EnumItem - Enum.GraphicsMode.OpenGL: - struct: EnumItem - Enum.GraphicsMode.Vulkan: - struct: EnumItem - Enum.GuiType.Core: - struct: EnumItem - Enum.GuiType.Custom: - struct: EnumItem - Enum.GuiType.CustomBillboards: - struct: EnumItem - Enum.GuiType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GuiType.PlayerNameplates: - struct: EnumItem - Enum.HandlesStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HandlesStyle.Movement: - struct: EnumItem - Enum.HandlesStyle.Resize: - struct: EnumItem - Enum.HighlightDepthMode.AlwaysOnTop: - struct: EnumItem - Enum.HighlightDepthMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HighlightDepthMode.Occluded: - struct: EnumItem - Enum.HorizontalAlignment.Center: - struct: EnumItem - Enum.HorizontalAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HorizontalAlignment.Left: - struct: EnumItem - Enum.HorizontalAlignment.Right: - struct: EnumItem - Enum.HoverAnimateSpeed.Fast: - struct: EnumItem - Enum.HoverAnimateSpeed.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HoverAnimateSpeed.Medium: - struct: EnumItem - Enum.HoverAnimateSpeed.Slow: - struct: EnumItem - Enum.HoverAnimateSpeed.VeryFast: - struct: EnumItem - Enum.HoverAnimateSpeed.VerySlow: - struct: EnumItem - Enum.HttpCachePolicy.DataOnly: - struct: EnumItem - Enum.HttpCachePolicy.Default: - struct: EnumItem - Enum.HttpCachePolicy.Full: - struct: EnumItem - Enum.HttpCachePolicy.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpCachePolicy.InternalRedirectRefresh: - struct: EnumItem - Enum.HttpCachePolicy.None: - struct: EnumItem - Enum.HttpContentType.ApplicationJson: - struct: EnumItem - Enum.HttpContentType.ApplicationUrlEncoded: - struct: EnumItem - Enum.HttpContentType.ApplicationXml: - struct: EnumItem - Enum.HttpContentType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpContentType.TextPlain: - struct: EnumItem - Enum.HttpContentType.TextXml: - struct: EnumItem - Enum.HttpError.Aborted: - struct: EnumItem - Enum.HttpError.ConnectFail: - struct: EnumItem - Enum.HttpError.DnsResolve: - struct: EnumItem - Enum.HttpError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpError.InvalidRedirect: - struct: EnumItem - Enum.HttpError.InvalidUrl: - struct: EnumItem - Enum.HttpError.NetFail: - struct: EnumItem - Enum.HttpError.OK: - struct: EnumItem - Enum.HttpError.OutOfMemory: - struct: EnumItem - Enum.HttpError.SslConnectFail: - struct: EnumItem - Enum.HttpError.SslVerificationFail: - struct: EnumItem - Enum.HttpError.TimedOut: - struct: EnumItem - Enum.HttpError.TooManyRedirects: - struct: EnumItem - Enum.HttpError.Unknown: - struct: EnumItem - Enum.HttpRequestType.Analytics: - struct: EnumItem - Enum.HttpRequestType.Avatar: - struct: EnumItem - Enum.HttpRequestType.Chat: - struct: EnumItem - Enum.HttpRequestType.Default: - struct: EnumItem - Enum.HttpRequestType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpRequestType.Localization: - struct: EnumItem - Enum.HttpRequestType.MarketplaceService: - struct: EnumItem - Enum.HttpRequestType.Players: - struct: EnumItem - Enum.HumanoidCollisionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidCollisionType.InnerBox: - struct: EnumItem - Enum.HumanoidCollisionType.OuterBox: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidDisplayDistanceType.None: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.Subject: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.Viewer: - struct: EnumItem - Enum.HumanoidHealthDisplayType.AlwaysOff: - struct: EnumItem - Enum.HumanoidHealthDisplayType.AlwaysOn: - struct: EnumItem - Enum.HumanoidHealthDisplayType.DisplayWhenDamaged: - struct: EnumItem - Enum.HumanoidHealthDisplayType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidOnlySetCollisionsOnStateChange.Default: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.Disabled: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.Enabled: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidRigType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidRigType.R15: - struct: EnumItem - Enum.HumanoidRigType.R6: - struct: EnumItem - Enum.HumanoidStateMachineMode.Default: - struct: EnumItem - Enum.HumanoidStateMachineMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidStateMachineMode.Legacy: - struct: EnumItem - Enum.HumanoidStateMachineMode.LuaStateMachine: - struct: EnumItem - Enum.HumanoidStateMachineMode.NoStateMachine: - struct: EnumItem - Enum.HumanoidStateType.Climbing: - struct: EnumItem - Enum.HumanoidStateType.Dead: - struct: EnumItem - Enum.HumanoidStateType.FallingDown: - struct: EnumItem - Enum.HumanoidStateType.Flying: - struct: EnumItem - Enum.HumanoidStateType.Freefall: - struct: EnumItem - Enum.HumanoidStateType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidStateType.GettingUp: - struct: EnumItem - Enum.HumanoidStateType.Jumping: - struct: EnumItem - Enum.HumanoidStateType.Landed: - struct: EnumItem - Enum.HumanoidStateType.None: - struct: EnumItem - Enum.HumanoidStateType.Physics: - struct: EnumItem - Enum.HumanoidStateType.PlatformStanding: - struct: EnumItem - Enum.HumanoidStateType.Ragdoll: - struct: EnumItem - Enum.HumanoidStateType.Running: - struct: EnumItem - Enum.HumanoidStateType.RunningNoPhysics: - struct: EnumItem - Enum.HumanoidStateType.Seated: - struct: EnumItem - Enum.HumanoidStateType.StrafingNoPhysics: - struct: EnumItem - Enum.HumanoidStateType.Swimming: - struct: EnumItem - Enum.IKCollisionsMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IKCollisionsMode.IncludeContactedMechanisms: - struct: EnumItem - Enum.IKCollisionsMode.NoCollisions: - struct: EnumItem - Enum.IKCollisionsMode.OtherMechanismsAnchored: - struct: EnumItem - Enum.IKControlType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IKControlType.LookAt: - struct: EnumItem - Enum.IKControlType.Position: - struct: EnumItem - Enum.IKControlType.Rotation: - struct: EnumItem - Enum.IKControlType.Transform: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorConnection: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorInvalidUser: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorJsonParse: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorTimedOut: - struct: EnumItem - Enum.IXPLoadingStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IXPLoadingStatus.Initialized: - struct: EnumItem - Enum.IXPLoadingStatus.None: - struct: EnumItem - Enum.IXPLoadingStatus.Pending: - struct: EnumItem - Enum.InOut.Center: - struct: EnumItem - Enum.InOut.Edge: - struct: EnumItem - Enum.InOut.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InOut.Inset: - struct: EnumItem - Enum.InfoType.Asset: - struct: EnumItem - Enum.InfoType.Bundle: - struct: EnumItem - Enum.InfoType.GamePass: - struct: EnumItem - Enum.InfoType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InfoType.Product: - struct: EnumItem - Enum.InfoType.Subscription: - struct: EnumItem - Enum.InitialDockState.Bottom: - struct: EnumItem - Enum.InitialDockState.Float: - struct: EnumItem - Enum.InitialDockState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InitialDockState.Left: - struct: EnumItem - Enum.InitialDockState.Right: - struct: EnumItem - Enum.InitialDockState.Top: - struct: EnumItem - Enum.InputType.Action1: - struct: EnumItem - deprecated: - message: Enum.InputType.Action1 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action2: - struct: EnumItem - deprecated: - message: Enum.InputType.Action2 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action3: - struct: EnumItem - deprecated: - message: Enum.InputType.Action3 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action4: - struct: EnumItem - deprecated: - message: Enum.InputType.Action4 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action5: - struct: EnumItem - deprecated: - message: Enum.InputType.Action5 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Constant: - struct: EnumItem - Enum.InputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InputType.LeftTread: - struct: EnumItem - deprecated: - message: Enum.InputType.LeftTread was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.NoInput: - struct: EnumItem - Enum.InputType.RightTread: - struct: EnumItem - deprecated: - message: Enum.InputType.RightTread was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Sin: - struct: EnumItem - Enum.InputType.Steer: - struct: EnumItem - deprecated: - message: Enum.InputType.Steer was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Throtle: - struct: EnumItem - deprecated: - message: Enum.InputType.Throtle was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Throttle: - struct: EnumItem - deprecated: - message: Enum.InputType.Throttle was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.UpDown: - struct: EnumItem - deprecated: - message: Enum.InputType.UpDown was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InterpolationThrottlingMode.Default: - struct: EnumItem - Enum.InterpolationThrottlingMode.Disabled: - struct: EnumItem - Enum.InterpolationThrottlingMode.Enabled: - struct: EnumItem - Enum.InterpolationThrottlingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.JointCreationMode.All: - struct: EnumItem - Enum.JointCreationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.JointCreationMode.None: - struct: EnumItem - Enum.JointCreationMode.Surface: - struct: EnumItem - Enum.KeyCode.A: - struct: EnumItem - Enum.KeyCode.Ampersand: - struct: EnumItem - Enum.KeyCode.Asterisk: - struct: EnumItem - Enum.KeyCode.At: - struct: EnumItem - Enum.KeyCode.B: - struct: EnumItem - Enum.KeyCode.BackSlash: - struct: EnumItem - Enum.KeyCode.Backquote: - struct: EnumItem - Enum.KeyCode.Backspace: - struct: EnumItem - Enum.KeyCode.Break: - struct: EnumItem - Enum.KeyCode.ButtonA: - struct: EnumItem - Enum.KeyCode.ButtonB: - struct: EnumItem - Enum.KeyCode.ButtonL1: - struct: EnumItem - Enum.KeyCode.ButtonL2: - struct: EnumItem - Enum.KeyCode.ButtonL3: - struct: EnumItem - Enum.KeyCode.ButtonR1: - struct: EnumItem - Enum.KeyCode.ButtonR2: - struct: EnumItem - Enum.KeyCode.ButtonR3: - struct: EnumItem - Enum.KeyCode.ButtonSelect: - struct: EnumItem - Enum.KeyCode.ButtonStart: - struct: EnumItem - Enum.KeyCode.ButtonX: - struct: EnumItem - Enum.KeyCode.ButtonY: - struct: EnumItem - Enum.KeyCode.C: - struct: EnumItem - Enum.KeyCode.CapsLock: - struct: EnumItem - Enum.KeyCode.Caret: - struct: EnumItem - Enum.KeyCode.Clear: - struct: EnumItem - Enum.KeyCode.Colon: - struct: EnumItem - Enum.KeyCode.Comma: - struct: EnumItem - Enum.KeyCode.Compose: - struct: EnumItem - Enum.KeyCode.D: - struct: EnumItem - Enum.KeyCode.DPadDown: - struct: EnumItem - Enum.KeyCode.DPadLeft: - struct: EnumItem - Enum.KeyCode.DPadRight: - struct: EnumItem - Enum.KeyCode.DPadUp: - struct: EnumItem - Enum.KeyCode.Delete: - struct: EnumItem - Enum.KeyCode.Dollar: - struct: EnumItem - Enum.KeyCode.Down: - struct: EnumItem - Enum.KeyCode.E: - struct: EnumItem - Enum.KeyCode.Eight: - struct: EnumItem - Enum.KeyCode.End: - struct: EnumItem - Enum.KeyCode.Equals: - struct: EnumItem - Enum.KeyCode.Escape: - struct: EnumItem - Enum.KeyCode.Euro: - struct: EnumItem - Enum.KeyCode.F: - struct: EnumItem - Enum.KeyCode.F1: - struct: EnumItem - Enum.KeyCode.F10: - struct: EnumItem - Enum.KeyCode.F11: - struct: EnumItem - Enum.KeyCode.F12: - struct: EnumItem - Enum.KeyCode.F13: - struct: EnumItem - Enum.KeyCode.F14: - struct: EnumItem - Enum.KeyCode.F15: - struct: EnumItem - Enum.KeyCode.F2: - struct: EnumItem - Enum.KeyCode.F3: - struct: EnumItem - Enum.KeyCode.F4: - struct: EnumItem - Enum.KeyCode.F5: - struct: EnumItem - Enum.KeyCode.F6: - struct: EnumItem - Enum.KeyCode.F7: - struct: EnumItem - Enum.KeyCode.F8: - struct: EnumItem - Enum.KeyCode.F9: - struct: EnumItem - Enum.KeyCode.Five: - struct: EnumItem - Enum.KeyCode.Four: - struct: EnumItem - Enum.KeyCode.G: - struct: EnumItem - Enum.KeyCode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeyCode.GreaterThan: - struct: EnumItem - Enum.KeyCode.H: - struct: EnumItem - Enum.KeyCode.Hash: - struct: EnumItem - Enum.KeyCode.Help: - struct: EnumItem - Enum.KeyCode.Home: - struct: EnumItem - Enum.KeyCode.I: - struct: EnumItem - Enum.KeyCode.Insert: - struct: EnumItem - Enum.KeyCode.J: - struct: EnumItem - Enum.KeyCode.K: - struct: EnumItem - Enum.KeyCode.KeypadDivide: - struct: EnumItem - Enum.KeyCode.KeypadEight: - struct: EnumItem - Enum.KeyCode.KeypadEnter: - struct: EnumItem - Enum.KeyCode.KeypadEquals: - struct: EnumItem - Enum.KeyCode.KeypadFive: - struct: EnumItem - Enum.KeyCode.KeypadFour: - struct: EnumItem - Enum.KeyCode.KeypadMinus: - struct: EnumItem - Enum.KeyCode.KeypadMultiply: - struct: EnumItem - Enum.KeyCode.KeypadNine: - struct: EnumItem - Enum.KeyCode.KeypadOne: - struct: EnumItem - Enum.KeyCode.KeypadPeriod: - struct: EnumItem - Enum.KeyCode.KeypadPlus: - struct: EnumItem - Enum.KeyCode.KeypadSeven: - struct: EnumItem - Enum.KeyCode.KeypadSix: - struct: EnumItem - Enum.KeyCode.KeypadThree: - struct: EnumItem - Enum.KeyCode.KeypadTwo: - struct: EnumItem - Enum.KeyCode.KeypadZero: - struct: EnumItem - Enum.KeyCode.L: - struct: EnumItem - Enum.KeyCode.Left: - struct: EnumItem - Enum.KeyCode.LeftAlt: - struct: EnumItem - Enum.KeyCode.LeftBracket: - struct: EnumItem - Enum.KeyCode.LeftControl: - struct: EnumItem - Enum.KeyCode.LeftCurly: - struct: EnumItem - Enum.KeyCode.LeftMeta: - struct: EnumItem - Enum.KeyCode.LeftParenthesis: - struct: EnumItem - Enum.KeyCode.LeftShift: - struct: EnumItem - Enum.KeyCode.LeftSuper: - struct: EnumItem - Enum.KeyCode.LessThan: - struct: EnumItem - Enum.KeyCode.M: - struct: EnumItem - Enum.KeyCode.Menu: - struct: EnumItem - Enum.KeyCode.Minus: - struct: EnumItem - Enum.KeyCode.Mode: - struct: EnumItem - Enum.KeyCode.N: - struct: EnumItem - Enum.KeyCode.Nine: - struct: EnumItem - Enum.KeyCode.NumLock: - struct: EnumItem - Enum.KeyCode.O: - struct: EnumItem - Enum.KeyCode.One: - struct: EnumItem - Enum.KeyCode.P: - struct: EnumItem - Enum.KeyCode.PageDown: - struct: EnumItem - Enum.KeyCode.PageUp: - struct: EnumItem - Enum.KeyCode.Pause: - struct: EnumItem - Enum.KeyCode.Percent: - struct: EnumItem - Enum.KeyCode.Period: - struct: EnumItem - Enum.KeyCode.Pipe: - struct: EnumItem - Enum.KeyCode.Plus: - struct: EnumItem - Enum.KeyCode.Power: - struct: EnumItem - Enum.KeyCode.Print: - struct: EnumItem - Enum.KeyCode.Q: - struct: EnumItem - Enum.KeyCode.Question: - struct: EnumItem - Enum.KeyCode.Quote: - struct: EnumItem - Enum.KeyCode.QuotedDouble: - struct: EnumItem - Enum.KeyCode.R: - struct: EnumItem - Enum.KeyCode.Return: - struct: EnumItem - Enum.KeyCode.Right: - struct: EnumItem - Enum.KeyCode.RightAlt: - struct: EnumItem - Enum.KeyCode.RightBracket: - struct: EnumItem - Enum.KeyCode.RightControl: - struct: EnumItem - Enum.KeyCode.RightCurly: - struct: EnumItem - Enum.KeyCode.RightMeta: - struct: EnumItem - Enum.KeyCode.RightParenthesis: - struct: EnumItem - Enum.KeyCode.RightShift: - struct: EnumItem - Enum.KeyCode.RightSuper: - struct: EnumItem - Enum.KeyCode.S: - struct: EnumItem - Enum.KeyCode.ScrollLock: - struct: EnumItem - Enum.KeyCode.Semicolon: - struct: EnumItem - Enum.KeyCode.Seven: - struct: EnumItem - Enum.KeyCode.Six: - struct: EnumItem - Enum.KeyCode.Slash: - struct: EnumItem - Enum.KeyCode.Space: - struct: EnumItem - Enum.KeyCode.SysReq: - struct: EnumItem - Enum.KeyCode.T: - struct: EnumItem - Enum.KeyCode.Tab: - struct: EnumItem - Enum.KeyCode.Three: - struct: EnumItem - Enum.KeyCode.Thumbstick1: - struct: EnumItem - Enum.KeyCode.Thumbstick2: - struct: EnumItem - Enum.KeyCode.Tilde: - struct: EnumItem - Enum.KeyCode.Two: - struct: EnumItem - Enum.KeyCode.U: - struct: EnumItem - Enum.KeyCode.Underscore: - struct: EnumItem - Enum.KeyCode.Undo: - struct: EnumItem - Enum.KeyCode.Unknown: - struct: EnumItem - Enum.KeyCode.Up: - struct: EnumItem - Enum.KeyCode.V: - struct: EnumItem - Enum.KeyCode.W: - struct: EnumItem - Enum.KeyCode.World0: - struct: EnumItem - Enum.KeyCode.World1: - struct: EnumItem - Enum.KeyCode.World10: - struct: EnumItem - Enum.KeyCode.World11: - struct: EnumItem - Enum.KeyCode.World12: - struct: EnumItem - Enum.KeyCode.World13: - struct: EnumItem - Enum.KeyCode.World14: - struct: EnumItem - Enum.KeyCode.World15: - struct: EnumItem - Enum.KeyCode.World16: - struct: EnumItem - Enum.KeyCode.World17: - struct: EnumItem - Enum.KeyCode.World18: - struct: EnumItem - Enum.KeyCode.World19: - struct: EnumItem - Enum.KeyCode.World2: - struct: EnumItem - Enum.KeyCode.World20: - struct: EnumItem - Enum.KeyCode.World21: - struct: EnumItem - Enum.KeyCode.World22: - struct: EnumItem - Enum.KeyCode.World23: - struct: EnumItem - Enum.KeyCode.World24: - struct: EnumItem - Enum.KeyCode.World25: - struct: EnumItem - Enum.KeyCode.World26: - struct: EnumItem - Enum.KeyCode.World27: - struct: EnumItem - Enum.KeyCode.World28: - struct: EnumItem - Enum.KeyCode.World29: - struct: EnumItem - Enum.KeyCode.World3: - struct: EnumItem - Enum.KeyCode.World30: - struct: EnumItem - Enum.KeyCode.World31: - struct: EnumItem - Enum.KeyCode.World32: - struct: EnumItem - Enum.KeyCode.World33: - struct: EnumItem - Enum.KeyCode.World34: - struct: EnumItem - Enum.KeyCode.World35: - struct: EnumItem - Enum.KeyCode.World36: - struct: EnumItem - Enum.KeyCode.World37: - struct: EnumItem - Enum.KeyCode.World38: - struct: EnumItem - Enum.KeyCode.World39: - struct: EnumItem - Enum.KeyCode.World4: - struct: EnumItem - Enum.KeyCode.World40: - struct: EnumItem - Enum.KeyCode.World41: - struct: EnumItem - Enum.KeyCode.World42: - struct: EnumItem - Enum.KeyCode.World43: - struct: EnumItem - Enum.KeyCode.World44: - struct: EnumItem - Enum.KeyCode.World45: - struct: EnumItem - Enum.KeyCode.World46: - struct: EnumItem - Enum.KeyCode.World47: - struct: EnumItem - Enum.KeyCode.World48: - struct: EnumItem - Enum.KeyCode.World49: - struct: EnumItem - Enum.KeyCode.World5: - struct: EnumItem - Enum.KeyCode.World50: - struct: EnumItem - Enum.KeyCode.World51: - struct: EnumItem - Enum.KeyCode.World52: - struct: EnumItem - Enum.KeyCode.World53: - struct: EnumItem - Enum.KeyCode.World54: - struct: EnumItem - Enum.KeyCode.World55: - struct: EnumItem - Enum.KeyCode.World56: - struct: EnumItem - Enum.KeyCode.World57: - struct: EnumItem - Enum.KeyCode.World58: - struct: EnumItem - Enum.KeyCode.World59: - struct: EnumItem - Enum.KeyCode.World6: - struct: EnumItem - Enum.KeyCode.World60: - struct: EnumItem - Enum.KeyCode.World61: - struct: EnumItem - Enum.KeyCode.World62: - struct: EnumItem - Enum.KeyCode.World63: - struct: EnumItem - Enum.KeyCode.World64: - struct: EnumItem - Enum.KeyCode.World65: - struct: EnumItem - Enum.KeyCode.World66: - struct: EnumItem - Enum.KeyCode.World67: - struct: EnumItem - Enum.KeyCode.World68: - struct: EnumItem - Enum.KeyCode.World69: - struct: EnumItem - Enum.KeyCode.World7: - struct: EnumItem - Enum.KeyCode.World70: - struct: EnumItem - Enum.KeyCode.World71: - struct: EnumItem - Enum.KeyCode.World72: - struct: EnumItem - Enum.KeyCode.World73: - struct: EnumItem - Enum.KeyCode.World74: - struct: EnumItem - Enum.KeyCode.World75: - struct: EnumItem - Enum.KeyCode.World76: - struct: EnumItem - Enum.KeyCode.World77: - struct: EnumItem - Enum.KeyCode.World78: - struct: EnumItem - Enum.KeyCode.World79: - struct: EnumItem - Enum.KeyCode.World8: - struct: EnumItem - Enum.KeyCode.World80: - struct: EnumItem - Enum.KeyCode.World81: - struct: EnumItem - Enum.KeyCode.World82: - struct: EnumItem - Enum.KeyCode.World83: - struct: EnumItem - Enum.KeyCode.World84: - struct: EnumItem - Enum.KeyCode.World85: - struct: EnumItem - Enum.KeyCode.World86: - struct: EnumItem - Enum.KeyCode.World87: - struct: EnumItem - Enum.KeyCode.World88: - struct: EnumItem - Enum.KeyCode.World89: - struct: EnumItem - Enum.KeyCode.World9: - struct: EnumItem - Enum.KeyCode.World90: - struct: EnumItem - Enum.KeyCode.World91: - struct: EnumItem - Enum.KeyCode.World92: - struct: EnumItem - Enum.KeyCode.World93: - struct: EnumItem - Enum.KeyCode.World94: - struct: EnumItem - Enum.KeyCode.World95: - struct: EnumItem - Enum.KeyCode.X: - struct: EnumItem - Enum.KeyCode.Y: - struct: EnumItem - Enum.KeyCode.Z: - struct: EnumItem - Enum.KeyCode.Zero: - struct: EnumItem - Enum.KeyInterpolationMode.Constant: - struct: EnumItem - Enum.KeyInterpolationMode.Cubic: - struct: EnumItem - Enum.KeyInterpolationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeyInterpolationMode.Linear: - struct: EnumItem - Enum.KeywordFilterType.Exclude: - struct: EnumItem - Enum.KeywordFilterType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeywordFilterType.Include: - struct: EnumItem - Enum.Language.Default: - struct: EnumItem - Enum.Language.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LeftRight.Center: - struct: EnumItem - Enum.LeftRight.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LeftRight.Left: - struct: EnumItem - Enum.LeftRight.Right: - struct: EnumItem - Enum.Limb.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Limb.Head: - struct: EnumItem - Enum.Limb.LeftArm: - struct: EnumItem - Enum.Limb.LeftLeg: - struct: EnumItem - Enum.Limb.RightArm: - struct: EnumItem - Enum.Limb.RightLeg: - struct: EnumItem - Enum.Limb.Torso: - struct: EnumItem - Enum.Limb.Unknown: - struct: EnumItem - Enum.LineJoinMode.Bevel: - struct: EnumItem - Enum.LineJoinMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LineJoinMode.Miter: - struct: EnumItem - Enum.LineJoinMode.Round: - struct: EnumItem - Enum.ListDisplayMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ListDisplayMode.Horizontal: - struct: EnumItem - Enum.ListDisplayMode.Vertical: - struct: EnumItem - Enum.ListenerType.CFrame: - struct: EnumItem - Enum.ListenerType.Camera: - struct: EnumItem - Enum.ListenerType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ListenerType.ObjectCFrame: - struct: EnumItem - Enum.ListenerType.ObjectPosition: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Default: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Disabled: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Enabled: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LoadDynamicHeads.Default: - struct: EnumItem - Enum.LoadDynamicHeads.Disabled: - struct: EnumItem - Enum.LoadDynamicHeads.Enabled: - struct: EnumItem - Enum.LoadDynamicHeads.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MarkupKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MarkupKind.Markdown: - struct: EnumItem - Enum.MarkupKind.PlainText: - struct: EnumItem - Enum.Material.Air: - struct: EnumItem - Enum.Material.Aluminum: - struct: EnumItem - deprecated: - message: Enum.Material.Aluminum was replaced with Enum.Material.Foil - replace: - - Enum.Material.Foil - Enum.Material.Asphalt: - struct: EnumItem - Enum.Material.Basalt: - struct: EnumItem - Enum.Material.Brick: - struct: EnumItem - Enum.Material.Cobblestone: - struct: EnumItem - Enum.Material.Concrete: - struct: EnumItem - Enum.Material.Corroded Metal: - struct: EnumItem - deprecated: - message: Enum.Material.Corroded Metal was replaced with Enum.Material.CorrodedMetal - replace: - - Enum.Material.CorrodedMetal - Enum.Material.CorrodedMetal: - struct: EnumItem - Enum.Material.CrackedLava: - struct: EnumItem - Enum.Material.DiamondPlate: - struct: EnumItem - Enum.Material.Fabric: - struct: EnumItem - Enum.Material.Foil: - struct: EnumItem - Enum.Material.ForceField: - struct: EnumItem - Enum.Material.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Material.Glacier: - struct: EnumItem - Enum.Material.Glass: - struct: EnumItem - Enum.Material.Granite: - struct: EnumItem - Enum.Material.Grass: - struct: EnumItem - Enum.Material.Ground: - struct: EnumItem - Enum.Material.Ice: - struct: EnumItem - Enum.Material.LeafyGrass: - struct: EnumItem - Enum.Material.Limestone: - struct: EnumItem - Enum.Material.Marble: - struct: EnumItem - Enum.Material.Metal: - struct: EnumItem - Enum.Material.Mud: - struct: EnumItem - Enum.Material.Neon: - struct: EnumItem - Enum.Material.Pavement: - struct: EnumItem - Enum.Material.Pebble: - struct: EnumItem - Enum.Material.Plastic: - struct: EnumItem - Enum.Material.Rock: - struct: EnumItem - Enum.Material.Salt: - struct: EnumItem - Enum.Material.Sand: - struct: EnumItem - Enum.Material.Sandstone: - struct: EnumItem - Enum.Material.Slate: - struct: EnumItem - Enum.Material.SmoothPlastic: - struct: EnumItem - Enum.Material.Snow: - struct: EnumItem - Enum.Material.Water: - struct: EnumItem - Enum.Material.Wood: - struct: EnumItem - Enum.Material.WoodPlanks: - struct: EnumItem - Enum.MaterialPattern.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MaterialPattern.Organic: - struct: EnumItem - Enum.MaterialPattern.Regular: - struct: EnumItem - Enum.MembershipType.BuildersClub: - struct: EnumItem - Enum.MembershipType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MembershipType.None: - struct: EnumItem - Enum.MembershipType.OutrageousBuildersClub: - struct: EnumItem - Enum.MembershipType.Premium: - struct: EnumItem - Enum.MembershipType.TurboBuildersClub: - struct: EnumItem - Enum.MeshPartDetailLevel.DistanceBased: - struct: EnumItem - Enum.MeshPartDetailLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshPartDetailLevel.Level00: - struct: EnumItem - Enum.MeshPartDetailLevel.Level01: - struct: EnumItem - Enum.MeshPartDetailLevel.Level02: - struct: EnumItem - Enum.MeshPartDetailLevel.Level03: - struct: EnumItem - Enum.MeshPartDetailLevel.Level04: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Default: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Disabled: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Enabled: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshScaleUnit.CM: - struct: EnumItem - Enum.MeshScaleUnit.Foot: - struct: EnumItem - Enum.MeshScaleUnit.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshScaleUnit.Inch: - struct: EnumItem - Enum.MeshScaleUnit.MM: - struct: EnumItem - Enum.MeshScaleUnit.Meter: - struct: EnumItem - Enum.MeshScaleUnit.Stud: - struct: EnumItem - Enum.MeshType.Brick: - struct: EnumItem - Enum.MeshType.CornerWedge: - struct: EnumItem - Enum.MeshType.Cylinder: - struct: EnumItem - Enum.MeshType.FileMesh: - struct: EnumItem - Enum.MeshType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshType.Head: - struct: EnumItem - Enum.MeshType.ParallelRamp: - struct: EnumItem - Enum.MeshType.Prism: - struct: EnumItem - Enum.MeshType.Pyramid: - struct: EnumItem - Enum.MeshType.RightAngleRamp: - struct: EnumItem - Enum.MeshType.Sphere: - struct: EnumItem - Enum.MeshType.Torso: - struct: EnumItem - Enum.MeshType.Wedge: - struct: EnumItem - Enum.MessageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MessageType.MessageError: - struct: EnumItem - Enum.MessageType.MessageInfo: - struct: EnumItem - Enum.MessageType.MessageOutput: - struct: EnumItem - Enum.MessageType.MessageWarning: - struct: EnumItem - Enum.ModelLevelOfDetail.Automatic: - struct: EnumItem - Enum.ModelLevelOfDetail.Disabled: - struct: EnumItem - Enum.ModelLevelOfDetail.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModelLevelOfDetail.StreamingMesh: - struct: EnumItem - Enum.ModelStreamingMode.Atomic: - struct: EnumItem - Enum.ModelStreamingMode.Default: - struct: EnumItem - Enum.ModelStreamingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModelStreamingMode.Nonatomic: - struct: EnumItem - Enum.ModelStreamingMode.Persistent: - struct: EnumItem - Enum.ModelStreamingMode.PersistentPerPlayer: - struct: EnumItem - Enum.ModifierKey.Alt: - struct: EnumItem - Enum.ModifierKey.Ctrl: - struct: EnumItem - Enum.ModifierKey.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModifierKey.Meta: - struct: EnumItem - Enum.ModifierKey.Shift: - struct: EnumItem - Enum.MouseBehavior.Default: - struct: EnumItem - Enum.MouseBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MouseBehavior.LockCenter: - struct: EnumItem - Enum.MouseBehavior.LockCurrentPosition: - struct: EnumItem - Enum.MoveState.AirFree: - struct: EnumItem - Enum.MoveState.Coasting: - struct: EnumItem - Enum.MoveState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MoveState.Pushing: - struct: EnumItem - Enum.MoveState.Stopped: - struct: EnumItem - Enum.MoveState.Stopping: - struct: EnumItem - Enum.MuteState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MuteState.Muted: - struct: EnumItem - Enum.MuteState.Unmuted: - struct: EnumItem - Enum.NameOcclusion.EnemyOcclusion: - struct: EnumItem - Enum.NameOcclusion.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NameOcclusion.NoOcclusion: - struct: EnumItem - Enum.NameOcclusion.OccludeAll: - struct: EnumItem - Enum.NetworkOwnership.Automatic: - struct: EnumItem - Enum.NetworkOwnership.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NetworkOwnership.Manual: - struct: EnumItem - Enum.NetworkOwnership.OnContact: - struct: EnumItem - Enum.NormalId.Back: - struct: EnumItem - Enum.NormalId.Bottom: - struct: EnumItem - Enum.NormalId.Front: - struct: EnumItem - Enum.NormalId.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NormalId.Left: - struct: EnumItem - Enum.NormalId.Right: - struct: EnumItem - Enum.NormalId.Top: - struct: EnumItem - Enum.OrientationAlignmentMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OrientationAlignmentMode.OneAttachment: - struct: EnumItem - Enum.OrientationAlignmentMode.TwoAttachment: - struct: EnumItem - Enum.OutfitSource.All: - struct: EnumItem - Enum.OutfitSource.Created: - struct: EnumItem - Enum.OutfitSource.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutfitSource.Purchased: - struct: EnumItem - Enum.OutfitType.All: - struct: EnumItem - Enum.OutfitType.Avatar: - struct: EnumItem - Enum.OutfitType.DynamicHead: - struct: EnumItem - Enum.OutfitType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutputLayoutMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutputLayoutMode.Horizontal: - struct: EnumItem - Enum.OutputLayoutMode.Vertical: - struct: EnumItem - Enum.OverrideMouseIconBehavior.ForceHide: - struct: EnumItem - Enum.OverrideMouseIconBehavior.ForceShow: - struct: EnumItem - Enum.OverrideMouseIconBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OverrideMouseIconBehavior.None: - struct: EnumItem - Enum.PackagePermission.Edit: - struct: EnumItem - Enum.PackagePermission.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PackagePermission.NoAccess: - struct: EnumItem - Enum.PackagePermission.None: - struct: EnumItem - Enum.PackagePermission.Own: - struct: EnumItem - Enum.PackagePermission.Revoked: - struct: EnumItem - Enum.PackagePermission.UseView: - struct: EnumItem - Enum.PartType.Ball: - struct: EnumItem - Enum.PartType.Block: - struct: EnumItem - Enum.PartType.Cylinder: - struct: EnumItem - Enum.PartType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShape.Box: - struct: EnumItem - Enum.ParticleEmitterShape.Cylinder: - struct: EnumItem - Enum.ParticleEmitterShape.Disc: - struct: EnumItem - Enum.ParticleEmitterShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShape.Sphere: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShapeInOut.InAndOut: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.Inward: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.Outward: - struct: EnumItem - Enum.ParticleEmitterShapeStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShapeStyle.Surface: - struct: EnumItem - Enum.ParticleEmitterShapeStyle.Volume: - struct: EnumItem - Enum.ParticleFlipbookLayout.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookLayout.Grid2x2: - struct: EnumItem - Enum.ParticleFlipbookLayout.Grid4x4: - struct: EnumItem - Enum.ParticleFlipbookLayout.Grid8x8: - struct: EnumItem - Enum.ParticleFlipbookLayout.None: - struct: EnumItem - Enum.ParticleFlipbookMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookMode.Loop: - struct: EnumItem - Enum.ParticleFlipbookMode.OneShot: - struct: EnumItem - Enum.ParticleFlipbookMode.PingPong: - struct: EnumItem - Enum.ParticleFlipbookMode.Random: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.Compatible: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookTextureCompatible.NotCompatible: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.Unknown: - struct: EnumItem - Enum.ParticleOrientation.FacingCamera: - struct: EnumItem - Enum.ParticleOrientation.FacingCameraWorldUp: - struct: EnumItem - Enum.ParticleOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleOrientation.VelocityParallel: - struct: EnumItem - Enum.ParticleOrientation.VelocityPerpendicular: - struct: EnumItem - Enum.PathStatus.ClosestNoPath: - struct: EnumItem - Enum.PathStatus.ClosestOutOfRange: - struct: EnumItem - Enum.PathStatus.FailFinishNotEmpty: - struct: EnumItem - Enum.PathStatus.FailStartNotEmpty: - struct: EnumItem - Enum.PathStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PathStatus.NoPath: - struct: EnumItem - Enum.PathStatus.Success: - struct: EnumItem - Enum.PathWaypointAction.Custom: - struct: EnumItem - Enum.PathWaypointAction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PathWaypointAction.Jump: - struct: EnumItem - Enum.PathWaypointAction.Walk: - struct: EnumItem - Enum.PermissionLevelShown.Game: - struct: EnumItem - Enum.PermissionLevelShown.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PermissionLevelShown.Roblox: - struct: EnumItem - Enum.PermissionLevelShown.RobloxGame: - struct: EnumItem - Enum.PermissionLevelShown.RobloxScript: - struct: EnumItem - Enum.PermissionLevelShown.Studio: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed120Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed240Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed60Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PhysicsSteppingMethod.Adaptive: - struct: EnumItem - Enum.PhysicsSteppingMethod.Default: - struct: EnumItem - Enum.PhysicsSteppingMethod.Fixed: - struct: EnumItem - Enum.PhysicsSteppingMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Platform.Android: - struct: EnumItem - Enum.Platform.AndroidTV: - struct: EnumItem - Enum.Platform.BeOS: - struct: EnumItem - Enum.Platform.Chromecast: - struct: EnumItem - Enum.Platform.DOS: - struct: EnumItem - Enum.Platform.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Platform.IOS: - struct: EnumItem - Enum.Platform.Linux: - struct: EnumItem - Enum.Platform.NX: - struct: EnumItem - Enum.Platform.None: - struct: EnumItem - Enum.Platform.OSX: - struct: EnumItem - Enum.Platform.Ouya: - struct: EnumItem - Enum.Platform.PS3: - struct: EnumItem - Enum.Platform.PS4: - struct: EnumItem - Enum.Platform.SteamOS: - struct: EnumItem - Enum.Platform.UWP: - struct: EnumItem - Enum.Platform.WebOS: - struct: EnumItem - Enum.Platform.WiiU: - struct: EnumItem - Enum.Platform.Windows: - struct: EnumItem - Enum.Platform.XBox360: - struct: EnumItem - Enum.Platform.XBoxOne: - struct: EnumItem - Enum.PlaybackState.Begin: - struct: EnumItem - Enum.PlaybackState.Cancelled: - struct: EnumItem - Enum.PlaybackState.Completed: - struct: EnumItem - Enum.PlaybackState.Delayed: - struct: EnumItem - Enum.PlaybackState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlaybackState.Paused: - struct: EnumItem - Enum.PlaybackState.Playing: - struct: EnumItem - Enum.PlayerActions.CharacterBackward: - struct: EnumItem - Enum.PlayerActions.CharacterForward: - struct: EnumItem - Enum.PlayerActions.CharacterJump: - struct: EnumItem - Enum.PlayerActions.CharacterLeft: - struct: EnumItem - Enum.PlayerActions.CharacterRight: - struct: EnumItem - Enum.PlayerActions.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlayerChatType.All: - struct: EnumItem - Enum.PlayerChatType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlayerChatType.Team: - struct: EnumItem - Enum.PlayerChatType.Whisper: - struct: EnumItem - Enum.PoseEasingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PoseEasingDirection.In: - struct: EnumItem - Enum.PoseEasingDirection.InOut: - struct: EnumItem - Enum.PoseEasingDirection.Out: - struct: EnumItem - Enum.PoseEasingStyle.Bounce: - struct: EnumItem - Enum.PoseEasingStyle.Constant: - struct: EnumItem - Enum.PoseEasingStyle.Cubic: - struct: EnumItem - Enum.PoseEasingStyle.Elastic: - struct: EnumItem - Enum.PoseEasingStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PoseEasingStyle.Linear: - struct: EnumItem - Enum.PositionAlignmentMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PositionAlignmentMode.OneAttachment: - struct: EnumItem - Enum.PositionAlignmentMode.TwoAttachment: - struct: EnumItem - Enum.PrivilegeType.Admin: - struct: EnumItem - Enum.PrivilegeType.Banned: - struct: EnumItem - Enum.PrivilegeType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PrivilegeType.Member: - struct: EnumItem - Enum.PrivilegeType.Owner: - struct: EnumItem - Enum.PrivilegeType.Visitor: - struct: EnumItem - Enum.ProductLocationRestriction.AllGames: - struct: EnumItem - Enum.ProductLocationRestriction.AllowedGames: - struct: EnumItem - Enum.ProductLocationRestriction.AvatarShop: - struct: EnumItem - Enum.ProductLocationRestriction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProductPurchaseDecision.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProductPurchaseDecision.NotProcessedYet: - struct: EnumItem - Enum.ProductPurchaseDecision.PurchaseGranted: - struct: EnumItem - Enum.PromptPublishAssetResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PromptPublishAssetResult.NoUserInput: - struct: EnumItem - Enum.PromptPublishAssetResult.PermissionDenied: - struct: EnumItem - Enum.PromptPublishAssetResult.Success: - struct: EnumItem - Enum.PromptPublishAssetResult.Timeout: - struct: EnumItem - Enum.PromptPublishAssetResult.UploadFailed: - struct: EnumItem - Enum.PropertyStatus.Error: - struct: EnumItem - Enum.PropertyStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PropertyStatus.Ok: - struct: EnumItem - Enum.PropertyStatus.Warning: - struct: EnumItem - Enum.ProximityPromptExclusivity.AlwaysShow: - struct: EnumItem - Enum.ProximityPromptExclusivity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProximityPromptExclusivity.OneGlobally: - struct: EnumItem - Enum.ProximityPromptExclusivity.OnePerButton: - struct: EnumItem - Enum.ProximityPromptInputType.Gamepad: - struct: EnumItem - Enum.ProximityPromptInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProximityPromptInputType.Keyboard: - struct: EnumItem - Enum.ProximityPromptInputType.Touch: - struct: EnumItem - Enum.ProximityPromptStyle.Custom: - struct: EnumItem - Enum.ProximityPromptStyle.Default: - struct: EnumItem - Enum.ProximityPromptStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.QualityLevel.Automatic: - struct: EnumItem - Enum.QualityLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.QualityLevel.Level 1: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 1 was replaced with Enum.QualityLevel.Level01 - replace: - - Enum.QualityLevel.Level01 - Enum.QualityLevel.Level 2: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 2 was replaced with Enum.QualityLevel.Level02 - replace: - - Enum.QualityLevel.Level02 - Enum.QualityLevel.Level 3: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 3 was replaced with Enum.QualityLevel.Level03 - replace: - - Enum.QualityLevel.Level03 - Enum.QualityLevel.Level 4: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 4 was replaced with Enum.QualityLevel.Level04 - replace: - - Enum.QualityLevel.Level04 - Enum.QualityLevel.Level 5: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 5 was replaced with Enum.QualityLevel.Level05 - replace: - - Enum.QualityLevel.Level05 - Enum.QualityLevel.Level 6: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 6 was replaced with Enum.QualityLevel.Level06 - replace: - - Enum.QualityLevel.Level06 - Enum.QualityLevel.Level 7: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 7 was replaced with Enum.QualityLevel.Level07 - replace: - - Enum.QualityLevel.Level07 - Enum.QualityLevel.Level 8: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 8 was replaced with Enum.QualityLevel.Level08 - replace: - - Enum.QualityLevel.Level08 - Enum.QualityLevel.Level 9: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 9 was replaced with Enum.QualityLevel.Level09 - replace: - - Enum.QualityLevel.Level09 - Enum.QualityLevel.Level 10: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 10 was replaced with Enum.QualityLevel.Level10 - replace: - - Enum.QualityLevel.Level10 - Enum.QualityLevel.Level 11: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 11 was replaced with Enum.QualityLevel.Level11 - replace: - - Enum.QualityLevel.Level11 - Enum.QualityLevel.Level 12: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 12 was replaced with Enum.QualityLevel.Level12 - replace: - - Enum.QualityLevel.Level12 - Enum.QualityLevel.Level 13: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 13 was replaced with Enum.QualityLevel.Level13 - replace: - - Enum.QualityLevel.Level13 - Enum.QualityLevel.Level 14: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 14 was replaced with Enum.QualityLevel.Level14 - replace: - - Enum.QualityLevel.Level14 - Enum.QualityLevel.Level 15: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 15 was replaced with Enum.QualityLevel.Level15 - replace: - - Enum.QualityLevel.Level15 - Enum.QualityLevel.Level 16: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 16 was replaced with Enum.QualityLevel.Level16 - replace: - - Enum.QualityLevel.Level16 - Enum.QualityLevel.Level 17: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 17 was replaced with Enum.QualityLevel.Level17 - replace: - - Enum.QualityLevel.Level17 - Enum.QualityLevel.Level 18: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 18 was replaced with Enum.QualityLevel.Level18 - replace: - - Enum.QualityLevel.Level18 - Enum.QualityLevel.Level 19: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 19 was replaced with Enum.QualityLevel.Level19 - replace: - - Enum.QualityLevel.Level19 - Enum.QualityLevel.Level 20: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 20 was replaced with Enum.QualityLevel.Level20 - replace: - - Enum.QualityLevel.Level20 - Enum.QualityLevel.Level 21: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 21 was replaced with Enum.QualityLevel.Level21 - replace: - - Enum.QualityLevel.Level21 - Enum.QualityLevel.Level01: - struct: EnumItem - Enum.QualityLevel.Level02: - struct: EnumItem - Enum.QualityLevel.Level03: - struct: EnumItem - Enum.QualityLevel.Level04: - struct: EnumItem - Enum.QualityLevel.Level05: - struct: EnumItem - Enum.QualityLevel.Level06: - struct: EnumItem - Enum.QualityLevel.Level07: - struct: EnumItem - Enum.QualityLevel.Level08: - struct: EnumItem - Enum.QualityLevel.Level09: - struct: EnumItem - Enum.QualityLevel.Level10: - struct: EnumItem - Enum.QualityLevel.Level11: - struct: EnumItem - Enum.QualityLevel.Level12: - struct: EnumItem - Enum.QualityLevel.Level13: - struct: EnumItem - Enum.QualityLevel.Level14: - struct: EnumItem - Enum.QualityLevel.Level15: - struct: EnumItem - Enum.QualityLevel.Level16: - struct: EnumItem - Enum.QualityLevel.Level17: - struct: EnumItem - Enum.QualityLevel.Level18: - struct: EnumItem - Enum.QualityLevel.Level19: - struct: EnumItem - Enum.QualityLevel.Level20: - struct: EnumItem - Enum.QualityLevel.Level21: - struct: EnumItem - Enum.R15CollisionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.R15CollisionType.InnerBox: - struct: EnumItem - Enum.R15CollisionType.OuterBox: - struct: EnumItem - Enum.RaycastFilterType.Blacklist: - struct: EnumItem - deprecated: - message: Enum.RaycastFilterType.Blacklist was replaced with Enum.RaycastFilterType.Exclude - replace: - - Enum.RaycastFilterType.Exclude - Enum.RaycastFilterType.Exclude: - struct: EnumItem - Enum.RaycastFilterType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RaycastFilterType.Include: - struct: EnumItem - Enum.RaycastFilterType.Whitelist: - struct: EnumItem - deprecated: - message: Enum.RaycastFilterType.Whitelist was replaced with Enum.RaycastFilterType.Include - replace: - - Enum.RaycastFilterType.Include - Enum.RejectCharacterDeletions.Default: - struct: EnumItem - Enum.RejectCharacterDeletions.Disabled: - struct: EnumItem - Enum.RejectCharacterDeletions.Enabled: - struct: EnumItem - Enum.RejectCharacterDeletions.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderFidelity.Automatic: - struct: EnumItem - Enum.RenderFidelity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderFidelity.Performance: - struct: EnumItem - Enum.RenderFidelity.Precise: - struct: EnumItem - Enum.RenderPriority.Camera: - struct: EnumItem - Enum.RenderPriority.Character: - struct: EnumItem - Enum.RenderPriority.First: - struct: EnumItem - Enum.RenderPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderPriority.Input: - struct: EnumItem - Enum.RenderPriority.Last: - struct: EnumItem - Enum.RenderingTestComparisonMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderingTestComparisonMethod.diff: - struct: EnumItem - Enum.RenderingTestComparisonMethod.psnr: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Default: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Disabled: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Enabled: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ResamplerMode.Default: - struct: EnumItem - Enum.ResamplerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ResamplerMode.Pixelated: - struct: EnumItem - Enum.ReservedHighlightId.Active: - struct: EnumItem - Enum.ReservedHighlightId.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReservedHighlightId.Hover: - struct: EnumItem - Enum.ReservedHighlightId.Selection: - struct: EnumItem - Enum.ReservedHighlightId.Standard: - struct: EnumItem - Enum.ReturnKeyType.Default: - struct: EnumItem - Enum.ReturnKeyType.Done: - struct: EnumItem - Enum.ReturnKeyType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReturnKeyType.Go: - struct: EnumItem - Enum.ReturnKeyType.Next: - struct: EnumItem - Enum.ReturnKeyType.Search: - struct: EnumItem - Enum.ReturnKeyType.Send: - struct: EnumItem - Enum.ReverbType.Alley: - struct: EnumItem - Enum.ReverbType.Arena: - struct: EnumItem - Enum.ReverbType.Auditorium: - struct: EnumItem - Enum.ReverbType.Bathroom: - struct: EnumItem - Enum.ReverbType.CarpettedHallway: - struct: EnumItem - Enum.ReverbType.Cave: - struct: EnumItem - Enum.ReverbType.City: - struct: EnumItem - Enum.ReverbType.ConcertHall: - struct: EnumItem - Enum.ReverbType.Forest: - struct: EnumItem - Enum.ReverbType.GenericReverb: - struct: EnumItem - Enum.ReverbType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReverbType.Hallway: - struct: EnumItem - Enum.ReverbType.Hangar: - struct: EnumItem - Enum.ReverbType.LivingRoom: - struct: EnumItem - Enum.ReverbType.Mountains: - struct: EnumItem - Enum.ReverbType.NoReverb: - struct: EnumItem - Enum.ReverbType.PaddedCell: - struct: EnumItem - Enum.ReverbType.ParkingLot: - struct: EnumItem - Enum.ReverbType.Plain: - struct: EnumItem - Enum.ReverbType.Quarry: - struct: EnumItem - Enum.ReverbType.Room: - struct: EnumItem - Enum.ReverbType.SewerPipe: - struct: EnumItem - Enum.ReverbType.StoneCorridor: - struct: EnumItem - Enum.ReverbType.StoneRoom: - struct: EnumItem - Enum.ReverbType.UnderWater: - struct: EnumItem - Enum.RibbonTool.ColorPicker: - struct: EnumItem - Enum.RibbonTool.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RibbonTool.Group: - struct: EnumItem - Enum.RibbonTool.MaterialPicker: - struct: EnumItem - Enum.RibbonTool.Move: - struct: EnumItem - Enum.RibbonTool.None: - struct: EnumItem - Enum.RibbonTool.Rotate: - struct: EnumItem - Enum.RibbonTool.Scale: - struct: EnumItem - Enum.RibbonTool.Select: - struct: EnumItem - Enum.RibbonTool.Transform: - struct: EnumItem - Enum.RibbonTool.Ungroup: - struct: EnumItem - Enum.RigScale.Default: - struct: EnumItem - Enum.RigScale.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RigScale.Rthro: - struct: EnumItem - Enum.RigScale.RthroNarrow: - struct: EnumItem - Enum.RigType.Custom: - struct: EnumItem - Enum.RigType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RigType.None: - struct: EnumItem - Enum.RigType.R15: - struct: EnumItem - Enum.RigType.Rthro: - struct: EnumItem - Enum.RigType.RthroNarrow: - struct: EnumItem - Enum.RollOffMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RollOffMode.Inverse: - struct: EnumItem - Enum.RollOffMode.InverseTapered: - struct: EnumItem - Enum.RollOffMode.Linear: - struct: EnumItem - Enum.RollOffMode.LinearSquare: - struct: EnumItem - Enum.RotationOrder.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RotationOrder.XYZ: - struct: EnumItem - Enum.RotationOrder.XZY: - struct: EnumItem - Enum.RotationOrder.YXZ: - struct: EnumItem - Enum.RotationOrder.YZX: - struct: EnumItem - Enum.RotationOrder.ZXY: - struct: EnumItem - Enum.RotationOrder.ZYX: - struct: EnumItem - Enum.RotationType.CameraRelative: - struct: EnumItem - Enum.RotationType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RotationType.MovementRelative: - struct: EnumItem - Enum.RtlTextSupport.Default: - struct: EnumItem - Enum.RtlTextSupport.Disabled: - struct: EnumItem - Enum.RtlTextSupport.Enabled: - struct: EnumItem - Enum.RtlTextSupport.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RunContext.Client: - struct: EnumItem - Enum.RunContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RunContext.Legacy: - struct: EnumItem - Enum.RunContext.Plugin: - struct: EnumItem - Enum.RunContext.Server: - struct: EnumItem - Enum.RuntimeUndoBehavior.Aggregate: - struct: EnumItem - Enum.RuntimeUndoBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RuntimeUndoBehavior.Hybrid: - struct: EnumItem - Enum.RuntimeUndoBehavior.Snapshot: - struct: EnumItem - Enum.SafeAreaCompatibility.FullscreenExtension: - struct: EnumItem - Enum.SafeAreaCompatibility.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SafeAreaCompatibility.None: - struct: EnumItem - Enum.SalesTypeFilter.All: - struct: EnumItem - Enum.SalesTypeFilter.Collectibles: - struct: EnumItem - Enum.SalesTypeFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SalesTypeFilter.Premium: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadDistanceScale: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadFieldOfViewDeg: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadThumbnailType: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadYRotDeg: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SaveAvatarThumbnailCustomizationFailure.Other: - struct: EnumItem - Enum.SaveFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SaveFilter.SaveAll: - struct: EnumItem - Enum.SaveFilter.SaveGame: - struct: EnumItem - Enum.SaveFilter.SaveWorld: - struct: EnumItem - Enum.SavedQualitySetting.Automatic: - struct: EnumItem - Enum.SavedQualitySetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SavedQualitySetting.QualityLevel1: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel10: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel2: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel3: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel4: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel5: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel6: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel7: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel8: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel9: - struct: EnumItem - Enum.ScaleType.Crop: - struct: EnumItem - Enum.ScaleType.Fit: - struct: EnumItem - Enum.ScaleType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScaleType.Slice: - struct: EnumItem - Enum.ScaleType.Stretch: - struct: EnumItem - Enum.ScaleType.Tile: - struct: EnumItem - Enum.ScopeCheckResult.BackendError: - struct: EnumItem - Enum.ScopeCheckResult.ConsentAccepted: - struct: EnumItem - Enum.ScopeCheckResult.ConsentDenied: - struct: EnumItem - Enum.ScopeCheckResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScopeCheckResult.InvalidArgument: - struct: EnumItem - Enum.ScopeCheckResult.InvalidScopes: - struct: EnumItem - Enum.ScopeCheckResult.NoUserInput: - struct: EnumItem - Enum.ScopeCheckResult.Timeout: - struct: EnumItem - Enum.ScopeCheckResult.UnexpectedError: - struct: EnumItem - Enum.ScreenInsets.CoreUISafeInsets: - struct: EnumItem - Enum.ScreenInsets.DeviceSafeInsets: - struct: EnumItem - Enum.ScreenInsets.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScreenInsets.None: - struct: EnumItem - Enum.ScreenOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScreenOrientation.LandscapeLeft: - struct: EnumItem - Enum.ScreenOrientation.LandscapeRight: - struct: EnumItem - Enum.ScreenOrientation.LandscapeSensor: - struct: EnumItem - Enum.ScreenOrientation.Portrait: - struct: EnumItem - Enum.ScreenOrientation.Sensor: - struct: EnumItem - Enum.ScrollBarInset.Always: - struct: EnumItem - Enum.ScrollBarInset.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScrollBarInset.None: - struct: EnumItem - Enum.ScrollBarInset.ScrollBar: - struct: EnumItem - Enum.ScrollingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScrollingDirection.X: - struct: EnumItem - Enum.ScrollingDirection.XY: - struct: EnumItem - Enum.ScrollingDirection.Y: - struct: EnumItem - Enum.SelectionBehavior.Escape: - struct: EnumItem - Enum.SelectionBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SelectionBehavior.Stop: - struct: EnumItem - Enum.SensorMode.Floor: - struct: EnumItem - Enum.SensorMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SensorMode.Ladder: - struct: EnumItem - Enum.SensorUpdateType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SensorUpdateType.Manual: - struct: EnumItem - Enum.SensorUpdateType.OnRead: - struct: EnumItem - Enum.ServerAudioBehavior.Enabled: - struct: EnumItem - Enum.ServerAudioBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ServerAudioBehavior.Muted: - struct: EnumItem - Enum.ServerAudioBehavior.OnlineGame: - struct: EnumItem - Enum.ServiceVisibility.Always: - struct: EnumItem - Enum.ServiceVisibility.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ServiceVisibility.Off: - struct: EnumItem - Enum.ServiceVisibility.WithChildren: - struct: EnumItem - Enum.Severity.Error: - struct: EnumItem - Enum.Severity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Severity.Warning: - struct: EnumItem - Enum.SignalBehavior.AncestryDeferred: - struct: EnumItem - Enum.SignalBehavior.Default: - struct: EnumItem - Enum.SignalBehavior.Deferred: - struct: EnumItem - Enum.SignalBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SignalBehavior.Immediate: - struct: EnumItem - Enum.SizeConstraint.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SizeConstraint.RelativeXX: - struct: EnumItem - Enum.SizeConstraint.RelativeXY: - struct: EnumItem - Enum.SizeConstraint.RelativeYY: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.Disabled: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SolverConvergenceVisualizationMode.PerEdge: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.PerIsland: - struct: EnumItem - Enum.SortDirection.Ascending: - struct: EnumItem - Enum.SortDirection.Descending: - struct: EnumItem - Enum.SortDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SortOrder.Custom: - struct: EnumItem - Enum.SortOrder.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SortOrder.LayoutOrder: - struct: EnumItem - Enum.SortOrder.Name: - struct: EnumItem - Enum.SpecialKey.ChatHotkey: - struct: EnumItem - Enum.SpecialKey.End: - struct: EnumItem - Enum.SpecialKey.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SpecialKey.Home: - struct: EnumItem - Enum.SpecialKey.Insert: - struct: EnumItem - Enum.SpecialKey.PageDown: - struct: EnumItem - Enum.SpecialKey.PageUp: - struct: EnumItem - Enum.StartCorner.BottomLeft: - struct: EnumItem - Enum.StartCorner.BottomRight: - struct: EnumItem - Enum.StartCorner.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StartCorner.TopLeft: - struct: EnumItem - Enum.StartCorner.TopRight: - struct: EnumItem - Enum.Status.Confusion: - struct: EnumItem - Enum.Status.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Status.Poison: - struct: EnumItem - Enum.StreamOutBehavior.Default: - struct: EnumItem - Enum.StreamOutBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StreamOutBehavior.LowMemory: - struct: EnumItem - Enum.StreamOutBehavior.Opportunistic: - struct: EnumItem - Enum.StreamingIntegrityMode.Default: - struct: EnumItem - Enum.StreamingIntegrityMode.Disabled: - struct: EnumItem - Enum.StreamingIntegrityMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StreamingIntegrityMode.MinimumRadiusPause: - struct: EnumItem - Enum.StreamingIntegrityMode.PauseOutsideLoadedArea: - struct: EnumItem - Enum.StreamingPauseMode.ClientPhysicsPause: - struct: EnumItem - Enum.StreamingPauseMode.Default: - struct: EnumItem - Enum.StreamingPauseMode.Disabled: - struct: EnumItem - Enum.StreamingPauseMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioCloseMode.CloseDoc: - struct: EnumItem - Enum.StudioCloseMode.CloseStudio: - struct: EnumItem - Enum.StudioCloseMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioCloseMode.None: - struct: EnumItem - Enum.StudioDataModelType.Edit: - struct: EnumItem - Enum.StudioDataModelType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioDataModelType.None: - struct: EnumItem - Enum.StudioDataModelType.PlayClient: - struct: EnumItem - Enum.StudioDataModelType.PlayServer: - struct: EnumItem - Enum.StudioDataModelType.Standalone: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.ActiveLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Background: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Bool: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Bracket: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Builtin: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Comment: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DebuggerCurrentLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DebuggerErrorLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Default: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DocViewCodeBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Error: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.FindSelectionBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Function: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.FunctionName: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioScriptEditorColorCategories.Keyword: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Local: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.LuauKeyword: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MatchingWordBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuBorder: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuPrimaryText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuScrollbarBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuScrollbarHandle: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSecondaryText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSelectedBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSelectedText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Method: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Nil: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Number: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Operator: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Property: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Ruler: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.SelectionBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.SelectionText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Self: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.String: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.TODO: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Warning: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Whitespace: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Custom: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Extra1: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Extra2: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioScriptEditorColorPresets.RobloxDefault: - struct: EnumItem - Enum.StudioStyleGuideColor.AttributeCog: - struct: EnumItem - Enum.StudioStyleGuideColor.Border: - struct: EnumItem - Enum.StudioStyleGuideColor.BrightText: - struct: EnumItem - Enum.StudioStyleGuideColor.Button: - struct: EnumItem - Enum.StudioStyleGuideColor.ButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.ButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.CategoryItem: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatIncomingBgColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatIncomingTextColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatModeratedMessageColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatOutgoingBgColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatOutgoingTextColor: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldIndicator: - struct: EnumItem - Enum.StudioStyleGuideColor.ColorPickerFrame: - struct: EnumItem - Enum.StudioStyleGuideColor.CurrentMarker: - struct: EnumItem - Enum.StudioStyleGuideColor.Dark: - struct: EnumItem - Enum.StudioStyleGuideColor.DebuggerCurrentLine: - struct: EnumItem - Enum.StudioStyleGuideColor.DebuggerErrorLine: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButton: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogMainButton: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogMainButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathText: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNum: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumAdditionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumDeletionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumNoChangeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumSeparatorBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextAddition: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextAdditionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextDeletion: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextDeletionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextHunkInfo: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextNoChange: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextNoChangeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextSeparatorBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DimmedText: - struct: EnumItem - Enum.StudioStyleGuideColor.DocViewCodeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DropShadow: - struct: EnumItem - Enum.StudioStyleGuideColor.Dropdown: - struct: EnumItem - Enum.StudioStyleGuideColor.EmulatorBar: - struct: EnumItem - Enum.StudioStyleGuideColor.EmulatorDropDown: - struct: EnumItem - Enum.StudioStyleGuideColor.ErrorText: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonAccent: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonBorderAlt: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonChecked: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonDefault: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonHover: - struct: EnumItem - Enum.StudioStyleGuideColor.GameSettingsTableItem: - struct: EnumItem - Enum.StudioStyleGuideColor.GameSettingsTooltip: - struct: EnumItem - Enum.StudioStyleGuideColor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioStyleGuideColor.HeaderSection: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoBarWarningBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoBarWarningText: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoText: - struct: EnumItem - Enum.StudioStyleGuideColor.InputFieldBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.InputFieldBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.Item: - struct: EnumItem - Enum.StudioStyleGuideColor.Light: - struct: EnumItem - Enum.StudioStyleGuideColor.LinkText: - struct: EnumItem - Enum.StudioStyleGuideColor.MainBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.MainButton: - struct: EnumItem - Enum.StudioStyleGuideColor.MainText: - struct: EnumItem - Enum.StudioStyleGuideColor.Mid: - struct: EnumItem - Enum.StudioStyleGuideColor.Midlight: - struct: EnumItem - Enum.StudioStyleGuideColor.Notification: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonButton: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonTab: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonTabTopBar: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBool: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBracket: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBuiltInFunction: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptComment: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptEditorCurrentLine: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptError: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFindSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFunction: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFunctionName: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptKeyword: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptLocal: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptLuauKeyword: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptMatchingWordSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptMethod: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptNil: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptNumber: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptOperator: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptProperty: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptRuler: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelectionText: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelf: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSideWidget: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptString: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptText: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptTodo: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptWarning: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptWhitespace: - struct: EnumItem - Enum.StudioStyleGuideColor.ScrollBar: - struct: EnumItem - Enum.StudioStyleGuideColor.ScrollBarBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.SensitiveText: - struct: EnumItem - Enum.StudioStyleGuideColor.Separator: - struct: EnumItem - Enum.StudioStyleGuideColor.Shadow: - struct: EnumItem - Enum.StudioStyleGuideColor.StatusBar: - struct: EnumItem - Enum.StudioStyleGuideColor.SubText: - struct: EnumItem - Enum.StudioStyleGuideColor.Tab: - struct: EnumItem - Enum.StudioStyleGuideColor.TabBar: - struct: EnumItem - Enum.StudioStyleGuideColor.TableItem: - struct: EnumItem - Enum.StudioStyleGuideColor.Titlebar: - struct: EnumItem - Enum.StudioStyleGuideColor.TitlebarText: - struct: EnumItem - Enum.StudioStyleGuideColor.Tooltip: - struct: EnumItem - Enum.StudioStyleGuideColor.ViewPortBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.WarningText: - struct: EnumItem - Enum.StudioStyleGuideModifier.Default: - struct: EnumItem - Enum.StudioStyleGuideModifier.Disabled: - struct: EnumItem - Enum.StudioStyleGuideModifier.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioStyleGuideModifier.Hover: - struct: EnumItem - Enum.StudioStyleGuideModifier.Pressed: - struct: EnumItem - Enum.StudioStyleGuideModifier.Selected: - struct: EnumItem - Enum.Style.Alternating Supports: - struct: EnumItem - deprecated: - message: Enum.Style.Alternating Supports was replaced with Enum.Style.AlternatingSupports - replace: - - Enum.Style.AlternatingSupports - Enum.Style.AlternatingSupports: - struct: EnumItem - Enum.Style.Bridge Style Supports: - struct: EnumItem - deprecated: - message: Enum.Style.Bridge Style Supports was replaced with Enum.Style.BridgeStyleSupports - replace: - - Enum.Style.BridgeStyleSupports - Enum.Style.BridgeStyleSupports: - struct: EnumItem - Enum.Style.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Style.No Supports: - struct: EnumItem - deprecated: - message: Enum.Style.No Supports was replaced with Enum.Style.NoSupports - replace: - - Enum.Style.NoSupports - Enum.Style.NoSupports: - struct: EnumItem - Enum.SurfaceConstraint.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceConstraint.Hinge: - struct: EnumItem - Enum.SurfaceConstraint.Motor: - struct: EnumItem - Enum.SurfaceConstraint.None: - struct: EnumItem - Enum.SurfaceConstraint.SteppingMotor: - struct: EnumItem - Enum.SurfaceGuiShape.CurvedHorizontally: - struct: EnumItem - Enum.SurfaceGuiShape.Flat: - struct: EnumItem - Enum.SurfaceGuiShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceGuiSizingMode.FixedSize: - struct: EnumItem - Enum.SurfaceGuiSizingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceGuiSizingMode.PixelsPerStud: - struct: EnumItem - Enum.SurfaceType.Bumps: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Bumps was replaced with Enum.SurfaceType.Glue - replace: - - Enum.SurfaceType.Glue - Enum.SurfaceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceType.Glue: - struct: EnumItem - Enum.SurfaceType.Hinge: - struct: EnumItem - Enum.SurfaceType.Inlet: - struct: EnumItem - Enum.SurfaceType.Motor: - struct: EnumItem - Enum.SurfaceType.Smooth: - struct: EnumItem - Enum.SurfaceType.SmoothNoOutlines: - struct: EnumItem - Enum.SurfaceType.Spawn: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Spawn was replaced with Enum.SurfaceType.Smooth - replace: - - Enum.SurfaceType.Smooth - Enum.SurfaceType.SteppingMotor: - struct: EnumItem - Enum.SurfaceType.Studs: - struct: EnumItem - Enum.SurfaceType.Universal: - struct: EnumItem - Enum.SurfaceType.Unjoinable: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Unjoinable was replaced with Enum.SurfaceType.Smooth - replace: - - Enum.SurfaceType.Smooth - Enum.SurfaceType.Weld: - struct: EnumItem - Enum.SwipeDirection.Down: - struct: EnumItem - Enum.SwipeDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SwipeDirection.Left: - struct: EnumItem - Enum.SwipeDirection.None: - struct: EnumItem - Enum.SwipeDirection.Right: - struct: EnumItem - Enum.SwipeDirection.Up: - struct: EnumItem - Enum.TableMajorAxis.ColumnMajor: - struct: EnumItem - Enum.TableMajorAxis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TableMajorAxis.RowMajor: - struct: EnumItem - Enum.Technology.Compatibility: - struct: EnumItem - Enum.Technology.Future: - struct: EnumItem - Enum.Technology.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Technology.Legacy: - struct: EnumItem - Enum.Technology.ShadowMap: - struct: EnumItem - Enum.Technology.Voxel: - struct: EnumItem - Enum.TeleportMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportMethod.TeleportPartyAsync: - struct: EnumItem - Enum.TeleportMethod.TeleportToPlaceInstance: - struct: EnumItem - Enum.TeleportMethod.TeleportToPrivateServer: - struct: EnumItem - Enum.TeleportMethod.TeleportToSpawnByName: - struct: EnumItem - Enum.TeleportMethod.TeleportUnknown: - struct: EnumItem - Enum.TeleportResult.Failure: - struct: EnumItem - Enum.TeleportResult.Flooded: - struct: EnumItem - Enum.TeleportResult.GameEnded: - struct: EnumItem - Enum.TeleportResult.GameFull: - struct: EnumItem - Enum.TeleportResult.GameNotFound: - struct: EnumItem - Enum.TeleportResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportResult.IsTeleporting: - struct: EnumItem - Enum.TeleportResult.Success: - struct: EnumItem - Enum.TeleportResult.Unauthorized: - struct: EnumItem - Enum.TeleportState.Failed: - struct: EnumItem - Enum.TeleportState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportState.InProgress: - struct: EnumItem - Enum.TeleportState.RequestedFromServer: - struct: EnumItem - Enum.TeleportState.Started: - struct: EnumItem - Enum.TeleportState.WaitingForServer: - struct: EnumItem - Enum.TeleportType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportType.ToInstance: - struct: EnumItem - Enum.TeleportType.ToPlace: - struct: EnumItem - Enum.TeleportType.ToReservedServer: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Convert: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditAddTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditReplaceTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditSeaLevelTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Generate: - struct: EnumItem - Enum.TerrainAcquisitionMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TerrainAcquisitionMethod.Import: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Legacy: - struct: EnumItem - Enum.TerrainAcquisitionMethod.None: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Other: - struct: EnumItem - Enum.TerrainAcquisitionMethod.RegionFillTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.RegionPasteTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Template: - struct: EnumItem - Enum.TerrainFace.Bottom: - struct: EnumItem - Enum.TerrainFace.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TerrainFace.Side: - struct: EnumItem - Enum.TerrainFace.Top: - struct: EnumItem - Enum.TextChatMessageStatus.Floodchecked: - struct: EnumItem - Enum.TextChatMessageStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextChatMessageStatus.InvalidPrivacySettings: - struct: EnumItem - Enum.TextChatMessageStatus.InvalidTextChannelPermissions: - struct: EnumItem - Enum.TextChatMessageStatus.MessageTooLong: - struct: EnumItem - Enum.TextChatMessageStatus.Sending: - struct: EnumItem - Enum.TextChatMessageStatus.Success: - struct: EnumItem - Enum.TextChatMessageStatus.TextFilterFailed: - struct: EnumItem - Enum.TextChatMessageStatus.Unknown: - struct: EnumItem - Enum.TextFilterContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextFilterContext.PrivateChat: - struct: EnumItem - Enum.TextFilterContext.PublicChat: - struct: EnumItem - Enum.TextInputType.Default: - struct: EnumItem - Enum.TextInputType.Email: - struct: EnumItem - Enum.TextInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextInputType.NoSuggestions: - struct: EnumItem - Enum.TextInputType.Number: - struct: EnumItem - Enum.TextInputType.OneTimePassword: - struct: EnumItem - Enum.TextInputType.Password: - struct: EnumItem - Enum.TextInputType.PasswordShown: - struct: EnumItem - Enum.TextInputType.Phone: - struct: EnumItem - Enum.TextInputType.Username: - struct: EnumItem - Enum.TextTruncate.AtEnd: - struct: EnumItem - Enum.TextTruncate.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextTruncate.None: - struct: EnumItem - Enum.TextXAlignment.Center: - struct: EnumItem - Enum.TextXAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextXAlignment.Left: - struct: EnumItem - Enum.TextXAlignment.Right: - struct: EnumItem - Enum.TextYAlignment.Bottom: - struct: EnumItem - Enum.TextYAlignment.Center: - struct: EnumItem - Enum.TextYAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextYAlignment.Top: - struct: EnumItem - Enum.TextureMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextureMode.Static: - struct: EnumItem - Enum.TextureMode.Stretch: - struct: EnumItem - Enum.TextureMode.Wrap: - struct: EnumItem - Enum.TextureQueryType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextureQueryType.Humanoid: - struct: EnumItem - Enum.TextureQueryType.HumanoidOrphaned: - struct: EnumItem - Enum.TextureQueryType.NonHumanoid: - struct: EnumItem - Enum.TextureQueryType.NonHumanoidOrphaned: - struct: EnumItem - Enum.ThreadPoolConfig.Auto: - struct: EnumItem - Enum.ThreadPoolConfig.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThreadPoolConfig.PartialThread: - struct: EnumItem - deprecated: - message: Enum.ThreadPoolConfig.PartialThread was replaced with Enum.ThreadPoolConfig.Auto - replace: - - Enum.ThreadPoolConfig.Auto - Enum.ThreadPoolConfig.PerCore1: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore2: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore3: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore4: - struct: EnumItem - Enum.ThreadPoolConfig.Threads1: - struct: EnumItem - Enum.ThreadPoolConfig.Threads16: - struct: EnumItem - Enum.ThreadPoolConfig.Threads2: - struct: EnumItem - Enum.ThreadPoolConfig.Threads3: - struct: EnumItem - Enum.ThreadPoolConfig.Threads4: - struct: EnumItem - Enum.ThreadPoolConfig.Threads8: - struct: EnumItem - Enum.ThrottlingPriority.Default: - struct: EnumItem - Enum.ThrottlingPriority.ElevatedOnServer: - struct: EnumItem - Enum.ThrottlingPriority.Extreme: - struct: EnumItem - Enum.ThrottlingPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailSize.Size100x100: - struct: EnumItem - Enum.ThumbnailSize.Size150x150: - struct: EnumItem - Enum.ThumbnailSize.Size180x180: - struct: EnumItem - Enum.ThumbnailSize.Size352x352: - struct: EnumItem - Enum.ThumbnailSize.Size420x420: - struct: EnumItem - Enum.ThumbnailSize.Size48x48: - struct: EnumItem - Enum.ThumbnailSize.Size60x60: - struct: EnumItem - Enum.ThumbnailType.AvatarBust: - struct: EnumItem - Enum.ThumbnailType.AvatarThumbnail: - struct: EnumItem - Enum.ThumbnailType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailType.HeadShot: - struct: EnumItem - Enum.TickCountSampleMethod.Benchmark: - struct: EnumItem - Enum.TickCountSampleMethod.Fast: - struct: EnumItem - Enum.TickCountSampleMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TickCountSampleMethod.Precise: - struct: EnumItem - Enum.TopBottom.Bottom: - struct: EnumItem - Enum.TopBottom.Center: - struct: EnumItem - Enum.TopBottom.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TopBottom.Top: - struct: EnumItem - Enum.TouchCameraMovementMode.Classic: - struct: EnumItem - Enum.TouchCameraMovementMode.Default: - struct: EnumItem - Enum.TouchCameraMovementMode.Follow: - struct: EnumItem - Enum.TouchCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TouchCameraMovementMode.Orbital: - struct: EnumItem - Enum.TouchMovementMode.ClickToMove: - struct: EnumItem - Enum.TouchMovementMode.DPad: - struct: EnumItem - Enum.TouchMovementMode.Default: - struct: EnumItem - Enum.TouchMovementMode.DynamicThumbstick: - struct: EnumItem - Enum.TouchMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TouchMovementMode.Thumbpad: - struct: EnumItem - Enum.TouchMovementMode.Thumbstick: - struct: EnumItem - Enum.TrackerError.AudioError: - struct: EnumItem - Enum.TrackerError.AudioNoPermission: - struct: EnumItem - Enum.TrackerError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerError.InitFailed: - struct: EnumItem - Enum.TrackerError.NoAudio: - struct: EnumItem - Enum.TrackerError.NoService: - struct: EnumItem - Enum.TrackerError.NoVideo: - struct: EnumItem - Enum.TrackerError.Ok: - struct: EnumItem - Enum.TrackerError.VideoError: - struct: EnumItem - Enum.TrackerError.VideoNoPermission: - struct: EnumItem - Enum.TrackerError.VideoUnsupported: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.Auto: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ExtrapolateFacsAndPose: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ExtrapolateFacsOnly: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ForceDisabled: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerLodFlagMode.Auto: - struct: EnumItem - Enum.TrackerLodFlagMode.ForceFalse: - struct: EnumItem - Enum.TrackerLodFlagMode.ForceTrue: - struct: EnumItem - Enum.TrackerLodFlagMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerLodValueMode.Auto: - struct: EnumItem - Enum.TrackerLodValueMode.Force0: - struct: EnumItem - Enum.TrackerLodValueMode.Force1: - struct: EnumItem - Enum.TrackerLodValueMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerMode.Audio: - struct: EnumItem - Enum.TrackerMode.AudioVideo: - struct: EnumItem - Enum.TrackerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerMode.None: - struct: EnumItem - Enum.TrackerMode.Video: - struct: EnumItem - Enum.TrackerPromptEvent.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerPromptEvent.LODCameraRecommendDisable: - struct: EnumItem - Enum.TriStateBoolean.False: - struct: EnumItem - Enum.TriStateBoolean.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TriStateBoolean.True: - struct: EnumItem - Enum.TriStateBoolean.Unknown: - struct: EnumItem - Enum.TweenStatus.Canceled: - struct: EnumItem - Enum.TweenStatus.Completed: - struct: EnumItem - Enum.TweenStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UITheme.Dark: - struct: EnumItem - Enum.UITheme.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UITheme.Light: - struct: EnumItem - Enum.UiMessageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UiMessageType.UiMessageError: - struct: EnumItem - Enum.UiMessageType.UiMessageInfo: - struct: EnumItem - Enum.UsageContext.Default: - struct: EnumItem - Enum.UsageContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UsageContext.Preview: - struct: EnumItem - Enum.UserCFrame.Floor: - struct: EnumItem - Enum.UserCFrame.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserCFrame.Head: - struct: EnumItem - Enum.UserCFrame.LeftHand: - struct: EnumItem - Enum.UserCFrame.RightHand: - struct: EnumItem - Enum.UserInputState.Begin: - struct: EnumItem - Enum.UserInputState.Cancel: - struct: EnumItem - Enum.UserInputState.Change: - struct: EnumItem - Enum.UserInputState.End: - struct: EnumItem - Enum.UserInputState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserInputState.None: - struct: EnumItem - Enum.UserInputType.Accelerometer: - struct: EnumItem - Enum.UserInputType.Focus: - struct: EnumItem - Enum.UserInputType.Gamepad1: - struct: EnumItem - Enum.UserInputType.Gamepad2: - struct: EnumItem - Enum.UserInputType.Gamepad3: - struct: EnumItem - Enum.UserInputType.Gamepad4: - struct: EnumItem - Enum.UserInputType.Gamepad5: - struct: EnumItem - Enum.UserInputType.Gamepad6: - struct: EnumItem - Enum.UserInputType.Gamepad7: - struct: EnumItem - Enum.UserInputType.Gamepad8: - struct: EnumItem - Enum.UserInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserInputType.Gyro: - struct: EnumItem - Enum.UserInputType.InputMethod: - struct: EnumItem - Enum.UserInputType.Keyboard: - struct: EnumItem - Enum.UserInputType.MouseButton1: - struct: EnumItem - Enum.UserInputType.MouseButton2: - struct: EnumItem - Enum.UserInputType.MouseButton3: - struct: EnumItem - Enum.UserInputType.MouseMovement: - struct: EnumItem - Enum.UserInputType.MouseWheel: - struct: EnumItem - Enum.UserInputType.None: - struct: EnumItem - Enum.UserInputType.TextInput: - struct: EnumItem - Enum.UserInputType.Touch: - struct: EnumItem - Enum.VRPlayMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRPlayMode.Seated: - struct: EnumItem - Enum.VRPlayMode.Standing: - struct: EnumItem - Enum.VRSafetyBubbleMode.Anyone: - struct: EnumItem - Enum.VRSafetyBubbleMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRSafetyBubbleMode.NoOne: - struct: EnumItem - Enum.VRSafetyBubbleMode.OnlyFriends: - struct: EnumItem - Enum.VRScaling.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRScaling.Off: - struct: EnumItem - Enum.VRScaling.World: - struct: EnumItem - Enum.VRSessionState.Focused: - struct: EnumItem - Enum.VRSessionState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRSessionState.Idle: - struct: EnumItem - Enum.VRSessionState.Undefined: - struct: EnumItem - Enum.VRSessionState.Visible: - struct: EnumItem - Enum.VRTouchpad.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRTouchpad.Left: - struct: EnumItem - Enum.VRTouchpad.Right: - struct: EnumItem - Enum.VRTouchpadMode.ABXY: - struct: EnumItem - Enum.VRTouchpadMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRTouchpadMode.Touch: - struct: EnumItem - Enum.VRTouchpadMode.VirtualThumbstick: - struct: EnumItem - Enum.VelocityConstraintMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VelocityConstraintMode.Line: - struct: EnumItem - Enum.VelocityConstraintMode.Plane: - struct: EnumItem - Enum.VelocityConstraintMode.Vector: - struct: EnumItem - Enum.VerticalAlignment.Bottom: - struct: EnumItem - Enum.VerticalAlignment.Center: - struct: EnumItem - Enum.VerticalAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VerticalAlignment.Top: - struct: EnumItem - Enum.VerticalScrollBarPosition.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VerticalScrollBarPosition.Left: - struct: EnumItem - Enum.VerticalScrollBarPosition.Right: - struct: EnumItem - Enum.VibrationMotor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VibrationMotor.Large: - struct: EnumItem - Enum.VibrationMotor.LeftHand: - struct: EnumItem - Enum.VibrationMotor.LeftTrigger: - struct: EnumItem - Enum.VibrationMotor.RightHand: - struct: EnumItem - Enum.VibrationMotor.RightTrigger: - struct: EnumItem - Enum.VibrationMotor.Small: - struct: EnumItem - Enum.VirtualCursorMode.Default: - struct: EnumItem - Enum.VirtualCursorMode.Disabled: - struct: EnumItem - Enum.VirtualCursorMode.Enabled: - struct: EnumItem - Enum.VirtualCursorMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VirtualInputMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VirtualInputMode.None: - struct: EnumItem - Enum.VirtualInputMode.Playing: - struct: EnumItem - Enum.VirtualInputMode.Recording: - struct: EnumItem - Enum.VoiceChatState.Ended: - struct: EnumItem - Enum.VoiceChatState.Failed: - struct: EnumItem - Enum.VoiceChatState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VoiceChatState.Idle: - struct: EnumItem - Enum.VoiceChatState.Joined: - struct: EnumItem - Enum.VoiceChatState.Joining: - struct: EnumItem - Enum.VoiceChatState.JoiningRetry: - struct: EnumItem - Enum.VoiceChatState.Leaving: - struct: EnumItem - Enum.VolumetricAudio.Automatic: - struct: EnumItem - Enum.VolumetricAudio.Disabled: - struct: EnumItem - Enum.VolumetricAudio.Enabled: - struct: EnumItem - Enum.VolumetricAudio.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterDirection.NegX: - struct: EnumItem - Enum.WaterDirection.NegY: - struct: EnumItem - Enum.WaterDirection.NegZ: - struct: EnumItem - Enum.WaterDirection.X: - struct: EnumItem - Enum.WaterDirection.Y: - struct: EnumItem - Enum.WaterDirection.Z: - struct: EnumItem - Enum.WaterForce.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterForce.Max: - struct: EnumItem - Enum.WaterForce.Medium: - struct: EnumItem - Enum.WaterForce.None: - struct: EnumItem - Enum.WaterForce.Small: - struct: EnumItem - Enum.WaterForce.Strong: - struct: EnumItem - Enum.WrapLayerAutoSkin.Disabled: - struct: EnumItem - Enum.WrapLayerAutoSkin.EnabledOverride: - struct: EnumItem - Enum.WrapLayerAutoSkin.EnabledPreserve: - struct: EnumItem - Enum.WrapLayerAutoSkin.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapLayerDebugMode.BoundCage: - struct: EnumItem - Enum.WrapLayerDebugMode.BoundCageAndLinks: - struct: EnumItem - Enum.WrapLayerDebugMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapLayerDebugMode.HSRInner: - struct: EnumItem - Enum.WrapLayerDebugMode.HSRInnerReverse: - struct: EnumItem - Enum.WrapLayerDebugMode.HSROuter: - struct: EnumItem - Enum.WrapLayerDebugMode.HSROuterDetail: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCage: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCageFittedToBase: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCageFittedToPrev: - struct: EnumItem - Enum.WrapLayerDebugMode.None: - struct: EnumItem - Enum.WrapLayerDebugMode.OuterCage: - struct: EnumItem - Enum.WrapLayerDebugMode.Rbf: - struct: EnumItem - Enum.WrapLayerDebugMode.Reference: - struct: EnumItem - Enum.WrapLayerDebugMode.ReferenceMeshAfterMorph: - struct: EnumItem - Enum.WrapTargetDebugMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapTargetDebugMode.None: - struct: EnumItem - Enum.WrapTargetDebugMode.OuterCageDetail: - struct: EnumItem - Enum.WrapTargetDebugMode.Rbf: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageCompressed: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageInterface: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageOriginal: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerCageCompressed: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerCageOriginal: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerInterface: - struct: EnumItem - Enum.ZIndexBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ZIndexBehavior.Global: - struct: EnumItem - Enum.ZIndexBehavior.Sibling: - struct: EnumItem - Faces.new: - args: - - type: '...' - must_use: true - FloatCurveKey.new: - args: - - type: number - - type: number - - type: - display: KeyInterpolationMode - must_use: true - Font.fromEnum: - args: - - type: - display: Font - must_use: true - Font.fromId: - args: - - type: number - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Font.fromName: - args: - - type: string - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Font.new: - args: - - type: string - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Instance.new: - args: - - type: - - Accoutrement - - Accessory - - Hat - - AdPortal - - AdvancedDragger - - AnalyticsService - - Animation - - CurveAnimation - - KeyframeSequence - - AnimationController - - AnimationRigData - - Animator - - Atmosphere - - Attachment - - Bone - - AudioSearchParams - - Backpack - - WrapLayer - - WrapTarget - - Beam - - BindableEvent - - BindableFunction - - BodyAngularVelocity - - BodyForce - - BodyGyro - - BodyPosition - - BodyThrust - - BodyVelocity - - RocketPropulsion - - Breakpoint - - Camera - - BodyColors - - CharacterMesh - - Pants - - Shirt - - ShirtGraphic - - Skin - - ClickDetector - - Clouds - - Configuration - - AlignOrientation - - AlignPosition - - AngularVelocity - - AnimationConstraint - - BallSocketConstraint - - HingeConstraint - - LineForce - - LinearVelocity - - PlaneConstraint - - Plane - - RigidConstraint - - RodConstraint - - RopeConstraint - - CylindricalConstraint - - PrismaticConstraint - - SpringConstraint - - Torque - - TorsionSpringConstraint - - UniversalConstraint - - VectorForce - - HumanoidController - - SkateboardController - - VehicleController - - AirController - - ClimbController - - GroundController - - SwimController - - ControllerManager - - CustomEvent - - CustomEventReceiver - - BlockMesh - - CylinderMesh - - FileMesh - - SpecialMesh - - DataStoreIncrementOptions - - DataStoreOptions - - DataStoreSetOptions - - DebuggerWatch - - Dialog - - DialogChoice - - Dragger - - EulerRotationCurve - - ExperienceInviteOptions - - Explosion - - FaceControls - - Decal - - Texture - - Hole - - MotorFeature - - Fire - - FloatCurve - - FlyweightService - - CSGDictionaryService - - NonReplicatedCSGDictionaryService - - Folder - - ForceField - - FunctionalTest - - GetTextBoundsParams - - CanvasGroup - - Frame - - ImageButton - - TextButton - - ImageLabel - - TextLabel - - ScrollingFrame - - TextBox - - VideoFrame - - ViewportFrame - - BillboardGui - - ScreenGui - - GuiMain - - AdGui - - SurfaceGui - - FloorWire - - SelectionBox - - BoxHandleAdornment - - ConeHandleAdornment - - CylinderHandleAdornment - - ImageHandleAdornment - - LineHandleAdornment - - SphereHandleAdornment - - WireframeHandleAdornment - - ParabolaAdornment - - SelectionSphere - - ArcHandles - - Handles - - SurfaceSelection - - SelectionPartLasso - - SelectionPointLasso - - HeightmapImporterService - - HiddenSurfaceRemovalAsset - - Highlight - - Humanoid - - HumanoidDescription - - IKControl - - RotateP - - RotateV - - Glue - - ManualGlue - - ManualWeld - - Motor - - Motor6D - - Rotate - - Snap - - VelocityMotor - - Weld - - Keyframe - - KeyframeMarker - - PointLight - - SpotLight - - SurfaceLight - - LocalizationTable - - Script - - LocalScript - - ModuleScript - - MarkerCurve - - MaterialVariant - - MemoryStoreService - - Message - - Hint - - NoCollisionConstraint - - CornerWedgePart - - Part - - FlagStand - - Seat - - SkateboardPlatform - - SpawnLocation - - WedgePart - - MeshPart - - PartOperation - - IntersectOperation - - NegateOperation - - UnionOperation - - TrussPart - - VehicleSeat - - Model - - Actor - - HopperBin - - Tool - - Flag - - WorldModel - - PartOperationAsset - - ParticleEmitter - - PathfindingLink - - PathfindingModifier - - Player - - PluginAction - - NumberPose - - Pose - - BloomEffect - - BlurEffect - - ColorCorrectionEffect - - DepthOfFieldEffect - - SunRaysEffect - - ProximityPrompt - - ProximityPromptService - - ReflectionMetadata - - ReflectionMetadataCallbacks - - ReflectionMetadataClasses - - ReflectionMetadataEnums - - ReflectionMetadataEvents - - ReflectionMetadataFunctions - - ReflectionMetadataClass - - ReflectionMetadataEnum - - ReflectionMetadataEnumItem - - ReflectionMetadataMember - - ReflectionMetadataProperties - - ReflectionMetadataYieldFunctions - - RemoteEvent - - RemoteFunction - - RenderingTest - - RotationCurve - - BuoyancySensor - - ControllerPartSensor - - Sky - - Smoke - - Sound - - ChorusSoundEffect - - CompressorSoundEffect - - DistortionSoundEffect - - EchoSoundEffect - - EqualizerSoundEffect - - FlangeSoundEffect - - PitchShiftSoundEffect - - ReverbSoundEffect - - TremoloSoundEffect - - SoundGroup - - Sparkles - - StandalonePluginScripts - - StarterGear - - SurfaceAppearance - - Team - - TeleportOptions - - TerrainDetail - - TerrainRegion - - TestService - - TextChannel - - TextChatCommand - - TextChatMessageProperties - - TrackerStreamAnimation - - Trail - - Tween - - UIAspectRatioConstraint - - UISizeConstraint - - UITextSizeConstraint - - UICorner - - UIGradient - - UIGridLayout - - UIListLayout - - UIPageLayout - - UITableLayout - - UIPadding - - UIScale - - UIStroke - - BinaryStringValue - - BoolValue - - BrickColorValue - - CFrameValue - - Color3Value - - DoubleConstrainedValue - - IntConstrainedValue - - IntValue - - NumberValue - - ObjectValue - - RayValue - - StringValue - - Vector3Value - - Vector3Curve - - VirtualInputManager - - WeldConstraint - must_use: true - NumberRange.new: - args: - - type: number - - required: false - type: number - must_use: true - NumberSequence.new: - args: - - type: any - - required: false - type: number - must_use: true - NumberSequenceKeypoint.new: - args: - - type: number - - type: number - - required: false - type: number - must_use: true - OverlapParams.new: - args: [] - must_use: true - PathWaypoint.new: - args: - - required: false - type: - display: Vector3 - - required: false - type: - display: PathWaypointAction - must_use: true - PhysicalProperties.new: - args: - - type: any - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Random.new: - args: - - required: false - type: number - must_use: true - Ray.new: - args: - - type: - display: Vector3 - - type: - display: Vector3 - must_use: true - RaycastParams.new: - args: [] - must_use: true - Rect.new: - args: - - type: any - - type: any - - required: false - type: number - - required: false - type: number - must_use: true - Region3.new: - args: - - type: - display: Vector3 - - type: - display: Vector3 - must_use: true - Region3int16.new: - args: - - required: false - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - RotationCurveKey.new: - args: - - type: number - - type: - display: CFrame - - type: - display: KeyInterpolationMode - must_use: true - TweenInfo.new: - args: - - required: false - type: number - - required: false - type: - display: EasingStyle - - required: false - type: - display: EasingDirection - - required: false - type: number - - required: false - type: bool - - required: false - type: number - must_use: true - UDim.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - UDim2.fromOffset: - args: - - required: use UDim2.new() if you want an empty UDim2 - type: number - - required: false - type: number - must_use: true - UDim2.fromScale: - args: - - required: use UDim2.new() if you want an empty UDim2 - type: number - - required: false - type: number - must_use: true - UDim2.new: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: number - - required: false - type: number - must_use: true - UserSettings: - args: [] - must_use: true - Vector2.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - Vector2.one: - property: read-only - Vector2.xAxis: - property: read-only - Vector2.yAxis: - property: read-only - Vector2.zero: - property: read-only - Vector2int16.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - Vector3.FromAxis: - args: - - type: - display: Axis - must_use: true - Vector3.FromNormalId: - args: - - type: - display: NormalId - must_use: true - Vector3.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Vector3.one: - property: read-only - Vector3.xAxis: - property: read-only - Vector3.yAxis: - property: read-only - Vector3.zAxis: - property: read-only - Vector3.zero: - property: read-only - Vector3int16.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - _G: - property: new-fields - _VERSION: - property: read-only - arg: - property: new-fields - assert: - args: - - type: any - - required: A failed assertion without a message is unhelpful to users. - type: string - bit32.arshift: - args: - - type: number - - type: number - must_use: true - bit32.band: - args: - - type: '...' - must_use: true - bit32.bnot: - args: - - type: number - must_use: true - bit32.bor: - args: - - type: '...' - must_use: true - bit32.btest: - args: - - type: '...' - must_use: true - bit32.bxor: - args: - - type: '...' - must_use: true - bit32.countlz: - args: - - type: number - must_use: true - bit32.countrz: - args: - - type: number - must_use: true - bit32.extract: - args: - - type: number - - type: number - - required: false - type: number - must_use: true - bit32.lrotate: - args: - - type: number - - type: number - must_use: true - bit32.lshift: - args: - - type: number - - type: number - must_use: true - bit32.replace: - args: - - type: number - - type: number - - type: number - - required: false - type: number - must_use: true - bit32.rrotate: - args: - - type: number - - type: number - must_use: true - bit32.rshift: - args: - - type: number - - type: number - must_use: true - collectgarbage: - args: - - type: - - count - must_use: true - coroutine.close: - args: - - type: - display: thread - coroutine.create: - args: - - type: function - must_use: true - coroutine.isyieldable: - args: [] - coroutine.resume: - args: - - type: - display: coroutine - - required: false - type: '...' - coroutine.running: - args: [] - must_use: true - coroutine.status: - args: - - type: - display: coroutine - must_use: true - coroutine.wrap: - args: - - type: function - coroutine.yield: - args: - - required: false - type: '...' - debug.info: - args: - - type: any - - type: any - - required: false - type: string - must_use: true - debug.profilebegin: - args: - - type: string - debug.profileend: - args: [] - debug.resetmemorycategory: - args: [] - debug.setmemorycategory: - args: - - type: string - debug.traceback: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - must_use: true - delay: - args: - - type: number - - type: function - elapsedTime: - args: [] - error: - args: - - required: Erroring without an explanation is unhelpful to users. - type: any - - required: false - type: number - game: - struct: DataModel - gcinfo: - args: [] - must_use: true - getfenv: - args: - - required: false - type: any - must_use: true - getmetatable: - args: - - type: table - must_use: true - io.close: - args: - - required: false - type: - display: file - io.flush: - args: [] - io.input: - args: - - required: false - type: - display: file - io.lines: - args: - - type: string - io.open: - args: - - type: string - - required: false - type: - - r - - rb - - w - - wb - - a - - ab - - r+ - - rb+ - - w+ - - wb+ - - a+ - - ab+ - io.output: - args: - - required: false - type: - display: file - io.popen: - args: - - type: string - - required: false - type: - - r - - rb - - w - - wb - - a - - ab - - r+ - - rb+ - - w+ - - wb+ - - a+ - - ab+ - io.read: - args: - - type: '...' - io.stderr: - property: read-only - io.stdin: - property: read-only - io.stdout: - property: read-only - io.tmpfile: - args: [] - io.type: - args: - - type: - display: potentially file-like object - io.write: - args: - - type: '...' - ipairs: - args: - - type: table - must_use: true - loadstring: - args: - - type: string - - required: false - type: string - math.abs: - args: - - type: number - must_use: true - math.acos: - args: - - type: number - must_use: true - math.asin: - args: - - type: number - must_use: true - math.atan: - args: - - type: number - must_use: true - math.atan2: - args: - - type: number - - type: number - must_use: true - math.ceil: - args: - - type: number - must_use: true - math.clamp: - args: - - type: number - - type: number - - type: number - must_use: true - math.cos: - args: - - type: number - must_use: true - math.cosh: - args: - - type: number - must_use: true - math.deg: - args: - - type: number - must_use: true - math.exp: - args: - - type: number - must_use: true - math.floor: - args: - - type: number - must_use: true - math.fmod: - args: - - type: number - - type: number - must_use: true - math.frexp: - args: - - type: number - must_use: true - math.huge: - property: read-only - math.ldexp: - args: - - type: number - - type: number - must_use: true - math.log: - args: - - type: number - - required: false - type: number - must_use: true - math.log10: - args: - - type: number - must_use: true - math.max: - args: - - type: number - - required: use of max only makes sense with more than 1 parameter - type: '...' - must_use: true - math.min: - args: - - type: number - - required: use of min only makes sense with more than 1 parameter - type: '...' - must_use: true - math.modf: - args: - - type: number - must_use: true - math.noise: - args: - - type: number - - required: false - type: number - - required: false - type: number - must_use: true - math.pi: - property: read-only - math.pow: - args: - - type: number - - type: number - must_use: true - math.rad: - args: - - type: number - must_use: true - math.random: - args: - - required: false - type: number - - required: false - type: number - must_use: true - math.randomseed: - args: - - type: number - math.round: - args: - - type: number - must_use: true - math.sign: - args: - - type: number - must_use: true - math.sin: - args: - - type: number - must_use: true - math.sinh: - args: - - type: number - must_use: true - math.sqrt: - args: - - type: number - must_use: true - math.tan: - args: - - type: number - must_use: true - math.tanh: - args: - - type: number - must_use: true - newproxy: - args: - - required: false - type: bool - must_use: true - next: - args: - - type: table - - required: false - type: number - os.clock: - args: [] - must_use: true - os.date: - args: - - required: false - type: string - - required: false - type: number - must_use: true - os.difftime: - args: - - type: number - - type: number - must_use: true - os.time: - args: - - required: false - type: table - must_use: true - package.cpath: - property: full-write - package.loaded: - property: new-fields - package.loaders: - property: new-fields - package.loadlib: - args: - - type: string - - type: string - package.path: - property: full-write - package.preload: - property: new-fields - package.seeall: - args: - - type: table - pairs: - args: - - type: table - must_use: true - pcall: - args: - - type: function - - required: false - type: '...' - plugin: - struct: Plugin - print: - args: - - required: false - type: '...' - rawequal: - args: - - type: any - - type: any - must_use: true - rawget: - args: - - type: any - - type: any - must_use: true - rawlen: - args: - - type: table - must_use: true - rawset: - args: - - type: any - - type: any - - type: any - require: - args: - - type: number - script: - struct: Script - select: - args: - - type: any - - type: '...' - must_use: true - setfenv: - args: - - type: any - - type: table - setmetatable: - args: - - type: table - - required: false - type: table - settings: - args: [] - shared: - property: new-fields - spawn: - args: - - type: function - string.byte: - args: - - type: string - - required: false - type: number - - required: false - type: number - string.char: - args: - - required: string.char should be used with an argument despite it not throwing - type: number - - required: false - type: '...' - must_use: true - string.find: - args: - - type: string - - type: string - - required: false - type: number - - required: false - type: bool - must_use: true - string.format: - args: - - type: string - - required: string.format should only be used for strings that need formatting - type: '...' - must_use: true - string.gmatch: - args: - - type: string - - type: string - must_use: true - string.gsub: - args: - - type: string - - type: string - - type: any - - required: false - type: number - must_use: true - string.len: - args: - - type: string - must_use: true - string.lower: - args: - - type: string - must_use: true - string.match: - args: - - type: string - - type: string - - required: false - type: number - must_use: true - string.pack: - args: - - type: string - - type: '...' - must_use: true - string.packsize: - args: - - type: string - must_use: true - string.rep: - args: - - type: string - - type: number - must_use: true - string.reverse: - args: - - type: string - must_use: true - string.split: - args: - - type: string - - required: false - type: string - must_use: true - string.sub: - args: - - type: string - - type: number - - required: false - type: number - must_use: true - string.unpack: - args: - - type: string - - type: string - - required: false - type: number - must_use: true - string.upper: - args: - - type: string - must_use: true - table.clear: - args: - - type: table - table.clone: - args: - - type: table - must_use: true - table.concat: - args: - - type: table - - required: false - type: string - - required: false - type: number - - required: false - type: number - must_use: true - table.create: - args: - - type: number - - required: false - type: any - must_use: true - table.find: - args: - - type: table - - type: any - - required: false - type: number - must_use: true - table.foreach: - args: - - type: table - - type: function - deprecated: - message: use a for loop instead. - replace: [] - table.foreachi: - args: - - type: table - - type: function - deprecated: - message: use a for loop instead. - replace: [] - table.freeze: - args: - - type: table - table.getn: - args: - - type: table - - type: number - must_use: true - deprecated: - message: '`table.getn` has been superceded by #.' - replace: - - '#%1' - table.insert: - args: - - type: table - observes: write - - type: any - - required: false - type: any - table.isfrozen: - args: - - type: table - must_use: true - table.maxn: - args: - - type: table - must_use: true - table.move: - args: - - type: table - - type: number - - type: number - - type: number - - required: false - type: table - table.pack: - args: - - type: '...' - must_use: true - table.remove: - args: - - type: table - - required: false - type: number - table.sort: - args: - - type: table - - required: false - type: function - table.unpack: - args: - - type: table - - required: false - type: number - - required: false - type: number - must_use: true - task.cancel: - args: - - type: - display: thread - task.defer: - args: - - type: function - - required: false - type: '...' - task.delay: - args: - - required: false - type: number - - type: function - - required: false - type: '...' - task.desynchronize: - args: [] - task.spawn: - args: - - type: function - - required: false - type: '...' - task.synchronize: - args: [] - task.wait: - args: - - required: false - type: number - tick: - args: [] - time: - args: [] - tonumber: - args: - - type: any - - required: false - type: number - must_use: true - tostring: - args: - - type: any - must_use: true - type: - args: - - type: any - typeof: - args: - - type: any - unpack: - args: - - type: table - - required: false - type: number - - required: false - type: number - must_use: true - utf8.char: - args: - - required: utf8.char should be used with an argument despite it not throwing - type: number - - required: false - type: '...' - must_use: true - utf8.charpattern: - property: read-only - utf8.codepoint: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.codes: - args: - - type: string - must_use: true - utf8.graphemes: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.len: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.nfcnormalize: - args: - - type: string - must_use: true - utf8.nfdnormalize: - args: - - type: string - must_use: true - utf8.offset: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - wait: - args: - - required: false - type: number - warn: - args: - - type: any - - required: false - type: '...' - workspace: - struct: Workspace - xpcall: - args: - - type: function - - required: false - type: '...' -structs: - BasePart: - '*': - struct: Instance - AncestryChanged: - struct: Event - Anchored: - property: override-fields - ApplyAngularImpulse: - args: - - required: false - type: any - method: true - ApplyImpulse: - args: - - required: false - type: any - method: true - ApplyImpulseAtPosition: - args: - - required: false - type: any - - required: false - type: any - method: true - Archivable: - property: override-fields - AssemblyAngularVelocity: - any: true - AssemblyCenterOfMass: - any: true - AssemblyLinearVelocity: - any: true - AssemblyMass: - property: read-only - AssemblyRootPart: - struct: BasePart - AttributeChanged: - struct: Event - BackParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackSurface: - property: override-fields - BackSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomSurface: - property: override-fields - BottomSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BrickColor: - property: override-fields - CFrame: - any: true - CanCollide: - property: override-fields - CanCollideWith: - args: - - required: false - type: any - method: true - CanQuery: - property: override-fields - CanSetNetworkOwnership: - args: [] - method: true - CanTouch: - property: override-fields - CastShadow: - property: override-fields - CenterOfMass: - any: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionGroup: - property: override-fields - CollisionGroupId: - property: override-fields - Color: - property: override-fields - CurrentPhysicalProperties: - property: read-only - CustomPhysicalProperties: - property: override-fields - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Elasticity: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - ExtentsCFrame: - any: true - ExtentsSize: - any: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - Friction: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontSurface: - property: override-fields - FrontSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetConnectedParts: - args: - - required: false - type: any - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetJoints: - args: [] - method: true - GetMass: - args: [] - method: true - GetNetworkOwner: - args: [] - method: true - GetNetworkOwnershipAuto: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetRootPart: - args: [] - method: true - GetTouchingParts: - args: [] - method: true - GetVelocityAtPosition: - args: - - required: false - type: any - method: true - IntersectAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGrounded: - args: [] - method: true - LeftParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftSurface: - property: override-fields - LeftSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LocalSimulationTouched: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - LocalTransparencyModifier: - property: override-fields - Locked: - property: override-fields - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Mass: - property: read-only - Massless: - property: override-fields - Material: - property: override-fields - MaterialVariant: - property: override-fields - Name: - property: override-fields - Orientation: - any: true - Origin: - any: true - OutfitChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - Pivot Offset: - any: true - PivotOffset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - Position: - any: true - ReceiveAge: - property: read-only - Reflectance: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Resize: - args: - - required: false - type: any - - required: false - type: any - method: true - ResizeIncrement: - property: read-only - ResizeableFaces: - property: read-only - RightParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightSurface: - property: override-fields - RightSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RootPriority: - property: override-fields - RotVelocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - Rotation: - any: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetNetworkOwner: - args: - - required: false - type: any - method: true - SetNetworkOwnershipAuto: - args: [] - method: true - Size: - any: true - SpecificGravity: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - StoppedTouching: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - SubtractAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - TopParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopSurface: - property: override-fields - TopSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TouchEnded: - struct: Event - Touched: - struct: Event - Transparency: - property: override-fields - UnionAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Velocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - brickColor: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getMass: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - resize: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - subtractAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - unionAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Camera: - '*': - struct: Instance - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - CFrame: - any: true - CameraSubject: - struct: Instance - CameraType: - property: override-fields - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CoordinateFrame: - any: true - deprecated: - message: this property is deprecated. - replace: [] - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - DiagonalFieldOfView: - property: override-fields - FieldOfView: - property: override-fields - FieldOfViewMode: - property: override-fields - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FirstPersonTransition: - struct: Event - Focus: - any: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetLargestCutoffDistance: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetPanSpeed: - args: [] - method: true - GetPartsObscuringTarget: - args: - - required: false - type: any - - required: false - type: any - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - GetRoll: - args: [] - method: true - GetTiltSpeed: - args: [] - method: true - HeadLocked: - property: override-fields - HeadScale: - property: override-fields - Interpolate: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - InterpolationFinished: - struct: Event - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - MaxAxisFieldOfView: - property: override-fields - Name: - property: override-fields - NearPlaneZ: - property: read-only - PanUnits: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ScreenPointToRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetCameraPanMode: - args: - - required: false - type: any - method: true - SetImageServerView: - args: - - required: false - type: any - method: true - SetRoll: - args: - - required: false - type: any - method: true - TiltUnits: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - ViewportPointToRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - ViewportSize: - any: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WorldToScreenPoint: - args: - - required: false - type: any - method: true - WorldToViewportPoint: - args: - - required: false - type: any - method: true - Zoom: - args: - - required: false - type: any - method: true - ZoomToExtents: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - focus: - any: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - DataModel: - '*': - struct: Instance - AllowedGearTypeChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - BindToClose: - args: - - required: false - type: any - method: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - Close: - struct: Event - CloseLate: - struct: Event - CreatorId: - property: read-only - CreatorType: - property: read-only - DefineFastFlag: - args: - - required: false - type: any - - required: false - type: any - method: true - DefineFastInt: - args: - - required: false - type: any - - required: false - type: any - method: true - DefineFastString: - args: - - required: false - type: any - - required: false - type: any - method: true - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FindService: - args: - - required: false - type: any - method: true - GameId: - property: read-only - GearGenreSetting: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - Genre: - property: read-only - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetEngineFeature: - args: - - required: false - type: any - method: true - GetFastFlag: - args: - - required: false - type: any - method: true - GetFastInt: - args: - - required: false - type: any - method: true - GetFastString: - args: - - required: false - type: any - method: true - GetFullName: - args: [] - method: true - GetJobsInfo: - args: [] - method: true - GetMessage: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetObjects: - args: - - required: false - type: any - method: true - GetObjectsAllOrNone: - args: - - required: false - type: any - - required: false - type: any - method: true - GetObjectsAsync: - args: - - required: false - type: any - method: true - GetObjectsList: - args: - - required: false - type: any - method: true - GetPlaySessionId: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRemoteBuildMode: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetService: - args: - - type: - - AdService - - AnalyticsService - - AnimationClipProvider - - AnimationFromVideoCreatorService - - AnimationFromVideoCreatorStudioService - - AppUpdateService - - AssetCounterService - - AssetDeliveryProxy - - AssetImportService - - AssetManagerService - - AssetService - - AvatarEditorService - - AvatarImportService - - BadgeService - - CoreGui - - StarterGui - - BrowserService - - BulkImportService - - CacheableContentProvider - - HSRDataContentProvider - - MeshContentProvider - - SolidModelContentProvider - - CalloutService - - ChangeHistoryService - - Chat - - ClusterPacketCache - - CollectionService - - CommandService - - ConfigureServerService - - ContentProvider - - ContextActionService - - ControllerService - - CookiesService - - CorePackages - - CoreScriptDebuggingManagerHelper - - CoreScriptSyncService - - CrossDMScriptChangeListener - - DataModelPatchService - - DataStoreService - - Debris - - DebuggablePluginWatcher - - DebuggerConnectionManager - - DebuggerManager - - DebuggerUIService - - DeviceIdService - - DraftsService - - DraggerService - - EventIngestService - - ExperienceAuthService - - FaceAnimatorService - - FacialAnimationRecordingService - - FacialAnimationStreamingService - - FacialAnimationStreamingServiceV2 - - FlagStandService - - FlyweightService - - CSGDictionaryService - - NonReplicatedCSGDictionaryService - - FriendService - - GamePassService - - GamepadService - - Geometry - - GoogleAnalyticsConfiguration - - GroupService - - GuiService - - GuidRegistryService - - HapticService - - HeightmapImporterService - - Hopper - - HttpRbxApiService - - HttpService - - ILegacyStudioBridge - - LegacyStudioBridge - - IXPService - - IncrementalPatchBuilder - - InsertService - - JointsService - - KeyboardService - - KeyframeSequenceProvider - - LSPFileSyncService - - LanguageService - - Lighting - - LiveScriptingService - - LocalStorageService - - AppStorageService - - UserStorageService - - LocalizationService - - LodDataService - - LogService - - LoginService - - LuaWebService - - LuauScriptAnalyzerService - - MarketplaceService - - MaterialGenerationService - - MaterialService - - MemStorageService - - MemoryStoreService - - MessageBusService - - MessagingService - - MetaBreakpointManager - - MouseService - - NetworkClient - - NetworkServer - - NetworkSettings - - NotificationService - - Workspace - - PackageService - - PackageUIService - - PatchBundlerFileWatch - - PathfindingService - - PermissionsService - - PhysicsService - - PlayerEmulatorService - - Players - - PluginDebugService - - PluginGuiService - - PluginManagementService - - PluginPolicyService - - PointsService - - PolicyService - - ProcessInstancePhysicsService - - ProximityPromptService - - PublishService - - RbxAnalyticsService - - RemoteCursorService - - RemoteDebuggerServer - - RenderSettings - - ReplicatedFirst - - ReplicatedStorage - - RobloxPluginGuiService - - RobloxReplicatedStorage - - RtMessagingService - - RunService - - RuntimeScriptService - - SafetyService - - ScriptChangeService - - ScriptCloneWatcher - - ScriptCloneWatcherHelper - - ScriptContext - - ScriptEditorService - - ScriptRegistrationService - - ScriptService - - Selection - - SelectionHighlightManager - - ServerScriptService - - ServerStorage - - ServiceVisibilityService - - SessionService - - SharedTableRegistry - - ShorelineUpgraderService - - SmoothVoxelsUpgraderService - - SnippetService - - SocialService - - SoundService - - SpawnerService - - StarterPack - - StarterPlayer - - Stats - - Studio - - StudioAssetService - - StudioData - - StudioDeviceEmulatorService - - StudioPublishService - - StudioScriptDebugEventListener - - StudioSdkService - - StudioService - - TaskScheduler - - TeamCreateData - - TeamCreatePublishService - - TeamCreateService - - Teams - - TeleportService - - TemporaryCageMeshProvider - - TemporaryScriptService - - TestService - - TextBoxService - - TextChatService - - TextService - - ThirdPartyUserService - - TimerService - - ToastNotificationService - - TouchInputService - - TracerService - - TweenService - - UGCValidationService - - UnvalidatedAssetService - - UserInputService - - UserService - - VRService - - VersionControlService - - VideoCaptureService - - VirtualInputManager - - VirtualUser - - VisibilityCheckDispatcher - - VisibilityService - - Visit - - VoiceChatInternal - - VoiceChatService - method: true - must_use: true - GraphicsQualityChangeRequest: - struct: Event - HttpGetAsync: - args: - - required: false - type: any - - required: false - type: any - method: true - HttpPostAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - InsertObjectsAndJoinIfLegacyAsync: - args: - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsContentLoaded: - args: [] - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGearTypeAllowed: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IsLoaded: - args: [] - method: true - IsUniverseMetadataLoaded: - args: [] - method: true - ItemChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - JobId: - property: read-only - Load: - args: - - required: false - type: any - method: true - Loaded: - struct: Event - Name: - property: override-fields - OnClose: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - OpenScreenshotsFolder: - args: [] - method: true - OpenVideosFolder: - args: [] - method: true - Parent: - struct: Instance - PlaceId: - property: read-only - PlaceVersion: - property: read-only - PrivateServerId: - property: read-only - PrivateServerOwnerId: - property: read-only - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ReportInGoogleAnalytics: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SavePlace: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - ScreenshotReady: - struct: Event - ScreenshotSavedToAlbum: - struct: Event - ServiceAdded: - struct: Event - ServiceRemoving: - struct: Event - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastFlagForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastIntForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastStringForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetIsLoaded: - args: - - required: false - type: any - - required: false - type: any - method: true - SetPlaceId: - args: - - required: false - type: any - method: true - SetUniverseId: - args: - - required: false - type: any - method: true - Shutdown: - args: [] - method: true - UniverseMetadataLoaded: - struct: Event - VIPServerId: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - VIPServerOwnerId: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - Workspace: - struct: Workspace - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getService: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - lighting: - struct: Instance - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - service: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - workspace: - struct: Workspace - deprecated: - message: this property is deprecated. - replace: [] - EnumItem: - Name: - property: read-only - Value: - property: read-only - Event: - Connect: - args: - - type: function - method: true - Once: - args: - - type: function - method: true - Wait: - args: [] - method: true - connect: - args: - - type: function - method: true - deprecated: - message: lowercase methods have been superceded by uppercase ones - replace: - - Connect(%1) - wait: - args: - - type: function - method: true - deprecated: - message: lowercase methods have been superceded by uppercase ones - replace: - - Wait(%1) - Instance: - '*': - any: true - Plugin: - '*': - struct: Instance - Activate: - args: - - required: false - type: any - method: true - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionEnabled: - property: read-only - CreateDockWidgetPluginGui: - args: - - required: false - type: any - - required: false - type: any - method: true - CreatePluginAction: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CreatePluginMenu: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CreateQWidgetPluginGui: - args: - - required: false - type: any - - required: false - type: any - method: true - CreateToolbar: - args: - - required: false - type: any - method: true - Deactivate: - args: [] - method: true - Deactivation: - struct: Event - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - GetJoinMode: - args: [] - method: true - GetMouse: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetSelectedRibbonTool: - args: [] - method: true - GetSetting: - args: - - required: false - type: any - method: true - GetStudioUserId: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GridSize: - property: read-only - ImportFbxAnimation: - args: - - required: false - type: any - - required: false - type: any - method: true - ImportFbxRig: - args: - - required: false - type: any - method: true - Intersect: - args: - - required: false - type: any - method: true - Invoke: - args: - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsActivated: - args: [] - method: true - IsActivatedWithExclusiveMouse: - args: [] - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - Name: - property: override-fields - Negate: - args: - - required: false - type: any - method: true - OnInvoke: - args: - - required: false - type: any - - required: false - type: any - method: true - OnSetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - OpenScript: - args: - - required: false - type: any - - required: false - type: any - method: true - OpenWikiPage: - args: - - required: false - type: any - method: true - Parent: - struct: Instance - PauseSound: - args: - - required: false - type: any - method: true - PlaySound: - args: - - required: false - type: any - - required: false - type: any - method: true - ProcessAssetInsertionDrag: - property: override-fields - ProcessAssetInsertionDrop: - property: override-fields - PromptForExistingAssetId: - args: - - required: false - type: any - method: true - PromptSaveSelection: - args: - - required: false - type: any - method: true - Ready: - struct: Event - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ResumeSound: - args: - - required: false - type: any - method: true - SaveSelectedToRoblox: - args: [] - method: true - SelectRibbonTool: - args: - - required: false - type: any - - required: false - type: any - method: true - Separate: - args: - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - SetReady: - args: [] - method: true - SetSetting: - args: - - required: false - type: any - - required: false - type: any - method: true - StartDecalDrag: - args: - - required: false - type: any - method: true - StartDrag: - args: - - required: false - type: any - method: true - StopAllSounds: - args: [] - method: true - Union: - args: - - required: false - type: any - method: true - Unloading: - struct: Event - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Script: - '*': - struct: Instance - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CurrentEditor: - struct: Instance - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Disabled: - property: override-fields - Enabled: - property: override-fields - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetHash: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - LinkedSource: - property: override-fields - Name: - property: override-fields - Parent: - struct: Instance - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Terrain: - '*': - struct: Instance - AncestryChanged: - struct: Event - Anchored: - property: override-fields - ApplyAngularImpulse: - args: - - required: false - type: any - method: true - ApplyImpulse: - args: - - required: false - type: any - method: true - ApplyImpulseAtPosition: - args: - - required: false - type: any - - required: false - type: any - method: true - Archivable: - property: override-fields - AssemblyAngularVelocity: - any: true - AssemblyCenterOfMass: - any: true - AssemblyLinearVelocity: - any: true - AssemblyMass: - property: read-only - AssemblyRootPart: - struct: BasePart - AttributeChanged: - struct: Event - AutowedgeCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - AutowedgeCells: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - BackParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackSurface: - property: override-fields - BackSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomSurface: - property: override-fields - BottomSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BrickColor: - property: override-fields - CFrame: - any: true - CanCollide: - property: override-fields - CanCollideWith: - args: - - required: false - type: any - method: true - CanQuery: - property: override-fields - CanSetNetworkOwnership: - args: [] - method: true - CanShorelinesBeUpgraded: - args: [] - method: true - CanSmoothVoxelsBeUpgraded: - args: [] - method: true - CanTouch: - property: override-fields - CastShadow: - property: override-fields - CellCenterToWorld: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CellCornerToWorld: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CenterOfMass: - any: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - Clear: - args: [] - method: true - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionGroup: - property: override-fields - CollisionGroupId: - property: override-fields - Color: - property: override-fields - ConvertToSmooth: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - CopyRegion: - args: - - required: false - type: any - method: true - CountCells: - args: [] - method: true - CurrentPhysicalProperties: - property: read-only - CustomPhysicalProperties: - property: override-fields - Decoration: - property: override-fields - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Elasticity: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - ExtentsCFrame: - any: true - ExtentsSize: - any: true - FillBall: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillBlock: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillCylinder: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillWedge: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - Friction: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontSurface: - property: override-fields - FrontSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetChildren: - args: [] - method: true - GetConnectedParts: - args: - - required: false - type: any - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetJoints: - args: [] - method: true - GetMass: - args: [] - method: true - GetMaterialColor: - args: - - required: false - type: any - method: true - GetNetworkOwner: - args: [] - method: true - GetNetworkOwnershipAuto: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetRootPart: - args: [] - method: true - GetTerrainWireframe: - args: - - required: false - type: any - - required: false - type: any - method: true - GetTouchingParts: - args: [] - method: true - GetVelocityAtPosition: - args: - - required: false - type: any - method: true - GetWaterCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IntersectAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGrounded: - args: [] - method: true - IsSmooth: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - LeftParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftSurface: - property: override-fields - LeftSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LocalSimulationTouched: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - LocalTransparencyModifier: - property: override-fields - Locked: - property: override-fields - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Mass: - property: read-only - Massless: - property: override-fields - Material: - property: override-fields - MaterialColors: - property: override-fields - MaterialVariant: - property: override-fields - MaxExtents: - property: read-only - Name: - property: override-fields - Orientation: - any: true - Origin: - any: true - OutfitChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - PasteRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Pivot Offset: - any: true - PivotOffset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - Position: - any: true - ReadVoxels: - args: - - required: false - type: any - - required: false - type: any - method: true - ReceiveAge: - property: read-only - Reflectance: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ReplaceMaterial: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - ReplaceMaterialInTransform: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Resize: - args: - - required: false - type: any - - required: false - type: any - method: true - ResizeIncrement: - property: read-only - ResizeableFaces: - property: read-only - RightParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightSurface: - property: override-fields - RightSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RootPriority: - property: override-fields - RotVelocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - Rotation: - any: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetCells: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetMaterialColor: - args: - - required: false - type: any - - required: false - type: any - method: true - SetMaterialInTransform: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SetNetworkOwner: - args: - - required: false - type: any - method: true - SetNetworkOwnershipAuto: - args: [] - method: true - SetWaterCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - Size: - any: true - SmoothRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SpecificGravity: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - StoppedTouching: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - SubtractAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - TopParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopSurface: - property: override-fields - TopSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TouchEnded: - struct: Event - Touched: - struct: Event - Transparency: - property: override-fields - UnionAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Velocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WaterColor: - property: override-fields - WaterReflectance: - property: override-fields - WaterTransparency: - property: override-fields - WaterWaveSize: - property: override-fields - WaterWaveSpeed: - property: override-fields - WorldToCell: - args: - - required: false - type: any - method: true - WorldToCellPreferEmpty: - args: - - required: false - type: any - method: true - WorldToCellPreferSolid: - args: - - required: false - type: any - method: true - WriteVoxels: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - brickColor: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getMass: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - resize: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - subtractAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - unionAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Workspace: - '*': - struct: Instance - AddPersistentPlayer: - args: - - required: false - type: any - method: true - AllowThirdPartySales: - property: override-fields - AncestryChanged: - struct: Event - Archivable: - property: override-fields - ArePartsTouchingOthers: - args: - - required: false - type: any - - required: false - type: any - method: true - AttributeChanged: - struct: Event - Blockcast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BulkMoveTo: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CacheCurrentTerrain: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpDistance: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpHeight: - args: - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpPower: - args: - - required: false - type: any - - required: false - type: any - method: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - ClearCachedTerrain: - args: - - required: false - type: any - method: true - ClientAnimatorThrottling: - property: override-fields - Clone: - args: [] - method: true - CurrentCamera: - struct: Camera - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - DistributedGameTime: - property: override-fields - ExperimentalSolverIsEnabled: - args: [] - method: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FindPartOnRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartOnRayWithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartOnRayWithWhitelist: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3WithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3WithWhiteList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetBoundingBox: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetExtentsSize: - args: [] - method: true - GetFullName: - args: [] - method: true - GetModelCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetModelSize: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetNumAwakeParts: - args: [] - method: true - GetPartBoundsInBox: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - GetPartBoundsInRadius: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - GetPartsInPart: - args: - - required: false - type: any - - required: false - type: any - method: true - GetPhysicsThrottling: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPrimaryPartCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRealPhysicsFPS: - args: [] - method: true - GetScale: - args: [] - method: true - GetServerTimeNow: - args: [] - method: true - GlobalWind: - any: true - Gravity: - property: override-fields - HumanoidOnlySetCollisionsOnStateChange: - property: override-fields - IKMoveTo: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsRegion3Empty: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IsRegion3EmptyWithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - JoinToOutsiders: - args: - - required: false - type: any - - required: false - type: any - method: true - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - MeshPartHeadsAndAccessories: - property: override-fields - ModelStreamingMode: - property: override-fields - MoveTo: - args: - - required: false - type: any - method: true - Name: - property: override-fields - Origin: - any: true - PGSIsEnabled: - args: [] - method: true - Parent: - struct: Instance - PersistentLoaded: - struct: Event - PhysicsSteppingMethod: - property: override-fields - Pivot Offset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - PrimaryPart: - struct: BasePart - Raycast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - RaycastCachedTerrain: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - RejectCharacterDeletions: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - RemovePersistentPlayer: - args: - - required: false - type: any - method: true - ReplicateInstanceDestroySetting: - property: override-fields - ResetOrientationToIdentity: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Retargeting: - property: override-fields - Scale: - property: override-fields - ScaleTo: - args: - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetIdentityOrientation: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetInsertPoint: - args: - - required: false - type: any - - required: false - type: any - method: true - SetMeshPartHeadsAndAccessories: - args: - - required: false - type: any - method: true - SetPhysicsThrottleEnabled: - args: - - required: false - type: any - method: true - SetPrimaryPartCFrame: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SignalBehavior: - property: override-fields - Spherecast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - StreamOutBehavior: - property: override-fields - StreamingIntegrityMode: - property: override-fields - StreamingMinRadius: - property: override-fields - StreamingTargetRadius: - property: override-fields - Terrain: - struct: Terrain - TouchesUseCollisionGroups: - property: override-fields - TranslateBy: - args: - - required: false - type: any - method: true - UnjoinFromOutsiders: - args: - - required: false - type: any - method: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WorldPivot: - any: true - ZoomToExtents: - args: [] - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - findPartOnRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - findPartsInRegion3: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - move: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - moveTo: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] -last_updated: 1681227519 -last_selene_version: 0.25.0 -roblox_classes: - Accessory: - superclass: Accoutrement - events: [] - properties: - - AccessoryType - Accoutrement: - superclass: Instance - events: [] - properties: - - AttachmentForward - - AttachmentPoint - - AttachmentPos - - AttachmentRight - - AttachmentUp - Actor: - superclass: Model - events: [] - properties: [] - AdGui: - superclass: SurfaceGuiBase - events: [] - properties: - - AdShape - - Status - AdPortal: - superclass: Instance - events: [] - properties: - - PortalInvalidReason - - PortalStatus - - PortalVersion - - Status - AdService: - superclass: Instance - events: - - AdTeleportEnded - - AdTeleportInitiated - - VideoAdClosed - properties: [] - AdvancedDragger: - superclass: Instance - events: [] - properties: [] - AirController: - superclass: ControllerBase - events: [] - properties: - - MaintainAngularMomentum - - MaintainLinearMomentum - - MoveMaxForce - - OrientationMaxTorque - - OrientationSpeedFactor - - VectorForce - AlignOrientation: - superclass: Constraint - events: [] - properties: - - AlignType - - CFrame - - MaxAngularVelocity - - MaxTorque - - Mode - - PrimaryAxis - - PrimaryAxisOnly - - ReactionTorqueEnabled - - Responsiveness - - RigidityEnabled - - SecondaryAxis - AlignPosition: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - MaxForce - - MaxVelocity - - Mode - - Position - - ReactionForceEnabled - - Responsiveness - - RigidityEnabled - AnalysticsSettings: - superclass: GenericSettings - events: [] - properties: [] - AnalyticsService: - superclass: Instance - events: [] - properties: - - ApiKey - AngularVelocity: - superclass: Constraint - events: [] - properties: - - AngularVelocity - - MaxTorque - - ReactionTorqueEnabled - - RelativeTo - Animation: - superclass: Instance - events: [] - properties: - - AnimationId - AnimationClip: - superclass: Instance - events: [] - properties: - - Guid - - Loop - - Priority - AnimationClipProvider: - superclass: Instance - events: [] - properties: [] - AnimationConstraint: - superclass: Constraint - events: [] - properties: - - IsKinematic - - MaxForce - - MaxTorque - - Transform - AnimationController: - superclass: Instance - events: - - AnimationPlayed - properties: [] - AnimationFromVideoCreatorService: - superclass: Instance - events: [] - properties: [] - AnimationFromVideoCreatorStudioService: - superclass: Instance - events: [] - properties: [] - AnimationRigData: - superclass: Instance - events: [] - properties: [] - AnimationStreamTrack: - superclass: Instance - events: - - Stopped - properties: - - Animation - - IsPlaying - - Priority - - WeightCurrent - - WeightTarget - AnimationTrack: - superclass: Instance - events: - - DidLoop - - Ended - - KeyframeReached - - Stopped - properties: - - Animation - - IsPlaying - - Length - - Looped - - Priority - - Speed - - TimePosition - - WeightCurrent - - WeightTarget - Animator: - superclass: Instance - events: - - AnimationPlayed - - AnimationPlayedCoreScript - - AnimationStreamTrackPlayed - properties: - - EvaluationThrottled - - PreferLodEnabled - AppStorageService: - superclass: LocalStorageService - events: [] - properties: [] - AppUpdateService: - superclass: Instance - events: [] - properties: [] - ArcHandles: - superclass: HandlesBase - events: - - MouseButton1Down - - MouseButton1Up - - MouseDrag - - MouseEnter - - MouseLeave - properties: - - Axes - AssetCounterService: - superclass: Instance - events: [] - properties: [] - AssetDeliveryProxy: - superclass: Instance - events: [] - properties: - - Interface - - Port - - StartServer - AssetImportService: - superclass: Instance - events: [] - properties: [] - AssetImportSession: - superclass: Instance - events: - - UploadComplete - - UploadCompleteDeprecated - - UploadProgress - properties: [] - AssetManagerService: - superclass: Instance - events: - - AssetImportedSignal - - ImportSessionFinished - - ImportSessionStarted - - MayBeLinkedSourceModified - properties: [] - AssetPatchSettings: - superclass: Instance - events: [] - properties: - - ContentId - - OutputPath - - PatchId - AssetService: - superclass: Instance - events: - - OpenPublishResultModal - properties: [] - AssetSoundEffect: - superclass: CustomSoundEffect - events: [] - properties: [] - Atmosphere: - superclass: Instance - events: [] - properties: - - Color - - Decay - - Density - - Glare - - Haze - - Offset - Attachment: - superclass: Instance - events: [] - properties: - - Axis - - CFrame - - Orientation - - Position - - Rotation - - SecondaryAxis - - Visible - - WorldAxis - - WorldCFrame - - WorldOrientation - - WorldPosition - - WorldRotation - - WorldSecondaryAxis - AudioPages: - superclass: Pages - events: [] - properties: [] - AudioSearchParams: - superclass: Instance - events: [] - properties: - - Album - - Artist - - AudioSubtype - - MaxDuration - - MinDuration - - SearchKeyword - - Tag - - Title - AvatarEditorService: - superclass: Instance - events: - - OpenAllowInventoryReadAccess - - OpenPromptCreateOufit - - OpenPromptDeleteOutfit - - OpenPromptRenameOutfit - - OpenPromptSaveAvatar - - OpenPromptSetFavorite - - OpenPromptUpdateOutfit - - PromptAllowInventoryReadAccessCompleted - - PromptCreateOutfitCompleted - - PromptDeleteOutfitCompleted - - PromptRenameOutfitCompleted - - PromptSaveAvatarCompleted - - PromptSaveAvatarThumbnailCustomizationCompleted - - PromptSetFavoriteCompleted - - PromptUpdateOutfitCompleted - properties: [] - AvatarImportService: - superclass: Instance - events: [] - properties: [] - Backpack: - superclass: Instance - events: [] - properties: [] - BackpackItem: - superclass: Model - events: [] - properties: - - TextureId - BadgeService: - superclass: Instance - events: - - BadgeAwarded - - OnBadgeAwarded - properties: [] - BallSocketConstraint: - superclass: Constraint - events: [] - properties: - - LimitsEnabled - - MaxFrictionTorque - - Radius - - Restitution - - TwistLimitsEnabled - - TwistLowerAngle - - TwistUpperAngle - - UpperAngle - BasePart: - superclass: PVInstance - events: - - LocalSimulationTouched - - OutfitChanged - - StoppedTouching - - TouchEnded - - Touched - properties: - - Anchored - - AssemblyAngularVelocity - - AssemblyCenterOfMass - - AssemblyLinearVelocity - - AssemblyMass - - AssemblyRootPart - - BackParamA - - BackParamB - - BackSurface - - BackSurfaceInput - - BottomParamA - - BottomParamB - - BottomSurface - - BottomSurfaceInput - - BrickColor - - CFrame - - CanCollide - - CanQuery - - CanTouch - - CastShadow - - CenterOfMass - - CollisionGroup - - CollisionGroupId - - Color - - CurrentPhysicalProperties - - CustomPhysicalProperties - - Elasticity - - ExtentsCFrame - - ExtentsSize - - Friction - - FrontParamA - - FrontParamB - - FrontSurface - - FrontSurfaceInput - - LeftParamA - - LeftParamB - - LeftSurface - - LeftSurfaceInput - - LocalTransparencyModifier - - Locked - - Mass - - Massless - - Material - - MaterialVariant - - Orientation - - PivotOffset - - Position - - ReceiveAge - - Reflectance - - ResizeIncrement - - ResizeableFaces - - RightParamA - - RightParamB - - RightSurface - - RightSurfaceInput - - RootPriority - - RotVelocity - - Rotation - - Size - - SpecificGravity - - TopParamA - - TopParamB - - TopSurface - - TopSurfaceInput - - Transparency - - Velocity - - brickColor - BasePlayerGui: - superclass: Instance - events: [] - properties: [] - BaseScript: - superclass: LuaSourceContainer - events: [] - properties: - - Disabled - - Enabled - - LinkedSource - - RunContext - BaseWrap: - superclass: Instance - events: [] - properties: - - CageMeshId - - CageOrigin - - CageOriginWorld - - HSRAssetId - - ImportOrigin - - ImportOriginWorld - Beam: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - Brightness - - Color - - CurveSize0 - - CurveSize1 - - Enabled - - FaceCamera - - LightEmission - - LightInfluence - - Segments - - Texture - - TextureLength - - TextureMode - - TextureSpeed - - Transparency - - Width0 - - Width1 - - ZOffset - BevelMesh: - superclass: DataModelMesh - events: [] - properties: [] - BillboardGui: - superclass: LayerCollector - events: [] - properties: - - Active - - Adornee - - AlwaysOnTop - - Brightness - - ClipsDescendants - - CurrentDistance - - DistanceLowerLimit - - DistanceStep - - DistanceUpperLimit - - ExtentsOffset - - ExtentsOffsetWorldSpace - - LightInfluence - - MaxDistance - - PlayerToHideFrom - - Size - - SizeOffset - - StudsOffset - - StudsOffsetWorldSpace - BinaryStringValue: - superclass: ValueBase - events: - - Changed - properties: [] - BindableEvent: - superclass: Instance - events: - - Event - properties: [] - BindableFunction: - superclass: Instance - events: [] - properties: [] - BlockMesh: - superclass: BevelMesh - events: [] - properties: [] - BloomEffect: - superclass: PostEffect - events: [] - properties: - - Intensity - - Size - - Threshold - BlurEffect: - superclass: PostEffect - events: [] - properties: - - Size - BodyAngularVelocity: - superclass: BodyMover - events: [] - properties: - - AngularVelocity - - MaxTorque - - P - - angularvelocity - - maxTorque - BodyColors: - superclass: CharacterAppearance - events: [] - properties: - - HeadColor - - HeadColor3 - - LeftArmColor - - LeftArmColor3 - - LeftLegColor - - LeftLegColor3 - - RightArmColor - - RightArmColor3 - - RightLegColor - - RightLegColor3 - - TorsoColor - - TorsoColor3 - BodyForce: - superclass: BodyMover - events: [] - properties: - - Force - - force - BodyGyro: - superclass: BodyMover - events: [] - properties: - - CFrame - - D - - MaxTorque - - P - - cframe - - maxTorque - BodyMover: - superclass: Instance - events: [] - properties: [] - BodyPosition: - superclass: BodyMover - events: - - ReachedTarget - properties: - - D - - MaxForce - - P - - Position - - maxForce - - position - BodyThrust: - superclass: BodyMover - events: [] - properties: - - Force - - Location - - force - - location - BodyVelocity: - superclass: BodyMover - events: [] - properties: - - MaxForce - - P - - Velocity - - maxForce - - velocity - Bone: - superclass: Attachment - events: [] - properties: - - Transform - - TransformedCFrame - - TransformedWorldCFrame - BoolValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - BoxHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Size - Breakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - Enabled - - Id - - Line - - LogMessage - - MetaBreakpointId - - Script - - Valid - - Verified - BrickColorValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - BrowserService: - superclass: Instance - events: - - AuthCookieCopiedToEngine - - BrowserWindowClosed - - BrowserWindowWillNavigate - - JavaScriptCallback - properties: [] - BubbleChatConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AdorneeName - - BackgroundColor3 - - BackgroundTransparency - - BubbleDuration - - BubblesSpacing - - Enabled - - Font - - FontFace - - LocalPlayerStudsOffset - - MaxDistance - - MinimizeDistance - - TextColor3 - - TextSize - - VerticalStudsOffset - BulkImportService: - superclass: Instance - events: - - AssetImported - - BulkImportFinished - - BulkImportStarted - properties: [] - BuoyancySensor: - superclass: SensorBase - events: [] - properties: - - FullySubmerged - - TouchingSurface - CFrameValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - CSGDictionaryService: - superclass: FlyweightService - events: [] - properties: [] - CacheableContentProvider: - superclass: Instance - events: [] - properties: [] - CalloutService: - superclass: Instance - events: [] - properties: [] - Camera: - superclass: Instance - events: - - FirstPersonTransition - - InterpolationFinished - properties: - - CFrame - - CameraSubject - - CameraType - - CoordinateFrame - - DiagonalFieldOfView - - FieldOfView - - FieldOfViewMode - - Focus - - HeadLocked - - HeadScale - - MaxAxisFieldOfView - - NearPlaneZ - - ViewportSize - - focus - CanvasGroup: - superclass: GuiObject - events: [] - properties: - - GroupColor3 - - GroupTransparency - CatalogPages: - superclass: Pages - events: [] - properties: [] - ChangeHistoryService: - superclass: Instance - events: - - OnRedo - - OnUndo - properties: [] - ChannelSelectorSoundEffect: - superclass: CustomSoundEffect - events: [] - properties: - - Channel - CharacterAppearance: - superclass: Instance - events: [] - properties: [] - CharacterMesh: - superclass: CharacterAppearance - events: [] - properties: - - BaseTextureId - - BodyPart - - MeshId - - OverlayTextureId - Chat: - superclass: Instance - events: - - BubbleChatSettingsChanged - - Chatted - properties: - - BubbleChatEnabled - - LoadDefaultChat - ChatInputBarConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AbsolutePosition - - AbsolutePositionWrite - - AbsoluteSize - - AbsoluteSizeWrite - - BackgroundColor3 - - BackgroundTransparency - - Enabled - - FontFace - - PlaceholderColor3 - - TargetTextChannel - - TextBox - - TextColor3 - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - ChatWindowConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AbsolutePosition - - AbsolutePositionWrite - - AbsoluteSize - - AbsoluteSizeWrite - - BackgroundColor3 - - BackgroundTransparency - - Enabled - - FontFace - - HeightScale - - HorizontalAlignment - - TextColor3 - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - VerticalAlignment - - WidthScale - ChorusSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Mix - - Rate - ClickDetector: - superclass: Instance - events: - - MouseClick - - MouseHoverEnter - - MouseHoverLeave - - RightMouseClick - - mouseClick - properties: - - CursorIcon - - MaxActivationDistance - ClientReplicator: - superclass: NetworkReplicator - events: - - RCCProfilerDataComplete - - StatsReceived - properties: [] - ClimbController: - superclass: ControllerBase - events: [] - properties: - - AccelerationTime - - MoveMaxForce - - OrientationMaxTorque - - OrientationSpeedFactor - Clothing: - superclass: CharacterAppearance - events: [] - properties: - - Color3 - CloudLocalizationTable: - superclass: LocalizationTable - events: [] - properties: [] - Clouds: - superclass: Instance - events: [] - properties: - - Color - - Cover - - Density - - Enabled - ClusterPacketCache: - superclass: Instance - events: [] - properties: [] - CollectionService: - superclass: Instance - events: - - ItemAdded - - ItemRemoved - - TagAdded - - TagRemoved - properties: [] - Color3Value: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - ColorCorrectionEffect: - superclass: PostEffect - events: [] - properties: - - Brightness - - Contrast - - Saturation - - TintColor - CommandInstance: - superclass: Instance - events: [] - properties: - - AllowGUIAccessPoints - - Checked - - DefaultShortcut - - DisplayName - - Enabled - - Icon - - Name - - Permission - - StatusTip - CommandService: - superclass: Instance - events: - - CommandExecuting - properties: [] - CompressorSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Attack - - GainMakeup - - Ratio - - Release - - SideChain - - Threshold - ConeHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Height - - Radius - Configuration: - superclass: Instance - events: [] - properties: [] - ConfigureServerService: - superclass: Instance - events: [] - properties: [] - Constraint: - superclass: Instance - events: [] - properties: - - Active - - Attachment0 - - Attachment1 - - Color - - Enabled - - Visible - ContentProvider: - superclass: Instance - events: - - AssetFetchFailed - properties: - - BaseUrl - - RequestQueueSize - ContextActionService: - superclass: Instance - events: - - BoundActionAdded - - BoundActionChanged - - BoundActionRemoved - - GetActionButtonEvent - - LocalToolEquipped - - LocalToolUnequipped - properties: [] - Controller: - superclass: Instance - events: - - ButtonChanged - properties: [] - ControllerBase: - superclass: Instance - events: [] - properties: - - MoveSpeedFactor - - RigidityEnabled - ControllerManager: - superclass: Instance - events: [] - properties: - - ActiveController - - BaseMoveSpeed - - BaseTurnSpeed - - ClimbSensor - - FacingDirection - - GroundSensor - - MovingDirection - ControllerPartSensor: - superclass: ControllerSensor - events: [] - properties: - - HitFrame - - HitNormal - - SearchDistance - - SensedPart - - SensorMode - ControllerSensor: - superclass: SensorBase - events: [] - properties: [] - ControllerService: - superclass: Instance - events: [] - properties: [] - CookiesService: - superclass: Instance - events: [] - properties: [] - CoreGui: - superclass: BasePlayerGui - events: - - UserGuiRenderingChanged - properties: - - SelectionImageObject - - Version - CorePackages: - superclass: Instance - events: [] - properties: [] - CoreScript: - superclass: BaseScript - events: [] - properties: [] - CoreScriptDebuggingManagerHelper: - superclass: Instance - events: [] - properties: [] - CoreScriptSyncService: - superclass: Instance - events: [] - properties: [] - CornerWedgePart: - superclass: BasePart - events: [] - properties: [] - CrossDMScriptChangeListener: - superclass: Instance - events: - - GuidLineContentsChanged - - GuidNameChanged - properties: [] - CurveAnimation: - superclass: AnimationClip - events: [] - properties: [] - CustomEvent: - superclass: Instance - events: - - ReceiverConnected - - ReceiverDisconnected - properties: [] - CustomEventReceiver: - superclass: Instance - events: - - EventConnected - - EventDisconnected - - SourceValueChanged - properties: - - Source - CustomSoundEffect: - superclass: SoundEffect - events: [] - properties: [] - CylinderHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Angle - - Height - - InnerRadius - - Radius - CylinderMesh: - superclass: BevelMesh - events: [] - properties: [] - CylindricalConstraint: - superclass: SlidingBallConstraint - events: [] - properties: - - AngularActuatorType - - AngularLimitsEnabled - - AngularResponsiveness - - AngularRestitution - - AngularSpeed - - AngularVelocity - - CurrentAngle - - InclinationAngle - - LowerAngle - - MotorMaxAngularAcceleration - - MotorMaxTorque - - RotationAxisVisible - - ServoMaxTorque - - TargetAngle - - UpperAngle - - WorldRotationAxis - DataModel: - superclass: ServiceProvider - events: - - AllowedGearTypeChanged - - GraphicsQualityChangeRequest - - ItemChanged - - Loaded - - ScreenshotReady - - ScreenshotSavedToAlbum - - UniverseMetadataLoaded - properties: - - CreatorId - - CreatorType - - GameId - - GearGenreSetting - - Genre - - IsSFFlagsLoaded - - JobId - - PlaceId - - PlaceVersion - - PrivateServerId - - PrivateServerOwnerId - - VIPServerId - - VIPServerOwnerId - - Workspace - - lighting - - workspace - DataModelMesh: - superclass: Instance - events: [] - properties: - - Offset - - Scale - - VertexColor - DataModelPatchService: - superclass: Instance - events: [] - properties: [] - DataModelSession: - superclass: Instance - events: - - CurrentDataModelTypeAboutToChange - - CurrentDataModelTypeChanged - - DataModelCreated - - DataModelWillBeDestroyed - properties: - - CurrentDataModelType - - SessionId - DataStore: - superclass: GlobalDataStore - events: [] - properties: [] - DataStoreIncrementOptions: - superclass: Instance - events: [] - properties: [] - DataStoreInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - DataStoreName - - UpdatedTime - DataStoreKey: - superclass: Instance - events: [] - properties: - - KeyName - DataStoreKeyInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - UpdatedTime - - Version - DataStoreKeyPages: - superclass: Pages - events: [] - properties: - - Cursor - DataStoreListingPages: - superclass: Pages - events: [] - properties: - - Cursor - DataStoreObjectVersionInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - IsDeleted - - Version - DataStoreOptions: - superclass: Instance - events: [] - properties: - - AllScopes - DataStorePages: - superclass: Pages - events: [] - properties: [] - DataStoreService: - superclass: Instance - events: [] - properties: - - AutomaticRetry - - LegacyNamingScheme - DataStoreSetOptions: - superclass: Instance - events: [] - properties: [] - DataStoreVersionPages: - superclass: Pages - events: [] - properties: [] - Debris: - superclass: Instance - events: [] - properties: - - MaxItems - DebugSettings: - superclass: Instance - events: [] - properties: - - DataModel - - InstanceCount - - IsScriptStackTracingEnabled - - JobCount - - PlayerCount - - ReportSoundWarnings - - RobloxVersion - - TickCountPreciseOverride - DebuggablePluginWatcher: - superclass: Instance - events: [] - properties: [] - DebuggerBreakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - IsEnabled - - Line - - LogExpression - - isContextDependentBreakpoint - DebuggerConnection: - superclass: Instance - events: - - BreakpointAdded - - BreakpointChanged - - BreakpointRemoved - - Paused - - Resumed - properties: - - ErrorMessage - - HasError - - Id - - IsPaused - DebuggerConnectionManager: - superclass: Instance - events: - - ConnectionEnded - - ConnectionStarted - - FocusChanged - properties: - - Timeout - DebuggerLuaResponse: - superclass: Instance - events: [] - properties: - - IsError - - IsSuccess - - Message - - RequestId - - Status - DebuggerManager: - superclass: Instance - events: - - DebuggerAdded - - DebuggerRemoved - properties: - - DebuggingEnabled - DebuggerUIService: - superclass: Instance - events: - - ExpressionAdded - properties: [] - DebuggerVariable: - superclass: Instance - events: [] - properties: - - Name - - Populated - - Type - - Value - - VariableId - - VariablesCount - DebuggerWatch: - superclass: Instance - events: [] - properties: - - Expression - Decal: - superclass: FaceInstance - events: [] - properties: - - Color3 - - LocalTransparencyModifier - - Shiny - - Specular - - Texture - - Transparency - - ZIndex - DepthOfFieldEffect: - superclass: PostEffect - events: [] - properties: - - FarIntensity - - FocusDistance - - InFocusRadius - - NearIntensity - DeviceIdService: - superclass: Instance - events: [] - properties: [] - Dialog: - superclass: Instance - events: - - DialogChoiceSelected - properties: - - BehaviorType - - ConversationDistance - - GoodbyeChoiceActive - - GoodbyeDialog - - InUse - - InitialPrompt - - Purpose - - Tone - - TriggerDistance - - TriggerOffset - DialogChoice: - superclass: Instance - events: [] - properties: - - GoodbyeChoiceActive - - GoodbyeDialog - - ResponseDialog - - UserDialog - DistortionSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Level - DockWidgetPluginGui: - superclass: PluginGui - events: [] - properties: - - HostWidgetWasRestored - DoubleConstrainedValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - ConstrainedValue - - MaxValue - - MinValue - - Value - DraftsService: - superclass: Instance - events: - - CommitStatusChanged - - DraftAdded - - DraftRemoved - - DraftStatusChanged - - EditorsListChanged - - UpdateStatusChanged - properties: [] - Dragger: - superclass: Instance - events: [] - properties: [] - DraggerService: - superclass: Instance - events: [] - properties: - - AlignDraggedObjects - - AngleSnapEnabled - - AngleSnapIncrement - - AnimateHover - - CollisionsEnabled - - DraggerCoordinateSpace - - DraggerMovementMode - - GeometrySnapColor - - HoverAnimateFrequency - - HoverLineThickness - - HoverThickness - - JointsEnabled - - LinearSnapEnabled - - LinearSnapIncrement - - PivotSnapToGeometry - - ShowHover - - ShowPivotIndicator - DynamicRotate: - superclass: JointInstance - events: [] - properties: - - BaseAngle - EchoSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Delay - - DryLevel - - Feedback - - WetLevel - EmotesPages: - superclass: InventoryPages - events: [] - properties: [] - EqualizerSoundEffect: - superclass: SoundEffect - events: [] - properties: - - HighGain - - LowGain - - MidGain - EulerRotationCurve: - superclass: Instance - events: [] - properties: - - RotationOrder - EventIngestService: - superclass: Instance - events: [] - properties: [] - ExperienceAuthService: - superclass: Instance - events: - - OpenAuthPrompt - properties: [] - ExperienceInviteOptions: - superclass: Instance - events: [] - properties: - - InviteMessageId - - InviteUser - - LaunchData - - PromptMessage - Explosion: - superclass: Instance - events: - - Hit - properties: - - BlastPressure - - BlastRadius - - DestroyJointRadiusPercent - - ExplosionType - - Position - - TimeScale - - Visible - FaceAnimatorService: - superclass: Instance - events: - - TrackerError - - TrackerPrompt - properties: - - AudioAnimationEnabled - - FlipHeadOrientation - - VideoAnimationEnabled - FaceControls: - superclass: Instance - events: [] - properties: - - ChinRaiser - - ChinRaiserUpperLip - - Corrugator - - EyesLookDown - - EyesLookLeft - - EyesLookRight - - EyesLookUp - - FlatPucker - - Funneler - - JawDrop - - JawLeft - - JawRight - - LeftBrowLowerer - - LeftCheekPuff - - LeftCheekRaiser - - LeftDimpler - - LeftEyeClosed - - LeftEyeUpperLidRaiser - - LeftInnerBrowRaiser - - LeftLipCornerDown - - LeftLipCornerPuller - - LeftLipStretcher - - LeftLowerLipDepressor - - LeftNoseWrinkler - - LeftOuterBrowRaiser - - LeftUpperLipRaiser - - LipPresser - - LipsTogether - - LowerLipSuck - - MouthLeft - - MouthRight - - Pucker - - RightBrowLowerer - - RightCheekPuff - - RightCheekRaiser - - RightDimpler - - RightEyeClosed - - RightEyeUpperLidRaiser - - RightInnerBrowRaiser - - RightLipCornerDown - - RightLipCornerPuller - - RightLipStretcher - - RightLowerLipDepressor - - RightNoseWrinkler - - RightOuterBrowRaiser - - RightUpperLipRaiser - - TongueDown - - TongueOut - - TongueUp - - UpperLipSuck - FaceInstance: - superclass: Instance - events: [] - properties: - - Face - FacialAnimationRecordingService: - superclass: Instance - events: [] - properties: - - BiometricDataConsent - FacialAnimationStreamingService: - superclass: Instance - events: [] - properties: - - EnableFlags - - Enabled - FacialAnimationStreamingServiceStats: - superclass: Instance - events: - - isStreamingFacsUpdated - properties: [] - FacialAnimationStreamingServiceV2: - superclass: Instance - events: [] - properties: - - ServiceState - Feature: - superclass: Instance - events: [] - properties: - - FaceId - - InOut - - LeftRight - - TopBottom - File: - superclass: Instance - events: [] - properties: - - Size - FileMesh: - superclass: DataModelMesh - events: [] - properties: - - MeshId - - TextureId - Fire: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - Heat - - SecondaryColor - - Size - - TimeScale - - size - Flag: - superclass: Tool - events: [] - properties: - - TeamColor - FlagStand: - superclass: Part - events: - - FlagCaptured - properties: - - TeamColor - FlagStandService: - superclass: Instance - events: [] - properties: [] - FlangeSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Mix - - Rate - FloatCurve: - superclass: Instance - events: [] - properties: - - Length - FloorWire: - superclass: GuiBase3d - events: [] - properties: - - CycleOffset - - From - - StudsBetweenTextures - - Texture - - TextureSize - - To - - Velocity - - WireRadius - FlyweightService: - superclass: Instance - events: [] - properties: [] - Folder: - superclass: Instance - events: [] - properties: [] - ForceField: - superclass: Instance - events: [] - properties: - - Visible - FormFactorPart: - superclass: BasePart - events: [] - properties: - - FormFactor - - formFactor - Frame: - superclass: GuiObject - events: [] - properties: - - Style - FriendPages: - superclass: Pages - events: [] - properties: [] - FriendService: - superclass: Instance - events: - - FriendsUpdated - properties: [] - FunctionalTest: - superclass: Instance - events: [] - properties: - - Description - GamePassService: - superclass: Instance - events: [] - properties: [] - GameSettings: - superclass: Instance - events: - - VideoRecordingChangeRequest - properties: - - VideoCaptureEnabled - - VideoRecording - GamepadService: - superclass: Instance - events: - - GamepadThumbstick1Changed - properties: - - GamepadCursorEnabled - GenericSettings: - superclass: ServiceProvider - events: [] - properties: [] - Geometry: - superclass: Instance - events: [] - properties: [] - GetTextBoundsParams: - superclass: Instance - events: [] - properties: - - Font - - Size - - Text - - Width - GlobalDataStore: - superclass: Instance - events: [] - properties: [] - GlobalSettings: - superclass: GenericSettings - events: [] - properties: [] - Glue: - superclass: JointInstance - events: [] - properties: - - F0 - - F1 - - F2 - - F3 - GoogleAnalyticsConfiguration: - superclass: Instance - events: [] - properties: [] - GroundController: - superclass: ControllerBase - events: [] - properties: - - AccelerationLean - - AccelerationTime - - AlignSpeed - - AlignTorque - - DecelerationTime - - Friction - - FrictionWeight - - GroundOffset - - StandForce - - StandSpeed - - TurningFactor - GroupService: - superclass: Instance - events: [] - properties: [] - GuiBase: - superclass: Instance - events: [] - properties: [] - GuiBase2d: - superclass: GuiBase - events: - - SelectionChanged - properties: - - AbsolutePosition - - AbsoluteRotation - - AbsoluteSize - - AutoLocalize - - ClippedRect - - IsNotOccluded - - Localize - - RawRect2D - - RootLocalizationTable - - SelectionBehaviorDown - - SelectionBehaviorLeft - - SelectionBehaviorRight - - SelectionBehaviorUp - - SelectionGroup - - TotalGroupScale - GuiBase3d: - superclass: GuiBase - events: [] - properties: - - Color - - Color3 - - Transparency - - Visible - GuiButton: - superclass: GuiObject - events: - - Activated - - MouseButton1Click - - MouseButton1Down - - MouseButton1Up - - MouseButton2Click - - MouseButton2Down - - MouseButton2Up - properties: - - AutoButtonColor - - Modal - - Selected - - Style - GuiLabel: - superclass: GuiObject - events: [] - properties: [] - GuiMain: - superclass: ScreenGui - events: [] - properties: [] - GuiObject: - superclass: GuiBase2d - events: - - DragBegin - - DragStopped - - InputBegan - - InputChanged - - InputEnded - - MouseEnter - - MouseLeave - - MouseMoved - - MouseWheelBackward - - MouseWheelForward - - SelectionGained - - SelectionLost - - TouchLongPress - - TouchPan - - TouchPinch - - TouchRotate - - TouchSwipe - - TouchTap - properties: - - Active - - AnchorPoint - - AutomaticSize - - BackgroundColor - - BackgroundColor3 - - BackgroundTransparency - - BorderColor - - BorderColor3 - - BorderMode - - BorderSizePixel - - ClipsDescendants - - Draggable - - LayoutOrder - - NextSelectionDown - - NextSelectionLeft - - NextSelectionRight - - NextSelectionUp - - Position - - Rotation - - Selectable - - SelectionImageObject - - SelectionOrder - - Size - - SizeConstraint - - Transparency - - Visible - - ZIndex - GuiService: - superclass: Instance - events: - - BrowserWindowClosed - - CloseInspectMenuRequest - - CoreGuiRenderOverflowed - - EmotesMenuOpenChanged - - ErrorMessageChanged - - GuiVisibilityChangedSignal - - InspectMenuEnabledChangedSignal - - InspectPlayerFromHumanoidDescriptionRequest - - InspectPlayerFromUserIdWithCtxRequest - - KeyPressed - - MenuClosed - - MenuOpened - - NativeClose - - NetworkPausedEnabledChanged - - Open9SliceEditor - - PurchasePromptShown - - SafeZoneOffsetsChanged - - ShowLeaveConfirmation - - SpecialKeyPressed - - UiMessageChanged - properties: - - AutoSelectGuiEnabled - - CoreEffectFolder - - CoreGuiFolder - - CoreGuiNavigationEnabled - - GuiNavigationEnabled - - IsModalDialog - - IsWindows - - MenuIsOpen - - SelectedCoreObject - - SelectedObject - - TouchControlsEnabled - GuidRegistryService: - superclass: Instance - events: [] - properties: [] - HSRDataContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - HandleAdornment: - superclass: PVAdornment - events: - - MouseButton1Down - - MouseButton1Up - - MouseEnter - - MouseLeave - properties: - - AdornCullingMode - - AlwaysOnTop - - CFrame - - SizeRelativeOffset - - ZIndex - Handles: - superclass: HandlesBase - events: - - MouseButton1Down - - MouseButton1Up - - MouseDrag - - MouseEnter - - MouseLeave - properties: - - Faces - - Style - HandlesBase: - superclass: PartAdornment - events: [] - properties: [] - HapticService: - superclass: Instance - events: [] - properties: [] - Hat: - superclass: Accoutrement - events: [] - properties: [] - HeightmapImporterService: - superclass: Instance - events: - - ColormapHasUnknownPixels - - ProgressUpdate - properties: [] - HiddenSurfaceRemovalAsset: - superclass: Instance - events: [] - properties: [] - Highlight: - superclass: Instance - events: [] - properties: - - Adornee - - DepthMode - - Enabled - - FillColor - - FillTransparency - - LineThickness - - OutlineColor - - OutlineTransparency - - ReservedId - HingeConstraint: - superclass: Constraint - events: [] - properties: - - ActuatorType - - AngularResponsiveness - - AngularSpeed - - AngularVelocity - - CurrentAngle - - LimitsEnabled - - LowerAngle - - MotorMaxAcceleration - - MotorMaxTorque - - Radius - - Restitution - - ServoMaxTorque - - TargetAngle - - UpperAngle - Hint: - superclass: Message - events: [] - properties: [] - Hole: - superclass: Feature - events: [] - properties: [] - Hopper: - superclass: Instance - events: [] - properties: [] - HopperBin: - superclass: BackpackItem - events: - - Deselected - - Selected - properties: - - Active - - BinType - HttpRbxApiService: - superclass: Instance - events: [] - properties: [] - HttpRequest: - superclass: Instance - events: [] - properties: [] - HttpService: - superclass: Instance - events: [] - properties: - - HttpEnabled - Humanoid: - superclass: Instance - events: - - AnimationPlayed - - Climbing - - ClusterCompositionFinished - - CustomStatusAdded - - CustomStatusRemoved - - Died - - EmoteTriggered - - FallingDown - - FreeFalling - - GettingUp - - HealthChanged - - Jumping - - MoveToFinished - - PlatformStanding - - Ragdoll - - Running - - Seated - - StateChanged - - StateEnabledChanged - - StatusAdded - - StatusRemoved - - Strafing - - Swimming - - Touched - properties: - - AutoJumpEnabled - - AutoRotate - - AutomaticScalingEnabled - - BreakJointsOnDeath - - CameraOffset - - CollisionType - - DisplayDistanceType - - DisplayName - - EvaluateStateMachine - - FloorMaterial - - Health - - HealthDisplayDistance - - HealthDisplayType - - HipHeight - - Jump - - JumpHeight - - JumpPower - - LeftLeg - - MaxHealth - - MaxSlopeAngle - - MoveDirection - - NameDisplayDistance - - NameOcclusion - - PlatformStand - - RequiresNeck - - RigType - - RightLeg - - RootPart - - SeatPart - - Sit - - TargetPoint - - Torso - - UseJumpPower - - WalkSpeed - - WalkToPart - - WalkToPoint - - maxHealth - HumanoidController: - superclass: Controller - events: [] - properties: [] - HumanoidDescription: - superclass: Instance - events: - - EmotesChanged - - EquippedEmotesChanged - properties: - - AccessoryBlob - - BackAccessory - - BodyTypeScale - - ClimbAnimation - - DepthScale - - Face - - FaceAccessory - - FallAnimation - - FrontAccessory - - GraphicTShirt - - HairAccessory - - HatAccessory - - Head - - HeadColor - - HeadScale - - HeightScale - - IdleAnimation - - JumpAnimation - - LeftArm - - LeftArmColor - - LeftLeg - - LeftLegColor - - MoodAnimation - - NeckAccessory - - NumberEmotesLoaded - - Pants - - ProportionScale - - RightArm - - RightArmColor - - RightLeg - - RightLegColor - - RunAnimation - - Shirt - - ShouldersAccessory - - SwimAnimation - - Torso - - TorsoColor - - WaistAccessory - - WalkAnimation - - WidthScale - IKControl: - superclass: Instance - events: [] - properties: - - ChainRoot - - Enabled - - EndEffector - - EndEffectorOffset - - Offset - - Pole - - Priority - - SmoothTime - - Target - - Type - - Weight - ILegacyStudioBridge: - superclass: Instance - events: [] - properties: [] - IXPService: - superclass: Instance - events: - - OnBrowserTrackerLayerLoadingStatusChanged - - OnUserLayerLoadingStatusChanged - properties: [] - ImageButton: - superclass: GuiButton - events: [] - properties: - - ContentImageSize - - HoverImage - - Image - - ImageColor3 - - ImageRectOffset - - ImageRectSize - - ImageTransparency - - IsLoaded - - PressedImage - - ResampleMode - - ScaleType - - SliceCenter - - SliceScale - - TileSize - ImageDataExperimental: - superclass: Instance - events: [] - properties: - - Size - - TemporaryId - ImageHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Image - - Size - ImageLabel: - superclass: GuiLabel - events: [] - properties: - - ContentImageSize - - Image - - ImageColor3 - - ImageRectOffset - - ImageRectSize - - ImageTransparency - - IsLoaded - - ResampleMode - - ScaleType - - SliceCenter - - SliceScale - - TileSize - ImporterAnimationSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterBaseSettings: - superclass: Instance - events: [] - properties: - - Id - - ImportName - - ShouldImport - ImporterFacsSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterGroupSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - Anchored - - ImportAsModelAsset - - InsertInWorkspace - ImporterJointSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterMaterialSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - DiffuseFilePath - - IsPbr - - MetalnessFilePath - - NormalFilePath - - RoughnessFilePath - ImporterMeshSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - Anchored - - CageManifold - - CageMeshIntersectedPreview - - CageMeshNotIntersected - - CageNoOverlappingVertices - - CageNonManifoldPreview - - CageOverlappingVerticesPreview - - CageUVMatched - - CageUVMisMatchedPreview - - Dimensions - - DoubleSided - - IgnoreVertexColors - - IrrelevantCageModifiedPreview - - MeshHoleDetectedPreview - - MeshNoHoleDetected - - NoIrrelevantCageModified - - NoOuterCageFarExtendedFromMesh - - OuterCageFarExtendedFromMeshPreview - - PolygonCount - - UseImportedPivot - ImporterRootSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - AddModelToInventory - - Anchored - - ExistingPackageId - - FileDimensions - - ImportAsModelAsset - - ImportAsPackage - - InsertInWorkspace - - InsertWithScenePosition - - InvertNegativeFaces - - MergeMeshes - - PolygonCount - - RigScale - - RigType - - ScaleUnit - - UseSceneOriginAsCFrame - - UseSceneOriginAsPivot - - UsesCages - - WorldForward - - WorldUp - IncrementalPatchBuilder: - superclass: Instance - events: [] - properties: - - AddPathsToBundle - - BuildDebouncePeriod - - HighCompression - - SerializePatch - - ZstdCompression - InputObject: - superclass: Instance - events: [] - properties: - - Delta - - KeyCode - - Position - - UserInputState - - UserInputType - InsertService: - superclass: Instance - events: [] - properties: - - AllowClientInsertModels - - AllowInsertFreeModels - Instance: - superclass: <<>> - events: - - AncestryChanged - - AttributeChanged - - Changed - - ChildAdded - - ChildRemoved - - DescendantAdded - - DescendantRemoving - - Destroying - - childAdded - properties: - - Archivable - - ClassName - - DataCost - - Name - - Parent - - RobloxLocked - - SourceAssetId - - archivable - - className - InstanceAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - IntConstrainedValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - ConstrainedValue - - MaxValue - - MinValue - - Value - IntValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - IntersectOperation: - superclass: PartOperation - events: [] - properties: [] - InventoryPages: - superclass: Pages - events: [] - properties: [] - JointInstance: - superclass: Instance - events: [] - properties: - - Active - - C0 - - C1 - - Enabled - - Part0 - - Part1 - - part1 - JointsService: - superclass: Instance - events: [] - properties: [] - KeyboardService: - superclass: Instance - events: [] - properties: [] - Keyframe: - superclass: Instance - events: [] - properties: - - Time - KeyframeMarker: - superclass: Instance - events: [] - properties: - - Value - KeyframeSequence: - superclass: AnimationClip - events: [] - properties: - - AuthoredHipHeight - KeyframeSequenceProvider: - superclass: Instance - events: [] - properties: [] - LSPFileSyncService: - superclass: Instance - events: [] - properties: [] - LanguageService: - superclass: Instance - events: [] - properties: [] - LayerCollector: - superclass: GuiBase2d - events: [] - properties: - - Enabled - - ResetOnSpawn - - ZIndexBehavior - LegacyStudioBridge: - superclass: ILegacyStudioBridge - events: [] - properties: [] - Light: - superclass: Instance - events: [] - properties: - - Brightness - - Color - - Enabled - - Shadows - Lighting: - superclass: Instance - events: - - LightingChanged - properties: - - Ambient - - Brightness - - TimerTime - - ColorShift_Bottom - - ColorShift_Top - - EnvironmentDiffuseScale - - EnvironmentSpecularScale - - ExposureCompensation - - FogColor - - FogEnd - - FogStart - - GeographicLatitude - - GlobalShadows - - OutdoorAmbient - - Outlines - - ShadowColor - - ShadowSoftness - - Technology - - TempUseNewSkyRemovalBehaviour - - TimeOfDay - LineForce: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - InverseSquareLaw - - Magnitude - - MaxForce - - ReactionForceEnabled - LineHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Length - - Thickness - LinearVelocity: - superclass: Constraint - events: [] - properties: - - LineDirection - - LineVelocity - - MaxForce - - PlaneVelocity - - PrimaryTangentAxis - - RelativeTo - - SecondaryTangentAxis - - VectorVelocity - - VelocityConstraintMode - LiveScriptingService: - superclass: Instance - events: [] - properties: [] - LocalDebuggerConnection: - superclass: DebuggerConnection - events: [] - properties: [] - LocalScript: - superclass: Script - events: [] - properties: [] - LocalStorageService: - superclass: Instance - events: - - ItemWasSet - - StoreWasCleared - properties: [] - LocalizationService: - superclass: Instance - events: - - AutoTranslateWillRun - properties: - - ForcePlayModeGameLocaleId - - ForcePlayModeRobloxLocaleId - - IsTextScraperRunning - - RobloxForcePlayModeGameLocaleId - - RobloxForcePlayModeRobloxLocaleId - - RobloxLocaleId - - SystemLocaleId - LocalizationTable: - superclass: Instance - events: [] - properties: - - DevelopmentLanguage - - Root - - SourceLocaleId - LodDataEntity: - superclass: Instance - events: [] - properties: - - EntityLodEnabled - LodDataService: - superclass: Instance - events: [] - properties: [] - LogService: - superclass: Instance - events: - - HttpResultOut - - MessageOut - - OnHttpResultApproved - - ServerHttpResultOut - - ServerMessageOut - properties: [] - LoginService: - superclass: Instance - events: - - LoginFailed - - LoginSucceeded - properties: [] - LuaSettings: - superclass: Instance - events: [] - properties: [] - LuaSourceContainer: - superclass: Instance - events: [] - properties: - - CurrentEditor - - RuntimeSource - LuaWebService: - superclass: Instance - events: [] - properties: [] - LuauScriptAnalyzerService: - superclass: Instance - events: [] - properties: [] - ManualGlue: - superclass: ManualSurfaceJointInstance - events: [] - properties: [] - ManualSurfaceJointInstance: - superclass: JointInstance - events: [] - properties: [] - ManualWeld: - superclass: ManualSurfaceJointInstance - events: [] - properties: [] - MarkerCurve: - superclass: Instance - events: [] - properties: - - Length - MarketplaceService: - superclass: Instance - events: - - ClientLuaDialogRequested - - ClientPurchaseSuccess - - NativePurchaseFinished - - NativePurchaseFinishedWithLocalPlayer - - PromptBundlePurchaseFinished - - PromptBundlePurchaseRequested - - PromptGamePassPurchaseFinished - - PromptGamePassPurchaseRequested - - PromptPremiumPurchaseFinished - - PromptPremiumPurchaseRequested - - PromptProductPurchaseFinished - - PromptProductPurchaseRequested - - PromptPurchaseFinished - - PromptPurchaseRequested - - PromptRobloxPurchaseRequested - - PromptSubscriptionCancellationFinished - - PromptSubscriptionCancellationRequested - - PromptSubscriptionPurchaseFinished - - PromptSubscriptionPurchaseRequested - - ServerPurchaseVerification - - ThirdPartyPurchaseFinished - properties: [] - MaterialGenerationService: - superclass: Instance - events: [] - properties: [] - MaterialGenerationSession: - superclass: Instance - events: [] - properties: [] - MaterialService: - superclass: Instance - events: - - OverrideStatusChanged - properties: - - AsphaltName - - BasaltName - - BrickName - - CobblestoneName - - ConcreteName - - CorrodedMetalName - - CrackedLavaName - - DiamondPlateName - - FabricName - - FoilName - - GlacierName - - GraniteName - - GrassName - - GroundName - - IceName - - LeafyGrassName - - LimestoneName - - MarbleName - - MetalName - - MudName - - PavementName - - PebbleName - - PlasticName - - RockName - - SaltName - - SandName - - SandstoneName - - SlateName - - SmoothPlasticName - - SnowName - - Use2022Materials - - WoodName - - WoodPlanksName - MaterialVariant: - superclass: Instance - events: [] - properties: - - BaseMaterial - - ColorMap - - CustomPhysicalProperties - - MaterialPattern - - MetalnessMap - - NormalMap - - RoughnessMap - - StudsPerTile - MemStorageConnection: - superclass: Instance - events: [] - properties: [] - MemStorageService: - superclass: Instance - events: [] - properties: [] - MemoryStoreQueue: - superclass: Instance - events: [] - properties: [] - MemoryStoreService: - superclass: Instance - events: [] - properties: [] - MemoryStoreSortedMap: - superclass: Instance - events: [] - properties: [] - MeshContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - MeshDataExperimental: - superclass: Instance - events: [] - properties: - - Size - MeshPart: - superclass: TriangleMeshPart - events: [] - properties: - - DoubleSided - - HasJointOffset - - HasSkinnedMesh - - JointOffset - - MeshId - - RenderFidelity - - TextureID - Message: - superclass: Instance - events: [] - properties: - - Text - MessageBusConnection: - superclass: Instance - events: [] - properties: [] - MessageBusService: - superclass: Instance - events: [] - properties: [] - MessagingService: - superclass: Instance - events: [] - properties: [] - MetaBreakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - Enabled - - Id - - IsLogpoint - - Line - - LogMessage - - Script - - Valid - MetaBreakpointContext: - superclass: Instance - events: [] - properties: [] - MetaBreakpointManager: - superclass: Instance - events: - - MetaBreakpointAdded - - MetaBreakpointChanged - - MetaBreakpointRemoved - - MetaBreakpointSetChanged - properties: [] - Model: - superclass: PVInstance - events: [] - properties: - - LevelOfDetail - - ModelStreamingMode - - PrimaryPart - - Scale - - WorldPivot - ModuleScript: - superclass: LuaSourceContainer - events: [] - properties: - - LinkedSource - - Source - Motor: - superclass: JointInstance - events: [] - properties: - - CurrentAngle - - DesiredAngle - - MaxVelocity - Motor6D: - superclass: Motor - events: [] - properties: - - ChildName - - ParentName - - Transform - MotorFeature: - superclass: Feature - events: [] - properties: [] - Mouse: - superclass: Instance - events: - - Button1Down - - Button1Up - - Button2Down - - Button2Up - - Idle - - KeyDown - - KeyUp - - Move - - WheelBackward - - WheelForward - - keyDown - properties: - - Hit - - Icon - - Origin - - Target - - TargetFilter - - TargetSurface - - UnitRay - - ViewSizeX - - ViewSizeY - - X - - Y - - hit - - target - MouseService: - superclass: Instance - events: [] - properties: [] - MultipleDocumentInterfaceInstance: - superclass: Instance - events: - - DataModelSessionEnded - - DataModelSessionStarted - properties: - - FocusedDataModelSession - NegateOperation: - superclass: PartOperation - events: [] - properties: [] - NetworkClient: - superclass: NetworkPeer - events: - - ConnectionAccepted - - ConnectionFailed - properties: [] - NetworkMarker: - superclass: Instance - events: - - Received - properties: [] - NetworkPeer: - superclass: Instance - events: [] - properties: [] - NetworkReplicator: - superclass: Instance - events: [] - properties: [] - NetworkServer: - superclass: NetworkPeer - events: [] - properties: [] - NetworkSettings: - superclass: Instance - events: [] - properties: - - EmulatedTotalMemoryInMB - - FreeMemoryMBytes - - HttpProxyEnabled - - HttpProxyURL - - IncomingReplicationLag - - PrintJoinSizeBreakdown - - PrintPhysicsErrors - - PrintStreamInstanceQuota - - RandomizeJoinInstanceOrder - - RenderStreamedRegions - - ShowActiveAnimationAsset - NoCollisionConstraint: - superclass: Instance - events: [] - properties: - - Enabled - - Part0 - - Part1 - NonReplicatedCSGDictionaryService: - superclass: FlyweightService - events: [] - properties: [] - NotificationService: - superclass: Instance - events: - - Roblox17sConnectionChanged - - Roblox17sEventReceived - - RobloxConnectionChanged - - RobloxEventReceived - properties: - - IsConnected - - IsLuaChatEnabled - - IsLuaGameDetailsEnabled - - SelectedTheme - NumberPose: - superclass: PoseBase - events: [] - properties: - - Value - NumberValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - ObjectValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - OrderedDataStore: - superclass: GlobalDataStore - events: [] - properties: [] - OutfitPages: - superclass: Pages - events: [] - properties: [] - PVAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - PVInstance: - superclass: Instance - events: [] - properties: - - Origin - - Pivot Offset - PackageLink: - superclass: Instance - events: [] - properties: - - AutoUpdate - - Creator - - PackageAssetName - - PackageId - - PermissionLevel - - Status - - VersionNumber - PackageService: - superclass: Instance - events: [] - properties: [] - PackageUIService: - superclass: Instance - events: - - OnConvertToPackageResult - - OnOpenConvertToPackagePlugin - properties: [] - Pages: - superclass: Instance - events: [] - properties: - - IsFinished - Pants: - superclass: Clothing - events: [] - properties: - - PantsTemplate - ParabolaAdornment: - superclass: PVAdornment - events: [] - properties: - - A - - B - - C - - Range - - Thickness - Part: - superclass: FormFactorPart - events: [] - properties: - - Shape - PartAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - PartOperation: - superclass: TriangleMeshPart - events: [] - properties: - - RenderFidelity - - SmoothingAngle - - TriangleCount - - UsePartColor - PartOperationAsset: - superclass: Instance - events: [] - properties: [] - ParticleEmitter: - superclass: Instance - events: [] - properties: - - Acceleration - - Brightness - - Color - - Drag - - EmissionDirection - - Enabled - - FlipbookFramerate - - FlipbookIncompatible - - FlipbookLayout - - FlipbookMode - - FlipbookStartRandom - - Lifetime - - LightEmission - - LightInfluence - - LockedToPart - - Orientation - - Rate - - RotSpeed - - Rotation - - Shape - - ShapeInOut - - ShapePartial - - ShapeStyle - - Size - - Speed - - SpreadAngle - - Squash - - Texture - - TimeScale - - Transparency - - VelocityInheritance - - VelocitySpread - - ZOffset - PatchBundlerFileWatch: - superclass: Instance - events: [] - properties: [] - PatchMapping: - superclass: Instance - events: [] - properties: - - FlattenTree - - PatchId - - TargetPath - Path: - superclass: Instance - events: - - Blocked - - Unblocked - properties: - - Status - PathfindingLink: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - IsBidirectional - - Label - PathfindingModifier: - superclass: Instance - events: [] - properties: - - Label - - PassThrough - PathfindingService: - superclass: Instance - events: [] - properties: - - EmptyCutoff - PausedState: - superclass: Instance - events: [] - properties: - - AllThreadsPaused - - Reason - - ThreadId - PausedStateBreakpoint: - superclass: PausedState - events: [] - properties: - - Breakpoint - PausedStateException: - superclass: PausedState - events: [] - properties: - - ExceptionText - PermissionsService: - superclass: Instance - events: [] - properties: [] - PhysicsService: - superclass: Instance - events: [] - properties: [] - PhysicsSettings: - superclass: Instance - events: [] - properties: - - AllowSleep - - AreAnchorsShown - - AreAssembliesShown - - AreAwakePartsHighlighted - - AreBodyTypesShown - - AreConstraintForcesShownForSelectedOrHoveredInstances - - AreConstraintTorquesShownForSelectedOrHoveredInstances - - AreContactForcesShownForSelectedOrHoveredAssemblies - - AreContactIslandsShown - - AreContactPointsShown - - AreJointCoordinatesShown - - AreMagnitudesShownForDrawnForcesAndTorques - - AreMechanismsShown - - AreModelCoordsShown - - AreOwnersShown - - ArePartCoordsShown - - AreRegionsShown - - AreSolverIslandsShown - - AreTerrainReplicationRegionsShown - - AreTimestepsShown - - AreUnalignedPartsShown - - AreWorldCoordsShown - - DisableCSGv2 - - ForceCSGv2 - - ForceDrawScale - - IsInterpolationThrottleShown - - IsReceiveAgeShown - - IsTreeShown - - PhysicsEnvironmentalThrottle - - ShowDecompositionGeometry - - SolverConvergenceVisualizationMode - - ThrottleAdjustTime - - UseCSGv2 - PitchShiftSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Octave - Plane: - superclass: PlaneConstraint - events: [] - properties: [] - PlaneConstraint: - superclass: Constraint - events: [] - properties: [] - Platform: - superclass: Part - events: [] - properties: [] - Player: - superclass: Instance - events: - - CharacterAdded - - CharacterAppearanceLoaded - - CharacterRemoving - - Chatted - - FriendStatusChanged - - Idled - - OnTeleport - - SimulationRadiusChanged - properties: - - AccountAge - - AppearanceDidLoad - - AutoJumpEnabled - - CameraMaxZoomDistance - - CameraMinZoomDistance - - CameraMode - - CanLoadCharacterAppearance - - Character - - CharacterAppearance - - CharacterAppearanceId - - ChatMode - - DataComplexity - - DataComplexityLimit - - DataReady - - DevCameraOcclusionMode - - DevComputerCameraMode - - DevComputerMovementMode - - DevEnableMouseLock - - DevTouchCameraMode - - DevTouchMovementMode - - DisplayName - - FollowUserId - - GameplayPaused - - Guest - - HasVerifiedBadge - - HealthDisplayDistance - - LocaleId - - MaximumSimulationRadius - - MembershipType - - NameDisplayDistance - - Neutral - - OsPlatform - - PlatformName - - ReplicationFocus - - RespawnLocation - - SimulationRadius - - Team - - TeamColor - - Teleported - - TeleportedIn - - UnfilteredChat - - UserId - - VRDevice - - VREnabled - - userId - PlayerEmulatorService: - superclass: Instance - events: [] - properties: - - CustomPoliciesEnabled - - EmulatedCountryCode - - EmulatedGameLocale - - PlayerEmulationEnabled - - SerializedEmulatedPolicyInfo - PlayerGui: - superclass: BasePlayerGui - events: - - TopbarTransparencyChangedSignal - properties: - - CurrentScreenOrientation - - ScreenOrientation - - SelectionImageObject - PlayerMouse: - superclass: Mouse - events: [] - properties: [] - PlayerScripts: - superclass: Instance - events: - - ComputerCameraMovementModeRegistered - - ComputerMovementModeRegistered - - TouchCameraMovementModeRegistered - - TouchMovementModeRegistered - properties: [] - Players: - superclass: Instance - events: - - FriendRequestEvent - - GameAnnounce - - PlayerAdded - - PlayerChatted - - PlayerConnecting - - PlayerDisconnecting - - PlayerMembershipChanged - - PlayerRejoining - - PlayerRemoving - properties: - - BubbleChat - - CharacterAutoLoads - - ClassicChat - - LocalPlayer - - MaxPlayers - - MaxPlayersInternal - - NumPlayers - - PreferredPlayers - - PreferredPlayersInternal - - RespawnTime - - UseStrafingAnimations - - localPlayer - - numPlayers - Plugin: - superclass: Instance - events: - - Deactivation - - Ready - - Unloading - properties: - - CollisionEnabled - - GridSize - - HostDataModelType - - HostDataModelTypeIsCurrent - - MultipleDocumentInterfaceInstance - - UsesAssetInsertionDrag - PluginAction: - superclass: Instance - events: - - Triggered - properties: - - ActionId - - AllowBinding - - Checked - - DefaultShortcut - - Enabled - - StatusTip - - Text - PluginDebugService: - superclass: Instance - events: [] - properties: [] - PluginDragEvent: - superclass: Instance - events: [] - properties: - - Data - - MimeType - - Position - - Sender - PluginGui: - superclass: LayerCollector - events: - - PluginDragDropped - - PluginDragEntered - - PluginDragLeft - - PluginDragMoved - - WindowFocusReleased - - WindowFocused - properties: - - Title - PluginGuiService: - superclass: Instance - events: [] - properties: [] - PluginManagementService: - superclass: Instance - events: [] - properties: [] - PluginManager: - superclass: Instance - events: [] - properties: [] - PluginManagerInterface: - superclass: Instance - events: [] - properties: [] - PluginMenu: - superclass: Instance - events: [] - properties: - - Icon - - Title - PluginMouse: - superclass: Mouse - events: - - DragEnter - properties: [] - PluginPolicyService: - superclass: Instance - events: [] - properties: [] - PluginToolbar: - superclass: Instance - events: [] - properties: [] - PluginToolbarButton: - superclass: Instance - events: - - Click - properties: - - ClickableWhenViewportHidden - - Enabled - - Icon - PointLight: - superclass: Light - events: [] - properties: - - Range - PointsService: - superclass: Instance - events: - - PointsAwarded - properties: [] - PolicyService: - superclass: Instance - events: [] - properties: - - IsLuobuServer - - LuobuWhitelisted - Pose: - superclass: PoseBase - events: [] - properties: - - CFrame - - MaskWeight - PoseBase: - superclass: Instance - events: [] - properties: - - EasingDirection - - EasingStyle - - Weight - PostEffect: - superclass: Instance - events: [] - properties: - - Enabled - PrismaticConstraint: - superclass: SlidingBallConstraint - events: [] - properties: [] - ProcessInstancePhysicsService: - superclass: Instance - events: [] - properties: [] - ProximityPrompt: - superclass: Instance - events: - - PromptButtonHoldBegan - - PromptButtonHoldEnded - - PromptHidden - - PromptShown - - TriggerEnded - - Triggered - properties: - - ActionText - - AutoLocalize - - ClickablePrompt - - Enabled - - Exclusivity - - GamepadKeyCode - - HoldDuration - - KeyboardKeyCode - - MaxActivationDistance - - ObjectText - - RequiresLineOfSight - - RootLocalizationTable - - Style - - UIOffset - ProximityPromptService: - superclass: Instance - events: - - PromptButtonHoldBegan - - PromptButtonHoldEnded - - PromptHidden - - PromptShown - - PromptTriggerEnded - - PromptTriggered - properties: - - Enabled - - MaxPromptsVisible - PublishService: - superclass: Instance - events: [] - properties: [] - QWidgetPluginGui: - superclass: PluginGui - events: [] - properties: [] - RayValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - RbxAnalyticsService: - superclass: Instance - events: [] - properties: [] - ReflectionMetadata: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataCallbacks: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataClass: - superclass: ReflectionMetadataItem - events: [] - properties: - - ExplorerImageIndex - - ExplorerOrder - - Insertable - - PreferredParent - - ServiceVisibility - ReflectionMetadataClasses: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataEnum: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataEnumItem: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataEnums: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataEvents: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataFunctions: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataItem: - superclass: Instance - events: [] - properties: - - Browsable - - ClassCategory - - ClientOnly - - Constraint - - Deprecated - - EditingDisabled - - EditorType - - FFlag - - IsBackend - - PropertyOrder - - ScriptContext - - ServerOnly - - SliderScaling - - UIMaximum - - UIMinimum - - UINumTicks - ReflectionMetadataMember: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataProperties: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataYieldFunctions: - superclass: Instance - events: [] - properties: [] - RemoteCursorService: - superclass: Instance - events: [] - properties: [] - RemoteDebuggerServer: - superclass: Instance - events: [] - properties: [] - RemoteEvent: - superclass: Instance - events: - - OnClientEvent - - OnServerEvent - properties: [] - RemoteFunction: - superclass: Instance - events: [] - properties: [] - RenderSettings: - superclass: Instance - events: [] - properties: - - AutoFRMLevel - - EagerBulkExecution - - EditQualityLevel - - EnableFRM - - ExportMergeByMaterial - - FrameRateManager - - GraphicsMode - - MeshCacheSize - - MeshPartDetailLevel - - QualityLevel - - ReloadAssets - - RenderCSGTrianglesDebug - - ShowBoundingBoxes - RenderingTest: - superclass: Instance - events: [] - properties: - - CFrame - - ComparisonDiffThreshold - - ComparisonMethod - - ComparisonPsnrThreshold - - Description - - FieldOfView - - Orientation - - Position - - QualityLevel - - ShouldSkip - - Ticket - ReplicatedFirst: - superclass: Instance - events: - - DefaultLoadingGuiRemoved - - FinishedReplicating - - RemoveDefaultLoadingGuiSignal - properties: [] - ReplicatedStorage: - superclass: Instance - events: [] - properties: [] - ReverbSoundEffect: - superclass: SoundEffect - events: [] - properties: - - DecayTime - - Density - - Diffusion - - DryLevel - - WetLevel - RigidConstraint: - superclass: Constraint - events: [] - properties: [] - RobloxPluginGuiService: - superclass: Instance - events: [] - properties: [] - RobloxReplicatedStorage: - superclass: Instance - events: [] - properties: [] - RocketPropulsion: - superclass: BodyMover - events: - - ReachedTarget - properties: - - CartoonFactor - - MaxSpeed - - MaxThrust - - MaxTorque - - Target - - TargetOffset - - TargetRadius - - ThrustD - - ThrustP - - TurnD - - TurnP - RodConstraint: - superclass: Constraint - events: [] - properties: - - CurrentDistance - - Length - - LimitAngle0 - - LimitAngle1 - - LimitsEnabled - - Thickness - RopeConstraint: - superclass: Constraint - events: [] - properties: - - CurrentDistance - - Length - - Restitution - - Thickness - - WinchEnabled - - WinchForce - - WinchResponsiveness - - WinchSpeed - - WinchTarget - Rotate: - superclass: JointInstance - events: [] - properties: [] - RotateP: - superclass: DynamicRotate - events: [] - properties: [] - RotateV: - superclass: DynamicRotate - events: [] - properties: [] - RotationCurve: - superclass: Instance - events: [] - properties: - - Length - RtMessagingService: - superclass: Instance - events: [] - properties: [] - RunService: - superclass: Instance - events: - - Heartbeat - - PostSimulation - - PreAnimation - - PreRender - - PreSimulation - - RenderStepped - - Stepped - properties: - - ClientGitHash - RunningAverageItemDouble: - superclass: StatsItem - events: [] - properties: [] - RunningAverageItemInt: - superclass: StatsItem - events: [] - properties: [] - RunningAverageTimeIntervalItem: - superclass: StatsItem - events: [] - properties: [] - RuntimeScriptService: - superclass: Instance - events: [] - properties: [] - SafetyService: - superclass: Instance - events: - - ScreenshotContentReady - - ScreenshotUploaded - properties: [] - ScreenGui: - superclass: LayerCollector - events: [] - properties: - - ClipToDeviceSafeArea - - DisplayOrder - - IgnoreGuiInset - - OnTopOfCoreBlur - - SafeAreaCompatibility - - ScreenInsets - ScreenshotHud: - superclass: Instance - events: [] - properties: - - CameraButtonIcon - - CameraButtonPosition - - CloseButtonPosition - - CloseWhenScreenshotTaken - - ExperienceNameOverlayEnabled - - OverlayFont - - UsernameOverlayEnabled - - Visible - Script: - superclass: BaseScript - events: [] - properties: - - Source - ScriptBuilder: - superclass: Instance - events: [] - properties: [] - ScriptChangeService: - superclass: Instance - events: - - ScriptAdded - - ScriptBeingRemoved - - ScriptChanged - - ScriptFullNameChanged - - ScriptSourceChanged - properties: [] - ScriptCloneWatcher: - superclass: Instance - events: [] - properties: [] - ScriptCloneWatcherHelper: - superclass: Instance - events: [] - properties: [] - ScriptContext: - superclass: Instance - events: - - Error - - ErrorDetailed - properties: - - ScriptsDisabled - ScriptDebugger: - superclass: Instance - events: - - BreakpointAdded - - BreakpointRemoved - - EncounteredBreak - - Resuming - - WatchAdded - - WatchRemoved - properties: - - CurrentLine - - IsDebugging - - IsPaused - - Script - ScriptDocument: - superclass: Instance - events: - - SelectionChanged - - ViewportChanged - properties: [] - ScriptEditorService: - superclass: Instance - events: - - TextDocumentDidChange - - TextDocumentDidClose - - TextDocumentDidOpen - properties: [] - ScriptRegistrationService: - superclass: Instance - events: [] - properties: [] - ScriptRuntime: - superclass: Instance - events: [] - properties: [] - ScriptService: - superclass: Instance - events: [] - properties: [] - ScrollingFrame: - superclass: GuiObject - events: [] - properties: - - AbsoluteCanvasSize - - AbsoluteWindowSize - - AutomaticCanvasSize - - BottomImage - - CanvasPosition - - CanvasSize - - ElasticBehavior - - HorizontalBarRect - - HorizontalScrollBarInset - - MaxCanvasPosition - - MidImage - - ScrollBarImageColor3 - - ScrollBarImageTransparency - - ScrollBarThickness - - ScrollVelocity - - ScrollingDirection - - ScrollingEnabled - - TopImage - - VerticalBarRect - - VerticalScrollBarInset - - VerticalScrollBarPosition - Seat: - superclass: Part - events: [] - properties: - - Disabled - - Occupant - Selection: - superclass: Instance - events: - - SelectionChanged - properties: - - ActiveInstance - - SelectionBoxThickness - - SelectionLineThickness - - SelectionThickness - - ShowBoundingBox - SelectionBox: - superclass: InstanceAdornment - events: [] - properties: - - LineThickness - - StudioSelectionBox - - SurfaceColor - - SurfaceColor3 - - SurfaceTransparency - SelectionHighlightManager: - superclass: Instance - events: [] - properties: [] - SelectionLasso: - superclass: GuiBase3d - events: [] - properties: - - Humanoid - SelectionPartLasso: - superclass: SelectionLasso - events: [] - properties: - - Part - SelectionPointLasso: - superclass: SelectionLasso - events: [] - properties: - - Point - SelectionSphere: - superclass: PVAdornment - events: [] - properties: - - SurfaceColor - - SurfaceColor3 - - SurfaceTransparency - SensorBase: - superclass: Instance - events: - - OnSensorOutputChanged - properties: - - UpdateType - ServerReplicator: - superclass: NetworkReplicator - events: [] - properties: [] - ServerScriptService: - superclass: Instance - events: [] - properties: - - LoadStringEnabled - ServerStorage: - superclass: Instance - events: [] - properties: [] - ServiceProvider: - superclass: Instance - events: - - Close - - CloseLate - - ServiceAdded - - ServiceRemoving - properties: [] - ServiceVisibilityService: - superclass: Instance - events: [] - properties: - - VisibleServices - SessionService: - superclass: Instance - events: [] - properties: [] - SharedTableRegistry: - superclass: Instance - events: [] - properties: [] - Shirt: - superclass: Clothing - events: [] - properties: - - ShirtTemplate - ShirtGraphic: - superclass: CharacterAppearance - events: [] - properties: - - Color3 - - Graphic - ShorelineUpgraderService: - superclass: Instance - events: - - Status - properties: [] - SkateboardController: - superclass: Controller - events: - - AxisChanged - properties: - - Steer - - Throttle - SkateboardPlatform: - superclass: Part - events: - - Equipped - - MoveStateChanged - - Unequipped - - equipped - - unequipped - properties: - - Controller - - ControllingHumanoid - - Steer - - StickyWheels - - Throttle - Skin: - superclass: CharacterAppearance - events: [] - properties: - - SkinColor - Sky: - superclass: Instance - events: [] - properties: - - CelestialBodiesShown - - MoonAngularSize - - MoonTextureId - - SkyboxBk - - SkyboxDn - - SkyboxFt - - SkyboxLf - - SkyboxRt - - SkyboxUp - - StarCount - - SunAngularSize - - SunTextureId - SlidingBallConstraint: - superclass: Constraint - events: [] - properties: - - ActuatorType - - CurrentPosition - - LimitsEnabled - - LinearResponsiveness - - LowerLimit - - MotorMaxAcceleration - - MotorMaxForce - - Restitution - - ServoMaxForce - - Size - - Speed - - TargetPosition - - UpperLimit - - Velocity - Smoke: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - Opacity - - RiseVelocity - - Size - - TimeScale - SmoothVoxelsUpgraderService: - superclass: Instance - events: - - Status - properties: [] - Snap: - superclass: JointInstance - events: [] - properties: [] - SnippetService: - superclass: Instance - events: [] - properties: [] - SocialService: - superclass: Instance - events: - - GameInvitePromptClosed - - PromptInviteRequested - properties: [] - SolidModelContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - Sound: - superclass: Instance - events: - - DidLoop - - Ended - - Loaded - - Paused - - Played - - Resumed - - Stopped - properties: - - ChannelCount - - EmitterSize - - IsLoaded - - IsPaused - - IsPlaying - - IsSpatial - - LoopRegion - - Looped - - MaxDistance - - MinDistance - - Pitch - - PlayOnRemove - - PlaybackLoudness - - PlaybackRegion - - PlaybackRegionsEnabled - - PlaybackSpeed - - Playing - - RollOffGain - - RollOffMaxDistance - - RollOffMinDistance - - RollOffMode - - SoundGroup - - SoundId - - TimeLength - - TimePosition - - UsageContextPermission - - Volume - - isPlaying - SoundEffect: - superclass: Instance - events: [] - properties: - - Enabled - - Priority - SoundGroup: - superclass: Instance - events: [] - properties: - - Volume - SoundService: - superclass: Instance - events: - - DeviceListChanged - properties: - - AmbientReverb - - DistanceFactor - - DopplerScale - - RespectFilteringEnabled - - RolloffScale - - VolumetricAudio - Sparkles: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - SparkleColor - - TimeScale - SpawnLocation: - superclass: Part - events: [] - properties: - - AllowTeamChangeOnTouch - - Duration - - Enabled - - Neutral - - TeamColor - SpawnerService: - superclass: Instance - events: [] - properties: [] - Speaker: - superclass: Instance - events: [] - properties: - - ChannelCount - - PlaybackLoudness - - RollOffMaxDistance - - RollOffMinDistance - - RollOffMode - - SoundGroup - - Source - - Volume - SpecialMesh: - superclass: FileMesh - events: [] - properties: - - MeshType - SphereHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Radius - SpotLight: - superclass: Light - events: [] - properties: - - Angle - - Face - - Range - SpringConstraint: - superclass: Constraint - events: [] - properties: - - Coils - - CurrentLength - - Damping - - FreeLength - - LimitsEnabled - - MaxForce - - MaxLength - - MinLength - - Radius - - Stiffness - - Thickness - StackFrame: - superclass: Instance - events: [] - properties: - - FrameId - - FrameName - - FrameType - - Globals - - Line - - Locals - - Populated - - Script - - Upvalues - StandalonePluginScripts: - superclass: Instance - events: [] - properties: [] - StandardPages: - superclass: Pages - events: [] - properties: [] - StarterCharacterScripts: - superclass: StarterPlayerScripts - events: [] - properties: [] - StarterGear: - superclass: Instance - events: [] - properties: [] - StarterGui: - superclass: BasePlayerGui - events: - - CoreGuiChangedSignal - properties: - - ProcessUserInput - - ResetPlayerGuiOnSpawn - - RtlTextSupport - - ScreenOrientation - - ShowDevelopmentGui - - VirtualCursorMode - StarterPack: - superclass: Instance - events: [] - properties: [] - StarterPlayer: - superclass: Instance - events: [] - properties: - - AllowCustomAnimations - - AutoJumpEnabled - - CameraMaxZoomDistance - - CameraMinZoomDistance - - CameraMode - - CharacterJumpHeight - - CharacterJumpPower - - CharacterMaxSlopeAngle - - CharacterUseJumpPower - - CharacterWalkSpeed - - DevCameraOcclusionMode - - DevComputerCameraMovementMode - - DevComputerMovementMode - - DevTouchCameraMovementMode - - DevTouchMovementMode - - EnableDynamicHeads - - EnableMouseLockOption - - GameSettingsAssetIDFace - - GameSettingsAssetIDHead - - GameSettingsAssetIDLeftArm - - GameSettingsAssetIDLeftLeg - - GameSettingsAssetIDPants - - GameSettingsAssetIDRightArm - - GameSettingsAssetIDRightLeg - - GameSettingsAssetIDShirt - - GameSettingsAssetIDTeeShirt - - GameSettingsAssetIDTorso - - GameSettingsAvatar - - GameSettingsR15Collision - - GameSettingsScaleRangeBodyType - - GameSettingsScaleRangeHead - - GameSettingsScaleRangeHeight - - GameSettingsScaleRangeProportion - - GameSettingsScaleRangeWidth - - HealthDisplayDistance - - HumanoidStateMachineMode - - LoadCharacterAppearance - - 'LoadCharacterLayeredClothing ' - - NameDisplayDistance - - UserEmotesEnabled - StarterPlayerScripts: - superclass: Instance - events: [] - properties: [] - Stats: - superclass: Instance - events: [] - properties: - - ContactsCount - - DataReceiveKbps - - DataSendKbps - - HeartbeatTimeMs - - InstanceCount - - MovingPrimitivesCount - - PhysicsReceiveKbps - - PhysicsSendKbps - - PhysicsStepTimeMs - - PrimitivesCount - StatsItem: - superclass: Instance - events: [] - properties: - - DisplayName - Status: - superclass: Model - events: [] - properties: [] - StringValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - Studio: - superclass: Instance - events: - - ThemeChanged - properties: - - '"TODO" Color' - - '"function" Color' - - '"local" Color' - - '"nil" Color' - - '"self" Color' - - Active Color - - Active Hover Over Color - - Always Save Script Changes - - Animate Hover Over - - Auto Clean Empty Line - - Auto Closing Brackets - - Auto Closing Quotes - - Auto Delete Closing Brackets and Quotes - - Auto Indent Rule - - Auto-Recovery Enabled - - Auto-Recovery Interval (Minutes) - - Auto-Recovery Path - - Automatically commit locked scripts when you save or publish to Roblox - - Background Color - - Basic Objects Display Mode - - Bool Color - - Bracket Color - - Built-in Function Color - - Camera Mouse Wheel Speed - - Camera Pan Speed - - Camera Shift Speed - - Camera Speed - - Camera Zoom to Mouse Position - - Clear Output On Start - - CommandBarLocalState - - Comment Color - - Current Line Highlight Color - - Debugger Current Line Color - - Debugger Error Line Color - - DefaultScriptFileDir - - DeprecatedObjectsShown - - Display Team Create toggle when creating a new experience - - DisplayLanguage - - Doc View Code Background Color - - Drag Multiple Parts As Single Part - - Enable Autocomplete - - Enable Autocomplete Doc View - - Enable CoreScript Debugger - - Enable Http Sandboxing - - Enable Internal Beta Features - - Enable Internal Features - - Enable Script Analysis - - Enable Scrollbar Markers - - Enable Signature Help - - Enable Signature Help Doc View - - Enable Temporary Tabs - - Enable Temporary Tabs In Explorer - - Enable Type Hover - - EnableOnTypeAutocomplete - - Error Color - - File > New creates a place with Team Create off - - Find Selection Background Color - - Font - - Format On Paste - - Format On Type - - Function Name Color - - Highlight Current Line - - Highlight Occurances - - Hover Animate Speed - - Hover Box Thickness - - Hover Line Thickness - - Hover Over Color - - IconOverrideDir - - Indent Using Spaces - - Keyword Color - - Line Thickness - - LocalAssetsFolder - - LuaDebuggerEnabled - - LuaDebuggerEnabledAtStartup - - Luau Keyword Color - - Main Volume - - Matching Word Background Color - - Maximum Output Lines - - Menu Item Background Color - - Method Color - - Number Color - - Only Play Audio from Window in Focus - - Operator Color - - Output Font - - Output Layout Mode - - PermissionLevelShown - - Physical Draggers Select Scope By Default - - Pivot Snap To Geometry Color - - PluginDebuggingEnabled - - PluginsDir - - Primary Text Color - - Property Color - - Render Throttle Percentage - - Respect Studio shortcuts when game has focus - - Ruler Color - - Rulers - - RuntimeUndoBehavior - - Script Editor Color Preset - - Script Editor Scrollbar Background Color - - Script Editor Scrollbar Handle Color - - ScriptEditorMenuBorderColor - - ScriptEditorShouldShowPluginMethods - - ScriptTimeoutLength - - Scroll Past Last Line - - Search Content For Core Scripts - - Secondary Text Color - - Select Color - - Select/Hover Color - - Selected Menu Item Background Color - - Selected Text Color - - Selection Background Color - - Selection Box Thickness - - Selection Color - - Selection Highlight Thickness - - Selection Line Thickness - - Server Audio Behavior - - Set Pivot of Imported Parts - - Show Core GUI in Explorer while Playing - - Show Diagnostics Bar - - Show FileSyncService - - Show Hidden Objects in Explorer - - Show Hover Over - - Show Light Guides - - Show Navigation Labels - - Show Navigation Mesh - - Show Pathfinding Links - - Show Plugin GUI Service in Explorer - - Show QT warnings in output - - Show Whitespace - - Show plus button on hover in Explorer - - ShowCorePackagesInExplorer - - Skip Closing Brackets and Quotes - - String Color - - Tab Width - - Text Color - - Text Wrapping - - Theme - - UI Theme - - Use Bounding Box Move Handles - - Warning Color - - Whitespace Color - StudioAssetService: - superclass: Instance - events: - - OnConvertToPackageResult - - OnPublishPackageResult - - OnSaveToRoblox - properties: [] - StudioData: - superclass: Instance - events: [] - properties: - - EnableScriptCollabByDefaultOnLoad - StudioDeviceEmulatorService: - superclass: Instance - events: - - CurrentDeviceIdChanged - - OrientationChanged - - TouchInBoundsChanged - - TouchPositionsChanged - properties: - - HasMultiTouchStarted - - IsMultiTouchEmulationOn - - IsMultiTouchEnabled - - PivotPosition - StudioPublishService: - superclass: Instance - events: - - GameNameUpdated - - GamePublishCancelled - - GamePublishFinished - - OnSaveOrPublishPlaceToRoblox - properties: [] - StudioScriptDebugEventListener: - superclass: Instance - events: [] - properties: [] - StudioSdkService: - superclass: Instance - events: [] - properties: [] - StudioService: - superclass: Instance - events: - - OnImportFromRoblox - - OnOpenGameSettings - - OnOpenManagePackagePlugin - - OnPluginInstalledFromToolbox - - OnPluginInstalledFromWeb - - OnPublishAsPlugin - - OnSaveToRoblox - - PromptTransformPluginCheckEnable - - SaveLocallyAsComplete - properties: - - ActiveScript - - AlignDraggedObjects - - DraggerSolveConstraints - - DrawConstraintsOnTop - - GridSize - - HoverInstance - - InstalledPluginData - - PivotSnapToGeometry - - RotateIncrement - - ShowActiveInstanceHighlight - - ShowConstraintDetails - - StudioLocaleId - - UseLocalSpace - StudioTheme: - superclass: Instance - events: [] - properties: [] - SunRaysEffect: - superclass: PostEffect - events: [] - properties: - - Intensity - - Spread - SurfaceAppearance: - superclass: Instance - events: [] - properties: - - AlphaMode - - ColorMap - - MetalnessMap - - NormalMap - - RoughnessMap - - TexturePack - SurfaceGui: - superclass: SurfaceGuiBase - events: [] - properties: - - AlwaysOnTop - - Brightness - - CanvasSize - - ClipsDescendants - - HorizontalCurvature - - LightInfluence - - PixelsPerStud - - Shape - - SizingMode - - ToolPunchThroughDistance - - ZOffset - SurfaceGuiBase: - superclass: LayerCollector - events: [] - properties: - - Active - - Adornee - - Face - SurfaceLight: - superclass: Light - events: [] - properties: - - Angle - - Face - - Range - SurfaceSelection: - superclass: PartAdornment - events: [] - properties: - - TargetSurface - SwimController: - superclass: ControllerBase - events: [] - properties: - - AccelerationTime - - PitchMaxTorque - - PitchSpeedFactor - - RollMaxTorque - - RollSpeedFactor - SyncScriptBuilder: - superclass: ScriptBuilder - events: [] - properties: - - CoverageInfo - - DebugInfo - - PackAsSource - - RawBytecode - TaskScheduler: - superclass: Instance - events: [] - properties: - - SchedulerDutyCycle - - SchedulerRate - - ThreadPoolConfig - - ThreadPoolSize - Team: - superclass: Instance - events: - - PlayerAdded - - PlayerRemoved - properties: - - AutoAssignable - - AutoColorCharacters - - ChildOrder - - Score - - TeamColor - TeamCreateData: - superclass: Instance - events: [] - properties: [] - TeamCreatePublishService: - superclass: Instance - events: [] - properties: [] - TeamCreateService: - superclass: Instance - events: - - ToggleManageCollaborators - properties: [] - Teams: - superclass: Instance - events: [] - properties: [] - TeleportAsyncResult: - superclass: Instance - events: [] - properties: - - PrivateServerId - - ReservedServerAccessCode - TeleportOptions: - superclass: Instance - events: [] - properties: - - ReservedServerAccessCode - - ServerInstanceId - - ShouldReserveServer - TeleportService: - superclass: Instance - events: - - LocalPlayerArrivedFromTeleport - - MenuTeleportAttempt - - TeleportInitFailed - properties: - - CustomizedTeleportUI - TemporaryCageMeshProvider: - superclass: Instance - events: [] - properties: [] - TemporaryScriptService: - superclass: Instance - events: [] - properties: [] - Terrain: - superclass: BasePart - events: [] - properties: - - Decoration - - IsSmooth - - LastUsedModificationMethod - - MaterialColors - - MaxExtents - - ShorelinesUpgraded - - SmoothVoxelsUpgraded - - WaterColor - - WaterReflectance - - WaterTransparency - - WaterWaveSize - - WaterWaveSpeed - TerrainDetail: - superclass: Instance - events: [] - properties: - - ColorMap - - Face - - MaterialPattern - - MetalnessMap - - NormalMap - - RoughnessMap - - StudsPerTile - TerrainRegion: - superclass: Instance - events: [] - properties: - - IsSmooth - - SizeInCells - TestService: - superclass: Instance - events: - - ServerCollectConditionalResult - - ServerCollectResult - properties: - - AutoRuns - - Description - - ErrorCount - - ExecuteWithStudioRun - - Is30FpsThrottleEnabled - - IsPhysicsEnvironmentalThrottled - - IsSleepAllowed - - NumberOfPlayers - - SimulateSecondsLag - - TestCount - - Timeout - - WarnCount - TextBox: - superclass: GuiObject - events: - - FocusLost - - Focused - - ReturnPressedFromOnScreenKeyboard - properties: - - ClearTextOnFocus - - ContentText - - CursorPosition - - Font - - FontFace - - FontSize - - LineHeight - - ManualFocusRelease - - MaxVisibleGraphemes - - MultiLine - - OverlayNativeInput - - PlaceholderColor3 - - PlaceholderText - - ReturnKeyType - - RichText - - SelectionStart - - ShowNativeInput - - Text - - TextBounds - - TextColor - - TextColor3 - - TextEditable - - TextFits - - TextInputType - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextBoxService: - superclass: Instance - events: [] - properties: [] - TextButton: - superclass: GuiButton - events: [] - properties: - - ContentText - - Font - - FontFace - - FontSize - - LineHeight - - LocalizedText - - MaxVisibleGraphemes - - RichText - - Text - - TextBounds - - TextColor - - TextColor3 - - TextFits - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextChannel: - superclass: Instance - events: - - MessageReceived - properties: [] - TextChatCommand: - superclass: Instance - events: - - Triggered - properties: - - Enabled - - PrimaryAlias - - SecondaryAlias - TextChatConfigurations: - superclass: Instance - events: [] - properties: [] - TextChatMessage: - superclass: Instance - events: [] - properties: - - MessageId - - Metadata - - PrefixText - - Status - - Text - - TextChannel - - TextSource - - Timestamp - TextChatMessageProperties: - superclass: Instance - events: [] - properties: - - PrefixText - - Text - TextChatService: - superclass: Instance - events: - - MessageReceived - - SendingMessage - properties: - - ChatVersion - - CreateDefaultCommands - - CreateDefaultTextChannels - TextFilterResult: - superclass: Instance - events: [] - properties: [] - TextLabel: - superclass: GuiLabel - events: [] - properties: - - ContentText - - Font - - FontFace - - FontSize - - LineHeight - - LocalizedText - - MaxVisibleGraphemes - - RichText - - Text - - TextBounds - - TextColor - - TextColor3 - - TextFits - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextService: - superclass: Instance - events: [] - properties: [] - TextSource: - superclass: Instance - events: [] - properties: - - CanSend - - UserId - Texture: - superclass: Decal - events: [] - properties: - - OffsetStudsU - - OffsetStudsV - - StudsPerTileU - - StudsPerTileV - TextureGuiExperimental: - superclass: LayerCollector - events: [] - properties: - - Size - - TemporaryId - ThirdPartyUserService: - superclass: Instance - events: - - ActiveGamepadAdded - - ActiveGamepadRemoved - - ActiveUserSignedOut - properties: [] - ThreadState: - superclass: Instance - events: [] - properties: - - FrameCount - - Populated - - ThreadId - - ThreadName - TimerService: - superclass: Instance - events: [] - properties: [] - ToastNotificationService: - superclass: Instance - events: [] - properties: [] - Tool: - superclass: BackpackItem - events: - - Activated - - Deactivated - - Equipped - - Unequipped - properties: - - CanBeDropped - - Enabled - - Grip - - GripForward - - GripPos - - GripRight - - GripUp - - ManualActivationOnly - - RequiresHandle - - ToolTip - Torque: - superclass: Constraint - events: [] - properties: - - RelativeTo - - Torque - TorsionSpringConstraint: - superclass: Constraint - events: [] - properties: - - Coils - - CurrentAngle - - Damping - - LimitEnabled - - LimitsEnabled - - MaxAngle - - MaxTorque - - Radius - - Restitution - - Stiffness - TotalCountTimeIntervalItem: - superclass: StatsItem - events: [] - properties: [] - TouchInputService: - superclass: Instance - events: [] - properties: [] - TouchTransmitter: - superclass: Instance - events: [] - properties: [] - TracerService: - superclass: Instance - events: [] - properties: [] - TrackerLodController: - superclass: Instance - events: - - UpdateState - properties: - - AudioMode - - VideoExtrapolationMode - - VideoLodMode - - VideoMode - TrackerStreamAnimation: - superclass: Instance - events: [] - properties: [] - Trail: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - Brightness - - Color - - Enabled - - FaceCamera - - Lifetime - - LightEmission - - LightInfluence - - MaxLength - - MinLength - - Texture - - TextureLength - - TextureMode - - Transparency - - WidthScale - Translator: - superclass: Instance - events: [] - properties: - - LocaleId - TremoloSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Duty - - Frequency - TriangleMeshPart: - superclass: BasePart - events: [] - properties: - - CollisionFidelity - - MeshSize - TrussPart: - superclass: BasePart - events: [] - properties: - - Style - Tween: - superclass: TweenBase - events: [] - properties: - - Instance - - TweenInfo - TweenBase: - superclass: Instance - events: - - Completed - properties: - - PlaybackState - TweenService: - superclass: Instance - events: [] - properties: [] - UGCValidationService: - superclass: Instance - events: [] - properties: [] - UIAspectRatioConstraint: - superclass: UIConstraint - events: [] - properties: - - AspectRatio - - AspectType - - DominantAxis - UIBase: - superclass: Instance - events: [] - properties: [] - UIComponent: - superclass: UIBase - events: [] - properties: [] - UIConstraint: - superclass: UIComponent - events: [] - properties: [] - UICorner: - superclass: UIComponent - events: [] - properties: - - CornerRadius - UIGradient: - superclass: UIComponent - events: [] - properties: - - Color - - Enabled - - Offset - - Rotation - - Transparency - UIGridLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - AbsoluteCellCount - - AbsoluteCellSize - - CellPadding - - CellSize - - FillDirectionMaxCells - - StartCorner - UIGridStyleLayout: - superclass: UILayout - events: [] - properties: - - AbsoluteContentSize - - FillDirection - - HorizontalAlignment - - SortOrder - - VerticalAlignment - UILayout: - superclass: UIComponent - events: [] - properties: [] - UIListLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - Padding - UIPadding: - superclass: UIComponent - events: [] - properties: - - PaddingBottom - - PaddingLeft - - PaddingRight - - PaddingTop - UIPageLayout: - superclass: UIGridStyleLayout - events: - - PageEnter - - PageLeave - - Stopped - properties: - - Animated - - Circular - - CurrentPage - - EasingDirection - - EasingStyle - - GamepadInputEnabled - - Padding - - ScrollWheelInputEnabled - - TouchInputEnabled - - TweenTime - UIScale: - superclass: UIComponent - events: [] - properties: - - Scale - UISizeConstraint: - superclass: UIConstraint - events: [] - properties: - - MaxSize - - MinSize - UIStroke: - superclass: UIComponent - events: [] - properties: - - ApplyStrokeMode - - Color - - Enabled - - LineJoinMode - - Thickness - - Transparency - UITableLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - FillEmptySpaceColumns - - FillEmptySpaceRows - - MajorAxis - - Padding - UITextSizeConstraint: - superclass: UIConstraint - events: [] - properties: - - MaxTextSize - - MinTextSize - UnionOperation: - superclass: PartOperation - events: [] - properties: [] - UniversalConstraint: - superclass: Constraint - events: [] - properties: - - LimitsEnabled - - MaxAngle - - Radius - - Restitution - UnvalidatedAssetService: - superclass: Instance - events: [] - properties: [] - UserGameSettings: - superclass: Instance - events: - - FullscreenChanged - - PerformanceStatsVisibleChanged - - StudioModeChanged - properties: - - AllTutorialsDisabled - - CameraMode - - CameraYInverted - - ChatVisible - - ComputerCameraMovementMode - - ComputerMovementMode - - ControlMode - - DefaultCameraID - - Fullscreen - - GamepadCameraSensitivity - - GraphicsQualityLevel - - HasEverUsedVR - - IsUsingCameraYInverted - - IsUsingGamepadCameraSensitivity - - MasterVolume - - MicroProfilerWebServerEnabled - - MicroProfilerWebServerIP - - MicroProfilerWebServerPort - - MouseSensitivity - - MouseSensitivityFirstPerson - - MouseSensitivityThirdPerson - - OnScreenProfilerEnabled - - OnboardingsCompleted - - PerformanceStatsVisible - - PlayerHeight - - RCCProfilerRecordFrameRate - - RCCProfilerRecordTimeFrame - - RotationType - - SavedQualityLevel - - StartMaximized - - StartScreenPosition - - StartScreenSize - - TouchCameraMovementMode - - TouchMovementMode - - UsedCoreGuiIsVisibleToggle - - UsedCustomGuiIsVisibleToggle - - UsedHideHudShortcut - - VREnabled - - VRPlayMode - - VRRotationIntensity - - VRSafetyBubbleMode - - VRSmoothRotationEnabled - - VignetteEnabled - UserInputService: - superclass: Instance - events: - - DeviceAccelerationChanged - - DeviceGravityChanged - - DeviceRotationChanged - - GamepadConnected - - GamepadDisconnected - - InputBegan - - InputChanged - - InputEnded - - JumpRequest - - LastInputTypeChanged - - PointerAction - - StatusBarTapped - - TextBoxFocusReleased - - TextBoxFocused - - TouchEnded - - TouchLongPress - - TouchMoved - - TouchPan - - TouchPinch - - TouchRotate - - TouchStarted - - TouchSwipe - - TouchTap - - TouchTapInWorld - - UserCFrameChanged - - WindowFocusReleased - - WindowFocused - properties: - - AccelerometerEnabled - - BottomBarSize - - GamepadEnabled - - GazeSelectionEnabled - - GyroscopeEnabled - - KeyboardEnabled - - LegacyInputEventsEnabled - - ModalEnabled - - MouseBehavior - - MouseDeltaSensitivity - - MouseEnabled - - MouseIcon - - MouseIconEnabled - - NavBarSize - - OnScreenKeyboardAnimationDuration - - OnScreenKeyboardPosition - - OnScreenKeyboardSize - - OnScreenKeyboardVisible - - OverrideMouseIconBehavior - - RightBarSize - - StatusBarSize - - TouchEnabled - - UserHeadCFrame - - VREnabled - UserService: - superclass: Instance - events: [] - properties: [] - UserSettings: - superclass: GenericSettings - events: [] - properties: [] - UserStorageService: - superclass: LocalStorageService - events: [] - properties: [] - VRService: - superclass: Instance - events: - - NavigationRequested - - TouchpadModeChanged - - UserCFrameChanged - - UserCFrameEnabled - properties: - - AutomaticScaling - - DidPointerHit - - FadeOutViewOnCollision - - GuiInputUserCFrame - - LaserDistance - - PointerHitCFrame - - VRDeviceAvailable - - VRDeviceName - - VREnabled - - VRSessionState - ValueBase: - superclass: Instance - events: [] - properties: [] - Vector3Curve: - superclass: Instance - events: [] - properties: [] - Vector3Value: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - VectorForce: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - Force - - RelativeTo - VehicleController: - superclass: Controller - events: [] - properties: [] - VehicleSeat: - superclass: BasePart - events: [] - properties: - - AreHingesDetected - - Disabled - - HeadsUpDisplay - - MaxSpeed - - Occupant - - Steer - - SteerFloat - - Throttle - - ThrottleFloat - - Torque - - TurnSpeed - VelocityMotor: - superclass: JointInstance - events: [] - properties: - - CurrentAngle - - DesiredAngle - - Hole - - MaxVelocity - VersionControlService: - superclass: Instance - events: [] - properties: - - ScriptCollabEnabled - VideoCaptureService: - superclass: Instance - events: - - DevicesChanged - - Error - - Started - - Stopped - properties: - - Active - - CameraID - VideoFrame: - superclass: GuiObject - events: - - DidLoop - - Ended - - Loaded - - Paused - - Played - properties: - - IsLoaded - - Looped - - Playing - - Resolution - - TimeLength - - TimePosition - - Video - - Volume - ViewportFrame: - superclass: GuiObject - events: [] - properties: - - Ambient - - CurrentCamera - - ImageColor3 - - ImageTransparency - - IsMirrored - - LightColor - - LightDirection - VirtualInputManager: - superclass: Instance - events: - - PlaybackCompleted - - RecordingCompleted - properties: - - AdditionalLuaState - VirtualUser: - superclass: Instance - events: [] - properties: [] - VisibilityCheckDispatcher: - superclass: Instance - events: [] - properties: [] - VisibilityService: - superclass: Instance - events: [] - properties: [] - Visit: - superclass: Instance - events: [] - properties: [] - VoiceChatInternal: - superclass: Instance - events: - - LocalPlayerModerated - - ParticipantsStateChanged - - PlayerMicActivitySignalChange - - StateChanged - properties: - - VoiceChatState - VoiceChatService: - superclass: Instance - events: [] - properties: - - EnableDefaultVoice - - VoiceChatEnabledForPlaceOnRcc - - VoiceChatEnabledForUniverseOnRcc - VoiceSource: - superclass: Instance - events: [] - properties: - - UserId - WedgePart: - superclass: FormFactorPart - events: [] - properties: [] - Weld: - superclass: JointInstance - events: [] - properties: [] - WeldConstraint: - superclass: Instance - events: [] - properties: - - Active - - Enabled - - Part0 - - Part1 - WireframeHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Scale - Workspace: - superclass: WorldRoot - events: - - PersistentLoaded - properties: - - AllowThirdPartySales - - ClientAnimatorThrottling - - CurrentCamera - - DistributedGameTime - - FallenPartsDestroyHeight - - FilteringEnabled - - GlobalWind - - Gravity - - HumanoidOnlySetCollisionsOnStateChange - - InterpolationThrottling - - MeshPartHeadsAndAccessories - - PhysicsSteppingMethod - - RejectCharacterDeletions - - ReplicateInstanceDestroySetting - - Retargeting - - SignalBehavior - - StreamOutBehavior - - StreamingEnabled - - StreamingIntegrityMode - - StreamingMinRadius - - StreamingTargetRadius - - Terrain - - TouchesUseCollisionGroups - WorldModel: - superclass: WorldRoot - events: [] - properties: [] - WorldRoot: - superclass: Model - events: [] - properties: [] - WrapLayer: - superclass: BaseWrap - events: [] - properties: - - AutoSkin - - BindOffset - - Color - - DebugMode - - Enabled - - Order - - Puffiness - - ReferenceMeshId - - ReferenceOrigin - - ReferenceOriginWorld - - ShrinkFactor - WrapTarget: - superclass: BaseWrap - events: [] - properties: - - Color - - DebugMode - - Stiffness diff --git a/Modules/Runtime/selene.toml b/Modules/Runtime/selene.toml deleted file mode 100644 index 1f1e170..0000000 --- a/Modules/Runtime/selene.toml +++ /dev/null @@ -1 +0,0 @@ -std = "roblox" \ No newline at end of file diff --git a/Modules/Runtime/wally.toml b/Modules/Runtime/wally.toml deleted file mode 100644 index 34867cb..0000000 --- a/Modules/Runtime/wally.toml +++ /dev/null @@ -1,16 +0,0 @@ -[package] -name = "4x8matrix/runtime" -version = "1.0.0" -realm = "shared" -registry = "https://github.com/UpliftGames/wally-index" -licence = "MIT" -authors = ["AsynchronousMatrix"] - -description = "A simple package to help load modules in during Roblox runtime." - -exclude = ["**"] -include = ["Source", "Source/*", "default.project.json", "wally.toml"] - -[dev-dependencies] - -[dependencies] \ No newline at end of file diff --git a/Modules/State/.vscode/settings.json b/Modules/State/.vscode/settings.json deleted file mode 100644 index ce29214..0000000 --- a/Modules/State/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "luau-lsp.sourcemap.rojoProjectFile": "development.project.json" -} \ No newline at end of file diff --git a/Modules/State/Source/init.luau b/Modules/State/Source/init.luau deleted file mode 100644 index 5d4325a..0000000 --- a/Modules/State/Source/init.luau +++ /dev/null @@ -1,440 +0,0 @@ -local Signal = require(script.Parent.Signal) - -local MAX_RECORD_ALLOCATION = 15 - ---[=[ - @class State - - The `State` class represents an object that wraps around a Roblox datatype. State is NOT immutable, meaning any/all data that the State is handling will NOT account for changes to that value outside of State. - - --- - - There is quite a few features that have been bundled into State, however Developers do not need to take advantage of them all, here's a small rundown of what you can do with state: - - - Record/Save previous states - - For an example, this can come in handy if you need to record the player keystrokes - - QoL functions for mutating state - - State implements several QoL functions *(for ex: `Increment`, `Decrement`)* to allow developers to quickly mutate state without getting and setting values. - - Support for Roblox Attributes - - State will track and update Roblox Attributes on an Object, this can help quite a bit to remove the Roblox boilerplate for tracking when an Attribute has changed. -]=] -local State = {} - -State.Type = "State" - -State.Interface = {} -State.Prototype = {} - ---[=[ - @prop Value any - @within State -]=] - ---[=[ - @prop Changed RBXScriptSignal - @within State -]=] - ---[=[ - @prop Destroyed RBXScriptSignal - @within State -]=] - ---[=[ - @method SetRecordingState - @within State - - @param isRecording boolean - - Sets the state of recording, when recording all states will be saved into a history of states - - - A single state object can only save up to **15** previous states! - - - ```lua - local NumberState = State.new(0) - - NumberState:SetRecordingState(true) - ``` -]=] -function State.Prototype:SetRecordingState(isRecording: boolean): State - self._recording = isRecording - - return self -end - ---[=[ - @method GetRecord - @within State - - @param count number? - - @return { [number]: any } - - Retrieves an array of previous states that have been set - - ```lua - local NumberState = State.new(0) - - NumberState:SetRecordingState(true) - - for index = 1, 5 do - NumberState:Set(index) - end - - print(NumberState:GetRecord(3)) --> { - -- [1] = 0, - -- [2] = 1, - -- [3] = ... - -- } - ``` -]=] -function State.Prototype:GetRecord(count: number): { [number]: any } - if not count then - return self._record - end - - local record = {} - - for index = 1, count do - record[index] = self._record[index] - end - - return record -end - ---[=[ - @method Destroy - @within State - - Safe way to remove references to the `Value` as well as removing any generated content - - ```lua - local Value = State.new(0) - - ... - - Value:Destroy() - ``` -]=] -function State.Prototype:Destroy(): () - self._record = {} - self.Value = nil - - self.Destroyed:Fire() -end - ---[=[ - @method Set - @within State - - @param value any - - Set the value of a state, when setting a state the 'Changed' signal will invoke. - - ```lua - local Value = State.new(0) - - Value:Set(1) - ``` -]=] -function State.Prototype:Set(value: any): State - local oldValue = self.Value - - if oldValue == value then - return self - end - - if self._recording then - table.insert(self._record, 1, value) - - if #self._record > MAX_RECORD_ALLOCATION then - self._record[#self._record] = nil - end - end - - self.Value = value - self.Changed:Fire(value, oldValue) - - return self -end - ---[=[ - @method Increment - @within State - - @param value number - - Increments the value by a given input - - ```lua - local value = State.new(5) - :Increment(5) - - print(value:Get()) -- 10 - ``` -]=] -function State.Prototype:Increment(value: number): State - assert( - type(self.Value) == "number", - `Expected value to be a number when calling ':Increment', instead got {type(self.Value)}` - ) - - self:Set(self.Value + value) - - return self -end - ---[=[ - @method Decrement - @within State - - @param value number - - Decrement the value by a given input - - ```lua - local value = State.new(10) - :Decrement(5) - - print(value:Get()) -- 5 - ``` -]=] -function State.Prototype:Decrement(value: number): State - assert( - type(self.Value) == "number", - `Expected value to be a number when calling ':Decrement', instead got {type(self.Value)}` - ) - - self:Set(self.Value - value) - - return self -end - ---[=[ - @method Concat - @within State - - @param value string - - Concat the value by a given input - - ```lua - local Value = State.new("Hello ") - :Concat("World!") - - print(value:Get()) -- Hello World! - ``` -]=] -function State.Prototype:Concat(value: string): State - assert( - type(self.Value) == "string", - `Expected value to be a string when calling ':Concat', instead got {type(self.Value)}` - ) - - self:Set(self.Value .. value) - - return self -end - ---[=[ - @method Update - @within State - - @param transformFn (value: any) -> any - - Will change the value of the state to the result of the transform function - - ```lua - local Value = State.new("Hello ") - :Update(function(value) - return value .. "World!" - end) - - print(value:Get()) -- Hello World! - ``` -]=] -function State.Prototype:Update(transform: (value: any) -> any): State - assert( - type(transform) == "function", - `Expected #1 parameter 'transform' to be a function when calling ':Update', instead got {type(transform)}` - ) - - self:Set(transform(self.Value)) - - return self -end - ---[=[ - @method Get - @within State - - @return any - - Fetches the value that the State currently holds. - - - As an alternative, `State` offers a `.Value` property which you can directly refer to. - - - ```lua - local Value = State.new(0) - local resolve = Value:Get() - ``` -]=] -function State.Prototype:Get(): any - return self.Value -end - ---[=[ - @method Observe - @within State - - @param callbackFn (oldValue: any, newValue: any) -> () - - @since 1.2.2 - - @return RBXScriptConnection - - Quick QoL function to observe any changes made to the states value, this will invok the callback function with the current value as soon as an :Observe call has been made. - - - Be cautious when refering to the RBXScriptConnection `:Observe` returns, as the first callback function will be invoked before this connection is returned! - - - ```lua - local Value = State.new(0) - - Value:Observe(function(oldValue, newValue) - doSomething(oldValue, newValue) - end) - ``` -]=] -function State.Prototype:Observe(callbackFn: (oldValue: any, newValue: any) -> ()): RBXScriptConnection - task.spawn(callbackFn, self.Value, self.Value) - - return self.Changed:Connect(callbackFn) -end - ---[=[ - @method ToString - @within State - - @return string - - Returns a prettified string version of the state table. - - ```lua - local Value = State.new(0) - - print(tostring(Value)) -- Value<0> - ``` -]=] -function State.Prototype:ToString() - return `{State.Type}<{tostring(self.Value)}>` -end - ---[=[ - @function new - @within State - - @param value any - - @return State - - Constructor function used to generate a new 'State' object - - ```lua - local object = State.new("Hello, World!") - - ... - ``` -]=] -function State.Interface.new(value: any): State - local self = setmetatable({ Value = value, _record = { value } }, { - __type = State.Type, - __index = State.Prototype, - __tostring = function(object) - return object:ToString() - end, - }) - - self.Changed = Signal.new() - self.Destroyed = Signal.new() - - return self -end - ---[=[ - @function fromAttribute - @within State - - @param object Instance - @param attribute string - - @return State - - Wrapper for `State.new` however wraps around a Roblox attribute, the State object will always have the latest attribute value. - - ```lua - local object = State.fromAttribute(workspace.object, "attributeName") - - ... - ``` -]=] -function State.Interface.fromAttribute(object: Instance, attribute: string): State - local attributeValue = object:GetAttribute(attribute) - local stateObject = State.Interface.new(attributeValue) - - local attributeConnections = {} - - table.insert( - attributeConnections, - object:GetAttributeChangedSignal(attribute):Connect(function() - stateObject:Set(object:GetAttribute(attribute)) - end) - ) - - stateObject.Destroyed:Once(function() - for _, connection in attributeConnections do - connection:Disconnect() - end - end) - - return stateObject -end - ---[=[ - @function is - @within State - - @param object State? - - @return boolean? - - Validate if an object is a 'State' object - - ```lua - local object = State.new("Hello, World!") - - if State.is(object) then - ... - end - ``` -]=] -function State.Interface.is(object: State?): boolean - if not object or type(object) ~= "table" then - return false - end - - local metatable = getmetatable(object) - - return metatable and metatable.__type == State.Type -end - -export type State = typeof(State.Prototype) & { - Value: any, -} - -return State.Interface diff --git a/Modules/State/Source/init.spec.luau b/Modules/State/Source/init.spec.luau deleted file mode 100644 index 29bff0a..0000000 --- a/Modules/State/Source/init.spec.luau +++ /dev/null @@ -1,170 +0,0 @@ -return function() - local StateModule = require(script.Parent) - - it("Should be able to generate a new State Object", function() - expect(function() - StateModule.new(123) - end).never.to.throw() - end) - - it("Should be able to detect 'State' objects", function() - expect(function() - local stateObject = StateModule.new(123) - - expect(StateModule.is(stateObject)).to.equal(true) - end).never.to.throw() - end) - - describe("Update, Set, Observe & Get on state objects", function() - it("Should be able to Get state values", function() - local stateObject = StateModule.new(0) - - expect(stateObject:Get()).to.equal(0) - end) - - it("Should be able to Set state values", function() - local stateObject = StateModule.new(0) - - stateObject:Set(1) - - expect(stateObject:Get()).to.equal(1) - end) - - it("Should be able to Observe changes to state values", function() - local stateObject = StateModule.new(0) - local observeFlag = false - - stateObject:Observe(function() - observeFlag = true - end) - - stateObject:Set(1) - - expect(observeFlag).to.equal(true) - end) - - it("Should be able to Update state values", function() - local stateObject = StateModule.new(0) - - stateObject:Update(function(value) - return value + 10 - end) - - expect(stateObject:Get()).to.equal(10) - end) - end) - - describe("Incrementing & Decrementing on number based states", function() - it("Should be able to increment state object", function() - expect(function() - local stateObject = StateModule.new(0) - - stateObject:Increment(10) - - expect(stateObject:Get()).to.equal(10) - end).never.to.throw() - end) - - it("Should be able to decrement state object", function() - expect(function() - local stateObject = StateModule.new(10) - - stateObject:Decrement(10) - - expect(stateObject:Get()).to.equal(0) - end).never.to.throw() - end) - end) - - describe("Concatenation on string based states", function() - it("Should be able to concat a string onto an existing string", function() - local stateObject = StateModule.new("") - - stateObject:Concat("Hello, World!") - - expect(stateObject:Get()).to.equal("Hello, World!") - end) - end) - - describe("State can Observe and react to changes", function() - it("Calling `:Observe` should fire on the next cycle", function() - local stateObject = StateModule.new(0) - local connection - - local hasObserved = false - - connection = stateObject:Observe(function() - hasObserved = true - end) - - task.wait() - - connection:Disconnect() - - expect(hasObserved).to.equal(true) - end) - - it("Calling `:Observe` should get the latest value", function() - local stateObject = StateModule.new(0) - local connection - - local value = false - - connection = stateObject:Observe(function() - value = stateObject.Value - end) - - stateObject:Set(1) - - task.wait() - - connection:Disconnect() - - expect(value).to.equal(1) - end) - - it("Calling `:Observe` should pass the old value and the new value", function() - local stateObject = StateModule.new(0) - local connection - - connection = stateObject:Observe(function(oldValue, newValue) - if oldValue == newValue then - return - end - - expect(oldValue).to.equal(0) - expect(newValue).to.equal(1) - end) - - task.wait() - - stateObject:Set(1) - connection:Disconnect() - end) - end) - - describe("State records & previous states", function() - it("Should be able to enable recording on a State", function() - expect(function() - StateModule.new(""):SetRecordingState(true):SetRecordingState(false) - end).never.to.throw() - end) - - it("Should be able to record changes on a State", function() - expect(function() - local stateObject = StateModule.new(0):SetRecordingState(true) - - stateObject:Set(1) - stateObject:Set(2) - stateObject:Set(3) - - local stateRecord = stateObject:GetRecord(4) - - expect(stateRecord[1]).to.equal(3) - expect(stateRecord[2]).to.equal(2) - expect(stateRecord[3]).to.equal(1) - expect(stateRecord[4]).to.equal(0) - end).never.to.throw() - end) - end) -end diff --git a/Modules/State/Tests/Runtime.server.luau b/Modules/State/Tests/Runtime.server.luau deleted file mode 100644 index bf16fa2..0000000 --- a/Modules/State/Tests/Runtime.server.luau +++ /dev/null @@ -1,18 +0,0 @@ -local ReplicatedStorage = game:GetService("ReplicatedStorage") - -local EXECUTE_PROJECT_TESTEZ_TESTS = true - -if EXECUTE_PROJECT_TESTEZ_TESTS then - local EmoticonReporter = require(ReplicatedStorage.DevPackages.EmoticonReporter) - local TestEz = require(ReplicatedStorage.DevPackages.TestEz) - - local Reporter = EmoticonReporter.new() - - print("[TestRunner]: TestEZ Running, please be patient if you're running tests on a LIVE environment.") - - TestEz.TestBootstrap:run({ - ReplicatedStorage.Packages.State - }, Reporter) - - Reporter:Print() -end \ No newline at end of file diff --git a/Modules/State/aftman.toml b/Modules/State/aftman.toml deleted file mode 100644 index 349f6b9..0000000 --- a/Modules/State/aftman.toml +++ /dev/null @@ -1,9 +0,0 @@ -# This file lists tools managed by Aftman, a cross-platform toolchain manager. -# For more information, see https://github.com/LPGhatguy/aftman - -# To add a new tool, add an entry to this table. - -[tools] -rojo = "rojo-rbx/rojo@7.3.0" -selene = "Kampfkarren/selene@0.25.0" -wally = "UpliftGames/wally@0.3.2" \ No newline at end of file diff --git a/Modules/State/default.project.json b/Modules/State/default.project.json deleted file mode 100644 index 2c7b346..0000000 --- a/Modules/State/default.project.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "name": "State", - "tree": { - "$path": "Source" - } -} \ No newline at end of file diff --git a/Modules/State/development.project.json b/Modules/State/development.project.json deleted file mode 100644 index 5e786aa..0000000 --- a/Modules/State/development.project.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "name": "state", - "tree": { - "$className": "DataModel", - - "Players": { - "$className": "Players", - "$properties": { - "CharacterAutoLoads": false - } - }, - - "ReplicatedStorage": { - "$className": "ReplicatedStorage", - "$ignoreUnknownInstances": true, - - "Packages": { - "$className": "Folder", - "$path": "Packages", - - "State": { - "$path": "Source" - } - }, - - "DevPackages": { - "$className": "Folder", - "$path": "DevPackages" - } - }, - - "ServerScriptService": { - "$className": "ServerScriptService", - "$ignoreUnknownInstances": true, - "$path": "Tests" - } - } -} \ No newline at end of file diff --git a/Modules/State/roblox.yml b/Modules/State/roblox.yml deleted file mode 100644 index e4089d3..0000000 --- a/Modules/State/roblox.yml +++ /dev/null @@ -1,16959 +0,0 @@ -# This file was @generated by generate-roblox-std at 2023-04-11 16:38:39.388332415 +01:00 -base: luau -name: roblox -globals: - Axes.new: - args: - - type: '...' - must_use: true - BrickColor.Black: - args: [] - must_use: true - BrickColor.Blue: - args: [] - must_use: true - BrickColor.DarkGray: - args: [] - must_use: true - BrickColor.Gray: - args: [] - must_use: true - BrickColor.Green: - args: [] - must_use: true - BrickColor.Red: - args: [] - must_use: true - BrickColor.White: - args: [] - must_use: true - BrickColor.Yellow: - args: [] - must_use: true - BrickColor.new: - args: - - type: any - - required: false - type: number - - required: false - type: number - must_use: true - BrickColor.palette: - args: - - type: number - must_use: true - BrickColor.random: - args: [] - must_use: true - CFrame.Angles: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - CFrame.fromAxisAngle: - args: - - type: - display: Vector3 - - type: number - must_use: true - CFrame.fromEulerAngles: - args: - - type: number - - type: number - - type: number - - required: false - type: - display: RotationOrder - must_use: true - CFrame.fromEulerAnglesXYZ: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.fromEulerAnglesYXZ: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.fromMatrix: - args: - - type: - display: Vector3 - - type: - display: Vector3 - - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - CFrame.fromOrientation: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.identity: - property: read-only - CFrame.lookAt: - args: - - type: - display: Vector3 - - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - CFrame.new: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - CatalogSearchParams.new: - args: [] - must_use: true - Color3.fromHSV: - args: - - type: number - - type: number - - type: number - must_use: true - Color3.fromHex: - args: - - type: string - must_use: true - Color3.fromRGB: - args: - - type: number - - type: number - - type: number - must_use: true - Color3.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Color3.toHSV: - args: - - type: - display: Color3 - must_use: true - ColorSequence.new: - args: - - type: any - - required: false - type: - display: Color3 - must_use: true - ColorSequenceKeypoint.new: - args: - - type: number - - type: - display: Color3 - must_use: true - DateTime.fromIsoDate: - args: - - type: string - must_use: true - DateTime.fromLocalTime: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - DateTime.fromUniversalTime: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - DateTime.fromUnixTimestamp: - args: - - type: number - must_use: true - DateTime.fromUnixTimestampMillis: - args: - - type: number - must_use: true - DateTime.now: - args: [] - must_use: true - DebuggerManager: - args: [] - must_use: true - DockWidgetPluginGuiInfo.new: - args: - - required: false - type: - display: InitialDockState - - required: false - type: bool - - required: false - type: bool - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Enum.AccessoryType.Back: - struct: EnumItem - Enum.AccessoryType.DressSkirt: - struct: EnumItem - Enum.AccessoryType.Eyebrow: - struct: EnumItem - Enum.AccessoryType.Eyelash: - struct: EnumItem - Enum.AccessoryType.Face: - struct: EnumItem - Enum.AccessoryType.Front: - struct: EnumItem - Enum.AccessoryType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AccessoryType.Hair: - struct: EnumItem - Enum.AccessoryType.Hat: - struct: EnumItem - Enum.AccessoryType.Jacket: - struct: EnumItem - Enum.AccessoryType.LeftShoe: - struct: EnumItem - Enum.AccessoryType.Neck: - struct: EnumItem - Enum.AccessoryType.Pants: - struct: EnumItem - Enum.AccessoryType.RightShoe: - struct: EnumItem - Enum.AccessoryType.Shirt: - struct: EnumItem - Enum.AccessoryType.Shorts: - struct: EnumItem - Enum.AccessoryType.Shoulder: - struct: EnumItem - Enum.AccessoryType.Sweater: - struct: EnumItem - Enum.AccessoryType.TShirt: - struct: EnumItem - Enum.AccessoryType.TeeShirt: - struct: EnumItem - deprecated: - message: Enum.AccessoryType.TeeShirt was replaced with Enum.AccessoryType.TShirt - replace: - - Enum.AccessoryType.TShirt - Enum.AccessoryType.Unknown: - struct: EnumItem - Enum.AccessoryType.Waist: - struct: EnumItem - Enum.ActionType.Draw: - struct: EnumItem - Enum.ActionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActionType.Lose: - struct: EnumItem - Enum.ActionType.Nothing: - struct: EnumItem - Enum.ActionType.Pause: - struct: EnumItem - Enum.ActionType.Win: - struct: EnumItem - Enum.ActuatorRelativeTo.Attachment0: - struct: EnumItem - Enum.ActuatorRelativeTo.Attachment1: - struct: EnumItem - Enum.ActuatorRelativeTo.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActuatorRelativeTo.World: - struct: EnumItem - Enum.ActuatorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActuatorType.Motor: - struct: EnumItem - Enum.ActuatorType.None: - struct: EnumItem - Enum.ActuatorType.Servo: - struct: EnumItem - Enum.AdPortalStatus.Active: - struct: EnumItem - Enum.AdPortalStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdPortalStatus.Inactive: - struct: EnumItem - Enum.AdPortalStatus.Invalid: - struct: EnumItem - Enum.AdPortalType.Forward: - struct: EnumItem - Enum.AdPortalType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdPortalType.Return: - struct: EnumItem - Enum.AdShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdShape.HorizontalRectangle: - struct: EnumItem - Enum.AdTeleportMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdTeleportMethod.InGameMenuBackButton: - struct: EnumItem - Enum.AdTeleportMethod.PortalForward: - struct: EnumItem - Enum.AdTeleportMethod.PortalReturn: - struct: EnumItem - Enum.AdTeleportMethod.UIBackButton: - struct: EnumItem - Enum.AdTeleportMethod.Undefined: - struct: EnumItem - Enum.AdUnitStatus.Active: - struct: EnumItem - Enum.AdUnitStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdUnitStatus.Inactive: - struct: EnumItem - Enum.AdornCullingMode.Automatic: - struct: EnumItem - Enum.AdornCullingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdornCullingMode.Never: - struct: EnumItem - Enum.AlignType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AlignType.Parallel: - struct: EnumItem - Enum.AlignType.Perpendicular: - struct: EnumItem - Enum.AlphaMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AlphaMode.Overlay: - struct: EnumItem - Enum.AlphaMode.Transparency: - struct: EnumItem - Enum.AnalyticsEconomyAction.Acquire: - struct: EnumItem - Enum.AnalyticsEconomyAction.Default: - struct: EnumItem - Enum.AnalyticsEconomyAction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnalyticsEconomyAction.Spend: - struct: EnumItem - Enum.AnalyticsLogLevel.Debug: - struct: EnumItem - Enum.AnalyticsLogLevel.Error: - struct: EnumItem - Enum.AnalyticsLogLevel.Fatal: - struct: EnumItem - Enum.AnalyticsLogLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnalyticsLogLevel.Information: - struct: EnumItem - Enum.AnalyticsLogLevel.Trace: - struct: EnumItem - Enum.AnalyticsLogLevel.Warning: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Abandon: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Begin: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Complete: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Default: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Fail: - struct: EnumItem - Enum.AnalyticsProgressionStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnimationPriority.Action: - struct: EnumItem - Enum.AnimationPriority.Action2: - struct: EnumItem - Enum.AnimationPriority.Action3: - struct: EnumItem - Enum.AnimationPriority.Action4: - struct: EnumItem - Enum.AnimationPriority.Core: - struct: EnumItem - Enum.AnimationPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnimationPriority.Idle: - struct: EnumItem - Enum.AnimationPriority.Movement: - struct: EnumItem - Enum.AnimatorRetargetingMode.Default: - struct: EnumItem - Enum.AnimatorRetargetingMode.Disabled: - struct: EnumItem - Enum.AnimatorRetargetingMode.Enabled: - struct: EnumItem - Enum.AnimatorRetargetingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellActionType.AvatarEditorPageLoaded: - struct: EnumItem - Enum.AppShellActionType.GamePageLoaded: - struct: EnumItem - Enum.AppShellActionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellActionType.HomePageLoaded: - struct: EnumItem - Enum.AppShellActionType.None: - struct: EnumItem - Enum.AppShellActionType.OpenApp: - struct: EnumItem - Enum.AppShellActionType.ReadConversation: - struct: EnumItem - Enum.AppShellActionType.TapAvatarTab: - struct: EnumItem - Enum.AppShellActionType.TapChatTab: - struct: EnumItem - Enum.AppShellActionType.TapConversationEntry: - struct: EnumItem - Enum.AppShellActionType.TapGamePageTab: - struct: EnumItem - Enum.AppShellActionType.TapHomePageTab: - struct: EnumItem - Enum.AppShellFeature.AvatarEditor: - struct: EnumItem - Enum.AppShellFeature.Chat: - struct: EnumItem - Enum.AppShellFeature.GamePage: - struct: EnumItem - Enum.AppShellFeature.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellFeature.HomePage: - struct: EnumItem - Enum.AppShellFeature.Landing: - struct: EnumItem - Enum.AppShellFeature.More: - struct: EnumItem - Enum.AppShellFeature.None: - struct: EnumItem - Enum.AppUpdateStatus.Available: - struct: EnumItem - Enum.AppUpdateStatus.Failed: - struct: EnumItem - Enum.AppUpdateStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppUpdateStatus.NotAvailable: - struct: EnumItem - Enum.AppUpdateStatus.NotSupported: - struct: EnumItem - Enum.AppUpdateStatus.Unknown: - struct: EnumItem - Enum.ApplyStrokeMode.Border: - struct: EnumItem - Enum.ApplyStrokeMode.Contextual: - struct: EnumItem - Enum.ApplyStrokeMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AspectType.FitWithinMaxSize: - struct: EnumItem - Enum.AspectType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AspectType.ScaleWithParentSize: - struct: EnumItem - Enum.AssetFetchStatus.Failure: - struct: EnumItem - Enum.AssetFetchStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AssetFetchStatus.Loading: - struct: EnumItem - Enum.AssetFetchStatus.None: - struct: EnumItem - Enum.AssetFetchStatus.Success: - struct: EnumItem - Enum.AssetFetchStatus.TimedOut: - struct: EnumItem - Enum.AssetType.Animation: - struct: EnumItem - Enum.AssetType.Audio: - struct: EnumItem - Enum.AssetType.BackAccessory: - struct: EnumItem - Enum.AssetType.Badge: - struct: EnumItem - Enum.AssetType.ClimbAnimation: - struct: EnumItem - Enum.AssetType.DeathAnimation: - struct: EnumItem - Enum.AssetType.Decal: - struct: EnumItem - Enum.AssetType.DressSkirtAccessory: - struct: EnumItem - Enum.AssetType.DynamicHead: - struct: EnumItem - Enum.AssetType.EarAccessory: - struct: EnumItem - Enum.AssetType.EmoteAnimation: - struct: EnumItem - Enum.AssetType.EyeAccessory: - struct: EnumItem - Enum.AssetType.EyebrowAccessory: - struct: EnumItem - Enum.AssetType.EyelashAccessory: - struct: EnumItem - Enum.AssetType.Face: - struct: EnumItem - Enum.AssetType.FaceAccessory: - struct: EnumItem - Enum.AssetType.FallAnimation: - struct: EnumItem - Enum.AssetType.FontFamily: - struct: EnumItem - Enum.AssetType.FrontAccessory: - struct: EnumItem - Enum.AssetType.GamePass: - struct: EnumItem - Enum.AssetType.Gear: - struct: EnumItem - Enum.AssetType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AssetType.HairAccessory: - struct: EnumItem - Enum.AssetType.Hat: - struct: EnumItem - Enum.AssetType.Head: - struct: EnumItem - Enum.AssetType.IdleAnimation: - struct: EnumItem - Enum.AssetType.Image: - struct: EnumItem - Enum.AssetType.JacketAccessory: - struct: EnumItem - Enum.AssetType.JumpAnimation: - struct: EnumItem - Enum.AssetType.LeftArm: - struct: EnumItem - Enum.AssetType.LeftLeg: - struct: EnumItem - Enum.AssetType.LeftShoeAccessory: - struct: EnumItem - Enum.AssetType.Lua: - struct: EnumItem - Enum.AssetType.Mesh: - struct: EnumItem - Enum.AssetType.MeshPart: - struct: EnumItem - Enum.AssetType.Model: - struct: EnumItem - Enum.AssetType.MoodAnimation: - struct: EnumItem - Enum.AssetType.NeckAccessory: - struct: EnumItem - Enum.AssetType.Package: - struct: EnumItem - Enum.AssetType.Pants: - struct: EnumItem - Enum.AssetType.PantsAccessory: - struct: EnumItem - Enum.AssetType.Place: - struct: EnumItem - Enum.AssetType.Plugin: - struct: EnumItem - Enum.AssetType.PoseAnimation: - struct: EnumItem - Enum.AssetType.RightArm: - struct: EnumItem - Enum.AssetType.RightLeg: - struct: EnumItem - Enum.AssetType.RightShoeAccessory: - struct: EnumItem - Enum.AssetType.RunAnimation: - struct: EnumItem - Enum.AssetType.Shirt: - struct: EnumItem - Enum.AssetType.ShirtAccessory: - struct: EnumItem - Enum.AssetType.ShortsAccessory: - struct: EnumItem - Enum.AssetType.ShoulderAccessory: - struct: EnumItem - Enum.AssetType.SweaterAccessory: - struct: EnumItem - Enum.AssetType.SwimAnimation: - struct: EnumItem - Enum.AssetType.TShirt: - struct: EnumItem - Enum.AssetType.TShirtAccessory: - struct: EnumItem - Enum.AssetType.TeeShirt: - struct: EnumItem - deprecated: - message: Enum.AssetType.TeeShirt was replaced with Enum.AssetType.TShirt - replace: - - Enum.AssetType.TShirt - Enum.AssetType.TeeShirtAccessory: - struct: EnumItem - deprecated: - message: Enum.AssetType.TeeShirtAccessory was replaced with Enum.AssetType.TShirtAccessory - replace: - - Enum.AssetType.TShirtAccessory - Enum.AssetType.Torso: - struct: EnumItem - Enum.AssetType.Video: - struct: EnumItem - Enum.AssetType.WaistAccessory: - struct: EnumItem - Enum.AssetType.WalkAnimation: - struct: EnumItem - Enum.AssetTypeVerification.Always: - struct: EnumItem - Enum.AssetTypeVerification.ClientOnly: - struct: EnumItem - Enum.AssetTypeVerification.Default: - struct: EnumItem - Enum.AssetTypeVerification.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AudioSubType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AudioSubType.Music: - struct: EnumItem - Enum.AudioSubType.SoundEffect: - struct: EnumItem - Enum.AutoIndentRule.Absolute: - struct: EnumItem - Enum.AutoIndentRule.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AutoIndentRule.Off: - struct: EnumItem - Enum.AutoIndentRule.Relative: - struct: EnumItem - Enum.AutomaticSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AutomaticSize.None: - struct: EnumItem - Enum.AutomaticSize.X: - struct: EnumItem - Enum.AutomaticSize.XY: - struct: EnumItem - Enum.AutomaticSize.Y: - struct: EnumItem - Enum.AvatarAssetType.BackAccessory: - struct: EnumItem - Enum.AvatarAssetType.ClimbAnimation: - struct: EnumItem - Enum.AvatarAssetType.DressSkirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.DynamicHead: - struct: EnumItem - Enum.AvatarAssetType.EmoteAnimation: - struct: EnumItem - Enum.AvatarAssetType.EyebrowAccessory: - struct: EnumItem - Enum.AvatarAssetType.EyelashAccessory: - struct: EnumItem - Enum.AvatarAssetType.Face: - struct: EnumItem - Enum.AvatarAssetType.FaceAccessory: - struct: EnumItem - Enum.AvatarAssetType.FallAnimation: - struct: EnumItem - Enum.AvatarAssetType.FrontAccessory: - struct: EnumItem - Enum.AvatarAssetType.Gear: - struct: EnumItem - Enum.AvatarAssetType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarAssetType.HairAccessory: - struct: EnumItem - Enum.AvatarAssetType.Hat: - struct: EnumItem - Enum.AvatarAssetType.Head: - struct: EnumItem - Enum.AvatarAssetType.IdleAnimation: - struct: EnumItem - Enum.AvatarAssetType.JacketAccessory: - struct: EnumItem - Enum.AvatarAssetType.JumpAnimation: - struct: EnumItem - Enum.AvatarAssetType.LeftArm: - struct: EnumItem - Enum.AvatarAssetType.LeftLeg: - struct: EnumItem - Enum.AvatarAssetType.LeftShoeAccessory: - struct: EnumItem - Enum.AvatarAssetType.MoodAnimation: - struct: EnumItem - Enum.AvatarAssetType.NeckAccessory: - struct: EnumItem - Enum.AvatarAssetType.Pants: - struct: EnumItem - Enum.AvatarAssetType.PantsAccessory: - struct: EnumItem - Enum.AvatarAssetType.RightArm: - struct: EnumItem - Enum.AvatarAssetType.RightLeg: - struct: EnumItem - Enum.AvatarAssetType.RightShoeAccessory: - struct: EnumItem - Enum.AvatarAssetType.RunAnimation: - struct: EnumItem - Enum.AvatarAssetType.Shirt: - struct: EnumItem - Enum.AvatarAssetType.ShirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.ShortsAccessory: - struct: EnumItem - Enum.AvatarAssetType.ShoulderAccessory: - struct: EnumItem - Enum.AvatarAssetType.SweaterAccessory: - struct: EnumItem - Enum.AvatarAssetType.SwimAnimation: - struct: EnumItem - Enum.AvatarAssetType.TShirt: - struct: EnumItem - Enum.AvatarAssetType.TShirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.TeeShirtAccessory: - struct: EnumItem - deprecated: - message: Enum.AvatarAssetType.TeeShirtAccessory was replaced with Enum.AvatarAssetType.TShirtAccessory - replace: - - Enum.AvatarAssetType.TShirtAccessory - Enum.AvatarAssetType.Torso: - struct: EnumItem - Enum.AvatarAssetType.WaistAccessory: - struct: EnumItem - Enum.AvatarAssetType.WalkAnimation: - struct: EnumItem - Enum.AvatarContextMenuOption.Chat: - struct: EnumItem - Enum.AvatarContextMenuOption.Emote: - struct: EnumItem - Enum.AvatarContextMenuOption.Friend: - struct: EnumItem - Enum.AvatarContextMenuOption.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarContextMenuOption.InspectMenu: - struct: EnumItem - Enum.AvatarItemType.Asset: - struct: EnumItem - Enum.AvatarItemType.Bundle: - struct: EnumItem - Enum.AvatarItemType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarPromptResult.Failed: - struct: EnumItem - Enum.AvatarPromptResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarPromptResult.PermissionDenied: - struct: EnumItem - Enum.AvatarPromptResult.Success: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.Closeup: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.FullBody: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Axis.Back: - struct: EnumItem - deprecated: - message: Enum.Axis.Back was replaced with Enum.Axis.Z - replace: - - Enum.Axis.Z - Enum.Axis.Bottom: - struct: EnumItem - deprecated: - message: Enum.Axis.Bottom was replaced with Enum.Axis.Y - replace: - - Enum.Axis.Y - Enum.Axis.Front: - struct: EnumItem - deprecated: - message: Enum.Axis.Front was replaced with Enum.Axis.Z - replace: - - Enum.Axis.Z - Enum.Axis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Axis.Left: - struct: EnumItem - deprecated: - message: Enum.Axis.Left was replaced with Enum.Axis.X - replace: - - Enum.Axis.X - Enum.Axis.Right: - struct: EnumItem - deprecated: - message: Enum.Axis.Right was replaced with Enum.Axis.X - replace: - - Enum.Axis.X - Enum.Axis.Top: - struct: EnumItem - deprecated: - message: Enum.Axis.Top was replaced with Enum.Axis.Y - replace: - - Enum.Axis.Y - Enum.Axis.X: - struct: EnumItem - Enum.Axis.Y: - struct: EnumItem - Enum.Axis.Z: - struct: EnumItem - Enum.BinType.Clone: - struct: EnumItem - Enum.BinType.GameTool: - struct: EnumItem - Enum.BinType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BinType.Grab: - struct: EnumItem - Enum.BinType.Hammer: - struct: EnumItem - Enum.BinType.Laser: - struct: EnumItem - deprecated: - message: Enum.BinType.Laser was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BinType.Rocket: - struct: EnumItem - deprecated: - message: Enum.BinType.Rocket was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BinType.Script: - struct: EnumItem - Enum.BinType.Slingshot: - struct: EnumItem - deprecated: - message: Enum.BinType.Slingshot was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BodyPart.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BodyPart.Head: - struct: EnumItem - Enum.BodyPart.LeftArm: - struct: EnumItem - Enum.BodyPart.LeftLeg: - struct: EnumItem - Enum.BodyPart.RightArm: - struct: EnumItem - Enum.BodyPart.RightLeg: - struct: EnumItem - Enum.BodyPart.Torso: - struct: EnumItem - Enum.BodyPartR15.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BodyPartR15.Head: - struct: EnumItem - Enum.BodyPartR15.LeftFoot: - struct: EnumItem - Enum.BodyPartR15.LeftHand: - struct: EnumItem - Enum.BodyPartR15.LeftLowerArm: - struct: EnumItem - Enum.BodyPartR15.LeftLowerLeg: - struct: EnumItem - Enum.BodyPartR15.LeftUpperArm: - struct: EnumItem - Enum.BodyPartR15.LeftUpperLeg: - struct: EnumItem - Enum.BodyPartR15.LowerTorso: - struct: EnumItem - Enum.BodyPartR15.RightFoot: - struct: EnumItem - Enum.BodyPartR15.RightHand: - struct: EnumItem - Enum.BodyPartR15.RightLowerArm: - struct: EnumItem - Enum.BodyPartR15.RightLowerLeg: - struct: EnumItem - Enum.BodyPartR15.RightUpperArm: - struct: EnumItem - Enum.BodyPartR15.RightUpperLeg: - struct: EnumItem - Enum.BodyPartR15.RootPart: - struct: EnumItem - Enum.BodyPartR15.Unknown: - struct: EnumItem - Enum.BodyPartR15.UpperTorso: - struct: EnumItem - Enum.BorderMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BorderMode.Inset: - struct: EnumItem - Enum.BorderMode.Middle: - struct: EnumItem - Enum.BorderMode.Outline: - struct: EnumItem - Enum.BreakReason.Error: - struct: EnumItem - Enum.BreakReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BreakReason.Other: - struct: EnumItem - Enum.BreakReason.SpecialBreakpoint: - struct: EnumItem - Enum.BreakReason.UserBreakpoint: - struct: EnumItem - Enum.BreakpointRemoveReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BreakpointRemoveReason.Requested: - struct: EnumItem - Enum.BreakpointRemoveReason.ScriptChanged: - struct: EnumItem - Enum.BreakpointRemoveReason.ScriptRemoved: - struct: EnumItem - Enum.BulkMoveMode.FireAllEvents: - struct: EnumItem - Enum.BulkMoveMode.FireCFrameChanged: - struct: EnumItem - Enum.BulkMoveMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BundleType.Animations: - struct: EnumItem - Enum.BundleType.BodyParts: - struct: EnumItem - Enum.BundleType.DynamicHead: - struct: EnumItem - Enum.BundleType.DynamicHeadAvatar: - struct: EnumItem - Enum.BundleType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BundleType.Shoes: - struct: EnumItem - Enum.Button.Dismount: - struct: EnumItem - Enum.Button.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Button.Jump: - struct: EnumItem - Enum.ButtonStyle.Custom: - struct: EnumItem - Enum.ButtonStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ButtonStyle.RobloxButton: - struct: EnumItem - Enum.ButtonStyle.RobloxButtonDefault: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundButton: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundDefaultButton: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundDropdownButton: - struct: EnumItem - Enum.CageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CageType.Inner: - struct: EnumItem - Enum.CageType.Outer: - struct: EnumItem - Enum.CameraMode.Classic: - struct: EnumItem - Enum.CameraMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraMode.LockFirstPerson: - struct: EnumItem - Enum.CameraPanMode.Classic: - struct: EnumItem - Enum.CameraPanMode.EdgeBump: - struct: EnumItem - Enum.CameraPanMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraType.Attach: - struct: EnumItem - Enum.CameraType.Custom: - struct: EnumItem - Enum.CameraType.Fixed: - struct: EnumItem - Enum.CameraType.Follow: - struct: EnumItem - Enum.CameraType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraType.Orbital: - struct: EnumItem - Enum.CameraType.Scriptable: - struct: EnumItem - Enum.CameraType.Track: - struct: EnumItem - Enum.CameraType.Watch: - struct: EnumItem - Enum.CatalogCategoryFilter.Collectibles: - struct: EnumItem - Enum.CatalogCategoryFilter.CommunityCreations: - struct: EnumItem - Enum.CatalogCategoryFilter.Featured: - struct: EnumItem - Enum.CatalogCategoryFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogCategoryFilter.None: - struct: EnumItem - Enum.CatalogCategoryFilter.Premium: - struct: EnumItem - Enum.CatalogCategoryFilter.Recommended: - struct: EnumItem - Enum.CatalogSortAggregation.AllTime: - struct: EnumItem - Enum.CatalogSortAggregation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogSortAggregation.Past12Hours: - struct: EnumItem - Enum.CatalogSortAggregation.Past3Days: - struct: EnumItem - Enum.CatalogSortAggregation.PastDay: - struct: EnumItem - Enum.CatalogSortAggregation.PastMonth: - struct: EnumItem - Enum.CatalogSortAggregation.PastWeek: - struct: EnumItem - Enum.CatalogSortType.Bestselling: - struct: EnumItem - Enum.CatalogSortType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogSortType.MostFavorited: - struct: EnumItem - Enum.CatalogSortType.PriceHighToLow: - struct: EnumItem - Enum.CatalogSortType.PriceLowToHigh: - struct: EnumItem - Enum.CatalogSortType.RecentlyCreated: - struct: EnumItem - Enum.CatalogSortType.RecentlyUpdated: - struct: EnumItem - deprecated: - message: Enum.CatalogSortType.RecentlyUpdated was replaced with Enum.CatalogSortType.RecentlyCreated - replace: - - Enum.CatalogSortType.RecentlyCreated - Enum.CatalogSortType.Relevance: - struct: EnumItem - Enum.CellBlock.CornerWedge: - struct: EnumItem - Enum.CellBlock.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellBlock.HorizontalWedge: - struct: EnumItem - Enum.CellBlock.InverseCornerWedge: - struct: EnumItem - Enum.CellBlock.Solid: - struct: EnumItem - Enum.CellBlock.VerticalWedge: - struct: EnumItem - Enum.CellMaterial.Aluminum: - struct: EnumItem - Enum.CellMaterial.Asphalt: - struct: EnumItem - Enum.CellMaterial.BluePlastic: - struct: EnumItem - Enum.CellMaterial.Brick: - struct: EnumItem - Enum.CellMaterial.Cement: - struct: EnumItem - Enum.CellMaterial.CinderBlock: - struct: EnumItem - Enum.CellMaterial.Empty: - struct: EnumItem - Enum.CellMaterial.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellMaterial.Gold: - struct: EnumItem - Enum.CellMaterial.Granite: - struct: EnumItem - Enum.CellMaterial.Grass: - struct: EnumItem - Enum.CellMaterial.Gravel: - struct: EnumItem - Enum.CellMaterial.Iron: - struct: EnumItem - Enum.CellMaterial.MossyStone: - struct: EnumItem - Enum.CellMaterial.RedPlastic: - struct: EnumItem - Enum.CellMaterial.Sand: - struct: EnumItem - Enum.CellMaterial.Water: - struct: EnumItem - Enum.CellMaterial.WoodLog: - struct: EnumItem - Enum.CellMaterial.WoodPlank: - struct: EnumItem - Enum.CellOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellOrientation.NegX: - struct: EnumItem - Enum.CellOrientation.NegZ: - struct: EnumItem - Enum.CellOrientation.X: - struct: EnumItem - Enum.CellOrientation.Z: - struct: EnumItem - Enum.CenterDialogType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CenterDialogType.ModalDialog: - struct: EnumItem - Enum.CenterDialogType.PlayerInitiatedDialog: - struct: EnumItem - Enum.CenterDialogType.QuitDialog: - struct: EnumItem - Enum.CenterDialogType.UnsolicitedDialog: - struct: EnumItem - Enum.ChatCallbackType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatCallbackType.OnClientFormattingMessage: - struct: EnumItem - Enum.ChatCallbackType.OnClientSendingMessage: - struct: EnumItem - Enum.ChatCallbackType.OnCreatingChatWindow: - struct: EnumItem - Enum.ChatCallbackType.OnServerReceivingMessage: - struct: EnumItem - Enum.ChatColor.Blue: - struct: EnumItem - Enum.ChatColor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatColor.Green: - struct: EnumItem - Enum.ChatColor.Red: - struct: EnumItem - Enum.ChatColor.White: - struct: EnumItem - Enum.ChatMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatMode.Menu: - struct: EnumItem - Enum.ChatMode.TextAndMenu: - struct: EnumItem - Enum.ChatPrivacyMode.AllUsers: - struct: EnumItem - Enum.ChatPrivacyMode.Friends: - struct: EnumItem - Enum.ChatPrivacyMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatPrivacyMode.NoOne: - struct: EnumItem - Enum.ChatStyle.Bubble: - struct: EnumItem - Enum.ChatStyle.Classic: - struct: EnumItem - Enum.ChatStyle.ClassicAndBubble: - struct: EnumItem - Enum.ChatStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatVersion.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatVersion.LegacyChatService: - struct: EnumItem - Enum.ChatVersion.TextChatService: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Default: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Disabled: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Enabled: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CollisionFidelity.Box: - struct: EnumItem - Enum.CollisionFidelity.Default: - struct: EnumItem - Enum.CollisionFidelity.DynamicPreciseConvexDecomposition: - struct: EnumItem - Enum.CollisionFidelity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CollisionFidelity.Hull: - struct: EnumItem - Enum.CollisionFidelity.PreciseConvexDecomposition: - struct: EnumItem - Enum.CommandPermission.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CommandPermission.LocalUser: - struct: EnumItem - Enum.CommandPermission.Plugin: - struct: EnumItem - Enum.CompletionItemKind.Class: - struct: EnumItem - Enum.CompletionItemKind.Color: - struct: EnumItem - Enum.CompletionItemKind.Constant: - struct: EnumItem - Enum.CompletionItemKind.Constructor: - struct: EnumItem - Enum.CompletionItemKind.Enum: - struct: EnumItem - Enum.CompletionItemKind.EnumMember: - struct: EnumItem - Enum.CompletionItemKind.Event: - struct: EnumItem - Enum.CompletionItemKind.Field: - struct: EnumItem - Enum.CompletionItemKind.File: - struct: EnumItem - Enum.CompletionItemKind.Folder: - struct: EnumItem - Enum.CompletionItemKind.Function: - struct: EnumItem - Enum.CompletionItemKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionItemKind.Interface: - struct: EnumItem - Enum.CompletionItemKind.Keyword: - struct: EnumItem - Enum.CompletionItemKind.Method: - struct: EnumItem - Enum.CompletionItemKind.Module: - struct: EnumItem - Enum.CompletionItemKind.Operator: - struct: EnumItem - Enum.CompletionItemKind.Property: - struct: EnumItem - Enum.CompletionItemKind.Reference: - struct: EnumItem - Enum.CompletionItemKind.Snippet: - struct: EnumItem - Enum.CompletionItemKind.Struct: - struct: EnumItem - Enum.CompletionItemKind.Text: - struct: EnumItem - Enum.CompletionItemKind.TypeParameter: - struct: EnumItem - Enum.CompletionItemKind.Unit: - struct: EnumItem - Enum.CompletionItemKind.Value: - struct: EnumItem - Enum.CompletionItemKind.Variable: - struct: EnumItem - Enum.CompletionItemTag.AddParens: - struct: EnumItem - Enum.CompletionItemTag.ClientServerBoundaryViolation: - struct: EnumItem - Enum.CompletionItemTag.CommandLinePermissions: - struct: EnumItem - Enum.CompletionItemTag.Deprecated: - struct: EnumItem - Enum.CompletionItemTag.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionItemTag.IncorrectIndexType: - struct: EnumItem - Enum.CompletionItemTag.PluginPermissions: - struct: EnumItem - Enum.CompletionItemTag.PutCursorInParens: - struct: EnumItem - Enum.CompletionItemTag.RobloxPermissions: - struct: EnumItem - Enum.CompletionItemTag.TypeCorrect: - struct: EnumItem - Enum.CompletionTriggerKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionTriggerKind.Invoked: - struct: EnumItem - Enum.CompletionTriggerKind.TriggerCharacter: - struct: EnumItem - Enum.CompletionTriggerKind.TriggerForIncompleteCompletions: - struct: EnumItem - Enum.ComputerCameraMovementMode.CameraToggle: - struct: EnumItem - Enum.ComputerCameraMovementMode.Classic: - struct: EnumItem - Enum.ComputerCameraMovementMode.Default: - struct: EnumItem - Enum.ComputerCameraMovementMode.Follow: - struct: EnumItem - Enum.ComputerCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ComputerCameraMovementMode.Orbital: - struct: EnumItem - Enum.ComputerMovementMode.ClickToMove: - struct: EnumItem - Enum.ComputerMovementMode.Default: - struct: EnumItem - Enum.ComputerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ComputerMovementMode.KeyboardMouse: - struct: EnumItem - Enum.ConnectionError.DisconnectBadhash: - struct: EnumItem - Enum.ConnectionError.DisconnectBlockedIP: - struct: EnumItem - Enum.ConnectionError.DisconnectBySecurityPolicy: - struct: EnumItem - Enum.ConnectionError.DisconnectClientFailure: - struct: EnumItem - Enum.ConnectionError.DisconnectClientRequest: - struct: EnumItem - Enum.ConnectionError.DisconnectCloudEditKick: - struct: EnumItem - Enum.ConnectionError.DisconnectConnectionLost: - struct: EnumItem - Enum.ConnectionError.DisconnectDevMaintenance: - struct: EnumItem - Enum.ConnectionError.DisconnectDuplicatePlayer: - struct: EnumItem - Enum.ConnectionError.DisconnectDuplicateTicket: - struct: EnumItem - Enum.ConnectionError.DisconnectErrors: - struct: EnumItem - Enum.ConnectionError.DisconnectEvicted: - struct: EnumItem - Enum.ConnectionError.DisconnectHashTimeout: - struct: EnumItem - Enum.ConnectionError.DisconnectIdle: - struct: EnumItem - Enum.ConnectionError.DisconnectIllegalTeleport: - struct: EnumItem - Enum.ConnectionError.DisconnectLuaKick: - struct: EnumItem - Enum.ConnectionError.DisconnectModeratedGame: - struct: EnumItem - Enum.ConnectionError.DisconnectNewSecurityKeyMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectOnRemoteSysStats: - struct: EnumItem - Enum.ConnectionError.DisconnectOutOfMemoryKeepPlayingLeave: - struct: EnumItem - Enum.ConnectionError.DisconnectPlayerless: - struct: EnumItem - Enum.ConnectionError.DisconnectProtocolMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectRaknetErrors: - struct: EnumItem - Enum.ConnectionError.DisconnectReceivePacketError: - struct: EnumItem - Enum.ConnectionError.DisconnectReceivePacketStreamError: - struct: EnumItem - Enum.ConnectionError.DisconnectRejoin: - struct: EnumItem - Enum.ConnectionError.DisconnectRobloxMaintenance: - struct: EnumItem - Enum.ConnectionError.DisconnectRomarkEndOfTest: - struct: EnumItem - Enum.ConnectionError.DisconnectSecurityKeyMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectSendPacketError: - struct: EnumItem - Enum.ConnectionError.DisconnectTimeout: - struct: EnumItem - Enum.ConnectionError.DisconnectWrongVersion: - struct: EnumItem - Enum.ConnectionError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ConnectionError.OK: - struct: EnumItem - Enum.ConnectionError.PlacelaunchCustomMessage: - struct: EnumItem - Enum.ConnectionError.PlacelaunchDisabled: - struct: EnumItem - Enum.ConnectionError.PlacelaunchError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchErrors: - struct: EnumItem - Enum.ConnectionError.PlacelaunchFlooded: - struct: EnumItem - Enum.ConnectionError.PlacelaunchGameEnded: - struct: EnumItem - Enum.ConnectionError.PlacelaunchGameFull: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHashException: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHashExpired: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHttpError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchOtherError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchPartyCannotFit: - struct: EnumItem - Enum.ConnectionError.PlacelaunchRestricted: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUnauthorized: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUserLeft: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUserPrivacyUnauthorized: - struct: EnumItem - Enum.ConnectionError.PlayerRemoved: - struct: EnumItem - Enum.ConnectionError.ReplicatorTimeout: - struct: EnumItem - Enum.ConnectionError.TeleportErrors: - struct: EnumItem - Enum.ConnectionError.TeleportFailure: - struct: EnumItem - Enum.ConnectionError.TeleportFlooded: - struct: EnumItem - Enum.ConnectionError.TeleportGameEnded: - struct: EnumItem - Enum.ConnectionError.TeleportGameFull: - struct: EnumItem - Enum.ConnectionError.TeleportGameNotFound: - struct: EnumItem - Enum.ConnectionError.TeleportIsTeleporting: - struct: EnumItem - Enum.ConnectionError.TeleportUnauthorized: - struct: EnumItem - Enum.ConnectionError.Unknown: - struct: EnumItem - Enum.ConnectionState.Connected: - struct: EnumItem - Enum.ConnectionState.Disconnected: - struct: EnumItem - Enum.ConnectionState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionPriority.Default: - struct: EnumItem - deprecated: - message: Enum.ContextActionPriority.Default was replaced with Enum.ContextActionPriority.Medium - replace: - - Enum.ContextActionPriority.Medium - Enum.ContextActionPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionPriority.High: - struct: EnumItem - Enum.ContextActionPriority.Low: - struct: EnumItem - Enum.ContextActionPriority.Medium: - struct: EnumItem - Enum.ContextActionResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionResult.Pass: - struct: EnumItem - Enum.ContextActionResult.Sink: - struct: EnumItem - Enum.ControlMode.Classic: - struct: EnumItem - Enum.ControlMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ControlMode.Mouse Lock Switch: - struct: EnumItem - deprecated: - message: Enum.ControlMode.Mouse Lock Switch was replaced with Enum.ControlMode.MouseLockSwitch - replace: - - Enum.ControlMode.MouseLockSwitch - Enum.ControlMode.MouseLockSwitch: - struct: EnumItem - Enum.CoreGuiType.All: - struct: EnumItem - Enum.CoreGuiType.Backpack: - struct: EnumItem - Enum.CoreGuiType.Chat: - struct: EnumItem - Enum.CoreGuiType.EmotesMenu: - struct: EnumItem - Enum.CoreGuiType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CoreGuiType.Health: - struct: EnumItem - Enum.CoreGuiType.PlayerList: - struct: EnumItem - Enum.CoreGuiType.SelfView: - struct: EnumItem - Enum.CreateOutfitFailure.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreateOutfitFailure.InvalidName: - struct: EnumItem - Enum.CreateOutfitFailure.Other: - struct: EnumItem - Enum.CreateOutfitFailure.OutfitLimitReached: - struct: EnumItem - Enum.CreatorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreatorType.Group: - struct: EnumItem - Enum.CreatorType.User: - struct: EnumItem - Enum.CreatorTypeFilter.All: - struct: EnumItem - Enum.CreatorTypeFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreatorTypeFilter.Group: - struct: EnumItem - Enum.CreatorTypeFilter.User: - struct: EnumItem - Enum.CurrencyType.Default: - struct: EnumItem - Enum.CurrencyType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CurrencyType.Robux: - struct: EnumItem - Enum.CurrencyType.Tix: - struct: EnumItem - Enum.CustomCameraMode.Classic: - struct: EnumItem - Enum.CustomCameraMode.Default: - struct: EnumItem - Enum.CustomCameraMode.Follow: - struct: EnumItem - Enum.CustomCameraMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DataStoreRequestType.GetAsync: - struct: EnumItem - Enum.DataStoreRequestType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DataStoreRequestType.GetSortedAsync: - struct: EnumItem - Enum.DataStoreRequestType.OnUpdate: - struct: EnumItem - Enum.DataStoreRequestType.SetIncrementAsync: - struct: EnumItem - Enum.DataStoreRequestType.SetIncrementSortedAsync: - struct: EnumItem - Enum.DataStoreRequestType.UpdateAsync: - struct: EnumItem - Enum.DebuggerEndReason.ClientRequest: - struct: EnumItem - Enum.DebuggerEndReason.ConfigurationFailed: - struct: EnumItem - Enum.DebuggerEndReason.Disconnected: - struct: EnumItem - Enum.DebuggerEndReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerEndReason.InvalidHost: - struct: EnumItem - Enum.DebuggerEndReason.RpcError: - struct: EnumItem - Enum.DebuggerEndReason.ServerProtocolMismatch: - struct: EnumItem - Enum.DebuggerEndReason.ServerShutdown: - struct: EnumItem - Enum.DebuggerEndReason.Timeout: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.Always: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerExceptionBreakMode.Never: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.Unhandled: - struct: EnumItem - Enum.DebuggerFrameType.C: - struct: EnumItem - Enum.DebuggerFrameType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerFrameType.Lua: - struct: EnumItem - Enum.DebuggerPauseReason.Breakpoint: - struct: EnumItem - Enum.DebuggerPauseReason.Entrypoint: - struct: EnumItem - Enum.DebuggerPauseReason.Exception: - struct: EnumItem - Enum.DebuggerPauseReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerPauseReason.Requested: - struct: EnumItem - Enum.DebuggerPauseReason.SingleStep: - struct: EnumItem - Enum.DebuggerPauseReason.Unknown: - struct: EnumItem - Enum.DebuggerStatus.ConnectionClosed: - struct: EnumItem - Enum.DebuggerStatus.ConnectionLost: - struct: EnumItem - Enum.DebuggerStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerStatus.InternalError: - struct: EnumItem - Enum.DebuggerStatus.InvalidArgument: - struct: EnumItem - Enum.DebuggerStatus.InvalidResponse: - struct: EnumItem - Enum.DebuggerStatus.InvalidState: - struct: EnumItem - Enum.DebuggerStatus.RpcError: - struct: EnumItem - Enum.DebuggerStatus.Success: - struct: EnumItem - Enum.DebuggerStatus.Timeout: - struct: EnumItem - Enum.DevCameraOcclusionMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevCameraOcclusionMode.Invisicam: - struct: EnumItem - Enum.DevCameraOcclusionMode.Zoom: - struct: EnumItem - Enum.DevComputerCameraMovementMode.CameraToggle: - struct: EnumItem - Enum.DevComputerCameraMovementMode.Classic: - struct: EnumItem - Enum.DevComputerCameraMovementMode.Follow: - struct: EnumItem - Enum.DevComputerCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevComputerCameraMovementMode.Orbital: - struct: EnumItem - Enum.DevComputerCameraMovementMode.UserChoice: - struct: EnumItem - Enum.DevComputerMovementMode.ClickToMove: - struct: EnumItem - Enum.DevComputerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevComputerMovementMode.KeyboardMouse: - struct: EnumItem - Enum.DevComputerMovementMode.Scriptable: - struct: EnumItem - Enum.DevComputerMovementMode.UserChoice: - struct: EnumItem - Enum.DevTouchCameraMovementMode.Classic: - struct: EnumItem - Enum.DevTouchCameraMovementMode.Follow: - struct: EnumItem - Enum.DevTouchCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevTouchCameraMovementMode.Orbital: - struct: EnumItem - Enum.DevTouchCameraMovementMode.UserChoice: - struct: EnumItem - Enum.DevTouchMovementMode.ClickToMove: - struct: EnumItem - Enum.DevTouchMovementMode.DPad: - struct: EnumItem - Enum.DevTouchMovementMode.DynamicThumbstick: - struct: EnumItem - Enum.DevTouchMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevTouchMovementMode.Scriptable: - struct: EnumItem - Enum.DevTouchMovementMode.Thumbpad: - struct: EnumItem - Enum.DevTouchMovementMode.Thumbstick: - struct: EnumItem - Enum.DevTouchMovementMode.UserChoice: - struct: EnumItem - Enum.DeveloperMemoryTag.Animation: - struct: EnumItem - Enum.DeveloperMemoryTag.GeometryCSG: - struct: EnumItem - Enum.DeveloperMemoryTag.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DeveloperMemoryTag.GraphicsMeshParts: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsParticles: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsParts: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsSolidModels: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsSpatialHash: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTerrain: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTexture: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTextureCharacter: - struct: EnumItem - Enum.DeveloperMemoryTag.Gui: - struct: EnumItem - Enum.DeveloperMemoryTag.HttpCache: - struct: EnumItem - Enum.DeveloperMemoryTag.Instances: - struct: EnumItem - Enum.DeveloperMemoryTag.Internal: - struct: EnumItem - Enum.DeveloperMemoryTag.LuaHeap: - struct: EnumItem - Enum.DeveloperMemoryTag.Navigation: - struct: EnumItem - Enum.DeveloperMemoryTag.PhysicsCollision: - struct: EnumItem - Enum.DeveloperMemoryTag.PhysicsParts: - struct: EnumItem - Enum.DeveloperMemoryTag.Script: - struct: EnumItem - Enum.DeveloperMemoryTag.Signals: - struct: EnumItem - Enum.DeveloperMemoryTag.Sounds: - struct: EnumItem - Enum.DeveloperMemoryTag.StreamingSounds: - struct: EnumItem - Enum.DeveloperMemoryTag.TerrainVoxels: - struct: EnumItem - Enum.DeviceType.Desktop: - struct: EnumItem - Enum.DeviceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DeviceType.Phone: - struct: EnumItem - Enum.DeviceType.Tablet: - struct: EnumItem - Enum.DeviceType.Unknown: - struct: EnumItem - Enum.DialogBehaviorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogBehaviorType.MultiplePlayers: - struct: EnumItem - Enum.DialogBehaviorType.SinglePlayer: - struct: EnumItem - Enum.DialogPurpose.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogPurpose.Help: - struct: EnumItem - Enum.DialogPurpose.Quest: - struct: EnumItem - Enum.DialogPurpose.Shop: - struct: EnumItem - Enum.DialogTone.Enemy: - struct: EnumItem - Enum.DialogTone.Friendly: - struct: EnumItem - Enum.DialogTone.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogTone.Neutral: - struct: EnumItem - Enum.DominantAxis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DominantAxis.Height: - struct: EnumItem - Enum.DominantAxis.Width: - struct: EnumItem - Enum.DraftStatusCode.DraftCommitted: - struct: EnumItem - Enum.DraftStatusCode.DraftOutdated: - struct: EnumItem - Enum.DraftStatusCode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraftStatusCode.OK: - struct: EnumItem - Enum.DraftStatusCode.ScriptRemoved: - struct: EnumItem - Enum.DraggerCoordinateSpace.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraggerCoordinateSpace.Object: - struct: EnumItem - Enum.DraggerCoordinateSpace.World: - struct: EnumItem - Enum.DraggerMovementMode.Geometric: - struct: EnumItem - Enum.DraggerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraggerMovementMode.Physical: - struct: EnumItem - Enum.EasingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EasingDirection.In: - struct: EnumItem - Enum.EasingDirection.InOut: - struct: EnumItem - Enum.EasingDirection.Out: - struct: EnumItem - Enum.EasingStyle.Back: - struct: EnumItem - Enum.EasingStyle.Bounce: - struct: EnumItem - Enum.EasingStyle.Circular: - struct: EnumItem - Enum.EasingStyle.Cubic: - struct: EnumItem - Enum.EasingStyle.Elastic: - struct: EnumItem - Enum.EasingStyle.Exponential: - struct: EnumItem - Enum.EasingStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EasingStyle.Linear: - struct: EnumItem - Enum.EasingStyle.Quad: - struct: EnumItem - Enum.EasingStyle.Quart: - struct: EnumItem - Enum.EasingStyle.Quint: - struct: EnumItem - Enum.EasingStyle.Sine: - struct: EnumItem - Enum.ElasticBehavior.Always: - struct: EnumItem - Enum.ElasticBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ElasticBehavior.Never: - struct: EnumItem - Enum.ElasticBehavior.WhenScrollable: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Always: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.DefaultAuto: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Disabled: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EnviromentalPhysicsThrottle.Skip16: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip2: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip4: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip8: - struct: EnumItem - Enum.ExperienceAuthScope.CreatorAssetsCreate: - struct: EnumItem - Enum.ExperienceAuthScope.DefaultScope: - struct: EnumItem - Enum.ExperienceAuthScope.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ExplosionType.Craters: - struct: EnumItem - Enum.ExplosionType.CratersAndDebris: - struct: EnumItem - deprecated: - message: Enum.ExplosionType.CratersAndDebris was replaced with Enum.ExplosionType.Craters - replace: - - Enum.ExplosionType.Craters - Enum.ExplosionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ExplosionType.NoCraters: - struct: EnumItem - Enum.FacialAnimationFlags.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FacialAnimationFlags.None: - struct: EnumItem - Enum.FacialAnimationFlags.Place: - struct: EnumItem - Enum.FacialAnimationFlags.PlaceServer: - struct: EnumItem - Enum.FacialAnimationFlags.Server: - struct: EnumItem - Enum.FacialAnimationStreamingState.Audio: - struct: EnumItem - Enum.FacialAnimationStreamingState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FacialAnimationStreamingState.None: - struct: EnumItem - Enum.FacialAnimationStreamingState.Place: - struct: EnumItem - Enum.FacialAnimationStreamingState.Server: - struct: EnumItem - Enum.FacialAnimationStreamingState.Video: - struct: EnumItem - Enum.FieldOfViewMode.Diagonal: - struct: EnumItem - Enum.FieldOfViewMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FieldOfViewMode.MaxAxis: - struct: EnumItem - Enum.FieldOfViewMode.Vertical: - struct: EnumItem - Enum.FillDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FillDirection.Horizontal: - struct: EnumItem - Enum.FillDirection.Vertical: - struct: EnumItem - Enum.FilterResult.Accepted: - struct: EnumItem - Enum.FilterResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FilterResult.Rejected: - struct: EnumItem - Enum.Font.AmaticSC: - struct: EnumItem - Enum.Font.Antique: - struct: EnumItem - Enum.Font.Arcade: - struct: EnumItem - Enum.Font.Arial: - struct: EnumItem - Enum.Font.ArialBold: - struct: EnumItem - Enum.Font.Bangers: - struct: EnumItem - Enum.Font.Bodoni: - struct: EnumItem - Enum.Font.Cartoon: - struct: EnumItem - Enum.Font.Code: - struct: EnumItem - Enum.Font.Creepster: - struct: EnumItem - Enum.Font.DenkOne: - struct: EnumItem - Enum.Font.Fantasy: - struct: EnumItem - Enum.Font.Fondamento: - struct: EnumItem - Enum.Font.FredokaOne: - struct: EnumItem - Enum.Font.Garamond: - struct: EnumItem - Enum.Font.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Font.Gotham: - struct: EnumItem - Enum.Font.GothamBlack: - struct: EnumItem - Enum.Font.GothamBold: - struct: EnumItem - Enum.Font.GothamMedium: - struct: EnumItem - Enum.Font.GothamSemibold: - struct: EnumItem - deprecated: - message: Enum.Font.GothamSemibold was replaced with Enum.Font.GothamMedium - replace: - - Enum.Font.GothamMedium - Enum.Font.GrenzeGotisch: - struct: EnumItem - Enum.Font.Highway: - struct: EnumItem - Enum.Font.IndieFlower: - struct: EnumItem - Enum.Font.JosefinSans: - struct: EnumItem - Enum.Font.Jura: - struct: EnumItem - Enum.Font.Kalam: - struct: EnumItem - Enum.Font.Legacy: - struct: EnumItem - Enum.Font.LuckiestGuy: - struct: EnumItem - Enum.Font.Merriweather: - struct: EnumItem - Enum.Font.Michroma: - struct: EnumItem - Enum.Font.Nunito: - struct: EnumItem - Enum.Font.Oswald: - struct: EnumItem - Enum.Font.PatrickHand: - struct: EnumItem - Enum.Font.PermanentMarker: - struct: EnumItem - Enum.Font.Roboto: - struct: EnumItem - Enum.Font.RobotoCondensed: - struct: EnumItem - Enum.Font.RobotoMono: - struct: EnumItem - Enum.Font.Sarpanch: - struct: EnumItem - Enum.Font.SciFi: - struct: EnumItem - Enum.Font.SourceSans: - struct: EnumItem - Enum.Font.SourceSansBold: - struct: EnumItem - Enum.Font.SourceSansItalic: - struct: EnumItem - Enum.Font.SourceSansLight: - struct: EnumItem - Enum.Font.SourceSansSemibold: - struct: EnumItem - Enum.Font.SpecialElite: - struct: EnumItem - Enum.Font.TitilliumWeb: - struct: EnumItem - Enum.Font.Ubuntu: - struct: EnumItem - Enum.Font.Unknown: - struct: EnumItem - Enum.FontSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontSize.Size10: - struct: EnumItem - Enum.FontSize.Size11: - struct: EnumItem - Enum.FontSize.Size12: - struct: EnumItem - Enum.FontSize.Size14: - struct: EnumItem - Enum.FontSize.Size18: - struct: EnumItem - Enum.FontSize.Size24: - struct: EnumItem - Enum.FontSize.Size28: - struct: EnumItem - Enum.FontSize.Size32: - struct: EnumItem - Enum.FontSize.Size36: - struct: EnumItem - Enum.FontSize.Size42: - struct: EnumItem - Enum.FontSize.Size48: - struct: EnumItem - Enum.FontSize.Size60: - struct: EnumItem - Enum.FontSize.Size8: - struct: EnumItem - Enum.FontSize.Size9: - struct: EnumItem - Enum.FontSize.Size96: - struct: EnumItem - Enum.FontStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontStyle.Italic: - struct: EnumItem - Enum.FontStyle.Normal: - struct: EnumItem - Enum.FontWeight.Bold: - struct: EnumItem - Enum.FontWeight.ExtraBold: - struct: EnumItem - Enum.FontWeight.ExtraLight: - struct: EnumItem - Enum.FontWeight.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontWeight.Heavy: - struct: EnumItem - Enum.FontWeight.Light: - struct: EnumItem - Enum.FontWeight.Medium: - struct: EnumItem - Enum.FontWeight.Regular: - struct: EnumItem - Enum.FontWeight.SemiBold: - struct: EnumItem - Enum.FontWeight.Thin: - struct: EnumItem - Enum.FormFactor.Block: - struct: EnumItem - deprecated: - message: Enum.FormFactor.Block was replaced with Enum.FormFactor.Brick - replace: - - Enum.FormFactor.Brick - Enum.FormFactor.Brick: - struct: EnumItem - Enum.FormFactor.Custom: - struct: EnumItem - Enum.FormFactor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FormFactor.Plate: - struct: EnumItem - Enum.FormFactor.Symmetric: - struct: EnumItem - Enum.FrameStyle.ChatBlue: - struct: EnumItem - Enum.FrameStyle.ChatGreen: - struct: EnumItem - Enum.FrameStyle.ChatRed: - struct: EnumItem - Enum.FrameStyle.Custom: - struct: EnumItem - Enum.FrameStyle.DropShadow: - struct: EnumItem - Enum.FrameStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FrameStyle.RobloxRound: - struct: EnumItem - Enum.FrameStyle.RobloxSquare: - struct: EnumItem - Enum.FramerateManagerMode.Automatic: - struct: EnumItem - Enum.FramerateManagerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FramerateManagerMode.Off: - struct: EnumItem - Enum.FramerateManagerMode.On: - struct: EnumItem - Enum.FriendRequestEvent.Accept: - struct: EnumItem - Enum.FriendRequestEvent.Deny: - struct: EnumItem - Enum.FriendRequestEvent.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FriendRequestEvent.Issue: - struct: EnumItem - Enum.FriendRequestEvent.Revoke: - struct: EnumItem - Enum.FriendStatus.Friend: - struct: EnumItem - Enum.FriendStatus.FriendRequestReceived: - struct: EnumItem - Enum.FriendStatus.FriendRequestSent: - struct: EnumItem - Enum.FriendStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FriendStatus.NotFriend: - struct: EnumItem - Enum.FriendStatus.Unknown: - struct: EnumItem - Enum.FunctionalTestResult.Error: - struct: EnumItem - Enum.FunctionalTestResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FunctionalTestResult.Passed: - struct: EnumItem - Enum.FunctionalTestResult.Warning: - struct: EnumItem - Enum.GameAvatarType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GameAvatarType.PlayerChoice: - struct: EnumItem - Enum.GameAvatarType.R15: - struct: EnumItem - Enum.GameAvatarType.R6: - struct: EnumItem - Enum.GearGenreSetting.AllGenres: - struct: EnumItem - Enum.GearGenreSetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GearGenreSetting.MatchingGenreOnly: - struct: EnumItem - Enum.GearType.BuildingTools: - struct: EnumItem - Enum.GearType.Explosives: - struct: EnumItem - Enum.GearType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GearType.MeleeWeapons: - struct: EnumItem - Enum.GearType.MusicalInstruments: - struct: EnumItem - Enum.GearType.NavigationEnhancers: - struct: EnumItem - Enum.GearType.PowerUps: - struct: EnumItem - Enum.GearType.RangedWeapons: - struct: EnumItem - Enum.GearType.SocialItems: - struct: EnumItem - Enum.GearType.Transport: - struct: EnumItem - Enum.Genre.Adventure: - struct: EnumItem - Enum.Genre.All: - struct: EnumItem - Enum.Genre.Fantasy: - struct: EnumItem - Enum.Genre.Funny: - struct: EnumItem - Enum.Genre.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Genre.Ninja: - struct: EnumItem - Enum.Genre.Pirate: - struct: EnumItem - Enum.Genre.Scary: - struct: EnumItem - Enum.Genre.SciFi: - struct: EnumItem - Enum.Genre.SkatePark: - struct: EnumItem - Enum.Genre.Sports: - struct: EnumItem - Enum.Genre.TownAndCity: - struct: EnumItem - Enum.Genre.Tutorial: - struct: EnumItem - Enum.Genre.War: - struct: EnumItem - Enum.Genre.WildWest: - struct: EnumItem - Enum.GetEnums: - args: [] - method: true - must_use: true - Enum.GraphicsMode.Automatic: - struct: EnumItem - Enum.GraphicsMode.Direct3D11: - struct: EnumItem - Enum.GraphicsMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GraphicsMode.Metal: - struct: EnumItem - Enum.GraphicsMode.NoGraphics: - struct: EnumItem - Enum.GraphicsMode.OpenGL: - struct: EnumItem - Enum.GraphicsMode.Vulkan: - struct: EnumItem - Enum.GuiType.Core: - struct: EnumItem - Enum.GuiType.Custom: - struct: EnumItem - Enum.GuiType.CustomBillboards: - struct: EnumItem - Enum.GuiType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GuiType.PlayerNameplates: - struct: EnumItem - Enum.HandlesStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HandlesStyle.Movement: - struct: EnumItem - Enum.HandlesStyle.Resize: - struct: EnumItem - Enum.HighlightDepthMode.AlwaysOnTop: - struct: EnumItem - Enum.HighlightDepthMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HighlightDepthMode.Occluded: - struct: EnumItem - Enum.HorizontalAlignment.Center: - struct: EnumItem - Enum.HorizontalAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HorizontalAlignment.Left: - struct: EnumItem - Enum.HorizontalAlignment.Right: - struct: EnumItem - Enum.HoverAnimateSpeed.Fast: - struct: EnumItem - Enum.HoverAnimateSpeed.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HoverAnimateSpeed.Medium: - struct: EnumItem - Enum.HoverAnimateSpeed.Slow: - struct: EnumItem - Enum.HoverAnimateSpeed.VeryFast: - struct: EnumItem - Enum.HoverAnimateSpeed.VerySlow: - struct: EnumItem - Enum.HttpCachePolicy.DataOnly: - struct: EnumItem - Enum.HttpCachePolicy.Default: - struct: EnumItem - Enum.HttpCachePolicy.Full: - struct: EnumItem - Enum.HttpCachePolicy.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpCachePolicy.InternalRedirectRefresh: - struct: EnumItem - Enum.HttpCachePolicy.None: - struct: EnumItem - Enum.HttpContentType.ApplicationJson: - struct: EnumItem - Enum.HttpContentType.ApplicationUrlEncoded: - struct: EnumItem - Enum.HttpContentType.ApplicationXml: - struct: EnumItem - Enum.HttpContentType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpContentType.TextPlain: - struct: EnumItem - Enum.HttpContentType.TextXml: - struct: EnumItem - Enum.HttpError.Aborted: - struct: EnumItem - Enum.HttpError.ConnectFail: - struct: EnumItem - Enum.HttpError.DnsResolve: - struct: EnumItem - Enum.HttpError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpError.InvalidRedirect: - struct: EnumItem - Enum.HttpError.InvalidUrl: - struct: EnumItem - Enum.HttpError.NetFail: - struct: EnumItem - Enum.HttpError.OK: - struct: EnumItem - Enum.HttpError.OutOfMemory: - struct: EnumItem - Enum.HttpError.SslConnectFail: - struct: EnumItem - Enum.HttpError.SslVerificationFail: - struct: EnumItem - Enum.HttpError.TimedOut: - struct: EnumItem - Enum.HttpError.TooManyRedirects: - struct: EnumItem - Enum.HttpError.Unknown: - struct: EnumItem - Enum.HttpRequestType.Analytics: - struct: EnumItem - Enum.HttpRequestType.Avatar: - struct: EnumItem - Enum.HttpRequestType.Chat: - struct: EnumItem - Enum.HttpRequestType.Default: - struct: EnumItem - Enum.HttpRequestType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpRequestType.Localization: - struct: EnumItem - Enum.HttpRequestType.MarketplaceService: - struct: EnumItem - Enum.HttpRequestType.Players: - struct: EnumItem - Enum.HumanoidCollisionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidCollisionType.InnerBox: - struct: EnumItem - Enum.HumanoidCollisionType.OuterBox: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidDisplayDistanceType.None: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.Subject: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.Viewer: - struct: EnumItem - Enum.HumanoidHealthDisplayType.AlwaysOff: - struct: EnumItem - Enum.HumanoidHealthDisplayType.AlwaysOn: - struct: EnumItem - Enum.HumanoidHealthDisplayType.DisplayWhenDamaged: - struct: EnumItem - Enum.HumanoidHealthDisplayType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidOnlySetCollisionsOnStateChange.Default: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.Disabled: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.Enabled: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidRigType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidRigType.R15: - struct: EnumItem - Enum.HumanoidRigType.R6: - struct: EnumItem - Enum.HumanoidStateMachineMode.Default: - struct: EnumItem - Enum.HumanoidStateMachineMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidStateMachineMode.Legacy: - struct: EnumItem - Enum.HumanoidStateMachineMode.LuaStateMachine: - struct: EnumItem - Enum.HumanoidStateMachineMode.NoStateMachine: - struct: EnumItem - Enum.HumanoidStateType.Climbing: - struct: EnumItem - Enum.HumanoidStateType.Dead: - struct: EnumItem - Enum.HumanoidStateType.FallingDown: - struct: EnumItem - Enum.HumanoidStateType.Flying: - struct: EnumItem - Enum.HumanoidStateType.Freefall: - struct: EnumItem - Enum.HumanoidStateType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidStateType.GettingUp: - struct: EnumItem - Enum.HumanoidStateType.Jumping: - struct: EnumItem - Enum.HumanoidStateType.Landed: - struct: EnumItem - Enum.HumanoidStateType.None: - struct: EnumItem - Enum.HumanoidStateType.Physics: - struct: EnumItem - Enum.HumanoidStateType.PlatformStanding: - struct: EnumItem - Enum.HumanoidStateType.Ragdoll: - struct: EnumItem - Enum.HumanoidStateType.Running: - struct: EnumItem - Enum.HumanoidStateType.RunningNoPhysics: - struct: EnumItem - Enum.HumanoidStateType.Seated: - struct: EnumItem - Enum.HumanoidStateType.StrafingNoPhysics: - struct: EnumItem - Enum.HumanoidStateType.Swimming: - struct: EnumItem - Enum.IKCollisionsMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IKCollisionsMode.IncludeContactedMechanisms: - struct: EnumItem - Enum.IKCollisionsMode.NoCollisions: - struct: EnumItem - Enum.IKCollisionsMode.OtherMechanismsAnchored: - struct: EnumItem - Enum.IKControlType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IKControlType.LookAt: - struct: EnumItem - Enum.IKControlType.Position: - struct: EnumItem - Enum.IKControlType.Rotation: - struct: EnumItem - Enum.IKControlType.Transform: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorConnection: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorInvalidUser: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorJsonParse: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorTimedOut: - struct: EnumItem - Enum.IXPLoadingStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IXPLoadingStatus.Initialized: - struct: EnumItem - Enum.IXPLoadingStatus.None: - struct: EnumItem - Enum.IXPLoadingStatus.Pending: - struct: EnumItem - Enum.InOut.Center: - struct: EnumItem - Enum.InOut.Edge: - struct: EnumItem - Enum.InOut.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InOut.Inset: - struct: EnumItem - Enum.InfoType.Asset: - struct: EnumItem - Enum.InfoType.Bundle: - struct: EnumItem - Enum.InfoType.GamePass: - struct: EnumItem - Enum.InfoType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InfoType.Product: - struct: EnumItem - Enum.InfoType.Subscription: - struct: EnumItem - Enum.InitialDockState.Bottom: - struct: EnumItem - Enum.InitialDockState.Float: - struct: EnumItem - Enum.InitialDockState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InitialDockState.Left: - struct: EnumItem - Enum.InitialDockState.Right: - struct: EnumItem - Enum.InitialDockState.Top: - struct: EnumItem - Enum.InputType.Action1: - struct: EnumItem - deprecated: - message: Enum.InputType.Action1 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action2: - struct: EnumItem - deprecated: - message: Enum.InputType.Action2 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action3: - struct: EnumItem - deprecated: - message: Enum.InputType.Action3 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action4: - struct: EnumItem - deprecated: - message: Enum.InputType.Action4 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action5: - struct: EnumItem - deprecated: - message: Enum.InputType.Action5 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Constant: - struct: EnumItem - Enum.InputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InputType.LeftTread: - struct: EnumItem - deprecated: - message: Enum.InputType.LeftTread was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.NoInput: - struct: EnumItem - Enum.InputType.RightTread: - struct: EnumItem - deprecated: - message: Enum.InputType.RightTread was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Sin: - struct: EnumItem - Enum.InputType.Steer: - struct: EnumItem - deprecated: - message: Enum.InputType.Steer was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Throtle: - struct: EnumItem - deprecated: - message: Enum.InputType.Throtle was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Throttle: - struct: EnumItem - deprecated: - message: Enum.InputType.Throttle was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.UpDown: - struct: EnumItem - deprecated: - message: Enum.InputType.UpDown was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InterpolationThrottlingMode.Default: - struct: EnumItem - Enum.InterpolationThrottlingMode.Disabled: - struct: EnumItem - Enum.InterpolationThrottlingMode.Enabled: - struct: EnumItem - Enum.InterpolationThrottlingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.JointCreationMode.All: - struct: EnumItem - Enum.JointCreationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.JointCreationMode.None: - struct: EnumItem - Enum.JointCreationMode.Surface: - struct: EnumItem - Enum.KeyCode.A: - struct: EnumItem - Enum.KeyCode.Ampersand: - struct: EnumItem - Enum.KeyCode.Asterisk: - struct: EnumItem - Enum.KeyCode.At: - struct: EnumItem - Enum.KeyCode.B: - struct: EnumItem - Enum.KeyCode.BackSlash: - struct: EnumItem - Enum.KeyCode.Backquote: - struct: EnumItem - Enum.KeyCode.Backspace: - struct: EnumItem - Enum.KeyCode.Break: - struct: EnumItem - Enum.KeyCode.ButtonA: - struct: EnumItem - Enum.KeyCode.ButtonB: - struct: EnumItem - Enum.KeyCode.ButtonL1: - struct: EnumItem - Enum.KeyCode.ButtonL2: - struct: EnumItem - Enum.KeyCode.ButtonL3: - struct: EnumItem - Enum.KeyCode.ButtonR1: - struct: EnumItem - Enum.KeyCode.ButtonR2: - struct: EnumItem - Enum.KeyCode.ButtonR3: - struct: EnumItem - Enum.KeyCode.ButtonSelect: - struct: EnumItem - Enum.KeyCode.ButtonStart: - struct: EnumItem - Enum.KeyCode.ButtonX: - struct: EnumItem - Enum.KeyCode.ButtonY: - struct: EnumItem - Enum.KeyCode.C: - struct: EnumItem - Enum.KeyCode.CapsLock: - struct: EnumItem - Enum.KeyCode.Caret: - struct: EnumItem - Enum.KeyCode.Clear: - struct: EnumItem - Enum.KeyCode.Colon: - struct: EnumItem - Enum.KeyCode.Comma: - struct: EnumItem - Enum.KeyCode.Compose: - struct: EnumItem - Enum.KeyCode.D: - struct: EnumItem - Enum.KeyCode.DPadDown: - struct: EnumItem - Enum.KeyCode.DPadLeft: - struct: EnumItem - Enum.KeyCode.DPadRight: - struct: EnumItem - Enum.KeyCode.DPadUp: - struct: EnumItem - Enum.KeyCode.Delete: - struct: EnumItem - Enum.KeyCode.Dollar: - struct: EnumItem - Enum.KeyCode.Down: - struct: EnumItem - Enum.KeyCode.E: - struct: EnumItem - Enum.KeyCode.Eight: - struct: EnumItem - Enum.KeyCode.End: - struct: EnumItem - Enum.KeyCode.Equals: - struct: EnumItem - Enum.KeyCode.Escape: - struct: EnumItem - Enum.KeyCode.Euro: - struct: EnumItem - Enum.KeyCode.F: - struct: EnumItem - Enum.KeyCode.F1: - struct: EnumItem - Enum.KeyCode.F10: - struct: EnumItem - Enum.KeyCode.F11: - struct: EnumItem - Enum.KeyCode.F12: - struct: EnumItem - Enum.KeyCode.F13: - struct: EnumItem - Enum.KeyCode.F14: - struct: EnumItem - Enum.KeyCode.F15: - struct: EnumItem - Enum.KeyCode.F2: - struct: EnumItem - Enum.KeyCode.F3: - struct: EnumItem - Enum.KeyCode.F4: - struct: EnumItem - Enum.KeyCode.F5: - struct: EnumItem - Enum.KeyCode.F6: - struct: EnumItem - Enum.KeyCode.F7: - struct: EnumItem - Enum.KeyCode.F8: - struct: EnumItem - Enum.KeyCode.F9: - struct: EnumItem - Enum.KeyCode.Five: - struct: EnumItem - Enum.KeyCode.Four: - struct: EnumItem - Enum.KeyCode.G: - struct: EnumItem - Enum.KeyCode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeyCode.GreaterThan: - struct: EnumItem - Enum.KeyCode.H: - struct: EnumItem - Enum.KeyCode.Hash: - struct: EnumItem - Enum.KeyCode.Help: - struct: EnumItem - Enum.KeyCode.Home: - struct: EnumItem - Enum.KeyCode.I: - struct: EnumItem - Enum.KeyCode.Insert: - struct: EnumItem - Enum.KeyCode.J: - struct: EnumItem - Enum.KeyCode.K: - struct: EnumItem - Enum.KeyCode.KeypadDivide: - struct: EnumItem - Enum.KeyCode.KeypadEight: - struct: EnumItem - Enum.KeyCode.KeypadEnter: - struct: EnumItem - Enum.KeyCode.KeypadEquals: - struct: EnumItem - Enum.KeyCode.KeypadFive: - struct: EnumItem - Enum.KeyCode.KeypadFour: - struct: EnumItem - Enum.KeyCode.KeypadMinus: - struct: EnumItem - Enum.KeyCode.KeypadMultiply: - struct: EnumItem - Enum.KeyCode.KeypadNine: - struct: EnumItem - Enum.KeyCode.KeypadOne: - struct: EnumItem - Enum.KeyCode.KeypadPeriod: - struct: EnumItem - Enum.KeyCode.KeypadPlus: - struct: EnumItem - Enum.KeyCode.KeypadSeven: - struct: EnumItem - Enum.KeyCode.KeypadSix: - struct: EnumItem - Enum.KeyCode.KeypadThree: - struct: EnumItem - Enum.KeyCode.KeypadTwo: - struct: EnumItem - Enum.KeyCode.KeypadZero: - struct: EnumItem - Enum.KeyCode.L: - struct: EnumItem - Enum.KeyCode.Left: - struct: EnumItem - Enum.KeyCode.LeftAlt: - struct: EnumItem - Enum.KeyCode.LeftBracket: - struct: EnumItem - Enum.KeyCode.LeftControl: - struct: EnumItem - Enum.KeyCode.LeftCurly: - struct: EnumItem - Enum.KeyCode.LeftMeta: - struct: EnumItem - Enum.KeyCode.LeftParenthesis: - struct: EnumItem - Enum.KeyCode.LeftShift: - struct: EnumItem - Enum.KeyCode.LeftSuper: - struct: EnumItem - Enum.KeyCode.LessThan: - struct: EnumItem - Enum.KeyCode.M: - struct: EnumItem - Enum.KeyCode.Menu: - struct: EnumItem - Enum.KeyCode.Minus: - struct: EnumItem - Enum.KeyCode.Mode: - struct: EnumItem - Enum.KeyCode.N: - struct: EnumItem - Enum.KeyCode.Nine: - struct: EnumItem - Enum.KeyCode.NumLock: - struct: EnumItem - Enum.KeyCode.O: - struct: EnumItem - Enum.KeyCode.One: - struct: EnumItem - Enum.KeyCode.P: - struct: EnumItem - Enum.KeyCode.PageDown: - struct: EnumItem - Enum.KeyCode.PageUp: - struct: EnumItem - Enum.KeyCode.Pause: - struct: EnumItem - Enum.KeyCode.Percent: - struct: EnumItem - Enum.KeyCode.Period: - struct: EnumItem - Enum.KeyCode.Pipe: - struct: EnumItem - Enum.KeyCode.Plus: - struct: EnumItem - Enum.KeyCode.Power: - struct: EnumItem - Enum.KeyCode.Print: - struct: EnumItem - Enum.KeyCode.Q: - struct: EnumItem - Enum.KeyCode.Question: - struct: EnumItem - Enum.KeyCode.Quote: - struct: EnumItem - Enum.KeyCode.QuotedDouble: - struct: EnumItem - Enum.KeyCode.R: - struct: EnumItem - Enum.KeyCode.Return: - struct: EnumItem - Enum.KeyCode.Right: - struct: EnumItem - Enum.KeyCode.RightAlt: - struct: EnumItem - Enum.KeyCode.RightBracket: - struct: EnumItem - Enum.KeyCode.RightControl: - struct: EnumItem - Enum.KeyCode.RightCurly: - struct: EnumItem - Enum.KeyCode.RightMeta: - struct: EnumItem - Enum.KeyCode.RightParenthesis: - struct: EnumItem - Enum.KeyCode.RightShift: - struct: EnumItem - Enum.KeyCode.RightSuper: - struct: EnumItem - Enum.KeyCode.S: - struct: EnumItem - Enum.KeyCode.ScrollLock: - struct: EnumItem - Enum.KeyCode.Semicolon: - struct: EnumItem - Enum.KeyCode.Seven: - struct: EnumItem - Enum.KeyCode.Six: - struct: EnumItem - Enum.KeyCode.Slash: - struct: EnumItem - Enum.KeyCode.Space: - struct: EnumItem - Enum.KeyCode.SysReq: - struct: EnumItem - Enum.KeyCode.T: - struct: EnumItem - Enum.KeyCode.Tab: - struct: EnumItem - Enum.KeyCode.Three: - struct: EnumItem - Enum.KeyCode.Thumbstick1: - struct: EnumItem - Enum.KeyCode.Thumbstick2: - struct: EnumItem - Enum.KeyCode.Tilde: - struct: EnumItem - Enum.KeyCode.Two: - struct: EnumItem - Enum.KeyCode.U: - struct: EnumItem - Enum.KeyCode.Underscore: - struct: EnumItem - Enum.KeyCode.Undo: - struct: EnumItem - Enum.KeyCode.Unknown: - struct: EnumItem - Enum.KeyCode.Up: - struct: EnumItem - Enum.KeyCode.V: - struct: EnumItem - Enum.KeyCode.W: - struct: EnumItem - Enum.KeyCode.World0: - struct: EnumItem - Enum.KeyCode.World1: - struct: EnumItem - Enum.KeyCode.World10: - struct: EnumItem - Enum.KeyCode.World11: - struct: EnumItem - Enum.KeyCode.World12: - struct: EnumItem - Enum.KeyCode.World13: - struct: EnumItem - Enum.KeyCode.World14: - struct: EnumItem - Enum.KeyCode.World15: - struct: EnumItem - Enum.KeyCode.World16: - struct: EnumItem - Enum.KeyCode.World17: - struct: EnumItem - Enum.KeyCode.World18: - struct: EnumItem - Enum.KeyCode.World19: - struct: EnumItem - Enum.KeyCode.World2: - struct: EnumItem - Enum.KeyCode.World20: - struct: EnumItem - Enum.KeyCode.World21: - struct: EnumItem - Enum.KeyCode.World22: - struct: EnumItem - Enum.KeyCode.World23: - struct: EnumItem - Enum.KeyCode.World24: - struct: EnumItem - Enum.KeyCode.World25: - struct: EnumItem - Enum.KeyCode.World26: - struct: EnumItem - Enum.KeyCode.World27: - struct: EnumItem - Enum.KeyCode.World28: - struct: EnumItem - Enum.KeyCode.World29: - struct: EnumItem - Enum.KeyCode.World3: - struct: EnumItem - Enum.KeyCode.World30: - struct: EnumItem - Enum.KeyCode.World31: - struct: EnumItem - Enum.KeyCode.World32: - struct: EnumItem - Enum.KeyCode.World33: - struct: EnumItem - Enum.KeyCode.World34: - struct: EnumItem - Enum.KeyCode.World35: - struct: EnumItem - Enum.KeyCode.World36: - struct: EnumItem - Enum.KeyCode.World37: - struct: EnumItem - Enum.KeyCode.World38: - struct: EnumItem - Enum.KeyCode.World39: - struct: EnumItem - Enum.KeyCode.World4: - struct: EnumItem - Enum.KeyCode.World40: - struct: EnumItem - Enum.KeyCode.World41: - struct: EnumItem - Enum.KeyCode.World42: - struct: EnumItem - Enum.KeyCode.World43: - struct: EnumItem - Enum.KeyCode.World44: - struct: EnumItem - Enum.KeyCode.World45: - struct: EnumItem - Enum.KeyCode.World46: - struct: EnumItem - Enum.KeyCode.World47: - struct: EnumItem - Enum.KeyCode.World48: - struct: EnumItem - Enum.KeyCode.World49: - struct: EnumItem - Enum.KeyCode.World5: - struct: EnumItem - Enum.KeyCode.World50: - struct: EnumItem - Enum.KeyCode.World51: - struct: EnumItem - Enum.KeyCode.World52: - struct: EnumItem - Enum.KeyCode.World53: - struct: EnumItem - Enum.KeyCode.World54: - struct: EnumItem - Enum.KeyCode.World55: - struct: EnumItem - Enum.KeyCode.World56: - struct: EnumItem - Enum.KeyCode.World57: - struct: EnumItem - Enum.KeyCode.World58: - struct: EnumItem - Enum.KeyCode.World59: - struct: EnumItem - Enum.KeyCode.World6: - struct: EnumItem - Enum.KeyCode.World60: - struct: EnumItem - Enum.KeyCode.World61: - struct: EnumItem - Enum.KeyCode.World62: - struct: EnumItem - Enum.KeyCode.World63: - struct: EnumItem - Enum.KeyCode.World64: - struct: EnumItem - Enum.KeyCode.World65: - struct: EnumItem - Enum.KeyCode.World66: - struct: EnumItem - Enum.KeyCode.World67: - struct: EnumItem - Enum.KeyCode.World68: - struct: EnumItem - Enum.KeyCode.World69: - struct: EnumItem - Enum.KeyCode.World7: - struct: EnumItem - Enum.KeyCode.World70: - struct: EnumItem - Enum.KeyCode.World71: - struct: EnumItem - Enum.KeyCode.World72: - struct: EnumItem - Enum.KeyCode.World73: - struct: EnumItem - Enum.KeyCode.World74: - struct: EnumItem - Enum.KeyCode.World75: - struct: EnumItem - Enum.KeyCode.World76: - struct: EnumItem - Enum.KeyCode.World77: - struct: EnumItem - Enum.KeyCode.World78: - struct: EnumItem - Enum.KeyCode.World79: - struct: EnumItem - Enum.KeyCode.World8: - struct: EnumItem - Enum.KeyCode.World80: - struct: EnumItem - Enum.KeyCode.World81: - struct: EnumItem - Enum.KeyCode.World82: - struct: EnumItem - Enum.KeyCode.World83: - struct: EnumItem - Enum.KeyCode.World84: - struct: EnumItem - Enum.KeyCode.World85: - struct: EnumItem - Enum.KeyCode.World86: - struct: EnumItem - Enum.KeyCode.World87: - struct: EnumItem - Enum.KeyCode.World88: - struct: EnumItem - Enum.KeyCode.World89: - struct: EnumItem - Enum.KeyCode.World9: - struct: EnumItem - Enum.KeyCode.World90: - struct: EnumItem - Enum.KeyCode.World91: - struct: EnumItem - Enum.KeyCode.World92: - struct: EnumItem - Enum.KeyCode.World93: - struct: EnumItem - Enum.KeyCode.World94: - struct: EnumItem - Enum.KeyCode.World95: - struct: EnumItem - Enum.KeyCode.X: - struct: EnumItem - Enum.KeyCode.Y: - struct: EnumItem - Enum.KeyCode.Z: - struct: EnumItem - Enum.KeyCode.Zero: - struct: EnumItem - Enum.KeyInterpolationMode.Constant: - struct: EnumItem - Enum.KeyInterpolationMode.Cubic: - struct: EnumItem - Enum.KeyInterpolationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeyInterpolationMode.Linear: - struct: EnumItem - Enum.KeywordFilterType.Exclude: - struct: EnumItem - Enum.KeywordFilterType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeywordFilterType.Include: - struct: EnumItem - Enum.Language.Default: - struct: EnumItem - Enum.Language.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LeftRight.Center: - struct: EnumItem - Enum.LeftRight.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LeftRight.Left: - struct: EnumItem - Enum.LeftRight.Right: - struct: EnumItem - Enum.Limb.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Limb.Head: - struct: EnumItem - Enum.Limb.LeftArm: - struct: EnumItem - Enum.Limb.LeftLeg: - struct: EnumItem - Enum.Limb.RightArm: - struct: EnumItem - Enum.Limb.RightLeg: - struct: EnumItem - Enum.Limb.Torso: - struct: EnumItem - Enum.Limb.Unknown: - struct: EnumItem - Enum.LineJoinMode.Bevel: - struct: EnumItem - Enum.LineJoinMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LineJoinMode.Miter: - struct: EnumItem - Enum.LineJoinMode.Round: - struct: EnumItem - Enum.ListDisplayMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ListDisplayMode.Horizontal: - struct: EnumItem - Enum.ListDisplayMode.Vertical: - struct: EnumItem - Enum.ListenerType.CFrame: - struct: EnumItem - Enum.ListenerType.Camera: - struct: EnumItem - Enum.ListenerType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ListenerType.ObjectCFrame: - struct: EnumItem - Enum.ListenerType.ObjectPosition: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Default: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Disabled: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Enabled: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LoadDynamicHeads.Default: - struct: EnumItem - Enum.LoadDynamicHeads.Disabled: - struct: EnumItem - Enum.LoadDynamicHeads.Enabled: - struct: EnumItem - Enum.LoadDynamicHeads.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MarkupKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MarkupKind.Markdown: - struct: EnumItem - Enum.MarkupKind.PlainText: - struct: EnumItem - Enum.Material.Air: - struct: EnumItem - Enum.Material.Aluminum: - struct: EnumItem - deprecated: - message: Enum.Material.Aluminum was replaced with Enum.Material.Foil - replace: - - Enum.Material.Foil - Enum.Material.Asphalt: - struct: EnumItem - Enum.Material.Basalt: - struct: EnumItem - Enum.Material.Brick: - struct: EnumItem - Enum.Material.Cobblestone: - struct: EnumItem - Enum.Material.Concrete: - struct: EnumItem - Enum.Material.Corroded Metal: - struct: EnumItem - deprecated: - message: Enum.Material.Corroded Metal was replaced with Enum.Material.CorrodedMetal - replace: - - Enum.Material.CorrodedMetal - Enum.Material.CorrodedMetal: - struct: EnumItem - Enum.Material.CrackedLava: - struct: EnumItem - Enum.Material.DiamondPlate: - struct: EnumItem - Enum.Material.Fabric: - struct: EnumItem - Enum.Material.Foil: - struct: EnumItem - Enum.Material.ForceField: - struct: EnumItem - Enum.Material.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Material.Glacier: - struct: EnumItem - Enum.Material.Glass: - struct: EnumItem - Enum.Material.Granite: - struct: EnumItem - Enum.Material.Grass: - struct: EnumItem - Enum.Material.Ground: - struct: EnumItem - Enum.Material.Ice: - struct: EnumItem - Enum.Material.LeafyGrass: - struct: EnumItem - Enum.Material.Limestone: - struct: EnumItem - Enum.Material.Marble: - struct: EnumItem - Enum.Material.Metal: - struct: EnumItem - Enum.Material.Mud: - struct: EnumItem - Enum.Material.Neon: - struct: EnumItem - Enum.Material.Pavement: - struct: EnumItem - Enum.Material.Pebble: - struct: EnumItem - Enum.Material.Plastic: - struct: EnumItem - Enum.Material.Rock: - struct: EnumItem - Enum.Material.Salt: - struct: EnumItem - Enum.Material.Sand: - struct: EnumItem - Enum.Material.Sandstone: - struct: EnumItem - Enum.Material.Slate: - struct: EnumItem - Enum.Material.SmoothPlastic: - struct: EnumItem - Enum.Material.Snow: - struct: EnumItem - Enum.Material.Water: - struct: EnumItem - Enum.Material.Wood: - struct: EnumItem - Enum.Material.WoodPlanks: - struct: EnumItem - Enum.MaterialPattern.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MaterialPattern.Organic: - struct: EnumItem - Enum.MaterialPattern.Regular: - struct: EnumItem - Enum.MembershipType.BuildersClub: - struct: EnumItem - Enum.MembershipType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MembershipType.None: - struct: EnumItem - Enum.MembershipType.OutrageousBuildersClub: - struct: EnumItem - Enum.MembershipType.Premium: - struct: EnumItem - Enum.MembershipType.TurboBuildersClub: - struct: EnumItem - Enum.MeshPartDetailLevel.DistanceBased: - struct: EnumItem - Enum.MeshPartDetailLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshPartDetailLevel.Level00: - struct: EnumItem - Enum.MeshPartDetailLevel.Level01: - struct: EnumItem - Enum.MeshPartDetailLevel.Level02: - struct: EnumItem - Enum.MeshPartDetailLevel.Level03: - struct: EnumItem - Enum.MeshPartDetailLevel.Level04: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Default: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Disabled: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Enabled: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshScaleUnit.CM: - struct: EnumItem - Enum.MeshScaleUnit.Foot: - struct: EnumItem - Enum.MeshScaleUnit.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshScaleUnit.Inch: - struct: EnumItem - Enum.MeshScaleUnit.MM: - struct: EnumItem - Enum.MeshScaleUnit.Meter: - struct: EnumItem - Enum.MeshScaleUnit.Stud: - struct: EnumItem - Enum.MeshType.Brick: - struct: EnumItem - Enum.MeshType.CornerWedge: - struct: EnumItem - Enum.MeshType.Cylinder: - struct: EnumItem - Enum.MeshType.FileMesh: - struct: EnumItem - Enum.MeshType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshType.Head: - struct: EnumItem - Enum.MeshType.ParallelRamp: - struct: EnumItem - Enum.MeshType.Prism: - struct: EnumItem - Enum.MeshType.Pyramid: - struct: EnumItem - Enum.MeshType.RightAngleRamp: - struct: EnumItem - Enum.MeshType.Sphere: - struct: EnumItem - Enum.MeshType.Torso: - struct: EnumItem - Enum.MeshType.Wedge: - struct: EnumItem - Enum.MessageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MessageType.MessageError: - struct: EnumItem - Enum.MessageType.MessageInfo: - struct: EnumItem - Enum.MessageType.MessageOutput: - struct: EnumItem - Enum.MessageType.MessageWarning: - struct: EnumItem - Enum.ModelLevelOfDetail.Automatic: - struct: EnumItem - Enum.ModelLevelOfDetail.Disabled: - struct: EnumItem - Enum.ModelLevelOfDetail.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModelLevelOfDetail.StreamingMesh: - struct: EnumItem - Enum.ModelStreamingMode.Atomic: - struct: EnumItem - Enum.ModelStreamingMode.Default: - struct: EnumItem - Enum.ModelStreamingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModelStreamingMode.Nonatomic: - struct: EnumItem - Enum.ModelStreamingMode.Persistent: - struct: EnumItem - Enum.ModelStreamingMode.PersistentPerPlayer: - struct: EnumItem - Enum.ModifierKey.Alt: - struct: EnumItem - Enum.ModifierKey.Ctrl: - struct: EnumItem - Enum.ModifierKey.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModifierKey.Meta: - struct: EnumItem - Enum.ModifierKey.Shift: - struct: EnumItem - Enum.MouseBehavior.Default: - struct: EnumItem - Enum.MouseBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MouseBehavior.LockCenter: - struct: EnumItem - Enum.MouseBehavior.LockCurrentPosition: - struct: EnumItem - Enum.MoveState.AirFree: - struct: EnumItem - Enum.MoveState.Coasting: - struct: EnumItem - Enum.MoveState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MoveState.Pushing: - struct: EnumItem - Enum.MoveState.Stopped: - struct: EnumItem - Enum.MoveState.Stopping: - struct: EnumItem - Enum.MuteState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MuteState.Muted: - struct: EnumItem - Enum.MuteState.Unmuted: - struct: EnumItem - Enum.NameOcclusion.EnemyOcclusion: - struct: EnumItem - Enum.NameOcclusion.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NameOcclusion.NoOcclusion: - struct: EnumItem - Enum.NameOcclusion.OccludeAll: - struct: EnumItem - Enum.NetworkOwnership.Automatic: - struct: EnumItem - Enum.NetworkOwnership.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NetworkOwnership.Manual: - struct: EnumItem - Enum.NetworkOwnership.OnContact: - struct: EnumItem - Enum.NormalId.Back: - struct: EnumItem - Enum.NormalId.Bottom: - struct: EnumItem - Enum.NormalId.Front: - struct: EnumItem - Enum.NormalId.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NormalId.Left: - struct: EnumItem - Enum.NormalId.Right: - struct: EnumItem - Enum.NormalId.Top: - struct: EnumItem - Enum.OrientationAlignmentMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OrientationAlignmentMode.OneAttachment: - struct: EnumItem - Enum.OrientationAlignmentMode.TwoAttachment: - struct: EnumItem - Enum.OutfitSource.All: - struct: EnumItem - Enum.OutfitSource.Created: - struct: EnumItem - Enum.OutfitSource.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutfitSource.Purchased: - struct: EnumItem - Enum.OutfitType.All: - struct: EnumItem - Enum.OutfitType.Avatar: - struct: EnumItem - Enum.OutfitType.DynamicHead: - struct: EnumItem - Enum.OutfitType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutputLayoutMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutputLayoutMode.Horizontal: - struct: EnumItem - Enum.OutputLayoutMode.Vertical: - struct: EnumItem - Enum.OverrideMouseIconBehavior.ForceHide: - struct: EnumItem - Enum.OverrideMouseIconBehavior.ForceShow: - struct: EnumItem - Enum.OverrideMouseIconBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OverrideMouseIconBehavior.None: - struct: EnumItem - Enum.PackagePermission.Edit: - struct: EnumItem - Enum.PackagePermission.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PackagePermission.NoAccess: - struct: EnumItem - Enum.PackagePermission.None: - struct: EnumItem - Enum.PackagePermission.Own: - struct: EnumItem - Enum.PackagePermission.Revoked: - struct: EnumItem - Enum.PackagePermission.UseView: - struct: EnumItem - Enum.PartType.Ball: - struct: EnumItem - Enum.PartType.Block: - struct: EnumItem - Enum.PartType.Cylinder: - struct: EnumItem - Enum.PartType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShape.Box: - struct: EnumItem - Enum.ParticleEmitterShape.Cylinder: - struct: EnumItem - Enum.ParticleEmitterShape.Disc: - struct: EnumItem - Enum.ParticleEmitterShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShape.Sphere: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShapeInOut.InAndOut: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.Inward: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.Outward: - struct: EnumItem - Enum.ParticleEmitterShapeStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShapeStyle.Surface: - struct: EnumItem - Enum.ParticleEmitterShapeStyle.Volume: - struct: EnumItem - Enum.ParticleFlipbookLayout.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookLayout.Grid2x2: - struct: EnumItem - Enum.ParticleFlipbookLayout.Grid4x4: - struct: EnumItem - Enum.ParticleFlipbookLayout.Grid8x8: - struct: EnumItem - Enum.ParticleFlipbookLayout.None: - struct: EnumItem - Enum.ParticleFlipbookMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookMode.Loop: - struct: EnumItem - Enum.ParticleFlipbookMode.OneShot: - struct: EnumItem - Enum.ParticleFlipbookMode.PingPong: - struct: EnumItem - Enum.ParticleFlipbookMode.Random: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.Compatible: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookTextureCompatible.NotCompatible: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.Unknown: - struct: EnumItem - Enum.ParticleOrientation.FacingCamera: - struct: EnumItem - Enum.ParticleOrientation.FacingCameraWorldUp: - struct: EnumItem - Enum.ParticleOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleOrientation.VelocityParallel: - struct: EnumItem - Enum.ParticleOrientation.VelocityPerpendicular: - struct: EnumItem - Enum.PathStatus.ClosestNoPath: - struct: EnumItem - Enum.PathStatus.ClosestOutOfRange: - struct: EnumItem - Enum.PathStatus.FailFinishNotEmpty: - struct: EnumItem - Enum.PathStatus.FailStartNotEmpty: - struct: EnumItem - Enum.PathStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PathStatus.NoPath: - struct: EnumItem - Enum.PathStatus.Success: - struct: EnumItem - Enum.PathWaypointAction.Custom: - struct: EnumItem - Enum.PathWaypointAction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PathWaypointAction.Jump: - struct: EnumItem - Enum.PathWaypointAction.Walk: - struct: EnumItem - Enum.PermissionLevelShown.Game: - struct: EnumItem - Enum.PermissionLevelShown.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PermissionLevelShown.Roblox: - struct: EnumItem - Enum.PermissionLevelShown.RobloxGame: - struct: EnumItem - Enum.PermissionLevelShown.RobloxScript: - struct: EnumItem - Enum.PermissionLevelShown.Studio: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed120Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed240Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed60Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PhysicsSteppingMethod.Adaptive: - struct: EnumItem - Enum.PhysicsSteppingMethod.Default: - struct: EnumItem - Enum.PhysicsSteppingMethod.Fixed: - struct: EnumItem - Enum.PhysicsSteppingMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Platform.Android: - struct: EnumItem - Enum.Platform.AndroidTV: - struct: EnumItem - Enum.Platform.BeOS: - struct: EnumItem - Enum.Platform.Chromecast: - struct: EnumItem - Enum.Platform.DOS: - struct: EnumItem - Enum.Platform.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Platform.IOS: - struct: EnumItem - Enum.Platform.Linux: - struct: EnumItem - Enum.Platform.NX: - struct: EnumItem - Enum.Platform.None: - struct: EnumItem - Enum.Platform.OSX: - struct: EnumItem - Enum.Platform.Ouya: - struct: EnumItem - Enum.Platform.PS3: - struct: EnumItem - Enum.Platform.PS4: - struct: EnumItem - Enum.Platform.SteamOS: - struct: EnumItem - Enum.Platform.UWP: - struct: EnumItem - Enum.Platform.WebOS: - struct: EnumItem - Enum.Platform.WiiU: - struct: EnumItem - Enum.Platform.Windows: - struct: EnumItem - Enum.Platform.XBox360: - struct: EnumItem - Enum.Platform.XBoxOne: - struct: EnumItem - Enum.PlaybackState.Begin: - struct: EnumItem - Enum.PlaybackState.Cancelled: - struct: EnumItem - Enum.PlaybackState.Completed: - struct: EnumItem - Enum.PlaybackState.Delayed: - struct: EnumItem - Enum.PlaybackState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlaybackState.Paused: - struct: EnumItem - Enum.PlaybackState.Playing: - struct: EnumItem - Enum.PlayerActions.CharacterBackward: - struct: EnumItem - Enum.PlayerActions.CharacterForward: - struct: EnumItem - Enum.PlayerActions.CharacterJump: - struct: EnumItem - Enum.PlayerActions.CharacterLeft: - struct: EnumItem - Enum.PlayerActions.CharacterRight: - struct: EnumItem - Enum.PlayerActions.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlayerChatType.All: - struct: EnumItem - Enum.PlayerChatType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlayerChatType.Team: - struct: EnumItem - Enum.PlayerChatType.Whisper: - struct: EnumItem - Enum.PoseEasingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PoseEasingDirection.In: - struct: EnumItem - Enum.PoseEasingDirection.InOut: - struct: EnumItem - Enum.PoseEasingDirection.Out: - struct: EnumItem - Enum.PoseEasingStyle.Bounce: - struct: EnumItem - Enum.PoseEasingStyle.Constant: - struct: EnumItem - Enum.PoseEasingStyle.Cubic: - struct: EnumItem - Enum.PoseEasingStyle.Elastic: - struct: EnumItem - Enum.PoseEasingStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PoseEasingStyle.Linear: - struct: EnumItem - Enum.PositionAlignmentMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PositionAlignmentMode.OneAttachment: - struct: EnumItem - Enum.PositionAlignmentMode.TwoAttachment: - struct: EnumItem - Enum.PrivilegeType.Admin: - struct: EnumItem - Enum.PrivilegeType.Banned: - struct: EnumItem - Enum.PrivilegeType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PrivilegeType.Member: - struct: EnumItem - Enum.PrivilegeType.Owner: - struct: EnumItem - Enum.PrivilegeType.Visitor: - struct: EnumItem - Enum.ProductLocationRestriction.AllGames: - struct: EnumItem - Enum.ProductLocationRestriction.AllowedGames: - struct: EnumItem - Enum.ProductLocationRestriction.AvatarShop: - struct: EnumItem - Enum.ProductLocationRestriction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProductPurchaseDecision.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProductPurchaseDecision.NotProcessedYet: - struct: EnumItem - Enum.ProductPurchaseDecision.PurchaseGranted: - struct: EnumItem - Enum.PromptPublishAssetResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PromptPublishAssetResult.NoUserInput: - struct: EnumItem - Enum.PromptPublishAssetResult.PermissionDenied: - struct: EnumItem - Enum.PromptPublishAssetResult.Success: - struct: EnumItem - Enum.PromptPublishAssetResult.Timeout: - struct: EnumItem - Enum.PromptPublishAssetResult.UploadFailed: - struct: EnumItem - Enum.PropertyStatus.Error: - struct: EnumItem - Enum.PropertyStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PropertyStatus.Ok: - struct: EnumItem - Enum.PropertyStatus.Warning: - struct: EnumItem - Enum.ProximityPromptExclusivity.AlwaysShow: - struct: EnumItem - Enum.ProximityPromptExclusivity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProximityPromptExclusivity.OneGlobally: - struct: EnumItem - Enum.ProximityPromptExclusivity.OnePerButton: - struct: EnumItem - Enum.ProximityPromptInputType.Gamepad: - struct: EnumItem - Enum.ProximityPromptInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProximityPromptInputType.Keyboard: - struct: EnumItem - Enum.ProximityPromptInputType.Touch: - struct: EnumItem - Enum.ProximityPromptStyle.Custom: - struct: EnumItem - Enum.ProximityPromptStyle.Default: - struct: EnumItem - Enum.ProximityPromptStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.QualityLevel.Automatic: - struct: EnumItem - Enum.QualityLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.QualityLevel.Level 1: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 1 was replaced with Enum.QualityLevel.Level01 - replace: - - Enum.QualityLevel.Level01 - Enum.QualityLevel.Level 2: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 2 was replaced with Enum.QualityLevel.Level02 - replace: - - Enum.QualityLevel.Level02 - Enum.QualityLevel.Level 3: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 3 was replaced with Enum.QualityLevel.Level03 - replace: - - Enum.QualityLevel.Level03 - Enum.QualityLevel.Level 4: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 4 was replaced with Enum.QualityLevel.Level04 - replace: - - Enum.QualityLevel.Level04 - Enum.QualityLevel.Level 5: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 5 was replaced with Enum.QualityLevel.Level05 - replace: - - Enum.QualityLevel.Level05 - Enum.QualityLevel.Level 6: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 6 was replaced with Enum.QualityLevel.Level06 - replace: - - Enum.QualityLevel.Level06 - Enum.QualityLevel.Level 7: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 7 was replaced with Enum.QualityLevel.Level07 - replace: - - Enum.QualityLevel.Level07 - Enum.QualityLevel.Level 8: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 8 was replaced with Enum.QualityLevel.Level08 - replace: - - Enum.QualityLevel.Level08 - Enum.QualityLevel.Level 9: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 9 was replaced with Enum.QualityLevel.Level09 - replace: - - Enum.QualityLevel.Level09 - Enum.QualityLevel.Level 10: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 10 was replaced with Enum.QualityLevel.Level10 - replace: - - Enum.QualityLevel.Level10 - Enum.QualityLevel.Level 11: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 11 was replaced with Enum.QualityLevel.Level11 - replace: - - Enum.QualityLevel.Level11 - Enum.QualityLevel.Level 12: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 12 was replaced with Enum.QualityLevel.Level12 - replace: - - Enum.QualityLevel.Level12 - Enum.QualityLevel.Level 13: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 13 was replaced with Enum.QualityLevel.Level13 - replace: - - Enum.QualityLevel.Level13 - Enum.QualityLevel.Level 14: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 14 was replaced with Enum.QualityLevel.Level14 - replace: - - Enum.QualityLevel.Level14 - Enum.QualityLevel.Level 15: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 15 was replaced with Enum.QualityLevel.Level15 - replace: - - Enum.QualityLevel.Level15 - Enum.QualityLevel.Level 16: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 16 was replaced with Enum.QualityLevel.Level16 - replace: - - Enum.QualityLevel.Level16 - Enum.QualityLevel.Level 17: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 17 was replaced with Enum.QualityLevel.Level17 - replace: - - Enum.QualityLevel.Level17 - Enum.QualityLevel.Level 18: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 18 was replaced with Enum.QualityLevel.Level18 - replace: - - Enum.QualityLevel.Level18 - Enum.QualityLevel.Level 19: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 19 was replaced with Enum.QualityLevel.Level19 - replace: - - Enum.QualityLevel.Level19 - Enum.QualityLevel.Level 20: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 20 was replaced with Enum.QualityLevel.Level20 - replace: - - Enum.QualityLevel.Level20 - Enum.QualityLevel.Level 21: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 21 was replaced with Enum.QualityLevel.Level21 - replace: - - Enum.QualityLevel.Level21 - Enum.QualityLevel.Level01: - struct: EnumItem - Enum.QualityLevel.Level02: - struct: EnumItem - Enum.QualityLevel.Level03: - struct: EnumItem - Enum.QualityLevel.Level04: - struct: EnumItem - Enum.QualityLevel.Level05: - struct: EnumItem - Enum.QualityLevel.Level06: - struct: EnumItem - Enum.QualityLevel.Level07: - struct: EnumItem - Enum.QualityLevel.Level08: - struct: EnumItem - Enum.QualityLevel.Level09: - struct: EnumItem - Enum.QualityLevel.Level10: - struct: EnumItem - Enum.QualityLevel.Level11: - struct: EnumItem - Enum.QualityLevel.Level12: - struct: EnumItem - Enum.QualityLevel.Level13: - struct: EnumItem - Enum.QualityLevel.Level14: - struct: EnumItem - Enum.QualityLevel.Level15: - struct: EnumItem - Enum.QualityLevel.Level16: - struct: EnumItem - Enum.QualityLevel.Level17: - struct: EnumItem - Enum.QualityLevel.Level18: - struct: EnumItem - Enum.QualityLevel.Level19: - struct: EnumItem - Enum.QualityLevel.Level20: - struct: EnumItem - Enum.QualityLevel.Level21: - struct: EnumItem - Enum.R15CollisionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.R15CollisionType.InnerBox: - struct: EnumItem - Enum.R15CollisionType.OuterBox: - struct: EnumItem - Enum.RaycastFilterType.Blacklist: - struct: EnumItem - deprecated: - message: Enum.RaycastFilterType.Blacklist was replaced with Enum.RaycastFilterType.Exclude - replace: - - Enum.RaycastFilterType.Exclude - Enum.RaycastFilterType.Exclude: - struct: EnumItem - Enum.RaycastFilterType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RaycastFilterType.Include: - struct: EnumItem - Enum.RaycastFilterType.Whitelist: - struct: EnumItem - deprecated: - message: Enum.RaycastFilterType.Whitelist was replaced with Enum.RaycastFilterType.Include - replace: - - Enum.RaycastFilterType.Include - Enum.RejectCharacterDeletions.Default: - struct: EnumItem - Enum.RejectCharacterDeletions.Disabled: - struct: EnumItem - Enum.RejectCharacterDeletions.Enabled: - struct: EnumItem - Enum.RejectCharacterDeletions.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderFidelity.Automatic: - struct: EnumItem - Enum.RenderFidelity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderFidelity.Performance: - struct: EnumItem - Enum.RenderFidelity.Precise: - struct: EnumItem - Enum.RenderPriority.Camera: - struct: EnumItem - Enum.RenderPriority.Character: - struct: EnumItem - Enum.RenderPriority.First: - struct: EnumItem - Enum.RenderPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderPriority.Input: - struct: EnumItem - Enum.RenderPriority.Last: - struct: EnumItem - Enum.RenderingTestComparisonMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderingTestComparisonMethod.diff: - struct: EnumItem - Enum.RenderingTestComparisonMethod.psnr: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Default: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Disabled: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Enabled: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ResamplerMode.Default: - struct: EnumItem - Enum.ResamplerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ResamplerMode.Pixelated: - struct: EnumItem - Enum.ReservedHighlightId.Active: - struct: EnumItem - Enum.ReservedHighlightId.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReservedHighlightId.Hover: - struct: EnumItem - Enum.ReservedHighlightId.Selection: - struct: EnumItem - Enum.ReservedHighlightId.Standard: - struct: EnumItem - Enum.ReturnKeyType.Default: - struct: EnumItem - Enum.ReturnKeyType.Done: - struct: EnumItem - Enum.ReturnKeyType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReturnKeyType.Go: - struct: EnumItem - Enum.ReturnKeyType.Next: - struct: EnumItem - Enum.ReturnKeyType.Search: - struct: EnumItem - Enum.ReturnKeyType.Send: - struct: EnumItem - Enum.ReverbType.Alley: - struct: EnumItem - Enum.ReverbType.Arena: - struct: EnumItem - Enum.ReverbType.Auditorium: - struct: EnumItem - Enum.ReverbType.Bathroom: - struct: EnumItem - Enum.ReverbType.CarpettedHallway: - struct: EnumItem - Enum.ReverbType.Cave: - struct: EnumItem - Enum.ReverbType.City: - struct: EnumItem - Enum.ReverbType.ConcertHall: - struct: EnumItem - Enum.ReverbType.Forest: - struct: EnumItem - Enum.ReverbType.GenericReverb: - struct: EnumItem - Enum.ReverbType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReverbType.Hallway: - struct: EnumItem - Enum.ReverbType.Hangar: - struct: EnumItem - Enum.ReverbType.LivingRoom: - struct: EnumItem - Enum.ReverbType.Mountains: - struct: EnumItem - Enum.ReverbType.NoReverb: - struct: EnumItem - Enum.ReverbType.PaddedCell: - struct: EnumItem - Enum.ReverbType.ParkingLot: - struct: EnumItem - Enum.ReverbType.Plain: - struct: EnumItem - Enum.ReverbType.Quarry: - struct: EnumItem - Enum.ReverbType.Room: - struct: EnumItem - Enum.ReverbType.SewerPipe: - struct: EnumItem - Enum.ReverbType.StoneCorridor: - struct: EnumItem - Enum.ReverbType.StoneRoom: - struct: EnumItem - Enum.ReverbType.UnderWater: - struct: EnumItem - Enum.RibbonTool.ColorPicker: - struct: EnumItem - Enum.RibbonTool.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RibbonTool.Group: - struct: EnumItem - Enum.RibbonTool.MaterialPicker: - struct: EnumItem - Enum.RibbonTool.Move: - struct: EnumItem - Enum.RibbonTool.None: - struct: EnumItem - Enum.RibbonTool.Rotate: - struct: EnumItem - Enum.RibbonTool.Scale: - struct: EnumItem - Enum.RibbonTool.Select: - struct: EnumItem - Enum.RibbonTool.Transform: - struct: EnumItem - Enum.RibbonTool.Ungroup: - struct: EnumItem - Enum.RigScale.Default: - struct: EnumItem - Enum.RigScale.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RigScale.Rthro: - struct: EnumItem - Enum.RigScale.RthroNarrow: - struct: EnumItem - Enum.RigType.Custom: - struct: EnumItem - Enum.RigType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RigType.None: - struct: EnumItem - Enum.RigType.R15: - struct: EnumItem - Enum.RigType.Rthro: - struct: EnumItem - Enum.RigType.RthroNarrow: - struct: EnumItem - Enum.RollOffMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RollOffMode.Inverse: - struct: EnumItem - Enum.RollOffMode.InverseTapered: - struct: EnumItem - Enum.RollOffMode.Linear: - struct: EnumItem - Enum.RollOffMode.LinearSquare: - struct: EnumItem - Enum.RotationOrder.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RotationOrder.XYZ: - struct: EnumItem - Enum.RotationOrder.XZY: - struct: EnumItem - Enum.RotationOrder.YXZ: - struct: EnumItem - Enum.RotationOrder.YZX: - struct: EnumItem - Enum.RotationOrder.ZXY: - struct: EnumItem - Enum.RotationOrder.ZYX: - struct: EnumItem - Enum.RotationType.CameraRelative: - struct: EnumItem - Enum.RotationType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RotationType.MovementRelative: - struct: EnumItem - Enum.RtlTextSupport.Default: - struct: EnumItem - Enum.RtlTextSupport.Disabled: - struct: EnumItem - Enum.RtlTextSupport.Enabled: - struct: EnumItem - Enum.RtlTextSupport.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RunContext.Client: - struct: EnumItem - Enum.RunContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RunContext.Legacy: - struct: EnumItem - Enum.RunContext.Plugin: - struct: EnumItem - Enum.RunContext.Server: - struct: EnumItem - Enum.RuntimeUndoBehavior.Aggregate: - struct: EnumItem - Enum.RuntimeUndoBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RuntimeUndoBehavior.Hybrid: - struct: EnumItem - Enum.RuntimeUndoBehavior.Snapshot: - struct: EnumItem - Enum.SafeAreaCompatibility.FullscreenExtension: - struct: EnumItem - Enum.SafeAreaCompatibility.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SafeAreaCompatibility.None: - struct: EnumItem - Enum.SalesTypeFilter.All: - struct: EnumItem - Enum.SalesTypeFilter.Collectibles: - struct: EnumItem - Enum.SalesTypeFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SalesTypeFilter.Premium: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadDistanceScale: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadFieldOfViewDeg: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadThumbnailType: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadYRotDeg: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SaveAvatarThumbnailCustomizationFailure.Other: - struct: EnumItem - Enum.SaveFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SaveFilter.SaveAll: - struct: EnumItem - Enum.SaveFilter.SaveGame: - struct: EnumItem - Enum.SaveFilter.SaveWorld: - struct: EnumItem - Enum.SavedQualitySetting.Automatic: - struct: EnumItem - Enum.SavedQualitySetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SavedQualitySetting.QualityLevel1: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel10: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel2: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel3: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel4: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel5: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel6: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel7: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel8: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel9: - struct: EnumItem - Enum.ScaleType.Crop: - struct: EnumItem - Enum.ScaleType.Fit: - struct: EnumItem - Enum.ScaleType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScaleType.Slice: - struct: EnumItem - Enum.ScaleType.Stretch: - struct: EnumItem - Enum.ScaleType.Tile: - struct: EnumItem - Enum.ScopeCheckResult.BackendError: - struct: EnumItem - Enum.ScopeCheckResult.ConsentAccepted: - struct: EnumItem - Enum.ScopeCheckResult.ConsentDenied: - struct: EnumItem - Enum.ScopeCheckResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScopeCheckResult.InvalidArgument: - struct: EnumItem - Enum.ScopeCheckResult.InvalidScopes: - struct: EnumItem - Enum.ScopeCheckResult.NoUserInput: - struct: EnumItem - Enum.ScopeCheckResult.Timeout: - struct: EnumItem - Enum.ScopeCheckResult.UnexpectedError: - struct: EnumItem - Enum.ScreenInsets.CoreUISafeInsets: - struct: EnumItem - Enum.ScreenInsets.DeviceSafeInsets: - struct: EnumItem - Enum.ScreenInsets.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScreenInsets.None: - struct: EnumItem - Enum.ScreenOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScreenOrientation.LandscapeLeft: - struct: EnumItem - Enum.ScreenOrientation.LandscapeRight: - struct: EnumItem - Enum.ScreenOrientation.LandscapeSensor: - struct: EnumItem - Enum.ScreenOrientation.Portrait: - struct: EnumItem - Enum.ScreenOrientation.Sensor: - struct: EnumItem - Enum.ScrollBarInset.Always: - struct: EnumItem - Enum.ScrollBarInset.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScrollBarInset.None: - struct: EnumItem - Enum.ScrollBarInset.ScrollBar: - struct: EnumItem - Enum.ScrollingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScrollingDirection.X: - struct: EnumItem - Enum.ScrollingDirection.XY: - struct: EnumItem - Enum.ScrollingDirection.Y: - struct: EnumItem - Enum.SelectionBehavior.Escape: - struct: EnumItem - Enum.SelectionBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SelectionBehavior.Stop: - struct: EnumItem - Enum.SensorMode.Floor: - struct: EnumItem - Enum.SensorMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SensorMode.Ladder: - struct: EnumItem - Enum.SensorUpdateType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SensorUpdateType.Manual: - struct: EnumItem - Enum.SensorUpdateType.OnRead: - struct: EnumItem - Enum.ServerAudioBehavior.Enabled: - struct: EnumItem - Enum.ServerAudioBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ServerAudioBehavior.Muted: - struct: EnumItem - Enum.ServerAudioBehavior.OnlineGame: - struct: EnumItem - Enum.ServiceVisibility.Always: - struct: EnumItem - Enum.ServiceVisibility.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ServiceVisibility.Off: - struct: EnumItem - Enum.ServiceVisibility.WithChildren: - struct: EnumItem - Enum.Severity.Error: - struct: EnumItem - Enum.Severity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Severity.Warning: - struct: EnumItem - Enum.SignalBehavior.AncestryDeferred: - struct: EnumItem - Enum.SignalBehavior.Default: - struct: EnumItem - Enum.SignalBehavior.Deferred: - struct: EnumItem - Enum.SignalBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SignalBehavior.Immediate: - struct: EnumItem - Enum.SizeConstraint.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SizeConstraint.RelativeXX: - struct: EnumItem - Enum.SizeConstraint.RelativeXY: - struct: EnumItem - Enum.SizeConstraint.RelativeYY: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.Disabled: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SolverConvergenceVisualizationMode.PerEdge: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.PerIsland: - struct: EnumItem - Enum.SortDirection.Ascending: - struct: EnumItem - Enum.SortDirection.Descending: - struct: EnumItem - Enum.SortDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SortOrder.Custom: - struct: EnumItem - Enum.SortOrder.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SortOrder.LayoutOrder: - struct: EnumItem - Enum.SortOrder.Name: - struct: EnumItem - Enum.SpecialKey.ChatHotkey: - struct: EnumItem - Enum.SpecialKey.End: - struct: EnumItem - Enum.SpecialKey.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SpecialKey.Home: - struct: EnumItem - Enum.SpecialKey.Insert: - struct: EnumItem - Enum.SpecialKey.PageDown: - struct: EnumItem - Enum.SpecialKey.PageUp: - struct: EnumItem - Enum.StartCorner.BottomLeft: - struct: EnumItem - Enum.StartCorner.BottomRight: - struct: EnumItem - Enum.StartCorner.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StartCorner.TopLeft: - struct: EnumItem - Enum.StartCorner.TopRight: - struct: EnumItem - Enum.Status.Confusion: - struct: EnumItem - Enum.Status.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Status.Poison: - struct: EnumItem - Enum.StreamOutBehavior.Default: - struct: EnumItem - Enum.StreamOutBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StreamOutBehavior.LowMemory: - struct: EnumItem - Enum.StreamOutBehavior.Opportunistic: - struct: EnumItem - Enum.StreamingIntegrityMode.Default: - struct: EnumItem - Enum.StreamingIntegrityMode.Disabled: - struct: EnumItem - Enum.StreamingIntegrityMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StreamingIntegrityMode.MinimumRadiusPause: - struct: EnumItem - Enum.StreamingIntegrityMode.PauseOutsideLoadedArea: - struct: EnumItem - Enum.StreamingPauseMode.ClientPhysicsPause: - struct: EnumItem - Enum.StreamingPauseMode.Default: - struct: EnumItem - Enum.StreamingPauseMode.Disabled: - struct: EnumItem - Enum.StreamingPauseMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioCloseMode.CloseDoc: - struct: EnumItem - Enum.StudioCloseMode.CloseStudio: - struct: EnumItem - Enum.StudioCloseMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioCloseMode.None: - struct: EnumItem - Enum.StudioDataModelType.Edit: - struct: EnumItem - Enum.StudioDataModelType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioDataModelType.None: - struct: EnumItem - Enum.StudioDataModelType.PlayClient: - struct: EnumItem - Enum.StudioDataModelType.PlayServer: - struct: EnumItem - Enum.StudioDataModelType.Standalone: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.ActiveLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Background: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Bool: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Bracket: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Builtin: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Comment: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DebuggerCurrentLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DebuggerErrorLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Default: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DocViewCodeBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Error: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.FindSelectionBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Function: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.FunctionName: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioScriptEditorColorCategories.Keyword: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Local: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.LuauKeyword: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MatchingWordBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuBorder: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuPrimaryText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuScrollbarBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuScrollbarHandle: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSecondaryText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSelectedBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSelectedText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Method: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Nil: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Number: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Operator: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Property: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Ruler: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.SelectionBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.SelectionText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Self: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.String: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.TODO: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Warning: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Whitespace: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Custom: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Extra1: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Extra2: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioScriptEditorColorPresets.RobloxDefault: - struct: EnumItem - Enum.StudioStyleGuideColor.AttributeCog: - struct: EnumItem - Enum.StudioStyleGuideColor.Border: - struct: EnumItem - Enum.StudioStyleGuideColor.BrightText: - struct: EnumItem - Enum.StudioStyleGuideColor.Button: - struct: EnumItem - Enum.StudioStyleGuideColor.ButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.ButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.CategoryItem: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatIncomingBgColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatIncomingTextColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatModeratedMessageColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatOutgoingBgColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatOutgoingTextColor: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldIndicator: - struct: EnumItem - Enum.StudioStyleGuideColor.ColorPickerFrame: - struct: EnumItem - Enum.StudioStyleGuideColor.CurrentMarker: - struct: EnumItem - Enum.StudioStyleGuideColor.Dark: - struct: EnumItem - Enum.StudioStyleGuideColor.DebuggerCurrentLine: - struct: EnumItem - Enum.StudioStyleGuideColor.DebuggerErrorLine: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButton: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogMainButton: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogMainButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathText: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNum: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumAdditionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumDeletionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumNoChangeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumSeparatorBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextAddition: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextAdditionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextDeletion: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextDeletionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextHunkInfo: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextNoChange: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextNoChangeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextSeparatorBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DimmedText: - struct: EnumItem - Enum.StudioStyleGuideColor.DocViewCodeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DropShadow: - struct: EnumItem - Enum.StudioStyleGuideColor.Dropdown: - struct: EnumItem - Enum.StudioStyleGuideColor.EmulatorBar: - struct: EnumItem - Enum.StudioStyleGuideColor.EmulatorDropDown: - struct: EnumItem - Enum.StudioStyleGuideColor.ErrorText: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonAccent: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonBorderAlt: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonChecked: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonDefault: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonHover: - struct: EnumItem - Enum.StudioStyleGuideColor.GameSettingsTableItem: - struct: EnumItem - Enum.StudioStyleGuideColor.GameSettingsTooltip: - struct: EnumItem - Enum.StudioStyleGuideColor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioStyleGuideColor.HeaderSection: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoBarWarningBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoBarWarningText: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoText: - struct: EnumItem - Enum.StudioStyleGuideColor.InputFieldBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.InputFieldBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.Item: - struct: EnumItem - Enum.StudioStyleGuideColor.Light: - struct: EnumItem - Enum.StudioStyleGuideColor.LinkText: - struct: EnumItem - Enum.StudioStyleGuideColor.MainBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.MainButton: - struct: EnumItem - Enum.StudioStyleGuideColor.MainText: - struct: EnumItem - Enum.StudioStyleGuideColor.Mid: - struct: EnumItem - Enum.StudioStyleGuideColor.Midlight: - struct: EnumItem - Enum.StudioStyleGuideColor.Notification: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonButton: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonTab: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonTabTopBar: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBool: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBracket: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBuiltInFunction: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptComment: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptEditorCurrentLine: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptError: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFindSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFunction: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFunctionName: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptKeyword: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptLocal: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptLuauKeyword: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptMatchingWordSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptMethod: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptNil: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptNumber: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptOperator: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptProperty: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptRuler: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelectionText: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelf: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSideWidget: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptString: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptText: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptTodo: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptWarning: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptWhitespace: - struct: EnumItem - Enum.StudioStyleGuideColor.ScrollBar: - struct: EnumItem - Enum.StudioStyleGuideColor.ScrollBarBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.SensitiveText: - struct: EnumItem - Enum.StudioStyleGuideColor.Separator: - struct: EnumItem - Enum.StudioStyleGuideColor.Shadow: - struct: EnumItem - Enum.StudioStyleGuideColor.StatusBar: - struct: EnumItem - Enum.StudioStyleGuideColor.SubText: - struct: EnumItem - Enum.StudioStyleGuideColor.Tab: - struct: EnumItem - Enum.StudioStyleGuideColor.TabBar: - struct: EnumItem - Enum.StudioStyleGuideColor.TableItem: - struct: EnumItem - Enum.StudioStyleGuideColor.Titlebar: - struct: EnumItem - Enum.StudioStyleGuideColor.TitlebarText: - struct: EnumItem - Enum.StudioStyleGuideColor.Tooltip: - struct: EnumItem - Enum.StudioStyleGuideColor.ViewPortBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.WarningText: - struct: EnumItem - Enum.StudioStyleGuideModifier.Default: - struct: EnumItem - Enum.StudioStyleGuideModifier.Disabled: - struct: EnumItem - Enum.StudioStyleGuideModifier.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioStyleGuideModifier.Hover: - struct: EnumItem - Enum.StudioStyleGuideModifier.Pressed: - struct: EnumItem - Enum.StudioStyleGuideModifier.Selected: - struct: EnumItem - Enum.Style.Alternating Supports: - struct: EnumItem - deprecated: - message: Enum.Style.Alternating Supports was replaced with Enum.Style.AlternatingSupports - replace: - - Enum.Style.AlternatingSupports - Enum.Style.AlternatingSupports: - struct: EnumItem - Enum.Style.Bridge Style Supports: - struct: EnumItem - deprecated: - message: Enum.Style.Bridge Style Supports was replaced with Enum.Style.BridgeStyleSupports - replace: - - Enum.Style.BridgeStyleSupports - Enum.Style.BridgeStyleSupports: - struct: EnumItem - Enum.Style.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Style.No Supports: - struct: EnumItem - deprecated: - message: Enum.Style.No Supports was replaced with Enum.Style.NoSupports - replace: - - Enum.Style.NoSupports - Enum.Style.NoSupports: - struct: EnumItem - Enum.SurfaceConstraint.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceConstraint.Hinge: - struct: EnumItem - Enum.SurfaceConstraint.Motor: - struct: EnumItem - Enum.SurfaceConstraint.None: - struct: EnumItem - Enum.SurfaceConstraint.SteppingMotor: - struct: EnumItem - Enum.SurfaceGuiShape.CurvedHorizontally: - struct: EnumItem - Enum.SurfaceGuiShape.Flat: - struct: EnumItem - Enum.SurfaceGuiShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceGuiSizingMode.FixedSize: - struct: EnumItem - Enum.SurfaceGuiSizingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceGuiSizingMode.PixelsPerStud: - struct: EnumItem - Enum.SurfaceType.Bumps: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Bumps was replaced with Enum.SurfaceType.Glue - replace: - - Enum.SurfaceType.Glue - Enum.SurfaceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceType.Glue: - struct: EnumItem - Enum.SurfaceType.Hinge: - struct: EnumItem - Enum.SurfaceType.Inlet: - struct: EnumItem - Enum.SurfaceType.Motor: - struct: EnumItem - Enum.SurfaceType.Smooth: - struct: EnumItem - Enum.SurfaceType.SmoothNoOutlines: - struct: EnumItem - Enum.SurfaceType.Spawn: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Spawn was replaced with Enum.SurfaceType.Smooth - replace: - - Enum.SurfaceType.Smooth - Enum.SurfaceType.SteppingMotor: - struct: EnumItem - Enum.SurfaceType.Studs: - struct: EnumItem - Enum.SurfaceType.Universal: - struct: EnumItem - Enum.SurfaceType.Unjoinable: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Unjoinable was replaced with Enum.SurfaceType.Smooth - replace: - - Enum.SurfaceType.Smooth - Enum.SurfaceType.Weld: - struct: EnumItem - Enum.SwipeDirection.Down: - struct: EnumItem - Enum.SwipeDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SwipeDirection.Left: - struct: EnumItem - Enum.SwipeDirection.None: - struct: EnumItem - Enum.SwipeDirection.Right: - struct: EnumItem - Enum.SwipeDirection.Up: - struct: EnumItem - Enum.TableMajorAxis.ColumnMajor: - struct: EnumItem - Enum.TableMajorAxis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TableMajorAxis.RowMajor: - struct: EnumItem - Enum.Technology.Compatibility: - struct: EnumItem - Enum.Technology.Future: - struct: EnumItem - Enum.Technology.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Technology.Legacy: - struct: EnumItem - Enum.Technology.ShadowMap: - struct: EnumItem - Enum.Technology.Voxel: - struct: EnumItem - Enum.TeleportMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportMethod.TeleportPartyAsync: - struct: EnumItem - Enum.TeleportMethod.TeleportToPlaceInstance: - struct: EnumItem - Enum.TeleportMethod.TeleportToPrivateServer: - struct: EnumItem - Enum.TeleportMethod.TeleportToSpawnByName: - struct: EnumItem - Enum.TeleportMethod.TeleportUnknown: - struct: EnumItem - Enum.TeleportResult.Failure: - struct: EnumItem - Enum.TeleportResult.Flooded: - struct: EnumItem - Enum.TeleportResult.GameEnded: - struct: EnumItem - Enum.TeleportResult.GameFull: - struct: EnumItem - Enum.TeleportResult.GameNotFound: - struct: EnumItem - Enum.TeleportResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportResult.IsTeleporting: - struct: EnumItem - Enum.TeleportResult.Success: - struct: EnumItem - Enum.TeleportResult.Unauthorized: - struct: EnumItem - Enum.TeleportState.Failed: - struct: EnumItem - Enum.TeleportState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportState.InProgress: - struct: EnumItem - Enum.TeleportState.RequestedFromServer: - struct: EnumItem - Enum.TeleportState.Started: - struct: EnumItem - Enum.TeleportState.WaitingForServer: - struct: EnumItem - Enum.TeleportType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportType.ToInstance: - struct: EnumItem - Enum.TeleportType.ToPlace: - struct: EnumItem - Enum.TeleportType.ToReservedServer: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Convert: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditAddTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditReplaceTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditSeaLevelTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Generate: - struct: EnumItem - Enum.TerrainAcquisitionMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TerrainAcquisitionMethod.Import: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Legacy: - struct: EnumItem - Enum.TerrainAcquisitionMethod.None: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Other: - struct: EnumItem - Enum.TerrainAcquisitionMethod.RegionFillTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.RegionPasteTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Template: - struct: EnumItem - Enum.TerrainFace.Bottom: - struct: EnumItem - Enum.TerrainFace.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TerrainFace.Side: - struct: EnumItem - Enum.TerrainFace.Top: - struct: EnumItem - Enum.TextChatMessageStatus.Floodchecked: - struct: EnumItem - Enum.TextChatMessageStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextChatMessageStatus.InvalidPrivacySettings: - struct: EnumItem - Enum.TextChatMessageStatus.InvalidTextChannelPermissions: - struct: EnumItem - Enum.TextChatMessageStatus.MessageTooLong: - struct: EnumItem - Enum.TextChatMessageStatus.Sending: - struct: EnumItem - Enum.TextChatMessageStatus.Success: - struct: EnumItem - Enum.TextChatMessageStatus.TextFilterFailed: - struct: EnumItem - Enum.TextChatMessageStatus.Unknown: - struct: EnumItem - Enum.TextFilterContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextFilterContext.PrivateChat: - struct: EnumItem - Enum.TextFilterContext.PublicChat: - struct: EnumItem - Enum.TextInputType.Default: - struct: EnumItem - Enum.TextInputType.Email: - struct: EnumItem - Enum.TextInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextInputType.NoSuggestions: - struct: EnumItem - Enum.TextInputType.Number: - struct: EnumItem - Enum.TextInputType.OneTimePassword: - struct: EnumItem - Enum.TextInputType.Password: - struct: EnumItem - Enum.TextInputType.PasswordShown: - struct: EnumItem - Enum.TextInputType.Phone: - struct: EnumItem - Enum.TextInputType.Username: - struct: EnumItem - Enum.TextTruncate.AtEnd: - struct: EnumItem - Enum.TextTruncate.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextTruncate.None: - struct: EnumItem - Enum.TextXAlignment.Center: - struct: EnumItem - Enum.TextXAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextXAlignment.Left: - struct: EnumItem - Enum.TextXAlignment.Right: - struct: EnumItem - Enum.TextYAlignment.Bottom: - struct: EnumItem - Enum.TextYAlignment.Center: - struct: EnumItem - Enum.TextYAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextYAlignment.Top: - struct: EnumItem - Enum.TextureMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextureMode.Static: - struct: EnumItem - Enum.TextureMode.Stretch: - struct: EnumItem - Enum.TextureMode.Wrap: - struct: EnumItem - Enum.TextureQueryType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextureQueryType.Humanoid: - struct: EnumItem - Enum.TextureQueryType.HumanoidOrphaned: - struct: EnumItem - Enum.TextureQueryType.NonHumanoid: - struct: EnumItem - Enum.TextureQueryType.NonHumanoidOrphaned: - struct: EnumItem - Enum.ThreadPoolConfig.Auto: - struct: EnumItem - Enum.ThreadPoolConfig.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThreadPoolConfig.PartialThread: - struct: EnumItem - deprecated: - message: Enum.ThreadPoolConfig.PartialThread was replaced with Enum.ThreadPoolConfig.Auto - replace: - - Enum.ThreadPoolConfig.Auto - Enum.ThreadPoolConfig.PerCore1: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore2: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore3: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore4: - struct: EnumItem - Enum.ThreadPoolConfig.Threads1: - struct: EnumItem - Enum.ThreadPoolConfig.Threads16: - struct: EnumItem - Enum.ThreadPoolConfig.Threads2: - struct: EnumItem - Enum.ThreadPoolConfig.Threads3: - struct: EnumItem - Enum.ThreadPoolConfig.Threads4: - struct: EnumItem - Enum.ThreadPoolConfig.Threads8: - struct: EnumItem - Enum.ThrottlingPriority.Default: - struct: EnumItem - Enum.ThrottlingPriority.ElevatedOnServer: - struct: EnumItem - Enum.ThrottlingPriority.Extreme: - struct: EnumItem - Enum.ThrottlingPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailSize.Size100x100: - struct: EnumItem - Enum.ThumbnailSize.Size150x150: - struct: EnumItem - Enum.ThumbnailSize.Size180x180: - struct: EnumItem - Enum.ThumbnailSize.Size352x352: - struct: EnumItem - Enum.ThumbnailSize.Size420x420: - struct: EnumItem - Enum.ThumbnailSize.Size48x48: - struct: EnumItem - Enum.ThumbnailSize.Size60x60: - struct: EnumItem - Enum.ThumbnailType.AvatarBust: - struct: EnumItem - Enum.ThumbnailType.AvatarThumbnail: - struct: EnumItem - Enum.ThumbnailType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailType.HeadShot: - struct: EnumItem - Enum.TickCountSampleMethod.Benchmark: - struct: EnumItem - Enum.TickCountSampleMethod.Fast: - struct: EnumItem - Enum.TickCountSampleMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TickCountSampleMethod.Precise: - struct: EnumItem - Enum.TopBottom.Bottom: - struct: EnumItem - Enum.TopBottom.Center: - struct: EnumItem - Enum.TopBottom.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TopBottom.Top: - struct: EnumItem - Enum.TouchCameraMovementMode.Classic: - struct: EnumItem - Enum.TouchCameraMovementMode.Default: - struct: EnumItem - Enum.TouchCameraMovementMode.Follow: - struct: EnumItem - Enum.TouchCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TouchCameraMovementMode.Orbital: - struct: EnumItem - Enum.TouchMovementMode.ClickToMove: - struct: EnumItem - Enum.TouchMovementMode.DPad: - struct: EnumItem - Enum.TouchMovementMode.Default: - struct: EnumItem - Enum.TouchMovementMode.DynamicThumbstick: - struct: EnumItem - Enum.TouchMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TouchMovementMode.Thumbpad: - struct: EnumItem - Enum.TouchMovementMode.Thumbstick: - struct: EnumItem - Enum.TrackerError.AudioError: - struct: EnumItem - Enum.TrackerError.AudioNoPermission: - struct: EnumItem - Enum.TrackerError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerError.InitFailed: - struct: EnumItem - Enum.TrackerError.NoAudio: - struct: EnumItem - Enum.TrackerError.NoService: - struct: EnumItem - Enum.TrackerError.NoVideo: - struct: EnumItem - Enum.TrackerError.Ok: - struct: EnumItem - Enum.TrackerError.VideoError: - struct: EnumItem - Enum.TrackerError.VideoNoPermission: - struct: EnumItem - Enum.TrackerError.VideoUnsupported: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.Auto: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ExtrapolateFacsAndPose: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ExtrapolateFacsOnly: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ForceDisabled: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerLodFlagMode.Auto: - struct: EnumItem - Enum.TrackerLodFlagMode.ForceFalse: - struct: EnumItem - Enum.TrackerLodFlagMode.ForceTrue: - struct: EnumItem - Enum.TrackerLodFlagMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerLodValueMode.Auto: - struct: EnumItem - Enum.TrackerLodValueMode.Force0: - struct: EnumItem - Enum.TrackerLodValueMode.Force1: - struct: EnumItem - Enum.TrackerLodValueMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerMode.Audio: - struct: EnumItem - Enum.TrackerMode.AudioVideo: - struct: EnumItem - Enum.TrackerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerMode.None: - struct: EnumItem - Enum.TrackerMode.Video: - struct: EnumItem - Enum.TrackerPromptEvent.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerPromptEvent.LODCameraRecommendDisable: - struct: EnumItem - Enum.TriStateBoolean.False: - struct: EnumItem - Enum.TriStateBoolean.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TriStateBoolean.True: - struct: EnumItem - Enum.TriStateBoolean.Unknown: - struct: EnumItem - Enum.TweenStatus.Canceled: - struct: EnumItem - Enum.TweenStatus.Completed: - struct: EnumItem - Enum.TweenStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UITheme.Dark: - struct: EnumItem - Enum.UITheme.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UITheme.Light: - struct: EnumItem - Enum.UiMessageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UiMessageType.UiMessageError: - struct: EnumItem - Enum.UiMessageType.UiMessageInfo: - struct: EnumItem - Enum.UsageContext.Default: - struct: EnumItem - Enum.UsageContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UsageContext.Preview: - struct: EnumItem - Enum.UserCFrame.Floor: - struct: EnumItem - Enum.UserCFrame.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserCFrame.Head: - struct: EnumItem - Enum.UserCFrame.LeftHand: - struct: EnumItem - Enum.UserCFrame.RightHand: - struct: EnumItem - Enum.UserInputState.Begin: - struct: EnumItem - Enum.UserInputState.Cancel: - struct: EnumItem - Enum.UserInputState.Change: - struct: EnumItem - Enum.UserInputState.End: - struct: EnumItem - Enum.UserInputState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserInputState.None: - struct: EnumItem - Enum.UserInputType.Accelerometer: - struct: EnumItem - Enum.UserInputType.Focus: - struct: EnumItem - Enum.UserInputType.Gamepad1: - struct: EnumItem - Enum.UserInputType.Gamepad2: - struct: EnumItem - Enum.UserInputType.Gamepad3: - struct: EnumItem - Enum.UserInputType.Gamepad4: - struct: EnumItem - Enum.UserInputType.Gamepad5: - struct: EnumItem - Enum.UserInputType.Gamepad6: - struct: EnumItem - Enum.UserInputType.Gamepad7: - struct: EnumItem - Enum.UserInputType.Gamepad8: - struct: EnumItem - Enum.UserInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserInputType.Gyro: - struct: EnumItem - Enum.UserInputType.InputMethod: - struct: EnumItem - Enum.UserInputType.Keyboard: - struct: EnumItem - Enum.UserInputType.MouseButton1: - struct: EnumItem - Enum.UserInputType.MouseButton2: - struct: EnumItem - Enum.UserInputType.MouseButton3: - struct: EnumItem - Enum.UserInputType.MouseMovement: - struct: EnumItem - Enum.UserInputType.MouseWheel: - struct: EnumItem - Enum.UserInputType.None: - struct: EnumItem - Enum.UserInputType.TextInput: - struct: EnumItem - Enum.UserInputType.Touch: - struct: EnumItem - Enum.VRPlayMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRPlayMode.Seated: - struct: EnumItem - Enum.VRPlayMode.Standing: - struct: EnumItem - Enum.VRSafetyBubbleMode.Anyone: - struct: EnumItem - Enum.VRSafetyBubbleMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRSafetyBubbleMode.NoOne: - struct: EnumItem - Enum.VRSafetyBubbleMode.OnlyFriends: - struct: EnumItem - Enum.VRScaling.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRScaling.Off: - struct: EnumItem - Enum.VRScaling.World: - struct: EnumItem - Enum.VRSessionState.Focused: - struct: EnumItem - Enum.VRSessionState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRSessionState.Idle: - struct: EnumItem - Enum.VRSessionState.Undefined: - struct: EnumItem - Enum.VRSessionState.Visible: - struct: EnumItem - Enum.VRTouchpad.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRTouchpad.Left: - struct: EnumItem - Enum.VRTouchpad.Right: - struct: EnumItem - Enum.VRTouchpadMode.ABXY: - struct: EnumItem - Enum.VRTouchpadMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRTouchpadMode.Touch: - struct: EnumItem - Enum.VRTouchpadMode.VirtualThumbstick: - struct: EnumItem - Enum.VelocityConstraintMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VelocityConstraintMode.Line: - struct: EnumItem - Enum.VelocityConstraintMode.Plane: - struct: EnumItem - Enum.VelocityConstraintMode.Vector: - struct: EnumItem - Enum.VerticalAlignment.Bottom: - struct: EnumItem - Enum.VerticalAlignment.Center: - struct: EnumItem - Enum.VerticalAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VerticalAlignment.Top: - struct: EnumItem - Enum.VerticalScrollBarPosition.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VerticalScrollBarPosition.Left: - struct: EnumItem - Enum.VerticalScrollBarPosition.Right: - struct: EnumItem - Enum.VibrationMotor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VibrationMotor.Large: - struct: EnumItem - Enum.VibrationMotor.LeftHand: - struct: EnumItem - Enum.VibrationMotor.LeftTrigger: - struct: EnumItem - Enum.VibrationMotor.RightHand: - struct: EnumItem - Enum.VibrationMotor.RightTrigger: - struct: EnumItem - Enum.VibrationMotor.Small: - struct: EnumItem - Enum.VirtualCursorMode.Default: - struct: EnumItem - Enum.VirtualCursorMode.Disabled: - struct: EnumItem - Enum.VirtualCursorMode.Enabled: - struct: EnumItem - Enum.VirtualCursorMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VirtualInputMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VirtualInputMode.None: - struct: EnumItem - Enum.VirtualInputMode.Playing: - struct: EnumItem - Enum.VirtualInputMode.Recording: - struct: EnumItem - Enum.VoiceChatState.Ended: - struct: EnumItem - Enum.VoiceChatState.Failed: - struct: EnumItem - Enum.VoiceChatState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VoiceChatState.Idle: - struct: EnumItem - Enum.VoiceChatState.Joined: - struct: EnumItem - Enum.VoiceChatState.Joining: - struct: EnumItem - Enum.VoiceChatState.JoiningRetry: - struct: EnumItem - Enum.VoiceChatState.Leaving: - struct: EnumItem - Enum.VolumetricAudio.Automatic: - struct: EnumItem - Enum.VolumetricAudio.Disabled: - struct: EnumItem - Enum.VolumetricAudio.Enabled: - struct: EnumItem - Enum.VolumetricAudio.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterDirection.NegX: - struct: EnumItem - Enum.WaterDirection.NegY: - struct: EnumItem - Enum.WaterDirection.NegZ: - struct: EnumItem - Enum.WaterDirection.X: - struct: EnumItem - Enum.WaterDirection.Y: - struct: EnumItem - Enum.WaterDirection.Z: - struct: EnumItem - Enum.WaterForce.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterForce.Max: - struct: EnumItem - Enum.WaterForce.Medium: - struct: EnumItem - Enum.WaterForce.None: - struct: EnumItem - Enum.WaterForce.Small: - struct: EnumItem - Enum.WaterForce.Strong: - struct: EnumItem - Enum.WrapLayerAutoSkin.Disabled: - struct: EnumItem - Enum.WrapLayerAutoSkin.EnabledOverride: - struct: EnumItem - Enum.WrapLayerAutoSkin.EnabledPreserve: - struct: EnumItem - Enum.WrapLayerAutoSkin.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapLayerDebugMode.BoundCage: - struct: EnumItem - Enum.WrapLayerDebugMode.BoundCageAndLinks: - struct: EnumItem - Enum.WrapLayerDebugMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapLayerDebugMode.HSRInner: - struct: EnumItem - Enum.WrapLayerDebugMode.HSRInnerReverse: - struct: EnumItem - Enum.WrapLayerDebugMode.HSROuter: - struct: EnumItem - Enum.WrapLayerDebugMode.HSROuterDetail: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCage: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCageFittedToBase: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCageFittedToPrev: - struct: EnumItem - Enum.WrapLayerDebugMode.None: - struct: EnumItem - Enum.WrapLayerDebugMode.OuterCage: - struct: EnumItem - Enum.WrapLayerDebugMode.Rbf: - struct: EnumItem - Enum.WrapLayerDebugMode.Reference: - struct: EnumItem - Enum.WrapLayerDebugMode.ReferenceMeshAfterMorph: - struct: EnumItem - Enum.WrapTargetDebugMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapTargetDebugMode.None: - struct: EnumItem - Enum.WrapTargetDebugMode.OuterCageDetail: - struct: EnumItem - Enum.WrapTargetDebugMode.Rbf: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageCompressed: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageInterface: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageOriginal: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerCageCompressed: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerCageOriginal: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerInterface: - struct: EnumItem - Enum.ZIndexBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ZIndexBehavior.Global: - struct: EnumItem - Enum.ZIndexBehavior.Sibling: - struct: EnumItem - Faces.new: - args: - - type: '...' - must_use: true - FloatCurveKey.new: - args: - - type: number - - type: number - - type: - display: KeyInterpolationMode - must_use: true - Font.fromEnum: - args: - - type: - display: Font - must_use: true - Font.fromId: - args: - - type: number - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Font.fromName: - args: - - type: string - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Font.new: - args: - - type: string - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Instance.new: - args: - - type: - - Accoutrement - - Accessory - - Hat - - AdPortal - - AdvancedDragger - - AnalyticsService - - Animation - - CurveAnimation - - KeyframeSequence - - AnimationController - - AnimationRigData - - Animator - - Atmosphere - - Attachment - - Bone - - AudioSearchParams - - Backpack - - WrapLayer - - WrapTarget - - Beam - - BindableEvent - - BindableFunction - - BodyAngularVelocity - - BodyForce - - BodyGyro - - BodyPosition - - BodyThrust - - BodyVelocity - - RocketPropulsion - - Breakpoint - - Camera - - BodyColors - - CharacterMesh - - Pants - - Shirt - - ShirtGraphic - - Skin - - ClickDetector - - Clouds - - Configuration - - AlignOrientation - - AlignPosition - - AngularVelocity - - AnimationConstraint - - BallSocketConstraint - - HingeConstraint - - LineForce - - LinearVelocity - - PlaneConstraint - - Plane - - RigidConstraint - - RodConstraint - - RopeConstraint - - CylindricalConstraint - - PrismaticConstraint - - SpringConstraint - - Torque - - TorsionSpringConstraint - - UniversalConstraint - - VectorForce - - HumanoidController - - SkateboardController - - VehicleController - - AirController - - ClimbController - - GroundController - - SwimController - - ControllerManager - - CustomEvent - - CustomEventReceiver - - BlockMesh - - CylinderMesh - - FileMesh - - SpecialMesh - - DataStoreIncrementOptions - - DataStoreOptions - - DataStoreSetOptions - - DebuggerWatch - - Dialog - - DialogChoice - - Dragger - - EulerRotationCurve - - ExperienceInviteOptions - - Explosion - - FaceControls - - Decal - - Texture - - Hole - - MotorFeature - - Fire - - FloatCurve - - FlyweightService - - CSGDictionaryService - - NonReplicatedCSGDictionaryService - - Folder - - ForceField - - FunctionalTest - - GetTextBoundsParams - - CanvasGroup - - Frame - - ImageButton - - TextButton - - ImageLabel - - TextLabel - - ScrollingFrame - - TextBox - - VideoFrame - - ViewportFrame - - BillboardGui - - ScreenGui - - GuiMain - - AdGui - - SurfaceGui - - FloorWire - - SelectionBox - - BoxHandleAdornment - - ConeHandleAdornment - - CylinderHandleAdornment - - ImageHandleAdornment - - LineHandleAdornment - - SphereHandleAdornment - - WireframeHandleAdornment - - ParabolaAdornment - - SelectionSphere - - ArcHandles - - Handles - - SurfaceSelection - - SelectionPartLasso - - SelectionPointLasso - - HeightmapImporterService - - HiddenSurfaceRemovalAsset - - Highlight - - Humanoid - - HumanoidDescription - - IKControl - - RotateP - - RotateV - - Glue - - ManualGlue - - ManualWeld - - Motor - - Motor6D - - Rotate - - Snap - - VelocityMotor - - Weld - - Keyframe - - KeyframeMarker - - PointLight - - SpotLight - - SurfaceLight - - LocalizationTable - - Script - - LocalScript - - ModuleScript - - MarkerCurve - - MaterialVariant - - MemoryStoreService - - Message - - Hint - - NoCollisionConstraint - - CornerWedgePart - - Part - - FlagStand - - Seat - - SkateboardPlatform - - SpawnLocation - - WedgePart - - MeshPart - - PartOperation - - IntersectOperation - - NegateOperation - - UnionOperation - - TrussPart - - VehicleSeat - - Model - - Actor - - HopperBin - - Tool - - Flag - - WorldModel - - PartOperationAsset - - ParticleEmitter - - PathfindingLink - - PathfindingModifier - - Player - - PluginAction - - NumberPose - - Pose - - BloomEffect - - BlurEffect - - ColorCorrectionEffect - - DepthOfFieldEffect - - SunRaysEffect - - ProximityPrompt - - ProximityPromptService - - ReflectionMetadata - - ReflectionMetadataCallbacks - - ReflectionMetadataClasses - - ReflectionMetadataEnums - - ReflectionMetadataEvents - - ReflectionMetadataFunctions - - ReflectionMetadataClass - - ReflectionMetadataEnum - - ReflectionMetadataEnumItem - - ReflectionMetadataMember - - ReflectionMetadataProperties - - ReflectionMetadataYieldFunctions - - RemoteEvent - - RemoteFunction - - RenderingTest - - RotationCurve - - BuoyancySensor - - ControllerPartSensor - - Sky - - Smoke - - Sound - - ChorusSoundEffect - - CompressorSoundEffect - - DistortionSoundEffect - - EchoSoundEffect - - EqualizerSoundEffect - - FlangeSoundEffect - - PitchShiftSoundEffect - - ReverbSoundEffect - - TremoloSoundEffect - - SoundGroup - - Sparkles - - StandalonePluginScripts - - StarterGear - - SurfaceAppearance - - Team - - TeleportOptions - - TerrainDetail - - TerrainRegion - - TestService - - TextChannel - - TextChatCommand - - TextChatMessageProperties - - TrackerStreamAnimation - - Trail - - Tween - - UIAspectRatioConstraint - - UISizeConstraint - - UITextSizeConstraint - - UICorner - - UIGradient - - UIGridLayout - - UIListLayout - - UIPageLayout - - UITableLayout - - UIPadding - - UIScale - - UIStroke - - BinaryStringValue - - BoolValue - - BrickColorValue - - CFrameValue - - Color3Value - - DoubleConstrainedValue - - IntConstrainedValue - - IntValue - - NumberValue - - ObjectValue - - RayValue - - StringValue - - Vector3Value - - Vector3Curve - - VirtualInputManager - - WeldConstraint - must_use: true - NumberRange.new: - args: - - type: number - - required: false - type: number - must_use: true - NumberSequence.new: - args: - - type: any - - required: false - type: number - must_use: true - NumberSequenceKeypoint.new: - args: - - type: number - - type: number - - required: false - type: number - must_use: true - OverlapParams.new: - args: [] - must_use: true - PathWaypoint.new: - args: - - required: false - type: - display: Vector3 - - required: false - type: - display: PathWaypointAction - must_use: true - PhysicalProperties.new: - args: - - type: any - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Random.new: - args: - - required: false - type: number - must_use: true - Ray.new: - args: - - type: - display: Vector3 - - type: - display: Vector3 - must_use: true - RaycastParams.new: - args: [] - must_use: true - Rect.new: - args: - - type: any - - type: any - - required: false - type: number - - required: false - type: number - must_use: true - Region3.new: - args: - - type: - display: Vector3 - - type: - display: Vector3 - must_use: true - Region3int16.new: - args: - - required: false - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - RotationCurveKey.new: - args: - - type: number - - type: - display: CFrame - - type: - display: KeyInterpolationMode - must_use: true - TweenInfo.new: - args: - - required: false - type: number - - required: false - type: - display: EasingStyle - - required: false - type: - display: EasingDirection - - required: false - type: number - - required: false - type: bool - - required: false - type: number - must_use: true - UDim.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - UDim2.fromOffset: - args: - - required: use UDim2.new() if you want an empty UDim2 - type: number - - required: false - type: number - must_use: true - UDim2.fromScale: - args: - - required: use UDim2.new() if you want an empty UDim2 - type: number - - required: false - type: number - must_use: true - UDim2.new: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: number - - required: false - type: number - must_use: true - UserSettings: - args: [] - must_use: true - Vector2.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - Vector2.one: - property: read-only - Vector2.xAxis: - property: read-only - Vector2.yAxis: - property: read-only - Vector2.zero: - property: read-only - Vector2int16.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - Vector3.FromAxis: - args: - - type: - display: Axis - must_use: true - Vector3.FromNormalId: - args: - - type: - display: NormalId - must_use: true - Vector3.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Vector3.one: - property: read-only - Vector3.xAxis: - property: read-only - Vector3.yAxis: - property: read-only - Vector3.zAxis: - property: read-only - Vector3.zero: - property: read-only - Vector3int16.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - _G: - property: new-fields - _VERSION: - property: read-only - arg: - property: new-fields - assert: - args: - - type: any - - required: A failed assertion without a message is unhelpful to users. - type: string - bit32.arshift: - args: - - type: number - - type: number - must_use: true - bit32.band: - args: - - type: '...' - must_use: true - bit32.bnot: - args: - - type: number - must_use: true - bit32.bor: - args: - - type: '...' - must_use: true - bit32.btest: - args: - - type: '...' - must_use: true - bit32.bxor: - args: - - type: '...' - must_use: true - bit32.countlz: - args: - - type: number - must_use: true - bit32.countrz: - args: - - type: number - must_use: true - bit32.extract: - args: - - type: number - - type: number - - required: false - type: number - must_use: true - bit32.lrotate: - args: - - type: number - - type: number - must_use: true - bit32.lshift: - args: - - type: number - - type: number - must_use: true - bit32.replace: - args: - - type: number - - type: number - - type: number - - required: false - type: number - must_use: true - bit32.rrotate: - args: - - type: number - - type: number - must_use: true - bit32.rshift: - args: - - type: number - - type: number - must_use: true - collectgarbage: - args: - - type: - - count - must_use: true - coroutine.close: - args: - - type: - display: thread - coroutine.create: - args: - - type: function - must_use: true - coroutine.isyieldable: - args: [] - coroutine.resume: - args: - - type: - display: coroutine - - required: false - type: '...' - coroutine.running: - args: [] - must_use: true - coroutine.status: - args: - - type: - display: coroutine - must_use: true - coroutine.wrap: - args: - - type: function - coroutine.yield: - args: - - required: false - type: '...' - debug.info: - args: - - type: any - - type: any - - required: false - type: string - must_use: true - debug.profilebegin: - args: - - type: string - debug.profileend: - args: [] - debug.resetmemorycategory: - args: [] - debug.setmemorycategory: - args: - - type: string - debug.traceback: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - must_use: true - delay: - args: - - type: number - - type: function - elapsedTime: - args: [] - error: - args: - - required: Erroring without an explanation is unhelpful to users. - type: any - - required: false - type: number - game: - struct: DataModel - gcinfo: - args: [] - must_use: true - getfenv: - args: - - required: false - type: any - must_use: true - getmetatable: - args: - - type: table - must_use: true - io.close: - args: - - required: false - type: - display: file - io.flush: - args: [] - io.input: - args: - - required: false - type: - display: file - io.lines: - args: - - type: string - io.open: - args: - - type: string - - required: false - type: - - r - - rb - - w - - wb - - a - - ab - - r+ - - rb+ - - w+ - - wb+ - - a+ - - ab+ - io.output: - args: - - required: false - type: - display: file - io.popen: - args: - - type: string - - required: false - type: - - r - - rb - - w - - wb - - a - - ab - - r+ - - rb+ - - w+ - - wb+ - - a+ - - ab+ - io.read: - args: - - type: '...' - io.stderr: - property: read-only - io.stdin: - property: read-only - io.stdout: - property: read-only - io.tmpfile: - args: [] - io.type: - args: - - type: - display: potentially file-like object - io.write: - args: - - type: '...' - ipairs: - args: - - type: table - must_use: true - loadstring: - args: - - type: string - - required: false - type: string - math.abs: - args: - - type: number - must_use: true - math.acos: - args: - - type: number - must_use: true - math.asin: - args: - - type: number - must_use: true - math.atan: - args: - - type: number - must_use: true - math.atan2: - args: - - type: number - - type: number - must_use: true - math.ceil: - args: - - type: number - must_use: true - math.clamp: - args: - - type: number - - type: number - - type: number - must_use: true - math.cos: - args: - - type: number - must_use: true - math.cosh: - args: - - type: number - must_use: true - math.deg: - args: - - type: number - must_use: true - math.exp: - args: - - type: number - must_use: true - math.floor: - args: - - type: number - must_use: true - math.fmod: - args: - - type: number - - type: number - must_use: true - math.frexp: - args: - - type: number - must_use: true - math.huge: - property: read-only - math.ldexp: - args: - - type: number - - type: number - must_use: true - math.log: - args: - - type: number - - required: false - type: number - must_use: true - math.log10: - args: - - type: number - must_use: true - math.max: - args: - - type: number - - required: use of max only makes sense with more than 1 parameter - type: '...' - must_use: true - math.min: - args: - - type: number - - required: use of min only makes sense with more than 1 parameter - type: '...' - must_use: true - math.modf: - args: - - type: number - must_use: true - math.noise: - args: - - type: number - - required: false - type: number - - required: false - type: number - must_use: true - math.pi: - property: read-only - math.pow: - args: - - type: number - - type: number - must_use: true - math.rad: - args: - - type: number - must_use: true - math.random: - args: - - required: false - type: number - - required: false - type: number - must_use: true - math.randomseed: - args: - - type: number - math.round: - args: - - type: number - must_use: true - math.sign: - args: - - type: number - must_use: true - math.sin: - args: - - type: number - must_use: true - math.sinh: - args: - - type: number - must_use: true - math.sqrt: - args: - - type: number - must_use: true - math.tan: - args: - - type: number - must_use: true - math.tanh: - args: - - type: number - must_use: true - newproxy: - args: - - required: false - type: bool - must_use: true - next: - args: - - type: table - - required: false - type: number - os.clock: - args: [] - must_use: true - os.date: - args: - - required: false - type: string - - required: false - type: number - must_use: true - os.difftime: - args: - - type: number - - type: number - must_use: true - os.time: - args: - - required: false - type: table - must_use: true - package.cpath: - property: full-write - package.loaded: - property: new-fields - package.loaders: - property: new-fields - package.loadlib: - args: - - type: string - - type: string - package.path: - property: full-write - package.preload: - property: new-fields - package.seeall: - args: - - type: table - pairs: - args: - - type: table - must_use: true - pcall: - args: - - type: function - - required: false - type: '...' - plugin: - struct: Plugin - print: - args: - - required: false - type: '...' - rawequal: - args: - - type: any - - type: any - must_use: true - rawget: - args: - - type: any - - type: any - must_use: true - rawlen: - args: - - type: table - must_use: true - rawset: - args: - - type: any - - type: any - - type: any - require: - args: - - type: number - script: - struct: Script - select: - args: - - type: any - - type: '...' - must_use: true - setfenv: - args: - - type: any - - type: table - setmetatable: - args: - - type: table - - required: false - type: table - settings: - args: [] - shared: - property: new-fields - spawn: - args: - - type: function - string.byte: - args: - - type: string - - required: false - type: number - - required: false - type: number - string.char: - args: - - required: string.char should be used with an argument despite it not throwing - type: number - - required: false - type: '...' - must_use: true - string.find: - args: - - type: string - - type: string - - required: false - type: number - - required: false - type: bool - must_use: true - string.format: - args: - - type: string - - required: string.format should only be used for strings that need formatting - type: '...' - must_use: true - string.gmatch: - args: - - type: string - - type: string - must_use: true - string.gsub: - args: - - type: string - - type: string - - type: any - - required: false - type: number - must_use: true - string.len: - args: - - type: string - must_use: true - string.lower: - args: - - type: string - must_use: true - string.match: - args: - - type: string - - type: string - - required: false - type: number - must_use: true - string.pack: - args: - - type: string - - type: '...' - must_use: true - string.packsize: - args: - - type: string - must_use: true - string.rep: - args: - - type: string - - type: number - must_use: true - string.reverse: - args: - - type: string - must_use: true - string.split: - args: - - type: string - - required: false - type: string - must_use: true - string.sub: - args: - - type: string - - type: number - - required: false - type: number - must_use: true - string.unpack: - args: - - type: string - - type: string - - required: false - type: number - must_use: true - string.upper: - args: - - type: string - must_use: true - table.clear: - args: - - type: table - table.clone: - args: - - type: table - must_use: true - table.concat: - args: - - type: table - - required: false - type: string - - required: false - type: number - - required: false - type: number - must_use: true - table.create: - args: - - type: number - - required: false - type: any - must_use: true - table.find: - args: - - type: table - - type: any - - required: false - type: number - must_use: true - table.foreach: - args: - - type: table - - type: function - deprecated: - message: use a for loop instead. - replace: [] - table.foreachi: - args: - - type: table - - type: function - deprecated: - message: use a for loop instead. - replace: [] - table.freeze: - args: - - type: table - table.getn: - args: - - type: table - - type: number - must_use: true - deprecated: - message: '`table.getn` has been superceded by #.' - replace: - - '#%1' - table.insert: - args: - - type: table - observes: write - - type: any - - required: false - type: any - table.isfrozen: - args: - - type: table - must_use: true - table.maxn: - args: - - type: table - must_use: true - table.move: - args: - - type: table - - type: number - - type: number - - type: number - - required: false - type: table - table.pack: - args: - - type: '...' - must_use: true - table.remove: - args: - - type: table - - required: false - type: number - table.sort: - args: - - type: table - - required: false - type: function - table.unpack: - args: - - type: table - - required: false - type: number - - required: false - type: number - must_use: true - task.cancel: - args: - - type: - display: thread - task.defer: - args: - - type: function - - required: false - type: '...' - task.delay: - args: - - required: false - type: number - - type: function - - required: false - type: '...' - task.desynchronize: - args: [] - task.spawn: - args: - - type: function - - required: false - type: '...' - task.synchronize: - args: [] - task.wait: - args: - - required: false - type: number - tick: - args: [] - time: - args: [] - tonumber: - args: - - type: any - - required: false - type: number - must_use: true - tostring: - args: - - type: any - must_use: true - type: - args: - - type: any - typeof: - args: - - type: any - unpack: - args: - - type: table - - required: false - type: number - - required: false - type: number - must_use: true - utf8.char: - args: - - required: utf8.char should be used with an argument despite it not throwing - type: number - - required: false - type: '...' - must_use: true - utf8.charpattern: - property: read-only - utf8.codepoint: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.codes: - args: - - type: string - must_use: true - utf8.graphemes: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.len: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.nfcnormalize: - args: - - type: string - must_use: true - utf8.nfdnormalize: - args: - - type: string - must_use: true - utf8.offset: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - wait: - args: - - required: false - type: number - warn: - args: - - type: any - - required: false - type: '...' - workspace: - struct: Workspace - xpcall: - args: - - type: function - - required: false - type: '...' -structs: - BasePart: - '*': - struct: Instance - AncestryChanged: - struct: Event - Anchored: - property: override-fields - ApplyAngularImpulse: - args: - - required: false - type: any - method: true - ApplyImpulse: - args: - - required: false - type: any - method: true - ApplyImpulseAtPosition: - args: - - required: false - type: any - - required: false - type: any - method: true - Archivable: - property: override-fields - AssemblyAngularVelocity: - any: true - AssemblyCenterOfMass: - any: true - AssemblyLinearVelocity: - any: true - AssemblyMass: - property: read-only - AssemblyRootPart: - struct: BasePart - AttributeChanged: - struct: Event - BackParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackSurface: - property: override-fields - BackSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomSurface: - property: override-fields - BottomSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BrickColor: - property: override-fields - CFrame: - any: true - CanCollide: - property: override-fields - CanCollideWith: - args: - - required: false - type: any - method: true - CanQuery: - property: override-fields - CanSetNetworkOwnership: - args: [] - method: true - CanTouch: - property: override-fields - CastShadow: - property: override-fields - CenterOfMass: - any: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionGroup: - property: override-fields - CollisionGroupId: - property: override-fields - Color: - property: override-fields - CurrentPhysicalProperties: - property: read-only - CustomPhysicalProperties: - property: override-fields - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Elasticity: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - ExtentsCFrame: - any: true - ExtentsSize: - any: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - Friction: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontSurface: - property: override-fields - FrontSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetConnectedParts: - args: - - required: false - type: any - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetJoints: - args: [] - method: true - GetMass: - args: [] - method: true - GetNetworkOwner: - args: [] - method: true - GetNetworkOwnershipAuto: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetRootPart: - args: [] - method: true - GetTouchingParts: - args: [] - method: true - GetVelocityAtPosition: - args: - - required: false - type: any - method: true - IntersectAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGrounded: - args: [] - method: true - LeftParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftSurface: - property: override-fields - LeftSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LocalSimulationTouched: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - LocalTransparencyModifier: - property: override-fields - Locked: - property: override-fields - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Mass: - property: read-only - Massless: - property: override-fields - Material: - property: override-fields - MaterialVariant: - property: override-fields - Name: - property: override-fields - Orientation: - any: true - Origin: - any: true - OutfitChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - Pivot Offset: - any: true - PivotOffset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - Position: - any: true - ReceiveAge: - property: read-only - Reflectance: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Resize: - args: - - required: false - type: any - - required: false - type: any - method: true - ResizeIncrement: - property: read-only - ResizeableFaces: - property: read-only - RightParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightSurface: - property: override-fields - RightSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RootPriority: - property: override-fields - RotVelocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - Rotation: - any: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetNetworkOwner: - args: - - required: false - type: any - method: true - SetNetworkOwnershipAuto: - args: [] - method: true - Size: - any: true - SpecificGravity: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - StoppedTouching: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - SubtractAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - TopParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopSurface: - property: override-fields - TopSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TouchEnded: - struct: Event - Touched: - struct: Event - Transparency: - property: override-fields - UnionAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Velocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - brickColor: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getMass: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - resize: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - subtractAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - unionAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Camera: - '*': - struct: Instance - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - CFrame: - any: true - CameraSubject: - struct: Instance - CameraType: - property: override-fields - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CoordinateFrame: - any: true - deprecated: - message: this property is deprecated. - replace: [] - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - DiagonalFieldOfView: - property: override-fields - FieldOfView: - property: override-fields - FieldOfViewMode: - property: override-fields - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FirstPersonTransition: - struct: Event - Focus: - any: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetLargestCutoffDistance: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetPanSpeed: - args: [] - method: true - GetPartsObscuringTarget: - args: - - required: false - type: any - - required: false - type: any - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - GetRoll: - args: [] - method: true - GetTiltSpeed: - args: [] - method: true - HeadLocked: - property: override-fields - HeadScale: - property: override-fields - Interpolate: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - InterpolationFinished: - struct: Event - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - MaxAxisFieldOfView: - property: override-fields - Name: - property: override-fields - NearPlaneZ: - property: read-only - PanUnits: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ScreenPointToRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetCameraPanMode: - args: - - required: false - type: any - method: true - SetImageServerView: - args: - - required: false - type: any - method: true - SetRoll: - args: - - required: false - type: any - method: true - TiltUnits: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - ViewportPointToRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - ViewportSize: - any: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WorldToScreenPoint: - args: - - required: false - type: any - method: true - WorldToViewportPoint: - args: - - required: false - type: any - method: true - Zoom: - args: - - required: false - type: any - method: true - ZoomToExtents: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - focus: - any: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - DataModel: - '*': - struct: Instance - AllowedGearTypeChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - BindToClose: - args: - - required: false - type: any - method: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - Close: - struct: Event - CloseLate: - struct: Event - CreatorId: - property: read-only - CreatorType: - property: read-only - DefineFastFlag: - args: - - required: false - type: any - - required: false - type: any - method: true - DefineFastInt: - args: - - required: false - type: any - - required: false - type: any - method: true - DefineFastString: - args: - - required: false - type: any - - required: false - type: any - method: true - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FindService: - args: - - required: false - type: any - method: true - GameId: - property: read-only - GearGenreSetting: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - Genre: - property: read-only - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetEngineFeature: - args: - - required: false - type: any - method: true - GetFastFlag: - args: - - required: false - type: any - method: true - GetFastInt: - args: - - required: false - type: any - method: true - GetFastString: - args: - - required: false - type: any - method: true - GetFullName: - args: [] - method: true - GetJobsInfo: - args: [] - method: true - GetMessage: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetObjects: - args: - - required: false - type: any - method: true - GetObjectsAllOrNone: - args: - - required: false - type: any - - required: false - type: any - method: true - GetObjectsAsync: - args: - - required: false - type: any - method: true - GetObjectsList: - args: - - required: false - type: any - method: true - GetPlaySessionId: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRemoteBuildMode: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetService: - args: - - type: - - AdService - - AnalyticsService - - AnimationClipProvider - - AnimationFromVideoCreatorService - - AnimationFromVideoCreatorStudioService - - AppUpdateService - - AssetCounterService - - AssetDeliveryProxy - - AssetImportService - - AssetManagerService - - AssetService - - AvatarEditorService - - AvatarImportService - - BadgeService - - CoreGui - - StarterGui - - BrowserService - - BulkImportService - - CacheableContentProvider - - HSRDataContentProvider - - MeshContentProvider - - SolidModelContentProvider - - CalloutService - - ChangeHistoryService - - Chat - - ClusterPacketCache - - CollectionService - - CommandService - - ConfigureServerService - - ContentProvider - - ContextActionService - - ControllerService - - CookiesService - - CorePackages - - CoreScriptDebuggingManagerHelper - - CoreScriptSyncService - - CrossDMScriptChangeListener - - DataModelPatchService - - DataStoreService - - Debris - - DebuggablePluginWatcher - - DebuggerConnectionManager - - DebuggerManager - - DebuggerUIService - - DeviceIdService - - DraftsService - - DraggerService - - EventIngestService - - ExperienceAuthService - - FaceAnimatorService - - FacialAnimationRecordingService - - FacialAnimationStreamingService - - FacialAnimationStreamingServiceV2 - - FlagStandService - - FlyweightService - - CSGDictionaryService - - NonReplicatedCSGDictionaryService - - FriendService - - GamePassService - - GamepadService - - Geometry - - GoogleAnalyticsConfiguration - - GroupService - - GuiService - - GuidRegistryService - - HapticService - - HeightmapImporterService - - Hopper - - HttpRbxApiService - - HttpService - - ILegacyStudioBridge - - LegacyStudioBridge - - IXPService - - IncrementalPatchBuilder - - InsertService - - JointsService - - KeyboardService - - KeyframeSequenceProvider - - LSPFileSyncService - - LanguageService - - Lighting - - LiveScriptingService - - LocalStorageService - - AppStorageService - - UserStorageService - - LocalizationService - - LodDataService - - LogService - - LoginService - - LuaWebService - - LuauScriptAnalyzerService - - MarketplaceService - - MaterialGenerationService - - MaterialService - - MemStorageService - - MemoryStoreService - - MessageBusService - - MessagingService - - MetaBreakpointManager - - MouseService - - NetworkClient - - NetworkServer - - NetworkSettings - - NotificationService - - Workspace - - PackageService - - PackageUIService - - PatchBundlerFileWatch - - PathfindingService - - PermissionsService - - PhysicsService - - PlayerEmulatorService - - Players - - PluginDebugService - - PluginGuiService - - PluginManagementService - - PluginPolicyService - - PointsService - - PolicyService - - ProcessInstancePhysicsService - - ProximityPromptService - - PublishService - - RbxAnalyticsService - - RemoteCursorService - - RemoteDebuggerServer - - RenderSettings - - ReplicatedFirst - - ReplicatedStorage - - RobloxPluginGuiService - - RobloxReplicatedStorage - - RtMessagingService - - RunService - - RuntimeScriptService - - SafetyService - - ScriptChangeService - - ScriptCloneWatcher - - ScriptCloneWatcherHelper - - ScriptContext - - ScriptEditorService - - ScriptRegistrationService - - ScriptService - - Selection - - SelectionHighlightManager - - ServerScriptService - - ServerStorage - - ServiceVisibilityService - - SessionService - - SharedTableRegistry - - ShorelineUpgraderService - - SmoothVoxelsUpgraderService - - SnippetService - - SocialService - - SoundService - - SpawnerService - - StarterPack - - StarterPlayer - - Stats - - Studio - - StudioAssetService - - StudioData - - StudioDeviceEmulatorService - - StudioPublishService - - StudioScriptDebugEventListener - - StudioSdkService - - StudioService - - TaskScheduler - - TeamCreateData - - TeamCreatePublishService - - TeamCreateService - - Teams - - TeleportService - - TemporaryCageMeshProvider - - TemporaryScriptService - - TestService - - TextBoxService - - TextChatService - - TextService - - ThirdPartyUserService - - TimerService - - ToastNotificationService - - TouchInputService - - TracerService - - TweenService - - UGCValidationService - - UnvalidatedAssetService - - UserInputService - - UserService - - VRService - - VersionControlService - - VideoCaptureService - - VirtualInputManager - - VirtualUser - - VisibilityCheckDispatcher - - VisibilityService - - Visit - - VoiceChatInternal - - VoiceChatService - method: true - must_use: true - GraphicsQualityChangeRequest: - struct: Event - HttpGetAsync: - args: - - required: false - type: any - - required: false - type: any - method: true - HttpPostAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - InsertObjectsAndJoinIfLegacyAsync: - args: - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsContentLoaded: - args: [] - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGearTypeAllowed: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IsLoaded: - args: [] - method: true - IsUniverseMetadataLoaded: - args: [] - method: true - ItemChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - JobId: - property: read-only - Load: - args: - - required: false - type: any - method: true - Loaded: - struct: Event - Name: - property: override-fields - OnClose: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - OpenScreenshotsFolder: - args: [] - method: true - OpenVideosFolder: - args: [] - method: true - Parent: - struct: Instance - PlaceId: - property: read-only - PlaceVersion: - property: read-only - PrivateServerId: - property: read-only - PrivateServerOwnerId: - property: read-only - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ReportInGoogleAnalytics: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SavePlace: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - ScreenshotReady: - struct: Event - ScreenshotSavedToAlbum: - struct: Event - ServiceAdded: - struct: Event - ServiceRemoving: - struct: Event - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastFlagForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastIntForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastStringForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetIsLoaded: - args: - - required: false - type: any - - required: false - type: any - method: true - SetPlaceId: - args: - - required: false - type: any - method: true - SetUniverseId: - args: - - required: false - type: any - method: true - Shutdown: - args: [] - method: true - UniverseMetadataLoaded: - struct: Event - VIPServerId: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - VIPServerOwnerId: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - Workspace: - struct: Workspace - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getService: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - lighting: - struct: Instance - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - service: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - workspace: - struct: Workspace - deprecated: - message: this property is deprecated. - replace: [] - EnumItem: - Name: - property: read-only - Value: - property: read-only - Event: - Connect: - args: - - type: function - method: true - Once: - args: - - type: function - method: true - Wait: - args: [] - method: true - connect: - args: - - type: function - method: true - deprecated: - message: lowercase methods have been superceded by uppercase ones - replace: - - Connect(%1) - wait: - args: - - type: function - method: true - deprecated: - message: lowercase methods have been superceded by uppercase ones - replace: - - Wait(%1) - Instance: - '*': - any: true - Plugin: - '*': - struct: Instance - Activate: - args: - - required: false - type: any - method: true - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionEnabled: - property: read-only - CreateDockWidgetPluginGui: - args: - - required: false - type: any - - required: false - type: any - method: true - CreatePluginAction: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CreatePluginMenu: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CreateQWidgetPluginGui: - args: - - required: false - type: any - - required: false - type: any - method: true - CreateToolbar: - args: - - required: false - type: any - method: true - Deactivate: - args: [] - method: true - Deactivation: - struct: Event - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - GetJoinMode: - args: [] - method: true - GetMouse: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetSelectedRibbonTool: - args: [] - method: true - GetSetting: - args: - - required: false - type: any - method: true - GetStudioUserId: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GridSize: - property: read-only - ImportFbxAnimation: - args: - - required: false - type: any - - required: false - type: any - method: true - ImportFbxRig: - args: - - required: false - type: any - method: true - Intersect: - args: - - required: false - type: any - method: true - Invoke: - args: - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsActivated: - args: [] - method: true - IsActivatedWithExclusiveMouse: - args: [] - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - Name: - property: override-fields - Negate: - args: - - required: false - type: any - method: true - OnInvoke: - args: - - required: false - type: any - - required: false - type: any - method: true - OnSetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - OpenScript: - args: - - required: false - type: any - - required: false - type: any - method: true - OpenWikiPage: - args: - - required: false - type: any - method: true - Parent: - struct: Instance - PauseSound: - args: - - required: false - type: any - method: true - PlaySound: - args: - - required: false - type: any - - required: false - type: any - method: true - ProcessAssetInsertionDrag: - property: override-fields - ProcessAssetInsertionDrop: - property: override-fields - PromptForExistingAssetId: - args: - - required: false - type: any - method: true - PromptSaveSelection: - args: - - required: false - type: any - method: true - Ready: - struct: Event - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ResumeSound: - args: - - required: false - type: any - method: true - SaveSelectedToRoblox: - args: [] - method: true - SelectRibbonTool: - args: - - required: false - type: any - - required: false - type: any - method: true - Separate: - args: - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - SetReady: - args: [] - method: true - SetSetting: - args: - - required: false - type: any - - required: false - type: any - method: true - StartDecalDrag: - args: - - required: false - type: any - method: true - StartDrag: - args: - - required: false - type: any - method: true - StopAllSounds: - args: [] - method: true - Union: - args: - - required: false - type: any - method: true - Unloading: - struct: Event - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Script: - '*': - struct: Instance - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CurrentEditor: - struct: Instance - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Disabled: - property: override-fields - Enabled: - property: override-fields - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetHash: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - LinkedSource: - property: override-fields - Name: - property: override-fields - Parent: - struct: Instance - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Terrain: - '*': - struct: Instance - AncestryChanged: - struct: Event - Anchored: - property: override-fields - ApplyAngularImpulse: - args: - - required: false - type: any - method: true - ApplyImpulse: - args: - - required: false - type: any - method: true - ApplyImpulseAtPosition: - args: - - required: false - type: any - - required: false - type: any - method: true - Archivable: - property: override-fields - AssemblyAngularVelocity: - any: true - AssemblyCenterOfMass: - any: true - AssemblyLinearVelocity: - any: true - AssemblyMass: - property: read-only - AssemblyRootPart: - struct: BasePart - AttributeChanged: - struct: Event - AutowedgeCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - AutowedgeCells: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - BackParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackSurface: - property: override-fields - BackSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomSurface: - property: override-fields - BottomSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BrickColor: - property: override-fields - CFrame: - any: true - CanCollide: - property: override-fields - CanCollideWith: - args: - - required: false - type: any - method: true - CanQuery: - property: override-fields - CanSetNetworkOwnership: - args: [] - method: true - CanShorelinesBeUpgraded: - args: [] - method: true - CanSmoothVoxelsBeUpgraded: - args: [] - method: true - CanTouch: - property: override-fields - CastShadow: - property: override-fields - CellCenterToWorld: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CellCornerToWorld: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CenterOfMass: - any: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - Clear: - args: [] - method: true - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionGroup: - property: override-fields - CollisionGroupId: - property: override-fields - Color: - property: override-fields - ConvertToSmooth: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - CopyRegion: - args: - - required: false - type: any - method: true - CountCells: - args: [] - method: true - CurrentPhysicalProperties: - property: read-only - CustomPhysicalProperties: - property: override-fields - Decoration: - property: override-fields - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Elasticity: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - ExtentsCFrame: - any: true - ExtentsSize: - any: true - FillBall: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillBlock: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillCylinder: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillWedge: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - Friction: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontSurface: - property: override-fields - FrontSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetChildren: - args: [] - method: true - GetConnectedParts: - args: - - required: false - type: any - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetJoints: - args: [] - method: true - GetMass: - args: [] - method: true - GetMaterialColor: - args: - - required: false - type: any - method: true - GetNetworkOwner: - args: [] - method: true - GetNetworkOwnershipAuto: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetRootPart: - args: [] - method: true - GetTerrainWireframe: - args: - - required: false - type: any - - required: false - type: any - method: true - GetTouchingParts: - args: [] - method: true - GetVelocityAtPosition: - args: - - required: false - type: any - method: true - GetWaterCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IntersectAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGrounded: - args: [] - method: true - IsSmooth: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - LeftParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftSurface: - property: override-fields - LeftSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LocalSimulationTouched: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - LocalTransparencyModifier: - property: override-fields - Locked: - property: override-fields - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Mass: - property: read-only - Massless: - property: override-fields - Material: - property: override-fields - MaterialColors: - property: override-fields - MaterialVariant: - property: override-fields - MaxExtents: - property: read-only - Name: - property: override-fields - Orientation: - any: true - Origin: - any: true - OutfitChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - PasteRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Pivot Offset: - any: true - PivotOffset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - Position: - any: true - ReadVoxels: - args: - - required: false - type: any - - required: false - type: any - method: true - ReceiveAge: - property: read-only - Reflectance: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ReplaceMaterial: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - ReplaceMaterialInTransform: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Resize: - args: - - required: false - type: any - - required: false - type: any - method: true - ResizeIncrement: - property: read-only - ResizeableFaces: - property: read-only - RightParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightSurface: - property: override-fields - RightSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RootPriority: - property: override-fields - RotVelocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - Rotation: - any: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetCells: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetMaterialColor: - args: - - required: false - type: any - - required: false - type: any - method: true - SetMaterialInTransform: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SetNetworkOwner: - args: - - required: false - type: any - method: true - SetNetworkOwnershipAuto: - args: [] - method: true - SetWaterCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - Size: - any: true - SmoothRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SpecificGravity: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - StoppedTouching: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - SubtractAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - TopParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopSurface: - property: override-fields - TopSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TouchEnded: - struct: Event - Touched: - struct: Event - Transparency: - property: override-fields - UnionAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Velocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WaterColor: - property: override-fields - WaterReflectance: - property: override-fields - WaterTransparency: - property: override-fields - WaterWaveSize: - property: override-fields - WaterWaveSpeed: - property: override-fields - WorldToCell: - args: - - required: false - type: any - method: true - WorldToCellPreferEmpty: - args: - - required: false - type: any - method: true - WorldToCellPreferSolid: - args: - - required: false - type: any - method: true - WriteVoxels: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - brickColor: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getMass: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - resize: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - subtractAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - unionAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Workspace: - '*': - struct: Instance - AddPersistentPlayer: - args: - - required: false - type: any - method: true - AllowThirdPartySales: - property: override-fields - AncestryChanged: - struct: Event - Archivable: - property: override-fields - ArePartsTouchingOthers: - args: - - required: false - type: any - - required: false - type: any - method: true - AttributeChanged: - struct: Event - Blockcast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BulkMoveTo: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CacheCurrentTerrain: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpDistance: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpHeight: - args: - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpPower: - args: - - required: false - type: any - - required: false - type: any - method: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - ClearCachedTerrain: - args: - - required: false - type: any - method: true - ClientAnimatorThrottling: - property: override-fields - Clone: - args: [] - method: true - CurrentCamera: - struct: Camera - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - DistributedGameTime: - property: override-fields - ExperimentalSolverIsEnabled: - args: [] - method: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FindPartOnRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartOnRayWithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartOnRayWithWhitelist: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3WithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3WithWhiteList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetBoundingBox: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetExtentsSize: - args: [] - method: true - GetFullName: - args: [] - method: true - GetModelCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetModelSize: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetNumAwakeParts: - args: [] - method: true - GetPartBoundsInBox: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - GetPartBoundsInRadius: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - GetPartsInPart: - args: - - required: false - type: any - - required: false - type: any - method: true - GetPhysicsThrottling: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPrimaryPartCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRealPhysicsFPS: - args: [] - method: true - GetScale: - args: [] - method: true - GetServerTimeNow: - args: [] - method: true - GlobalWind: - any: true - Gravity: - property: override-fields - HumanoidOnlySetCollisionsOnStateChange: - property: override-fields - IKMoveTo: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsRegion3Empty: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IsRegion3EmptyWithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - JoinToOutsiders: - args: - - required: false - type: any - - required: false - type: any - method: true - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - MeshPartHeadsAndAccessories: - property: override-fields - ModelStreamingMode: - property: override-fields - MoveTo: - args: - - required: false - type: any - method: true - Name: - property: override-fields - Origin: - any: true - PGSIsEnabled: - args: [] - method: true - Parent: - struct: Instance - PersistentLoaded: - struct: Event - PhysicsSteppingMethod: - property: override-fields - Pivot Offset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - PrimaryPart: - struct: BasePart - Raycast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - RaycastCachedTerrain: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - RejectCharacterDeletions: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - RemovePersistentPlayer: - args: - - required: false - type: any - method: true - ReplicateInstanceDestroySetting: - property: override-fields - ResetOrientationToIdentity: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Retargeting: - property: override-fields - Scale: - property: override-fields - ScaleTo: - args: - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetIdentityOrientation: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetInsertPoint: - args: - - required: false - type: any - - required: false - type: any - method: true - SetMeshPartHeadsAndAccessories: - args: - - required: false - type: any - method: true - SetPhysicsThrottleEnabled: - args: - - required: false - type: any - method: true - SetPrimaryPartCFrame: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SignalBehavior: - property: override-fields - Spherecast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - StreamOutBehavior: - property: override-fields - StreamingIntegrityMode: - property: override-fields - StreamingMinRadius: - property: override-fields - StreamingTargetRadius: - property: override-fields - Terrain: - struct: Terrain - TouchesUseCollisionGroups: - property: override-fields - TranslateBy: - args: - - required: false - type: any - method: true - UnjoinFromOutsiders: - args: - - required: false - type: any - method: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WorldPivot: - any: true - ZoomToExtents: - args: [] - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - findPartOnRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - findPartsInRegion3: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - move: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - moveTo: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] -last_updated: 1681227519 -last_selene_version: 0.25.0 -roblox_classes: - Accessory: - superclass: Accoutrement - events: [] - properties: - - AccessoryType - Accoutrement: - superclass: Instance - events: [] - properties: - - AttachmentForward - - AttachmentPoint - - AttachmentPos - - AttachmentRight - - AttachmentUp - Actor: - superclass: Model - events: [] - properties: [] - AdGui: - superclass: SurfaceGuiBase - events: [] - properties: - - AdShape - - Status - AdPortal: - superclass: Instance - events: [] - properties: - - PortalInvalidReason - - PortalStatus - - PortalVersion - - Status - AdService: - superclass: Instance - events: - - AdTeleportEnded - - AdTeleportInitiated - - VideoAdClosed - properties: [] - AdvancedDragger: - superclass: Instance - events: [] - properties: [] - AirController: - superclass: ControllerBase - events: [] - properties: - - MaintainAngularMomentum - - MaintainLinearMomentum - - MoveMaxForce - - OrientationMaxTorque - - OrientationSpeedFactor - - VectorForce - AlignOrientation: - superclass: Constraint - events: [] - properties: - - AlignType - - CFrame - - MaxAngularVelocity - - MaxTorque - - Mode - - PrimaryAxis - - PrimaryAxisOnly - - ReactionTorqueEnabled - - Responsiveness - - RigidityEnabled - - SecondaryAxis - AlignPosition: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - MaxForce - - MaxVelocity - - Mode - - Position - - ReactionForceEnabled - - Responsiveness - - RigidityEnabled - AnalysticsSettings: - superclass: GenericSettings - events: [] - properties: [] - AnalyticsService: - superclass: Instance - events: [] - properties: - - ApiKey - AngularVelocity: - superclass: Constraint - events: [] - properties: - - AngularVelocity - - MaxTorque - - ReactionTorqueEnabled - - RelativeTo - Animation: - superclass: Instance - events: [] - properties: - - AnimationId - AnimationClip: - superclass: Instance - events: [] - properties: - - Guid - - Loop - - Priority - AnimationClipProvider: - superclass: Instance - events: [] - properties: [] - AnimationConstraint: - superclass: Constraint - events: [] - properties: - - IsKinematic - - MaxForce - - MaxTorque - - Transform - AnimationController: - superclass: Instance - events: - - AnimationPlayed - properties: [] - AnimationFromVideoCreatorService: - superclass: Instance - events: [] - properties: [] - AnimationFromVideoCreatorStudioService: - superclass: Instance - events: [] - properties: [] - AnimationRigData: - superclass: Instance - events: [] - properties: [] - AnimationStreamTrack: - superclass: Instance - events: - - Stopped - properties: - - Animation - - IsPlaying - - Priority - - WeightCurrent - - WeightTarget - AnimationTrack: - superclass: Instance - events: - - DidLoop - - Ended - - KeyframeReached - - Stopped - properties: - - Animation - - IsPlaying - - Length - - Looped - - Priority - - Speed - - TimePosition - - WeightCurrent - - WeightTarget - Animator: - superclass: Instance - events: - - AnimationPlayed - - AnimationPlayedCoreScript - - AnimationStreamTrackPlayed - properties: - - EvaluationThrottled - - PreferLodEnabled - AppStorageService: - superclass: LocalStorageService - events: [] - properties: [] - AppUpdateService: - superclass: Instance - events: [] - properties: [] - ArcHandles: - superclass: HandlesBase - events: - - MouseButton1Down - - MouseButton1Up - - MouseDrag - - MouseEnter - - MouseLeave - properties: - - Axes - AssetCounterService: - superclass: Instance - events: [] - properties: [] - AssetDeliveryProxy: - superclass: Instance - events: [] - properties: - - Interface - - Port - - StartServer - AssetImportService: - superclass: Instance - events: [] - properties: [] - AssetImportSession: - superclass: Instance - events: - - UploadComplete - - UploadCompleteDeprecated - - UploadProgress - properties: [] - AssetManagerService: - superclass: Instance - events: - - AssetImportedSignal - - ImportSessionFinished - - ImportSessionStarted - - MayBeLinkedSourceModified - properties: [] - AssetPatchSettings: - superclass: Instance - events: [] - properties: - - ContentId - - OutputPath - - PatchId - AssetService: - superclass: Instance - events: - - OpenPublishResultModal - properties: [] - AssetSoundEffect: - superclass: CustomSoundEffect - events: [] - properties: [] - Atmosphere: - superclass: Instance - events: [] - properties: - - Color - - Decay - - Density - - Glare - - Haze - - Offset - Attachment: - superclass: Instance - events: [] - properties: - - Axis - - CFrame - - Orientation - - Position - - Rotation - - SecondaryAxis - - Visible - - WorldAxis - - WorldCFrame - - WorldOrientation - - WorldPosition - - WorldRotation - - WorldSecondaryAxis - AudioPages: - superclass: Pages - events: [] - properties: [] - AudioSearchParams: - superclass: Instance - events: [] - properties: - - Album - - Artist - - AudioSubtype - - MaxDuration - - MinDuration - - SearchKeyword - - Tag - - Title - AvatarEditorService: - superclass: Instance - events: - - OpenAllowInventoryReadAccess - - OpenPromptCreateOufit - - OpenPromptDeleteOutfit - - OpenPromptRenameOutfit - - OpenPromptSaveAvatar - - OpenPromptSetFavorite - - OpenPromptUpdateOutfit - - PromptAllowInventoryReadAccessCompleted - - PromptCreateOutfitCompleted - - PromptDeleteOutfitCompleted - - PromptRenameOutfitCompleted - - PromptSaveAvatarCompleted - - PromptSaveAvatarThumbnailCustomizationCompleted - - PromptSetFavoriteCompleted - - PromptUpdateOutfitCompleted - properties: [] - AvatarImportService: - superclass: Instance - events: [] - properties: [] - Backpack: - superclass: Instance - events: [] - properties: [] - BackpackItem: - superclass: Model - events: [] - properties: - - TextureId - BadgeService: - superclass: Instance - events: - - BadgeAwarded - - OnBadgeAwarded - properties: [] - BallSocketConstraint: - superclass: Constraint - events: [] - properties: - - LimitsEnabled - - MaxFrictionTorque - - Radius - - Restitution - - TwistLimitsEnabled - - TwistLowerAngle - - TwistUpperAngle - - UpperAngle - BasePart: - superclass: PVInstance - events: - - LocalSimulationTouched - - OutfitChanged - - StoppedTouching - - TouchEnded - - Touched - properties: - - Anchored - - AssemblyAngularVelocity - - AssemblyCenterOfMass - - AssemblyLinearVelocity - - AssemblyMass - - AssemblyRootPart - - BackParamA - - BackParamB - - BackSurface - - BackSurfaceInput - - BottomParamA - - BottomParamB - - BottomSurface - - BottomSurfaceInput - - BrickColor - - CFrame - - CanCollide - - CanQuery - - CanTouch - - CastShadow - - CenterOfMass - - CollisionGroup - - CollisionGroupId - - Color - - CurrentPhysicalProperties - - CustomPhysicalProperties - - Elasticity - - ExtentsCFrame - - ExtentsSize - - Friction - - FrontParamA - - FrontParamB - - FrontSurface - - FrontSurfaceInput - - LeftParamA - - LeftParamB - - LeftSurface - - LeftSurfaceInput - - LocalTransparencyModifier - - Locked - - Mass - - Massless - - Material - - MaterialVariant - - Orientation - - PivotOffset - - Position - - ReceiveAge - - Reflectance - - ResizeIncrement - - ResizeableFaces - - RightParamA - - RightParamB - - RightSurface - - RightSurfaceInput - - RootPriority - - RotVelocity - - Rotation - - Size - - SpecificGravity - - TopParamA - - TopParamB - - TopSurface - - TopSurfaceInput - - Transparency - - Velocity - - brickColor - BasePlayerGui: - superclass: Instance - events: [] - properties: [] - BaseScript: - superclass: LuaSourceContainer - events: [] - properties: - - Disabled - - Enabled - - LinkedSource - - RunContext - BaseWrap: - superclass: Instance - events: [] - properties: - - CageMeshId - - CageOrigin - - CageOriginWorld - - HSRAssetId - - ImportOrigin - - ImportOriginWorld - Beam: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - Brightness - - Color - - CurveSize0 - - CurveSize1 - - Enabled - - FaceCamera - - LightEmission - - LightInfluence - - Segments - - Texture - - TextureLength - - TextureMode - - TextureSpeed - - Transparency - - Width0 - - Width1 - - ZOffset - BevelMesh: - superclass: DataModelMesh - events: [] - properties: [] - BillboardGui: - superclass: LayerCollector - events: [] - properties: - - Active - - Adornee - - AlwaysOnTop - - Brightness - - ClipsDescendants - - CurrentDistance - - DistanceLowerLimit - - DistanceStep - - DistanceUpperLimit - - ExtentsOffset - - ExtentsOffsetWorldSpace - - LightInfluence - - MaxDistance - - PlayerToHideFrom - - Size - - SizeOffset - - StudsOffset - - StudsOffsetWorldSpace - BinaryStringValue: - superclass: ValueBase - events: - - Changed - properties: [] - BindableEvent: - superclass: Instance - events: - - Event - properties: [] - BindableFunction: - superclass: Instance - events: [] - properties: [] - BlockMesh: - superclass: BevelMesh - events: [] - properties: [] - BloomEffect: - superclass: PostEffect - events: [] - properties: - - Intensity - - Size - - Threshold - BlurEffect: - superclass: PostEffect - events: [] - properties: - - Size - BodyAngularVelocity: - superclass: BodyMover - events: [] - properties: - - AngularVelocity - - MaxTorque - - P - - angularvelocity - - maxTorque - BodyColors: - superclass: CharacterAppearance - events: [] - properties: - - HeadColor - - HeadColor3 - - LeftArmColor - - LeftArmColor3 - - LeftLegColor - - LeftLegColor3 - - RightArmColor - - RightArmColor3 - - RightLegColor - - RightLegColor3 - - TorsoColor - - TorsoColor3 - BodyForce: - superclass: BodyMover - events: [] - properties: - - Force - - force - BodyGyro: - superclass: BodyMover - events: [] - properties: - - CFrame - - D - - MaxTorque - - P - - cframe - - maxTorque - BodyMover: - superclass: Instance - events: [] - properties: [] - BodyPosition: - superclass: BodyMover - events: - - ReachedTarget - properties: - - D - - MaxForce - - P - - Position - - maxForce - - position - BodyThrust: - superclass: BodyMover - events: [] - properties: - - Force - - Location - - force - - location - BodyVelocity: - superclass: BodyMover - events: [] - properties: - - MaxForce - - P - - Velocity - - maxForce - - velocity - Bone: - superclass: Attachment - events: [] - properties: - - Transform - - TransformedCFrame - - TransformedWorldCFrame - BoolValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - BoxHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Size - Breakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - Enabled - - Id - - Line - - LogMessage - - MetaBreakpointId - - Script - - Valid - - Verified - BrickColorValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - BrowserService: - superclass: Instance - events: - - AuthCookieCopiedToEngine - - BrowserWindowClosed - - BrowserWindowWillNavigate - - JavaScriptCallback - properties: [] - BubbleChatConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AdorneeName - - BackgroundColor3 - - BackgroundTransparency - - BubbleDuration - - BubblesSpacing - - Enabled - - Font - - FontFace - - LocalPlayerStudsOffset - - MaxDistance - - MinimizeDistance - - TextColor3 - - TextSize - - VerticalStudsOffset - BulkImportService: - superclass: Instance - events: - - AssetImported - - BulkImportFinished - - BulkImportStarted - properties: [] - BuoyancySensor: - superclass: SensorBase - events: [] - properties: - - FullySubmerged - - TouchingSurface - CFrameValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - CSGDictionaryService: - superclass: FlyweightService - events: [] - properties: [] - CacheableContentProvider: - superclass: Instance - events: [] - properties: [] - CalloutService: - superclass: Instance - events: [] - properties: [] - Camera: - superclass: Instance - events: - - FirstPersonTransition - - InterpolationFinished - properties: - - CFrame - - CameraSubject - - CameraType - - CoordinateFrame - - DiagonalFieldOfView - - FieldOfView - - FieldOfViewMode - - Focus - - HeadLocked - - HeadScale - - MaxAxisFieldOfView - - NearPlaneZ - - ViewportSize - - focus - CanvasGroup: - superclass: GuiObject - events: [] - properties: - - GroupColor3 - - GroupTransparency - CatalogPages: - superclass: Pages - events: [] - properties: [] - ChangeHistoryService: - superclass: Instance - events: - - OnRedo - - OnUndo - properties: [] - ChannelSelectorSoundEffect: - superclass: CustomSoundEffect - events: [] - properties: - - Channel - CharacterAppearance: - superclass: Instance - events: [] - properties: [] - CharacterMesh: - superclass: CharacterAppearance - events: [] - properties: - - BaseTextureId - - BodyPart - - MeshId - - OverlayTextureId - Chat: - superclass: Instance - events: - - BubbleChatSettingsChanged - - Chatted - properties: - - BubbleChatEnabled - - LoadDefaultChat - ChatInputBarConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AbsolutePosition - - AbsolutePositionWrite - - AbsoluteSize - - AbsoluteSizeWrite - - BackgroundColor3 - - BackgroundTransparency - - Enabled - - FontFace - - PlaceholderColor3 - - TargetTextChannel - - TextBox - - TextColor3 - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - ChatWindowConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AbsolutePosition - - AbsolutePositionWrite - - AbsoluteSize - - AbsoluteSizeWrite - - BackgroundColor3 - - BackgroundTransparency - - Enabled - - FontFace - - HeightScale - - HorizontalAlignment - - TextColor3 - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - VerticalAlignment - - WidthScale - ChorusSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Mix - - Rate - ClickDetector: - superclass: Instance - events: - - MouseClick - - MouseHoverEnter - - MouseHoverLeave - - RightMouseClick - - mouseClick - properties: - - CursorIcon - - MaxActivationDistance - ClientReplicator: - superclass: NetworkReplicator - events: - - RCCProfilerDataComplete - - StatsReceived - properties: [] - ClimbController: - superclass: ControllerBase - events: [] - properties: - - AccelerationTime - - MoveMaxForce - - OrientationMaxTorque - - OrientationSpeedFactor - Clothing: - superclass: CharacterAppearance - events: [] - properties: - - Color3 - CloudLocalizationTable: - superclass: LocalizationTable - events: [] - properties: [] - Clouds: - superclass: Instance - events: [] - properties: - - Color - - Cover - - Density - - Enabled - ClusterPacketCache: - superclass: Instance - events: [] - properties: [] - CollectionService: - superclass: Instance - events: - - ItemAdded - - ItemRemoved - - TagAdded - - TagRemoved - properties: [] - Color3Value: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - ColorCorrectionEffect: - superclass: PostEffect - events: [] - properties: - - Brightness - - Contrast - - Saturation - - TintColor - CommandInstance: - superclass: Instance - events: [] - properties: - - AllowGUIAccessPoints - - Checked - - DefaultShortcut - - DisplayName - - Enabled - - Icon - - Name - - Permission - - StatusTip - CommandService: - superclass: Instance - events: - - CommandExecuting - properties: [] - CompressorSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Attack - - GainMakeup - - Ratio - - Release - - SideChain - - Threshold - ConeHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Height - - Radius - Configuration: - superclass: Instance - events: [] - properties: [] - ConfigureServerService: - superclass: Instance - events: [] - properties: [] - Constraint: - superclass: Instance - events: [] - properties: - - Active - - Attachment0 - - Attachment1 - - Color - - Enabled - - Visible - ContentProvider: - superclass: Instance - events: - - AssetFetchFailed - properties: - - BaseUrl - - RequestQueueSize - ContextActionService: - superclass: Instance - events: - - BoundActionAdded - - BoundActionChanged - - BoundActionRemoved - - GetActionButtonEvent - - LocalToolEquipped - - LocalToolUnequipped - properties: [] - Controller: - superclass: Instance - events: - - ButtonChanged - properties: [] - ControllerBase: - superclass: Instance - events: [] - properties: - - MoveSpeedFactor - - RigidityEnabled - ControllerManager: - superclass: Instance - events: [] - properties: - - ActiveController - - BaseMoveSpeed - - BaseTurnSpeed - - ClimbSensor - - FacingDirection - - GroundSensor - - MovingDirection - ControllerPartSensor: - superclass: ControllerSensor - events: [] - properties: - - HitFrame - - HitNormal - - SearchDistance - - SensedPart - - SensorMode - ControllerSensor: - superclass: SensorBase - events: [] - properties: [] - ControllerService: - superclass: Instance - events: [] - properties: [] - CookiesService: - superclass: Instance - events: [] - properties: [] - CoreGui: - superclass: BasePlayerGui - events: - - UserGuiRenderingChanged - properties: - - SelectionImageObject - - Version - CorePackages: - superclass: Instance - events: [] - properties: [] - CoreScript: - superclass: BaseScript - events: [] - properties: [] - CoreScriptDebuggingManagerHelper: - superclass: Instance - events: [] - properties: [] - CoreScriptSyncService: - superclass: Instance - events: [] - properties: [] - CornerWedgePart: - superclass: BasePart - events: [] - properties: [] - CrossDMScriptChangeListener: - superclass: Instance - events: - - GuidLineContentsChanged - - GuidNameChanged - properties: [] - CurveAnimation: - superclass: AnimationClip - events: [] - properties: [] - CustomEvent: - superclass: Instance - events: - - ReceiverConnected - - ReceiverDisconnected - properties: [] - CustomEventReceiver: - superclass: Instance - events: - - EventConnected - - EventDisconnected - - SourceValueChanged - properties: - - Source - CustomSoundEffect: - superclass: SoundEffect - events: [] - properties: [] - CylinderHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Angle - - Height - - InnerRadius - - Radius - CylinderMesh: - superclass: BevelMesh - events: [] - properties: [] - CylindricalConstraint: - superclass: SlidingBallConstraint - events: [] - properties: - - AngularActuatorType - - AngularLimitsEnabled - - AngularResponsiveness - - AngularRestitution - - AngularSpeed - - AngularVelocity - - CurrentAngle - - InclinationAngle - - LowerAngle - - MotorMaxAngularAcceleration - - MotorMaxTorque - - RotationAxisVisible - - ServoMaxTorque - - TargetAngle - - UpperAngle - - WorldRotationAxis - DataModel: - superclass: ServiceProvider - events: - - AllowedGearTypeChanged - - GraphicsQualityChangeRequest - - ItemChanged - - Loaded - - ScreenshotReady - - ScreenshotSavedToAlbum - - UniverseMetadataLoaded - properties: - - CreatorId - - CreatorType - - GameId - - GearGenreSetting - - Genre - - IsSFFlagsLoaded - - JobId - - PlaceId - - PlaceVersion - - PrivateServerId - - PrivateServerOwnerId - - VIPServerId - - VIPServerOwnerId - - Workspace - - lighting - - workspace - DataModelMesh: - superclass: Instance - events: [] - properties: - - Offset - - Scale - - VertexColor - DataModelPatchService: - superclass: Instance - events: [] - properties: [] - DataModelSession: - superclass: Instance - events: - - CurrentDataModelTypeAboutToChange - - CurrentDataModelTypeChanged - - DataModelCreated - - DataModelWillBeDestroyed - properties: - - CurrentDataModelType - - SessionId - DataStore: - superclass: GlobalDataStore - events: [] - properties: [] - DataStoreIncrementOptions: - superclass: Instance - events: [] - properties: [] - DataStoreInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - DataStoreName - - UpdatedTime - DataStoreKey: - superclass: Instance - events: [] - properties: - - KeyName - DataStoreKeyInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - UpdatedTime - - Version - DataStoreKeyPages: - superclass: Pages - events: [] - properties: - - Cursor - DataStoreListingPages: - superclass: Pages - events: [] - properties: - - Cursor - DataStoreObjectVersionInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - IsDeleted - - Version - DataStoreOptions: - superclass: Instance - events: [] - properties: - - AllScopes - DataStorePages: - superclass: Pages - events: [] - properties: [] - DataStoreService: - superclass: Instance - events: [] - properties: - - AutomaticRetry - - LegacyNamingScheme - DataStoreSetOptions: - superclass: Instance - events: [] - properties: [] - DataStoreVersionPages: - superclass: Pages - events: [] - properties: [] - Debris: - superclass: Instance - events: [] - properties: - - MaxItems - DebugSettings: - superclass: Instance - events: [] - properties: - - DataModel - - InstanceCount - - IsScriptStackTracingEnabled - - JobCount - - PlayerCount - - ReportSoundWarnings - - RobloxVersion - - TickCountPreciseOverride - DebuggablePluginWatcher: - superclass: Instance - events: [] - properties: [] - DebuggerBreakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - IsEnabled - - Line - - LogExpression - - isContextDependentBreakpoint - DebuggerConnection: - superclass: Instance - events: - - BreakpointAdded - - BreakpointChanged - - BreakpointRemoved - - Paused - - Resumed - properties: - - ErrorMessage - - HasError - - Id - - IsPaused - DebuggerConnectionManager: - superclass: Instance - events: - - ConnectionEnded - - ConnectionStarted - - FocusChanged - properties: - - Timeout - DebuggerLuaResponse: - superclass: Instance - events: [] - properties: - - IsError - - IsSuccess - - Message - - RequestId - - Status - DebuggerManager: - superclass: Instance - events: - - DebuggerAdded - - DebuggerRemoved - properties: - - DebuggingEnabled - DebuggerUIService: - superclass: Instance - events: - - ExpressionAdded - properties: [] - DebuggerVariable: - superclass: Instance - events: [] - properties: - - Name - - Populated - - Type - - Value - - VariableId - - VariablesCount - DebuggerWatch: - superclass: Instance - events: [] - properties: - - Expression - Decal: - superclass: FaceInstance - events: [] - properties: - - Color3 - - LocalTransparencyModifier - - Shiny - - Specular - - Texture - - Transparency - - ZIndex - DepthOfFieldEffect: - superclass: PostEffect - events: [] - properties: - - FarIntensity - - FocusDistance - - InFocusRadius - - NearIntensity - DeviceIdService: - superclass: Instance - events: [] - properties: [] - Dialog: - superclass: Instance - events: - - DialogChoiceSelected - properties: - - BehaviorType - - ConversationDistance - - GoodbyeChoiceActive - - GoodbyeDialog - - InUse - - InitialPrompt - - Purpose - - Tone - - TriggerDistance - - TriggerOffset - DialogChoice: - superclass: Instance - events: [] - properties: - - GoodbyeChoiceActive - - GoodbyeDialog - - ResponseDialog - - UserDialog - DistortionSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Level - DockWidgetPluginGui: - superclass: PluginGui - events: [] - properties: - - HostWidgetWasRestored - DoubleConstrainedValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - ConstrainedValue - - MaxValue - - MinValue - - Value - DraftsService: - superclass: Instance - events: - - CommitStatusChanged - - DraftAdded - - DraftRemoved - - DraftStatusChanged - - EditorsListChanged - - UpdateStatusChanged - properties: [] - Dragger: - superclass: Instance - events: [] - properties: [] - DraggerService: - superclass: Instance - events: [] - properties: - - AlignDraggedObjects - - AngleSnapEnabled - - AngleSnapIncrement - - AnimateHover - - CollisionsEnabled - - DraggerCoordinateSpace - - DraggerMovementMode - - GeometrySnapColor - - HoverAnimateFrequency - - HoverLineThickness - - HoverThickness - - JointsEnabled - - LinearSnapEnabled - - LinearSnapIncrement - - PivotSnapToGeometry - - ShowHover - - ShowPivotIndicator - DynamicRotate: - superclass: JointInstance - events: [] - properties: - - BaseAngle - EchoSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Delay - - DryLevel - - Feedback - - WetLevel - EmotesPages: - superclass: InventoryPages - events: [] - properties: [] - EqualizerSoundEffect: - superclass: SoundEffect - events: [] - properties: - - HighGain - - LowGain - - MidGain - EulerRotationCurve: - superclass: Instance - events: [] - properties: - - RotationOrder - EventIngestService: - superclass: Instance - events: [] - properties: [] - ExperienceAuthService: - superclass: Instance - events: - - OpenAuthPrompt - properties: [] - ExperienceInviteOptions: - superclass: Instance - events: [] - properties: - - InviteMessageId - - InviteUser - - LaunchData - - PromptMessage - Explosion: - superclass: Instance - events: - - Hit - properties: - - BlastPressure - - BlastRadius - - DestroyJointRadiusPercent - - ExplosionType - - Position - - TimeScale - - Visible - FaceAnimatorService: - superclass: Instance - events: - - TrackerError - - TrackerPrompt - properties: - - AudioAnimationEnabled - - FlipHeadOrientation - - VideoAnimationEnabled - FaceControls: - superclass: Instance - events: [] - properties: - - ChinRaiser - - ChinRaiserUpperLip - - Corrugator - - EyesLookDown - - EyesLookLeft - - EyesLookRight - - EyesLookUp - - FlatPucker - - Funneler - - JawDrop - - JawLeft - - JawRight - - LeftBrowLowerer - - LeftCheekPuff - - LeftCheekRaiser - - LeftDimpler - - LeftEyeClosed - - LeftEyeUpperLidRaiser - - LeftInnerBrowRaiser - - LeftLipCornerDown - - LeftLipCornerPuller - - LeftLipStretcher - - LeftLowerLipDepressor - - LeftNoseWrinkler - - LeftOuterBrowRaiser - - LeftUpperLipRaiser - - LipPresser - - LipsTogether - - LowerLipSuck - - MouthLeft - - MouthRight - - Pucker - - RightBrowLowerer - - RightCheekPuff - - RightCheekRaiser - - RightDimpler - - RightEyeClosed - - RightEyeUpperLidRaiser - - RightInnerBrowRaiser - - RightLipCornerDown - - RightLipCornerPuller - - RightLipStretcher - - RightLowerLipDepressor - - RightNoseWrinkler - - RightOuterBrowRaiser - - RightUpperLipRaiser - - TongueDown - - TongueOut - - TongueUp - - UpperLipSuck - FaceInstance: - superclass: Instance - events: [] - properties: - - Face - FacialAnimationRecordingService: - superclass: Instance - events: [] - properties: - - BiometricDataConsent - FacialAnimationStreamingService: - superclass: Instance - events: [] - properties: - - EnableFlags - - Enabled - FacialAnimationStreamingServiceStats: - superclass: Instance - events: - - isStreamingFacsUpdated - properties: [] - FacialAnimationStreamingServiceV2: - superclass: Instance - events: [] - properties: - - ServiceState - Feature: - superclass: Instance - events: [] - properties: - - FaceId - - InOut - - LeftRight - - TopBottom - File: - superclass: Instance - events: [] - properties: - - Size - FileMesh: - superclass: DataModelMesh - events: [] - properties: - - MeshId - - TextureId - Fire: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - Heat - - SecondaryColor - - Size - - TimeScale - - size - Flag: - superclass: Tool - events: [] - properties: - - TeamColor - FlagStand: - superclass: Part - events: - - FlagCaptured - properties: - - TeamColor - FlagStandService: - superclass: Instance - events: [] - properties: [] - FlangeSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Mix - - Rate - FloatCurve: - superclass: Instance - events: [] - properties: - - Length - FloorWire: - superclass: GuiBase3d - events: [] - properties: - - CycleOffset - - From - - StudsBetweenTextures - - Texture - - TextureSize - - To - - Velocity - - WireRadius - FlyweightService: - superclass: Instance - events: [] - properties: [] - Folder: - superclass: Instance - events: [] - properties: [] - ForceField: - superclass: Instance - events: [] - properties: - - Visible - FormFactorPart: - superclass: BasePart - events: [] - properties: - - FormFactor - - formFactor - Frame: - superclass: GuiObject - events: [] - properties: - - Style - FriendPages: - superclass: Pages - events: [] - properties: [] - FriendService: - superclass: Instance - events: - - FriendsUpdated - properties: [] - FunctionalTest: - superclass: Instance - events: [] - properties: - - Description - GamePassService: - superclass: Instance - events: [] - properties: [] - GameSettings: - superclass: Instance - events: - - VideoRecordingChangeRequest - properties: - - VideoCaptureEnabled - - VideoRecording - GamepadService: - superclass: Instance - events: - - GamepadThumbstick1Changed - properties: - - GamepadCursorEnabled - GenericSettings: - superclass: ServiceProvider - events: [] - properties: [] - Geometry: - superclass: Instance - events: [] - properties: [] - GetTextBoundsParams: - superclass: Instance - events: [] - properties: - - Font - - Size - - Text - - Width - GlobalDataStore: - superclass: Instance - events: [] - properties: [] - GlobalSettings: - superclass: GenericSettings - events: [] - properties: [] - Glue: - superclass: JointInstance - events: [] - properties: - - F0 - - F1 - - F2 - - F3 - GoogleAnalyticsConfiguration: - superclass: Instance - events: [] - properties: [] - GroundController: - superclass: ControllerBase - events: [] - properties: - - AccelerationLean - - AccelerationTime - - AlignSpeed - - AlignTorque - - DecelerationTime - - Friction - - FrictionWeight - - GroundOffset - - StandForce - - StandSpeed - - TurningFactor - GroupService: - superclass: Instance - events: [] - properties: [] - GuiBase: - superclass: Instance - events: [] - properties: [] - GuiBase2d: - superclass: GuiBase - events: - - SelectionChanged - properties: - - AbsolutePosition - - AbsoluteRotation - - AbsoluteSize - - AutoLocalize - - ClippedRect - - IsNotOccluded - - Localize - - RawRect2D - - RootLocalizationTable - - SelectionBehaviorDown - - SelectionBehaviorLeft - - SelectionBehaviorRight - - SelectionBehaviorUp - - SelectionGroup - - TotalGroupScale - GuiBase3d: - superclass: GuiBase - events: [] - properties: - - Color - - Color3 - - Transparency - - Visible - GuiButton: - superclass: GuiObject - events: - - Activated - - MouseButton1Click - - MouseButton1Down - - MouseButton1Up - - MouseButton2Click - - MouseButton2Down - - MouseButton2Up - properties: - - AutoButtonColor - - Modal - - Selected - - Style - GuiLabel: - superclass: GuiObject - events: [] - properties: [] - GuiMain: - superclass: ScreenGui - events: [] - properties: [] - GuiObject: - superclass: GuiBase2d - events: - - DragBegin - - DragStopped - - InputBegan - - InputChanged - - InputEnded - - MouseEnter - - MouseLeave - - MouseMoved - - MouseWheelBackward - - MouseWheelForward - - SelectionGained - - SelectionLost - - TouchLongPress - - TouchPan - - TouchPinch - - TouchRotate - - TouchSwipe - - TouchTap - properties: - - Active - - AnchorPoint - - AutomaticSize - - BackgroundColor - - BackgroundColor3 - - BackgroundTransparency - - BorderColor - - BorderColor3 - - BorderMode - - BorderSizePixel - - ClipsDescendants - - Draggable - - LayoutOrder - - NextSelectionDown - - NextSelectionLeft - - NextSelectionRight - - NextSelectionUp - - Position - - Rotation - - Selectable - - SelectionImageObject - - SelectionOrder - - Size - - SizeConstraint - - Transparency - - Visible - - ZIndex - GuiService: - superclass: Instance - events: - - BrowserWindowClosed - - CloseInspectMenuRequest - - CoreGuiRenderOverflowed - - EmotesMenuOpenChanged - - ErrorMessageChanged - - GuiVisibilityChangedSignal - - InspectMenuEnabledChangedSignal - - InspectPlayerFromHumanoidDescriptionRequest - - InspectPlayerFromUserIdWithCtxRequest - - KeyPressed - - MenuClosed - - MenuOpened - - NativeClose - - NetworkPausedEnabledChanged - - Open9SliceEditor - - PurchasePromptShown - - SafeZoneOffsetsChanged - - ShowLeaveConfirmation - - SpecialKeyPressed - - UiMessageChanged - properties: - - AutoSelectGuiEnabled - - CoreEffectFolder - - CoreGuiFolder - - CoreGuiNavigationEnabled - - GuiNavigationEnabled - - IsModalDialog - - IsWindows - - MenuIsOpen - - SelectedCoreObject - - SelectedObject - - TouchControlsEnabled - GuidRegistryService: - superclass: Instance - events: [] - properties: [] - HSRDataContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - HandleAdornment: - superclass: PVAdornment - events: - - MouseButton1Down - - MouseButton1Up - - MouseEnter - - MouseLeave - properties: - - AdornCullingMode - - AlwaysOnTop - - CFrame - - SizeRelativeOffset - - ZIndex - Handles: - superclass: HandlesBase - events: - - MouseButton1Down - - MouseButton1Up - - MouseDrag - - MouseEnter - - MouseLeave - properties: - - Faces - - Style - HandlesBase: - superclass: PartAdornment - events: [] - properties: [] - HapticService: - superclass: Instance - events: [] - properties: [] - Hat: - superclass: Accoutrement - events: [] - properties: [] - HeightmapImporterService: - superclass: Instance - events: - - ColormapHasUnknownPixels - - ProgressUpdate - properties: [] - HiddenSurfaceRemovalAsset: - superclass: Instance - events: [] - properties: [] - Highlight: - superclass: Instance - events: [] - properties: - - Adornee - - DepthMode - - Enabled - - FillColor - - FillTransparency - - LineThickness - - OutlineColor - - OutlineTransparency - - ReservedId - HingeConstraint: - superclass: Constraint - events: [] - properties: - - ActuatorType - - AngularResponsiveness - - AngularSpeed - - AngularVelocity - - CurrentAngle - - LimitsEnabled - - LowerAngle - - MotorMaxAcceleration - - MotorMaxTorque - - Radius - - Restitution - - ServoMaxTorque - - TargetAngle - - UpperAngle - Hint: - superclass: Message - events: [] - properties: [] - Hole: - superclass: Feature - events: [] - properties: [] - Hopper: - superclass: Instance - events: [] - properties: [] - HopperBin: - superclass: BackpackItem - events: - - Deselected - - Selected - properties: - - Active - - BinType - HttpRbxApiService: - superclass: Instance - events: [] - properties: [] - HttpRequest: - superclass: Instance - events: [] - properties: [] - HttpService: - superclass: Instance - events: [] - properties: - - HttpEnabled - Humanoid: - superclass: Instance - events: - - AnimationPlayed - - Climbing - - ClusterCompositionFinished - - CustomStatusAdded - - CustomStatusRemoved - - Died - - EmoteTriggered - - FallingDown - - FreeFalling - - GettingUp - - HealthChanged - - Jumping - - MoveToFinished - - PlatformStanding - - Ragdoll - - Running - - Seated - - StateChanged - - StateEnabledChanged - - StatusAdded - - StatusRemoved - - Strafing - - Swimming - - Touched - properties: - - AutoJumpEnabled - - AutoRotate - - AutomaticScalingEnabled - - BreakJointsOnDeath - - CameraOffset - - CollisionType - - DisplayDistanceType - - DisplayName - - EvaluateStateMachine - - FloorMaterial - - Health - - HealthDisplayDistance - - HealthDisplayType - - HipHeight - - Jump - - JumpHeight - - JumpPower - - LeftLeg - - MaxHealth - - MaxSlopeAngle - - MoveDirection - - NameDisplayDistance - - NameOcclusion - - PlatformStand - - RequiresNeck - - RigType - - RightLeg - - RootPart - - SeatPart - - Sit - - TargetPoint - - Torso - - UseJumpPower - - WalkSpeed - - WalkToPart - - WalkToPoint - - maxHealth - HumanoidController: - superclass: Controller - events: [] - properties: [] - HumanoidDescription: - superclass: Instance - events: - - EmotesChanged - - EquippedEmotesChanged - properties: - - AccessoryBlob - - BackAccessory - - BodyTypeScale - - ClimbAnimation - - DepthScale - - Face - - FaceAccessory - - FallAnimation - - FrontAccessory - - GraphicTShirt - - HairAccessory - - HatAccessory - - Head - - HeadColor - - HeadScale - - HeightScale - - IdleAnimation - - JumpAnimation - - LeftArm - - LeftArmColor - - LeftLeg - - LeftLegColor - - MoodAnimation - - NeckAccessory - - NumberEmotesLoaded - - Pants - - ProportionScale - - RightArm - - RightArmColor - - RightLeg - - RightLegColor - - RunAnimation - - Shirt - - ShouldersAccessory - - SwimAnimation - - Torso - - TorsoColor - - WaistAccessory - - WalkAnimation - - WidthScale - IKControl: - superclass: Instance - events: [] - properties: - - ChainRoot - - Enabled - - EndEffector - - EndEffectorOffset - - Offset - - Pole - - Priority - - SmoothTime - - Target - - Type - - Weight - ILegacyStudioBridge: - superclass: Instance - events: [] - properties: [] - IXPService: - superclass: Instance - events: - - OnBrowserTrackerLayerLoadingStatusChanged - - OnUserLayerLoadingStatusChanged - properties: [] - ImageButton: - superclass: GuiButton - events: [] - properties: - - ContentImageSize - - HoverImage - - Image - - ImageColor3 - - ImageRectOffset - - ImageRectSize - - ImageTransparency - - IsLoaded - - PressedImage - - ResampleMode - - ScaleType - - SliceCenter - - SliceScale - - TileSize - ImageDataExperimental: - superclass: Instance - events: [] - properties: - - Size - - TemporaryId - ImageHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Image - - Size - ImageLabel: - superclass: GuiLabel - events: [] - properties: - - ContentImageSize - - Image - - ImageColor3 - - ImageRectOffset - - ImageRectSize - - ImageTransparency - - IsLoaded - - ResampleMode - - ScaleType - - SliceCenter - - SliceScale - - TileSize - ImporterAnimationSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterBaseSettings: - superclass: Instance - events: [] - properties: - - Id - - ImportName - - ShouldImport - ImporterFacsSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterGroupSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - Anchored - - ImportAsModelAsset - - InsertInWorkspace - ImporterJointSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterMaterialSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - DiffuseFilePath - - IsPbr - - MetalnessFilePath - - NormalFilePath - - RoughnessFilePath - ImporterMeshSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - Anchored - - CageManifold - - CageMeshIntersectedPreview - - CageMeshNotIntersected - - CageNoOverlappingVertices - - CageNonManifoldPreview - - CageOverlappingVerticesPreview - - CageUVMatched - - CageUVMisMatchedPreview - - Dimensions - - DoubleSided - - IgnoreVertexColors - - IrrelevantCageModifiedPreview - - MeshHoleDetectedPreview - - MeshNoHoleDetected - - NoIrrelevantCageModified - - NoOuterCageFarExtendedFromMesh - - OuterCageFarExtendedFromMeshPreview - - PolygonCount - - UseImportedPivot - ImporterRootSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - AddModelToInventory - - Anchored - - ExistingPackageId - - FileDimensions - - ImportAsModelAsset - - ImportAsPackage - - InsertInWorkspace - - InsertWithScenePosition - - InvertNegativeFaces - - MergeMeshes - - PolygonCount - - RigScale - - RigType - - ScaleUnit - - UseSceneOriginAsCFrame - - UseSceneOriginAsPivot - - UsesCages - - WorldForward - - WorldUp - IncrementalPatchBuilder: - superclass: Instance - events: [] - properties: - - AddPathsToBundle - - BuildDebouncePeriod - - HighCompression - - SerializePatch - - ZstdCompression - InputObject: - superclass: Instance - events: [] - properties: - - Delta - - KeyCode - - Position - - UserInputState - - UserInputType - InsertService: - superclass: Instance - events: [] - properties: - - AllowClientInsertModels - - AllowInsertFreeModels - Instance: - superclass: <<>> - events: - - AncestryChanged - - AttributeChanged - - Changed - - ChildAdded - - ChildRemoved - - DescendantAdded - - DescendantRemoving - - Destroying - - childAdded - properties: - - Archivable - - ClassName - - DataCost - - Name - - Parent - - RobloxLocked - - SourceAssetId - - archivable - - className - InstanceAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - IntConstrainedValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - ConstrainedValue - - MaxValue - - MinValue - - Value - IntValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - IntersectOperation: - superclass: PartOperation - events: [] - properties: [] - InventoryPages: - superclass: Pages - events: [] - properties: [] - JointInstance: - superclass: Instance - events: [] - properties: - - Active - - C0 - - C1 - - Enabled - - Part0 - - Part1 - - part1 - JointsService: - superclass: Instance - events: [] - properties: [] - KeyboardService: - superclass: Instance - events: [] - properties: [] - Keyframe: - superclass: Instance - events: [] - properties: - - Time - KeyframeMarker: - superclass: Instance - events: [] - properties: - - Value - KeyframeSequence: - superclass: AnimationClip - events: [] - properties: - - AuthoredHipHeight - KeyframeSequenceProvider: - superclass: Instance - events: [] - properties: [] - LSPFileSyncService: - superclass: Instance - events: [] - properties: [] - LanguageService: - superclass: Instance - events: [] - properties: [] - LayerCollector: - superclass: GuiBase2d - events: [] - properties: - - Enabled - - ResetOnSpawn - - ZIndexBehavior - LegacyStudioBridge: - superclass: ILegacyStudioBridge - events: [] - properties: [] - Light: - superclass: Instance - events: [] - properties: - - Brightness - - Color - - Enabled - - Shadows - Lighting: - superclass: Instance - events: - - LightingChanged - properties: - - Ambient - - Brightness - - TimerTime - - ColorShift_Bottom - - ColorShift_Top - - EnvironmentDiffuseScale - - EnvironmentSpecularScale - - ExposureCompensation - - FogColor - - FogEnd - - FogStart - - GeographicLatitude - - GlobalShadows - - OutdoorAmbient - - Outlines - - ShadowColor - - ShadowSoftness - - Technology - - TempUseNewSkyRemovalBehaviour - - TimeOfDay - LineForce: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - InverseSquareLaw - - Magnitude - - MaxForce - - ReactionForceEnabled - LineHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Length - - Thickness - LinearVelocity: - superclass: Constraint - events: [] - properties: - - LineDirection - - LineVelocity - - MaxForce - - PlaneVelocity - - PrimaryTangentAxis - - RelativeTo - - SecondaryTangentAxis - - VectorVelocity - - VelocityConstraintMode - LiveScriptingService: - superclass: Instance - events: [] - properties: [] - LocalDebuggerConnection: - superclass: DebuggerConnection - events: [] - properties: [] - LocalScript: - superclass: Script - events: [] - properties: [] - LocalStorageService: - superclass: Instance - events: - - ItemWasSet - - StoreWasCleared - properties: [] - LocalizationService: - superclass: Instance - events: - - AutoTranslateWillRun - properties: - - ForcePlayModeGameLocaleId - - ForcePlayModeRobloxLocaleId - - IsTextScraperRunning - - RobloxForcePlayModeGameLocaleId - - RobloxForcePlayModeRobloxLocaleId - - RobloxLocaleId - - SystemLocaleId - LocalizationTable: - superclass: Instance - events: [] - properties: - - DevelopmentLanguage - - Root - - SourceLocaleId - LodDataEntity: - superclass: Instance - events: [] - properties: - - EntityLodEnabled - LodDataService: - superclass: Instance - events: [] - properties: [] - LogService: - superclass: Instance - events: - - HttpResultOut - - MessageOut - - OnHttpResultApproved - - ServerHttpResultOut - - ServerMessageOut - properties: [] - LoginService: - superclass: Instance - events: - - LoginFailed - - LoginSucceeded - properties: [] - LuaSettings: - superclass: Instance - events: [] - properties: [] - LuaSourceContainer: - superclass: Instance - events: [] - properties: - - CurrentEditor - - RuntimeSource - LuaWebService: - superclass: Instance - events: [] - properties: [] - LuauScriptAnalyzerService: - superclass: Instance - events: [] - properties: [] - ManualGlue: - superclass: ManualSurfaceJointInstance - events: [] - properties: [] - ManualSurfaceJointInstance: - superclass: JointInstance - events: [] - properties: [] - ManualWeld: - superclass: ManualSurfaceJointInstance - events: [] - properties: [] - MarkerCurve: - superclass: Instance - events: [] - properties: - - Length - MarketplaceService: - superclass: Instance - events: - - ClientLuaDialogRequested - - ClientPurchaseSuccess - - NativePurchaseFinished - - NativePurchaseFinishedWithLocalPlayer - - PromptBundlePurchaseFinished - - PromptBundlePurchaseRequested - - PromptGamePassPurchaseFinished - - PromptGamePassPurchaseRequested - - PromptPremiumPurchaseFinished - - PromptPremiumPurchaseRequested - - PromptProductPurchaseFinished - - PromptProductPurchaseRequested - - PromptPurchaseFinished - - PromptPurchaseRequested - - PromptRobloxPurchaseRequested - - PromptSubscriptionCancellationFinished - - PromptSubscriptionCancellationRequested - - PromptSubscriptionPurchaseFinished - - PromptSubscriptionPurchaseRequested - - ServerPurchaseVerification - - ThirdPartyPurchaseFinished - properties: [] - MaterialGenerationService: - superclass: Instance - events: [] - properties: [] - MaterialGenerationSession: - superclass: Instance - events: [] - properties: [] - MaterialService: - superclass: Instance - events: - - OverrideStatusChanged - properties: - - AsphaltName - - BasaltName - - BrickName - - CobblestoneName - - ConcreteName - - CorrodedMetalName - - CrackedLavaName - - DiamondPlateName - - FabricName - - FoilName - - GlacierName - - GraniteName - - GrassName - - GroundName - - IceName - - LeafyGrassName - - LimestoneName - - MarbleName - - MetalName - - MudName - - PavementName - - PebbleName - - PlasticName - - RockName - - SaltName - - SandName - - SandstoneName - - SlateName - - SmoothPlasticName - - SnowName - - Use2022Materials - - WoodName - - WoodPlanksName - MaterialVariant: - superclass: Instance - events: [] - properties: - - BaseMaterial - - ColorMap - - CustomPhysicalProperties - - MaterialPattern - - MetalnessMap - - NormalMap - - RoughnessMap - - StudsPerTile - MemStorageConnection: - superclass: Instance - events: [] - properties: [] - MemStorageService: - superclass: Instance - events: [] - properties: [] - MemoryStoreQueue: - superclass: Instance - events: [] - properties: [] - MemoryStoreService: - superclass: Instance - events: [] - properties: [] - MemoryStoreSortedMap: - superclass: Instance - events: [] - properties: [] - MeshContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - MeshDataExperimental: - superclass: Instance - events: [] - properties: - - Size - MeshPart: - superclass: TriangleMeshPart - events: [] - properties: - - DoubleSided - - HasJointOffset - - HasSkinnedMesh - - JointOffset - - MeshId - - RenderFidelity - - TextureID - Message: - superclass: Instance - events: [] - properties: - - Text - MessageBusConnection: - superclass: Instance - events: [] - properties: [] - MessageBusService: - superclass: Instance - events: [] - properties: [] - MessagingService: - superclass: Instance - events: [] - properties: [] - MetaBreakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - Enabled - - Id - - IsLogpoint - - Line - - LogMessage - - Script - - Valid - MetaBreakpointContext: - superclass: Instance - events: [] - properties: [] - MetaBreakpointManager: - superclass: Instance - events: - - MetaBreakpointAdded - - MetaBreakpointChanged - - MetaBreakpointRemoved - - MetaBreakpointSetChanged - properties: [] - Model: - superclass: PVInstance - events: [] - properties: - - LevelOfDetail - - ModelStreamingMode - - PrimaryPart - - Scale - - WorldPivot - ModuleScript: - superclass: LuaSourceContainer - events: [] - properties: - - LinkedSource - - Source - Motor: - superclass: JointInstance - events: [] - properties: - - CurrentAngle - - DesiredAngle - - MaxVelocity - Motor6D: - superclass: Motor - events: [] - properties: - - ChildName - - ParentName - - Transform - MotorFeature: - superclass: Feature - events: [] - properties: [] - Mouse: - superclass: Instance - events: - - Button1Down - - Button1Up - - Button2Down - - Button2Up - - Idle - - KeyDown - - KeyUp - - Move - - WheelBackward - - WheelForward - - keyDown - properties: - - Hit - - Icon - - Origin - - Target - - TargetFilter - - TargetSurface - - UnitRay - - ViewSizeX - - ViewSizeY - - X - - Y - - hit - - target - MouseService: - superclass: Instance - events: [] - properties: [] - MultipleDocumentInterfaceInstance: - superclass: Instance - events: - - DataModelSessionEnded - - DataModelSessionStarted - properties: - - FocusedDataModelSession - NegateOperation: - superclass: PartOperation - events: [] - properties: [] - NetworkClient: - superclass: NetworkPeer - events: - - ConnectionAccepted - - ConnectionFailed - properties: [] - NetworkMarker: - superclass: Instance - events: - - Received - properties: [] - NetworkPeer: - superclass: Instance - events: [] - properties: [] - NetworkReplicator: - superclass: Instance - events: [] - properties: [] - NetworkServer: - superclass: NetworkPeer - events: [] - properties: [] - NetworkSettings: - superclass: Instance - events: [] - properties: - - EmulatedTotalMemoryInMB - - FreeMemoryMBytes - - HttpProxyEnabled - - HttpProxyURL - - IncomingReplicationLag - - PrintJoinSizeBreakdown - - PrintPhysicsErrors - - PrintStreamInstanceQuota - - RandomizeJoinInstanceOrder - - RenderStreamedRegions - - ShowActiveAnimationAsset - NoCollisionConstraint: - superclass: Instance - events: [] - properties: - - Enabled - - Part0 - - Part1 - NonReplicatedCSGDictionaryService: - superclass: FlyweightService - events: [] - properties: [] - NotificationService: - superclass: Instance - events: - - Roblox17sConnectionChanged - - Roblox17sEventReceived - - RobloxConnectionChanged - - RobloxEventReceived - properties: - - IsConnected - - IsLuaChatEnabled - - IsLuaGameDetailsEnabled - - SelectedTheme - NumberPose: - superclass: PoseBase - events: [] - properties: - - Value - NumberValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - ObjectValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - OrderedDataStore: - superclass: GlobalDataStore - events: [] - properties: [] - OutfitPages: - superclass: Pages - events: [] - properties: [] - PVAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - PVInstance: - superclass: Instance - events: [] - properties: - - Origin - - Pivot Offset - PackageLink: - superclass: Instance - events: [] - properties: - - AutoUpdate - - Creator - - PackageAssetName - - PackageId - - PermissionLevel - - Status - - VersionNumber - PackageService: - superclass: Instance - events: [] - properties: [] - PackageUIService: - superclass: Instance - events: - - OnConvertToPackageResult - - OnOpenConvertToPackagePlugin - properties: [] - Pages: - superclass: Instance - events: [] - properties: - - IsFinished - Pants: - superclass: Clothing - events: [] - properties: - - PantsTemplate - ParabolaAdornment: - superclass: PVAdornment - events: [] - properties: - - A - - B - - C - - Range - - Thickness - Part: - superclass: FormFactorPart - events: [] - properties: - - Shape - PartAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - PartOperation: - superclass: TriangleMeshPart - events: [] - properties: - - RenderFidelity - - SmoothingAngle - - TriangleCount - - UsePartColor - PartOperationAsset: - superclass: Instance - events: [] - properties: [] - ParticleEmitter: - superclass: Instance - events: [] - properties: - - Acceleration - - Brightness - - Color - - Drag - - EmissionDirection - - Enabled - - FlipbookFramerate - - FlipbookIncompatible - - FlipbookLayout - - FlipbookMode - - FlipbookStartRandom - - Lifetime - - LightEmission - - LightInfluence - - LockedToPart - - Orientation - - Rate - - RotSpeed - - Rotation - - Shape - - ShapeInOut - - ShapePartial - - ShapeStyle - - Size - - Speed - - SpreadAngle - - Squash - - Texture - - TimeScale - - Transparency - - VelocityInheritance - - VelocitySpread - - ZOffset - PatchBundlerFileWatch: - superclass: Instance - events: [] - properties: [] - PatchMapping: - superclass: Instance - events: [] - properties: - - FlattenTree - - PatchId - - TargetPath - Path: - superclass: Instance - events: - - Blocked - - Unblocked - properties: - - Status - PathfindingLink: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - IsBidirectional - - Label - PathfindingModifier: - superclass: Instance - events: [] - properties: - - Label - - PassThrough - PathfindingService: - superclass: Instance - events: [] - properties: - - EmptyCutoff - PausedState: - superclass: Instance - events: [] - properties: - - AllThreadsPaused - - Reason - - ThreadId - PausedStateBreakpoint: - superclass: PausedState - events: [] - properties: - - Breakpoint - PausedStateException: - superclass: PausedState - events: [] - properties: - - ExceptionText - PermissionsService: - superclass: Instance - events: [] - properties: [] - PhysicsService: - superclass: Instance - events: [] - properties: [] - PhysicsSettings: - superclass: Instance - events: [] - properties: - - AllowSleep - - AreAnchorsShown - - AreAssembliesShown - - AreAwakePartsHighlighted - - AreBodyTypesShown - - AreConstraintForcesShownForSelectedOrHoveredInstances - - AreConstraintTorquesShownForSelectedOrHoveredInstances - - AreContactForcesShownForSelectedOrHoveredAssemblies - - AreContactIslandsShown - - AreContactPointsShown - - AreJointCoordinatesShown - - AreMagnitudesShownForDrawnForcesAndTorques - - AreMechanismsShown - - AreModelCoordsShown - - AreOwnersShown - - ArePartCoordsShown - - AreRegionsShown - - AreSolverIslandsShown - - AreTerrainReplicationRegionsShown - - AreTimestepsShown - - AreUnalignedPartsShown - - AreWorldCoordsShown - - DisableCSGv2 - - ForceCSGv2 - - ForceDrawScale - - IsInterpolationThrottleShown - - IsReceiveAgeShown - - IsTreeShown - - PhysicsEnvironmentalThrottle - - ShowDecompositionGeometry - - SolverConvergenceVisualizationMode - - ThrottleAdjustTime - - UseCSGv2 - PitchShiftSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Octave - Plane: - superclass: PlaneConstraint - events: [] - properties: [] - PlaneConstraint: - superclass: Constraint - events: [] - properties: [] - Platform: - superclass: Part - events: [] - properties: [] - Player: - superclass: Instance - events: - - CharacterAdded - - CharacterAppearanceLoaded - - CharacterRemoving - - Chatted - - FriendStatusChanged - - Idled - - OnTeleport - - SimulationRadiusChanged - properties: - - AccountAge - - AppearanceDidLoad - - AutoJumpEnabled - - CameraMaxZoomDistance - - CameraMinZoomDistance - - CameraMode - - CanLoadCharacterAppearance - - Character - - CharacterAppearance - - CharacterAppearanceId - - ChatMode - - DataComplexity - - DataComplexityLimit - - DataReady - - DevCameraOcclusionMode - - DevComputerCameraMode - - DevComputerMovementMode - - DevEnableMouseLock - - DevTouchCameraMode - - DevTouchMovementMode - - DisplayName - - FollowUserId - - GameplayPaused - - Guest - - HasVerifiedBadge - - HealthDisplayDistance - - LocaleId - - MaximumSimulationRadius - - MembershipType - - NameDisplayDistance - - Neutral - - OsPlatform - - PlatformName - - ReplicationFocus - - RespawnLocation - - SimulationRadius - - Team - - TeamColor - - Teleported - - TeleportedIn - - UnfilteredChat - - UserId - - VRDevice - - VREnabled - - userId - PlayerEmulatorService: - superclass: Instance - events: [] - properties: - - CustomPoliciesEnabled - - EmulatedCountryCode - - EmulatedGameLocale - - PlayerEmulationEnabled - - SerializedEmulatedPolicyInfo - PlayerGui: - superclass: BasePlayerGui - events: - - TopbarTransparencyChangedSignal - properties: - - CurrentScreenOrientation - - ScreenOrientation - - SelectionImageObject - PlayerMouse: - superclass: Mouse - events: [] - properties: [] - PlayerScripts: - superclass: Instance - events: - - ComputerCameraMovementModeRegistered - - ComputerMovementModeRegistered - - TouchCameraMovementModeRegistered - - TouchMovementModeRegistered - properties: [] - Players: - superclass: Instance - events: - - FriendRequestEvent - - GameAnnounce - - PlayerAdded - - PlayerChatted - - PlayerConnecting - - PlayerDisconnecting - - PlayerMembershipChanged - - PlayerRejoining - - PlayerRemoving - properties: - - BubbleChat - - CharacterAutoLoads - - ClassicChat - - LocalPlayer - - MaxPlayers - - MaxPlayersInternal - - NumPlayers - - PreferredPlayers - - PreferredPlayersInternal - - RespawnTime - - UseStrafingAnimations - - localPlayer - - numPlayers - Plugin: - superclass: Instance - events: - - Deactivation - - Ready - - Unloading - properties: - - CollisionEnabled - - GridSize - - HostDataModelType - - HostDataModelTypeIsCurrent - - MultipleDocumentInterfaceInstance - - UsesAssetInsertionDrag - PluginAction: - superclass: Instance - events: - - Triggered - properties: - - ActionId - - AllowBinding - - Checked - - DefaultShortcut - - Enabled - - StatusTip - - Text - PluginDebugService: - superclass: Instance - events: [] - properties: [] - PluginDragEvent: - superclass: Instance - events: [] - properties: - - Data - - MimeType - - Position - - Sender - PluginGui: - superclass: LayerCollector - events: - - PluginDragDropped - - PluginDragEntered - - PluginDragLeft - - PluginDragMoved - - WindowFocusReleased - - WindowFocused - properties: - - Title - PluginGuiService: - superclass: Instance - events: [] - properties: [] - PluginManagementService: - superclass: Instance - events: [] - properties: [] - PluginManager: - superclass: Instance - events: [] - properties: [] - PluginManagerInterface: - superclass: Instance - events: [] - properties: [] - PluginMenu: - superclass: Instance - events: [] - properties: - - Icon - - Title - PluginMouse: - superclass: Mouse - events: - - DragEnter - properties: [] - PluginPolicyService: - superclass: Instance - events: [] - properties: [] - PluginToolbar: - superclass: Instance - events: [] - properties: [] - PluginToolbarButton: - superclass: Instance - events: - - Click - properties: - - ClickableWhenViewportHidden - - Enabled - - Icon - PointLight: - superclass: Light - events: [] - properties: - - Range - PointsService: - superclass: Instance - events: - - PointsAwarded - properties: [] - PolicyService: - superclass: Instance - events: [] - properties: - - IsLuobuServer - - LuobuWhitelisted - Pose: - superclass: PoseBase - events: [] - properties: - - CFrame - - MaskWeight - PoseBase: - superclass: Instance - events: [] - properties: - - EasingDirection - - EasingStyle - - Weight - PostEffect: - superclass: Instance - events: [] - properties: - - Enabled - PrismaticConstraint: - superclass: SlidingBallConstraint - events: [] - properties: [] - ProcessInstancePhysicsService: - superclass: Instance - events: [] - properties: [] - ProximityPrompt: - superclass: Instance - events: - - PromptButtonHoldBegan - - PromptButtonHoldEnded - - PromptHidden - - PromptShown - - TriggerEnded - - Triggered - properties: - - ActionText - - AutoLocalize - - ClickablePrompt - - Enabled - - Exclusivity - - GamepadKeyCode - - HoldDuration - - KeyboardKeyCode - - MaxActivationDistance - - ObjectText - - RequiresLineOfSight - - RootLocalizationTable - - Style - - UIOffset - ProximityPromptService: - superclass: Instance - events: - - PromptButtonHoldBegan - - PromptButtonHoldEnded - - PromptHidden - - PromptShown - - PromptTriggerEnded - - PromptTriggered - properties: - - Enabled - - MaxPromptsVisible - PublishService: - superclass: Instance - events: [] - properties: [] - QWidgetPluginGui: - superclass: PluginGui - events: [] - properties: [] - RayValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - RbxAnalyticsService: - superclass: Instance - events: [] - properties: [] - ReflectionMetadata: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataCallbacks: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataClass: - superclass: ReflectionMetadataItem - events: [] - properties: - - ExplorerImageIndex - - ExplorerOrder - - Insertable - - PreferredParent - - ServiceVisibility - ReflectionMetadataClasses: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataEnum: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataEnumItem: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataEnums: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataEvents: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataFunctions: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataItem: - superclass: Instance - events: [] - properties: - - Browsable - - ClassCategory - - ClientOnly - - Constraint - - Deprecated - - EditingDisabled - - EditorType - - FFlag - - IsBackend - - PropertyOrder - - ScriptContext - - ServerOnly - - SliderScaling - - UIMaximum - - UIMinimum - - UINumTicks - ReflectionMetadataMember: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataProperties: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataYieldFunctions: - superclass: Instance - events: [] - properties: [] - RemoteCursorService: - superclass: Instance - events: [] - properties: [] - RemoteDebuggerServer: - superclass: Instance - events: [] - properties: [] - RemoteEvent: - superclass: Instance - events: - - OnClientEvent - - OnServerEvent - properties: [] - RemoteFunction: - superclass: Instance - events: [] - properties: [] - RenderSettings: - superclass: Instance - events: [] - properties: - - AutoFRMLevel - - EagerBulkExecution - - EditQualityLevel - - EnableFRM - - ExportMergeByMaterial - - FrameRateManager - - GraphicsMode - - MeshCacheSize - - MeshPartDetailLevel - - QualityLevel - - ReloadAssets - - RenderCSGTrianglesDebug - - ShowBoundingBoxes - RenderingTest: - superclass: Instance - events: [] - properties: - - CFrame - - ComparisonDiffThreshold - - ComparisonMethod - - ComparisonPsnrThreshold - - Description - - FieldOfView - - Orientation - - Position - - QualityLevel - - ShouldSkip - - Ticket - ReplicatedFirst: - superclass: Instance - events: - - DefaultLoadingGuiRemoved - - FinishedReplicating - - RemoveDefaultLoadingGuiSignal - properties: [] - ReplicatedStorage: - superclass: Instance - events: [] - properties: [] - ReverbSoundEffect: - superclass: SoundEffect - events: [] - properties: - - DecayTime - - Density - - Diffusion - - DryLevel - - WetLevel - RigidConstraint: - superclass: Constraint - events: [] - properties: [] - RobloxPluginGuiService: - superclass: Instance - events: [] - properties: [] - RobloxReplicatedStorage: - superclass: Instance - events: [] - properties: [] - RocketPropulsion: - superclass: BodyMover - events: - - ReachedTarget - properties: - - CartoonFactor - - MaxSpeed - - MaxThrust - - MaxTorque - - Target - - TargetOffset - - TargetRadius - - ThrustD - - ThrustP - - TurnD - - TurnP - RodConstraint: - superclass: Constraint - events: [] - properties: - - CurrentDistance - - Length - - LimitAngle0 - - LimitAngle1 - - LimitsEnabled - - Thickness - RopeConstraint: - superclass: Constraint - events: [] - properties: - - CurrentDistance - - Length - - Restitution - - Thickness - - WinchEnabled - - WinchForce - - WinchResponsiveness - - WinchSpeed - - WinchTarget - Rotate: - superclass: JointInstance - events: [] - properties: [] - RotateP: - superclass: DynamicRotate - events: [] - properties: [] - RotateV: - superclass: DynamicRotate - events: [] - properties: [] - RotationCurve: - superclass: Instance - events: [] - properties: - - Length - RtMessagingService: - superclass: Instance - events: [] - properties: [] - RunService: - superclass: Instance - events: - - Heartbeat - - PostSimulation - - PreAnimation - - PreRender - - PreSimulation - - RenderStepped - - Stepped - properties: - - ClientGitHash - RunningAverageItemDouble: - superclass: StatsItem - events: [] - properties: [] - RunningAverageItemInt: - superclass: StatsItem - events: [] - properties: [] - RunningAverageTimeIntervalItem: - superclass: StatsItem - events: [] - properties: [] - RuntimeScriptService: - superclass: Instance - events: [] - properties: [] - SafetyService: - superclass: Instance - events: - - ScreenshotContentReady - - ScreenshotUploaded - properties: [] - ScreenGui: - superclass: LayerCollector - events: [] - properties: - - ClipToDeviceSafeArea - - DisplayOrder - - IgnoreGuiInset - - OnTopOfCoreBlur - - SafeAreaCompatibility - - ScreenInsets - ScreenshotHud: - superclass: Instance - events: [] - properties: - - CameraButtonIcon - - CameraButtonPosition - - CloseButtonPosition - - CloseWhenScreenshotTaken - - ExperienceNameOverlayEnabled - - OverlayFont - - UsernameOverlayEnabled - - Visible - Script: - superclass: BaseScript - events: [] - properties: - - Source - ScriptBuilder: - superclass: Instance - events: [] - properties: [] - ScriptChangeService: - superclass: Instance - events: - - ScriptAdded - - ScriptBeingRemoved - - ScriptChanged - - ScriptFullNameChanged - - ScriptSourceChanged - properties: [] - ScriptCloneWatcher: - superclass: Instance - events: [] - properties: [] - ScriptCloneWatcherHelper: - superclass: Instance - events: [] - properties: [] - ScriptContext: - superclass: Instance - events: - - Error - - ErrorDetailed - properties: - - ScriptsDisabled - ScriptDebugger: - superclass: Instance - events: - - BreakpointAdded - - BreakpointRemoved - - EncounteredBreak - - Resuming - - WatchAdded - - WatchRemoved - properties: - - CurrentLine - - IsDebugging - - IsPaused - - Script - ScriptDocument: - superclass: Instance - events: - - SelectionChanged - - ViewportChanged - properties: [] - ScriptEditorService: - superclass: Instance - events: - - TextDocumentDidChange - - TextDocumentDidClose - - TextDocumentDidOpen - properties: [] - ScriptRegistrationService: - superclass: Instance - events: [] - properties: [] - ScriptRuntime: - superclass: Instance - events: [] - properties: [] - ScriptService: - superclass: Instance - events: [] - properties: [] - ScrollingFrame: - superclass: GuiObject - events: [] - properties: - - AbsoluteCanvasSize - - AbsoluteWindowSize - - AutomaticCanvasSize - - BottomImage - - CanvasPosition - - CanvasSize - - ElasticBehavior - - HorizontalBarRect - - HorizontalScrollBarInset - - MaxCanvasPosition - - MidImage - - ScrollBarImageColor3 - - ScrollBarImageTransparency - - ScrollBarThickness - - ScrollVelocity - - ScrollingDirection - - ScrollingEnabled - - TopImage - - VerticalBarRect - - VerticalScrollBarInset - - VerticalScrollBarPosition - Seat: - superclass: Part - events: [] - properties: - - Disabled - - Occupant - Selection: - superclass: Instance - events: - - SelectionChanged - properties: - - ActiveInstance - - SelectionBoxThickness - - SelectionLineThickness - - SelectionThickness - - ShowBoundingBox - SelectionBox: - superclass: InstanceAdornment - events: [] - properties: - - LineThickness - - StudioSelectionBox - - SurfaceColor - - SurfaceColor3 - - SurfaceTransparency - SelectionHighlightManager: - superclass: Instance - events: [] - properties: [] - SelectionLasso: - superclass: GuiBase3d - events: [] - properties: - - Humanoid - SelectionPartLasso: - superclass: SelectionLasso - events: [] - properties: - - Part - SelectionPointLasso: - superclass: SelectionLasso - events: [] - properties: - - Point - SelectionSphere: - superclass: PVAdornment - events: [] - properties: - - SurfaceColor - - SurfaceColor3 - - SurfaceTransparency - SensorBase: - superclass: Instance - events: - - OnSensorOutputChanged - properties: - - UpdateType - ServerReplicator: - superclass: NetworkReplicator - events: [] - properties: [] - ServerScriptService: - superclass: Instance - events: [] - properties: - - LoadStringEnabled - ServerStorage: - superclass: Instance - events: [] - properties: [] - ServiceProvider: - superclass: Instance - events: - - Close - - CloseLate - - ServiceAdded - - ServiceRemoving - properties: [] - ServiceVisibilityService: - superclass: Instance - events: [] - properties: - - VisibleServices - SessionService: - superclass: Instance - events: [] - properties: [] - SharedTableRegistry: - superclass: Instance - events: [] - properties: [] - Shirt: - superclass: Clothing - events: [] - properties: - - ShirtTemplate - ShirtGraphic: - superclass: CharacterAppearance - events: [] - properties: - - Color3 - - Graphic - ShorelineUpgraderService: - superclass: Instance - events: - - Status - properties: [] - SkateboardController: - superclass: Controller - events: - - AxisChanged - properties: - - Steer - - Throttle - SkateboardPlatform: - superclass: Part - events: - - Equipped - - MoveStateChanged - - Unequipped - - equipped - - unequipped - properties: - - Controller - - ControllingHumanoid - - Steer - - StickyWheels - - Throttle - Skin: - superclass: CharacterAppearance - events: [] - properties: - - SkinColor - Sky: - superclass: Instance - events: [] - properties: - - CelestialBodiesShown - - MoonAngularSize - - MoonTextureId - - SkyboxBk - - SkyboxDn - - SkyboxFt - - SkyboxLf - - SkyboxRt - - SkyboxUp - - StarCount - - SunAngularSize - - SunTextureId - SlidingBallConstraint: - superclass: Constraint - events: [] - properties: - - ActuatorType - - CurrentPosition - - LimitsEnabled - - LinearResponsiveness - - LowerLimit - - MotorMaxAcceleration - - MotorMaxForce - - Restitution - - ServoMaxForce - - Size - - Speed - - TargetPosition - - UpperLimit - - Velocity - Smoke: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - Opacity - - RiseVelocity - - Size - - TimeScale - SmoothVoxelsUpgraderService: - superclass: Instance - events: - - Status - properties: [] - Snap: - superclass: JointInstance - events: [] - properties: [] - SnippetService: - superclass: Instance - events: [] - properties: [] - SocialService: - superclass: Instance - events: - - GameInvitePromptClosed - - PromptInviteRequested - properties: [] - SolidModelContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - Sound: - superclass: Instance - events: - - DidLoop - - Ended - - Loaded - - Paused - - Played - - Resumed - - Stopped - properties: - - ChannelCount - - EmitterSize - - IsLoaded - - IsPaused - - IsPlaying - - IsSpatial - - LoopRegion - - Looped - - MaxDistance - - MinDistance - - Pitch - - PlayOnRemove - - PlaybackLoudness - - PlaybackRegion - - PlaybackRegionsEnabled - - PlaybackSpeed - - Playing - - RollOffGain - - RollOffMaxDistance - - RollOffMinDistance - - RollOffMode - - SoundGroup - - SoundId - - TimeLength - - TimePosition - - UsageContextPermission - - Volume - - isPlaying - SoundEffect: - superclass: Instance - events: [] - properties: - - Enabled - - Priority - SoundGroup: - superclass: Instance - events: [] - properties: - - Volume - SoundService: - superclass: Instance - events: - - DeviceListChanged - properties: - - AmbientReverb - - DistanceFactor - - DopplerScale - - RespectFilteringEnabled - - RolloffScale - - VolumetricAudio - Sparkles: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - SparkleColor - - TimeScale - SpawnLocation: - superclass: Part - events: [] - properties: - - AllowTeamChangeOnTouch - - Duration - - Enabled - - Neutral - - TeamColor - SpawnerService: - superclass: Instance - events: [] - properties: [] - Speaker: - superclass: Instance - events: [] - properties: - - ChannelCount - - PlaybackLoudness - - RollOffMaxDistance - - RollOffMinDistance - - RollOffMode - - SoundGroup - - Source - - Volume - SpecialMesh: - superclass: FileMesh - events: [] - properties: - - MeshType - SphereHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Radius - SpotLight: - superclass: Light - events: [] - properties: - - Angle - - Face - - Range - SpringConstraint: - superclass: Constraint - events: [] - properties: - - Coils - - CurrentLength - - Damping - - FreeLength - - LimitsEnabled - - MaxForce - - MaxLength - - MinLength - - Radius - - Stiffness - - Thickness - StackFrame: - superclass: Instance - events: [] - properties: - - FrameId - - FrameName - - FrameType - - Globals - - Line - - Locals - - Populated - - Script - - Upvalues - StandalonePluginScripts: - superclass: Instance - events: [] - properties: [] - StandardPages: - superclass: Pages - events: [] - properties: [] - StarterCharacterScripts: - superclass: StarterPlayerScripts - events: [] - properties: [] - StarterGear: - superclass: Instance - events: [] - properties: [] - StarterGui: - superclass: BasePlayerGui - events: - - CoreGuiChangedSignal - properties: - - ProcessUserInput - - ResetPlayerGuiOnSpawn - - RtlTextSupport - - ScreenOrientation - - ShowDevelopmentGui - - VirtualCursorMode - StarterPack: - superclass: Instance - events: [] - properties: [] - StarterPlayer: - superclass: Instance - events: [] - properties: - - AllowCustomAnimations - - AutoJumpEnabled - - CameraMaxZoomDistance - - CameraMinZoomDistance - - CameraMode - - CharacterJumpHeight - - CharacterJumpPower - - CharacterMaxSlopeAngle - - CharacterUseJumpPower - - CharacterWalkSpeed - - DevCameraOcclusionMode - - DevComputerCameraMovementMode - - DevComputerMovementMode - - DevTouchCameraMovementMode - - DevTouchMovementMode - - EnableDynamicHeads - - EnableMouseLockOption - - GameSettingsAssetIDFace - - GameSettingsAssetIDHead - - GameSettingsAssetIDLeftArm - - GameSettingsAssetIDLeftLeg - - GameSettingsAssetIDPants - - GameSettingsAssetIDRightArm - - GameSettingsAssetIDRightLeg - - GameSettingsAssetIDShirt - - GameSettingsAssetIDTeeShirt - - GameSettingsAssetIDTorso - - GameSettingsAvatar - - GameSettingsR15Collision - - GameSettingsScaleRangeBodyType - - GameSettingsScaleRangeHead - - GameSettingsScaleRangeHeight - - GameSettingsScaleRangeProportion - - GameSettingsScaleRangeWidth - - HealthDisplayDistance - - HumanoidStateMachineMode - - LoadCharacterAppearance - - 'LoadCharacterLayeredClothing ' - - NameDisplayDistance - - UserEmotesEnabled - StarterPlayerScripts: - superclass: Instance - events: [] - properties: [] - Stats: - superclass: Instance - events: [] - properties: - - ContactsCount - - DataReceiveKbps - - DataSendKbps - - HeartbeatTimeMs - - InstanceCount - - MovingPrimitivesCount - - PhysicsReceiveKbps - - PhysicsSendKbps - - PhysicsStepTimeMs - - PrimitivesCount - StatsItem: - superclass: Instance - events: [] - properties: - - DisplayName - Status: - superclass: Model - events: [] - properties: [] - StringValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - Studio: - superclass: Instance - events: - - ThemeChanged - properties: - - '"TODO" Color' - - '"function" Color' - - '"local" Color' - - '"nil" Color' - - '"self" Color' - - Active Color - - Active Hover Over Color - - Always Save Script Changes - - Animate Hover Over - - Auto Clean Empty Line - - Auto Closing Brackets - - Auto Closing Quotes - - Auto Delete Closing Brackets and Quotes - - Auto Indent Rule - - Auto-Recovery Enabled - - Auto-Recovery Interval (Minutes) - - Auto-Recovery Path - - Automatically commit locked scripts when you save or publish to Roblox - - Background Color - - Basic Objects Display Mode - - Bool Color - - Bracket Color - - Built-in Function Color - - Camera Mouse Wheel Speed - - Camera Pan Speed - - Camera Shift Speed - - Camera Speed - - Camera Zoom to Mouse Position - - Clear Output On Start - - CommandBarLocalState - - Comment Color - - Current Line Highlight Color - - Debugger Current Line Color - - Debugger Error Line Color - - DefaultScriptFileDir - - DeprecatedObjectsShown - - Display Team Create toggle when creating a new experience - - DisplayLanguage - - Doc View Code Background Color - - Drag Multiple Parts As Single Part - - Enable Autocomplete - - Enable Autocomplete Doc View - - Enable CoreScript Debugger - - Enable Http Sandboxing - - Enable Internal Beta Features - - Enable Internal Features - - Enable Script Analysis - - Enable Scrollbar Markers - - Enable Signature Help - - Enable Signature Help Doc View - - Enable Temporary Tabs - - Enable Temporary Tabs In Explorer - - Enable Type Hover - - EnableOnTypeAutocomplete - - Error Color - - File > New creates a place with Team Create off - - Find Selection Background Color - - Font - - Format On Paste - - Format On Type - - Function Name Color - - Highlight Current Line - - Highlight Occurances - - Hover Animate Speed - - Hover Box Thickness - - Hover Line Thickness - - Hover Over Color - - IconOverrideDir - - Indent Using Spaces - - Keyword Color - - Line Thickness - - LocalAssetsFolder - - LuaDebuggerEnabled - - LuaDebuggerEnabledAtStartup - - Luau Keyword Color - - Main Volume - - Matching Word Background Color - - Maximum Output Lines - - Menu Item Background Color - - Method Color - - Number Color - - Only Play Audio from Window in Focus - - Operator Color - - Output Font - - Output Layout Mode - - PermissionLevelShown - - Physical Draggers Select Scope By Default - - Pivot Snap To Geometry Color - - PluginDebuggingEnabled - - PluginsDir - - Primary Text Color - - Property Color - - Render Throttle Percentage - - Respect Studio shortcuts when game has focus - - Ruler Color - - Rulers - - RuntimeUndoBehavior - - Script Editor Color Preset - - Script Editor Scrollbar Background Color - - Script Editor Scrollbar Handle Color - - ScriptEditorMenuBorderColor - - ScriptEditorShouldShowPluginMethods - - ScriptTimeoutLength - - Scroll Past Last Line - - Search Content For Core Scripts - - Secondary Text Color - - Select Color - - Select/Hover Color - - Selected Menu Item Background Color - - Selected Text Color - - Selection Background Color - - Selection Box Thickness - - Selection Color - - Selection Highlight Thickness - - Selection Line Thickness - - Server Audio Behavior - - Set Pivot of Imported Parts - - Show Core GUI in Explorer while Playing - - Show Diagnostics Bar - - Show FileSyncService - - Show Hidden Objects in Explorer - - Show Hover Over - - Show Light Guides - - Show Navigation Labels - - Show Navigation Mesh - - Show Pathfinding Links - - Show Plugin GUI Service in Explorer - - Show QT warnings in output - - Show Whitespace - - Show plus button on hover in Explorer - - ShowCorePackagesInExplorer - - Skip Closing Brackets and Quotes - - String Color - - Tab Width - - Text Color - - Text Wrapping - - Theme - - UI Theme - - Use Bounding Box Move Handles - - Warning Color - - Whitespace Color - StudioAssetService: - superclass: Instance - events: - - OnConvertToPackageResult - - OnPublishPackageResult - - OnSaveToRoblox - properties: [] - StudioData: - superclass: Instance - events: [] - properties: - - EnableScriptCollabByDefaultOnLoad - StudioDeviceEmulatorService: - superclass: Instance - events: - - CurrentDeviceIdChanged - - OrientationChanged - - TouchInBoundsChanged - - TouchPositionsChanged - properties: - - HasMultiTouchStarted - - IsMultiTouchEmulationOn - - IsMultiTouchEnabled - - PivotPosition - StudioPublishService: - superclass: Instance - events: - - GameNameUpdated - - GamePublishCancelled - - GamePublishFinished - - OnSaveOrPublishPlaceToRoblox - properties: [] - StudioScriptDebugEventListener: - superclass: Instance - events: [] - properties: [] - StudioSdkService: - superclass: Instance - events: [] - properties: [] - StudioService: - superclass: Instance - events: - - OnImportFromRoblox - - OnOpenGameSettings - - OnOpenManagePackagePlugin - - OnPluginInstalledFromToolbox - - OnPluginInstalledFromWeb - - OnPublishAsPlugin - - OnSaveToRoblox - - PromptTransformPluginCheckEnable - - SaveLocallyAsComplete - properties: - - ActiveScript - - AlignDraggedObjects - - DraggerSolveConstraints - - DrawConstraintsOnTop - - GridSize - - HoverInstance - - InstalledPluginData - - PivotSnapToGeometry - - RotateIncrement - - ShowActiveInstanceHighlight - - ShowConstraintDetails - - StudioLocaleId - - UseLocalSpace - StudioTheme: - superclass: Instance - events: [] - properties: [] - SunRaysEffect: - superclass: PostEffect - events: [] - properties: - - Intensity - - Spread - SurfaceAppearance: - superclass: Instance - events: [] - properties: - - AlphaMode - - ColorMap - - MetalnessMap - - NormalMap - - RoughnessMap - - TexturePack - SurfaceGui: - superclass: SurfaceGuiBase - events: [] - properties: - - AlwaysOnTop - - Brightness - - CanvasSize - - ClipsDescendants - - HorizontalCurvature - - LightInfluence - - PixelsPerStud - - Shape - - SizingMode - - ToolPunchThroughDistance - - ZOffset - SurfaceGuiBase: - superclass: LayerCollector - events: [] - properties: - - Active - - Adornee - - Face - SurfaceLight: - superclass: Light - events: [] - properties: - - Angle - - Face - - Range - SurfaceSelection: - superclass: PartAdornment - events: [] - properties: - - TargetSurface - SwimController: - superclass: ControllerBase - events: [] - properties: - - AccelerationTime - - PitchMaxTorque - - PitchSpeedFactor - - RollMaxTorque - - RollSpeedFactor - SyncScriptBuilder: - superclass: ScriptBuilder - events: [] - properties: - - CoverageInfo - - DebugInfo - - PackAsSource - - RawBytecode - TaskScheduler: - superclass: Instance - events: [] - properties: - - SchedulerDutyCycle - - SchedulerRate - - ThreadPoolConfig - - ThreadPoolSize - Team: - superclass: Instance - events: - - PlayerAdded - - PlayerRemoved - properties: - - AutoAssignable - - AutoColorCharacters - - ChildOrder - - Score - - TeamColor - TeamCreateData: - superclass: Instance - events: [] - properties: [] - TeamCreatePublishService: - superclass: Instance - events: [] - properties: [] - TeamCreateService: - superclass: Instance - events: - - ToggleManageCollaborators - properties: [] - Teams: - superclass: Instance - events: [] - properties: [] - TeleportAsyncResult: - superclass: Instance - events: [] - properties: - - PrivateServerId - - ReservedServerAccessCode - TeleportOptions: - superclass: Instance - events: [] - properties: - - ReservedServerAccessCode - - ServerInstanceId - - ShouldReserveServer - TeleportService: - superclass: Instance - events: - - LocalPlayerArrivedFromTeleport - - MenuTeleportAttempt - - TeleportInitFailed - properties: - - CustomizedTeleportUI - TemporaryCageMeshProvider: - superclass: Instance - events: [] - properties: [] - TemporaryScriptService: - superclass: Instance - events: [] - properties: [] - Terrain: - superclass: BasePart - events: [] - properties: - - Decoration - - IsSmooth - - LastUsedModificationMethod - - MaterialColors - - MaxExtents - - ShorelinesUpgraded - - SmoothVoxelsUpgraded - - WaterColor - - WaterReflectance - - WaterTransparency - - WaterWaveSize - - WaterWaveSpeed - TerrainDetail: - superclass: Instance - events: [] - properties: - - ColorMap - - Face - - MaterialPattern - - MetalnessMap - - NormalMap - - RoughnessMap - - StudsPerTile - TerrainRegion: - superclass: Instance - events: [] - properties: - - IsSmooth - - SizeInCells - TestService: - superclass: Instance - events: - - ServerCollectConditionalResult - - ServerCollectResult - properties: - - AutoRuns - - Description - - ErrorCount - - ExecuteWithStudioRun - - Is30FpsThrottleEnabled - - IsPhysicsEnvironmentalThrottled - - IsSleepAllowed - - NumberOfPlayers - - SimulateSecondsLag - - TestCount - - Timeout - - WarnCount - TextBox: - superclass: GuiObject - events: - - FocusLost - - Focused - - ReturnPressedFromOnScreenKeyboard - properties: - - ClearTextOnFocus - - ContentText - - CursorPosition - - Font - - FontFace - - FontSize - - LineHeight - - ManualFocusRelease - - MaxVisibleGraphemes - - MultiLine - - OverlayNativeInput - - PlaceholderColor3 - - PlaceholderText - - ReturnKeyType - - RichText - - SelectionStart - - ShowNativeInput - - Text - - TextBounds - - TextColor - - TextColor3 - - TextEditable - - TextFits - - TextInputType - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextBoxService: - superclass: Instance - events: [] - properties: [] - TextButton: - superclass: GuiButton - events: [] - properties: - - ContentText - - Font - - FontFace - - FontSize - - LineHeight - - LocalizedText - - MaxVisibleGraphemes - - RichText - - Text - - TextBounds - - TextColor - - TextColor3 - - TextFits - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextChannel: - superclass: Instance - events: - - MessageReceived - properties: [] - TextChatCommand: - superclass: Instance - events: - - Triggered - properties: - - Enabled - - PrimaryAlias - - SecondaryAlias - TextChatConfigurations: - superclass: Instance - events: [] - properties: [] - TextChatMessage: - superclass: Instance - events: [] - properties: - - MessageId - - Metadata - - PrefixText - - Status - - Text - - TextChannel - - TextSource - - Timestamp - TextChatMessageProperties: - superclass: Instance - events: [] - properties: - - PrefixText - - Text - TextChatService: - superclass: Instance - events: - - MessageReceived - - SendingMessage - properties: - - ChatVersion - - CreateDefaultCommands - - CreateDefaultTextChannels - TextFilterResult: - superclass: Instance - events: [] - properties: [] - TextLabel: - superclass: GuiLabel - events: [] - properties: - - ContentText - - Font - - FontFace - - FontSize - - LineHeight - - LocalizedText - - MaxVisibleGraphemes - - RichText - - Text - - TextBounds - - TextColor - - TextColor3 - - TextFits - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextService: - superclass: Instance - events: [] - properties: [] - TextSource: - superclass: Instance - events: [] - properties: - - CanSend - - UserId - Texture: - superclass: Decal - events: [] - properties: - - OffsetStudsU - - OffsetStudsV - - StudsPerTileU - - StudsPerTileV - TextureGuiExperimental: - superclass: LayerCollector - events: [] - properties: - - Size - - TemporaryId - ThirdPartyUserService: - superclass: Instance - events: - - ActiveGamepadAdded - - ActiveGamepadRemoved - - ActiveUserSignedOut - properties: [] - ThreadState: - superclass: Instance - events: [] - properties: - - FrameCount - - Populated - - ThreadId - - ThreadName - TimerService: - superclass: Instance - events: [] - properties: [] - ToastNotificationService: - superclass: Instance - events: [] - properties: [] - Tool: - superclass: BackpackItem - events: - - Activated - - Deactivated - - Equipped - - Unequipped - properties: - - CanBeDropped - - Enabled - - Grip - - GripForward - - GripPos - - GripRight - - GripUp - - ManualActivationOnly - - RequiresHandle - - ToolTip - Torque: - superclass: Constraint - events: [] - properties: - - RelativeTo - - Torque - TorsionSpringConstraint: - superclass: Constraint - events: [] - properties: - - Coils - - CurrentAngle - - Damping - - LimitEnabled - - LimitsEnabled - - MaxAngle - - MaxTorque - - Radius - - Restitution - - Stiffness - TotalCountTimeIntervalItem: - superclass: StatsItem - events: [] - properties: [] - TouchInputService: - superclass: Instance - events: [] - properties: [] - TouchTransmitter: - superclass: Instance - events: [] - properties: [] - TracerService: - superclass: Instance - events: [] - properties: [] - TrackerLodController: - superclass: Instance - events: - - UpdateState - properties: - - AudioMode - - VideoExtrapolationMode - - VideoLodMode - - VideoMode - TrackerStreamAnimation: - superclass: Instance - events: [] - properties: [] - Trail: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - Brightness - - Color - - Enabled - - FaceCamera - - Lifetime - - LightEmission - - LightInfluence - - MaxLength - - MinLength - - Texture - - TextureLength - - TextureMode - - Transparency - - WidthScale - Translator: - superclass: Instance - events: [] - properties: - - LocaleId - TremoloSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Duty - - Frequency - TriangleMeshPart: - superclass: BasePart - events: [] - properties: - - CollisionFidelity - - MeshSize - TrussPart: - superclass: BasePart - events: [] - properties: - - Style - Tween: - superclass: TweenBase - events: [] - properties: - - Instance - - TweenInfo - TweenBase: - superclass: Instance - events: - - Completed - properties: - - PlaybackState - TweenService: - superclass: Instance - events: [] - properties: [] - UGCValidationService: - superclass: Instance - events: [] - properties: [] - UIAspectRatioConstraint: - superclass: UIConstraint - events: [] - properties: - - AspectRatio - - AspectType - - DominantAxis - UIBase: - superclass: Instance - events: [] - properties: [] - UIComponent: - superclass: UIBase - events: [] - properties: [] - UIConstraint: - superclass: UIComponent - events: [] - properties: [] - UICorner: - superclass: UIComponent - events: [] - properties: - - CornerRadius - UIGradient: - superclass: UIComponent - events: [] - properties: - - Color - - Enabled - - Offset - - Rotation - - Transparency - UIGridLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - AbsoluteCellCount - - AbsoluteCellSize - - CellPadding - - CellSize - - FillDirectionMaxCells - - StartCorner - UIGridStyleLayout: - superclass: UILayout - events: [] - properties: - - AbsoluteContentSize - - FillDirection - - HorizontalAlignment - - SortOrder - - VerticalAlignment - UILayout: - superclass: UIComponent - events: [] - properties: [] - UIListLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - Padding - UIPadding: - superclass: UIComponent - events: [] - properties: - - PaddingBottom - - PaddingLeft - - PaddingRight - - PaddingTop - UIPageLayout: - superclass: UIGridStyleLayout - events: - - PageEnter - - PageLeave - - Stopped - properties: - - Animated - - Circular - - CurrentPage - - EasingDirection - - EasingStyle - - GamepadInputEnabled - - Padding - - ScrollWheelInputEnabled - - TouchInputEnabled - - TweenTime - UIScale: - superclass: UIComponent - events: [] - properties: - - Scale - UISizeConstraint: - superclass: UIConstraint - events: [] - properties: - - MaxSize - - MinSize - UIStroke: - superclass: UIComponent - events: [] - properties: - - ApplyStrokeMode - - Color - - Enabled - - LineJoinMode - - Thickness - - Transparency - UITableLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - FillEmptySpaceColumns - - FillEmptySpaceRows - - MajorAxis - - Padding - UITextSizeConstraint: - superclass: UIConstraint - events: [] - properties: - - MaxTextSize - - MinTextSize - UnionOperation: - superclass: PartOperation - events: [] - properties: [] - UniversalConstraint: - superclass: Constraint - events: [] - properties: - - LimitsEnabled - - MaxAngle - - Radius - - Restitution - UnvalidatedAssetService: - superclass: Instance - events: [] - properties: [] - UserGameSettings: - superclass: Instance - events: - - FullscreenChanged - - PerformanceStatsVisibleChanged - - StudioModeChanged - properties: - - AllTutorialsDisabled - - CameraMode - - CameraYInverted - - ChatVisible - - ComputerCameraMovementMode - - ComputerMovementMode - - ControlMode - - DefaultCameraID - - Fullscreen - - GamepadCameraSensitivity - - GraphicsQualityLevel - - HasEverUsedVR - - IsUsingCameraYInverted - - IsUsingGamepadCameraSensitivity - - MasterVolume - - MicroProfilerWebServerEnabled - - MicroProfilerWebServerIP - - MicroProfilerWebServerPort - - MouseSensitivity - - MouseSensitivityFirstPerson - - MouseSensitivityThirdPerson - - OnScreenProfilerEnabled - - OnboardingsCompleted - - PerformanceStatsVisible - - PlayerHeight - - RCCProfilerRecordFrameRate - - RCCProfilerRecordTimeFrame - - RotationType - - SavedQualityLevel - - StartMaximized - - StartScreenPosition - - StartScreenSize - - TouchCameraMovementMode - - TouchMovementMode - - UsedCoreGuiIsVisibleToggle - - UsedCustomGuiIsVisibleToggle - - UsedHideHudShortcut - - VREnabled - - VRPlayMode - - VRRotationIntensity - - VRSafetyBubbleMode - - VRSmoothRotationEnabled - - VignetteEnabled - UserInputService: - superclass: Instance - events: - - DeviceAccelerationChanged - - DeviceGravityChanged - - DeviceRotationChanged - - GamepadConnected - - GamepadDisconnected - - InputBegan - - InputChanged - - InputEnded - - JumpRequest - - LastInputTypeChanged - - PointerAction - - StatusBarTapped - - TextBoxFocusReleased - - TextBoxFocused - - TouchEnded - - TouchLongPress - - TouchMoved - - TouchPan - - TouchPinch - - TouchRotate - - TouchStarted - - TouchSwipe - - TouchTap - - TouchTapInWorld - - UserCFrameChanged - - WindowFocusReleased - - WindowFocused - properties: - - AccelerometerEnabled - - BottomBarSize - - GamepadEnabled - - GazeSelectionEnabled - - GyroscopeEnabled - - KeyboardEnabled - - LegacyInputEventsEnabled - - ModalEnabled - - MouseBehavior - - MouseDeltaSensitivity - - MouseEnabled - - MouseIcon - - MouseIconEnabled - - NavBarSize - - OnScreenKeyboardAnimationDuration - - OnScreenKeyboardPosition - - OnScreenKeyboardSize - - OnScreenKeyboardVisible - - OverrideMouseIconBehavior - - RightBarSize - - StatusBarSize - - TouchEnabled - - UserHeadCFrame - - VREnabled - UserService: - superclass: Instance - events: [] - properties: [] - UserSettings: - superclass: GenericSettings - events: [] - properties: [] - UserStorageService: - superclass: LocalStorageService - events: [] - properties: [] - VRService: - superclass: Instance - events: - - NavigationRequested - - TouchpadModeChanged - - UserCFrameChanged - - UserCFrameEnabled - properties: - - AutomaticScaling - - DidPointerHit - - FadeOutViewOnCollision - - GuiInputUserCFrame - - LaserDistance - - PointerHitCFrame - - VRDeviceAvailable - - VRDeviceName - - VREnabled - - VRSessionState - ValueBase: - superclass: Instance - events: [] - properties: [] - Vector3Curve: - superclass: Instance - events: [] - properties: [] - Vector3Value: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - VectorForce: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - Force - - RelativeTo - VehicleController: - superclass: Controller - events: [] - properties: [] - VehicleSeat: - superclass: BasePart - events: [] - properties: - - AreHingesDetected - - Disabled - - HeadsUpDisplay - - MaxSpeed - - Occupant - - Steer - - SteerFloat - - Throttle - - ThrottleFloat - - Torque - - TurnSpeed - VelocityMotor: - superclass: JointInstance - events: [] - properties: - - CurrentAngle - - DesiredAngle - - Hole - - MaxVelocity - VersionControlService: - superclass: Instance - events: [] - properties: - - ScriptCollabEnabled - VideoCaptureService: - superclass: Instance - events: - - DevicesChanged - - Error - - Started - - Stopped - properties: - - Active - - CameraID - VideoFrame: - superclass: GuiObject - events: - - DidLoop - - Ended - - Loaded - - Paused - - Played - properties: - - IsLoaded - - Looped - - Playing - - Resolution - - TimeLength - - TimePosition - - Video - - Volume - ViewportFrame: - superclass: GuiObject - events: [] - properties: - - Ambient - - CurrentCamera - - ImageColor3 - - ImageTransparency - - IsMirrored - - LightColor - - LightDirection - VirtualInputManager: - superclass: Instance - events: - - PlaybackCompleted - - RecordingCompleted - properties: - - AdditionalLuaState - VirtualUser: - superclass: Instance - events: [] - properties: [] - VisibilityCheckDispatcher: - superclass: Instance - events: [] - properties: [] - VisibilityService: - superclass: Instance - events: [] - properties: [] - Visit: - superclass: Instance - events: [] - properties: [] - VoiceChatInternal: - superclass: Instance - events: - - LocalPlayerModerated - - ParticipantsStateChanged - - PlayerMicActivitySignalChange - - StateChanged - properties: - - VoiceChatState - VoiceChatService: - superclass: Instance - events: [] - properties: - - EnableDefaultVoice - - VoiceChatEnabledForPlaceOnRcc - - VoiceChatEnabledForUniverseOnRcc - VoiceSource: - superclass: Instance - events: [] - properties: - - UserId - WedgePart: - superclass: FormFactorPart - events: [] - properties: [] - Weld: - superclass: JointInstance - events: [] - properties: [] - WeldConstraint: - superclass: Instance - events: [] - properties: - - Active - - Enabled - - Part0 - - Part1 - WireframeHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Scale - Workspace: - superclass: WorldRoot - events: - - PersistentLoaded - properties: - - AllowThirdPartySales - - ClientAnimatorThrottling - - CurrentCamera - - DistributedGameTime - - FallenPartsDestroyHeight - - FilteringEnabled - - GlobalWind - - Gravity - - HumanoidOnlySetCollisionsOnStateChange - - InterpolationThrottling - - MeshPartHeadsAndAccessories - - PhysicsSteppingMethod - - RejectCharacterDeletions - - ReplicateInstanceDestroySetting - - Retargeting - - SignalBehavior - - StreamOutBehavior - - StreamingEnabled - - StreamingIntegrityMode - - StreamingMinRadius - - StreamingTargetRadius - - Terrain - - TouchesUseCollisionGroups - WorldModel: - superclass: WorldRoot - events: [] - properties: [] - WorldRoot: - superclass: Model - events: [] - properties: [] - WrapLayer: - superclass: BaseWrap - events: [] - properties: - - AutoSkin - - BindOffset - - Color - - DebugMode - - Enabled - - Order - - Puffiness - - ReferenceMeshId - - ReferenceOrigin - - ReferenceOriginWorld - - ShrinkFactor - WrapTarget: - superclass: BaseWrap - events: [] - properties: - - Color - - DebugMode - - Stiffness diff --git a/Modules/State/selene.toml b/Modules/State/selene.toml deleted file mode 100644 index c1911be..0000000 --- a/Modules/State/selene.toml +++ /dev/null @@ -1 +0,0 @@ -std = "roblox+testez" \ No newline at end of file diff --git a/Modules/State/testez.yml b/Modules/State/testez.yml deleted file mode 100644 index 5c1adda..0000000 --- a/Modules/State/testez.yml +++ /dev/null @@ -1,53 +0,0 @@ ---- -globals: - FIXME: - args: - - required: false - type: string - FOCUS: - args: [] - SKIP: - args: [] - afterAll: - args: - - type: function - afterEach: - args: - - type: function - beforeAll: - args: - - type: function - beforeEach: - args: - - type: function - describe: - args: - - type: string - - type: function - describeFOCUS: - args: - - type: string - - type: function - describeSKIP: - args: - - type: string - - type: function - expect: - args: - - type: any - it: - args: - - type: string - - type: function - itFIXME: - args: - - type: string - - type: function - itFOCUS: - args: - - type: string - - type: function - itSKIP: - args: - - type: string - - type: function \ No newline at end of file diff --git a/Modules/State/wally.toml b/Modules/State/wally.toml deleted file mode 100644 index 818165b..0000000 --- a/Modules/State/wally.toml +++ /dev/null @@ -1,19 +0,0 @@ -[package] -name = "4x8matrix/state" -version = "2.0.1" -realm = "shared" -registry = "https://github.com/upliftgames/wally-index" -licence = "MIT" -authors = ["AsynchronousMatrix"] - -description = "A simple module to wrap around any datatype & provide an interface for manipulating that value." - -exclude = ["**"] -include = ["Source", "Source/*", "default.project.json", "wally.toml"] - -[dev-dependencies] -TestEz = "roblox/testez@0.4.1" -EmoticonReporter = "4x8matrix/emoticon-reporter@1.0.0" - -[dependencies] -Signal = "sleitnick/signal@1.x.x" \ No newline at end of file diff --git a/Modules/Windline/aftman.toml b/Modules/Windline/aftman.toml deleted file mode 100644 index 349f6b9..0000000 --- a/Modules/Windline/aftman.toml +++ /dev/null @@ -1,9 +0,0 @@ -# This file lists tools managed by Aftman, a cross-platform toolchain manager. -# For more information, see https://github.com/LPGhatguy/aftman - -# To add a new tool, add an entry to this table. - -[tools] -rojo = "rojo-rbx/rojo@7.3.0" -selene = "Kampfkarren/selene@0.25.0" -wally = "UpliftGames/wally@0.3.2" \ No newline at end of file diff --git a/Modules/Windline/default.project.json b/Modules/Windline/default.project.json deleted file mode 100644 index 34bdef1..0000000 --- a/Modules/Windline/default.project.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "name": "Windline", - "tree": { - "$path": "Source" - } -} \ No newline at end of file diff --git a/Modules/Windline/development.project.json b/Modules/Windline/development.project.json deleted file mode 100644 index eefc317..0000000 --- a/Modules/Windline/development.project.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "name": "windline", - "tree": { - "$className": "DataModel", - - "Players": { - "$className": "Players", - "$properties": { - "CharacterAutoLoads": false - } - }, - - "ReplicatedStorage": { - "$className": "ReplicatedStorage", - "$ignoreUnknownInstances": true, - - "Packages": { - "$className": "Folder", - "$path": "Packages", - - "Windline": { - "$path": "Source" - } - }, - - "DevPackages": { - "$className": "Folder", - "$path": "DevPackages" - } - }, - - "ServerScriptService": { - "$className": "ServerScriptService", - "$ignoreUnknownInstances": true, - "$path": "Tests" - } - } -} \ No newline at end of file diff --git a/Modules/Windline/roblox.yml b/Modules/Windline/roblox.yml deleted file mode 100644 index e4089d3..0000000 --- a/Modules/Windline/roblox.yml +++ /dev/null @@ -1,16959 +0,0 @@ -# This file was @generated by generate-roblox-std at 2023-04-11 16:38:39.388332415 +01:00 -base: luau -name: roblox -globals: - Axes.new: - args: - - type: '...' - must_use: true - BrickColor.Black: - args: [] - must_use: true - BrickColor.Blue: - args: [] - must_use: true - BrickColor.DarkGray: - args: [] - must_use: true - BrickColor.Gray: - args: [] - must_use: true - BrickColor.Green: - args: [] - must_use: true - BrickColor.Red: - args: [] - must_use: true - BrickColor.White: - args: [] - must_use: true - BrickColor.Yellow: - args: [] - must_use: true - BrickColor.new: - args: - - type: any - - required: false - type: number - - required: false - type: number - must_use: true - BrickColor.palette: - args: - - type: number - must_use: true - BrickColor.random: - args: [] - must_use: true - CFrame.Angles: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - CFrame.fromAxisAngle: - args: - - type: - display: Vector3 - - type: number - must_use: true - CFrame.fromEulerAngles: - args: - - type: number - - type: number - - type: number - - required: false - type: - display: RotationOrder - must_use: true - CFrame.fromEulerAnglesXYZ: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.fromEulerAnglesYXZ: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.fromMatrix: - args: - - type: - display: Vector3 - - type: - display: Vector3 - - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - CFrame.fromOrientation: - args: - - type: number - - type: number - - type: number - must_use: true - CFrame.identity: - property: read-only - CFrame.lookAt: - args: - - type: - display: Vector3 - - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - CFrame.new: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - CatalogSearchParams.new: - args: [] - must_use: true - Color3.fromHSV: - args: - - type: number - - type: number - - type: number - must_use: true - Color3.fromHex: - args: - - type: string - must_use: true - Color3.fromRGB: - args: - - type: number - - type: number - - type: number - must_use: true - Color3.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Color3.toHSV: - args: - - type: - display: Color3 - must_use: true - ColorSequence.new: - args: - - type: any - - required: false - type: - display: Color3 - must_use: true - ColorSequenceKeypoint.new: - args: - - type: number - - type: - display: Color3 - must_use: true - DateTime.fromIsoDate: - args: - - type: string - must_use: true - DateTime.fromLocalTime: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - DateTime.fromUniversalTime: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - DateTime.fromUnixTimestamp: - args: - - type: number - must_use: true - DateTime.fromUnixTimestampMillis: - args: - - type: number - must_use: true - DateTime.now: - args: [] - must_use: true - DebuggerManager: - args: [] - must_use: true - DockWidgetPluginGuiInfo.new: - args: - - required: false - type: - display: InitialDockState - - required: false - type: bool - - required: false - type: bool - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Enum.AccessoryType.Back: - struct: EnumItem - Enum.AccessoryType.DressSkirt: - struct: EnumItem - Enum.AccessoryType.Eyebrow: - struct: EnumItem - Enum.AccessoryType.Eyelash: - struct: EnumItem - Enum.AccessoryType.Face: - struct: EnumItem - Enum.AccessoryType.Front: - struct: EnumItem - Enum.AccessoryType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AccessoryType.Hair: - struct: EnumItem - Enum.AccessoryType.Hat: - struct: EnumItem - Enum.AccessoryType.Jacket: - struct: EnumItem - Enum.AccessoryType.LeftShoe: - struct: EnumItem - Enum.AccessoryType.Neck: - struct: EnumItem - Enum.AccessoryType.Pants: - struct: EnumItem - Enum.AccessoryType.RightShoe: - struct: EnumItem - Enum.AccessoryType.Shirt: - struct: EnumItem - Enum.AccessoryType.Shorts: - struct: EnumItem - Enum.AccessoryType.Shoulder: - struct: EnumItem - Enum.AccessoryType.Sweater: - struct: EnumItem - Enum.AccessoryType.TShirt: - struct: EnumItem - Enum.AccessoryType.TeeShirt: - struct: EnumItem - deprecated: - message: Enum.AccessoryType.TeeShirt was replaced with Enum.AccessoryType.TShirt - replace: - - Enum.AccessoryType.TShirt - Enum.AccessoryType.Unknown: - struct: EnumItem - Enum.AccessoryType.Waist: - struct: EnumItem - Enum.ActionType.Draw: - struct: EnumItem - Enum.ActionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActionType.Lose: - struct: EnumItem - Enum.ActionType.Nothing: - struct: EnumItem - Enum.ActionType.Pause: - struct: EnumItem - Enum.ActionType.Win: - struct: EnumItem - Enum.ActuatorRelativeTo.Attachment0: - struct: EnumItem - Enum.ActuatorRelativeTo.Attachment1: - struct: EnumItem - Enum.ActuatorRelativeTo.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActuatorRelativeTo.World: - struct: EnumItem - Enum.ActuatorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ActuatorType.Motor: - struct: EnumItem - Enum.ActuatorType.None: - struct: EnumItem - Enum.ActuatorType.Servo: - struct: EnumItem - Enum.AdPortalStatus.Active: - struct: EnumItem - Enum.AdPortalStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdPortalStatus.Inactive: - struct: EnumItem - Enum.AdPortalStatus.Invalid: - struct: EnumItem - Enum.AdPortalType.Forward: - struct: EnumItem - Enum.AdPortalType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdPortalType.Return: - struct: EnumItem - Enum.AdShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdShape.HorizontalRectangle: - struct: EnumItem - Enum.AdTeleportMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdTeleportMethod.InGameMenuBackButton: - struct: EnumItem - Enum.AdTeleportMethod.PortalForward: - struct: EnumItem - Enum.AdTeleportMethod.PortalReturn: - struct: EnumItem - Enum.AdTeleportMethod.UIBackButton: - struct: EnumItem - Enum.AdTeleportMethod.Undefined: - struct: EnumItem - Enum.AdUnitStatus.Active: - struct: EnumItem - Enum.AdUnitStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdUnitStatus.Inactive: - struct: EnumItem - Enum.AdornCullingMode.Automatic: - struct: EnumItem - Enum.AdornCullingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AdornCullingMode.Never: - struct: EnumItem - Enum.AlignType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AlignType.Parallel: - struct: EnumItem - Enum.AlignType.Perpendicular: - struct: EnumItem - Enum.AlphaMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AlphaMode.Overlay: - struct: EnumItem - Enum.AlphaMode.Transparency: - struct: EnumItem - Enum.AnalyticsEconomyAction.Acquire: - struct: EnumItem - Enum.AnalyticsEconomyAction.Default: - struct: EnumItem - Enum.AnalyticsEconomyAction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnalyticsEconomyAction.Spend: - struct: EnumItem - Enum.AnalyticsLogLevel.Debug: - struct: EnumItem - Enum.AnalyticsLogLevel.Error: - struct: EnumItem - Enum.AnalyticsLogLevel.Fatal: - struct: EnumItem - Enum.AnalyticsLogLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnalyticsLogLevel.Information: - struct: EnumItem - Enum.AnalyticsLogLevel.Trace: - struct: EnumItem - Enum.AnalyticsLogLevel.Warning: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Abandon: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Begin: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Complete: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Default: - struct: EnumItem - Enum.AnalyticsProgressionStatus.Fail: - struct: EnumItem - Enum.AnalyticsProgressionStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnimationPriority.Action: - struct: EnumItem - Enum.AnimationPriority.Action2: - struct: EnumItem - Enum.AnimationPriority.Action3: - struct: EnumItem - Enum.AnimationPriority.Action4: - struct: EnumItem - Enum.AnimationPriority.Core: - struct: EnumItem - Enum.AnimationPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AnimationPriority.Idle: - struct: EnumItem - Enum.AnimationPriority.Movement: - struct: EnumItem - Enum.AnimatorRetargetingMode.Default: - struct: EnumItem - Enum.AnimatorRetargetingMode.Disabled: - struct: EnumItem - Enum.AnimatorRetargetingMode.Enabled: - struct: EnumItem - Enum.AnimatorRetargetingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellActionType.AvatarEditorPageLoaded: - struct: EnumItem - Enum.AppShellActionType.GamePageLoaded: - struct: EnumItem - Enum.AppShellActionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellActionType.HomePageLoaded: - struct: EnumItem - Enum.AppShellActionType.None: - struct: EnumItem - Enum.AppShellActionType.OpenApp: - struct: EnumItem - Enum.AppShellActionType.ReadConversation: - struct: EnumItem - Enum.AppShellActionType.TapAvatarTab: - struct: EnumItem - Enum.AppShellActionType.TapChatTab: - struct: EnumItem - Enum.AppShellActionType.TapConversationEntry: - struct: EnumItem - Enum.AppShellActionType.TapGamePageTab: - struct: EnumItem - Enum.AppShellActionType.TapHomePageTab: - struct: EnumItem - Enum.AppShellFeature.AvatarEditor: - struct: EnumItem - Enum.AppShellFeature.Chat: - struct: EnumItem - Enum.AppShellFeature.GamePage: - struct: EnumItem - Enum.AppShellFeature.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppShellFeature.HomePage: - struct: EnumItem - Enum.AppShellFeature.Landing: - struct: EnumItem - Enum.AppShellFeature.More: - struct: EnumItem - Enum.AppShellFeature.None: - struct: EnumItem - Enum.AppUpdateStatus.Available: - struct: EnumItem - Enum.AppUpdateStatus.Failed: - struct: EnumItem - Enum.AppUpdateStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AppUpdateStatus.NotAvailable: - struct: EnumItem - Enum.AppUpdateStatus.NotSupported: - struct: EnumItem - Enum.AppUpdateStatus.Unknown: - struct: EnumItem - Enum.ApplyStrokeMode.Border: - struct: EnumItem - Enum.ApplyStrokeMode.Contextual: - struct: EnumItem - Enum.ApplyStrokeMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AspectType.FitWithinMaxSize: - struct: EnumItem - Enum.AspectType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AspectType.ScaleWithParentSize: - struct: EnumItem - Enum.AssetFetchStatus.Failure: - struct: EnumItem - Enum.AssetFetchStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AssetFetchStatus.Loading: - struct: EnumItem - Enum.AssetFetchStatus.None: - struct: EnumItem - Enum.AssetFetchStatus.Success: - struct: EnumItem - Enum.AssetFetchStatus.TimedOut: - struct: EnumItem - Enum.AssetType.Animation: - struct: EnumItem - Enum.AssetType.Audio: - struct: EnumItem - Enum.AssetType.BackAccessory: - struct: EnumItem - Enum.AssetType.Badge: - struct: EnumItem - Enum.AssetType.ClimbAnimation: - struct: EnumItem - Enum.AssetType.DeathAnimation: - struct: EnumItem - Enum.AssetType.Decal: - struct: EnumItem - Enum.AssetType.DressSkirtAccessory: - struct: EnumItem - Enum.AssetType.DynamicHead: - struct: EnumItem - Enum.AssetType.EarAccessory: - struct: EnumItem - Enum.AssetType.EmoteAnimation: - struct: EnumItem - Enum.AssetType.EyeAccessory: - struct: EnumItem - Enum.AssetType.EyebrowAccessory: - struct: EnumItem - Enum.AssetType.EyelashAccessory: - struct: EnumItem - Enum.AssetType.Face: - struct: EnumItem - Enum.AssetType.FaceAccessory: - struct: EnumItem - Enum.AssetType.FallAnimation: - struct: EnumItem - Enum.AssetType.FontFamily: - struct: EnumItem - Enum.AssetType.FrontAccessory: - struct: EnumItem - Enum.AssetType.GamePass: - struct: EnumItem - Enum.AssetType.Gear: - struct: EnumItem - Enum.AssetType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AssetType.HairAccessory: - struct: EnumItem - Enum.AssetType.Hat: - struct: EnumItem - Enum.AssetType.Head: - struct: EnumItem - Enum.AssetType.IdleAnimation: - struct: EnumItem - Enum.AssetType.Image: - struct: EnumItem - Enum.AssetType.JacketAccessory: - struct: EnumItem - Enum.AssetType.JumpAnimation: - struct: EnumItem - Enum.AssetType.LeftArm: - struct: EnumItem - Enum.AssetType.LeftLeg: - struct: EnumItem - Enum.AssetType.LeftShoeAccessory: - struct: EnumItem - Enum.AssetType.Lua: - struct: EnumItem - Enum.AssetType.Mesh: - struct: EnumItem - Enum.AssetType.MeshPart: - struct: EnumItem - Enum.AssetType.Model: - struct: EnumItem - Enum.AssetType.MoodAnimation: - struct: EnumItem - Enum.AssetType.NeckAccessory: - struct: EnumItem - Enum.AssetType.Package: - struct: EnumItem - Enum.AssetType.Pants: - struct: EnumItem - Enum.AssetType.PantsAccessory: - struct: EnumItem - Enum.AssetType.Place: - struct: EnumItem - Enum.AssetType.Plugin: - struct: EnumItem - Enum.AssetType.PoseAnimation: - struct: EnumItem - Enum.AssetType.RightArm: - struct: EnumItem - Enum.AssetType.RightLeg: - struct: EnumItem - Enum.AssetType.RightShoeAccessory: - struct: EnumItem - Enum.AssetType.RunAnimation: - struct: EnumItem - Enum.AssetType.Shirt: - struct: EnumItem - Enum.AssetType.ShirtAccessory: - struct: EnumItem - Enum.AssetType.ShortsAccessory: - struct: EnumItem - Enum.AssetType.ShoulderAccessory: - struct: EnumItem - Enum.AssetType.SweaterAccessory: - struct: EnumItem - Enum.AssetType.SwimAnimation: - struct: EnumItem - Enum.AssetType.TShirt: - struct: EnumItem - Enum.AssetType.TShirtAccessory: - struct: EnumItem - Enum.AssetType.TeeShirt: - struct: EnumItem - deprecated: - message: Enum.AssetType.TeeShirt was replaced with Enum.AssetType.TShirt - replace: - - Enum.AssetType.TShirt - Enum.AssetType.TeeShirtAccessory: - struct: EnumItem - deprecated: - message: Enum.AssetType.TeeShirtAccessory was replaced with Enum.AssetType.TShirtAccessory - replace: - - Enum.AssetType.TShirtAccessory - Enum.AssetType.Torso: - struct: EnumItem - Enum.AssetType.Video: - struct: EnumItem - Enum.AssetType.WaistAccessory: - struct: EnumItem - Enum.AssetType.WalkAnimation: - struct: EnumItem - Enum.AssetTypeVerification.Always: - struct: EnumItem - Enum.AssetTypeVerification.ClientOnly: - struct: EnumItem - Enum.AssetTypeVerification.Default: - struct: EnumItem - Enum.AssetTypeVerification.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AudioSubType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AudioSubType.Music: - struct: EnumItem - Enum.AudioSubType.SoundEffect: - struct: EnumItem - Enum.AutoIndentRule.Absolute: - struct: EnumItem - Enum.AutoIndentRule.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AutoIndentRule.Off: - struct: EnumItem - Enum.AutoIndentRule.Relative: - struct: EnumItem - Enum.AutomaticSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AutomaticSize.None: - struct: EnumItem - Enum.AutomaticSize.X: - struct: EnumItem - Enum.AutomaticSize.XY: - struct: EnumItem - Enum.AutomaticSize.Y: - struct: EnumItem - Enum.AvatarAssetType.BackAccessory: - struct: EnumItem - Enum.AvatarAssetType.ClimbAnimation: - struct: EnumItem - Enum.AvatarAssetType.DressSkirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.DynamicHead: - struct: EnumItem - Enum.AvatarAssetType.EmoteAnimation: - struct: EnumItem - Enum.AvatarAssetType.EyebrowAccessory: - struct: EnumItem - Enum.AvatarAssetType.EyelashAccessory: - struct: EnumItem - Enum.AvatarAssetType.Face: - struct: EnumItem - Enum.AvatarAssetType.FaceAccessory: - struct: EnumItem - Enum.AvatarAssetType.FallAnimation: - struct: EnumItem - Enum.AvatarAssetType.FrontAccessory: - struct: EnumItem - Enum.AvatarAssetType.Gear: - struct: EnumItem - Enum.AvatarAssetType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarAssetType.HairAccessory: - struct: EnumItem - Enum.AvatarAssetType.Hat: - struct: EnumItem - Enum.AvatarAssetType.Head: - struct: EnumItem - Enum.AvatarAssetType.IdleAnimation: - struct: EnumItem - Enum.AvatarAssetType.JacketAccessory: - struct: EnumItem - Enum.AvatarAssetType.JumpAnimation: - struct: EnumItem - Enum.AvatarAssetType.LeftArm: - struct: EnumItem - Enum.AvatarAssetType.LeftLeg: - struct: EnumItem - Enum.AvatarAssetType.LeftShoeAccessory: - struct: EnumItem - Enum.AvatarAssetType.MoodAnimation: - struct: EnumItem - Enum.AvatarAssetType.NeckAccessory: - struct: EnumItem - Enum.AvatarAssetType.Pants: - struct: EnumItem - Enum.AvatarAssetType.PantsAccessory: - struct: EnumItem - Enum.AvatarAssetType.RightArm: - struct: EnumItem - Enum.AvatarAssetType.RightLeg: - struct: EnumItem - Enum.AvatarAssetType.RightShoeAccessory: - struct: EnumItem - Enum.AvatarAssetType.RunAnimation: - struct: EnumItem - Enum.AvatarAssetType.Shirt: - struct: EnumItem - Enum.AvatarAssetType.ShirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.ShortsAccessory: - struct: EnumItem - Enum.AvatarAssetType.ShoulderAccessory: - struct: EnumItem - Enum.AvatarAssetType.SweaterAccessory: - struct: EnumItem - Enum.AvatarAssetType.SwimAnimation: - struct: EnumItem - Enum.AvatarAssetType.TShirt: - struct: EnumItem - Enum.AvatarAssetType.TShirtAccessory: - struct: EnumItem - Enum.AvatarAssetType.TeeShirtAccessory: - struct: EnumItem - deprecated: - message: Enum.AvatarAssetType.TeeShirtAccessory was replaced with Enum.AvatarAssetType.TShirtAccessory - replace: - - Enum.AvatarAssetType.TShirtAccessory - Enum.AvatarAssetType.Torso: - struct: EnumItem - Enum.AvatarAssetType.WaistAccessory: - struct: EnumItem - Enum.AvatarAssetType.WalkAnimation: - struct: EnumItem - Enum.AvatarContextMenuOption.Chat: - struct: EnumItem - Enum.AvatarContextMenuOption.Emote: - struct: EnumItem - Enum.AvatarContextMenuOption.Friend: - struct: EnumItem - Enum.AvatarContextMenuOption.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarContextMenuOption.InspectMenu: - struct: EnumItem - Enum.AvatarItemType.Asset: - struct: EnumItem - Enum.AvatarItemType.Bundle: - struct: EnumItem - Enum.AvatarItemType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarPromptResult.Failed: - struct: EnumItem - Enum.AvatarPromptResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.AvatarPromptResult.PermissionDenied: - struct: EnumItem - Enum.AvatarPromptResult.Success: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.Closeup: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.FullBody: - struct: EnumItem - Enum.AvatarThumbnailCustomizationType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Axis.Back: - struct: EnumItem - deprecated: - message: Enum.Axis.Back was replaced with Enum.Axis.Z - replace: - - Enum.Axis.Z - Enum.Axis.Bottom: - struct: EnumItem - deprecated: - message: Enum.Axis.Bottom was replaced with Enum.Axis.Y - replace: - - Enum.Axis.Y - Enum.Axis.Front: - struct: EnumItem - deprecated: - message: Enum.Axis.Front was replaced with Enum.Axis.Z - replace: - - Enum.Axis.Z - Enum.Axis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Axis.Left: - struct: EnumItem - deprecated: - message: Enum.Axis.Left was replaced with Enum.Axis.X - replace: - - Enum.Axis.X - Enum.Axis.Right: - struct: EnumItem - deprecated: - message: Enum.Axis.Right was replaced with Enum.Axis.X - replace: - - Enum.Axis.X - Enum.Axis.Top: - struct: EnumItem - deprecated: - message: Enum.Axis.Top was replaced with Enum.Axis.Y - replace: - - Enum.Axis.Y - Enum.Axis.X: - struct: EnumItem - Enum.Axis.Y: - struct: EnumItem - Enum.Axis.Z: - struct: EnumItem - Enum.BinType.Clone: - struct: EnumItem - Enum.BinType.GameTool: - struct: EnumItem - Enum.BinType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BinType.Grab: - struct: EnumItem - Enum.BinType.Hammer: - struct: EnumItem - Enum.BinType.Laser: - struct: EnumItem - deprecated: - message: Enum.BinType.Laser was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BinType.Rocket: - struct: EnumItem - deprecated: - message: Enum.BinType.Rocket was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BinType.Script: - struct: EnumItem - Enum.BinType.Slingshot: - struct: EnumItem - deprecated: - message: Enum.BinType.Slingshot was replaced with Enum.BinType.Script - replace: - - Enum.BinType.Script - Enum.BodyPart.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BodyPart.Head: - struct: EnumItem - Enum.BodyPart.LeftArm: - struct: EnumItem - Enum.BodyPart.LeftLeg: - struct: EnumItem - Enum.BodyPart.RightArm: - struct: EnumItem - Enum.BodyPart.RightLeg: - struct: EnumItem - Enum.BodyPart.Torso: - struct: EnumItem - Enum.BodyPartR15.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BodyPartR15.Head: - struct: EnumItem - Enum.BodyPartR15.LeftFoot: - struct: EnumItem - Enum.BodyPartR15.LeftHand: - struct: EnumItem - Enum.BodyPartR15.LeftLowerArm: - struct: EnumItem - Enum.BodyPartR15.LeftLowerLeg: - struct: EnumItem - Enum.BodyPartR15.LeftUpperArm: - struct: EnumItem - Enum.BodyPartR15.LeftUpperLeg: - struct: EnumItem - Enum.BodyPartR15.LowerTorso: - struct: EnumItem - Enum.BodyPartR15.RightFoot: - struct: EnumItem - Enum.BodyPartR15.RightHand: - struct: EnumItem - Enum.BodyPartR15.RightLowerArm: - struct: EnumItem - Enum.BodyPartR15.RightLowerLeg: - struct: EnumItem - Enum.BodyPartR15.RightUpperArm: - struct: EnumItem - Enum.BodyPartR15.RightUpperLeg: - struct: EnumItem - Enum.BodyPartR15.RootPart: - struct: EnumItem - Enum.BodyPartR15.Unknown: - struct: EnumItem - Enum.BodyPartR15.UpperTorso: - struct: EnumItem - Enum.BorderMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BorderMode.Inset: - struct: EnumItem - Enum.BorderMode.Middle: - struct: EnumItem - Enum.BorderMode.Outline: - struct: EnumItem - Enum.BreakReason.Error: - struct: EnumItem - Enum.BreakReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BreakReason.Other: - struct: EnumItem - Enum.BreakReason.SpecialBreakpoint: - struct: EnumItem - Enum.BreakReason.UserBreakpoint: - struct: EnumItem - Enum.BreakpointRemoveReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BreakpointRemoveReason.Requested: - struct: EnumItem - Enum.BreakpointRemoveReason.ScriptChanged: - struct: EnumItem - Enum.BreakpointRemoveReason.ScriptRemoved: - struct: EnumItem - Enum.BulkMoveMode.FireAllEvents: - struct: EnumItem - Enum.BulkMoveMode.FireCFrameChanged: - struct: EnumItem - Enum.BulkMoveMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BundleType.Animations: - struct: EnumItem - Enum.BundleType.BodyParts: - struct: EnumItem - Enum.BundleType.DynamicHead: - struct: EnumItem - Enum.BundleType.DynamicHeadAvatar: - struct: EnumItem - Enum.BundleType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.BundleType.Shoes: - struct: EnumItem - Enum.Button.Dismount: - struct: EnumItem - Enum.Button.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Button.Jump: - struct: EnumItem - Enum.ButtonStyle.Custom: - struct: EnumItem - Enum.ButtonStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ButtonStyle.RobloxButton: - struct: EnumItem - Enum.ButtonStyle.RobloxButtonDefault: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundButton: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundDefaultButton: - struct: EnumItem - Enum.ButtonStyle.RobloxRoundDropdownButton: - struct: EnumItem - Enum.CageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CageType.Inner: - struct: EnumItem - Enum.CageType.Outer: - struct: EnumItem - Enum.CameraMode.Classic: - struct: EnumItem - Enum.CameraMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraMode.LockFirstPerson: - struct: EnumItem - Enum.CameraPanMode.Classic: - struct: EnumItem - Enum.CameraPanMode.EdgeBump: - struct: EnumItem - Enum.CameraPanMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraType.Attach: - struct: EnumItem - Enum.CameraType.Custom: - struct: EnumItem - Enum.CameraType.Fixed: - struct: EnumItem - Enum.CameraType.Follow: - struct: EnumItem - Enum.CameraType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CameraType.Orbital: - struct: EnumItem - Enum.CameraType.Scriptable: - struct: EnumItem - Enum.CameraType.Track: - struct: EnumItem - Enum.CameraType.Watch: - struct: EnumItem - Enum.CatalogCategoryFilter.Collectibles: - struct: EnumItem - Enum.CatalogCategoryFilter.CommunityCreations: - struct: EnumItem - Enum.CatalogCategoryFilter.Featured: - struct: EnumItem - Enum.CatalogCategoryFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogCategoryFilter.None: - struct: EnumItem - Enum.CatalogCategoryFilter.Premium: - struct: EnumItem - Enum.CatalogCategoryFilter.Recommended: - struct: EnumItem - Enum.CatalogSortAggregation.AllTime: - struct: EnumItem - Enum.CatalogSortAggregation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogSortAggregation.Past12Hours: - struct: EnumItem - Enum.CatalogSortAggregation.Past3Days: - struct: EnumItem - Enum.CatalogSortAggregation.PastDay: - struct: EnumItem - Enum.CatalogSortAggregation.PastMonth: - struct: EnumItem - Enum.CatalogSortAggregation.PastWeek: - struct: EnumItem - Enum.CatalogSortType.Bestselling: - struct: EnumItem - Enum.CatalogSortType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CatalogSortType.MostFavorited: - struct: EnumItem - Enum.CatalogSortType.PriceHighToLow: - struct: EnumItem - Enum.CatalogSortType.PriceLowToHigh: - struct: EnumItem - Enum.CatalogSortType.RecentlyCreated: - struct: EnumItem - Enum.CatalogSortType.RecentlyUpdated: - struct: EnumItem - deprecated: - message: Enum.CatalogSortType.RecentlyUpdated was replaced with Enum.CatalogSortType.RecentlyCreated - replace: - - Enum.CatalogSortType.RecentlyCreated - Enum.CatalogSortType.Relevance: - struct: EnumItem - Enum.CellBlock.CornerWedge: - struct: EnumItem - Enum.CellBlock.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellBlock.HorizontalWedge: - struct: EnumItem - Enum.CellBlock.InverseCornerWedge: - struct: EnumItem - Enum.CellBlock.Solid: - struct: EnumItem - Enum.CellBlock.VerticalWedge: - struct: EnumItem - Enum.CellMaterial.Aluminum: - struct: EnumItem - Enum.CellMaterial.Asphalt: - struct: EnumItem - Enum.CellMaterial.BluePlastic: - struct: EnumItem - Enum.CellMaterial.Brick: - struct: EnumItem - Enum.CellMaterial.Cement: - struct: EnumItem - Enum.CellMaterial.CinderBlock: - struct: EnumItem - Enum.CellMaterial.Empty: - struct: EnumItem - Enum.CellMaterial.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellMaterial.Gold: - struct: EnumItem - Enum.CellMaterial.Granite: - struct: EnumItem - Enum.CellMaterial.Grass: - struct: EnumItem - Enum.CellMaterial.Gravel: - struct: EnumItem - Enum.CellMaterial.Iron: - struct: EnumItem - Enum.CellMaterial.MossyStone: - struct: EnumItem - Enum.CellMaterial.RedPlastic: - struct: EnumItem - Enum.CellMaterial.Sand: - struct: EnumItem - Enum.CellMaterial.Water: - struct: EnumItem - Enum.CellMaterial.WoodLog: - struct: EnumItem - Enum.CellMaterial.WoodPlank: - struct: EnumItem - Enum.CellOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CellOrientation.NegX: - struct: EnumItem - Enum.CellOrientation.NegZ: - struct: EnumItem - Enum.CellOrientation.X: - struct: EnumItem - Enum.CellOrientation.Z: - struct: EnumItem - Enum.CenterDialogType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CenterDialogType.ModalDialog: - struct: EnumItem - Enum.CenterDialogType.PlayerInitiatedDialog: - struct: EnumItem - Enum.CenterDialogType.QuitDialog: - struct: EnumItem - Enum.CenterDialogType.UnsolicitedDialog: - struct: EnumItem - Enum.ChatCallbackType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatCallbackType.OnClientFormattingMessage: - struct: EnumItem - Enum.ChatCallbackType.OnClientSendingMessage: - struct: EnumItem - Enum.ChatCallbackType.OnCreatingChatWindow: - struct: EnumItem - Enum.ChatCallbackType.OnServerReceivingMessage: - struct: EnumItem - Enum.ChatColor.Blue: - struct: EnumItem - Enum.ChatColor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatColor.Green: - struct: EnumItem - Enum.ChatColor.Red: - struct: EnumItem - Enum.ChatColor.White: - struct: EnumItem - Enum.ChatMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatMode.Menu: - struct: EnumItem - Enum.ChatMode.TextAndMenu: - struct: EnumItem - Enum.ChatPrivacyMode.AllUsers: - struct: EnumItem - Enum.ChatPrivacyMode.Friends: - struct: EnumItem - Enum.ChatPrivacyMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatPrivacyMode.NoOne: - struct: EnumItem - Enum.ChatStyle.Bubble: - struct: EnumItem - Enum.ChatStyle.Classic: - struct: EnumItem - Enum.ChatStyle.ClassicAndBubble: - struct: EnumItem - Enum.ChatStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatVersion.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ChatVersion.LegacyChatService: - struct: EnumItem - Enum.ChatVersion.TextChatService: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Default: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Disabled: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.Enabled: - struct: EnumItem - Enum.ClientAnimatorThrottlingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CollisionFidelity.Box: - struct: EnumItem - Enum.CollisionFidelity.Default: - struct: EnumItem - Enum.CollisionFidelity.DynamicPreciseConvexDecomposition: - struct: EnumItem - Enum.CollisionFidelity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CollisionFidelity.Hull: - struct: EnumItem - Enum.CollisionFidelity.PreciseConvexDecomposition: - struct: EnumItem - Enum.CommandPermission.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CommandPermission.LocalUser: - struct: EnumItem - Enum.CommandPermission.Plugin: - struct: EnumItem - Enum.CompletionItemKind.Class: - struct: EnumItem - Enum.CompletionItemKind.Color: - struct: EnumItem - Enum.CompletionItemKind.Constant: - struct: EnumItem - Enum.CompletionItemKind.Constructor: - struct: EnumItem - Enum.CompletionItemKind.Enum: - struct: EnumItem - Enum.CompletionItemKind.EnumMember: - struct: EnumItem - Enum.CompletionItemKind.Event: - struct: EnumItem - Enum.CompletionItemKind.Field: - struct: EnumItem - Enum.CompletionItemKind.File: - struct: EnumItem - Enum.CompletionItemKind.Folder: - struct: EnumItem - Enum.CompletionItemKind.Function: - struct: EnumItem - Enum.CompletionItemKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionItemKind.Interface: - struct: EnumItem - Enum.CompletionItemKind.Keyword: - struct: EnumItem - Enum.CompletionItemKind.Method: - struct: EnumItem - Enum.CompletionItemKind.Module: - struct: EnumItem - Enum.CompletionItemKind.Operator: - struct: EnumItem - Enum.CompletionItemKind.Property: - struct: EnumItem - Enum.CompletionItemKind.Reference: - struct: EnumItem - Enum.CompletionItemKind.Snippet: - struct: EnumItem - Enum.CompletionItemKind.Struct: - struct: EnumItem - Enum.CompletionItemKind.Text: - struct: EnumItem - Enum.CompletionItemKind.TypeParameter: - struct: EnumItem - Enum.CompletionItemKind.Unit: - struct: EnumItem - Enum.CompletionItemKind.Value: - struct: EnumItem - Enum.CompletionItemKind.Variable: - struct: EnumItem - Enum.CompletionItemTag.AddParens: - struct: EnumItem - Enum.CompletionItemTag.ClientServerBoundaryViolation: - struct: EnumItem - Enum.CompletionItemTag.CommandLinePermissions: - struct: EnumItem - Enum.CompletionItemTag.Deprecated: - struct: EnumItem - Enum.CompletionItemTag.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionItemTag.IncorrectIndexType: - struct: EnumItem - Enum.CompletionItemTag.PluginPermissions: - struct: EnumItem - Enum.CompletionItemTag.PutCursorInParens: - struct: EnumItem - Enum.CompletionItemTag.RobloxPermissions: - struct: EnumItem - Enum.CompletionItemTag.TypeCorrect: - struct: EnumItem - Enum.CompletionTriggerKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CompletionTriggerKind.Invoked: - struct: EnumItem - Enum.CompletionTriggerKind.TriggerCharacter: - struct: EnumItem - Enum.CompletionTriggerKind.TriggerForIncompleteCompletions: - struct: EnumItem - Enum.ComputerCameraMovementMode.CameraToggle: - struct: EnumItem - Enum.ComputerCameraMovementMode.Classic: - struct: EnumItem - Enum.ComputerCameraMovementMode.Default: - struct: EnumItem - Enum.ComputerCameraMovementMode.Follow: - struct: EnumItem - Enum.ComputerCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ComputerCameraMovementMode.Orbital: - struct: EnumItem - Enum.ComputerMovementMode.ClickToMove: - struct: EnumItem - Enum.ComputerMovementMode.Default: - struct: EnumItem - Enum.ComputerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ComputerMovementMode.KeyboardMouse: - struct: EnumItem - Enum.ConnectionError.DisconnectBadhash: - struct: EnumItem - Enum.ConnectionError.DisconnectBlockedIP: - struct: EnumItem - Enum.ConnectionError.DisconnectBySecurityPolicy: - struct: EnumItem - Enum.ConnectionError.DisconnectClientFailure: - struct: EnumItem - Enum.ConnectionError.DisconnectClientRequest: - struct: EnumItem - Enum.ConnectionError.DisconnectCloudEditKick: - struct: EnumItem - Enum.ConnectionError.DisconnectConnectionLost: - struct: EnumItem - Enum.ConnectionError.DisconnectDevMaintenance: - struct: EnumItem - Enum.ConnectionError.DisconnectDuplicatePlayer: - struct: EnumItem - Enum.ConnectionError.DisconnectDuplicateTicket: - struct: EnumItem - Enum.ConnectionError.DisconnectErrors: - struct: EnumItem - Enum.ConnectionError.DisconnectEvicted: - struct: EnumItem - Enum.ConnectionError.DisconnectHashTimeout: - struct: EnumItem - Enum.ConnectionError.DisconnectIdle: - struct: EnumItem - Enum.ConnectionError.DisconnectIllegalTeleport: - struct: EnumItem - Enum.ConnectionError.DisconnectLuaKick: - struct: EnumItem - Enum.ConnectionError.DisconnectModeratedGame: - struct: EnumItem - Enum.ConnectionError.DisconnectNewSecurityKeyMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectOnRemoteSysStats: - struct: EnumItem - Enum.ConnectionError.DisconnectOutOfMemoryKeepPlayingLeave: - struct: EnumItem - Enum.ConnectionError.DisconnectPlayerless: - struct: EnumItem - Enum.ConnectionError.DisconnectProtocolMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectRaknetErrors: - struct: EnumItem - Enum.ConnectionError.DisconnectReceivePacketError: - struct: EnumItem - Enum.ConnectionError.DisconnectReceivePacketStreamError: - struct: EnumItem - Enum.ConnectionError.DisconnectRejoin: - struct: EnumItem - Enum.ConnectionError.DisconnectRobloxMaintenance: - struct: EnumItem - Enum.ConnectionError.DisconnectRomarkEndOfTest: - struct: EnumItem - Enum.ConnectionError.DisconnectSecurityKeyMismatch: - struct: EnumItem - Enum.ConnectionError.DisconnectSendPacketError: - struct: EnumItem - Enum.ConnectionError.DisconnectTimeout: - struct: EnumItem - Enum.ConnectionError.DisconnectWrongVersion: - struct: EnumItem - Enum.ConnectionError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ConnectionError.OK: - struct: EnumItem - Enum.ConnectionError.PlacelaunchCustomMessage: - struct: EnumItem - Enum.ConnectionError.PlacelaunchDisabled: - struct: EnumItem - Enum.ConnectionError.PlacelaunchError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchErrors: - struct: EnumItem - Enum.ConnectionError.PlacelaunchFlooded: - struct: EnumItem - Enum.ConnectionError.PlacelaunchGameEnded: - struct: EnumItem - Enum.ConnectionError.PlacelaunchGameFull: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHashException: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHashExpired: - struct: EnumItem - Enum.ConnectionError.PlacelaunchHttpError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchOtherError: - struct: EnumItem - Enum.ConnectionError.PlacelaunchPartyCannotFit: - struct: EnumItem - Enum.ConnectionError.PlacelaunchRestricted: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUnauthorized: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUserLeft: - struct: EnumItem - Enum.ConnectionError.PlacelaunchUserPrivacyUnauthorized: - struct: EnumItem - Enum.ConnectionError.PlayerRemoved: - struct: EnumItem - Enum.ConnectionError.ReplicatorTimeout: - struct: EnumItem - Enum.ConnectionError.TeleportErrors: - struct: EnumItem - Enum.ConnectionError.TeleportFailure: - struct: EnumItem - Enum.ConnectionError.TeleportFlooded: - struct: EnumItem - Enum.ConnectionError.TeleportGameEnded: - struct: EnumItem - Enum.ConnectionError.TeleportGameFull: - struct: EnumItem - Enum.ConnectionError.TeleportGameNotFound: - struct: EnumItem - Enum.ConnectionError.TeleportIsTeleporting: - struct: EnumItem - Enum.ConnectionError.TeleportUnauthorized: - struct: EnumItem - Enum.ConnectionError.Unknown: - struct: EnumItem - Enum.ConnectionState.Connected: - struct: EnumItem - Enum.ConnectionState.Disconnected: - struct: EnumItem - Enum.ConnectionState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionPriority.Default: - struct: EnumItem - deprecated: - message: Enum.ContextActionPriority.Default was replaced with Enum.ContextActionPriority.Medium - replace: - - Enum.ContextActionPriority.Medium - Enum.ContextActionPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionPriority.High: - struct: EnumItem - Enum.ContextActionPriority.Low: - struct: EnumItem - Enum.ContextActionPriority.Medium: - struct: EnumItem - Enum.ContextActionResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ContextActionResult.Pass: - struct: EnumItem - Enum.ContextActionResult.Sink: - struct: EnumItem - Enum.ControlMode.Classic: - struct: EnumItem - Enum.ControlMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ControlMode.Mouse Lock Switch: - struct: EnumItem - deprecated: - message: Enum.ControlMode.Mouse Lock Switch was replaced with Enum.ControlMode.MouseLockSwitch - replace: - - Enum.ControlMode.MouseLockSwitch - Enum.ControlMode.MouseLockSwitch: - struct: EnumItem - Enum.CoreGuiType.All: - struct: EnumItem - Enum.CoreGuiType.Backpack: - struct: EnumItem - Enum.CoreGuiType.Chat: - struct: EnumItem - Enum.CoreGuiType.EmotesMenu: - struct: EnumItem - Enum.CoreGuiType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CoreGuiType.Health: - struct: EnumItem - Enum.CoreGuiType.PlayerList: - struct: EnumItem - Enum.CoreGuiType.SelfView: - struct: EnumItem - Enum.CreateOutfitFailure.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreateOutfitFailure.InvalidName: - struct: EnumItem - Enum.CreateOutfitFailure.Other: - struct: EnumItem - Enum.CreateOutfitFailure.OutfitLimitReached: - struct: EnumItem - Enum.CreatorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreatorType.Group: - struct: EnumItem - Enum.CreatorType.User: - struct: EnumItem - Enum.CreatorTypeFilter.All: - struct: EnumItem - Enum.CreatorTypeFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CreatorTypeFilter.Group: - struct: EnumItem - Enum.CreatorTypeFilter.User: - struct: EnumItem - Enum.CurrencyType.Default: - struct: EnumItem - Enum.CurrencyType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.CurrencyType.Robux: - struct: EnumItem - Enum.CurrencyType.Tix: - struct: EnumItem - Enum.CustomCameraMode.Classic: - struct: EnumItem - Enum.CustomCameraMode.Default: - struct: EnumItem - Enum.CustomCameraMode.Follow: - struct: EnumItem - Enum.CustomCameraMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DataStoreRequestType.GetAsync: - struct: EnumItem - Enum.DataStoreRequestType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DataStoreRequestType.GetSortedAsync: - struct: EnumItem - Enum.DataStoreRequestType.OnUpdate: - struct: EnumItem - Enum.DataStoreRequestType.SetIncrementAsync: - struct: EnumItem - Enum.DataStoreRequestType.SetIncrementSortedAsync: - struct: EnumItem - Enum.DataStoreRequestType.UpdateAsync: - struct: EnumItem - Enum.DebuggerEndReason.ClientRequest: - struct: EnumItem - Enum.DebuggerEndReason.ConfigurationFailed: - struct: EnumItem - Enum.DebuggerEndReason.Disconnected: - struct: EnumItem - Enum.DebuggerEndReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerEndReason.InvalidHost: - struct: EnumItem - Enum.DebuggerEndReason.RpcError: - struct: EnumItem - Enum.DebuggerEndReason.ServerProtocolMismatch: - struct: EnumItem - Enum.DebuggerEndReason.ServerShutdown: - struct: EnumItem - Enum.DebuggerEndReason.Timeout: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.Always: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerExceptionBreakMode.Never: - struct: EnumItem - Enum.DebuggerExceptionBreakMode.Unhandled: - struct: EnumItem - Enum.DebuggerFrameType.C: - struct: EnumItem - Enum.DebuggerFrameType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerFrameType.Lua: - struct: EnumItem - Enum.DebuggerPauseReason.Breakpoint: - struct: EnumItem - Enum.DebuggerPauseReason.Entrypoint: - struct: EnumItem - Enum.DebuggerPauseReason.Exception: - struct: EnumItem - Enum.DebuggerPauseReason.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerPauseReason.Requested: - struct: EnumItem - Enum.DebuggerPauseReason.SingleStep: - struct: EnumItem - Enum.DebuggerPauseReason.Unknown: - struct: EnumItem - Enum.DebuggerStatus.ConnectionClosed: - struct: EnumItem - Enum.DebuggerStatus.ConnectionLost: - struct: EnumItem - Enum.DebuggerStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DebuggerStatus.InternalError: - struct: EnumItem - Enum.DebuggerStatus.InvalidArgument: - struct: EnumItem - Enum.DebuggerStatus.InvalidResponse: - struct: EnumItem - Enum.DebuggerStatus.InvalidState: - struct: EnumItem - Enum.DebuggerStatus.RpcError: - struct: EnumItem - Enum.DebuggerStatus.Success: - struct: EnumItem - Enum.DebuggerStatus.Timeout: - struct: EnumItem - Enum.DevCameraOcclusionMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevCameraOcclusionMode.Invisicam: - struct: EnumItem - Enum.DevCameraOcclusionMode.Zoom: - struct: EnumItem - Enum.DevComputerCameraMovementMode.CameraToggle: - struct: EnumItem - Enum.DevComputerCameraMovementMode.Classic: - struct: EnumItem - Enum.DevComputerCameraMovementMode.Follow: - struct: EnumItem - Enum.DevComputerCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevComputerCameraMovementMode.Orbital: - struct: EnumItem - Enum.DevComputerCameraMovementMode.UserChoice: - struct: EnumItem - Enum.DevComputerMovementMode.ClickToMove: - struct: EnumItem - Enum.DevComputerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevComputerMovementMode.KeyboardMouse: - struct: EnumItem - Enum.DevComputerMovementMode.Scriptable: - struct: EnumItem - Enum.DevComputerMovementMode.UserChoice: - struct: EnumItem - Enum.DevTouchCameraMovementMode.Classic: - struct: EnumItem - Enum.DevTouchCameraMovementMode.Follow: - struct: EnumItem - Enum.DevTouchCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevTouchCameraMovementMode.Orbital: - struct: EnumItem - Enum.DevTouchCameraMovementMode.UserChoice: - struct: EnumItem - Enum.DevTouchMovementMode.ClickToMove: - struct: EnumItem - Enum.DevTouchMovementMode.DPad: - struct: EnumItem - Enum.DevTouchMovementMode.DynamicThumbstick: - struct: EnumItem - Enum.DevTouchMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DevTouchMovementMode.Scriptable: - struct: EnumItem - Enum.DevTouchMovementMode.Thumbpad: - struct: EnumItem - Enum.DevTouchMovementMode.Thumbstick: - struct: EnumItem - Enum.DevTouchMovementMode.UserChoice: - struct: EnumItem - Enum.DeveloperMemoryTag.Animation: - struct: EnumItem - Enum.DeveloperMemoryTag.GeometryCSG: - struct: EnumItem - Enum.DeveloperMemoryTag.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DeveloperMemoryTag.GraphicsMeshParts: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsParticles: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsParts: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsSolidModels: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsSpatialHash: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTerrain: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTexture: - struct: EnumItem - Enum.DeveloperMemoryTag.GraphicsTextureCharacter: - struct: EnumItem - Enum.DeveloperMemoryTag.Gui: - struct: EnumItem - Enum.DeveloperMemoryTag.HttpCache: - struct: EnumItem - Enum.DeveloperMemoryTag.Instances: - struct: EnumItem - Enum.DeveloperMemoryTag.Internal: - struct: EnumItem - Enum.DeveloperMemoryTag.LuaHeap: - struct: EnumItem - Enum.DeveloperMemoryTag.Navigation: - struct: EnumItem - Enum.DeveloperMemoryTag.PhysicsCollision: - struct: EnumItem - Enum.DeveloperMemoryTag.PhysicsParts: - struct: EnumItem - Enum.DeveloperMemoryTag.Script: - struct: EnumItem - Enum.DeveloperMemoryTag.Signals: - struct: EnumItem - Enum.DeveloperMemoryTag.Sounds: - struct: EnumItem - Enum.DeveloperMemoryTag.StreamingSounds: - struct: EnumItem - Enum.DeveloperMemoryTag.TerrainVoxels: - struct: EnumItem - Enum.DeviceType.Desktop: - struct: EnumItem - Enum.DeviceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DeviceType.Phone: - struct: EnumItem - Enum.DeviceType.Tablet: - struct: EnumItem - Enum.DeviceType.Unknown: - struct: EnumItem - Enum.DialogBehaviorType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogBehaviorType.MultiplePlayers: - struct: EnumItem - Enum.DialogBehaviorType.SinglePlayer: - struct: EnumItem - Enum.DialogPurpose.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogPurpose.Help: - struct: EnumItem - Enum.DialogPurpose.Quest: - struct: EnumItem - Enum.DialogPurpose.Shop: - struct: EnumItem - Enum.DialogTone.Enemy: - struct: EnumItem - Enum.DialogTone.Friendly: - struct: EnumItem - Enum.DialogTone.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DialogTone.Neutral: - struct: EnumItem - Enum.DominantAxis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DominantAxis.Height: - struct: EnumItem - Enum.DominantAxis.Width: - struct: EnumItem - Enum.DraftStatusCode.DraftCommitted: - struct: EnumItem - Enum.DraftStatusCode.DraftOutdated: - struct: EnumItem - Enum.DraftStatusCode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraftStatusCode.OK: - struct: EnumItem - Enum.DraftStatusCode.ScriptRemoved: - struct: EnumItem - Enum.DraggerCoordinateSpace.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraggerCoordinateSpace.Object: - struct: EnumItem - Enum.DraggerCoordinateSpace.World: - struct: EnumItem - Enum.DraggerMovementMode.Geometric: - struct: EnumItem - Enum.DraggerMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.DraggerMovementMode.Physical: - struct: EnumItem - Enum.EasingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EasingDirection.In: - struct: EnumItem - Enum.EasingDirection.InOut: - struct: EnumItem - Enum.EasingDirection.Out: - struct: EnumItem - Enum.EasingStyle.Back: - struct: EnumItem - Enum.EasingStyle.Bounce: - struct: EnumItem - Enum.EasingStyle.Circular: - struct: EnumItem - Enum.EasingStyle.Cubic: - struct: EnumItem - Enum.EasingStyle.Elastic: - struct: EnumItem - Enum.EasingStyle.Exponential: - struct: EnumItem - Enum.EasingStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EasingStyle.Linear: - struct: EnumItem - Enum.EasingStyle.Quad: - struct: EnumItem - Enum.EasingStyle.Quart: - struct: EnumItem - Enum.EasingStyle.Quint: - struct: EnumItem - Enum.EasingStyle.Sine: - struct: EnumItem - Enum.ElasticBehavior.Always: - struct: EnumItem - Enum.ElasticBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ElasticBehavior.Never: - struct: EnumItem - Enum.ElasticBehavior.WhenScrollable: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Always: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.DefaultAuto: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Disabled: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.EnviromentalPhysicsThrottle.Skip16: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip2: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip4: - struct: EnumItem - Enum.EnviromentalPhysicsThrottle.Skip8: - struct: EnumItem - Enum.ExperienceAuthScope.CreatorAssetsCreate: - struct: EnumItem - Enum.ExperienceAuthScope.DefaultScope: - struct: EnumItem - Enum.ExperienceAuthScope.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ExplosionType.Craters: - struct: EnumItem - Enum.ExplosionType.CratersAndDebris: - struct: EnumItem - deprecated: - message: Enum.ExplosionType.CratersAndDebris was replaced with Enum.ExplosionType.Craters - replace: - - Enum.ExplosionType.Craters - Enum.ExplosionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ExplosionType.NoCraters: - struct: EnumItem - Enum.FacialAnimationFlags.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FacialAnimationFlags.None: - struct: EnumItem - Enum.FacialAnimationFlags.Place: - struct: EnumItem - Enum.FacialAnimationFlags.PlaceServer: - struct: EnumItem - Enum.FacialAnimationFlags.Server: - struct: EnumItem - Enum.FacialAnimationStreamingState.Audio: - struct: EnumItem - Enum.FacialAnimationStreamingState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FacialAnimationStreamingState.None: - struct: EnumItem - Enum.FacialAnimationStreamingState.Place: - struct: EnumItem - Enum.FacialAnimationStreamingState.Server: - struct: EnumItem - Enum.FacialAnimationStreamingState.Video: - struct: EnumItem - Enum.FieldOfViewMode.Diagonal: - struct: EnumItem - Enum.FieldOfViewMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FieldOfViewMode.MaxAxis: - struct: EnumItem - Enum.FieldOfViewMode.Vertical: - struct: EnumItem - Enum.FillDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FillDirection.Horizontal: - struct: EnumItem - Enum.FillDirection.Vertical: - struct: EnumItem - Enum.FilterResult.Accepted: - struct: EnumItem - Enum.FilterResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FilterResult.Rejected: - struct: EnumItem - Enum.Font.AmaticSC: - struct: EnumItem - Enum.Font.Antique: - struct: EnumItem - Enum.Font.Arcade: - struct: EnumItem - Enum.Font.Arial: - struct: EnumItem - Enum.Font.ArialBold: - struct: EnumItem - Enum.Font.Bangers: - struct: EnumItem - Enum.Font.Bodoni: - struct: EnumItem - Enum.Font.Cartoon: - struct: EnumItem - Enum.Font.Code: - struct: EnumItem - Enum.Font.Creepster: - struct: EnumItem - Enum.Font.DenkOne: - struct: EnumItem - Enum.Font.Fantasy: - struct: EnumItem - Enum.Font.Fondamento: - struct: EnumItem - Enum.Font.FredokaOne: - struct: EnumItem - Enum.Font.Garamond: - struct: EnumItem - Enum.Font.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Font.Gotham: - struct: EnumItem - Enum.Font.GothamBlack: - struct: EnumItem - Enum.Font.GothamBold: - struct: EnumItem - Enum.Font.GothamMedium: - struct: EnumItem - Enum.Font.GothamSemibold: - struct: EnumItem - deprecated: - message: Enum.Font.GothamSemibold was replaced with Enum.Font.GothamMedium - replace: - - Enum.Font.GothamMedium - Enum.Font.GrenzeGotisch: - struct: EnumItem - Enum.Font.Highway: - struct: EnumItem - Enum.Font.IndieFlower: - struct: EnumItem - Enum.Font.JosefinSans: - struct: EnumItem - Enum.Font.Jura: - struct: EnumItem - Enum.Font.Kalam: - struct: EnumItem - Enum.Font.Legacy: - struct: EnumItem - Enum.Font.LuckiestGuy: - struct: EnumItem - Enum.Font.Merriweather: - struct: EnumItem - Enum.Font.Michroma: - struct: EnumItem - Enum.Font.Nunito: - struct: EnumItem - Enum.Font.Oswald: - struct: EnumItem - Enum.Font.PatrickHand: - struct: EnumItem - Enum.Font.PermanentMarker: - struct: EnumItem - Enum.Font.Roboto: - struct: EnumItem - Enum.Font.RobotoCondensed: - struct: EnumItem - Enum.Font.RobotoMono: - struct: EnumItem - Enum.Font.Sarpanch: - struct: EnumItem - Enum.Font.SciFi: - struct: EnumItem - Enum.Font.SourceSans: - struct: EnumItem - Enum.Font.SourceSansBold: - struct: EnumItem - Enum.Font.SourceSansItalic: - struct: EnumItem - Enum.Font.SourceSansLight: - struct: EnumItem - Enum.Font.SourceSansSemibold: - struct: EnumItem - Enum.Font.SpecialElite: - struct: EnumItem - Enum.Font.TitilliumWeb: - struct: EnumItem - Enum.Font.Ubuntu: - struct: EnumItem - Enum.Font.Unknown: - struct: EnumItem - Enum.FontSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontSize.Size10: - struct: EnumItem - Enum.FontSize.Size11: - struct: EnumItem - Enum.FontSize.Size12: - struct: EnumItem - Enum.FontSize.Size14: - struct: EnumItem - Enum.FontSize.Size18: - struct: EnumItem - Enum.FontSize.Size24: - struct: EnumItem - Enum.FontSize.Size28: - struct: EnumItem - Enum.FontSize.Size32: - struct: EnumItem - Enum.FontSize.Size36: - struct: EnumItem - Enum.FontSize.Size42: - struct: EnumItem - Enum.FontSize.Size48: - struct: EnumItem - Enum.FontSize.Size60: - struct: EnumItem - Enum.FontSize.Size8: - struct: EnumItem - Enum.FontSize.Size9: - struct: EnumItem - Enum.FontSize.Size96: - struct: EnumItem - Enum.FontStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontStyle.Italic: - struct: EnumItem - Enum.FontStyle.Normal: - struct: EnumItem - Enum.FontWeight.Bold: - struct: EnumItem - Enum.FontWeight.ExtraBold: - struct: EnumItem - Enum.FontWeight.ExtraLight: - struct: EnumItem - Enum.FontWeight.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FontWeight.Heavy: - struct: EnumItem - Enum.FontWeight.Light: - struct: EnumItem - Enum.FontWeight.Medium: - struct: EnumItem - Enum.FontWeight.Regular: - struct: EnumItem - Enum.FontWeight.SemiBold: - struct: EnumItem - Enum.FontWeight.Thin: - struct: EnumItem - Enum.FormFactor.Block: - struct: EnumItem - deprecated: - message: Enum.FormFactor.Block was replaced with Enum.FormFactor.Brick - replace: - - Enum.FormFactor.Brick - Enum.FormFactor.Brick: - struct: EnumItem - Enum.FormFactor.Custom: - struct: EnumItem - Enum.FormFactor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FormFactor.Plate: - struct: EnumItem - Enum.FormFactor.Symmetric: - struct: EnumItem - Enum.FrameStyle.ChatBlue: - struct: EnumItem - Enum.FrameStyle.ChatGreen: - struct: EnumItem - Enum.FrameStyle.ChatRed: - struct: EnumItem - Enum.FrameStyle.Custom: - struct: EnumItem - Enum.FrameStyle.DropShadow: - struct: EnumItem - Enum.FrameStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FrameStyle.RobloxRound: - struct: EnumItem - Enum.FrameStyle.RobloxSquare: - struct: EnumItem - Enum.FramerateManagerMode.Automatic: - struct: EnumItem - Enum.FramerateManagerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FramerateManagerMode.Off: - struct: EnumItem - Enum.FramerateManagerMode.On: - struct: EnumItem - Enum.FriendRequestEvent.Accept: - struct: EnumItem - Enum.FriendRequestEvent.Deny: - struct: EnumItem - Enum.FriendRequestEvent.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FriendRequestEvent.Issue: - struct: EnumItem - Enum.FriendRequestEvent.Revoke: - struct: EnumItem - Enum.FriendStatus.Friend: - struct: EnumItem - Enum.FriendStatus.FriendRequestReceived: - struct: EnumItem - Enum.FriendStatus.FriendRequestSent: - struct: EnumItem - Enum.FriendStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FriendStatus.NotFriend: - struct: EnumItem - Enum.FriendStatus.Unknown: - struct: EnumItem - Enum.FunctionalTestResult.Error: - struct: EnumItem - Enum.FunctionalTestResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.FunctionalTestResult.Passed: - struct: EnumItem - Enum.FunctionalTestResult.Warning: - struct: EnumItem - Enum.GameAvatarType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GameAvatarType.PlayerChoice: - struct: EnumItem - Enum.GameAvatarType.R15: - struct: EnumItem - Enum.GameAvatarType.R6: - struct: EnumItem - Enum.GearGenreSetting.AllGenres: - struct: EnumItem - Enum.GearGenreSetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GearGenreSetting.MatchingGenreOnly: - struct: EnumItem - Enum.GearType.BuildingTools: - struct: EnumItem - Enum.GearType.Explosives: - struct: EnumItem - Enum.GearType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GearType.MeleeWeapons: - struct: EnumItem - Enum.GearType.MusicalInstruments: - struct: EnumItem - Enum.GearType.NavigationEnhancers: - struct: EnumItem - Enum.GearType.PowerUps: - struct: EnumItem - Enum.GearType.RangedWeapons: - struct: EnumItem - Enum.GearType.SocialItems: - struct: EnumItem - Enum.GearType.Transport: - struct: EnumItem - Enum.Genre.Adventure: - struct: EnumItem - Enum.Genre.All: - struct: EnumItem - Enum.Genre.Fantasy: - struct: EnumItem - Enum.Genre.Funny: - struct: EnumItem - Enum.Genre.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Genre.Ninja: - struct: EnumItem - Enum.Genre.Pirate: - struct: EnumItem - Enum.Genre.Scary: - struct: EnumItem - Enum.Genre.SciFi: - struct: EnumItem - Enum.Genre.SkatePark: - struct: EnumItem - Enum.Genre.Sports: - struct: EnumItem - Enum.Genre.TownAndCity: - struct: EnumItem - Enum.Genre.Tutorial: - struct: EnumItem - Enum.Genre.War: - struct: EnumItem - Enum.Genre.WildWest: - struct: EnumItem - Enum.GetEnums: - args: [] - method: true - must_use: true - Enum.GraphicsMode.Automatic: - struct: EnumItem - Enum.GraphicsMode.Direct3D11: - struct: EnumItem - Enum.GraphicsMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GraphicsMode.Metal: - struct: EnumItem - Enum.GraphicsMode.NoGraphics: - struct: EnumItem - Enum.GraphicsMode.OpenGL: - struct: EnumItem - Enum.GraphicsMode.Vulkan: - struct: EnumItem - Enum.GuiType.Core: - struct: EnumItem - Enum.GuiType.Custom: - struct: EnumItem - Enum.GuiType.CustomBillboards: - struct: EnumItem - Enum.GuiType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.GuiType.PlayerNameplates: - struct: EnumItem - Enum.HandlesStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HandlesStyle.Movement: - struct: EnumItem - Enum.HandlesStyle.Resize: - struct: EnumItem - Enum.HighlightDepthMode.AlwaysOnTop: - struct: EnumItem - Enum.HighlightDepthMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HighlightDepthMode.Occluded: - struct: EnumItem - Enum.HorizontalAlignment.Center: - struct: EnumItem - Enum.HorizontalAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HorizontalAlignment.Left: - struct: EnumItem - Enum.HorizontalAlignment.Right: - struct: EnumItem - Enum.HoverAnimateSpeed.Fast: - struct: EnumItem - Enum.HoverAnimateSpeed.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HoverAnimateSpeed.Medium: - struct: EnumItem - Enum.HoverAnimateSpeed.Slow: - struct: EnumItem - Enum.HoverAnimateSpeed.VeryFast: - struct: EnumItem - Enum.HoverAnimateSpeed.VerySlow: - struct: EnumItem - Enum.HttpCachePolicy.DataOnly: - struct: EnumItem - Enum.HttpCachePolicy.Default: - struct: EnumItem - Enum.HttpCachePolicy.Full: - struct: EnumItem - Enum.HttpCachePolicy.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpCachePolicy.InternalRedirectRefresh: - struct: EnumItem - Enum.HttpCachePolicy.None: - struct: EnumItem - Enum.HttpContentType.ApplicationJson: - struct: EnumItem - Enum.HttpContentType.ApplicationUrlEncoded: - struct: EnumItem - Enum.HttpContentType.ApplicationXml: - struct: EnumItem - Enum.HttpContentType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpContentType.TextPlain: - struct: EnumItem - Enum.HttpContentType.TextXml: - struct: EnumItem - Enum.HttpError.Aborted: - struct: EnumItem - Enum.HttpError.ConnectFail: - struct: EnumItem - Enum.HttpError.DnsResolve: - struct: EnumItem - Enum.HttpError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpError.InvalidRedirect: - struct: EnumItem - Enum.HttpError.InvalidUrl: - struct: EnumItem - Enum.HttpError.NetFail: - struct: EnumItem - Enum.HttpError.OK: - struct: EnumItem - Enum.HttpError.OutOfMemory: - struct: EnumItem - Enum.HttpError.SslConnectFail: - struct: EnumItem - Enum.HttpError.SslVerificationFail: - struct: EnumItem - Enum.HttpError.TimedOut: - struct: EnumItem - Enum.HttpError.TooManyRedirects: - struct: EnumItem - Enum.HttpError.Unknown: - struct: EnumItem - Enum.HttpRequestType.Analytics: - struct: EnumItem - Enum.HttpRequestType.Avatar: - struct: EnumItem - Enum.HttpRequestType.Chat: - struct: EnumItem - Enum.HttpRequestType.Default: - struct: EnumItem - Enum.HttpRequestType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HttpRequestType.Localization: - struct: EnumItem - Enum.HttpRequestType.MarketplaceService: - struct: EnumItem - Enum.HttpRequestType.Players: - struct: EnumItem - Enum.HumanoidCollisionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidCollisionType.InnerBox: - struct: EnumItem - Enum.HumanoidCollisionType.OuterBox: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidDisplayDistanceType.None: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.Subject: - struct: EnumItem - Enum.HumanoidDisplayDistanceType.Viewer: - struct: EnumItem - Enum.HumanoidHealthDisplayType.AlwaysOff: - struct: EnumItem - Enum.HumanoidHealthDisplayType.AlwaysOn: - struct: EnumItem - Enum.HumanoidHealthDisplayType.DisplayWhenDamaged: - struct: EnumItem - Enum.HumanoidHealthDisplayType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidOnlySetCollisionsOnStateChange.Default: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.Disabled: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.Enabled: - struct: EnumItem - Enum.HumanoidOnlySetCollisionsOnStateChange.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidRigType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidRigType.R15: - struct: EnumItem - Enum.HumanoidRigType.R6: - struct: EnumItem - Enum.HumanoidStateMachineMode.Default: - struct: EnumItem - Enum.HumanoidStateMachineMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidStateMachineMode.Legacy: - struct: EnumItem - Enum.HumanoidStateMachineMode.LuaStateMachine: - struct: EnumItem - Enum.HumanoidStateMachineMode.NoStateMachine: - struct: EnumItem - Enum.HumanoidStateType.Climbing: - struct: EnumItem - Enum.HumanoidStateType.Dead: - struct: EnumItem - Enum.HumanoidStateType.FallingDown: - struct: EnumItem - Enum.HumanoidStateType.Flying: - struct: EnumItem - Enum.HumanoidStateType.Freefall: - struct: EnumItem - Enum.HumanoidStateType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.HumanoidStateType.GettingUp: - struct: EnumItem - Enum.HumanoidStateType.Jumping: - struct: EnumItem - Enum.HumanoidStateType.Landed: - struct: EnumItem - Enum.HumanoidStateType.None: - struct: EnumItem - Enum.HumanoidStateType.Physics: - struct: EnumItem - Enum.HumanoidStateType.PlatformStanding: - struct: EnumItem - Enum.HumanoidStateType.Ragdoll: - struct: EnumItem - Enum.HumanoidStateType.Running: - struct: EnumItem - Enum.HumanoidStateType.RunningNoPhysics: - struct: EnumItem - Enum.HumanoidStateType.Seated: - struct: EnumItem - Enum.HumanoidStateType.StrafingNoPhysics: - struct: EnumItem - Enum.HumanoidStateType.Swimming: - struct: EnumItem - Enum.IKCollisionsMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IKCollisionsMode.IncludeContactedMechanisms: - struct: EnumItem - Enum.IKCollisionsMode.NoCollisions: - struct: EnumItem - Enum.IKCollisionsMode.OtherMechanismsAnchored: - struct: EnumItem - Enum.IKControlType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IKControlType.LookAt: - struct: EnumItem - Enum.IKControlType.Position: - struct: EnumItem - Enum.IKControlType.Rotation: - struct: EnumItem - Enum.IKControlType.Transform: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorConnection: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorInvalidUser: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorJsonParse: - struct: EnumItem - Enum.IXPLoadingStatus.ErrorTimedOut: - struct: EnumItem - Enum.IXPLoadingStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.IXPLoadingStatus.Initialized: - struct: EnumItem - Enum.IXPLoadingStatus.None: - struct: EnumItem - Enum.IXPLoadingStatus.Pending: - struct: EnumItem - Enum.InOut.Center: - struct: EnumItem - Enum.InOut.Edge: - struct: EnumItem - Enum.InOut.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InOut.Inset: - struct: EnumItem - Enum.InfoType.Asset: - struct: EnumItem - Enum.InfoType.Bundle: - struct: EnumItem - Enum.InfoType.GamePass: - struct: EnumItem - Enum.InfoType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InfoType.Product: - struct: EnumItem - Enum.InfoType.Subscription: - struct: EnumItem - Enum.InitialDockState.Bottom: - struct: EnumItem - Enum.InitialDockState.Float: - struct: EnumItem - Enum.InitialDockState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InitialDockState.Left: - struct: EnumItem - Enum.InitialDockState.Right: - struct: EnumItem - Enum.InitialDockState.Top: - struct: EnumItem - Enum.InputType.Action1: - struct: EnumItem - deprecated: - message: Enum.InputType.Action1 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action2: - struct: EnumItem - deprecated: - message: Enum.InputType.Action2 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action3: - struct: EnumItem - deprecated: - message: Enum.InputType.Action3 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action4: - struct: EnumItem - deprecated: - message: Enum.InputType.Action4 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Action5: - struct: EnumItem - deprecated: - message: Enum.InputType.Action5 was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Constant: - struct: EnumItem - Enum.InputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.InputType.LeftTread: - struct: EnumItem - deprecated: - message: Enum.InputType.LeftTread was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.NoInput: - struct: EnumItem - Enum.InputType.RightTread: - struct: EnumItem - deprecated: - message: Enum.InputType.RightTread was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Sin: - struct: EnumItem - Enum.InputType.Steer: - struct: EnumItem - deprecated: - message: Enum.InputType.Steer was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Throtle: - struct: EnumItem - deprecated: - message: Enum.InputType.Throtle was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.Throttle: - struct: EnumItem - deprecated: - message: Enum.InputType.Throttle was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InputType.UpDown: - struct: EnumItem - deprecated: - message: Enum.InputType.UpDown was replaced with Enum.InputType.NoInput - replace: - - Enum.InputType.NoInput - Enum.InterpolationThrottlingMode.Default: - struct: EnumItem - Enum.InterpolationThrottlingMode.Disabled: - struct: EnumItem - Enum.InterpolationThrottlingMode.Enabled: - struct: EnumItem - Enum.InterpolationThrottlingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.JointCreationMode.All: - struct: EnumItem - Enum.JointCreationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.JointCreationMode.None: - struct: EnumItem - Enum.JointCreationMode.Surface: - struct: EnumItem - Enum.KeyCode.A: - struct: EnumItem - Enum.KeyCode.Ampersand: - struct: EnumItem - Enum.KeyCode.Asterisk: - struct: EnumItem - Enum.KeyCode.At: - struct: EnumItem - Enum.KeyCode.B: - struct: EnumItem - Enum.KeyCode.BackSlash: - struct: EnumItem - Enum.KeyCode.Backquote: - struct: EnumItem - Enum.KeyCode.Backspace: - struct: EnumItem - Enum.KeyCode.Break: - struct: EnumItem - Enum.KeyCode.ButtonA: - struct: EnumItem - Enum.KeyCode.ButtonB: - struct: EnumItem - Enum.KeyCode.ButtonL1: - struct: EnumItem - Enum.KeyCode.ButtonL2: - struct: EnumItem - Enum.KeyCode.ButtonL3: - struct: EnumItem - Enum.KeyCode.ButtonR1: - struct: EnumItem - Enum.KeyCode.ButtonR2: - struct: EnumItem - Enum.KeyCode.ButtonR3: - struct: EnumItem - Enum.KeyCode.ButtonSelect: - struct: EnumItem - Enum.KeyCode.ButtonStart: - struct: EnumItem - Enum.KeyCode.ButtonX: - struct: EnumItem - Enum.KeyCode.ButtonY: - struct: EnumItem - Enum.KeyCode.C: - struct: EnumItem - Enum.KeyCode.CapsLock: - struct: EnumItem - Enum.KeyCode.Caret: - struct: EnumItem - Enum.KeyCode.Clear: - struct: EnumItem - Enum.KeyCode.Colon: - struct: EnumItem - Enum.KeyCode.Comma: - struct: EnumItem - Enum.KeyCode.Compose: - struct: EnumItem - Enum.KeyCode.D: - struct: EnumItem - Enum.KeyCode.DPadDown: - struct: EnumItem - Enum.KeyCode.DPadLeft: - struct: EnumItem - Enum.KeyCode.DPadRight: - struct: EnumItem - Enum.KeyCode.DPadUp: - struct: EnumItem - Enum.KeyCode.Delete: - struct: EnumItem - Enum.KeyCode.Dollar: - struct: EnumItem - Enum.KeyCode.Down: - struct: EnumItem - Enum.KeyCode.E: - struct: EnumItem - Enum.KeyCode.Eight: - struct: EnumItem - Enum.KeyCode.End: - struct: EnumItem - Enum.KeyCode.Equals: - struct: EnumItem - Enum.KeyCode.Escape: - struct: EnumItem - Enum.KeyCode.Euro: - struct: EnumItem - Enum.KeyCode.F: - struct: EnumItem - Enum.KeyCode.F1: - struct: EnumItem - Enum.KeyCode.F10: - struct: EnumItem - Enum.KeyCode.F11: - struct: EnumItem - Enum.KeyCode.F12: - struct: EnumItem - Enum.KeyCode.F13: - struct: EnumItem - Enum.KeyCode.F14: - struct: EnumItem - Enum.KeyCode.F15: - struct: EnumItem - Enum.KeyCode.F2: - struct: EnumItem - Enum.KeyCode.F3: - struct: EnumItem - Enum.KeyCode.F4: - struct: EnumItem - Enum.KeyCode.F5: - struct: EnumItem - Enum.KeyCode.F6: - struct: EnumItem - Enum.KeyCode.F7: - struct: EnumItem - Enum.KeyCode.F8: - struct: EnumItem - Enum.KeyCode.F9: - struct: EnumItem - Enum.KeyCode.Five: - struct: EnumItem - Enum.KeyCode.Four: - struct: EnumItem - Enum.KeyCode.G: - struct: EnumItem - Enum.KeyCode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeyCode.GreaterThan: - struct: EnumItem - Enum.KeyCode.H: - struct: EnumItem - Enum.KeyCode.Hash: - struct: EnumItem - Enum.KeyCode.Help: - struct: EnumItem - Enum.KeyCode.Home: - struct: EnumItem - Enum.KeyCode.I: - struct: EnumItem - Enum.KeyCode.Insert: - struct: EnumItem - Enum.KeyCode.J: - struct: EnumItem - Enum.KeyCode.K: - struct: EnumItem - Enum.KeyCode.KeypadDivide: - struct: EnumItem - Enum.KeyCode.KeypadEight: - struct: EnumItem - Enum.KeyCode.KeypadEnter: - struct: EnumItem - Enum.KeyCode.KeypadEquals: - struct: EnumItem - Enum.KeyCode.KeypadFive: - struct: EnumItem - Enum.KeyCode.KeypadFour: - struct: EnumItem - Enum.KeyCode.KeypadMinus: - struct: EnumItem - Enum.KeyCode.KeypadMultiply: - struct: EnumItem - Enum.KeyCode.KeypadNine: - struct: EnumItem - Enum.KeyCode.KeypadOne: - struct: EnumItem - Enum.KeyCode.KeypadPeriod: - struct: EnumItem - Enum.KeyCode.KeypadPlus: - struct: EnumItem - Enum.KeyCode.KeypadSeven: - struct: EnumItem - Enum.KeyCode.KeypadSix: - struct: EnumItem - Enum.KeyCode.KeypadThree: - struct: EnumItem - Enum.KeyCode.KeypadTwo: - struct: EnumItem - Enum.KeyCode.KeypadZero: - struct: EnumItem - Enum.KeyCode.L: - struct: EnumItem - Enum.KeyCode.Left: - struct: EnumItem - Enum.KeyCode.LeftAlt: - struct: EnumItem - Enum.KeyCode.LeftBracket: - struct: EnumItem - Enum.KeyCode.LeftControl: - struct: EnumItem - Enum.KeyCode.LeftCurly: - struct: EnumItem - Enum.KeyCode.LeftMeta: - struct: EnumItem - Enum.KeyCode.LeftParenthesis: - struct: EnumItem - Enum.KeyCode.LeftShift: - struct: EnumItem - Enum.KeyCode.LeftSuper: - struct: EnumItem - Enum.KeyCode.LessThan: - struct: EnumItem - Enum.KeyCode.M: - struct: EnumItem - Enum.KeyCode.Menu: - struct: EnumItem - Enum.KeyCode.Minus: - struct: EnumItem - Enum.KeyCode.Mode: - struct: EnumItem - Enum.KeyCode.N: - struct: EnumItem - Enum.KeyCode.Nine: - struct: EnumItem - Enum.KeyCode.NumLock: - struct: EnumItem - Enum.KeyCode.O: - struct: EnumItem - Enum.KeyCode.One: - struct: EnumItem - Enum.KeyCode.P: - struct: EnumItem - Enum.KeyCode.PageDown: - struct: EnumItem - Enum.KeyCode.PageUp: - struct: EnumItem - Enum.KeyCode.Pause: - struct: EnumItem - Enum.KeyCode.Percent: - struct: EnumItem - Enum.KeyCode.Period: - struct: EnumItem - Enum.KeyCode.Pipe: - struct: EnumItem - Enum.KeyCode.Plus: - struct: EnumItem - Enum.KeyCode.Power: - struct: EnumItem - Enum.KeyCode.Print: - struct: EnumItem - Enum.KeyCode.Q: - struct: EnumItem - Enum.KeyCode.Question: - struct: EnumItem - Enum.KeyCode.Quote: - struct: EnumItem - Enum.KeyCode.QuotedDouble: - struct: EnumItem - Enum.KeyCode.R: - struct: EnumItem - Enum.KeyCode.Return: - struct: EnumItem - Enum.KeyCode.Right: - struct: EnumItem - Enum.KeyCode.RightAlt: - struct: EnumItem - Enum.KeyCode.RightBracket: - struct: EnumItem - Enum.KeyCode.RightControl: - struct: EnumItem - Enum.KeyCode.RightCurly: - struct: EnumItem - Enum.KeyCode.RightMeta: - struct: EnumItem - Enum.KeyCode.RightParenthesis: - struct: EnumItem - Enum.KeyCode.RightShift: - struct: EnumItem - Enum.KeyCode.RightSuper: - struct: EnumItem - Enum.KeyCode.S: - struct: EnumItem - Enum.KeyCode.ScrollLock: - struct: EnumItem - Enum.KeyCode.Semicolon: - struct: EnumItem - Enum.KeyCode.Seven: - struct: EnumItem - Enum.KeyCode.Six: - struct: EnumItem - Enum.KeyCode.Slash: - struct: EnumItem - Enum.KeyCode.Space: - struct: EnumItem - Enum.KeyCode.SysReq: - struct: EnumItem - Enum.KeyCode.T: - struct: EnumItem - Enum.KeyCode.Tab: - struct: EnumItem - Enum.KeyCode.Three: - struct: EnumItem - Enum.KeyCode.Thumbstick1: - struct: EnumItem - Enum.KeyCode.Thumbstick2: - struct: EnumItem - Enum.KeyCode.Tilde: - struct: EnumItem - Enum.KeyCode.Two: - struct: EnumItem - Enum.KeyCode.U: - struct: EnumItem - Enum.KeyCode.Underscore: - struct: EnumItem - Enum.KeyCode.Undo: - struct: EnumItem - Enum.KeyCode.Unknown: - struct: EnumItem - Enum.KeyCode.Up: - struct: EnumItem - Enum.KeyCode.V: - struct: EnumItem - Enum.KeyCode.W: - struct: EnumItem - Enum.KeyCode.World0: - struct: EnumItem - Enum.KeyCode.World1: - struct: EnumItem - Enum.KeyCode.World10: - struct: EnumItem - Enum.KeyCode.World11: - struct: EnumItem - Enum.KeyCode.World12: - struct: EnumItem - Enum.KeyCode.World13: - struct: EnumItem - Enum.KeyCode.World14: - struct: EnumItem - Enum.KeyCode.World15: - struct: EnumItem - Enum.KeyCode.World16: - struct: EnumItem - Enum.KeyCode.World17: - struct: EnumItem - Enum.KeyCode.World18: - struct: EnumItem - Enum.KeyCode.World19: - struct: EnumItem - Enum.KeyCode.World2: - struct: EnumItem - Enum.KeyCode.World20: - struct: EnumItem - Enum.KeyCode.World21: - struct: EnumItem - Enum.KeyCode.World22: - struct: EnumItem - Enum.KeyCode.World23: - struct: EnumItem - Enum.KeyCode.World24: - struct: EnumItem - Enum.KeyCode.World25: - struct: EnumItem - Enum.KeyCode.World26: - struct: EnumItem - Enum.KeyCode.World27: - struct: EnumItem - Enum.KeyCode.World28: - struct: EnumItem - Enum.KeyCode.World29: - struct: EnumItem - Enum.KeyCode.World3: - struct: EnumItem - Enum.KeyCode.World30: - struct: EnumItem - Enum.KeyCode.World31: - struct: EnumItem - Enum.KeyCode.World32: - struct: EnumItem - Enum.KeyCode.World33: - struct: EnumItem - Enum.KeyCode.World34: - struct: EnumItem - Enum.KeyCode.World35: - struct: EnumItem - Enum.KeyCode.World36: - struct: EnumItem - Enum.KeyCode.World37: - struct: EnumItem - Enum.KeyCode.World38: - struct: EnumItem - Enum.KeyCode.World39: - struct: EnumItem - Enum.KeyCode.World4: - struct: EnumItem - Enum.KeyCode.World40: - struct: EnumItem - Enum.KeyCode.World41: - struct: EnumItem - Enum.KeyCode.World42: - struct: EnumItem - Enum.KeyCode.World43: - struct: EnumItem - Enum.KeyCode.World44: - struct: EnumItem - Enum.KeyCode.World45: - struct: EnumItem - Enum.KeyCode.World46: - struct: EnumItem - Enum.KeyCode.World47: - struct: EnumItem - Enum.KeyCode.World48: - struct: EnumItem - Enum.KeyCode.World49: - struct: EnumItem - Enum.KeyCode.World5: - struct: EnumItem - Enum.KeyCode.World50: - struct: EnumItem - Enum.KeyCode.World51: - struct: EnumItem - Enum.KeyCode.World52: - struct: EnumItem - Enum.KeyCode.World53: - struct: EnumItem - Enum.KeyCode.World54: - struct: EnumItem - Enum.KeyCode.World55: - struct: EnumItem - Enum.KeyCode.World56: - struct: EnumItem - Enum.KeyCode.World57: - struct: EnumItem - Enum.KeyCode.World58: - struct: EnumItem - Enum.KeyCode.World59: - struct: EnumItem - Enum.KeyCode.World6: - struct: EnumItem - Enum.KeyCode.World60: - struct: EnumItem - Enum.KeyCode.World61: - struct: EnumItem - Enum.KeyCode.World62: - struct: EnumItem - Enum.KeyCode.World63: - struct: EnumItem - Enum.KeyCode.World64: - struct: EnumItem - Enum.KeyCode.World65: - struct: EnumItem - Enum.KeyCode.World66: - struct: EnumItem - Enum.KeyCode.World67: - struct: EnumItem - Enum.KeyCode.World68: - struct: EnumItem - Enum.KeyCode.World69: - struct: EnumItem - Enum.KeyCode.World7: - struct: EnumItem - Enum.KeyCode.World70: - struct: EnumItem - Enum.KeyCode.World71: - struct: EnumItem - Enum.KeyCode.World72: - struct: EnumItem - Enum.KeyCode.World73: - struct: EnumItem - Enum.KeyCode.World74: - struct: EnumItem - Enum.KeyCode.World75: - struct: EnumItem - Enum.KeyCode.World76: - struct: EnumItem - Enum.KeyCode.World77: - struct: EnumItem - Enum.KeyCode.World78: - struct: EnumItem - Enum.KeyCode.World79: - struct: EnumItem - Enum.KeyCode.World8: - struct: EnumItem - Enum.KeyCode.World80: - struct: EnumItem - Enum.KeyCode.World81: - struct: EnumItem - Enum.KeyCode.World82: - struct: EnumItem - Enum.KeyCode.World83: - struct: EnumItem - Enum.KeyCode.World84: - struct: EnumItem - Enum.KeyCode.World85: - struct: EnumItem - Enum.KeyCode.World86: - struct: EnumItem - Enum.KeyCode.World87: - struct: EnumItem - Enum.KeyCode.World88: - struct: EnumItem - Enum.KeyCode.World89: - struct: EnumItem - Enum.KeyCode.World9: - struct: EnumItem - Enum.KeyCode.World90: - struct: EnumItem - Enum.KeyCode.World91: - struct: EnumItem - Enum.KeyCode.World92: - struct: EnumItem - Enum.KeyCode.World93: - struct: EnumItem - Enum.KeyCode.World94: - struct: EnumItem - Enum.KeyCode.World95: - struct: EnumItem - Enum.KeyCode.X: - struct: EnumItem - Enum.KeyCode.Y: - struct: EnumItem - Enum.KeyCode.Z: - struct: EnumItem - Enum.KeyCode.Zero: - struct: EnumItem - Enum.KeyInterpolationMode.Constant: - struct: EnumItem - Enum.KeyInterpolationMode.Cubic: - struct: EnumItem - Enum.KeyInterpolationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeyInterpolationMode.Linear: - struct: EnumItem - Enum.KeywordFilterType.Exclude: - struct: EnumItem - Enum.KeywordFilterType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.KeywordFilterType.Include: - struct: EnumItem - Enum.Language.Default: - struct: EnumItem - Enum.Language.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LeftRight.Center: - struct: EnumItem - Enum.LeftRight.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LeftRight.Left: - struct: EnumItem - Enum.LeftRight.Right: - struct: EnumItem - Enum.Limb.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Limb.Head: - struct: EnumItem - Enum.Limb.LeftArm: - struct: EnumItem - Enum.Limb.LeftLeg: - struct: EnumItem - Enum.Limb.RightArm: - struct: EnumItem - Enum.Limb.RightLeg: - struct: EnumItem - Enum.Limb.Torso: - struct: EnumItem - Enum.Limb.Unknown: - struct: EnumItem - Enum.LineJoinMode.Bevel: - struct: EnumItem - Enum.LineJoinMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LineJoinMode.Miter: - struct: EnumItem - Enum.LineJoinMode.Round: - struct: EnumItem - Enum.ListDisplayMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ListDisplayMode.Horizontal: - struct: EnumItem - Enum.ListDisplayMode.Vertical: - struct: EnumItem - Enum.ListenerType.CFrame: - struct: EnumItem - Enum.ListenerType.Camera: - struct: EnumItem - Enum.ListenerType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ListenerType.ObjectCFrame: - struct: EnumItem - Enum.ListenerType.ObjectPosition: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Default: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Disabled: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.Enabled: - struct: EnumItem - Enum.LoadCharacterLayeredClothing.GetEnumItems: - args: [] - method: true - must_use: true - Enum.LoadDynamicHeads.Default: - struct: EnumItem - Enum.LoadDynamicHeads.Disabled: - struct: EnumItem - Enum.LoadDynamicHeads.Enabled: - struct: EnumItem - Enum.LoadDynamicHeads.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MarkupKind.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MarkupKind.Markdown: - struct: EnumItem - Enum.MarkupKind.PlainText: - struct: EnumItem - Enum.Material.Air: - struct: EnumItem - Enum.Material.Aluminum: - struct: EnumItem - deprecated: - message: Enum.Material.Aluminum was replaced with Enum.Material.Foil - replace: - - Enum.Material.Foil - Enum.Material.Asphalt: - struct: EnumItem - Enum.Material.Basalt: - struct: EnumItem - Enum.Material.Brick: - struct: EnumItem - Enum.Material.Cobblestone: - struct: EnumItem - Enum.Material.Concrete: - struct: EnumItem - Enum.Material.Corroded Metal: - struct: EnumItem - deprecated: - message: Enum.Material.Corroded Metal was replaced with Enum.Material.CorrodedMetal - replace: - - Enum.Material.CorrodedMetal - Enum.Material.CorrodedMetal: - struct: EnumItem - Enum.Material.CrackedLava: - struct: EnumItem - Enum.Material.DiamondPlate: - struct: EnumItem - Enum.Material.Fabric: - struct: EnumItem - Enum.Material.Foil: - struct: EnumItem - Enum.Material.ForceField: - struct: EnumItem - Enum.Material.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Material.Glacier: - struct: EnumItem - Enum.Material.Glass: - struct: EnumItem - Enum.Material.Granite: - struct: EnumItem - Enum.Material.Grass: - struct: EnumItem - Enum.Material.Ground: - struct: EnumItem - Enum.Material.Ice: - struct: EnumItem - Enum.Material.LeafyGrass: - struct: EnumItem - Enum.Material.Limestone: - struct: EnumItem - Enum.Material.Marble: - struct: EnumItem - Enum.Material.Metal: - struct: EnumItem - Enum.Material.Mud: - struct: EnumItem - Enum.Material.Neon: - struct: EnumItem - Enum.Material.Pavement: - struct: EnumItem - Enum.Material.Pebble: - struct: EnumItem - Enum.Material.Plastic: - struct: EnumItem - Enum.Material.Rock: - struct: EnumItem - Enum.Material.Salt: - struct: EnumItem - Enum.Material.Sand: - struct: EnumItem - Enum.Material.Sandstone: - struct: EnumItem - Enum.Material.Slate: - struct: EnumItem - Enum.Material.SmoothPlastic: - struct: EnumItem - Enum.Material.Snow: - struct: EnumItem - Enum.Material.Water: - struct: EnumItem - Enum.Material.Wood: - struct: EnumItem - Enum.Material.WoodPlanks: - struct: EnumItem - Enum.MaterialPattern.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MaterialPattern.Organic: - struct: EnumItem - Enum.MaterialPattern.Regular: - struct: EnumItem - Enum.MembershipType.BuildersClub: - struct: EnumItem - Enum.MembershipType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MembershipType.None: - struct: EnumItem - Enum.MembershipType.OutrageousBuildersClub: - struct: EnumItem - Enum.MembershipType.Premium: - struct: EnumItem - Enum.MembershipType.TurboBuildersClub: - struct: EnumItem - Enum.MeshPartDetailLevel.DistanceBased: - struct: EnumItem - Enum.MeshPartDetailLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshPartDetailLevel.Level00: - struct: EnumItem - Enum.MeshPartDetailLevel.Level01: - struct: EnumItem - Enum.MeshPartDetailLevel.Level02: - struct: EnumItem - Enum.MeshPartDetailLevel.Level03: - struct: EnumItem - Enum.MeshPartDetailLevel.Level04: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Default: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Disabled: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.Enabled: - struct: EnumItem - Enum.MeshPartHeadsAndAccessories.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshScaleUnit.CM: - struct: EnumItem - Enum.MeshScaleUnit.Foot: - struct: EnumItem - Enum.MeshScaleUnit.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshScaleUnit.Inch: - struct: EnumItem - Enum.MeshScaleUnit.MM: - struct: EnumItem - Enum.MeshScaleUnit.Meter: - struct: EnumItem - Enum.MeshScaleUnit.Stud: - struct: EnumItem - Enum.MeshType.Brick: - struct: EnumItem - Enum.MeshType.CornerWedge: - struct: EnumItem - Enum.MeshType.Cylinder: - struct: EnumItem - Enum.MeshType.FileMesh: - struct: EnumItem - Enum.MeshType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MeshType.Head: - struct: EnumItem - Enum.MeshType.ParallelRamp: - struct: EnumItem - Enum.MeshType.Prism: - struct: EnumItem - Enum.MeshType.Pyramid: - struct: EnumItem - Enum.MeshType.RightAngleRamp: - struct: EnumItem - Enum.MeshType.Sphere: - struct: EnumItem - Enum.MeshType.Torso: - struct: EnumItem - Enum.MeshType.Wedge: - struct: EnumItem - Enum.MessageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MessageType.MessageError: - struct: EnumItem - Enum.MessageType.MessageInfo: - struct: EnumItem - Enum.MessageType.MessageOutput: - struct: EnumItem - Enum.MessageType.MessageWarning: - struct: EnumItem - Enum.ModelLevelOfDetail.Automatic: - struct: EnumItem - Enum.ModelLevelOfDetail.Disabled: - struct: EnumItem - Enum.ModelLevelOfDetail.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModelLevelOfDetail.StreamingMesh: - struct: EnumItem - Enum.ModelStreamingMode.Atomic: - struct: EnumItem - Enum.ModelStreamingMode.Default: - struct: EnumItem - Enum.ModelStreamingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModelStreamingMode.Nonatomic: - struct: EnumItem - Enum.ModelStreamingMode.Persistent: - struct: EnumItem - Enum.ModelStreamingMode.PersistentPerPlayer: - struct: EnumItem - Enum.ModifierKey.Alt: - struct: EnumItem - Enum.ModifierKey.Ctrl: - struct: EnumItem - Enum.ModifierKey.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ModifierKey.Meta: - struct: EnumItem - Enum.ModifierKey.Shift: - struct: EnumItem - Enum.MouseBehavior.Default: - struct: EnumItem - Enum.MouseBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MouseBehavior.LockCenter: - struct: EnumItem - Enum.MouseBehavior.LockCurrentPosition: - struct: EnumItem - Enum.MoveState.AirFree: - struct: EnumItem - Enum.MoveState.Coasting: - struct: EnumItem - Enum.MoveState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MoveState.Pushing: - struct: EnumItem - Enum.MoveState.Stopped: - struct: EnumItem - Enum.MoveState.Stopping: - struct: EnumItem - Enum.MuteState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.MuteState.Muted: - struct: EnumItem - Enum.MuteState.Unmuted: - struct: EnumItem - Enum.NameOcclusion.EnemyOcclusion: - struct: EnumItem - Enum.NameOcclusion.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NameOcclusion.NoOcclusion: - struct: EnumItem - Enum.NameOcclusion.OccludeAll: - struct: EnumItem - Enum.NetworkOwnership.Automatic: - struct: EnumItem - Enum.NetworkOwnership.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NetworkOwnership.Manual: - struct: EnumItem - Enum.NetworkOwnership.OnContact: - struct: EnumItem - Enum.NormalId.Back: - struct: EnumItem - Enum.NormalId.Bottom: - struct: EnumItem - Enum.NormalId.Front: - struct: EnumItem - Enum.NormalId.GetEnumItems: - args: [] - method: true - must_use: true - Enum.NormalId.Left: - struct: EnumItem - Enum.NormalId.Right: - struct: EnumItem - Enum.NormalId.Top: - struct: EnumItem - Enum.OrientationAlignmentMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OrientationAlignmentMode.OneAttachment: - struct: EnumItem - Enum.OrientationAlignmentMode.TwoAttachment: - struct: EnumItem - Enum.OutfitSource.All: - struct: EnumItem - Enum.OutfitSource.Created: - struct: EnumItem - Enum.OutfitSource.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutfitSource.Purchased: - struct: EnumItem - Enum.OutfitType.All: - struct: EnumItem - Enum.OutfitType.Avatar: - struct: EnumItem - Enum.OutfitType.DynamicHead: - struct: EnumItem - Enum.OutfitType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutputLayoutMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OutputLayoutMode.Horizontal: - struct: EnumItem - Enum.OutputLayoutMode.Vertical: - struct: EnumItem - Enum.OverrideMouseIconBehavior.ForceHide: - struct: EnumItem - Enum.OverrideMouseIconBehavior.ForceShow: - struct: EnumItem - Enum.OverrideMouseIconBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.OverrideMouseIconBehavior.None: - struct: EnumItem - Enum.PackagePermission.Edit: - struct: EnumItem - Enum.PackagePermission.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PackagePermission.NoAccess: - struct: EnumItem - Enum.PackagePermission.None: - struct: EnumItem - Enum.PackagePermission.Own: - struct: EnumItem - Enum.PackagePermission.Revoked: - struct: EnumItem - Enum.PackagePermission.UseView: - struct: EnumItem - Enum.PartType.Ball: - struct: EnumItem - Enum.PartType.Block: - struct: EnumItem - Enum.PartType.Cylinder: - struct: EnumItem - Enum.PartType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShape.Box: - struct: EnumItem - Enum.ParticleEmitterShape.Cylinder: - struct: EnumItem - Enum.ParticleEmitterShape.Disc: - struct: EnumItem - Enum.ParticleEmitterShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShape.Sphere: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShapeInOut.InAndOut: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.Inward: - struct: EnumItem - Enum.ParticleEmitterShapeInOut.Outward: - struct: EnumItem - Enum.ParticleEmitterShapeStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleEmitterShapeStyle.Surface: - struct: EnumItem - Enum.ParticleEmitterShapeStyle.Volume: - struct: EnumItem - Enum.ParticleFlipbookLayout.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookLayout.Grid2x2: - struct: EnumItem - Enum.ParticleFlipbookLayout.Grid4x4: - struct: EnumItem - Enum.ParticleFlipbookLayout.Grid8x8: - struct: EnumItem - Enum.ParticleFlipbookLayout.None: - struct: EnumItem - Enum.ParticleFlipbookMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookMode.Loop: - struct: EnumItem - Enum.ParticleFlipbookMode.OneShot: - struct: EnumItem - Enum.ParticleFlipbookMode.PingPong: - struct: EnumItem - Enum.ParticleFlipbookMode.Random: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.Compatible: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleFlipbookTextureCompatible.NotCompatible: - struct: EnumItem - Enum.ParticleFlipbookTextureCompatible.Unknown: - struct: EnumItem - Enum.ParticleOrientation.FacingCamera: - struct: EnumItem - Enum.ParticleOrientation.FacingCameraWorldUp: - struct: EnumItem - Enum.ParticleOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ParticleOrientation.VelocityParallel: - struct: EnumItem - Enum.ParticleOrientation.VelocityPerpendicular: - struct: EnumItem - Enum.PathStatus.ClosestNoPath: - struct: EnumItem - Enum.PathStatus.ClosestOutOfRange: - struct: EnumItem - Enum.PathStatus.FailFinishNotEmpty: - struct: EnumItem - Enum.PathStatus.FailStartNotEmpty: - struct: EnumItem - Enum.PathStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PathStatus.NoPath: - struct: EnumItem - Enum.PathStatus.Success: - struct: EnumItem - Enum.PathWaypointAction.Custom: - struct: EnumItem - Enum.PathWaypointAction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PathWaypointAction.Jump: - struct: EnumItem - Enum.PathWaypointAction.Walk: - struct: EnumItem - Enum.PermissionLevelShown.Game: - struct: EnumItem - Enum.PermissionLevelShown.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PermissionLevelShown.Roblox: - struct: EnumItem - Enum.PermissionLevelShown.RobloxGame: - struct: EnumItem - Enum.PermissionLevelShown.RobloxScript: - struct: EnumItem - Enum.PermissionLevelShown.Studio: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed120Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed240Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.Fixed60Hz: - struct: EnumItem - Enum.PhysicsSimulationRate.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PhysicsSteppingMethod.Adaptive: - struct: EnumItem - Enum.PhysicsSteppingMethod.Default: - struct: EnumItem - Enum.PhysicsSteppingMethod.Fixed: - struct: EnumItem - Enum.PhysicsSteppingMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Platform.Android: - struct: EnumItem - Enum.Platform.AndroidTV: - struct: EnumItem - Enum.Platform.BeOS: - struct: EnumItem - Enum.Platform.Chromecast: - struct: EnumItem - Enum.Platform.DOS: - struct: EnumItem - Enum.Platform.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Platform.IOS: - struct: EnumItem - Enum.Platform.Linux: - struct: EnumItem - Enum.Platform.NX: - struct: EnumItem - Enum.Platform.None: - struct: EnumItem - Enum.Platform.OSX: - struct: EnumItem - Enum.Platform.Ouya: - struct: EnumItem - Enum.Platform.PS3: - struct: EnumItem - Enum.Platform.PS4: - struct: EnumItem - Enum.Platform.SteamOS: - struct: EnumItem - Enum.Platform.UWP: - struct: EnumItem - Enum.Platform.WebOS: - struct: EnumItem - Enum.Platform.WiiU: - struct: EnumItem - Enum.Platform.Windows: - struct: EnumItem - Enum.Platform.XBox360: - struct: EnumItem - Enum.Platform.XBoxOne: - struct: EnumItem - Enum.PlaybackState.Begin: - struct: EnumItem - Enum.PlaybackState.Cancelled: - struct: EnumItem - Enum.PlaybackState.Completed: - struct: EnumItem - Enum.PlaybackState.Delayed: - struct: EnumItem - Enum.PlaybackState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlaybackState.Paused: - struct: EnumItem - Enum.PlaybackState.Playing: - struct: EnumItem - Enum.PlayerActions.CharacterBackward: - struct: EnumItem - Enum.PlayerActions.CharacterForward: - struct: EnumItem - Enum.PlayerActions.CharacterJump: - struct: EnumItem - Enum.PlayerActions.CharacterLeft: - struct: EnumItem - Enum.PlayerActions.CharacterRight: - struct: EnumItem - Enum.PlayerActions.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlayerChatType.All: - struct: EnumItem - Enum.PlayerChatType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PlayerChatType.Team: - struct: EnumItem - Enum.PlayerChatType.Whisper: - struct: EnumItem - Enum.PoseEasingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PoseEasingDirection.In: - struct: EnumItem - Enum.PoseEasingDirection.InOut: - struct: EnumItem - Enum.PoseEasingDirection.Out: - struct: EnumItem - Enum.PoseEasingStyle.Bounce: - struct: EnumItem - Enum.PoseEasingStyle.Constant: - struct: EnumItem - Enum.PoseEasingStyle.Cubic: - struct: EnumItem - Enum.PoseEasingStyle.Elastic: - struct: EnumItem - Enum.PoseEasingStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PoseEasingStyle.Linear: - struct: EnumItem - Enum.PositionAlignmentMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PositionAlignmentMode.OneAttachment: - struct: EnumItem - Enum.PositionAlignmentMode.TwoAttachment: - struct: EnumItem - Enum.PrivilegeType.Admin: - struct: EnumItem - Enum.PrivilegeType.Banned: - struct: EnumItem - Enum.PrivilegeType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PrivilegeType.Member: - struct: EnumItem - Enum.PrivilegeType.Owner: - struct: EnumItem - Enum.PrivilegeType.Visitor: - struct: EnumItem - Enum.ProductLocationRestriction.AllGames: - struct: EnumItem - Enum.ProductLocationRestriction.AllowedGames: - struct: EnumItem - Enum.ProductLocationRestriction.AvatarShop: - struct: EnumItem - Enum.ProductLocationRestriction.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProductPurchaseDecision.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProductPurchaseDecision.NotProcessedYet: - struct: EnumItem - Enum.ProductPurchaseDecision.PurchaseGranted: - struct: EnumItem - Enum.PromptPublishAssetResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PromptPublishAssetResult.NoUserInput: - struct: EnumItem - Enum.PromptPublishAssetResult.PermissionDenied: - struct: EnumItem - Enum.PromptPublishAssetResult.Success: - struct: EnumItem - Enum.PromptPublishAssetResult.Timeout: - struct: EnumItem - Enum.PromptPublishAssetResult.UploadFailed: - struct: EnumItem - Enum.PropertyStatus.Error: - struct: EnumItem - Enum.PropertyStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.PropertyStatus.Ok: - struct: EnumItem - Enum.PropertyStatus.Warning: - struct: EnumItem - Enum.ProximityPromptExclusivity.AlwaysShow: - struct: EnumItem - Enum.ProximityPromptExclusivity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProximityPromptExclusivity.OneGlobally: - struct: EnumItem - Enum.ProximityPromptExclusivity.OnePerButton: - struct: EnumItem - Enum.ProximityPromptInputType.Gamepad: - struct: EnumItem - Enum.ProximityPromptInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ProximityPromptInputType.Keyboard: - struct: EnumItem - Enum.ProximityPromptInputType.Touch: - struct: EnumItem - Enum.ProximityPromptStyle.Custom: - struct: EnumItem - Enum.ProximityPromptStyle.Default: - struct: EnumItem - Enum.ProximityPromptStyle.GetEnumItems: - args: [] - method: true - must_use: true - Enum.QualityLevel.Automatic: - struct: EnumItem - Enum.QualityLevel.GetEnumItems: - args: [] - method: true - must_use: true - Enum.QualityLevel.Level 1: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 1 was replaced with Enum.QualityLevel.Level01 - replace: - - Enum.QualityLevel.Level01 - Enum.QualityLevel.Level 2: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 2 was replaced with Enum.QualityLevel.Level02 - replace: - - Enum.QualityLevel.Level02 - Enum.QualityLevel.Level 3: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 3 was replaced with Enum.QualityLevel.Level03 - replace: - - Enum.QualityLevel.Level03 - Enum.QualityLevel.Level 4: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 4 was replaced with Enum.QualityLevel.Level04 - replace: - - Enum.QualityLevel.Level04 - Enum.QualityLevel.Level 5: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 5 was replaced with Enum.QualityLevel.Level05 - replace: - - Enum.QualityLevel.Level05 - Enum.QualityLevel.Level 6: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 6 was replaced with Enum.QualityLevel.Level06 - replace: - - Enum.QualityLevel.Level06 - Enum.QualityLevel.Level 7: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 7 was replaced with Enum.QualityLevel.Level07 - replace: - - Enum.QualityLevel.Level07 - Enum.QualityLevel.Level 8: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 8 was replaced with Enum.QualityLevel.Level08 - replace: - - Enum.QualityLevel.Level08 - Enum.QualityLevel.Level 9: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 9 was replaced with Enum.QualityLevel.Level09 - replace: - - Enum.QualityLevel.Level09 - Enum.QualityLevel.Level 10: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 10 was replaced with Enum.QualityLevel.Level10 - replace: - - Enum.QualityLevel.Level10 - Enum.QualityLevel.Level 11: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 11 was replaced with Enum.QualityLevel.Level11 - replace: - - Enum.QualityLevel.Level11 - Enum.QualityLevel.Level 12: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 12 was replaced with Enum.QualityLevel.Level12 - replace: - - Enum.QualityLevel.Level12 - Enum.QualityLevel.Level 13: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 13 was replaced with Enum.QualityLevel.Level13 - replace: - - Enum.QualityLevel.Level13 - Enum.QualityLevel.Level 14: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 14 was replaced with Enum.QualityLevel.Level14 - replace: - - Enum.QualityLevel.Level14 - Enum.QualityLevel.Level 15: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 15 was replaced with Enum.QualityLevel.Level15 - replace: - - Enum.QualityLevel.Level15 - Enum.QualityLevel.Level 16: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 16 was replaced with Enum.QualityLevel.Level16 - replace: - - Enum.QualityLevel.Level16 - Enum.QualityLevel.Level 17: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 17 was replaced with Enum.QualityLevel.Level17 - replace: - - Enum.QualityLevel.Level17 - Enum.QualityLevel.Level 18: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 18 was replaced with Enum.QualityLevel.Level18 - replace: - - Enum.QualityLevel.Level18 - Enum.QualityLevel.Level 19: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 19 was replaced with Enum.QualityLevel.Level19 - replace: - - Enum.QualityLevel.Level19 - Enum.QualityLevel.Level 20: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 20 was replaced with Enum.QualityLevel.Level20 - replace: - - Enum.QualityLevel.Level20 - Enum.QualityLevel.Level 21: - struct: EnumItem - deprecated: - message: Enum.QualityLevel.Level 21 was replaced with Enum.QualityLevel.Level21 - replace: - - Enum.QualityLevel.Level21 - Enum.QualityLevel.Level01: - struct: EnumItem - Enum.QualityLevel.Level02: - struct: EnumItem - Enum.QualityLevel.Level03: - struct: EnumItem - Enum.QualityLevel.Level04: - struct: EnumItem - Enum.QualityLevel.Level05: - struct: EnumItem - Enum.QualityLevel.Level06: - struct: EnumItem - Enum.QualityLevel.Level07: - struct: EnumItem - Enum.QualityLevel.Level08: - struct: EnumItem - Enum.QualityLevel.Level09: - struct: EnumItem - Enum.QualityLevel.Level10: - struct: EnumItem - Enum.QualityLevel.Level11: - struct: EnumItem - Enum.QualityLevel.Level12: - struct: EnumItem - Enum.QualityLevel.Level13: - struct: EnumItem - Enum.QualityLevel.Level14: - struct: EnumItem - Enum.QualityLevel.Level15: - struct: EnumItem - Enum.QualityLevel.Level16: - struct: EnumItem - Enum.QualityLevel.Level17: - struct: EnumItem - Enum.QualityLevel.Level18: - struct: EnumItem - Enum.QualityLevel.Level19: - struct: EnumItem - Enum.QualityLevel.Level20: - struct: EnumItem - Enum.QualityLevel.Level21: - struct: EnumItem - Enum.R15CollisionType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.R15CollisionType.InnerBox: - struct: EnumItem - Enum.R15CollisionType.OuterBox: - struct: EnumItem - Enum.RaycastFilterType.Blacklist: - struct: EnumItem - deprecated: - message: Enum.RaycastFilterType.Blacklist was replaced with Enum.RaycastFilterType.Exclude - replace: - - Enum.RaycastFilterType.Exclude - Enum.RaycastFilterType.Exclude: - struct: EnumItem - Enum.RaycastFilterType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RaycastFilterType.Include: - struct: EnumItem - Enum.RaycastFilterType.Whitelist: - struct: EnumItem - deprecated: - message: Enum.RaycastFilterType.Whitelist was replaced with Enum.RaycastFilterType.Include - replace: - - Enum.RaycastFilterType.Include - Enum.RejectCharacterDeletions.Default: - struct: EnumItem - Enum.RejectCharacterDeletions.Disabled: - struct: EnumItem - Enum.RejectCharacterDeletions.Enabled: - struct: EnumItem - Enum.RejectCharacterDeletions.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderFidelity.Automatic: - struct: EnumItem - Enum.RenderFidelity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderFidelity.Performance: - struct: EnumItem - Enum.RenderFidelity.Precise: - struct: EnumItem - Enum.RenderPriority.Camera: - struct: EnumItem - Enum.RenderPriority.Character: - struct: EnumItem - Enum.RenderPriority.First: - struct: EnumItem - Enum.RenderPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderPriority.Input: - struct: EnumItem - Enum.RenderPriority.Last: - struct: EnumItem - Enum.RenderingTestComparisonMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RenderingTestComparisonMethod.diff: - struct: EnumItem - Enum.RenderingTestComparisonMethod.psnr: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Default: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Disabled: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.Enabled: - struct: EnumItem - Enum.ReplicateInstanceDestroySetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ResamplerMode.Default: - struct: EnumItem - Enum.ResamplerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ResamplerMode.Pixelated: - struct: EnumItem - Enum.ReservedHighlightId.Active: - struct: EnumItem - Enum.ReservedHighlightId.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReservedHighlightId.Hover: - struct: EnumItem - Enum.ReservedHighlightId.Selection: - struct: EnumItem - Enum.ReservedHighlightId.Standard: - struct: EnumItem - Enum.ReturnKeyType.Default: - struct: EnumItem - Enum.ReturnKeyType.Done: - struct: EnumItem - Enum.ReturnKeyType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReturnKeyType.Go: - struct: EnumItem - Enum.ReturnKeyType.Next: - struct: EnumItem - Enum.ReturnKeyType.Search: - struct: EnumItem - Enum.ReturnKeyType.Send: - struct: EnumItem - Enum.ReverbType.Alley: - struct: EnumItem - Enum.ReverbType.Arena: - struct: EnumItem - Enum.ReverbType.Auditorium: - struct: EnumItem - Enum.ReverbType.Bathroom: - struct: EnumItem - Enum.ReverbType.CarpettedHallway: - struct: EnumItem - Enum.ReverbType.Cave: - struct: EnumItem - Enum.ReverbType.City: - struct: EnumItem - Enum.ReverbType.ConcertHall: - struct: EnumItem - Enum.ReverbType.Forest: - struct: EnumItem - Enum.ReverbType.GenericReverb: - struct: EnumItem - Enum.ReverbType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ReverbType.Hallway: - struct: EnumItem - Enum.ReverbType.Hangar: - struct: EnumItem - Enum.ReverbType.LivingRoom: - struct: EnumItem - Enum.ReverbType.Mountains: - struct: EnumItem - Enum.ReverbType.NoReverb: - struct: EnumItem - Enum.ReverbType.PaddedCell: - struct: EnumItem - Enum.ReverbType.ParkingLot: - struct: EnumItem - Enum.ReverbType.Plain: - struct: EnumItem - Enum.ReverbType.Quarry: - struct: EnumItem - Enum.ReverbType.Room: - struct: EnumItem - Enum.ReverbType.SewerPipe: - struct: EnumItem - Enum.ReverbType.StoneCorridor: - struct: EnumItem - Enum.ReverbType.StoneRoom: - struct: EnumItem - Enum.ReverbType.UnderWater: - struct: EnumItem - Enum.RibbonTool.ColorPicker: - struct: EnumItem - Enum.RibbonTool.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RibbonTool.Group: - struct: EnumItem - Enum.RibbonTool.MaterialPicker: - struct: EnumItem - Enum.RibbonTool.Move: - struct: EnumItem - Enum.RibbonTool.None: - struct: EnumItem - Enum.RibbonTool.Rotate: - struct: EnumItem - Enum.RibbonTool.Scale: - struct: EnumItem - Enum.RibbonTool.Select: - struct: EnumItem - Enum.RibbonTool.Transform: - struct: EnumItem - Enum.RibbonTool.Ungroup: - struct: EnumItem - Enum.RigScale.Default: - struct: EnumItem - Enum.RigScale.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RigScale.Rthro: - struct: EnumItem - Enum.RigScale.RthroNarrow: - struct: EnumItem - Enum.RigType.Custom: - struct: EnumItem - Enum.RigType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RigType.None: - struct: EnumItem - Enum.RigType.R15: - struct: EnumItem - Enum.RigType.Rthro: - struct: EnumItem - Enum.RigType.RthroNarrow: - struct: EnumItem - Enum.RollOffMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RollOffMode.Inverse: - struct: EnumItem - Enum.RollOffMode.InverseTapered: - struct: EnumItem - Enum.RollOffMode.Linear: - struct: EnumItem - Enum.RollOffMode.LinearSquare: - struct: EnumItem - Enum.RotationOrder.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RotationOrder.XYZ: - struct: EnumItem - Enum.RotationOrder.XZY: - struct: EnumItem - Enum.RotationOrder.YXZ: - struct: EnumItem - Enum.RotationOrder.YZX: - struct: EnumItem - Enum.RotationOrder.ZXY: - struct: EnumItem - Enum.RotationOrder.ZYX: - struct: EnumItem - Enum.RotationType.CameraRelative: - struct: EnumItem - Enum.RotationType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RotationType.MovementRelative: - struct: EnumItem - Enum.RtlTextSupport.Default: - struct: EnumItem - Enum.RtlTextSupport.Disabled: - struct: EnumItem - Enum.RtlTextSupport.Enabled: - struct: EnumItem - Enum.RtlTextSupport.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RunContext.Client: - struct: EnumItem - Enum.RunContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RunContext.Legacy: - struct: EnumItem - Enum.RunContext.Plugin: - struct: EnumItem - Enum.RunContext.Server: - struct: EnumItem - Enum.RuntimeUndoBehavior.Aggregate: - struct: EnumItem - Enum.RuntimeUndoBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.RuntimeUndoBehavior.Hybrid: - struct: EnumItem - Enum.RuntimeUndoBehavior.Snapshot: - struct: EnumItem - Enum.SafeAreaCompatibility.FullscreenExtension: - struct: EnumItem - Enum.SafeAreaCompatibility.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SafeAreaCompatibility.None: - struct: EnumItem - Enum.SalesTypeFilter.All: - struct: EnumItem - Enum.SalesTypeFilter.Collectibles: - struct: EnumItem - Enum.SalesTypeFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SalesTypeFilter.Premium: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadDistanceScale: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadFieldOfViewDeg: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadThumbnailType: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.BadYRotDeg: - struct: EnumItem - Enum.SaveAvatarThumbnailCustomizationFailure.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SaveAvatarThumbnailCustomizationFailure.Other: - struct: EnumItem - Enum.SaveFilter.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SaveFilter.SaveAll: - struct: EnumItem - Enum.SaveFilter.SaveGame: - struct: EnumItem - Enum.SaveFilter.SaveWorld: - struct: EnumItem - Enum.SavedQualitySetting.Automatic: - struct: EnumItem - Enum.SavedQualitySetting.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SavedQualitySetting.QualityLevel1: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel10: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel2: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel3: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel4: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel5: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel6: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel7: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel8: - struct: EnumItem - Enum.SavedQualitySetting.QualityLevel9: - struct: EnumItem - Enum.ScaleType.Crop: - struct: EnumItem - Enum.ScaleType.Fit: - struct: EnumItem - Enum.ScaleType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScaleType.Slice: - struct: EnumItem - Enum.ScaleType.Stretch: - struct: EnumItem - Enum.ScaleType.Tile: - struct: EnumItem - Enum.ScopeCheckResult.BackendError: - struct: EnumItem - Enum.ScopeCheckResult.ConsentAccepted: - struct: EnumItem - Enum.ScopeCheckResult.ConsentDenied: - struct: EnumItem - Enum.ScopeCheckResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScopeCheckResult.InvalidArgument: - struct: EnumItem - Enum.ScopeCheckResult.InvalidScopes: - struct: EnumItem - Enum.ScopeCheckResult.NoUserInput: - struct: EnumItem - Enum.ScopeCheckResult.Timeout: - struct: EnumItem - Enum.ScopeCheckResult.UnexpectedError: - struct: EnumItem - Enum.ScreenInsets.CoreUISafeInsets: - struct: EnumItem - Enum.ScreenInsets.DeviceSafeInsets: - struct: EnumItem - Enum.ScreenInsets.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScreenInsets.None: - struct: EnumItem - Enum.ScreenOrientation.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScreenOrientation.LandscapeLeft: - struct: EnumItem - Enum.ScreenOrientation.LandscapeRight: - struct: EnumItem - Enum.ScreenOrientation.LandscapeSensor: - struct: EnumItem - Enum.ScreenOrientation.Portrait: - struct: EnumItem - Enum.ScreenOrientation.Sensor: - struct: EnumItem - Enum.ScrollBarInset.Always: - struct: EnumItem - Enum.ScrollBarInset.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScrollBarInset.None: - struct: EnumItem - Enum.ScrollBarInset.ScrollBar: - struct: EnumItem - Enum.ScrollingDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ScrollingDirection.X: - struct: EnumItem - Enum.ScrollingDirection.XY: - struct: EnumItem - Enum.ScrollingDirection.Y: - struct: EnumItem - Enum.SelectionBehavior.Escape: - struct: EnumItem - Enum.SelectionBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SelectionBehavior.Stop: - struct: EnumItem - Enum.SensorMode.Floor: - struct: EnumItem - Enum.SensorMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SensorMode.Ladder: - struct: EnumItem - Enum.SensorUpdateType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SensorUpdateType.Manual: - struct: EnumItem - Enum.SensorUpdateType.OnRead: - struct: EnumItem - Enum.ServerAudioBehavior.Enabled: - struct: EnumItem - Enum.ServerAudioBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ServerAudioBehavior.Muted: - struct: EnumItem - Enum.ServerAudioBehavior.OnlineGame: - struct: EnumItem - Enum.ServiceVisibility.Always: - struct: EnumItem - Enum.ServiceVisibility.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ServiceVisibility.Off: - struct: EnumItem - Enum.ServiceVisibility.WithChildren: - struct: EnumItem - Enum.Severity.Error: - struct: EnumItem - Enum.Severity.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Severity.Warning: - struct: EnumItem - Enum.SignalBehavior.AncestryDeferred: - struct: EnumItem - Enum.SignalBehavior.Default: - struct: EnumItem - Enum.SignalBehavior.Deferred: - struct: EnumItem - Enum.SignalBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SignalBehavior.Immediate: - struct: EnumItem - Enum.SizeConstraint.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SizeConstraint.RelativeXX: - struct: EnumItem - Enum.SizeConstraint.RelativeXY: - struct: EnumItem - Enum.SizeConstraint.RelativeYY: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.Disabled: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SolverConvergenceVisualizationMode.PerEdge: - struct: EnumItem - Enum.SolverConvergenceVisualizationMode.PerIsland: - struct: EnumItem - Enum.SortDirection.Ascending: - struct: EnumItem - Enum.SortDirection.Descending: - struct: EnumItem - Enum.SortDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SortOrder.Custom: - struct: EnumItem - Enum.SortOrder.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SortOrder.LayoutOrder: - struct: EnumItem - Enum.SortOrder.Name: - struct: EnumItem - Enum.SpecialKey.ChatHotkey: - struct: EnumItem - Enum.SpecialKey.End: - struct: EnumItem - Enum.SpecialKey.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SpecialKey.Home: - struct: EnumItem - Enum.SpecialKey.Insert: - struct: EnumItem - Enum.SpecialKey.PageDown: - struct: EnumItem - Enum.SpecialKey.PageUp: - struct: EnumItem - Enum.StartCorner.BottomLeft: - struct: EnumItem - Enum.StartCorner.BottomRight: - struct: EnumItem - Enum.StartCorner.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StartCorner.TopLeft: - struct: EnumItem - Enum.StartCorner.TopRight: - struct: EnumItem - Enum.Status.Confusion: - struct: EnumItem - Enum.Status.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Status.Poison: - struct: EnumItem - Enum.StreamOutBehavior.Default: - struct: EnumItem - Enum.StreamOutBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StreamOutBehavior.LowMemory: - struct: EnumItem - Enum.StreamOutBehavior.Opportunistic: - struct: EnumItem - Enum.StreamingIntegrityMode.Default: - struct: EnumItem - Enum.StreamingIntegrityMode.Disabled: - struct: EnumItem - Enum.StreamingIntegrityMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StreamingIntegrityMode.MinimumRadiusPause: - struct: EnumItem - Enum.StreamingIntegrityMode.PauseOutsideLoadedArea: - struct: EnumItem - Enum.StreamingPauseMode.ClientPhysicsPause: - struct: EnumItem - Enum.StreamingPauseMode.Default: - struct: EnumItem - Enum.StreamingPauseMode.Disabled: - struct: EnumItem - Enum.StreamingPauseMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioCloseMode.CloseDoc: - struct: EnumItem - Enum.StudioCloseMode.CloseStudio: - struct: EnumItem - Enum.StudioCloseMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioCloseMode.None: - struct: EnumItem - Enum.StudioDataModelType.Edit: - struct: EnumItem - Enum.StudioDataModelType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioDataModelType.None: - struct: EnumItem - Enum.StudioDataModelType.PlayClient: - struct: EnumItem - Enum.StudioDataModelType.PlayServer: - struct: EnumItem - Enum.StudioDataModelType.Standalone: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.ActiveLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Background: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Bool: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Bracket: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Builtin: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Comment: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DebuggerCurrentLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DebuggerErrorLine: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Default: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.DocViewCodeBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Error: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.FindSelectionBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Function: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.FunctionName: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioScriptEditorColorCategories.Keyword: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Local: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.LuauKeyword: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MatchingWordBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuBorder: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuPrimaryText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuScrollbarBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuScrollbarHandle: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSecondaryText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSelectedBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.MenuSelectedText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Method: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Nil: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Number: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Operator: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Property: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Ruler: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.SelectionBackground: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.SelectionText: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Self: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.String: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.TODO: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Warning: - struct: EnumItem - Enum.StudioScriptEditorColorCategories.Whitespace: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Custom: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Extra1: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.Extra2: - struct: EnumItem - Enum.StudioScriptEditorColorPresets.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioScriptEditorColorPresets.RobloxDefault: - struct: EnumItem - Enum.StudioStyleGuideColor.AttributeCog: - struct: EnumItem - Enum.StudioStyleGuideColor.Border: - struct: EnumItem - Enum.StudioStyleGuideColor.BrightText: - struct: EnumItem - Enum.StudioStyleGuideColor.Button: - struct: EnumItem - Enum.StudioStyleGuideColor.ButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.ButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.CategoryItem: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatIncomingBgColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatIncomingTextColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatModeratedMessageColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatOutgoingBgColor: - struct: EnumItem - Enum.StudioStyleGuideColor.ChatOutgoingTextColor: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.CheckedFieldIndicator: - struct: EnumItem - Enum.StudioStyleGuideColor.ColorPickerFrame: - struct: EnumItem - Enum.StudioStyleGuideColor.CurrentMarker: - struct: EnumItem - Enum.StudioStyleGuideColor.Dark: - struct: EnumItem - Enum.StudioStyleGuideColor.DebuggerCurrentLine: - struct: EnumItem - Enum.StudioStyleGuideColor.DebuggerErrorLine: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButton: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogMainButton: - struct: EnumItem - Enum.StudioStyleGuideColor.DialogMainButtonText: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffFilePathText: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNum: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumAdditionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumDeletionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumNoChangeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffLineNumSeparatorBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextAddition: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextAdditionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextDeletion: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextDeletionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextHunkInfo: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextNoChange: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextNoChangeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DiffTextSeparatorBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DimmedText: - struct: EnumItem - Enum.StudioStyleGuideColor.DocViewCodeBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.DropShadow: - struct: EnumItem - Enum.StudioStyleGuideColor.Dropdown: - struct: EnumItem - Enum.StudioStyleGuideColor.EmulatorBar: - struct: EnumItem - Enum.StudioStyleGuideColor.EmulatorDropDown: - struct: EnumItem - Enum.StudioStyleGuideColor.ErrorText: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonAccent: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonBorderAlt: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonChecked: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonDefault: - struct: EnumItem - Enum.StudioStyleGuideColor.FilterButtonHover: - struct: EnumItem - Enum.StudioStyleGuideColor.GameSettingsTableItem: - struct: EnumItem - Enum.StudioStyleGuideColor.GameSettingsTooltip: - struct: EnumItem - Enum.StudioStyleGuideColor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioStyleGuideColor.HeaderSection: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoBarWarningBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoBarWarningText: - struct: EnumItem - Enum.StudioStyleGuideColor.InfoText: - struct: EnumItem - Enum.StudioStyleGuideColor.InputFieldBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.InputFieldBorder: - struct: EnumItem - Enum.StudioStyleGuideColor.Item: - struct: EnumItem - Enum.StudioStyleGuideColor.Light: - struct: EnumItem - Enum.StudioStyleGuideColor.LinkText: - struct: EnumItem - Enum.StudioStyleGuideColor.MainBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.MainButton: - struct: EnumItem - Enum.StudioStyleGuideColor.MainText: - struct: EnumItem - Enum.StudioStyleGuideColor.Mid: - struct: EnumItem - Enum.StudioStyleGuideColor.Midlight: - struct: EnumItem - Enum.StudioStyleGuideColor.Notification: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonButton: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonTab: - struct: EnumItem - Enum.StudioStyleGuideColor.RibbonTabTopBar: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBool: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBracket: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptBuiltInFunction: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptComment: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptEditorCurrentLine: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptError: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFindSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFunction: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptFunctionName: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptKeyword: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptLocal: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptLuauKeyword: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptMatchingWordSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptMethod: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptNil: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptNumber: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptOperator: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptProperty: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptRuler: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelectionBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelectionText: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSelf: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptSideWidget: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptString: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptText: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptTodo: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptWarning: - struct: EnumItem - Enum.StudioStyleGuideColor.ScriptWhitespace: - struct: EnumItem - Enum.StudioStyleGuideColor.ScrollBar: - struct: EnumItem - Enum.StudioStyleGuideColor.ScrollBarBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.SensitiveText: - struct: EnumItem - Enum.StudioStyleGuideColor.Separator: - struct: EnumItem - Enum.StudioStyleGuideColor.Shadow: - struct: EnumItem - Enum.StudioStyleGuideColor.StatusBar: - struct: EnumItem - Enum.StudioStyleGuideColor.SubText: - struct: EnumItem - Enum.StudioStyleGuideColor.Tab: - struct: EnumItem - Enum.StudioStyleGuideColor.TabBar: - struct: EnumItem - Enum.StudioStyleGuideColor.TableItem: - struct: EnumItem - Enum.StudioStyleGuideColor.Titlebar: - struct: EnumItem - Enum.StudioStyleGuideColor.TitlebarText: - struct: EnumItem - Enum.StudioStyleGuideColor.Tooltip: - struct: EnumItem - Enum.StudioStyleGuideColor.ViewPortBackground: - struct: EnumItem - Enum.StudioStyleGuideColor.WarningText: - struct: EnumItem - Enum.StudioStyleGuideModifier.Default: - struct: EnumItem - Enum.StudioStyleGuideModifier.Disabled: - struct: EnumItem - Enum.StudioStyleGuideModifier.GetEnumItems: - args: [] - method: true - must_use: true - Enum.StudioStyleGuideModifier.Hover: - struct: EnumItem - Enum.StudioStyleGuideModifier.Pressed: - struct: EnumItem - Enum.StudioStyleGuideModifier.Selected: - struct: EnumItem - Enum.Style.Alternating Supports: - struct: EnumItem - deprecated: - message: Enum.Style.Alternating Supports was replaced with Enum.Style.AlternatingSupports - replace: - - Enum.Style.AlternatingSupports - Enum.Style.AlternatingSupports: - struct: EnumItem - Enum.Style.Bridge Style Supports: - struct: EnumItem - deprecated: - message: Enum.Style.Bridge Style Supports was replaced with Enum.Style.BridgeStyleSupports - replace: - - Enum.Style.BridgeStyleSupports - Enum.Style.BridgeStyleSupports: - struct: EnumItem - Enum.Style.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Style.No Supports: - struct: EnumItem - deprecated: - message: Enum.Style.No Supports was replaced with Enum.Style.NoSupports - replace: - - Enum.Style.NoSupports - Enum.Style.NoSupports: - struct: EnumItem - Enum.SurfaceConstraint.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceConstraint.Hinge: - struct: EnumItem - Enum.SurfaceConstraint.Motor: - struct: EnumItem - Enum.SurfaceConstraint.None: - struct: EnumItem - Enum.SurfaceConstraint.SteppingMotor: - struct: EnumItem - Enum.SurfaceGuiShape.CurvedHorizontally: - struct: EnumItem - Enum.SurfaceGuiShape.Flat: - struct: EnumItem - Enum.SurfaceGuiShape.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceGuiSizingMode.FixedSize: - struct: EnumItem - Enum.SurfaceGuiSizingMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceGuiSizingMode.PixelsPerStud: - struct: EnumItem - Enum.SurfaceType.Bumps: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Bumps was replaced with Enum.SurfaceType.Glue - replace: - - Enum.SurfaceType.Glue - Enum.SurfaceType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SurfaceType.Glue: - struct: EnumItem - Enum.SurfaceType.Hinge: - struct: EnumItem - Enum.SurfaceType.Inlet: - struct: EnumItem - Enum.SurfaceType.Motor: - struct: EnumItem - Enum.SurfaceType.Smooth: - struct: EnumItem - Enum.SurfaceType.SmoothNoOutlines: - struct: EnumItem - Enum.SurfaceType.Spawn: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Spawn was replaced with Enum.SurfaceType.Smooth - replace: - - Enum.SurfaceType.Smooth - Enum.SurfaceType.SteppingMotor: - struct: EnumItem - Enum.SurfaceType.Studs: - struct: EnumItem - Enum.SurfaceType.Universal: - struct: EnumItem - Enum.SurfaceType.Unjoinable: - struct: EnumItem - deprecated: - message: Enum.SurfaceType.Unjoinable was replaced with Enum.SurfaceType.Smooth - replace: - - Enum.SurfaceType.Smooth - Enum.SurfaceType.Weld: - struct: EnumItem - Enum.SwipeDirection.Down: - struct: EnumItem - Enum.SwipeDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.SwipeDirection.Left: - struct: EnumItem - Enum.SwipeDirection.None: - struct: EnumItem - Enum.SwipeDirection.Right: - struct: EnumItem - Enum.SwipeDirection.Up: - struct: EnumItem - Enum.TableMajorAxis.ColumnMajor: - struct: EnumItem - Enum.TableMajorAxis.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TableMajorAxis.RowMajor: - struct: EnumItem - Enum.Technology.Compatibility: - struct: EnumItem - Enum.Technology.Future: - struct: EnumItem - Enum.Technology.GetEnumItems: - args: [] - method: true - must_use: true - Enum.Technology.Legacy: - struct: EnumItem - Enum.Technology.ShadowMap: - struct: EnumItem - Enum.Technology.Voxel: - struct: EnumItem - Enum.TeleportMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportMethod.TeleportPartyAsync: - struct: EnumItem - Enum.TeleportMethod.TeleportToPlaceInstance: - struct: EnumItem - Enum.TeleportMethod.TeleportToPrivateServer: - struct: EnumItem - Enum.TeleportMethod.TeleportToSpawnByName: - struct: EnumItem - Enum.TeleportMethod.TeleportUnknown: - struct: EnumItem - Enum.TeleportResult.Failure: - struct: EnumItem - Enum.TeleportResult.Flooded: - struct: EnumItem - Enum.TeleportResult.GameEnded: - struct: EnumItem - Enum.TeleportResult.GameFull: - struct: EnumItem - Enum.TeleportResult.GameNotFound: - struct: EnumItem - Enum.TeleportResult.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportResult.IsTeleporting: - struct: EnumItem - Enum.TeleportResult.Success: - struct: EnumItem - Enum.TeleportResult.Unauthorized: - struct: EnumItem - Enum.TeleportState.Failed: - struct: EnumItem - Enum.TeleportState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportState.InProgress: - struct: EnumItem - Enum.TeleportState.RequestedFromServer: - struct: EnumItem - Enum.TeleportState.Started: - struct: EnumItem - Enum.TeleportState.WaitingForServer: - struct: EnumItem - Enum.TeleportType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TeleportType.ToInstance: - struct: EnumItem - Enum.TeleportType.ToPlace: - struct: EnumItem - Enum.TeleportType.ToReservedServer: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Convert: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditAddTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditReplaceTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.EditSeaLevelTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Generate: - struct: EnumItem - Enum.TerrainAcquisitionMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TerrainAcquisitionMethod.Import: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Legacy: - struct: EnumItem - Enum.TerrainAcquisitionMethod.None: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Other: - struct: EnumItem - Enum.TerrainAcquisitionMethod.RegionFillTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.RegionPasteTool: - struct: EnumItem - Enum.TerrainAcquisitionMethod.Template: - struct: EnumItem - Enum.TerrainFace.Bottom: - struct: EnumItem - Enum.TerrainFace.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TerrainFace.Side: - struct: EnumItem - Enum.TerrainFace.Top: - struct: EnumItem - Enum.TextChatMessageStatus.Floodchecked: - struct: EnumItem - Enum.TextChatMessageStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextChatMessageStatus.InvalidPrivacySettings: - struct: EnumItem - Enum.TextChatMessageStatus.InvalidTextChannelPermissions: - struct: EnumItem - Enum.TextChatMessageStatus.MessageTooLong: - struct: EnumItem - Enum.TextChatMessageStatus.Sending: - struct: EnumItem - Enum.TextChatMessageStatus.Success: - struct: EnumItem - Enum.TextChatMessageStatus.TextFilterFailed: - struct: EnumItem - Enum.TextChatMessageStatus.Unknown: - struct: EnumItem - Enum.TextFilterContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextFilterContext.PrivateChat: - struct: EnumItem - Enum.TextFilterContext.PublicChat: - struct: EnumItem - Enum.TextInputType.Default: - struct: EnumItem - Enum.TextInputType.Email: - struct: EnumItem - Enum.TextInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextInputType.NoSuggestions: - struct: EnumItem - Enum.TextInputType.Number: - struct: EnumItem - Enum.TextInputType.OneTimePassword: - struct: EnumItem - Enum.TextInputType.Password: - struct: EnumItem - Enum.TextInputType.PasswordShown: - struct: EnumItem - Enum.TextInputType.Phone: - struct: EnumItem - Enum.TextInputType.Username: - struct: EnumItem - Enum.TextTruncate.AtEnd: - struct: EnumItem - Enum.TextTruncate.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextTruncate.None: - struct: EnumItem - Enum.TextXAlignment.Center: - struct: EnumItem - Enum.TextXAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextXAlignment.Left: - struct: EnumItem - Enum.TextXAlignment.Right: - struct: EnumItem - Enum.TextYAlignment.Bottom: - struct: EnumItem - Enum.TextYAlignment.Center: - struct: EnumItem - Enum.TextYAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextYAlignment.Top: - struct: EnumItem - Enum.TextureMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextureMode.Static: - struct: EnumItem - Enum.TextureMode.Stretch: - struct: EnumItem - Enum.TextureMode.Wrap: - struct: EnumItem - Enum.TextureQueryType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TextureQueryType.Humanoid: - struct: EnumItem - Enum.TextureQueryType.HumanoidOrphaned: - struct: EnumItem - Enum.TextureQueryType.NonHumanoid: - struct: EnumItem - Enum.TextureQueryType.NonHumanoidOrphaned: - struct: EnumItem - Enum.ThreadPoolConfig.Auto: - struct: EnumItem - Enum.ThreadPoolConfig.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThreadPoolConfig.PartialThread: - struct: EnumItem - deprecated: - message: Enum.ThreadPoolConfig.PartialThread was replaced with Enum.ThreadPoolConfig.Auto - replace: - - Enum.ThreadPoolConfig.Auto - Enum.ThreadPoolConfig.PerCore1: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore2: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore3: - struct: EnumItem - Enum.ThreadPoolConfig.PerCore4: - struct: EnumItem - Enum.ThreadPoolConfig.Threads1: - struct: EnumItem - Enum.ThreadPoolConfig.Threads16: - struct: EnumItem - Enum.ThreadPoolConfig.Threads2: - struct: EnumItem - Enum.ThreadPoolConfig.Threads3: - struct: EnumItem - Enum.ThreadPoolConfig.Threads4: - struct: EnumItem - Enum.ThreadPoolConfig.Threads8: - struct: EnumItem - Enum.ThrottlingPriority.Default: - struct: EnumItem - Enum.ThrottlingPriority.ElevatedOnServer: - struct: EnumItem - Enum.ThrottlingPriority.Extreme: - struct: EnumItem - Enum.ThrottlingPriority.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailSize.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailSize.Size100x100: - struct: EnumItem - Enum.ThumbnailSize.Size150x150: - struct: EnumItem - Enum.ThumbnailSize.Size180x180: - struct: EnumItem - Enum.ThumbnailSize.Size352x352: - struct: EnumItem - Enum.ThumbnailSize.Size420x420: - struct: EnumItem - Enum.ThumbnailSize.Size48x48: - struct: EnumItem - Enum.ThumbnailSize.Size60x60: - struct: EnumItem - Enum.ThumbnailType.AvatarBust: - struct: EnumItem - Enum.ThumbnailType.AvatarThumbnail: - struct: EnumItem - Enum.ThumbnailType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ThumbnailType.HeadShot: - struct: EnumItem - Enum.TickCountSampleMethod.Benchmark: - struct: EnumItem - Enum.TickCountSampleMethod.Fast: - struct: EnumItem - Enum.TickCountSampleMethod.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TickCountSampleMethod.Precise: - struct: EnumItem - Enum.TopBottom.Bottom: - struct: EnumItem - Enum.TopBottom.Center: - struct: EnumItem - Enum.TopBottom.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TopBottom.Top: - struct: EnumItem - Enum.TouchCameraMovementMode.Classic: - struct: EnumItem - Enum.TouchCameraMovementMode.Default: - struct: EnumItem - Enum.TouchCameraMovementMode.Follow: - struct: EnumItem - Enum.TouchCameraMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TouchCameraMovementMode.Orbital: - struct: EnumItem - Enum.TouchMovementMode.ClickToMove: - struct: EnumItem - Enum.TouchMovementMode.DPad: - struct: EnumItem - Enum.TouchMovementMode.Default: - struct: EnumItem - Enum.TouchMovementMode.DynamicThumbstick: - struct: EnumItem - Enum.TouchMovementMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TouchMovementMode.Thumbpad: - struct: EnumItem - Enum.TouchMovementMode.Thumbstick: - struct: EnumItem - Enum.TrackerError.AudioError: - struct: EnumItem - Enum.TrackerError.AudioNoPermission: - struct: EnumItem - Enum.TrackerError.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerError.InitFailed: - struct: EnumItem - Enum.TrackerError.NoAudio: - struct: EnumItem - Enum.TrackerError.NoService: - struct: EnumItem - Enum.TrackerError.NoVideo: - struct: EnumItem - Enum.TrackerError.Ok: - struct: EnumItem - Enum.TrackerError.VideoError: - struct: EnumItem - Enum.TrackerError.VideoNoPermission: - struct: EnumItem - Enum.TrackerError.VideoUnsupported: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.Auto: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ExtrapolateFacsAndPose: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ExtrapolateFacsOnly: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.ForceDisabled: - struct: EnumItem - Enum.TrackerExtrapolationFlagMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerLodFlagMode.Auto: - struct: EnumItem - Enum.TrackerLodFlagMode.ForceFalse: - struct: EnumItem - Enum.TrackerLodFlagMode.ForceTrue: - struct: EnumItem - Enum.TrackerLodFlagMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerLodValueMode.Auto: - struct: EnumItem - Enum.TrackerLodValueMode.Force0: - struct: EnumItem - Enum.TrackerLodValueMode.Force1: - struct: EnumItem - Enum.TrackerLodValueMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerMode.Audio: - struct: EnumItem - Enum.TrackerMode.AudioVideo: - struct: EnumItem - Enum.TrackerMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerMode.None: - struct: EnumItem - Enum.TrackerMode.Video: - struct: EnumItem - Enum.TrackerPromptEvent.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TrackerPromptEvent.LODCameraRecommendDisable: - struct: EnumItem - Enum.TriStateBoolean.False: - struct: EnumItem - Enum.TriStateBoolean.GetEnumItems: - args: [] - method: true - must_use: true - Enum.TriStateBoolean.True: - struct: EnumItem - Enum.TriStateBoolean.Unknown: - struct: EnumItem - Enum.TweenStatus.Canceled: - struct: EnumItem - Enum.TweenStatus.Completed: - struct: EnumItem - Enum.TweenStatus.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UITheme.Dark: - struct: EnumItem - Enum.UITheme.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UITheme.Light: - struct: EnumItem - Enum.UiMessageType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UiMessageType.UiMessageError: - struct: EnumItem - Enum.UiMessageType.UiMessageInfo: - struct: EnumItem - Enum.UsageContext.Default: - struct: EnumItem - Enum.UsageContext.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UsageContext.Preview: - struct: EnumItem - Enum.UserCFrame.Floor: - struct: EnumItem - Enum.UserCFrame.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserCFrame.Head: - struct: EnumItem - Enum.UserCFrame.LeftHand: - struct: EnumItem - Enum.UserCFrame.RightHand: - struct: EnumItem - Enum.UserInputState.Begin: - struct: EnumItem - Enum.UserInputState.Cancel: - struct: EnumItem - Enum.UserInputState.Change: - struct: EnumItem - Enum.UserInputState.End: - struct: EnumItem - Enum.UserInputState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserInputState.None: - struct: EnumItem - Enum.UserInputType.Accelerometer: - struct: EnumItem - Enum.UserInputType.Focus: - struct: EnumItem - Enum.UserInputType.Gamepad1: - struct: EnumItem - Enum.UserInputType.Gamepad2: - struct: EnumItem - Enum.UserInputType.Gamepad3: - struct: EnumItem - Enum.UserInputType.Gamepad4: - struct: EnumItem - Enum.UserInputType.Gamepad5: - struct: EnumItem - Enum.UserInputType.Gamepad6: - struct: EnumItem - Enum.UserInputType.Gamepad7: - struct: EnumItem - Enum.UserInputType.Gamepad8: - struct: EnumItem - Enum.UserInputType.GetEnumItems: - args: [] - method: true - must_use: true - Enum.UserInputType.Gyro: - struct: EnumItem - Enum.UserInputType.InputMethod: - struct: EnumItem - Enum.UserInputType.Keyboard: - struct: EnumItem - Enum.UserInputType.MouseButton1: - struct: EnumItem - Enum.UserInputType.MouseButton2: - struct: EnumItem - Enum.UserInputType.MouseButton3: - struct: EnumItem - Enum.UserInputType.MouseMovement: - struct: EnumItem - Enum.UserInputType.MouseWheel: - struct: EnumItem - Enum.UserInputType.None: - struct: EnumItem - Enum.UserInputType.TextInput: - struct: EnumItem - Enum.UserInputType.Touch: - struct: EnumItem - Enum.VRPlayMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRPlayMode.Seated: - struct: EnumItem - Enum.VRPlayMode.Standing: - struct: EnumItem - Enum.VRSafetyBubbleMode.Anyone: - struct: EnumItem - Enum.VRSafetyBubbleMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRSafetyBubbleMode.NoOne: - struct: EnumItem - Enum.VRSafetyBubbleMode.OnlyFriends: - struct: EnumItem - Enum.VRScaling.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRScaling.Off: - struct: EnumItem - Enum.VRScaling.World: - struct: EnumItem - Enum.VRSessionState.Focused: - struct: EnumItem - Enum.VRSessionState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRSessionState.Idle: - struct: EnumItem - Enum.VRSessionState.Undefined: - struct: EnumItem - Enum.VRSessionState.Visible: - struct: EnumItem - Enum.VRTouchpad.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRTouchpad.Left: - struct: EnumItem - Enum.VRTouchpad.Right: - struct: EnumItem - Enum.VRTouchpadMode.ABXY: - struct: EnumItem - Enum.VRTouchpadMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VRTouchpadMode.Touch: - struct: EnumItem - Enum.VRTouchpadMode.VirtualThumbstick: - struct: EnumItem - Enum.VelocityConstraintMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VelocityConstraintMode.Line: - struct: EnumItem - Enum.VelocityConstraintMode.Plane: - struct: EnumItem - Enum.VelocityConstraintMode.Vector: - struct: EnumItem - Enum.VerticalAlignment.Bottom: - struct: EnumItem - Enum.VerticalAlignment.Center: - struct: EnumItem - Enum.VerticalAlignment.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VerticalAlignment.Top: - struct: EnumItem - Enum.VerticalScrollBarPosition.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VerticalScrollBarPosition.Left: - struct: EnumItem - Enum.VerticalScrollBarPosition.Right: - struct: EnumItem - Enum.VibrationMotor.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VibrationMotor.Large: - struct: EnumItem - Enum.VibrationMotor.LeftHand: - struct: EnumItem - Enum.VibrationMotor.LeftTrigger: - struct: EnumItem - Enum.VibrationMotor.RightHand: - struct: EnumItem - Enum.VibrationMotor.RightTrigger: - struct: EnumItem - Enum.VibrationMotor.Small: - struct: EnumItem - Enum.VirtualCursorMode.Default: - struct: EnumItem - Enum.VirtualCursorMode.Disabled: - struct: EnumItem - Enum.VirtualCursorMode.Enabled: - struct: EnumItem - Enum.VirtualCursorMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VirtualInputMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VirtualInputMode.None: - struct: EnumItem - Enum.VirtualInputMode.Playing: - struct: EnumItem - Enum.VirtualInputMode.Recording: - struct: EnumItem - Enum.VoiceChatState.Ended: - struct: EnumItem - Enum.VoiceChatState.Failed: - struct: EnumItem - Enum.VoiceChatState.GetEnumItems: - args: [] - method: true - must_use: true - Enum.VoiceChatState.Idle: - struct: EnumItem - Enum.VoiceChatState.Joined: - struct: EnumItem - Enum.VoiceChatState.Joining: - struct: EnumItem - Enum.VoiceChatState.JoiningRetry: - struct: EnumItem - Enum.VoiceChatState.Leaving: - struct: EnumItem - Enum.VolumetricAudio.Automatic: - struct: EnumItem - Enum.VolumetricAudio.Disabled: - struct: EnumItem - Enum.VolumetricAudio.Enabled: - struct: EnumItem - Enum.VolumetricAudio.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterDirection.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterDirection.NegX: - struct: EnumItem - Enum.WaterDirection.NegY: - struct: EnumItem - Enum.WaterDirection.NegZ: - struct: EnumItem - Enum.WaterDirection.X: - struct: EnumItem - Enum.WaterDirection.Y: - struct: EnumItem - Enum.WaterDirection.Z: - struct: EnumItem - Enum.WaterForce.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WaterForce.Max: - struct: EnumItem - Enum.WaterForce.Medium: - struct: EnumItem - Enum.WaterForce.None: - struct: EnumItem - Enum.WaterForce.Small: - struct: EnumItem - Enum.WaterForce.Strong: - struct: EnumItem - Enum.WrapLayerAutoSkin.Disabled: - struct: EnumItem - Enum.WrapLayerAutoSkin.EnabledOverride: - struct: EnumItem - Enum.WrapLayerAutoSkin.EnabledPreserve: - struct: EnumItem - Enum.WrapLayerAutoSkin.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapLayerDebugMode.BoundCage: - struct: EnumItem - Enum.WrapLayerDebugMode.BoundCageAndLinks: - struct: EnumItem - Enum.WrapLayerDebugMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapLayerDebugMode.HSRInner: - struct: EnumItem - Enum.WrapLayerDebugMode.HSRInnerReverse: - struct: EnumItem - Enum.WrapLayerDebugMode.HSROuter: - struct: EnumItem - Enum.WrapLayerDebugMode.HSROuterDetail: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCage: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCageFittedToBase: - struct: EnumItem - Enum.WrapLayerDebugMode.LayerCageFittedToPrev: - struct: EnumItem - Enum.WrapLayerDebugMode.None: - struct: EnumItem - Enum.WrapLayerDebugMode.OuterCage: - struct: EnumItem - Enum.WrapLayerDebugMode.Rbf: - struct: EnumItem - Enum.WrapLayerDebugMode.Reference: - struct: EnumItem - Enum.WrapLayerDebugMode.ReferenceMeshAfterMorph: - struct: EnumItem - Enum.WrapTargetDebugMode.GetEnumItems: - args: [] - method: true - must_use: true - Enum.WrapTargetDebugMode.None: - struct: EnumItem - Enum.WrapTargetDebugMode.OuterCageDetail: - struct: EnumItem - Enum.WrapTargetDebugMode.Rbf: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageCompressed: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageInterface: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetCageOriginal: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerCageCompressed: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerCageOriginal: - struct: EnumItem - Enum.WrapTargetDebugMode.TargetLayerInterface: - struct: EnumItem - Enum.ZIndexBehavior.GetEnumItems: - args: [] - method: true - must_use: true - Enum.ZIndexBehavior.Global: - struct: EnumItem - Enum.ZIndexBehavior.Sibling: - struct: EnumItem - Faces.new: - args: - - type: '...' - must_use: true - FloatCurveKey.new: - args: - - type: number - - type: number - - type: - display: KeyInterpolationMode - must_use: true - Font.fromEnum: - args: - - type: - display: Font - must_use: true - Font.fromId: - args: - - type: number - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Font.fromName: - args: - - type: string - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Font.new: - args: - - type: string - - required: false - type: - display: FontWeight - - required: false - type: - display: FontStyle - must_use: true - Instance.new: - args: - - type: - - Accoutrement - - Accessory - - Hat - - AdPortal - - AdvancedDragger - - AnalyticsService - - Animation - - CurveAnimation - - KeyframeSequence - - AnimationController - - AnimationRigData - - Animator - - Atmosphere - - Attachment - - Bone - - AudioSearchParams - - Backpack - - WrapLayer - - WrapTarget - - Beam - - BindableEvent - - BindableFunction - - BodyAngularVelocity - - BodyForce - - BodyGyro - - BodyPosition - - BodyThrust - - BodyVelocity - - RocketPropulsion - - Breakpoint - - Camera - - BodyColors - - CharacterMesh - - Pants - - Shirt - - ShirtGraphic - - Skin - - ClickDetector - - Clouds - - Configuration - - AlignOrientation - - AlignPosition - - AngularVelocity - - AnimationConstraint - - BallSocketConstraint - - HingeConstraint - - LineForce - - LinearVelocity - - PlaneConstraint - - Plane - - RigidConstraint - - RodConstraint - - RopeConstraint - - CylindricalConstraint - - PrismaticConstraint - - SpringConstraint - - Torque - - TorsionSpringConstraint - - UniversalConstraint - - VectorForce - - HumanoidController - - SkateboardController - - VehicleController - - AirController - - ClimbController - - GroundController - - SwimController - - ControllerManager - - CustomEvent - - CustomEventReceiver - - BlockMesh - - CylinderMesh - - FileMesh - - SpecialMesh - - DataStoreIncrementOptions - - DataStoreOptions - - DataStoreSetOptions - - DebuggerWatch - - Dialog - - DialogChoice - - Dragger - - EulerRotationCurve - - ExperienceInviteOptions - - Explosion - - FaceControls - - Decal - - Texture - - Hole - - MotorFeature - - Fire - - FloatCurve - - FlyweightService - - CSGDictionaryService - - NonReplicatedCSGDictionaryService - - Folder - - ForceField - - FunctionalTest - - GetTextBoundsParams - - CanvasGroup - - Frame - - ImageButton - - TextButton - - ImageLabel - - TextLabel - - ScrollingFrame - - TextBox - - VideoFrame - - ViewportFrame - - BillboardGui - - ScreenGui - - GuiMain - - AdGui - - SurfaceGui - - FloorWire - - SelectionBox - - BoxHandleAdornment - - ConeHandleAdornment - - CylinderHandleAdornment - - ImageHandleAdornment - - LineHandleAdornment - - SphereHandleAdornment - - WireframeHandleAdornment - - ParabolaAdornment - - SelectionSphere - - ArcHandles - - Handles - - SurfaceSelection - - SelectionPartLasso - - SelectionPointLasso - - HeightmapImporterService - - HiddenSurfaceRemovalAsset - - Highlight - - Humanoid - - HumanoidDescription - - IKControl - - RotateP - - RotateV - - Glue - - ManualGlue - - ManualWeld - - Motor - - Motor6D - - Rotate - - Snap - - VelocityMotor - - Weld - - Keyframe - - KeyframeMarker - - PointLight - - SpotLight - - SurfaceLight - - LocalizationTable - - Script - - LocalScript - - ModuleScript - - MarkerCurve - - MaterialVariant - - MemoryStoreService - - Message - - Hint - - NoCollisionConstraint - - CornerWedgePart - - Part - - FlagStand - - Seat - - SkateboardPlatform - - SpawnLocation - - WedgePart - - MeshPart - - PartOperation - - IntersectOperation - - NegateOperation - - UnionOperation - - TrussPart - - VehicleSeat - - Model - - Actor - - HopperBin - - Tool - - Flag - - WorldModel - - PartOperationAsset - - ParticleEmitter - - PathfindingLink - - PathfindingModifier - - Player - - PluginAction - - NumberPose - - Pose - - BloomEffect - - BlurEffect - - ColorCorrectionEffect - - DepthOfFieldEffect - - SunRaysEffect - - ProximityPrompt - - ProximityPromptService - - ReflectionMetadata - - ReflectionMetadataCallbacks - - ReflectionMetadataClasses - - ReflectionMetadataEnums - - ReflectionMetadataEvents - - ReflectionMetadataFunctions - - ReflectionMetadataClass - - ReflectionMetadataEnum - - ReflectionMetadataEnumItem - - ReflectionMetadataMember - - ReflectionMetadataProperties - - ReflectionMetadataYieldFunctions - - RemoteEvent - - RemoteFunction - - RenderingTest - - RotationCurve - - BuoyancySensor - - ControllerPartSensor - - Sky - - Smoke - - Sound - - ChorusSoundEffect - - CompressorSoundEffect - - DistortionSoundEffect - - EchoSoundEffect - - EqualizerSoundEffect - - FlangeSoundEffect - - PitchShiftSoundEffect - - ReverbSoundEffect - - TremoloSoundEffect - - SoundGroup - - Sparkles - - StandalonePluginScripts - - StarterGear - - SurfaceAppearance - - Team - - TeleportOptions - - TerrainDetail - - TerrainRegion - - TestService - - TextChannel - - TextChatCommand - - TextChatMessageProperties - - TrackerStreamAnimation - - Trail - - Tween - - UIAspectRatioConstraint - - UISizeConstraint - - UITextSizeConstraint - - UICorner - - UIGradient - - UIGridLayout - - UIListLayout - - UIPageLayout - - UITableLayout - - UIPadding - - UIScale - - UIStroke - - BinaryStringValue - - BoolValue - - BrickColorValue - - CFrameValue - - Color3Value - - DoubleConstrainedValue - - IntConstrainedValue - - IntValue - - NumberValue - - ObjectValue - - RayValue - - StringValue - - Vector3Value - - Vector3Curve - - VirtualInputManager - - WeldConstraint - must_use: true - NumberRange.new: - args: - - type: number - - required: false - type: number - must_use: true - NumberSequence.new: - args: - - type: any - - required: false - type: number - must_use: true - NumberSequenceKeypoint.new: - args: - - type: number - - type: number - - required: false - type: number - must_use: true - OverlapParams.new: - args: [] - must_use: true - PathWaypoint.new: - args: - - required: false - type: - display: Vector3 - - required: false - type: - display: PathWaypointAction - must_use: true - PhysicalProperties.new: - args: - - type: any - - required: false - type: number - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Random.new: - args: - - required: false - type: number - must_use: true - Ray.new: - args: - - type: - display: Vector3 - - type: - display: Vector3 - must_use: true - RaycastParams.new: - args: [] - must_use: true - Rect.new: - args: - - type: any - - type: any - - required: false - type: number - - required: false - type: number - must_use: true - Region3.new: - args: - - type: - display: Vector3 - - type: - display: Vector3 - must_use: true - Region3int16.new: - args: - - required: false - type: - display: Vector3 - - required: false - type: - display: Vector3 - must_use: true - RotationCurveKey.new: - args: - - type: number - - type: - display: CFrame - - type: - display: KeyInterpolationMode - must_use: true - TweenInfo.new: - args: - - required: false - type: number - - required: false - type: - display: EasingStyle - - required: false - type: - display: EasingDirection - - required: false - type: number - - required: false - type: bool - - required: false - type: number - must_use: true - UDim.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - UDim2.fromOffset: - args: - - required: use UDim2.new() if you want an empty UDim2 - type: number - - required: false - type: number - must_use: true - UDim2.fromScale: - args: - - required: use UDim2.new() if you want an empty UDim2 - type: number - - required: false - type: number - must_use: true - UDim2.new: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: number - - required: false - type: number - must_use: true - UserSettings: - args: [] - must_use: true - Vector2.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - Vector2.one: - property: read-only - Vector2.xAxis: - property: read-only - Vector2.yAxis: - property: read-only - Vector2.zero: - property: read-only - Vector2int16.new: - args: - - required: false - type: number - - required: false - type: number - must_use: true - Vector3.FromAxis: - args: - - type: - display: Axis - must_use: true - Vector3.FromNormalId: - args: - - type: - display: NormalId - must_use: true - Vector3.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - must_use: true - Vector3.one: - property: read-only - Vector3.xAxis: - property: read-only - Vector3.yAxis: - property: read-only - Vector3.zAxis: - property: read-only - Vector3.zero: - property: read-only - Vector3int16.new: - args: - - required: false - type: number - - required: false - type: number - - required: false - type: number - _G: - property: new-fields - _VERSION: - property: read-only - arg: - property: new-fields - assert: - args: - - type: any - - required: A failed assertion without a message is unhelpful to users. - type: string - bit32.arshift: - args: - - type: number - - type: number - must_use: true - bit32.band: - args: - - type: '...' - must_use: true - bit32.bnot: - args: - - type: number - must_use: true - bit32.bor: - args: - - type: '...' - must_use: true - bit32.btest: - args: - - type: '...' - must_use: true - bit32.bxor: - args: - - type: '...' - must_use: true - bit32.countlz: - args: - - type: number - must_use: true - bit32.countrz: - args: - - type: number - must_use: true - bit32.extract: - args: - - type: number - - type: number - - required: false - type: number - must_use: true - bit32.lrotate: - args: - - type: number - - type: number - must_use: true - bit32.lshift: - args: - - type: number - - type: number - must_use: true - bit32.replace: - args: - - type: number - - type: number - - type: number - - required: false - type: number - must_use: true - bit32.rrotate: - args: - - type: number - - type: number - must_use: true - bit32.rshift: - args: - - type: number - - type: number - must_use: true - collectgarbage: - args: - - type: - - count - must_use: true - coroutine.close: - args: - - type: - display: thread - coroutine.create: - args: - - type: function - must_use: true - coroutine.isyieldable: - args: [] - coroutine.resume: - args: - - type: - display: coroutine - - required: false - type: '...' - coroutine.running: - args: [] - must_use: true - coroutine.status: - args: - - type: - display: coroutine - must_use: true - coroutine.wrap: - args: - - type: function - coroutine.yield: - args: - - required: false - type: '...' - debug.info: - args: - - type: any - - type: any - - required: false - type: string - must_use: true - debug.profilebegin: - args: - - type: string - debug.profileend: - args: [] - debug.resetmemorycategory: - args: [] - debug.setmemorycategory: - args: - - type: string - debug.traceback: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - must_use: true - delay: - args: - - type: number - - type: function - elapsedTime: - args: [] - error: - args: - - required: Erroring without an explanation is unhelpful to users. - type: any - - required: false - type: number - game: - struct: DataModel - gcinfo: - args: [] - must_use: true - getfenv: - args: - - required: false - type: any - must_use: true - getmetatable: - args: - - type: table - must_use: true - io.close: - args: - - required: false - type: - display: file - io.flush: - args: [] - io.input: - args: - - required: false - type: - display: file - io.lines: - args: - - type: string - io.open: - args: - - type: string - - required: false - type: - - r - - rb - - w - - wb - - a - - ab - - r+ - - rb+ - - w+ - - wb+ - - a+ - - ab+ - io.output: - args: - - required: false - type: - display: file - io.popen: - args: - - type: string - - required: false - type: - - r - - rb - - w - - wb - - a - - ab - - r+ - - rb+ - - w+ - - wb+ - - a+ - - ab+ - io.read: - args: - - type: '...' - io.stderr: - property: read-only - io.stdin: - property: read-only - io.stdout: - property: read-only - io.tmpfile: - args: [] - io.type: - args: - - type: - display: potentially file-like object - io.write: - args: - - type: '...' - ipairs: - args: - - type: table - must_use: true - loadstring: - args: - - type: string - - required: false - type: string - math.abs: - args: - - type: number - must_use: true - math.acos: - args: - - type: number - must_use: true - math.asin: - args: - - type: number - must_use: true - math.atan: - args: - - type: number - must_use: true - math.atan2: - args: - - type: number - - type: number - must_use: true - math.ceil: - args: - - type: number - must_use: true - math.clamp: - args: - - type: number - - type: number - - type: number - must_use: true - math.cos: - args: - - type: number - must_use: true - math.cosh: - args: - - type: number - must_use: true - math.deg: - args: - - type: number - must_use: true - math.exp: - args: - - type: number - must_use: true - math.floor: - args: - - type: number - must_use: true - math.fmod: - args: - - type: number - - type: number - must_use: true - math.frexp: - args: - - type: number - must_use: true - math.huge: - property: read-only - math.ldexp: - args: - - type: number - - type: number - must_use: true - math.log: - args: - - type: number - - required: false - type: number - must_use: true - math.log10: - args: - - type: number - must_use: true - math.max: - args: - - type: number - - required: use of max only makes sense with more than 1 parameter - type: '...' - must_use: true - math.min: - args: - - type: number - - required: use of min only makes sense with more than 1 parameter - type: '...' - must_use: true - math.modf: - args: - - type: number - must_use: true - math.noise: - args: - - type: number - - required: false - type: number - - required: false - type: number - must_use: true - math.pi: - property: read-only - math.pow: - args: - - type: number - - type: number - must_use: true - math.rad: - args: - - type: number - must_use: true - math.random: - args: - - required: false - type: number - - required: false - type: number - must_use: true - math.randomseed: - args: - - type: number - math.round: - args: - - type: number - must_use: true - math.sign: - args: - - type: number - must_use: true - math.sin: - args: - - type: number - must_use: true - math.sinh: - args: - - type: number - must_use: true - math.sqrt: - args: - - type: number - must_use: true - math.tan: - args: - - type: number - must_use: true - math.tanh: - args: - - type: number - must_use: true - newproxy: - args: - - required: false - type: bool - must_use: true - next: - args: - - type: table - - required: false - type: number - os.clock: - args: [] - must_use: true - os.date: - args: - - required: false - type: string - - required: false - type: number - must_use: true - os.difftime: - args: - - type: number - - type: number - must_use: true - os.time: - args: - - required: false - type: table - must_use: true - package.cpath: - property: full-write - package.loaded: - property: new-fields - package.loaders: - property: new-fields - package.loadlib: - args: - - type: string - - type: string - package.path: - property: full-write - package.preload: - property: new-fields - package.seeall: - args: - - type: table - pairs: - args: - - type: table - must_use: true - pcall: - args: - - type: function - - required: false - type: '...' - plugin: - struct: Plugin - print: - args: - - required: false - type: '...' - rawequal: - args: - - type: any - - type: any - must_use: true - rawget: - args: - - type: any - - type: any - must_use: true - rawlen: - args: - - type: table - must_use: true - rawset: - args: - - type: any - - type: any - - type: any - require: - args: - - type: number - script: - struct: Script - select: - args: - - type: any - - type: '...' - must_use: true - setfenv: - args: - - type: any - - type: table - setmetatable: - args: - - type: table - - required: false - type: table - settings: - args: [] - shared: - property: new-fields - spawn: - args: - - type: function - string.byte: - args: - - type: string - - required: false - type: number - - required: false - type: number - string.char: - args: - - required: string.char should be used with an argument despite it not throwing - type: number - - required: false - type: '...' - must_use: true - string.find: - args: - - type: string - - type: string - - required: false - type: number - - required: false - type: bool - must_use: true - string.format: - args: - - type: string - - required: string.format should only be used for strings that need formatting - type: '...' - must_use: true - string.gmatch: - args: - - type: string - - type: string - must_use: true - string.gsub: - args: - - type: string - - type: string - - type: any - - required: false - type: number - must_use: true - string.len: - args: - - type: string - must_use: true - string.lower: - args: - - type: string - must_use: true - string.match: - args: - - type: string - - type: string - - required: false - type: number - must_use: true - string.pack: - args: - - type: string - - type: '...' - must_use: true - string.packsize: - args: - - type: string - must_use: true - string.rep: - args: - - type: string - - type: number - must_use: true - string.reverse: - args: - - type: string - must_use: true - string.split: - args: - - type: string - - required: false - type: string - must_use: true - string.sub: - args: - - type: string - - type: number - - required: false - type: number - must_use: true - string.unpack: - args: - - type: string - - type: string - - required: false - type: number - must_use: true - string.upper: - args: - - type: string - must_use: true - table.clear: - args: - - type: table - table.clone: - args: - - type: table - must_use: true - table.concat: - args: - - type: table - - required: false - type: string - - required: false - type: number - - required: false - type: number - must_use: true - table.create: - args: - - type: number - - required: false - type: any - must_use: true - table.find: - args: - - type: table - - type: any - - required: false - type: number - must_use: true - table.foreach: - args: - - type: table - - type: function - deprecated: - message: use a for loop instead. - replace: [] - table.foreachi: - args: - - type: table - - type: function - deprecated: - message: use a for loop instead. - replace: [] - table.freeze: - args: - - type: table - table.getn: - args: - - type: table - - type: number - must_use: true - deprecated: - message: '`table.getn` has been superceded by #.' - replace: - - '#%1' - table.insert: - args: - - type: table - observes: write - - type: any - - required: false - type: any - table.isfrozen: - args: - - type: table - must_use: true - table.maxn: - args: - - type: table - must_use: true - table.move: - args: - - type: table - - type: number - - type: number - - type: number - - required: false - type: table - table.pack: - args: - - type: '...' - must_use: true - table.remove: - args: - - type: table - - required: false - type: number - table.sort: - args: - - type: table - - required: false - type: function - table.unpack: - args: - - type: table - - required: false - type: number - - required: false - type: number - must_use: true - task.cancel: - args: - - type: - display: thread - task.defer: - args: - - type: function - - required: false - type: '...' - task.delay: - args: - - required: false - type: number - - type: function - - required: false - type: '...' - task.desynchronize: - args: [] - task.spawn: - args: - - type: function - - required: false - type: '...' - task.synchronize: - args: [] - task.wait: - args: - - required: false - type: number - tick: - args: [] - time: - args: [] - tonumber: - args: - - type: any - - required: false - type: number - must_use: true - tostring: - args: - - type: any - must_use: true - type: - args: - - type: any - typeof: - args: - - type: any - unpack: - args: - - type: table - - required: false - type: number - - required: false - type: number - must_use: true - utf8.char: - args: - - required: utf8.char should be used with an argument despite it not throwing - type: number - - required: false - type: '...' - must_use: true - utf8.charpattern: - property: read-only - utf8.codepoint: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.codes: - args: - - type: string - must_use: true - utf8.graphemes: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.len: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - utf8.nfcnormalize: - args: - - type: string - must_use: true - utf8.nfdnormalize: - args: - - type: string - must_use: true - utf8.offset: - args: - - type: string - - required: false - type: number - - required: false - type: number - must_use: true - wait: - args: - - required: false - type: number - warn: - args: - - type: any - - required: false - type: '...' - workspace: - struct: Workspace - xpcall: - args: - - type: function - - required: false - type: '...' -structs: - BasePart: - '*': - struct: Instance - AncestryChanged: - struct: Event - Anchored: - property: override-fields - ApplyAngularImpulse: - args: - - required: false - type: any - method: true - ApplyImpulse: - args: - - required: false - type: any - method: true - ApplyImpulseAtPosition: - args: - - required: false - type: any - - required: false - type: any - method: true - Archivable: - property: override-fields - AssemblyAngularVelocity: - any: true - AssemblyCenterOfMass: - any: true - AssemblyLinearVelocity: - any: true - AssemblyMass: - property: read-only - AssemblyRootPart: - struct: BasePart - AttributeChanged: - struct: Event - BackParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackSurface: - property: override-fields - BackSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomSurface: - property: override-fields - BottomSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BrickColor: - property: override-fields - CFrame: - any: true - CanCollide: - property: override-fields - CanCollideWith: - args: - - required: false - type: any - method: true - CanQuery: - property: override-fields - CanSetNetworkOwnership: - args: [] - method: true - CanTouch: - property: override-fields - CastShadow: - property: override-fields - CenterOfMass: - any: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionGroup: - property: override-fields - CollisionGroupId: - property: override-fields - Color: - property: override-fields - CurrentPhysicalProperties: - property: read-only - CustomPhysicalProperties: - property: override-fields - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Elasticity: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - ExtentsCFrame: - any: true - ExtentsSize: - any: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - Friction: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontSurface: - property: override-fields - FrontSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetConnectedParts: - args: - - required: false - type: any - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetJoints: - args: [] - method: true - GetMass: - args: [] - method: true - GetNetworkOwner: - args: [] - method: true - GetNetworkOwnershipAuto: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetRootPart: - args: [] - method: true - GetTouchingParts: - args: [] - method: true - GetVelocityAtPosition: - args: - - required: false - type: any - method: true - IntersectAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGrounded: - args: [] - method: true - LeftParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftSurface: - property: override-fields - LeftSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LocalSimulationTouched: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - LocalTransparencyModifier: - property: override-fields - Locked: - property: override-fields - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Mass: - property: read-only - Massless: - property: override-fields - Material: - property: override-fields - MaterialVariant: - property: override-fields - Name: - property: override-fields - Orientation: - any: true - Origin: - any: true - OutfitChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - Pivot Offset: - any: true - PivotOffset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - Position: - any: true - ReceiveAge: - property: read-only - Reflectance: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Resize: - args: - - required: false - type: any - - required: false - type: any - method: true - ResizeIncrement: - property: read-only - ResizeableFaces: - property: read-only - RightParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightSurface: - property: override-fields - RightSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RootPriority: - property: override-fields - RotVelocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - Rotation: - any: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetNetworkOwner: - args: - - required: false - type: any - method: true - SetNetworkOwnershipAuto: - args: [] - method: true - Size: - any: true - SpecificGravity: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - StoppedTouching: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - SubtractAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - TopParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopSurface: - property: override-fields - TopSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TouchEnded: - struct: Event - Touched: - struct: Event - Transparency: - property: override-fields - UnionAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Velocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - brickColor: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getMass: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - resize: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - subtractAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - unionAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Camera: - '*': - struct: Instance - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - CFrame: - any: true - CameraSubject: - struct: Instance - CameraType: - property: override-fields - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CoordinateFrame: - any: true - deprecated: - message: this property is deprecated. - replace: [] - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - DiagonalFieldOfView: - property: override-fields - FieldOfView: - property: override-fields - FieldOfViewMode: - property: override-fields - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FirstPersonTransition: - struct: Event - Focus: - any: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetLargestCutoffDistance: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetPanSpeed: - args: [] - method: true - GetPartsObscuringTarget: - args: - - required: false - type: any - - required: false - type: any - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - GetRoll: - args: [] - method: true - GetTiltSpeed: - args: [] - method: true - HeadLocked: - property: override-fields - HeadScale: - property: override-fields - Interpolate: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - InterpolationFinished: - struct: Event - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - MaxAxisFieldOfView: - property: override-fields - Name: - property: override-fields - NearPlaneZ: - property: read-only - PanUnits: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ScreenPointToRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetCameraPanMode: - args: - - required: false - type: any - method: true - SetImageServerView: - args: - - required: false - type: any - method: true - SetRoll: - args: - - required: false - type: any - method: true - TiltUnits: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - ViewportPointToRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - ViewportSize: - any: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WorldToScreenPoint: - args: - - required: false - type: any - method: true - WorldToViewportPoint: - args: - - required: false - type: any - method: true - Zoom: - args: - - required: false - type: any - method: true - ZoomToExtents: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - focus: - any: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - DataModel: - '*': - struct: Instance - AllowedGearTypeChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - BindToClose: - args: - - required: false - type: any - method: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - Close: - struct: Event - CloseLate: - struct: Event - CreatorId: - property: read-only - CreatorType: - property: read-only - DefineFastFlag: - args: - - required: false - type: any - - required: false - type: any - method: true - DefineFastInt: - args: - - required: false - type: any - - required: false - type: any - method: true - DefineFastString: - args: - - required: false - type: any - - required: false - type: any - method: true - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FindService: - args: - - required: false - type: any - method: true - GameId: - property: read-only - GearGenreSetting: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - Genre: - property: read-only - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetEngineFeature: - args: - - required: false - type: any - method: true - GetFastFlag: - args: - - required: false - type: any - method: true - GetFastInt: - args: - - required: false - type: any - method: true - GetFastString: - args: - - required: false - type: any - method: true - GetFullName: - args: [] - method: true - GetJobsInfo: - args: [] - method: true - GetMessage: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetObjects: - args: - - required: false - type: any - method: true - GetObjectsAllOrNone: - args: - - required: false - type: any - - required: false - type: any - method: true - GetObjectsAsync: - args: - - required: false - type: any - method: true - GetObjectsList: - args: - - required: false - type: any - method: true - GetPlaySessionId: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRemoteBuildMode: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetService: - args: - - type: - - AdService - - AnalyticsService - - AnimationClipProvider - - AnimationFromVideoCreatorService - - AnimationFromVideoCreatorStudioService - - AppUpdateService - - AssetCounterService - - AssetDeliveryProxy - - AssetImportService - - AssetManagerService - - AssetService - - AvatarEditorService - - AvatarImportService - - BadgeService - - CoreGui - - StarterGui - - BrowserService - - BulkImportService - - CacheableContentProvider - - HSRDataContentProvider - - MeshContentProvider - - SolidModelContentProvider - - CalloutService - - ChangeHistoryService - - Chat - - ClusterPacketCache - - CollectionService - - CommandService - - ConfigureServerService - - ContentProvider - - ContextActionService - - ControllerService - - CookiesService - - CorePackages - - CoreScriptDebuggingManagerHelper - - CoreScriptSyncService - - CrossDMScriptChangeListener - - DataModelPatchService - - DataStoreService - - Debris - - DebuggablePluginWatcher - - DebuggerConnectionManager - - DebuggerManager - - DebuggerUIService - - DeviceIdService - - DraftsService - - DraggerService - - EventIngestService - - ExperienceAuthService - - FaceAnimatorService - - FacialAnimationRecordingService - - FacialAnimationStreamingService - - FacialAnimationStreamingServiceV2 - - FlagStandService - - FlyweightService - - CSGDictionaryService - - NonReplicatedCSGDictionaryService - - FriendService - - GamePassService - - GamepadService - - Geometry - - GoogleAnalyticsConfiguration - - GroupService - - GuiService - - GuidRegistryService - - HapticService - - HeightmapImporterService - - Hopper - - HttpRbxApiService - - HttpService - - ILegacyStudioBridge - - LegacyStudioBridge - - IXPService - - IncrementalPatchBuilder - - InsertService - - JointsService - - KeyboardService - - KeyframeSequenceProvider - - LSPFileSyncService - - LanguageService - - Lighting - - LiveScriptingService - - LocalStorageService - - AppStorageService - - UserStorageService - - LocalizationService - - LodDataService - - LogService - - LoginService - - LuaWebService - - LuauScriptAnalyzerService - - MarketplaceService - - MaterialGenerationService - - MaterialService - - MemStorageService - - MemoryStoreService - - MessageBusService - - MessagingService - - MetaBreakpointManager - - MouseService - - NetworkClient - - NetworkServer - - NetworkSettings - - NotificationService - - Workspace - - PackageService - - PackageUIService - - PatchBundlerFileWatch - - PathfindingService - - PermissionsService - - PhysicsService - - PlayerEmulatorService - - Players - - PluginDebugService - - PluginGuiService - - PluginManagementService - - PluginPolicyService - - PointsService - - PolicyService - - ProcessInstancePhysicsService - - ProximityPromptService - - PublishService - - RbxAnalyticsService - - RemoteCursorService - - RemoteDebuggerServer - - RenderSettings - - ReplicatedFirst - - ReplicatedStorage - - RobloxPluginGuiService - - RobloxReplicatedStorage - - RtMessagingService - - RunService - - RuntimeScriptService - - SafetyService - - ScriptChangeService - - ScriptCloneWatcher - - ScriptCloneWatcherHelper - - ScriptContext - - ScriptEditorService - - ScriptRegistrationService - - ScriptService - - Selection - - SelectionHighlightManager - - ServerScriptService - - ServerStorage - - ServiceVisibilityService - - SessionService - - SharedTableRegistry - - ShorelineUpgraderService - - SmoothVoxelsUpgraderService - - SnippetService - - SocialService - - SoundService - - SpawnerService - - StarterPack - - StarterPlayer - - Stats - - Studio - - StudioAssetService - - StudioData - - StudioDeviceEmulatorService - - StudioPublishService - - StudioScriptDebugEventListener - - StudioSdkService - - StudioService - - TaskScheduler - - TeamCreateData - - TeamCreatePublishService - - TeamCreateService - - Teams - - TeleportService - - TemporaryCageMeshProvider - - TemporaryScriptService - - TestService - - TextBoxService - - TextChatService - - TextService - - ThirdPartyUserService - - TimerService - - ToastNotificationService - - TouchInputService - - TracerService - - TweenService - - UGCValidationService - - UnvalidatedAssetService - - UserInputService - - UserService - - VRService - - VersionControlService - - VideoCaptureService - - VirtualInputManager - - VirtualUser - - VisibilityCheckDispatcher - - VisibilityService - - Visit - - VoiceChatInternal - - VoiceChatService - method: true - must_use: true - GraphicsQualityChangeRequest: - struct: Event - HttpGetAsync: - args: - - required: false - type: any - - required: false - type: any - method: true - HttpPostAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - InsertObjectsAndJoinIfLegacyAsync: - args: - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsContentLoaded: - args: [] - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGearTypeAllowed: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IsLoaded: - args: [] - method: true - IsUniverseMetadataLoaded: - args: [] - method: true - ItemChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - JobId: - property: read-only - Load: - args: - - required: false - type: any - method: true - Loaded: - struct: Event - Name: - property: override-fields - OnClose: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - OpenScreenshotsFolder: - args: [] - method: true - OpenVideosFolder: - args: [] - method: true - Parent: - struct: Instance - PlaceId: - property: read-only - PlaceVersion: - property: read-only - PrivateServerId: - property: read-only - PrivateServerOwnerId: - property: read-only - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ReportInGoogleAnalytics: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SavePlace: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - ScreenshotReady: - struct: Event - ScreenshotSavedToAlbum: - struct: Event - ServiceAdded: - struct: Event - ServiceRemoving: - struct: Event - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastFlagForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastIntForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetFastStringForTesting: - args: - - required: false - type: any - - required: false - type: any - method: true - SetIsLoaded: - args: - - required: false - type: any - - required: false - type: any - method: true - SetPlaceId: - args: - - required: false - type: any - method: true - SetUniverseId: - args: - - required: false - type: any - method: true - Shutdown: - args: [] - method: true - UniverseMetadataLoaded: - struct: Event - VIPServerId: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - VIPServerOwnerId: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - Workspace: - struct: Workspace - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getService: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - lighting: - struct: Instance - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - service: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - workspace: - struct: Workspace - deprecated: - message: this property is deprecated. - replace: [] - EnumItem: - Name: - property: read-only - Value: - property: read-only - Event: - Connect: - args: - - type: function - method: true - Once: - args: - - type: function - method: true - Wait: - args: [] - method: true - connect: - args: - - type: function - method: true - deprecated: - message: lowercase methods have been superceded by uppercase ones - replace: - - Connect(%1) - wait: - args: - - type: function - method: true - deprecated: - message: lowercase methods have been superceded by uppercase ones - replace: - - Wait(%1) - Instance: - '*': - any: true - Plugin: - '*': - struct: Instance - Activate: - args: - - required: false - type: any - method: true - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionEnabled: - property: read-only - CreateDockWidgetPluginGui: - args: - - required: false - type: any - - required: false - type: any - method: true - CreatePluginAction: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CreatePluginMenu: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CreateQWidgetPluginGui: - args: - - required: false - type: any - - required: false - type: any - method: true - CreateToolbar: - args: - - required: false - type: any - method: true - Deactivate: - args: [] - method: true - Deactivation: - struct: Event - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - GetJoinMode: - args: [] - method: true - GetMouse: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetSelectedRibbonTool: - args: [] - method: true - GetSetting: - args: - - required: false - type: any - method: true - GetStudioUserId: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GridSize: - property: read-only - ImportFbxAnimation: - args: - - required: false - type: any - - required: false - type: any - method: true - ImportFbxRig: - args: - - required: false - type: any - method: true - Intersect: - args: - - required: false - type: any - method: true - Invoke: - args: - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsActivated: - args: [] - method: true - IsActivatedWithExclusiveMouse: - args: [] - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - Name: - property: override-fields - Negate: - args: - - required: false - type: any - method: true - OnInvoke: - args: - - required: false - type: any - - required: false - type: any - method: true - OnSetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - OpenScript: - args: - - required: false - type: any - - required: false - type: any - method: true - OpenWikiPage: - args: - - required: false - type: any - method: true - Parent: - struct: Instance - PauseSound: - args: - - required: false - type: any - method: true - PlaySound: - args: - - required: false - type: any - - required: false - type: any - method: true - ProcessAssetInsertionDrag: - property: override-fields - ProcessAssetInsertionDrop: - property: override-fields - PromptForExistingAssetId: - args: - - required: false - type: any - method: true - PromptSaveSelection: - args: - - required: false - type: any - method: true - Ready: - struct: Event - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ResumeSound: - args: - - required: false - type: any - method: true - SaveSelectedToRoblox: - args: [] - method: true - SelectRibbonTool: - args: - - required: false - type: any - - required: false - type: any - method: true - Separate: - args: - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetItem: - args: - - required: false - type: any - - required: false - type: any - method: true - SetReady: - args: [] - method: true - SetSetting: - args: - - required: false - type: any - - required: false - type: any - method: true - StartDecalDrag: - args: - - required: false - type: any - method: true - StartDrag: - args: - - required: false - type: any - method: true - StopAllSounds: - args: [] - method: true - Union: - args: - - required: false - type: any - method: true - Unloading: - struct: Event - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Script: - '*': - struct: Instance - AncestryChanged: - struct: Event - Archivable: - property: override-fields - AttributeChanged: - struct: Event - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CurrentEditor: - struct: Instance - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Disabled: - property: override-fields - Enabled: - property: override-fields - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetHash: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - LinkedSource: - property: override-fields - Name: - property: override-fields - Parent: - struct: Instance - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Terrain: - '*': - struct: Instance - AncestryChanged: - struct: Event - Anchored: - property: override-fields - ApplyAngularImpulse: - args: - - required: false - type: any - method: true - ApplyImpulse: - args: - - required: false - type: any - method: true - ApplyImpulseAtPosition: - args: - - required: false - type: any - - required: false - type: any - method: true - Archivable: - property: override-fields - AssemblyAngularVelocity: - any: true - AssemblyCenterOfMass: - any: true - AssemblyLinearVelocity: - any: true - AssemblyMass: - property: read-only - AssemblyRootPart: - struct: BasePart - AttributeChanged: - struct: Event - AutowedgeCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - AutowedgeCells: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - BackParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BackSurface: - property: override-fields - BackSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BottomSurface: - property: override-fields - BottomSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BrickColor: - property: override-fields - CFrame: - any: true - CanCollide: - property: override-fields - CanCollideWith: - args: - - required: false - type: any - method: true - CanQuery: - property: override-fields - CanSetNetworkOwnership: - args: [] - method: true - CanShorelinesBeUpgraded: - args: [] - method: true - CanSmoothVoxelsBeUpgraded: - args: [] - method: true - CanTouch: - property: override-fields - CastShadow: - property: override-fields - CellCenterToWorld: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CellCornerToWorld: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CenterOfMass: - any: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - Clear: - args: [] - method: true - ClearAllChildren: - args: [] - method: true - Clone: - args: [] - method: true - CollisionGroup: - property: override-fields - CollisionGroupId: - property: override-fields - Color: - property: override-fields - ConvertToSmooth: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - CopyRegion: - args: - - required: false - type: any - method: true - CountCells: - args: [] - method: true - CurrentPhysicalProperties: - property: read-only - CustomPhysicalProperties: - property: override-fields - Decoration: - property: override-fields - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - Elasticity: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - ExtentsCFrame: - any: true - ExtentsSize: - any: true - FillBall: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillBlock: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillCylinder: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FillWedge: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - Friction: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - FrontSurface: - property: override-fields - FrontSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetChildren: - args: [] - method: true - GetConnectedParts: - args: - - required: false - type: any - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetFullName: - args: [] - method: true - GetJoints: - args: [] - method: true - GetMass: - args: [] - method: true - GetMaterialColor: - args: - - required: false - type: any - method: true - GetNetworkOwner: - args: [] - method: true - GetNetworkOwnershipAuto: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRenderCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetRootPart: - args: [] - method: true - GetTerrainWireframe: - args: - - required: false - type: any - - required: false - type: any - method: true - GetTouchingParts: - args: [] - method: true - GetVelocityAtPosition: - args: - - required: false - type: any - method: true - GetWaterCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IntersectAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsGrounded: - args: [] - method: true - IsSmooth: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - LeftParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LeftSurface: - property: override-fields - LeftSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - LocalSimulationTouched: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - LocalTransparencyModifier: - property: override-fields - Locked: - property: override-fields - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Mass: - property: read-only - Massless: - property: override-fields - Material: - property: override-fields - MaterialColors: - property: override-fields - MaterialVariant: - property: override-fields - MaxExtents: - property: read-only - Name: - property: override-fields - Orientation: - any: true - Origin: - any: true - OutfitChanged: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - Parent: - struct: Instance - PasteRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Pivot Offset: - any: true - PivotOffset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - Position: - any: true - ReadVoxels: - args: - - required: false - type: any - - required: false - type: any - method: true - ReceiveAge: - property: read-only - Reflectance: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - ReplaceMaterial: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - ReplaceMaterialInTransform: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Resize: - args: - - required: false - type: any - - required: false - type: any - method: true - ResizeIncrement: - property: read-only - ResizeableFaces: - property: read-only - RightParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RightSurface: - property: override-fields - RightSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - RootPriority: - property: override-fields - RotVelocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - Rotation: - any: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetCells: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetMaterialColor: - args: - - required: false - type: any - - required: false - type: any - method: true - SetMaterialInTransform: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SetNetworkOwner: - args: - - required: false - type: any - method: true - SetNetworkOwnershipAuto: - args: [] - method: true - SetWaterCell: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - Size: - any: true - SmoothRegion: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - SpecificGravity: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - StoppedTouching: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - SubtractAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - TopParamA: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopParamB: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TopSurface: - property: override-fields - TopSurfaceInput: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - TouchEnded: - struct: Event - Touched: - struct: Event - Transparency: - property: override-fields - UnionAsync: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Velocity: - any: true - deprecated: - message: this property is deprecated. - replace: [] - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WaterColor: - property: override-fields - WaterReflectance: - property: override-fields - WaterTransparency: - property: override-fields - WaterWaveSize: - property: override-fields - WaterWaveSpeed: - property: override-fields - WorldToCell: - args: - - required: false - type: any - method: true - WorldToCellPreferEmpty: - args: - - required: false - type: any - method: true - WorldToCellPreferSolid: - args: - - required: false - type: any - method: true - WriteVoxels: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - brickColor: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - getMass: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - resize: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - subtractAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - unionAsync2_INTERNAL: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - Workspace: - '*': - struct: Instance - AddPersistentPlayer: - args: - - required: false - type: any - method: true - AllowThirdPartySales: - property: override-fields - AncestryChanged: - struct: Event - Archivable: - property: override-fields - ArePartsTouchingOthers: - args: - - required: false - type: any - - required: false - type: any - method: true - AttributeChanged: - struct: Event - Blockcast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - BreakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - BulkMoveTo: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CacheCurrentTerrain: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpDistance: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpHeight: - args: - - required: false - type: any - - required: false - type: any - method: true - CalculateJumpPower: - args: - - required: false - type: any - - required: false - type: any - method: true - Changed: - struct: Event - ChildAdded: - struct: Event - ChildRemoved: - struct: Event - ClassName: - property: read-only - ClearAllChildren: - args: [] - method: true - ClearCachedTerrain: - args: - - required: false - type: any - method: true - ClientAnimatorThrottling: - property: override-fields - Clone: - args: [] - method: true - CurrentCamera: - struct: Camera - DescendantAdded: - struct: Event - DescendantRemoving: - struct: Event - Destroy: - args: [] - method: true - Destroying: - struct: Event - DistributedGameTime: - property: override-fields - ExperimentalSolverIsEnabled: - args: [] - method: true - FindFirstAncestor: - args: - - required: false - type: any - method: true - FindFirstAncestorOfClass: - args: - - required: false - type: any - method: true - FindFirstAncestorWhichIsA: - args: - - required: false - type: any - method: true - FindFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstChildOfClass: - args: - - required: false - type: any - method: true - FindFirstChildWhichIsA: - args: - - required: false - type: any - - required: false - type: any - method: true - FindFirstDescendant: - args: - - required: false - type: any - method: true - FindPartOnRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartOnRayWithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartOnRayWithWhitelist: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3WithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - FindPartsInRegion3WithWhiteList: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetActor: - args: [] - method: true - GetAttribute: - args: - - required: false - type: any - method: true - GetAttributeChangedSignal: - args: - - required: false - type: any - method: true - GetAttributes: - args: [] - method: true - GetBoundingBox: - args: [] - method: true - GetChildren: - args: [] - method: true - GetDebugId: - args: - - required: false - type: any - method: true - GetDescendants: - args: [] - method: true - GetExtentsSize: - args: [] - method: true - GetFullName: - args: [] - method: true - GetModelCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetModelSize: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetNumAwakeParts: - args: [] - method: true - GetPartBoundsInBox: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - GetPartBoundsInRadius: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - GetPartsInPart: - args: - - required: false - type: any - - required: false - type: any - method: true - GetPhysicsThrottling: - args: [] - method: true - GetPivot: - args: [] - method: true - GetPrimaryPartCFrame: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - GetPropertyChangedSignal: - args: - - required: false - type: any - method: true - GetRealPhysicsFPS: - args: [] - method: true - GetScale: - args: [] - method: true - GetServerTimeNow: - args: [] - method: true - GlobalWind: - any: true - Gravity: - property: override-fields - HumanoidOnlySetCollisionsOnStateChange: - property: override-fields - IKMoveTo: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - IsA: - args: - - required: false - type: any - method: true - IsAncestorOf: - args: - - required: false - type: any - method: true - IsDescendantOf: - args: - - required: false - type: any - method: true - IsRegion3Empty: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - IsRegion3EmptyWithIgnoreList: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - JoinToOutsiders: - args: - - required: false - type: any - - required: false - type: any - method: true - MakeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - MeshPartHeadsAndAccessories: - property: override-fields - ModelStreamingMode: - property: override-fields - MoveTo: - args: - - required: false - type: any - method: true - Name: - property: override-fields - Origin: - any: true - PGSIsEnabled: - args: [] - method: true - Parent: - struct: Instance - PersistentLoaded: - struct: Event - PhysicsSteppingMethod: - property: override-fields - Pivot Offset: - any: true - PivotTo: - args: - - required: false - type: any - method: true - PrimaryPart: - struct: BasePart - Raycast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - RaycastCachedTerrain: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - RejectCharacterDeletions: - property: override-fields - Remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - RemovePersistentPlayer: - args: - - required: false - type: any - method: true - ReplicateInstanceDestroySetting: - property: override-fields - ResetOrientationToIdentity: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - Retargeting: - property: override-fields - Scale: - property: override-fields - ScaleTo: - args: - - required: false - type: any - method: true - SetAttribute: - args: - - required: false - type: any - - required: false - type: any - method: true - SetIdentityOrientation: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - SetInsertPoint: - args: - - required: false - type: any - - required: false - type: any - method: true - SetMeshPartHeadsAndAccessories: - args: - - required: false - type: any - method: true - SetPhysicsThrottleEnabled: - args: - - required: false - type: any - method: true - SetPrimaryPartCFrame: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - SignalBehavior: - property: override-fields - Spherecast: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - StreamOutBehavior: - property: override-fields - StreamingIntegrityMode: - property: override-fields - StreamingMinRadius: - property: override-fields - StreamingTargetRadius: - property: override-fields - Terrain: - struct: Terrain - TouchesUseCollisionGroups: - property: override-fields - TranslateBy: - args: - - required: false - type: any - method: true - UnjoinFromOutsiders: - args: - - required: false - type: any - method: true - WaitForChild: - args: - - required: false - type: any - - required: false - type: any - method: true - WorldPivot: - any: true - ZoomToExtents: - args: [] - method: true - archivable: - property: override-fields - deprecated: - message: this property is deprecated. - replace: [] - breakJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - childAdded: - struct: Event - deprecated: - message: this property is deprecated. - replace: [] - children: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - className: - property: read-only - deprecated: - message: this property is deprecated. - replace: [] - clone: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - destroy: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - findFirstChild: - args: - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - findPartOnRay: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - findPartsInRegion3: - args: - - required: false - type: any - - required: false - type: any - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - getChildren: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - isA: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - isDescendantOf: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - makeJoints: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] - move: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - moveTo: - args: - - required: false - type: any - method: true - deprecated: - message: this property is deprecated. - replace: [] - remove: - args: [] - method: true - deprecated: - message: this property is deprecated. - replace: [] -last_updated: 1681227519 -last_selene_version: 0.25.0 -roblox_classes: - Accessory: - superclass: Accoutrement - events: [] - properties: - - AccessoryType - Accoutrement: - superclass: Instance - events: [] - properties: - - AttachmentForward - - AttachmentPoint - - AttachmentPos - - AttachmentRight - - AttachmentUp - Actor: - superclass: Model - events: [] - properties: [] - AdGui: - superclass: SurfaceGuiBase - events: [] - properties: - - AdShape - - Status - AdPortal: - superclass: Instance - events: [] - properties: - - PortalInvalidReason - - PortalStatus - - PortalVersion - - Status - AdService: - superclass: Instance - events: - - AdTeleportEnded - - AdTeleportInitiated - - VideoAdClosed - properties: [] - AdvancedDragger: - superclass: Instance - events: [] - properties: [] - AirController: - superclass: ControllerBase - events: [] - properties: - - MaintainAngularMomentum - - MaintainLinearMomentum - - MoveMaxForce - - OrientationMaxTorque - - OrientationSpeedFactor - - VectorForce - AlignOrientation: - superclass: Constraint - events: [] - properties: - - AlignType - - CFrame - - MaxAngularVelocity - - MaxTorque - - Mode - - PrimaryAxis - - PrimaryAxisOnly - - ReactionTorqueEnabled - - Responsiveness - - RigidityEnabled - - SecondaryAxis - AlignPosition: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - MaxForce - - MaxVelocity - - Mode - - Position - - ReactionForceEnabled - - Responsiveness - - RigidityEnabled - AnalysticsSettings: - superclass: GenericSettings - events: [] - properties: [] - AnalyticsService: - superclass: Instance - events: [] - properties: - - ApiKey - AngularVelocity: - superclass: Constraint - events: [] - properties: - - AngularVelocity - - MaxTorque - - ReactionTorqueEnabled - - RelativeTo - Animation: - superclass: Instance - events: [] - properties: - - AnimationId - AnimationClip: - superclass: Instance - events: [] - properties: - - Guid - - Loop - - Priority - AnimationClipProvider: - superclass: Instance - events: [] - properties: [] - AnimationConstraint: - superclass: Constraint - events: [] - properties: - - IsKinematic - - MaxForce - - MaxTorque - - Transform - AnimationController: - superclass: Instance - events: - - AnimationPlayed - properties: [] - AnimationFromVideoCreatorService: - superclass: Instance - events: [] - properties: [] - AnimationFromVideoCreatorStudioService: - superclass: Instance - events: [] - properties: [] - AnimationRigData: - superclass: Instance - events: [] - properties: [] - AnimationStreamTrack: - superclass: Instance - events: - - Stopped - properties: - - Animation - - IsPlaying - - Priority - - WeightCurrent - - WeightTarget - AnimationTrack: - superclass: Instance - events: - - DidLoop - - Ended - - KeyframeReached - - Stopped - properties: - - Animation - - IsPlaying - - Length - - Looped - - Priority - - Speed - - TimePosition - - WeightCurrent - - WeightTarget - Animator: - superclass: Instance - events: - - AnimationPlayed - - AnimationPlayedCoreScript - - AnimationStreamTrackPlayed - properties: - - EvaluationThrottled - - PreferLodEnabled - AppStorageService: - superclass: LocalStorageService - events: [] - properties: [] - AppUpdateService: - superclass: Instance - events: [] - properties: [] - ArcHandles: - superclass: HandlesBase - events: - - MouseButton1Down - - MouseButton1Up - - MouseDrag - - MouseEnter - - MouseLeave - properties: - - Axes - AssetCounterService: - superclass: Instance - events: [] - properties: [] - AssetDeliveryProxy: - superclass: Instance - events: [] - properties: - - Interface - - Port - - StartServer - AssetImportService: - superclass: Instance - events: [] - properties: [] - AssetImportSession: - superclass: Instance - events: - - UploadComplete - - UploadCompleteDeprecated - - UploadProgress - properties: [] - AssetManagerService: - superclass: Instance - events: - - AssetImportedSignal - - ImportSessionFinished - - ImportSessionStarted - - MayBeLinkedSourceModified - properties: [] - AssetPatchSettings: - superclass: Instance - events: [] - properties: - - ContentId - - OutputPath - - PatchId - AssetService: - superclass: Instance - events: - - OpenPublishResultModal - properties: [] - AssetSoundEffect: - superclass: CustomSoundEffect - events: [] - properties: [] - Atmosphere: - superclass: Instance - events: [] - properties: - - Color - - Decay - - Density - - Glare - - Haze - - Offset - Attachment: - superclass: Instance - events: [] - properties: - - Axis - - CFrame - - Orientation - - Position - - Rotation - - SecondaryAxis - - Visible - - WorldAxis - - WorldCFrame - - WorldOrientation - - WorldPosition - - WorldRotation - - WorldSecondaryAxis - AudioPages: - superclass: Pages - events: [] - properties: [] - AudioSearchParams: - superclass: Instance - events: [] - properties: - - Album - - Artist - - AudioSubtype - - MaxDuration - - MinDuration - - SearchKeyword - - Tag - - Title - AvatarEditorService: - superclass: Instance - events: - - OpenAllowInventoryReadAccess - - OpenPromptCreateOufit - - OpenPromptDeleteOutfit - - OpenPromptRenameOutfit - - OpenPromptSaveAvatar - - OpenPromptSetFavorite - - OpenPromptUpdateOutfit - - PromptAllowInventoryReadAccessCompleted - - PromptCreateOutfitCompleted - - PromptDeleteOutfitCompleted - - PromptRenameOutfitCompleted - - PromptSaveAvatarCompleted - - PromptSaveAvatarThumbnailCustomizationCompleted - - PromptSetFavoriteCompleted - - PromptUpdateOutfitCompleted - properties: [] - AvatarImportService: - superclass: Instance - events: [] - properties: [] - Backpack: - superclass: Instance - events: [] - properties: [] - BackpackItem: - superclass: Model - events: [] - properties: - - TextureId - BadgeService: - superclass: Instance - events: - - BadgeAwarded - - OnBadgeAwarded - properties: [] - BallSocketConstraint: - superclass: Constraint - events: [] - properties: - - LimitsEnabled - - MaxFrictionTorque - - Radius - - Restitution - - TwistLimitsEnabled - - TwistLowerAngle - - TwistUpperAngle - - UpperAngle - BasePart: - superclass: PVInstance - events: - - LocalSimulationTouched - - OutfitChanged - - StoppedTouching - - TouchEnded - - Touched - properties: - - Anchored - - AssemblyAngularVelocity - - AssemblyCenterOfMass - - AssemblyLinearVelocity - - AssemblyMass - - AssemblyRootPart - - BackParamA - - BackParamB - - BackSurface - - BackSurfaceInput - - BottomParamA - - BottomParamB - - BottomSurface - - BottomSurfaceInput - - BrickColor - - CFrame - - CanCollide - - CanQuery - - CanTouch - - CastShadow - - CenterOfMass - - CollisionGroup - - CollisionGroupId - - Color - - CurrentPhysicalProperties - - CustomPhysicalProperties - - Elasticity - - ExtentsCFrame - - ExtentsSize - - Friction - - FrontParamA - - FrontParamB - - FrontSurface - - FrontSurfaceInput - - LeftParamA - - LeftParamB - - LeftSurface - - LeftSurfaceInput - - LocalTransparencyModifier - - Locked - - Mass - - Massless - - Material - - MaterialVariant - - Orientation - - PivotOffset - - Position - - ReceiveAge - - Reflectance - - ResizeIncrement - - ResizeableFaces - - RightParamA - - RightParamB - - RightSurface - - RightSurfaceInput - - RootPriority - - RotVelocity - - Rotation - - Size - - SpecificGravity - - TopParamA - - TopParamB - - TopSurface - - TopSurfaceInput - - Transparency - - Velocity - - brickColor - BasePlayerGui: - superclass: Instance - events: [] - properties: [] - BaseScript: - superclass: LuaSourceContainer - events: [] - properties: - - Disabled - - Enabled - - LinkedSource - - RunContext - BaseWrap: - superclass: Instance - events: [] - properties: - - CageMeshId - - CageOrigin - - CageOriginWorld - - HSRAssetId - - ImportOrigin - - ImportOriginWorld - Beam: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - Brightness - - Color - - CurveSize0 - - CurveSize1 - - Enabled - - FaceCamera - - LightEmission - - LightInfluence - - Segments - - Texture - - TextureLength - - TextureMode - - TextureSpeed - - Transparency - - Width0 - - Width1 - - ZOffset - BevelMesh: - superclass: DataModelMesh - events: [] - properties: [] - BillboardGui: - superclass: LayerCollector - events: [] - properties: - - Active - - Adornee - - AlwaysOnTop - - Brightness - - ClipsDescendants - - CurrentDistance - - DistanceLowerLimit - - DistanceStep - - DistanceUpperLimit - - ExtentsOffset - - ExtentsOffsetWorldSpace - - LightInfluence - - MaxDistance - - PlayerToHideFrom - - Size - - SizeOffset - - StudsOffset - - StudsOffsetWorldSpace - BinaryStringValue: - superclass: ValueBase - events: - - Changed - properties: [] - BindableEvent: - superclass: Instance - events: - - Event - properties: [] - BindableFunction: - superclass: Instance - events: [] - properties: [] - BlockMesh: - superclass: BevelMesh - events: [] - properties: [] - BloomEffect: - superclass: PostEffect - events: [] - properties: - - Intensity - - Size - - Threshold - BlurEffect: - superclass: PostEffect - events: [] - properties: - - Size - BodyAngularVelocity: - superclass: BodyMover - events: [] - properties: - - AngularVelocity - - MaxTorque - - P - - angularvelocity - - maxTorque - BodyColors: - superclass: CharacterAppearance - events: [] - properties: - - HeadColor - - HeadColor3 - - LeftArmColor - - LeftArmColor3 - - LeftLegColor - - LeftLegColor3 - - RightArmColor - - RightArmColor3 - - RightLegColor - - RightLegColor3 - - TorsoColor - - TorsoColor3 - BodyForce: - superclass: BodyMover - events: [] - properties: - - Force - - force - BodyGyro: - superclass: BodyMover - events: [] - properties: - - CFrame - - D - - MaxTorque - - P - - cframe - - maxTorque - BodyMover: - superclass: Instance - events: [] - properties: [] - BodyPosition: - superclass: BodyMover - events: - - ReachedTarget - properties: - - D - - MaxForce - - P - - Position - - maxForce - - position - BodyThrust: - superclass: BodyMover - events: [] - properties: - - Force - - Location - - force - - location - BodyVelocity: - superclass: BodyMover - events: [] - properties: - - MaxForce - - P - - Velocity - - maxForce - - velocity - Bone: - superclass: Attachment - events: [] - properties: - - Transform - - TransformedCFrame - - TransformedWorldCFrame - BoolValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - BoxHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Size - Breakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - Enabled - - Id - - Line - - LogMessage - - MetaBreakpointId - - Script - - Valid - - Verified - BrickColorValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - BrowserService: - superclass: Instance - events: - - AuthCookieCopiedToEngine - - BrowserWindowClosed - - BrowserWindowWillNavigate - - JavaScriptCallback - properties: [] - BubbleChatConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AdorneeName - - BackgroundColor3 - - BackgroundTransparency - - BubbleDuration - - BubblesSpacing - - Enabled - - Font - - FontFace - - LocalPlayerStudsOffset - - MaxDistance - - MinimizeDistance - - TextColor3 - - TextSize - - VerticalStudsOffset - BulkImportService: - superclass: Instance - events: - - AssetImported - - BulkImportFinished - - BulkImportStarted - properties: [] - BuoyancySensor: - superclass: SensorBase - events: [] - properties: - - FullySubmerged - - TouchingSurface - CFrameValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - CSGDictionaryService: - superclass: FlyweightService - events: [] - properties: [] - CacheableContentProvider: - superclass: Instance - events: [] - properties: [] - CalloutService: - superclass: Instance - events: [] - properties: [] - Camera: - superclass: Instance - events: - - FirstPersonTransition - - InterpolationFinished - properties: - - CFrame - - CameraSubject - - CameraType - - CoordinateFrame - - DiagonalFieldOfView - - FieldOfView - - FieldOfViewMode - - Focus - - HeadLocked - - HeadScale - - MaxAxisFieldOfView - - NearPlaneZ - - ViewportSize - - focus - CanvasGroup: - superclass: GuiObject - events: [] - properties: - - GroupColor3 - - GroupTransparency - CatalogPages: - superclass: Pages - events: [] - properties: [] - ChangeHistoryService: - superclass: Instance - events: - - OnRedo - - OnUndo - properties: [] - ChannelSelectorSoundEffect: - superclass: CustomSoundEffect - events: [] - properties: - - Channel - CharacterAppearance: - superclass: Instance - events: [] - properties: [] - CharacterMesh: - superclass: CharacterAppearance - events: [] - properties: - - BaseTextureId - - BodyPart - - MeshId - - OverlayTextureId - Chat: - superclass: Instance - events: - - BubbleChatSettingsChanged - - Chatted - properties: - - BubbleChatEnabled - - LoadDefaultChat - ChatInputBarConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AbsolutePosition - - AbsolutePositionWrite - - AbsoluteSize - - AbsoluteSizeWrite - - BackgroundColor3 - - BackgroundTransparency - - Enabled - - FontFace - - PlaceholderColor3 - - TargetTextChannel - - TextBox - - TextColor3 - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - ChatWindowConfiguration: - superclass: TextChatConfigurations - events: [] - properties: - - AbsolutePosition - - AbsolutePositionWrite - - AbsoluteSize - - AbsoluteSizeWrite - - BackgroundColor3 - - BackgroundTransparency - - Enabled - - FontFace - - HeightScale - - HorizontalAlignment - - TextColor3 - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - VerticalAlignment - - WidthScale - ChorusSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Mix - - Rate - ClickDetector: - superclass: Instance - events: - - MouseClick - - MouseHoverEnter - - MouseHoverLeave - - RightMouseClick - - mouseClick - properties: - - CursorIcon - - MaxActivationDistance - ClientReplicator: - superclass: NetworkReplicator - events: - - RCCProfilerDataComplete - - StatsReceived - properties: [] - ClimbController: - superclass: ControllerBase - events: [] - properties: - - AccelerationTime - - MoveMaxForce - - OrientationMaxTorque - - OrientationSpeedFactor - Clothing: - superclass: CharacterAppearance - events: [] - properties: - - Color3 - CloudLocalizationTable: - superclass: LocalizationTable - events: [] - properties: [] - Clouds: - superclass: Instance - events: [] - properties: - - Color - - Cover - - Density - - Enabled - ClusterPacketCache: - superclass: Instance - events: [] - properties: [] - CollectionService: - superclass: Instance - events: - - ItemAdded - - ItemRemoved - - TagAdded - - TagRemoved - properties: [] - Color3Value: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - ColorCorrectionEffect: - superclass: PostEffect - events: [] - properties: - - Brightness - - Contrast - - Saturation - - TintColor - CommandInstance: - superclass: Instance - events: [] - properties: - - AllowGUIAccessPoints - - Checked - - DefaultShortcut - - DisplayName - - Enabled - - Icon - - Name - - Permission - - StatusTip - CommandService: - superclass: Instance - events: - - CommandExecuting - properties: [] - CompressorSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Attack - - GainMakeup - - Ratio - - Release - - SideChain - - Threshold - ConeHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Height - - Radius - Configuration: - superclass: Instance - events: [] - properties: [] - ConfigureServerService: - superclass: Instance - events: [] - properties: [] - Constraint: - superclass: Instance - events: [] - properties: - - Active - - Attachment0 - - Attachment1 - - Color - - Enabled - - Visible - ContentProvider: - superclass: Instance - events: - - AssetFetchFailed - properties: - - BaseUrl - - RequestQueueSize - ContextActionService: - superclass: Instance - events: - - BoundActionAdded - - BoundActionChanged - - BoundActionRemoved - - GetActionButtonEvent - - LocalToolEquipped - - LocalToolUnequipped - properties: [] - Controller: - superclass: Instance - events: - - ButtonChanged - properties: [] - ControllerBase: - superclass: Instance - events: [] - properties: - - MoveSpeedFactor - - RigidityEnabled - ControllerManager: - superclass: Instance - events: [] - properties: - - ActiveController - - BaseMoveSpeed - - BaseTurnSpeed - - ClimbSensor - - FacingDirection - - GroundSensor - - MovingDirection - ControllerPartSensor: - superclass: ControllerSensor - events: [] - properties: - - HitFrame - - HitNormal - - SearchDistance - - SensedPart - - SensorMode - ControllerSensor: - superclass: SensorBase - events: [] - properties: [] - ControllerService: - superclass: Instance - events: [] - properties: [] - CookiesService: - superclass: Instance - events: [] - properties: [] - CoreGui: - superclass: BasePlayerGui - events: - - UserGuiRenderingChanged - properties: - - SelectionImageObject - - Version - CorePackages: - superclass: Instance - events: [] - properties: [] - CoreScript: - superclass: BaseScript - events: [] - properties: [] - CoreScriptDebuggingManagerHelper: - superclass: Instance - events: [] - properties: [] - CoreScriptSyncService: - superclass: Instance - events: [] - properties: [] - CornerWedgePart: - superclass: BasePart - events: [] - properties: [] - CrossDMScriptChangeListener: - superclass: Instance - events: - - GuidLineContentsChanged - - GuidNameChanged - properties: [] - CurveAnimation: - superclass: AnimationClip - events: [] - properties: [] - CustomEvent: - superclass: Instance - events: - - ReceiverConnected - - ReceiverDisconnected - properties: [] - CustomEventReceiver: - superclass: Instance - events: - - EventConnected - - EventDisconnected - - SourceValueChanged - properties: - - Source - CustomSoundEffect: - superclass: SoundEffect - events: [] - properties: [] - CylinderHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Angle - - Height - - InnerRadius - - Radius - CylinderMesh: - superclass: BevelMesh - events: [] - properties: [] - CylindricalConstraint: - superclass: SlidingBallConstraint - events: [] - properties: - - AngularActuatorType - - AngularLimitsEnabled - - AngularResponsiveness - - AngularRestitution - - AngularSpeed - - AngularVelocity - - CurrentAngle - - InclinationAngle - - LowerAngle - - MotorMaxAngularAcceleration - - MotorMaxTorque - - RotationAxisVisible - - ServoMaxTorque - - TargetAngle - - UpperAngle - - WorldRotationAxis - DataModel: - superclass: ServiceProvider - events: - - AllowedGearTypeChanged - - GraphicsQualityChangeRequest - - ItemChanged - - Loaded - - ScreenshotReady - - ScreenshotSavedToAlbum - - UniverseMetadataLoaded - properties: - - CreatorId - - CreatorType - - GameId - - GearGenreSetting - - Genre - - IsSFFlagsLoaded - - JobId - - PlaceId - - PlaceVersion - - PrivateServerId - - PrivateServerOwnerId - - VIPServerId - - VIPServerOwnerId - - Workspace - - lighting - - workspace - DataModelMesh: - superclass: Instance - events: [] - properties: - - Offset - - Scale - - VertexColor - DataModelPatchService: - superclass: Instance - events: [] - properties: [] - DataModelSession: - superclass: Instance - events: - - CurrentDataModelTypeAboutToChange - - CurrentDataModelTypeChanged - - DataModelCreated - - DataModelWillBeDestroyed - properties: - - CurrentDataModelType - - SessionId - DataStore: - superclass: GlobalDataStore - events: [] - properties: [] - DataStoreIncrementOptions: - superclass: Instance - events: [] - properties: [] - DataStoreInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - DataStoreName - - UpdatedTime - DataStoreKey: - superclass: Instance - events: [] - properties: - - KeyName - DataStoreKeyInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - UpdatedTime - - Version - DataStoreKeyPages: - superclass: Pages - events: [] - properties: - - Cursor - DataStoreListingPages: - superclass: Pages - events: [] - properties: - - Cursor - DataStoreObjectVersionInfo: - superclass: Instance - events: [] - properties: - - CreatedTime - - IsDeleted - - Version - DataStoreOptions: - superclass: Instance - events: [] - properties: - - AllScopes - DataStorePages: - superclass: Pages - events: [] - properties: [] - DataStoreService: - superclass: Instance - events: [] - properties: - - AutomaticRetry - - LegacyNamingScheme - DataStoreSetOptions: - superclass: Instance - events: [] - properties: [] - DataStoreVersionPages: - superclass: Pages - events: [] - properties: [] - Debris: - superclass: Instance - events: [] - properties: - - MaxItems - DebugSettings: - superclass: Instance - events: [] - properties: - - DataModel - - InstanceCount - - IsScriptStackTracingEnabled - - JobCount - - PlayerCount - - ReportSoundWarnings - - RobloxVersion - - TickCountPreciseOverride - DebuggablePluginWatcher: - superclass: Instance - events: [] - properties: [] - DebuggerBreakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - IsEnabled - - Line - - LogExpression - - isContextDependentBreakpoint - DebuggerConnection: - superclass: Instance - events: - - BreakpointAdded - - BreakpointChanged - - BreakpointRemoved - - Paused - - Resumed - properties: - - ErrorMessage - - HasError - - Id - - IsPaused - DebuggerConnectionManager: - superclass: Instance - events: - - ConnectionEnded - - ConnectionStarted - - FocusChanged - properties: - - Timeout - DebuggerLuaResponse: - superclass: Instance - events: [] - properties: - - IsError - - IsSuccess - - Message - - RequestId - - Status - DebuggerManager: - superclass: Instance - events: - - DebuggerAdded - - DebuggerRemoved - properties: - - DebuggingEnabled - DebuggerUIService: - superclass: Instance - events: - - ExpressionAdded - properties: [] - DebuggerVariable: - superclass: Instance - events: [] - properties: - - Name - - Populated - - Type - - Value - - VariableId - - VariablesCount - DebuggerWatch: - superclass: Instance - events: [] - properties: - - Expression - Decal: - superclass: FaceInstance - events: [] - properties: - - Color3 - - LocalTransparencyModifier - - Shiny - - Specular - - Texture - - Transparency - - ZIndex - DepthOfFieldEffect: - superclass: PostEffect - events: [] - properties: - - FarIntensity - - FocusDistance - - InFocusRadius - - NearIntensity - DeviceIdService: - superclass: Instance - events: [] - properties: [] - Dialog: - superclass: Instance - events: - - DialogChoiceSelected - properties: - - BehaviorType - - ConversationDistance - - GoodbyeChoiceActive - - GoodbyeDialog - - InUse - - InitialPrompt - - Purpose - - Tone - - TriggerDistance - - TriggerOffset - DialogChoice: - superclass: Instance - events: [] - properties: - - GoodbyeChoiceActive - - GoodbyeDialog - - ResponseDialog - - UserDialog - DistortionSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Level - DockWidgetPluginGui: - superclass: PluginGui - events: [] - properties: - - HostWidgetWasRestored - DoubleConstrainedValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - ConstrainedValue - - MaxValue - - MinValue - - Value - DraftsService: - superclass: Instance - events: - - CommitStatusChanged - - DraftAdded - - DraftRemoved - - DraftStatusChanged - - EditorsListChanged - - UpdateStatusChanged - properties: [] - Dragger: - superclass: Instance - events: [] - properties: [] - DraggerService: - superclass: Instance - events: [] - properties: - - AlignDraggedObjects - - AngleSnapEnabled - - AngleSnapIncrement - - AnimateHover - - CollisionsEnabled - - DraggerCoordinateSpace - - DraggerMovementMode - - GeometrySnapColor - - HoverAnimateFrequency - - HoverLineThickness - - HoverThickness - - JointsEnabled - - LinearSnapEnabled - - LinearSnapIncrement - - PivotSnapToGeometry - - ShowHover - - ShowPivotIndicator - DynamicRotate: - superclass: JointInstance - events: [] - properties: - - BaseAngle - EchoSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Delay - - DryLevel - - Feedback - - WetLevel - EmotesPages: - superclass: InventoryPages - events: [] - properties: [] - EqualizerSoundEffect: - superclass: SoundEffect - events: [] - properties: - - HighGain - - LowGain - - MidGain - EulerRotationCurve: - superclass: Instance - events: [] - properties: - - RotationOrder - EventIngestService: - superclass: Instance - events: [] - properties: [] - ExperienceAuthService: - superclass: Instance - events: - - OpenAuthPrompt - properties: [] - ExperienceInviteOptions: - superclass: Instance - events: [] - properties: - - InviteMessageId - - InviteUser - - LaunchData - - PromptMessage - Explosion: - superclass: Instance - events: - - Hit - properties: - - BlastPressure - - BlastRadius - - DestroyJointRadiusPercent - - ExplosionType - - Position - - TimeScale - - Visible - FaceAnimatorService: - superclass: Instance - events: - - TrackerError - - TrackerPrompt - properties: - - AudioAnimationEnabled - - FlipHeadOrientation - - VideoAnimationEnabled - FaceControls: - superclass: Instance - events: [] - properties: - - ChinRaiser - - ChinRaiserUpperLip - - Corrugator - - EyesLookDown - - EyesLookLeft - - EyesLookRight - - EyesLookUp - - FlatPucker - - Funneler - - JawDrop - - JawLeft - - JawRight - - LeftBrowLowerer - - LeftCheekPuff - - LeftCheekRaiser - - LeftDimpler - - LeftEyeClosed - - LeftEyeUpperLidRaiser - - LeftInnerBrowRaiser - - LeftLipCornerDown - - LeftLipCornerPuller - - LeftLipStretcher - - LeftLowerLipDepressor - - LeftNoseWrinkler - - LeftOuterBrowRaiser - - LeftUpperLipRaiser - - LipPresser - - LipsTogether - - LowerLipSuck - - MouthLeft - - MouthRight - - Pucker - - RightBrowLowerer - - RightCheekPuff - - RightCheekRaiser - - RightDimpler - - RightEyeClosed - - RightEyeUpperLidRaiser - - RightInnerBrowRaiser - - RightLipCornerDown - - RightLipCornerPuller - - RightLipStretcher - - RightLowerLipDepressor - - RightNoseWrinkler - - RightOuterBrowRaiser - - RightUpperLipRaiser - - TongueDown - - TongueOut - - TongueUp - - UpperLipSuck - FaceInstance: - superclass: Instance - events: [] - properties: - - Face - FacialAnimationRecordingService: - superclass: Instance - events: [] - properties: - - BiometricDataConsent - FacialAnimationStreamingService: - superclass: Instance - events: [] - properties: - - EnableFlags - - Enabled - FacialAnimationStreamingServiceStats: - superclass: Instance - events: - - isStreamingFacsUpdated - properties: [] - FacialAnimationStreamingServiceV2: - superclass: Instance - events: [] - properties: - - ServiceState - Feature: - superclass: Instance - events: [] - properties: - - FaceId - - InOut - - LeftRight - - TopBottom - File: - superclass: Instance - events: [] - properties: - - Size - FileMesh: - superclass: DataModelMesh - events: [] - properties: - - MeshId - - TextureId - Fire: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - Heat - - SecondaryColor - - Size - - TimeScale - - size - Flag: - superclass: Tool - events: [] - properties: - - TeamColor - FlagStand: - superclass: Part - events: - - FlagCaptured - properties: - - TeamColor - FlagStandService: - superclass: Instance - events: [] - properties: [] - FlangeSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Mix - - Rate - FloatCurve: - superclass: Instance - events: [] - properties: - - Length - FloorWire: - superclass: GuiBase3d - events: [] - properties: - - CycleOffset - - From - - StudsBetweenTextures - - Texture - - TextureSize - - To - - Velocity - - WireRadius - FlyweightService: - superclass: Instance - events: [] - properties: [] - Folder: - superclass: Instance - events: [] - properties: [] - ForceField: - superclass: Instance - events: [] - properties: - - Visible - FormFactorPart: - superclass: BasePart - events: [] - properties: - - FormFactor - - formFactor - Frame: - superclass: GuiObject - events: [] - properties: - - Style - FriendPages: - superclass: Pages - events: [] - properties: [] - FriendService: - superclass: Instance - events: - - FriendsUpdated - properties: [] - FunctionalTest: - superclass: Instance - events: [] - properties: - - Description - GamePassService: - superclass: Instance - events: [] - properties: [] - GameSettings: - superclass: Instance - events: - - VideoRecordingChangeRequest - properties: - - VideoCaptureEnabled - - VideoRecording - GamepadService: - superclass: Instance - events: - - GamepadThumbstick1Changed - properties: - - GamepadCursorEnabled - GenericSettings: - superclass: ServiceProvider - events: [] - properties: [] - Geometry: - superclass: Instance - events: [] - properties: [] - GetTextBoundsParams: - superclass: Instance - events: [] - properties: - - Font - - Size - - Text - - Width - GlobalDataStore: - superclass: Instance - events: [] - properties: [] - GlobalSettings: - superclass: GenericSettings - events: [] - properties: [] - Glue: - superclass: JointInstance - events: [] - properties: - - F0 - - F1 - - F2 - - F3 - GoogleAnalyticsConfiguration: - superclass: Instance - events: [] - properties: [] - GroundController: - superclass: ControllerBase - events: [] - properties: - - AccelerationLean - - AccelerationTime - - AlignSpeed - - AlignTorque - - DecelerationTime - - Friction - - FrictionWeight - - GroundOffset - - StandForce - - StandSpeed - - TurningFactor - GroupService: - superclass: Instance - events: [] - properties: [] - GuiBase: - superclass: Instance - events: [] - properties: [] - GuiBase2d: - superclass: GuiBase - events: - - SelectionChanged - properties: - - AbsolutePosition - - AbsoluteRotation - - AbsoluteSize - - AutoLocalize - - ClippedRect - - IsNotOccluded - - Localize - - RawRect2D - - RootLocalizationTable - - SelectionBehaviorDown - - SelectionBehaviorLeft - - SelectionBehaviorRight - - SelectionBehaviorUp - - SelectionGroup - - TotalGroupScale - GuiBase3d: - superclass: GuiBase - events: [] - properties: - - Color - - Color3 - - Transparency - - Visible - GuiButton: - superclass: GuiObject - events: - - Activated - - MouseButton1Click - - MouseButton1Down - - MouseButton1Up - - MouseButton2Click - - MouseButton2Down - - MouseButton2Up - properties: - - AutoButtonColor - - Modal - - Selected - - Style - GuiLabel: - superclass: GuiObject - events: [] - properties: [] - GuiMain: - superclass: ScreenGui - events: [] - properties: [] - GuiObject: - superclass: GuiBase2d - events: - - DragBegin - - DragStopped - - InputBegan - - InputChanged - - InputEnded - - MouseEnter - - MouseLeave - - MouseMoved - - MouseWheelBackward - - MouseWheelForward - - SelectionGained - - SelectionLost - - TouchLongPress - - TouchPan - - TouchPinch - - TouchRotate - - TouchSwipe - - TouchTap - properties: - - Active - - AnchorPoint - - AutomaticSize - - BackgroundColor - - BackgroundColor3 - - BackgroundTransparency - - BorderColor - - BorderColor3 - - BorderMode - - BorderSizePixel - - ClipsDescendants - - Draggable - - LayoutOrder - - NextSelectionDown - - NextSelectionLeft - - NextSelectionRight - - NextSelectionUp - - Position - - Rotation - - Selectable - - SelectionImageObject - - SelectionOrder - - Size - - SizeConstraint - - Transparency - - Visible - - ZIndex - GuiService: - superclass: Instance - events: - - BrowserWindowClosed - - CloseInspectMenuRequest - - CoreGuiRenderOverflowed - - EmotesMenuOpenChanged - - ErrorMessageChanged - - GuiVisibilityChangedSignal - - InspectMenuEnabledChangedSignal - - InspectPlayerFromHumanoidDescriptionRequest - - InspectPlayerFromUserIdWithCtxRequest - - KeyPressed - - MenuClosed - - MenuOpened - - NativeClose - - NetworkPausedEnabledChanged - - Open9SliceEditor - - PurchasePromptShown - - SafeZoneOffsetsChanged - - ShowLeaveConfirmation - - SpecialKeyPressed - - UiMessageChanged - properties: - - AutoSelectGuiEnabled - - CoreEffectFolder - - CoreGuiFolder - - CoreGuiNavigationEnabled - - GuiNavigationEnabled - - IsModalDialog - - IsWindows - - MenuIsOpen - - SelectedCoreObject - - SelectedObject - - TouchControlsEnabled - GuidRegistryService: - superclass: Instance - events: [] - properties: [] - HSRDataContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - HandleAdornment: - superclass: PVAdornment - events: - - MouseButton1Down - - MouseButton1Up - - MouseEnter - - MouseLeave - properties: - - AdornCullingMode - - AlwaysOnTop - - CFrame - - SizeRelativeOffset - - ZIndex - Handles: - superclass: HandlesBase - events: - - MouseButton1Down - - MouseButton1Up - - MouseDrag - - MouseEnter - - MouseLeave - properties: - - Faces - - Style - HandlesBase: - superclass: PartAdornment - events: [] - properties: [] - HapticService: - superclass: Instance - events: [] - properties: [] - Hat: - superclass: Accoutrement - events: [] - properties: [] - HeightmapImporterService: - superclass: Instance - events: - - ColormapHasUnknownPixels - - ProgressUpdate - properties: [] - HiddenSurfaceRemovalAsset: - superclass: Instance - events: [] - properties: [] - Highlight: - superclass: Instance - events: [] - properties: - - Adornee - - DepthMode - - Enabled - - FillColor - - FillTransparency - - LineThickness - - OutlineColor - - OutlineTransparency - - ReservedId - HingeConstraint: - superclass: Constraint - events: [] - properties: - - ActuatorType - - AngularResponsiveness - - AngularSpeed - - AngularVelocity - - CurrentAngle - - LimitsEnabled - - LowerAngle - - MotorMaxAcceleration - - MotorMaxTorque - - Radius - - Restitution - - ServoMaxTorque - - TargetAngle - - UpperAngle - Hint: - superclass: Message - events: [] - properties: [] - Hole: - superclass: Feature - events: [] - properties: [] - Hopper: - superclass: Instance - events: [] - properties: [] - HopperBin: - superclass: BackpackItem - events: - - Deselected - - Selected - properties: - - Active - - BinType - HttpRbxApiService: - superclass: Instance - events: [] - properties: [] - HttpRequest: - superclass: Instance - events: [] - properties: [] - HttpService: - superclass: Instance - events: [] - properties: - - HttpEnabled - Humanoid: - superclass: Instance - events: - - AnimationPlayed - - Climbing - - ClusterCompositionFinished - - CustomStatusAdded - - CustomStatusRemoved - - Died - - EmoteTriggered - - FallingDown - - FreeFalling - - GettingUp - - HealthChanged - - Jumping - - MoveToFinished - - PlatformStanding - - Ragdoll - - Running - - Seated - - StateChanged - - StateEnabledChanged - - StatusAdded - - StatusRemoved - - Strafing - - Swimming - - Touched - properties: - - AutoJumpEnabled - - AutoRotate - - AutomaticScalingEnabled - - BreakJointsOnDeath - - CameraOffset - - CollisionType - - DisplayDistanceType - - DisplayName - - EvaluateStateMachine - - FloorMaterial - - Health - - HealthDisplayDistance - - HealthDisplayType - - HipHeight - - Jump - - JumpHeight - - JumpPower - - LeftLeg - - MaxHealth - - MaxSlopeAngle - - MoveDirection - - NameDisplayDistance - - NameOcclusion - - PlatformStand - - RequiresNeck - - RigType - - RightLeg - - RootPart - - SeatPart - - Sit - - TargetPoint - - Torso - - UseJumpPower - - WalkSpeed - - WalkToPart - - WalkToPoint - - maxHealth - HumanoidController: - superclass: Controller - events: [] - properties: [] - HumanoidDescription: - superclass: Instance - events: - - EmotesChanged - - EquippedEmotesChanged - properties: - - AccessoryBlob - - BackAccessory - - BodyTypeScale - - ClimbAnimation - - DepthScale - - Face - - FaceAccessory - - FallAnimation - - FrontAccessory - - GraphicTShirt - - HairAccessory - - HatAccessory - - Head - - HeadColor - - HeadScale - - HeightScale - - IdleAnimation - - JumpAnimation - - LeftArm - - LeftArmColor - - LeftLeg - - LeftLegColor - - MoodAnimation - - NeckAccessory - - NumberEmotesLoaded - - Pants - - ProportionScale - - RightArm - - RightArmColor - - RightLeg - - RightLegColor - - RunAnimation - - Shirt - - ShouldersAccessory - - SwimAnimation - - Torso - - TorsoColor - - WaistAccessory - - WalkAnimation - - WidthScale - IKControl: - superclass: Instance - events: [] - properties: - - ChainRoot - - Enabled - - EndEffector - - EndEffectorOffset - - Offset - - Pole - - Priority - - SmoothTime - - Target - - Type - - Weight - ILegacyStudioBridge: - superclass: Instance - events: [] - properties: [] - IXPService: - superclass: Instance - events: - - OnBrowserTrackerLayerLoadingStatusChanged - - OnUserLayerLoadingStatusChanged - properties: [] - ImageButton: - superclass: GuiButton - events: [] - properties: - - ContentImageSize - - HoverImage - - Image - - ImageColor3 - - ImageRectOffset - - ImageRectSize - - ImageTransparency - - IsLoaded - - PressedImage - - ResampleMode - - ScaleType - - SliceCenter - - SliceScale - - TileSize - ImageDataExperimental: - superclass: Instance - events: [] - properties: - - Size - - TemporaryId - ImageHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Image - - Size - ImageLabel: - superclass: GuiLabel - events: [] - properties: - - ContentImageSize - - Image - - ImageColor3 - - ImageRectOffset - - ImageRectSize - - ImageTransparency - - IsLoaded - - ResampleMode - - ScaleType - - SliceCenter - - SliceScale - - TileSize - ImporterAnimationSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterBaseSettings: - superclass: Instance - events: [] - properties: - - Id - - ImportName - - ShouldImport - ImporterFacsSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterGroupSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - Anchored - - ImportAsModelAsset - - InsertInWorkspace - ImporterJointSettings: - superclass: ImporterBaseSettings - events: [] - properties: [] - ImporterMaterialSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - DiffuseFilePath - - IsPbr - - MetalnessFilePath - - NormalFilePath - - RoughnessFilePath - ImporterMeshSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - Anchored - - CageManifold - - CageMeshIntersectedPreview - - CageMeshNotIntersected - - CageNoOverlappingVertices - - CageNonManifoldPreview - - CageOverlappingVerticesPreview - - CageUVMatched - - CageUVMisMatchedPreview - - Dimensions - - DoubleSided - - IgnoreVertexColors - - IrrelevantCageModifiedPreview - - MeshHoleDetectedPreview - - MeshNoHoleDetected - - NoIrrelevantCageModified - - NoOuterCageFarExtendedFromMesh - - OuterCageFarExtendedFromMeshPreview - - PolygonCount - - UseImportedPivot - ImporterRootSettings: - superclass: ImporterBaseSettings - events: [] - properties: - - AddModelToInventory - - Anchored - - ExistingPackageId - - FileDimensions - - ImportAsModelAsset - - ImportAsPackage - - InsertInWorkspace - - InsertWithScenePosition - - InvertNegativeFaces - - MergeMeshes - - PolygonCount - - RigScale - - RigType - - ScaleUnit - - UseSceneOriginAsCFrame - - UseSceneOriginAsPivot - - UsesCages - - WorldForward - - WorldUp - IncrementalPatchBuilder: - superclass: Instance - events: [] - properties: - - AddPathsToBundle - - BuildDebouncePeriod - - HighCompression - - SerializePatch - - ZstdCompression - InputObject: - superclass: Instance - events: [] - properties: - - Delta - - KeyCode - - Position - - UserInputState - - UserInputType - InsertService: - superclass: Instance - events: [] - properties: - - AllowClientInsertModels - - AllowInsertFreeModels - Instance: - superclass: <<>> - events: - - AncestryChanged - - AttributeChanged - - Changed - - ChildAdded - - ChildRemoved - - DescendantAdded - - DescendantRemoving - - Destroying - - childAdded - properties: - - Archivable - - ClassName - - DataCost - - Name - - Parent - - RobloxLocked - - SourceAssetId - - archivable - - className - InstanceAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - IntConstrainedValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - ConstrainedValue - - MaxValue - - MinValue - - Value - IntValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - IntersectOperation: - superclass: PartOperation - events: [] - properties: [] - InventoryPages: - superclass: Pages - events: [] - properties: [] - JointInstance: - superclass: Instance - events: [] - properties: - - Active - - C0 - - C1 - - Enabled - - Part0 - - Part1 - - part1 - JointsService: - superclass: Instance - events: [] - properties: [] - KeyboardService: - superclass: Instance - events: [] - properties: [] - Keyframe: - superclass: Instance - events: [] - properties: - - Time - KeyframeMarker: - superclass: Instance - events: [] - properties: - - Value - KeyframeSequence: - superclass: AnimationClip - events: [] - properties: - - AuthoredHipHeight - KeyframeSequenceProvider: - superclass: Instance - events: [] - properties: [] - LSPFileSyncService: - superclass: Instance - events: [] - properties: [] - LanguageService: - superclass: Instance - events: [] - properties: [] - LayerCollector: - superclass: GuiBase2d - events: [] - properties: - - Enabled - - ResetOnSpawn - - ZIndexBehavior - LegacyStudioBridge: - superclass: ILegacyStudioBridge - events: [] - properties: [] - Light: - superclass: Instance - events: [] - properties: - - Brightness - - Color - - Enabled - - Shadows - Lighting: - superclass: Instance - events: - - LightingChanged - properties: - - Ambient - - Brightness - - TimerTime - - ColorShift_Bottom - - ColorShift_Top - - EnvironmentDiffuseScale - - EnvironmentSpecularScale - - ExposureCompensation - - FogColor - - FogEnd - - FogStart - - GeographicLatitude - - GlobalShadows - - OutdoorAmbient - - Outlines - - ShadowColor - - ShadowSoftness - - Technology - - TempUseNewSkyRemovalBehaviour - - TimeOfDay - LineForce: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - InverseSquareLaw - - Magnitude - - MaxForce - - ReactionForceEnabled - LineHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Length - - Thickness - LinearVelocity: - superclass: Constraint - events: [] - properties: - - LineDirection - - LineVelocity - - MaxForce - - PlaneVelocity - - PrimaryTangentAxis - - RelativeTo - - SecondaryTangentAxis - - VectorVelocity - - VelocityConstraintMode - LiveScriptingService: - superclass: Instance - events: [] - properties: [] - LocalDebuggerConnection: - superclass: DebuggerConnection - events: [] - properties: [] - LocalScript: - superclass: Script - events: [] - properties: [] - LocalStorageService: - superclass: Instance - events: - - ItemWasSet - - StoreWasCleared - properties: [] - LocalizationService: - superclass: Instance - events: - - AutoTranslateWillRun - properties: - - ForcePlayModeGameLocaleId - - ForcePlayModeRobloxLocaleId - - IsTextScraperRunning - - RobloxForcePlayModeGameLocaleId - - RobloxForcePlayModeRobloxLocaleId - - RobloxLocaleId - - SystemLocaleId - LocalizationTable: - superclass: Instance - events: [] - properties: - - DevelopmentLanguage - - Root - - SourceLocaleId - LodDataEntity: - superclass: Instance - events: [] - properties: - - EntityLodEnabled - LodDataService: - superclass: Instance - events: [] - properties: [] - LogService: - superclass: Instance - events: - - HttpResultOut - - MessageOut - - OnHttpResultApproved - - ServerHttpResultOut - - ServerMessageOut - properties: [] - LoginService: - superclass: Instance - events: - - LoginFailed - - LoginSucceeded - properties: [] - LuaSettings: - superclass: Instance - events: [] - properties: [] - LuaSourceContainer: - superclass: Instance - events: [] - properties: - - CurrentEditor - - RuntimeSource - LuaWebService: - superclass: Instance - events: [] - properties: [] - LuauScriptAnalyzerService: - superclass: Instance - events: [] - properties: [] - ManualGlue: - superclass: ManualSurfaceJointInstance - events: [] - properties: [] - ManualSurfaceJointInstance: - superclass: JointInstance - events: [] - properties: [] - ManualWeld: - superclass: ManualSurfaceJointInstance - events: [] - properties: [] - MarkerCurve: - superclass: Instance - events: [] - properties: - - Length - MarketplaceService: - superclass: Instance - events: - - ClientLuaDialogRequested - - ClientPurchaseSuccess - - NativePurchaseFinished - - NativePurchaseFinishedWithLocalPlayer - - PromptBundlePurchaseFinished - - PromptBundlePurchaseRequested - - PromptGamePassPurchaseFinished - - PromptGamePassPurchaseRequested - - PromptPremiumPurchaseFinished - - PromptPremiumPurchaseRequested - - PromptProductPurchaseFinished - - PromptProductPurchaseRequested - - PromptPurchaseFinished - - PromptPurchaseRequested - - PromptRobloxPurchaseRequested - - PromptSubscriptionCancellationFinished - - PromptSubscriptionCancellationRequested - - PromptSubscriptionPurchaseFinished - - PromptSubscriptionPurchaseRequested - - ServerPurchaseVerification - - ThirdPartyPurchaseFinished - properties: [] - MaterialGenerationService: - superclass: Instance - events: [] - properties: [] - MaterialGenerationSession: - superclass: Instance - events: [] - properties: [] - MaterialService: - superclass: Instance - events: - - OverrideStatusChanged - properties: - - AsphaltName - - BasaltName - - BrickName - - CobblestoneName - - ConcreteName - - CorrodedMetalName - - CrackedLavaName - - DiamondPlateName - - FabricName - - FoilName - - GlacierName - - GraniteName - - GrassName - - GroundName - - IceName - - LeafyGrassName - - LimestoneName - - MarbleName - - MetalName - - MudName - - PavementName - - PebbleName - - PlasticName - - RockName - - SaltName - - SandName - - SandstoneName - - SlateName - - SmoothPlasticName - - SnowName - - Use2022Materials - - WoodName - - WoodPlanksName - MaterialVariant: - superclass: Instance - events: [] - properties: - - BaseMaterial - - ColorMap - - CustomPhysicalProperties - - MaterialPattern - - MetalnessMap - - NormalMap - - RoughnessMap - - StudsPerTile - MemStorageConnection: - superclass: Instance - events: [] - properties: [] - MemStorageService: - superclass: Instance - events: [] - properties: [] - MemoryStoreQueue: - superclass: Instance - events: [] - properties: [] - MemoryStoreService: - superclass: Instance - events: [] - properties: [] - MemoryStoreSortedMap: - superclass: Instance - events: [] - properties: [] - MeshContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - MeshDataExperimental: - superclass: Instance - events: [] - properties: - - Size - MeshPart: - superclass: TriangleMeshPart - events: [] - properties: - - DoubleSided - - HasJointOffset - - HasSkinnedMesh - - JointOffset - - MeshId - - RenderFidelity - - TextureID - Message: - superclass: Instance - events: [] - properties: - - Text - MessageBusConnection: - superclass: Instance - events: [] - properties: [] - MessageBusService: - superclass: Instance - events: [] - properties: [] - MessagingService: - superclass: Instance - events: [] - properties: [] - MetaBreakpoint: - superclass: Instance - events: [] - properties: - - Condition - - ContinueExecution - - Enabled - - Id - - IsLogpoint - - Line - - LogMessage - - Script - - Valid - MetaBreakpointContext: - superclass: Instance - events: [] - properties: [] - MetaBreakpointManager: - superclass: Instance - events: - - MetaBreakpointAdded - - MetaBreakpointChanged - - MetaBreakpointRemoved - - MetaBreakpointSetChanged - properties: [] - Model: - superclass: PVInstance - events: [] - properties: - - LevelOfDetail - - ModelStreamingMode - - PrimaryPart - - Scale - - WorldPivot - ModuleScript: - superclass: LuaSourceContainer - events: [] - properties: - - LinkedSource - - Source - Motor: - superclass: JointInstance - events: [] - properties: - - CurrentAngle - - DesiredAngle - - MaxVelocity - Motor6D: - superclass: Motor - events: [] - properties: - - ChildName - - ParentName - - Transform - MotorFeature: - superclass: Feature - events: [] - properties: [] - Mouse: - superclass: Instance - events: - - Button1Down - - Button1Up - - Button2Down - - Button2Up - - Idle - - KeyDown - - KeyUp - - Move - - WheelBackward - - WheelForward - - keyDown - properties: - - Hit - - Icon - - Origin - - Target - - TargetFilter - - TargetSurface - - UnitRay - - ViewSizeX - - ViewSizeY - - X - - Y - - hit - - target - MouseService: - superclass: Instance - events: [] - properties: [] - MultipleDocumentInterfaceInstance: - superclass: Instance - events: - - DataModelSessionEnded - - DataModelSessionStarted - properties: - - FocusedDataModelSession - NegateOperation: - superclass: PartOperation - events: [] - properties: [] - NetworkClient: - superclass: NetworkPeer - events: - - ConnectionAccepted - - ConnectionFailed - properties: [] - NetworkMarker: - superclass: Instance - events: - - Received - properties: [] - NetworkPeer: - superclass: Instance - events: [] - properties: [] - NetworkReplicator: - superclass: Instance - events: [] - properties: [] - NetworkServer: - superclass: NetworkPeer - events: [] - properties: [] - NetworkSettings: - superclass: Instance - events: [] - properties: - - EmulatedTotalMemoryInMB - - FreeMemoryMBytes - - HttpProxyEnabled - - HttpProxyURL - - IncomingReplicationLag - - PrintJoinSizeBreakdown - - PrintPhysicsErrors - - PrintStreamInstanceQuota - - RandomizeJoinInstanceOrder - - RenderStreamedRegions - - ShowActiveAnimationAsset - NoCollisionConstraint: - superclass: Instance - events: [] - properties: - - Enabled - - Part0 - - Part1 - NonReplicatedCSGDictionaryService: - superclass: FlyweightService - events: [] - properties: [] - NotificationService: - superclass: Instance - events: - - Roblox17sConnectionChanged - - Roblox17sEventReceived - - RobloxConnectionChanged - - RobloxEventReceived - properties: - - IsConnected - - IsLuaChatEnabled - - IsLuaGameDetailsEnabled - - SelectedTheme - NumberPose: - superclass: PoseBase - events: [] - properties: - - Value - NumberValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - ObjectValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - OrderedDataStore: - superclass: GlobalDataStore - events: [] - properties: [] - OutfitPages: - superclass: Pages - events: [] - properties: [] - PVAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - PVInstance: - superclass: Instance - events: [] - properties: - - Origin - - Pivot Offset - PackageLink: - superclass: Instance - events: [] - properties: - - AutoUpdate - - Creator - - PackageAssetName - - PackageId - - PermissionLevel - - Status - - VersionNumber - PackageService: - superclass: Instance - events: [] - properties: [] - PackageUIService: - superclass: Instance - events: - - OnConvertToPackageResult - - OnOpenConvertToPackagePlugin - properties: [] - Pages: - superclass: Instance - events: [] - properties: - - IsFinished - Pants: - superclass: Clothing - events: [] - properties: - - PantsTemplate - ParabolaAdornment: - superclass: PVAdornment - events: [] - properties: - - A - - B - - C - - Range - - Thickness - Part: - superclass: FormFactorPart - events: [] - properties: - - Shape - PartAdornment: - superclass: GuiBase3d - events: [] - properties: - - Adornee - PartOperation: - superclass: TriangleMeshPart - events: [] - properties: - - RenderFidelity - - SmoothingAngle - - TriangleCount - - UsePartColor - PartOperationAsset: - superclass: Instance - events: [] - properties: [] - ParticleEmitter: - superclass: Instance - events: [] - properties: - - Acceleration - - Brightness - - Color - - Drag - - EmissionDirection - - Enabled - - FlipbookFramerate - - FlipbookIncompatible - - FlipbookLayout - - FlipbookMode - - FlipbookStartRandom - - Lifetime - - LightEmission - - LightInfluence - - LockedToPart - - Orientation - - Rate - - RotSpeed - - Rotation - - Shape - - ShapeInOut - - ShapePartial - - ShapeStyle - - Size - - Speed - - SpreadAngle - - Squash - - Texture - - TimeScale - - Transparency - - VelocityInheritance - - VelocitySpread - - ZOffset - PatchBundlerFileWatch: - superclass: Instance - events: [] - properties: [] - PatchMapping: - superclass: Instance - events: [] - properties: - - FlattenTree - - PatchId - - TargetPath - Path: - superclass: Instance - events: - - Blocked - - Unblocked - properties: - - Status - PathfindingLink: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - IsBidirectional - - Label - PathfindingModifier: - superclass: Instance - events: [] - properties: - - Label - - PassThrough - PathfindingService: - superclass: Instance - events: [] - properties: - - EmptyCutoff - PausedState: - superclass: Instance - events: [] - properties: - - AllThreadsPaused - - Reason - - ThreadId - PausedStateBreakpoint: - superclass: PausedState - events: [] - properties: - - Breakpoint - PausedStateException: - superclass: PausedState - events: [] - properties: - - ExceptionText - PermissionsService: - superclass: Instance - events: [] - properties: [] - PhysicsService: - superclass: Instance - events: [] - properties: [] - PhysicsSettings: - superclass: Instance - events: [] - properties: - - AllowSleep - - AreAnchorsShown - - AreAssembliesShown - - AreAwakePartsHighlighted - - AreBodyTypesShown - - AreConstraintForcesShownForSelectedOrHoveredInstances - - AreConstraintTorquesShownForSelectedOrHoveredInstances - - AreContactForcesShownForSelectedOrHoveredAssemblies - - AreContactIslandsShown - - AreContactPointsShown - - AreJointCoordinatesShown - - AreMagnitudesShownForDrawnForcesAndTorques - - AreMechanismsShown - - AreModelCoordsShown - - AreOwnersShown - - ArePartCoordsShown - - AreRegionsShown - - AreSolverIslandsShown - - AreTerrainReplicationRegionsShown - - AreTimestepsShown - - AreUnalignedPartsShown - - AreWorldCoordsShown - - DisableCSGv2 - - ForceCSGv2 - - ForceDrawScale - - IsInterpolationThrottleShown - - IsReceiveAgeShown - - IsTreeShown - - PhysicsEnvironmentalThrottle - - ShowDecompositionGeometry - - SolverConvergenceVisualizationMode - - ThrottleAdjustTime - - UseCSGv2 - PitchShiftSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Octave - Plane: - superclass: PlaneConstraint - events: [] - properties: [] - PlaneConstraint: - superclass: Constraint - events: [] - properties: [] - Platform: - superclass: Part - events: [] - properties: [] - Player: - superclass: Instance - events: - - CharacterAdded - - CharacterAppearanceLoaded - - CharacterRemoving - - Chatted - - FriendStatusChanged - - Idled - - OnTeleport - - SimulationRadiusChanged - properties: - - AccountAge - - AppearanceDidLoad - - AutoJumpEnabled - - CameraMaxZoomDistance - - CameraMinZoomDistance - - CameraMode - - CanLoadCharacterAppearance - - Character - - CharacterAppearance - - CharacterAppearanceId - - ChatMode - - DataComplexity - - DataComplexityLimit - - DataReady - - DevCameraOcclusionMode - - DevComputerCameraMode - - DevComputerMovementMode - - DevEnableMouseLock - - DevTouchCameraMode - - DevTouchMovementMode - - DisplayName - - FollowUserId - - GameplayPaused - - Guest - - HasVerifiedBadge - - HealthDisplayDistance - - LocaleId - - MaximumSimulationRadius - - MembershipType - - NameDisplayDistance - - Neutral - - OsPlatform - - PlatformName - - ReplicationFocus - - RespawnLocation - - SimulationRadius - - Team - - TeamColor - - Teleported - - TeleportedIn - - UnfilteredChat - - UserId - - VRDevice - - VREnabled - - userId - PlayerEmulatorService: - superclass: Instance - events: [] - properties: - - CustomPoliciesEnabled - - EmulatedCountryCode - - EmulatedGameLocale - - PlayerEmulationEnabled - - SerializedEmulatedPolicyInfo - PlayerGui: - superclass: BasePlayerGui - events: - - TopbarTransparencyChangedSignal - properties: - - CurrentScreenOrientation - - ScreenOrientation - - SelectionImageObject - PlayerMouse: - superclass: Mouse - events: [] - properties: [] - PlayerScripts: - superclass: Instance - events: - - ComputerCameraMovementModeRegistered - - ComputerMovementModeRegistered - - TouchCameraMovementModeRegistered - - TouchMovementModeRegistered - properties: [] - Players: - superclass: Instance - events: - - FriendRequestEvent - - GameAnnounce - - PlayerAdded - - PlayerChatted - - PlayerConnecting - - PlayerDisconnecting - - PlayerMembershipChanged - - PlayerRejoining - - PlayerRemoving - properties: - - BubbleChat - - CharacterAutoLoads - - ClassicChat - - LocalPlayer - - MaxPlayers - - MaxPlayersInternal - - NumPlayers - - PreferredPlayers - - PreferredPlayersInternal - - RespawnTime - - UseStrafingAnimations - - localPlayer - - numPlayers - Plugin: - superclass: Instance - events: - - Deactivation - - Ready - - Unloading - properties: - - CollisionEnabled - - GridSize - - HostDataModelType - - HostDataModelTypeIsCurrent - - MultipleDocumentInterfaceInstance - - UsesAssetInsertionDrag - PluginAction: - superclass: Instance - events: - - Triggered - properties: - - ActionId - - AllowBinding - - Checked - - DefaultShortcut - - Enabled - - StatusTip - - Text - PluginDebugService: - superclass: Instance - events: [] - properties: [] - PluginDragEvent: - superclass: Instance - events: [] - properties: - - Data - - MimeType - - Position - - Sender - PluginGui: - superclass: LayerCollector - events: - - PluginDragDropped - - PluginDragEntered - - PluginDragLeft - - PluginDragMoved - - WindowFocusReleased - - WindowFocused - properties: - - Title - PluginGuiService: - superclass: Instance - events: [] - properties: [] - PluginManagementService: - superclass: Instance - events: [] - properties: [] - PluginManager: - superclass: Instance - events: [] - properties: [] - PluginManagerInterface: - superclass: Instance - events: [] - properties: [] - PluginMenu: - superclass: Instance - events: [] - properties: - - Icon - - Title - PluginMouse: - superclass: Mouse - events: - - DragEnter - properties: [] - PluginPolicyService: - superclass: Instance - events: [] - properties: [] - PluginToolbar: - superclass: Instance - events: [] - properties: [] - PluginToolbarButton: - superclass: Instance - events: - - Click - properties: - - ClickableWhenViewportHidden - - Enabled - - Icon - PointLight: - superclass: Light - events: [] - properties: - - Range - PointsService: - superclass: Instance - events: - - PointsAwarded - properties: [] - PolicyService: - superclass: Instance - events: [] - properties: - - IsLuobuServer - - LuobuWhitelisted - Pose: - superclass: PoseBase - events: [] - properties: - - CFrame - - MaskWeight - PoseBase: - superclass: Instance - events: [] - properties: - - EasingDirection - - EasingStyle - - Weight - PostEffect: - superclass: Instance - events: [] - properties: - - Enabled - PrismaticConstraint: - superclass: SlidingBallConstraint - events: [] - properties: [] - ProcessInstancePhysicsService: - superclass: Instance - events: [] - properties: [] - ProximityPrompt: - superclass: Instance - events: - - PromptButtonHoldBegan - - PromptButtonHoldEnded - - PromptHidden - - PromptShown - - TriggerEnded - - Triggered - properties: - - ActionText - - AutoLocalize - - ClickablePrompt - - Enabled - - Exclusivity - - GamepadKeyCode - - HoldDuration - - KeyboardKeyCode - - MaxActivationDistance - - ObjectText - - RequiresLineOfSight - - RootLocalizationTable - - Style - - UIOffset - ProximityPromptService: - superclass: Instance - events: - - PromptButtonHoldBegan - - PromptButtonHoldEnded - - PromptHidden - - PromptShown - - PromptTriggerEnded - - PromptTriggered - properties: - - Enabled - - MaxPromptsVisible - PublishService: - superclass: Instance - events: [] - properties: [] - QWidgetPluginGui: - superclass: PluginGui - events: [] - properties: [] - RayValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - RbxAnalyticsService: - superclass: Instance - events: [] - properties: [] - ReflectionMetadata: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataCallbacks: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataClass: - superclass: ReflectionMetadataItem - events: [] - properties: - - ExplorerImageIndex - - ExplorerOrder - - Insertable - - PreferredParent - - ServiceVisibility - ReflectionMetadataClasses: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataEnum: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataEnumItem: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataEnums: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataEvents: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataFunctions: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataItem: - superclass: Instance - events: [] - properties: - - Browsable - - ClassCategory - - ClientOnly - - Constraint - - Deprecated - - EditingDisabled - - EditorType - - FFlag - - IsBackend - - PropertyOrder - - ScriptContext - - ServerOnly - - SliderScaling - - UIMaximum - - UIMinimum - - UINumTicks - ReflectionMetadataMember: - superclass: ReflectionMetadataItem - events: [] - properties: [] - ReflectionMetadataProperties: - superclass: Instance - events: [] - properties: [] - ReflectionMetadataYieldFunctions: - superclass: Instance - events: [] - properties: [] - RemoteCursorService: - superclass: Instance - events: [] - properties: [] - RemoteDebuggerServer: - superclass: Instance - events: [] - properties: [] - RemoteEvent: - superclass: Instance - events: - - OnClientEvent - - OnServerEvent - properties: [] - RemoteFunction: - superclass: Instance - events: [] - properties: [] - RenderSettings: - superclass: Instance - events: [] - properties: - - AutoFRMLevel - - EagerBulkExecution - - EditQualityLevel - - EnableFRM - - ExportMergeByMaterial - - FrameRateManager - - GraphicsMode - - MeshCacheSize - - MeshPartDetailLevel - - QualityLevel - - ReloadAssets - - RenderCSGTrianglesDebug - - ShowBoundingBoxes - RenderingTest: - superclass: Instance - events: [] - properties: - - CFrame - - ComparisonDiffThreshold - - ComparisonMethod - - ComparisonPsnrThreshold - - Description - - FieldOfView - - Orientation - - Position - - QualityLevel - - ShouldSkip - - Ticket - ReplicatedFirst: - superclass: Instance - events: - - DefaultLoadingGuiRemoved - - FinishedReplicating - - RemoveDefaultLoadingGuiSignal - properties: [] - ReplicatedStorage: - superclass: Instance - events: [] - properties: [] - ReverbSoundEffect: - superclass: SoundEffect - events: [] - properties: - - DecayTime - - Density - - Diffusion - - DryLevel - - WetLevel - RigidConstraint: - superclass: Constraint - events: [] - properties: [] - RobloxPluginGuiService: - superclass: Instance - events: [] - properties: [] - RobloxReplicatedStorage: - superclass: Instance - events: [] - properties: [] - RocketPropulsion: - superclass: BodyMover - events: - - ReachedTarget - properties: - - CartoonFactor - - MaxSpeed - - MaxThrust - - MaxTorque - - Target - - TargetOffset - - TargetRadius - - ThrustD - - ThrustP - - TurnD - - TurnP - RodConstraint: - superclass: Constraint - events: [] - properties: - - CurrentDistance - - Length - - LimitAngle0 - - LimitAngle1 - - LimitsEnabled - - Thickness - RopeConstraint: - superclass: Constraint - events: [] - properties: - - CurrentDistance - - Length - - Restitution - - Thickness - - WinchEnabled - - WinchForce - - WinchResponsiveness - - WinchSpeed - - WinchTarget - Rotate: - superclass: JointInstance - events: [] - properties: [] - RotateP: - superclass: DynamicRotate - events: [] - properties: [] - RotateV: - superclass: DynamicRotate - events: [] - properties: [] - RotationCurve: - superclass: Instance - events: [] - properties: - - Length - RtMessagingService: - superclass: Instance - events: [] - properties: [] - RunService: - superclass: Instance - events: - - Heartbeat - - PostSimulation - - PreAnimation - - PreRender - - PreSimulation - - RenderStepped - - Stepped - properties: - - ClientGitHash - RunningAverageItemDouble: - superclass: StatsItem - events: [] - properties: [] - RunningAverageItemInt: - superclass: StatsItem - events: [] - properties: [] - RunningAverageTimeIntervalItem: - superclass: StatsItem - events: [] - properties: [] - RuntimeScriptService: - superclass: Instance - events: [] - properties: [] - SafetyService: - superclass: Instance - events: - - ScreenshotContentReady - - ScreenshotUploaded - properties: [] - ScreenGui: - superclass: LayerCollector - events: [] - properties: - - ClipToDeviceSafeArea - - DisplayOrder - - IgnoreGuiInset - - OnTopOfCoreBlur - - SafeAreaCompatibility - - ScreenInsets - ScreenshotHud: - superclass: Instance - events: [] - properties: - - CameraButtonIcon - - CameraButtonPosition - - CloseButtonPosition - - CloseWhenScreenshotTaken - - ExperienceNameOverlayEnabled - - OverlayFont - - UsernameOverlayEnabled - - Visible - Script: - superclass: BaseScript - events: [] - properties: - - Source - ScriptBuilder: - superclass: Instance - events: [] - properties: [] - ScriptChangeService: - superclass: Instance - events: - - ScriptAdded - - ScriptBeingRemoved - - ScriptChanged - - ScriptFullNameChanged - - ScriptSourceChanged - properties: [] - ScriptCloneWatcher: - superclass: Instance - events: [] - properties: [] - ScriptCloneWatcherHelper: - superclass: Instance - events: [] - properties: [] - ScriptContext: - superclass: Instance - events: - - Error - - ErrorDetailed - properties: - - ScriptsDisabled - ScriptDebugger: - superclass: Instance - events: - - BreakpointAdded - - BreakpointRemoved - - EncounteredBreak - - Resuming - - WatchAdded - - WatchRemoved - properties: - - CurrentLine - - IsDebugging - - IsPaused - - Script - ScriptDocument: - superclass: Instance - events: - - SelectionChanged - - ViewportChanged - properties: [] - ScriptEditorService: - superclass: Instance - events: - - TextDocumentDidChange - - TextDocumentDidClose - - TextDocumentDidOpen - properties: [] - ScriptRegistrationService: - superclass: Instance - events: [] - properties: [] - ScriptRuntime: - superclass: Instance - events: [] - properties: [] - ScriptService: - superclass: Instance - events: [] - properties: [] - ScrollingFrame: - superclass: GuiObject - events: [] - properties: - - AbsoluteCanvasSize - - AbsoluteWindowSize - - AutomaticCanvasSize - - BottomImage - - CanvasPosition - - CanvasSize - - ElasticBehavior - - HorizontalBarRect - - HorizontalScrollBarInset - - MaxCanvasPosition - - MidImage - - ScrollBarImageColor3 - - ScrollBarImageTransparency - - ScrollBarThickness - - ScrollVelocity - - ScrollingDirection - - ScrollingEnabled - - TopImage - - VerticalBarRect - - VerticalScrollBarInset - - VerticalScrollBarPosition - Seat: - superclass: Part - events: [] - properties: - - Disabled - - Occupant - Selection: - superclass: Instance - events: - - SelectionChanged - properties: - - ActiveInstance - - SelectionBoxThickness - - SelectionLineThickness - - SelectionThickness - - ShowBoundingBox - SelectionBox: - superclass: InstanceAdornment - events: [] - properties: - - LineThickness - - StudioSelectionBox - - SurfaceColor - - SurfaceColor3 - - SurfaceTransparency - SelectionHighlightManager: - superclass: Instance - events: [] - properties: [] - SelectionLasso: - superclass: GuiBase3d - events: [] - properties: - - Humanoid - SelectionPartLasso: - superclass: SelectionLasso - events: [] - properties: - - Part - SelectionPointLasso: - superclass: SelectionLasso - events: [] - properties: - - Point - SelectionSphere: - superclass: PVAdornment - events: [] - properties: - - SurfaceColor - - SurfaceColor3 - - SurfaceTransparency - SensorBase: - superclass: Instance - events: - - OnSensorOutputChanged - properties: - - UpdateType - ServerReplicator: - superclass: NetworkReplicator - events: [] - properties: [] - ServerScriptService: - superclass: Instance - events: [] - properties: - - LoadStringEnabled - ServerStorage: - superclass: Instance - events: [] - properties: [] - ServiceProvider: - superclass: Instance - events: - - Close - - CloseLate - - ServiceAdded - - ServiceRemoving - properties: [] - ServiceVisibilityService: - superclass: Instance - events: [] - properties: - - VisibleServices - SessionService: - superclass: Instance - events: [] - properties: [] - SharedTableRegistry: - superclass: Instance - events: [] - properties: [] - Shirt: - superclass: Clothing - events: [] - properties: - - ShirtTemplate - ShirtGraphic: - superclass: CharacterAppearance - events: [] - properties: - - Color3 - - Graphic - ShorelineUpgraderService: - superclass: Instance - events: - - Status - properties: [] - SkateboardController: - superclass: Controller - events: - - AxisChanged - properties: - - Steer - - Throttle - SkateboardPlatform: - superclass: Part - events: - - Equipped - - MoveStateChanged - - Unequipped - - equipped - - unequipped - properties: - - Controller - - ControllingHumanoid - - Steer - - StickyWheels - - Throttle - Skin: - superclass: CharacterAppearance - events: [] - properties: - - SkinColor - Sky: - superclass: Instance - events: [] - properties: - - CelestialBodiesShown - - MoonAngularSize - - MoonTextureId - - SkyboxBk - - SkyboxDn - - SkyboxFt - - SkyboxLf - - SkyboxRt - - SkyboxUp - - StarCount - - SunAngularSize - - SunTextureId - SlidingBallConstraint: - superclass: Constraint - events: [] - properties: - - ActuatorType - - CurrentPosition - - LimitsEnabled - - LinearResponsiveness - - LowerLimit - - MotorMaxAcceleration - - MotorMaxForce - - Restitution - - ServoMaxForce - - Size - - Speed - - TargetPosition - - UpperLimit - - Velocity - Smoke: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - Opacity - - RiseVelocity - - Size - - TimeScale - SmoothVoxelsUpgraderService: - superclass: Instance - events: - - Status - properties: [] - Snap: - superclass: JointInstance - events: [] - properties: [] - SnippetService: - superclass: Instance - events: [] - properties: [] - SocialService: - superclass: Instance - events: - - GameInvitePromptClosed - - PromptInviteRequested - properties: [] - SolidModelContentProvider: - superclass: CacheableContentProvider - events: [] - properties: [] - Sound: - superclass: Instance - events: - - DidLoop - - Ended - - Loaded - - Paused - - Played - - Resumed - - Stopped - properties: - - ChannelCount - - EmitterSize - - IsLoaded - - IsPaused - - IsPlaying - - IsSpatial - - LoopRegion - - Looped - - MaxDistance - - MinDistance - - Pitch - - PlayOnRemove - - PlaybackLoudness - - PlaybackRegion - - PlaybackRegionsEnabled - - PlaybackSpeed - - Playing - - RollOffGain - - RollOffMaxDistance - - RollOffMinDistance - - RollOffMode - - SoundGroup - - SoundId - - TimeLength - - TimePosition - - UsageContextPermission - - Volume - - isPlaying - SoundEffect: - superclass: Instance - events: [] - properties: - - Enabled - - Priority - SoundGroup: - superclass: Instance - events: [] - properties: - - Volume - SoundService: - superclass: Instance - events: - - DeviceListChanged - properties: - - AmbientReverb - - DistanceFactor - - DopplerScale - - RespectFilteringEnabled - - RolloffScale - - VolumetricAudio - Sparkles: - superclass: Instance - events: [] - properties: - - Color - - Enabled - - SparkleColor - - TimeScale - SpawnLocation: - superclass: Part - events: [] - properties: - - AllowTeamChangeOnTouch - - Duration - - Enabled - - Neutral - - TeamColor - SpawnerService: - superclass: Instance - events: [] - properties: [] - Speaker: - superclass: Instance - events: [] - properties: - - ChannelCount - - PlaybackLoudness - - RollOffMaxDistance - - RollOffMinDistance - - RollOffMode - - SoundGroup - - Source - - Volume - SpecialMesh: - superclass: FileMesh - events: [] - properties: - - MeshType - SphereHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Radius - SpotLight: - superclass: Light - events: [] - properties: - - Angle - - Face - - Range - SpringConstraint: - superclass: Constraint - events: [] - properties: - - Coils - - CurrentLength - - Damping - - FreeLength - - LimitsEnabled - - MaxForce - - MaxLength - - MinLength - - Radius - - Stiffness - - Thickness - StackFrame: - superclass: Instance - events: [] - properties: - - FrameId - - FrameName - - FrameType - - Globals - - Line - - Locals - - Populated - - Script - - Upvalues - StandalonePluginScripts: - superclass: Instance - events: [] - properties: [] - StandardPages: - superclass: Pages - events: [] - properties: [] - StarterCharacterScripts: - superclass: StarterPlayerScripts - events: [] - properties: [] - StarterGear: - superclass: Instance - events: [] - properties: [] - StarterGui: - superclass: BasePlayerGui - events: - - CoreGuiChangedSignal - properties: - - ProcessUserInput - - ResetPlayerGuiOnSpawn - - RtlTextSupport - - ScreenOrientation - - ShowDevelopmentGui - - VirtualCursorMode - StarterPack: - superclass: Instance - events: [] - properties: [] - StarterPlayer: - superclass: Instance - events: [] - properties: - - AllowCustomAnimations - - AutoJumpEnabled - - CameraMaxZoomDistance - - CameraMinZoomDistance - - CameraMode - - CharacterJumpHeight - - CharacterJumpPower - - CharacterMaxSlopeAngle - - CharacterUseJumpPower - - CharacterWalkSpeed - - DevCameraOcclusionMode - - DevComputerCameraMovementMode - - DevComputerMovementMode - - DevTouchCameraMovementMode - - DevTouchMovementMode - - EnableDynamicHeads - - EnableMouseLockOption - - GameSettingsAssetIDFace - - GameSettingsAssetIDHead - - GameSettingsAssetIDLeftArm - - GameSettingsAssetIDLeftLeg - - GameSettingsAssetIDPants - - GameSettingsAssetIDRightArm - - GameSettingsAssetIDRightLeg - - GameSettingsAssetIDShirt - - GameSettingsAssetIDTeeShirt - - GameSettingsAssetIDTorso - - GameSettingsAvatar - - GameSettingsR15Collision - - GameSettingsScaleRangeBodyType - - GameSettingsScaleRangeHead - - GameSettingsScaleRangeHeight - - GameSettingsScaleRangeProportion - - GameSettingsScaleRangeWidth - - HealthDisplayDistance - - HumanoidStateMachineMode - - LoadCharacterAppearance - - 'LoadCharacterLayeredClothing ' - - NameDisplayDistance - - UserEmotesEnabled - StarterPlayerScripts: - superclass: Instance - events: [] - properties: [] - Stats: - superclass: Instance - events: [] - properties: - - ContactsCount - - DataReceiveKbps - - DataSendKbps - - HeartbeatTimeMs - - InstanceCount - - MovingPrimitivesCount - - PhysicsReceiveKbps - - PhysicsSendKbps - - PhysicsStepTimeMs - - PrimitivesCount - StatsItem: - superclass: Instance - events: [] - properties: - - DisplayName - Status: - superclass: Model - events: [] - properties: [] - StringValue: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - Studio: - superclass: Instance - events: - - ThemeChanged - properties: - - '"TODO" Color' - - '"function" Color' - - '"local" Color' - - '"nil" Color' - - '"self" Color' - - Active Color - - Active Hover Over Color - - Always Save Script Changes - - Animate Hover Over - - Auto Clean Empty Line - - Auto Closing Brackets - - Auto Closing Quotes - - Auto Delete Closing Brackets and Quotes - - Auto Indent Rule - - Auto-Recovery Enabled - - Auto-Recovery Interval (Minutes) - - Auto-Recovery Path - - Automatically commit locked scripts when you save or publish to Roblox - - Background Color - - Basic Objects Display Mode - - Bool Color - - Bracket Color - - Built-in Function Color - - Camera Mouse Wheel Speed - - Camera Pan Speed - - Camera Shift Speed - - Camera Speed - - Camera Zoom to Mouse Position - - Clear Output On Start - - CommandBarLocalState - - Comment Color - - Current Line Highlight Color - - Debugger Current Line Color - - Debugger Error Line Color - - DefaultScriptFileDir - - DeprecatedObjectsShown - - Display Team Create toggle when creating a new experience - - DisplayLanguage - - Doc View Code Background Color - - Drag Multiple Parts As Single Part - - Enable Autocomplete - - Enable Autocomplete Doc View - - Enable CoreScript Debugger - - Enable Http Sandboxing - - Enable Internal Beta Features - - Enable Internal Features - - Enable Script Analysis - - Enable Scrollbar Markers - - Enable Signature Help - - Enable Signature Help Doc View - - Enable Temporary Tabs - - Enable Temporary Tabs In Explorer - - Enable Type Hover - - EnableOnTypeAutocomplete - - Error Color - - File > New creates a place with Team Create off - - Find Selection Background Color - - Font - - Format On Paste - - Format On Type - - Function Name Color - - Highlight Current Line - - Highlight Occurances - - Hover Animate Speed - - Hover Box Thickness - - Hover Line Thickness - - Hover Over Color - - IconOverrideDir - - Indent Using Spaces - - Keyword Color - - Line Thickness - - LocalAssetsFolder - - LuaDebuggerEnabled - - LuaDebuggerEnabledAtStartup - - Luau Keyword Color - - Main Volume - - Matching Word Background Color - - Maximum Output Lines - - Menu Item Background Color - - Method Color - - Number Color - - Only Play Audio from Window in Focus - - Operator Color - - Output Font - - Output Layout Mode - - PermissionLevelShown - - Physical Draggers Select Scope By Default - - Pivot Snap To Geometry Color - - PluginDebuggingEnabled - - PluginsDir - - Primary Text Color - - Property Color - - Render Throttle Percentage - - Respect Studio shortcuts when game has focus - - Ruler Color - - Rulers - - RuntimeUndoBehavior - - Script Editor Color Preset - - Script Editor Scrollbar Background Color - - Script Editor Scrollbar Handle Color - - ScriptEditorMenuBorderColor - - ScriptEditorShouldShowPluginMethods - - ScriptTimeoutLength - - Scroll Past Last Line - - Search Content For Core Scripts - - Secondary Text Color - - Select Color - - Select/Hover Color - - Selected Menu Item Background Color - - Selected Text Color - - Selection Background Color - - Selection Box Thickness - - Selection Color - - Selection Highlight Thickness - - Selection Line Thickness - - Server Audio Behavior - - Set Pivot of Imported Parts - - Show Core GUI in Explorer while Playing - - Show Diagnostics Bar - - Show FileSyncService - - Show Hidden Objects in Explorer - - Show Hover Over - - Show Light Guides - - Show Navigation Labels - - Show Navigation Mesh - - Show Pathfinding Links - - Show Plugin GUI Service in Explorer - - Show QT warnings in output - - Show Whitespace - - Show plus button on hover in Explorer - - ShowCorePackagesInExplorer - - Skip Closing Brackets and Quotes - - String Color - - Tab Width - - Text Color - - Text Wrapping - - Theme - - UI Theme - - Use Bounding Box Move Handles - - Warning Color - - Whitespace Color - StudioAssetService: - superclass: Instance - events: - - OnConvertToPackageResult - - OnPublishPackageResult - - OnSaveToRoblox - properties: [] - StudioData: - superclass: Instance - events: [] - properties: - - EnableScriptCollabByDefaultOnLoad - StudioDeviceEmulatorService: - superclass: Instance - events: - - CurrentDeviceIdChanged - - OrientationChanged - - TouchInBoundsChanged - - TouchPositionsChanged - properties: - - HasMultiTouchStarted - - IsMultiTouchEmulationOn - - IsMultiTouchEnabled - - PivotPosition - StudioPublishService: - superclass: Instance - events: - - GameNameUpdated - - GamePublishCancelled - - GamePublishFinished - - OnSaveOrPublishPlaceToRoblox - properties: [] - StudioScriptDebugEventListener: - superclass: Instance - events: [] - properties: [] - StudioSdkService: - superclass: Instance - events: [] - properties: [] - StudioService: - superclass: Instance - events: - - OnImportFromRoblox - - OnOpenGameSettings - - OnOpenManagePackagePlugin - - OnPluginInstalledFromToolbox - - OnPluginInstalledFromWeb - - OnPublishAsPlugin - - OnSaveToRoblox - - PromptTransformPluginCheckEnable - - SaveLocallyAsComplete - properties: - - ActiveScript - - AlignDraggedObjects - - DraggerSolveConstraints - - DrawConstraintsOnTop - - GridSize - - HoverInstance - - InstalledPluginData - - PivotSnapToGeometry - - RotateIncrement - - ShowActiveInstanceHighlight - - ShowConstraintDetails - - StudioLocaleId - - UseLocalSpace - StudioTheme: - superclass: Instance - events: [] - properties: [] - SunRaysEffect: - superclass: PostEffect - events: [] - properties: - - Intensity - - Spread - SurfaceAppearance: - superclass: Instance - events: [] - properties: - - AlphaMode - - ColorMap - - MetalnessMap - - NormalMap - - RoughnessMap - - TexturePack - SurfaceGui: - superclass: SurfaceGuiBase - events: [] - properties: - - AlwaysOnTop - - Brightness - - CanvasSize - - ClipsDescendants - - HorizontalCurvature - - LightInfluence - - PixelsPerStud - - Shape - - SizingMode - - ToolPunchThroughDistance - - ZOffset - SurfaceGuiBase: - superclass: LayerCollector - events: [] - properties: - - Active - - Adornee - - Face - SurfaceLight: - superclass: Light - events: [] - properties: - - Angle - - Face - - Range - SurfaceSelection: - superclass: PartAdornment - events: [] - properties: - - TargetSurface - SwimController: - superclass: ControllerBase - events: [] - properties: - - AccelerationTime - - PitchMaxTorque - - PitchSpeedFactor - - RollMaxTorque - - RollSpeedFactor - SyncScriptBuilder: - superclass: ScriptBuilder - events: [] - properties: - - CoverageInfo - - DebugInfo - - PackAsSource - - RawBytecode - TaskScheduler: - superclass: Instance - events: [] - properties: - - SchedulerDutyCycle - - SchedulerRate - - ThreadPoolConfig - - ThreadPoolSize - Team: - superclass: Instance - events: - - PlayerAdded - - PlayerRemoved - properties: - - AutoAssignable - - AutoColorCharacters - - ChildOrder - - Score - - TeamColor - TeamCreateData: - superclass: Instance - events: [] - properties: [] - TeamCreatePublishService: - superclass: Instance - events: [] - properties: [] - TeamCreateService: - superclass: Instance - events: - - ToggleManageCollaborators - properties: [] - Teams: - superclass: Instance - events: [] - properties: [] - TeleportAsyncResult: - superclass: Instance - events: [] - properties: - - PrivateServerId - - ReservedServerAccessCode - TeleportOptions: - superclass: Instance - events: [] - properties: - - ReservedServerAccessCode - - ServerInstanceId - - ShouldReserveServer - TeleportService: - superclass: Instance - events: - - LocalPlayerArrivedFromTeleport - - MenuTeleportAttempt - - TeleportInitFailed - properties: - - CustomizedTeleportUI - TemporaryCageMeshProvider: - superclass: Instance - events: [] - properties: [] - TemporaryScriptService: - superclass: Instance - events: [] - properties: [] - Terrain: - superclass: BasePart - events: [] - properties: - - Decoration - - IsSmooth - - LastUsedModificationMethod - - MaterialColors - - MaxExtents - - ShorelinesUpgraded - - SmoothVoxelsUpgraded - - WaterColor - - WaterReflectance - - WaterTransparency - - WaterWaveSize - - WaterWaveSpeed - TerrainDetail: - superclass: Instance - events: [] - properties: - - ColorMap - - Face - - MaterialPattern - - MetalnessMap - - NormalMap - - RoughnessMap - - StudsPerTile - TerrainRegion: - superclass: Instance - events: [] - properties: - - IsSmooth - - SizeInCells - TestService: - superclass: Instance - events: - - ServerCollectConditionalResult - - ServerCollectResult - properties: - - AutoRuns - - Description - - ErrorCount - - ExecuteWithStudioRun - - Is30FpsThrottleEnabled - - IsPhysicsEnvironmentalThrottled - - IsSleepAllowed - - NumberOfPlayers - - SimulateSecondsLag - - TestCount - - Timeout - - WarnCount - TextBox: - superclass: GuiObject - events: - - FocusLost - - Focused - - ReturnPressedFromOnScreenKeyboard - properties: - - ClearTextOnFocus - - ContentText - - CursorPosition - - Font - - FontFace - - FontSize - - LineHeight - - ManualFocusRelease - - MaxVisibleGraphemes - - MultiLine - - OverlayNativeInput - - PlaceholderColor3 - - PlaceholderText - - ReturnKeyType - - RichText - - SelectionStart - - ShowNativeInput - - Text - - TextBounds - - TextColor - - TextColor3 - - TextEditable - - TextFits - - TextInputType - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextBoxService: - superclass: Instance - events: [] - properties: [] - TextButton: - superclass: GuiButton - events: [] - properties: - - ContentText - - Font - - FontFace - - FontSize - - LineHeight - - LocalizedText - - MaxVisibleGraphemes - - RichText - - Text - - TextBounds - - TextColor - - TextColor3 - - TextFits - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextChannel: - superclass: Instance - events: - - MessageReceived - properties: [] - TextChatCommand: - superclass: Instance - events: - - Triggered - properties: - - Enabled - - PrimaryAlias - - SecondaryAlias - TextChatConfigurations: - superclass: Instance - events: [] - properties: [] - TextChatMessage: - superclass: Instance - events: [] - properties: - - MessageId - - Metadata - - PrefixText - - Status - - Text - - TextChannel - - TextSource - - Timestamp - TextChatMessageProperties: - superclass: Instance - events: [] - properties: - - PrefixText - - Text - TextChatService: - superclass: Instance - events: - - MessageReceived - - SendingMessage - properties: - - ChatVersion - - CreateDefaultCommands - - CreateDefaultTextChannels - TextFilterResult: - superclass: Instance - events: [] - properties: [] - TextLabel: - superclass: GuiLabel - events: [] - properties: - - ContentText - - Font - - FontFace - - FontSize - - LineHeight - - LocalizedText - - MaxVisibleGraphemes - - RichText - - Text - - TextBounds - - TextColor - - TextColor3 - - TextFits - - TextScaled - - TextSize - - TextStrokeColor3 - - TextStrokeTransparency - - TextTransparency - - TextTruncate - - TextWrap - - TextWrapped - - TextXAlignment - - TextYAlignment - TextService: - superclass: Instance - events: [] - properties: [] - TextSource: - superclass: Instance - events: [] - properties: - - CanSend - - UserId - Texture: - superclass: Decal - events: [] - properties: - - OffsetStudsU - - OffsetStudsV - - StudsPerTileU - - StudsPerTileV - TextureGuiExperimental: - superclass: LayerCollector - events: [] - properties: - - Size - - TemporaryId - ThirdPartyUserService: - superclass: Instance - events: - - ActiveGamepadAdded - - ActiveGamepadRemoved - - ActiveUserSignedOut - properties: [] - ThreadState: - superclass: Instance - events: [] - properties: - - FrameCount - - Populated - - ThreadId - - ThreadName - TimerService: - superclass: Instance - events: [] - properties: [] - ToastNotificationService: - superclass: Instance - events: [] - properties: [] - Tool: - superclass: BackpackItem - events: - - Activated - - Deactivated - - Equipped - - Unequipped - properties: - - CanBeDropped - - Enabled - - Grip - - GripForward - - GripPos - - GripRight - - GripUp - - ManualActivationOnly - - RequiresHandle - - ToolTip - Torque: - superclass: Constraint - events: [] - properties: - - RelativeTo - - Torque - TorsionSpringConstraint: - superclass: Constraint - events: [] - properties: - - Coils - - CurrentAngle - - Damping - - LimitEnabled - - LimitsEnabled - - MaxAngle - - MaxTorque - - Radius - - Restitution - - Stiffness - TotalCountTimeIntervalItem: - superclass: StatsItem - events: [] - properties: [] - TouchInputService: - superclass: Instance - events: [] - properties: [] - TouchTransmitter: - superclass: Instance - events: [] - properties: [] - TracerService: - superclass: Instance - events: [] - properties: [] - TrackerLodController: - superclass: Instance - events: - - UpdateState - properties: - - AudioMode - - VideoExtrapolationMode - - VideoLodMode - - VideoMode - TrackerStreamAnimation: - superclass: Instance - events: [] - properties: [] - Trail: - superclass: Instance - events: [] - properties: - - Attachment0 - - Attachment1 - - Brightness - - Color - - Enabled - - FaceCamera - - Lifetime - - LightEmission - - LightInfluence - - MaxLength - - MinLength - - Texture - - TextureLength - - TextureMode - - Transparency - - WidthScale - Translator: - superclass: Instance - events: [] - properties: - - LocaleId - TremoloSoundEffect: - superclass: SoundEffect - events: [] - properties: - - Depth - - Duty - - Frequency - TriangleMeshPart: - superclass: BasePart - events: [] - properties: - - CollisionFidelity - - MeshSize - TrussPart: - superclass: BasePart - events: [] - properties: - - Style - Tween: - superclass: TweenBase - events: [] - properties: - - Instance - - TweenInfo - TweenBase: - superclass: Instance - events: - - Completed - properties: - - PlaybackState - TweenService: - superclass: Instance - events: [] - properties: [] - UGCValidationService: - superclass: Instance - events: [] - properties: [] - UIAspectRatioConstraint: - superclass: UIConstraint - events: [] - properties: - - AspectRatio - - AspectType - - DominantAxis - UIBase: - superclass: Instance - events: [] - properties: [] - UIComponent: - superclass: UIBase - events: [] - properties: [] - UIConstraint: - superclass: UIComponent - events: [] - properties: [] - UICorner: - superclass: UIComponent - events: [] - properties: - - CornerRadius - UIGradient: - superclass: UIComponent - events: [] - properties: - - Color - - Enabled - - Offset - - Rotation - - Transparency - UIGridLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - AbsoluteCellCount - - AbsoluteCellSize - - CellPadding - - CellSize - - FillDirectionMaxCells - - StartCorner - UIGridStyleLayout: - superclass: UILayout - events: [] - properties: - - AbsoluteContentSize - - FillDirection - - HorizontalAlignment - - SortOrder - - VerticalAlignment - UILayout: - superclass: UIComponent - events: [] - properties: [] - UIListLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - Padding - UIPadding: - superclass: UIComponent - events: [] - properties: - - PaddingBottom - - PaddingLeft - - PaddingRight - - PaddingTop - UIPageLayout: - superclass: UIGridStyleLayout - events: - - PageEnter - - PageLeave - - Stopped - properties: - - Animated - - Circular - - CurrentPage - - EasingDirection - - EasingStyle - - GamepadInputEnabled - - Padding - - ScrollWheelInputEnabled - - TouchInputEnabled - - TweenTime - UIScale: - superclass: UIComponent - events: [] - properties: - - Scale - UISizeConstraint: - superclass: UIConstraint - events: [] - properties: - - MaxSize - - MinSize - UIStroke: - superclass: UIComponent - events: [] - properties: - - ApplyStrokeMode - - Color - - Enabled - - LineJoinMode - - Thickness - - Transparency - UITableLayout: - superclass: UIGridStyleLayout - events: [] - properties: - - FillEmptySpaceColumns - - FillEmptySpaceRows - - MajorAxis - - Padding - UITextSizeConstraint: - superclass: UIConstraint - events: [] - properties: - - MaxTextSize - - MinTextSize - UnionOperation: - superclass: PartOperation - events: [] - properties: [] - UniversalConstraint: - superclass: Constraint - events: [] - properties: - - LimitsEnabled - - MaxAngle - - Radius - - Restitution - UnvalidatedAssetService: - superclass: Instance - events: [] - properties: [] - UserGameSettings: - superclass: Instance - events: - - FullscreenChanged - - PerformanceStatsVisibleChanged - - StudioModeChanged - properties: - - AllTutorialsDisabled - - CameraMode - - CameraYInverted - - ChatVisible - - ComputerCameraMovementMode - - ComputerMovementMode - - ControlMode - - DefaultCameraID - - Fullscreen - - GamepadCameraSensitivity - - GraphicsQualityLevel - - HasEverUsedVR - - IsUsingCameraYInverted - - IsUsingGamepadCameraSensitivity - - MasterVolume - - MicroProfilerWebServerEnabled - - MicroProfilerWebServerIP - - MicroProfilerWebServerPort - - MouseSensitivity - - MouseSensitivityFirstPerson - - MouseSensitivityThirdPerson - - OnScreenProfilerEnabled - - OnboardingsCompleted - - PerformanceStatsVisible - - PlayerHeight - - RCCProfilerRecordFrameRate - - RCCProfilerRecordTimeFrame - - RotationType - - SavedQualityLevel - - StartMaximized - - StartScreenPosition - - StartScreenSize - - TouchCameraMovementMode - - TouchMovementMode - - UsedCoreGuiIsVisibleToggle - - UsedCustomGuiIsVisibleToggle - - UsedHideHudShortcut - - VREnabled - - VRPlayMode - - VRRotationIntensity - - VRSafetyBubbleMode - - VRSmoothRotationEnabled - - VignetteEnabled - UserInputService: - superclass: Instance - events: - - DeviceAccelerationChanged - - DeviceGravityChanged - - DeviceRotationChanged - - GamepadConnected - - GamepadDisconnected - - InputBegan - - InputChanged - - InputEnded - - JumpRequest - - LastInputTypeChanged - - PointerAction - - StatusBarTapped - - TextBoxFocusReleased - - TextBoxFocused - - TouchEnded - - TouchLongPress - - TouchMoved - - TouchPan - - TouchPinch - - TouchRotate - - TouchStarted - - TouchSwipe - - TouchTap - - TouchTapInWorld - - UserCFrameChanged - - WindowFocusReleased - - WindowFocused - properties: - - AccelerometerEnabled - - BottomBarSize - - GamepadEnabled - - GazeSelectionEnabled - - GyroscopeEnabled - - KeyboardEnabled - - LegacyInputEventsEnabled - - ModalEnabled - - MouseBehavior - - MouseDeltaSensitivity - - MouseEnabled - - MouseIcon - - MouseIconEnabled - - NavBarSize - - OnScreenKeyboardAnimationDuration - - OnScreenKeyboardPosition - - OnScreenKeyboardSize - - OnScreenKeyboardVisible - - OverrideMouseIconBehavior - - RightBarSize - - StatusBarSize - - TouchEnabled - - UserHeadCFrame - - VREnabled - UserService: - superclass: Instance - events: [] - properties: [] - UserSettings: - superclass: GenericSettings - events: [] - properties: [] - UserStorageService: - superclass: LocalStorageService - events: [] - properties: [] - VRService: - superclass: Instance - events: - - NavigationRequested - - TouchpadModeChanged - - UserCFrameChanged - - UserCFrameEnabled - properties: - - AutomaticScaling - - DidPointerHit - - FadeOutViewOnCollision - - GuiInputUserCFrame - - LaserDistance - - PointerHitCFrame - - VRDeviceAvailable - - VRDeviceName - - VREnabled - - VRSessionState - ValueBase: - superclass: Instance - events: [] - properties: [] - Vector3Curve: - superclass: Instance - events: [] - properties: [] - Vector3Value: - superclass: ValueBase - events: - - Changed - - changed - properties: - - Value - VectorForce: - superclass: Constraint - events: [] - properties: - - ApplyAtCenterOfMass - - Force - - RelativeTo - VehicleController: - superclass: Controller - events: [] - properties: [] - VehicleSeat: - superclass: BasePart - events: [] - properties: - - AreHingesDetected - - Disabled - - HeadsUpDisplay - - MaxSpeed - - Occupant - - Steer - - SteerFloat - - Throttle - - ThrottleFloat - - Torque - - TurnSpeed - VelocityMotor: - superclass: JointInstance - events: [] - properties: - - CurrentAngle - - DesiredAngle - - Hole - - MaxVelocity - VersionControlService: - superclass: Instance - events: [] - properties: - - ScriptCollabEnabled - VideoCaptureService: - superclass: Instance - events: - - DevicesChanged - - Error - - Started - - Stopped - properties: - - Active - - CameraID - VideoFrame: - superclass: GuiObject - events: - - DidLoop - - Ended - - Loaded - - Paused - - Played - properties: - - IsLoaded - - Looped - - Playing - - Resolution - - TimeLength - - TimePosition - - Video - - Volume - ViewportFrame: - superclass: GuiObject - events: [] - properties: - - Ambient - - CurrentCamera - - ImageColor3 - - ImageTransparency - - IsMirrored - - LightColor - - LightDirection - VirtualInputManager: - superclass: Instance - events: - - PlaybackCompleted - - RecordingCompleted - properties: - - AdditionalLuaState - VirtualUser: - superclass: Instance - events: [] - properties: [] - VisibilityCheckDispatcher: - superclass: Instance - events: [] - properties: [] - VisibilityService: - superclass: Instance - events: [] - properties: [] - Visit: - superclass: Instance - events: [] - properties: [] - VoiceChatInternal: - superclass: Instance - events: - - LocalPlayerModerated - - ParticipantsStateChanged - - PlayerMicActivitySignalChange - - StateChanged - properties: - - VoiceChatState - VoiceChatService: - superclass: Instance - events: [] - properties: - - EnableDefaultVoice - - VoiceChatEnabledForPlaceOnRcc - - VoiceChatEnabledForUniverseOnRcc - VoiceSource: - superclass: Instance - events: [] - properties: - - UserId - WedgePart: - superclass: FormFactorPart - events: [] - properties: [] - Weld: - superclass: JointInstance - events: [] - properties: [] - WeldConstraint: - superclass: Instance - events: [] - properties: - - Active - - Enabled - - Part0 - - Part1 - WireframeHandleAdornment: - superclass: HandleAdornment - events: [] - properties: - - Scale - Workspace: - superclass: WorldRoot - events: - - PersistentLoaded - properties: - - AllowThirdPartySales - - ClientAnimatorThrottling - - CurrentCamera - - DistributedGameTime - - FallenPartsDestroyHeight - - FilteringEnabled - - GlobalWind - - Gravity - - HumanoidOnlySetCollisionsOnStateChange - - InterpolationThrottling - - MeshPartHeadsAndAccessories - - PhysicsSteppingMethod - - RejectCharacterDeletions - - ReplicateInstanceDestroySetting - - Retargeting - - SignalBehavior - - StreamOutBehavior - - StreamingEnabled - - StreamingIntegrityMode - - StreamingMinRadius - - StreamingTargetRadius - - Terrain - - TouchesUseCollisionGroups - WorldModel: - superclass: WorldRoot - events: [] - properties: [] - WorldRoot: - superclass: Model - events: [] - properties: [] - WrapLayer: - superclass: BaseWrap - events: [] - properties: - - AutoSkin - - BindOffset - - Color - - DebugMode - - Enabled - - Order - - Puffiness - - ReferenceMeshId - - ReferenceOrigin - - ReferenceOriginWorld - - ShrinkFactor - WrapTarget: - superclass: BaseWrap - events: [] - properties: - - Color - - DebugMode - - Stiffness diff --git a/Modules/Windline/selene.toml b/Modules/Windline/selene.toml deleted file mode 100644 index 1f1e170..0000000 --- a/Modules/Windline/selene.toml +++ /dev/null @@ -1 +0,0 @@ -std = "roblox" \ No newline at end of file diff --git a/README.md b/README.md index 946b7d7..d98c510 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,25 @@ -# Package Index - -

- - +

+

+ welcome-there

+
+
    + +

    Wally Packages

    +
    +
+
+
-A simple mono-repository containing all open sourced/available packages i've uploaded to the Wally package manager - -- https://wally.run/ +Documentation Workflow +Binaries Workflow +Lint, TypeCheck & Test Workflow -## Documentation +### About +A mono repository containing the packages I create for the Roblox platform. +#### Documentation Documentation for this repository is housed in a seperate repository for the sake of simplicity, the documentation site is hosted with Vercel and the technology powering it is Nextra. -- Documentation Repository: https://github.com/4x8Matrix/Package-Index-Site -- Documentation URL: https://docs.asyncmatrix.dev/ +- Documentation Repository: https://github.com/4x8Matrix/wally-packages-site +- Documentation URL: https://wally.asyncmatrix.dev/ \ No newline at end of file diff --git a/aftman.toml b/aftman.toml deleted file mode 100644 index 01da0eb..0000000 --- a/aftman.toml +++ /dev/null @@ -1,11 +0,0 @@ -# This file lists tools managed by Aftman, a cross-platform toolchain manager. -# For more information, see https://github.com/LPGhatguy/aftman - -# To add a new tool, add an entry to this table. - -[tools] -luaulsp = "JohnnyMorganz/luau-lsp@1.24.1" -lune = "filiptibell/lune@0.7.11" -selene = "Kampfkarren/selene@0.26.1" -wally = "UpliftGames/wally@0.3.2" -rojo = "rojo-rbx/rojo@7.3.0" \ No newline at end of file diff --git a/binaries/camera_profiler.rbxm b/binaries/camera_profiler.rbxm new file mode 100644 index 0000000..c8847e8 Binary files /dev/null and b/binaries/camera_profiler.rbxm differ diff --git a/binaries/console.rbxm b/binaries/console.rbxm new file mode 100644 index 0000000..df27102 Binary files /dev/null and b/binaries/console.rbxm differ diff --git a/boilerplate/.vscode/settings.json b/boilerplate/.vscode/settings.json new file mode 100644 index 0000000..46434d2 --- /dev/null +++ b/boilerplate/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "luau-lsp.sourcemap.rojoProjectFile": "development.project.json", +} \ No newline at end of file diff --git a/boilerplate/README.md b/boilerplate/README.md new file mode 100644 index 0000000..5aba64e --- /dev/null +++ b/boilerplate/README.md @@ -0,0 +1 @@ +# Package Boilerplate \ No newline at end of file diff --git a/boilerplate/default.project.json b/boilerplate/default.project.json new file mode 100644 index 0000000..d28e23d --- /dev/null +++ b/boilerplate/default.project.json @@ -0,0 +1,7 @@ +{ + "name": "boilerplate", + "emitLegacyScripts": false, + "tree": { + "$path": "src" + } +} \ No newline at end of file diff --git a/boilerplate/development.project.json b/boilerplate/development.project.json new file mode 100644 index 0000000..f30e696 --- /dev/null +++ b/boilerplate/development.project.json @@ -0,0 +1,15 @@ +{ + "name": "Boilerplate", + "emitLegacyScripts": false, + "tree": { + "$className": "DataModel", + "ReplicatedStorage": { + "Packages": { + "$path": "Packages", + "Boilerplate": { + "$path": "src" + } + } + } + } +} \ No newline at end of file diff --git a/boilerplate/selene.toml b/boilerplate/selene.toml new file mode 100644 index 0000000..3309f77 --- /dev/null +++ b/boilerplate/selene.toml @@ -0,0 +1,23 @@ +std = "luau+roblox" + +[rules] +almost_swapped = "warn" +divide_by_zero = "warn" +duplicate_keys = "warn" +empty_if = "warn" +global_usage = "warn" +if_same_then_else = "warn" +ifs_same_cond = "warn" +multiple_statements = "warn" +mismatched_arg_count = "warn" +parenthese_conditions = "warn" +roblox_incorrect_color3_new_bounds = "warn" +roblox_incorrect_roact_usage = "warn" +shadowing = "warn" +incorrect_standard_library_use = "warn" +suspicious_reverse_loop = "warn" +type_check_inside_call = "warn" +unbalanced_assignments = "warn" +undefined_variable = "warn" +unscoped_variables = "warn" +unused_variable = "warn" \ No newline at end of file diff --git a/boilerplate/src/init.luau b/boilerplate/src/init.luau new file mode 100644 index 0000000..3e409db --- /dev/null +++ b/boilerplate/src/init.luau @@ -0,0 +1,3 @@ +local Boilerplate = {} + +return Boilerplate diff --git a/boilerplate/wally.toml b/boilerplate/wally.toml new file mode 100644 index 0000000..b786c61 --- /dev/null +++ b/boilerplate/wally.toml @@ -0,0 +1,13 @@ +[package] +name = "4x8matrix/boilerplate-package" +version = "0.1.0" +registry = "https://github.com/UpliftGames/wally-index" +realm = "shared" +private = true + +[place] +shared-packages = "game.ReplicatedStorage.Packages" + +[dependencies] + +[server-dependencies] \ No newline at end of file diff --git a/deprecated/class_index/README.md b/deprecated/class_index/README.md new file mode 100644 index 0000000..c751ed8 --- /dev/null +++ b/deprecated/class_index/README.md @@ -0,0 +1,9 @@ +# Class Index + +> ⚠️ - this resource has been deprecated, to use the latest version of this resource, please use the last known version of wally - previous to the current. + +This package requires either an extensive overhaul, or deprecation - i've chosen to deprecate this module since there's already resources out there which would achieve what the overhauled Class Index package would achieve. + +Please use the following resource if you're wanting the same level of control when it comes to parsing an API dump. + +> https://devforum.roblox.com/t/dumpparser-a-powerful-parser-for-the-roblox-api-dump/2071099 \ No newline at end of file diff --git a/deprecated/class_index/wally.toml b/deprecated/class_index/wally.toml new file mode 100644 index 0000000..e5828c0 --- /dev/null +++ b/deprecated/class_index/wally.toml @@ -0,0 +1,12 @@ +[package] +name = "4x8matrix/class-index" +version = "2.0.0" +realm = "shared" +registry = "https://github.com/UpliftGames/wally-index" +licence = "MIT" +authors = ["AsynchronousMatrix (https://www.asyncmatrix.dev/)"] + +description = "DEPRECATED - See `deprecated` folder here: https://github.com/4x8Matrix/wally-packages" + +exclude = ["**"] +include = ["src", "src/*", "default.project.json", "wally.toml"] \ No newline at end of file diff --git a/deprecated/emoticon_reporter/README.md b/deprecated/emoticon_reporter/README.md new file mode 100644 index 0000000..7643759 --- /dev/null +++ b/deprecated/emoticon_reporter/README.md @@ -0,0 +1,9 @@ +# Emoticon Reporter + +> ⚠️ - this resource has been deprecated, to use the latest version of this resource, please use the last known version of wally - previous to the current. + +Deprecated - the resource this depends upon (TestEz) has now been archived, it's recommended that you use alternative test suites in order to test your game/software code. + +I'd suggest taking a look into Jest, a port of Jest from another ecosystem into ours. + +> https://github.com/jsdotlua/jest-lua \ No newline at end of file diff --git a/deprecated/emoticon_reporter/wally.toml b/deprecated/emoticon_reporter/wally.toml new file mode 100644 index 0000000..83ea17d --- /dev/null +++ b/deprecated/emoticon_reporter/wally.toml @@ -0,0 +1,12 @@ +[package] +name = "4x8matrix/emoticon-reporter" +version = "2.0.0" +realm = "shared" +registry = "https://github.com/UpliftGames/wally-index" +licence = "MIT" +authors = ["AsynchronousMatrix (https://www.asyncmatrix.dev/)"] + +description = "DEPRECATED - See `deprecated` folder here: https://github.com/4x8Matrix/wally-packages" + +exclude = ["**"] +include = ["src", "src/*", "default.project.json", "wally.toml"] \ No newline at end of file diff --git a/deprecated/rgba/README.md b/deprecated/rgba/README.md new file mode 100644 index 0000000..4c25638 --- /dev/null +++ b/deprecated/rgba/README.md @@ -0,0 +1,11 @@ +# RGBA + +> ⚠️ - this resource has been deprecated, to use the latest version of this resource, please use the last known version of wally - previous to the current. + +Deprecated - there is no simple way to say this, I don't have the resources, time, or understanding to implement a library as vast as this one, my initial idea was to add support for a range of picture formats - I got as far as encoding a PNG, and called it a day. + +Sure i'd like to pick this up at some point, but it'd have to be several different projects, a big project of this size isn't feasible for myself. + +Since this module provided the ability to encode PNG files, i'll direct you to an alternative, please check out rbx-png; + +> https://github.com/synpixel/rbx-png \ No newline at end of file diff --git a/deprecated/rgba/wally.toml b/deprecated/rgba/wally.toml new file mode 100644 index 0000000..22d4983 --- /dev/null +++ b/deprecated/rgba/wally.toml @@ -0,0 +1,12 @@ +[package] +name = "4x8matrix/rgba" +version = "1.0.0" +realm = "shared" +registry = "https://github.com/UpliftGames/wally-index" +licence = "MIT" +authors = ["AsynchronousMatrix (https://www.asyncmatrix.dev/)"] + +description = "DEPRECATED - See `deprecated` folder here: https://github.com/4x8Matrix/wally-packages" + +exclude = ["**"] +include = ["src", "src/*", "default.project.json", "wally.toml"] \ No newline at end of file diff --git a/deprecated/state/README.md b/deprecated/state/README.md new file mode 100644 index 0000000..30baa89 --- /dev/null +++ b/deprecated/state/README.md @@ -0,0 +1,13 @@ +# State + +> ⚠️ - this resource has been deprecated, to use the latest version of this resource, please use the last known version of wally - previous to the current. + +Deprecated - Imho, state was a layer ontop of a generic, instance, or value which introduced overhead developers just don't really need. + +State introduced a higher learning curve to the codebases it was involved in - and overall tried to add compliexity where it was not wanted - just be simple, simplicity isn't bad. + +If you need something like state - i'd suggest checking out one of the many state libraries on wally. But i'd suggest you take a step back and really consider how this may effect you, and your team later down the line. + +--- + +To make things simpler, i'd suggest you use try using ObjectValue, NumberValue, StringValue, Vector3Value, so on.. they implement the same logic, albeit as a Roblox instance. \ No newline at end of file diff --git a/deprecated/state/wally.toml b/deprecated/state/wally.toml new file mode 100644 index 0000000..a72483f --- /dev/null +++ b/deprecated/state/wally.toml @@ -0,0 +1,12 @@ +[package] +name = "4x8matrix/state" +version = "3.0.0" +realm = "shared" +registry = "https://github.com/UpliftGames/wally-index" +licence = "MIT" +authors = ["AsynchronousMatrix (https://www.asyncmatrix.dev/)"] + +description = "DEPRECATED - See `deprecated` folder here: https://github.com/4x8Matrix/wally-packages" + +exclude = ["**"] +include = ["src", "src/*", "default.project.json", "wally.toml"] \ No newline at end of file diff --git a/packages/camera_profiler/.vscode/settings.json b/packages/camera_profiler/.vscode/settings.json new file mode 100644 index 0000000..46434d2 --- /dev/null +++ b/packages/camera_profiler/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "luau-lsp.sourcemap.rojoProjectFile": "development.project.json", +} \ No newline at end of file diff --git a/packages/camera_profiler/README.md b/packages/camera_profiler/README.md new file mode 100644 index 0000000..002f3e9 --- /dev/null +++ b/packages/camera_profiler/README.md @@ -0,0 +1 @@ +# Camera Profiler \ No newline at end of file diff --git a/packages/camera_profiler/default.project.json b/packages/camera_profiler/default.project.json new file mode 100644 index 0000000..f5f91b9 --- /dev/null +++ b/packages/camera_profiler/default.project.json @@ -0,0 +1,7 @@ +{ + "name": "camera-profiler", + "emitLegacyScripts": false, + "tree": { + "$path": "src" + } +} \ No newline at end of file diff --git a/packages/camera_profiler/development.project.json b/packages/camera_profiler/development.project.json new file mode 100644 index 0000000..25aea54 --- /dev/null +++ b/packages/camera_profiler/development.project.json @@ -0,0 +1,15 @@ +{ + "name": "camera-profiler", + "emitLegacyScripts": false, + "tree": { + "$className": "DataModel", + "ReplicatedStorage": { + "Packages": { + "$path": "Packages", + "CameraProfiler": { + "$path": "src" + } + } + } + } +} \ No newline at end of file diff --git a/packages/camera_profiler/selene.toml b/packages/camera_profiler/selene.toml new file mode 100644 index 0000000..3309f77 --- /dev/null +++ b/packages/camera_profiler/selene.toml @@ -0,0 +1,23 @@ +std = "luau+roblox" + +[rules] +almost_swapped = "warn" +divide_by_zero = "warn" +duplicate_keys = "warn" +empty_if = "warn" +global_usage = "warn" +if_same_then_else = "warn" +ifs_same_cond = "warn" +multiple_statements = "warn" +mismatched_arg_count = "warn" +parenthese_conditions = "warn" +roblox_incorrect_color3_new_bounds = "warn" +roblox_incorrect_roact_usage = "warn" +shadowing = "warn" +incorrect_standard_library_use = "warn" +suspicious_reverse_loop = "warn" +type_check_inside_call = "warn" +unbalanced_assignments = "warn" +undefined_variable = "warn" +unscoped_variables = "warn" +unused_variable = "warn" \ No newline at end of file diff --git a/packages/camera_profiler/src/init.luau b/packages/camera_profiler/src/init.luau new file mode 100644 index 0000000..8643077 --- /dev/null +++ b/packages/camera_profiler/src/init.luau @@ -0,0 +1,215 @@ +local Signal = require(script.Parent.Signal) + +local baseCameraInstance = workspace.CurrentCamera:Clone() + +local profiles: { [string]: Profile } = {} +local activeProfile: Profile? + +--[=[ + @class CameraProfiler + + The Camera Profiler package represents a singleton that you can use to better leverage the Camera system wihin the Roblox Environment. This camera system + works through setting `Workspace.CurrentCamera` to the camera the developer wants to see. + + Example of how you would create a profile + ```lua + local BlimpCameraProfile = CameraProfiler:Profile({ + Name = "BlimpCamera" + }) + + function BlimpCameraProfile.Construct(self: BlimpCameraProfile) + print("Setup blimp camera variables!") + end + + function BlimpCameraProfile.Start(self: BlimpCameraProfile) + print("Camera started, do things!") + end + + function BlimpCameraProfile.Stop(self: BlimpCameraProfile) + print("Camera stopped, clean things up!") + end + + export type BlimpCameraProfile = typeof(BlimpCameraProfile) + + return BlimpCameraProfile + ``` + + Example of how you would use the newly created profile + ```lua + CameraProfiler:Set("BlimpCamera") + ``` + + Example of how you would integrate a Profile with the default Camera Roblox creates. + ```lua + local DefaultCameraProfile = CameraProfiler:Profile({ + Name = "DefaultCamera" + }, workspace.CurrentCamera) + ``` +]=] +local CameraProfiler = {} + +--[=[ + @prop CameraStarted Signal\ + @within CameraProfiler + + This signal is fired after a camera has started. +]=] +CameraProfiler.CameraStarted = Signal.new() + +--[=[ + @prop CameraStopped Signal\ + @within CameraProfiler + + This signal is fired after a camera has stopped. +]=] +CameraProfiler.CameraStopped = Signal.new() + +--[[ + Simple function for calling the lifecycles of an object, the object in this case represents a table. +]] +local function callLifecycle(object: TableLike, lifecycle: string) + if object[lifecycle] then + object[lifecycle](object) + end +end + +--[=[ + @method Profile + @within CameraProfiler + + @param profilePrototype { Name: string, Construct: ((self: Profile) -> ())?, Start: ((self: Profile) -> ())?, Stop: ((self: Profile) -> ())?, } + @param cameraInstance Camera? + + @return Profile + + Call this function to register your camera profile, a camera profile is a Roblox table that wraps around a camera instance, the goal of this table + is to make interacting and handling with cameras easier within the engine. + + Example: + ```lua + local CameraProfile = CameraProfiler:Profile({ + Name = "CameraProfile" + }) + + function CameraProfile.Construct(self: CameraProfile) + ... + end + + export type CameraProfile = typeof(CameraProfile) + + return CameraProfile + ``` +]=] +function CameraProfiler.Profile( + self: CameraProfiler, + profilePrototype: ProfilePrototype, + cameraInstance: Camera? +): Profile + assert(profiles[profilePrototype.Name] == nil, `Profile: '{profilePrototype.Name}' already exists!`) + + local camera: Camera = cameraInstance or baseCameraInstance:Clone() + + camera.Name = `CameraProfile<'{profilePrototype.Name}'>` + + local profile: Profile = { + Instance = camera, + + Name = profilePrototype.Name, + Construct = profilePrototype.Construct, + Start = profilePrototype.Start, + Stop = profilePrototype.Stop, + + Destroy = function() + if activeProfile == profiles[profilePrototype.Name] then + callLifecycle(profiles[profilePrototype.Name], "Stop") + + self.CameraStopped:FireDeferred(profilePrototype.Name) + + activeProfile = nil + end + + profiles[profilePrototype.Name] = nil + end, + } + + profiles[profilePrototype.Name] = profile + + task.defer(function() + callLifecycle(profile, "Construct") + + if workspace.CurrentCamera == profile.Instance then + callLifecycle(profile, "Start") + self.CameraStarted:FireDeferred(profile.Name) + end + end) + + return profile +end + +--[=[ + @method Set + @within CameraProfiler + + @param profileName string + @return () + + Will set what the active camera should be, sideeffects of calling this method are: + - Will call the `Stop` lifecycle on the current camera instance. + - Will set the `Workspace.CurrentCamera` property to the updated camera instance. + - Will call the `Start` lifecycleo n the new camera instance. +]=] +function CameraProfiler.Set(self: CameraProfiler, profileName: string): () + local newProfile = profiles[profileName] + local oldProfile = activeProfile + + assert(newProfile, `Camera '{profileName}' not found!`) + + if oldProfile == newProfile then + return + end + + if oldProfile then + callLifecycle(oldProfile, "Stop") + self.CameraStopped:FireDeferred(oldProfile.Name) + end + + activeProfile = newProfile + + callLifecycle(newProfile, "Start") + self.CameraStarted:FireDeferred(newProfile.Name) + + newProfile.Instance.Parent = workspace + -- selene: allow(incorrect_standard_library_use) + workspace.CurrentCamera = newProfile.Instance +end + +--[=[ + @method Get + @within CameraProfiler + + @return string? + + Will return the name of the currently active camera, or nil. +]=] +function CameraProfiler.Get(_: CameraProfiler): string? + return activeProfile and activeProfile.Name +end + +export type TableLike = { [any]: any } +export type CameraProfiler = typeof(CameraProfiler) + +export type Profile = ProfilePrototype & { + Instance: Camera, + + Destroy: (self: Profile) -> (), +} + +export type ProfilePrototype = { + Name: string, + + Construct: ((self: Profile) -> ())?, + Start: ((self: Profile) -> ())?, + Stop: ((self: Profile) -> ())?, +} + +return CameraProfiler diff --git a/packages/camera_profiler/src/init.spec.luau b/packages/camera_profiler/src/init.spec.luau new file mode 100644 index 0000000..98ec8b6 --- /dev/null +++ b/packages/camera_profiler/src/init.spec.luau @@ -0,0 +1,216 @@ +local ReplicatedStorage = game:GetService("ReplicatedStorage") + +local JestGlobals = require(ReplicatedStorage.Packages.JestGlobals) + +local BASE_CAMERA = workspace.CurrentCamera:Clone() + +local mainModule = script.Parent +local clonedModule + +local requiredModule = require(mainModule) + +local describe = JestGlobals.describe :: (...any) -> ...any +local it = JestGlobals.it :: (...any) -> ...any +local expect = JestGlobals.expect :: (...any) -> ...any +local beforeEach = JestGlobals.beforeEach :: (...any) -> ...any +local afterEach = JestGlobals.afterEach :: (...any) -> ...any + +beforeEach(function() + local testCamera = BASE_CAMERA:Clone() + + testCamera.Name = `Test Camera` + + clonedModule = mainModule:Clone() + clonedModule.Name = `Tmp` + clonedModule.Parent = mainModule.Parent + + requiredModule = (require :: any)(clonedModule) + + --selene: allow(incorrect_standard_library_use) + workspace.CurrentCamera = testCamera +end) + +afterEach(function() + clonedModule:Destroy() +end) + +describe("Construction and Destruction of camera objects", function() + it("should be able to construct a camera object", function() + local camera = requiredModule:Profile({ + Name = "Profile", + + Construct = function() end, + Start = function() end, + Stop = function() end, + }) + + expect(camera).toBeTruthy() + expect(camera.Name).toBe("Profile") + end) + + it("should be able to construct a camera object around a camera instance", function() + local instance = workspace.CurrentCamera + local camera = requiredModule:Profile({ + Name = "Profile", + + Construct = function() end, + Start = function() end, + Stop = function() end, + }, instance) + + expect(camera).toBeTruthy() + expect(camera.Name).toBe("Profile") + expect(camera.Instance).toBe(instance) + end) + + it("should be able to deconstruct a camera object", function() + local camera = requiredModule:Profile({ + Name = "Profile", + + Construct = function() end, + Start = function() end, + Stop = function() end, + }) + + requiredModule:Set("Profile") + + expect(requiredModule:Get()).toBeTruthy() + + camera:Destroy() + + expect(requiredModule:Get()).toBe(nil) + end) +end) + +describe("Standard cases for camera objects", function() + it("should call the construct lifecycle when the camera object is constructed", function() + local constructedCalled = false + + requiredModule:Profile({ + Name = "Profile", + + Construct = function() + constructedCalled = true + end, + }) + + expect(constructedCalled).toBe(false) + + task.wait() + + expect(constructedCalled).toBe(true) + end) + + it("should call the start lifecycle when the camera is set to active.", function() + local startCalled = false + + requiredModule:Profile({ + Name = "Profile", + + Start = function() + startCalled = true + end, + }) + + expect(startCalled).toBe(false) + + requiredModule:Set("Profile") + + expect(startCalled).toBe(true) + end) + + it("should call the stop lifecycle when the active camera is changed", function() + local startCalled = false + local stopCalled = false + + requiredModule:Profile({ + Name = "ProfileA", + + Start = function() + startCalled = true + end, + + Stop = function() + stopCalled = true + end, + }) + + requiredModule:Profile({ + Name = "ProfileB", + }) + + expect(stopCalled).toBe(false) + expect(startCalled).toBe(false) + + requiredModule:Set("ProfileA") + + expect(stopCalled).toBe(false) + expect(startCalled).toBe(true) + + requiredModule:Set("ProfileB") + + expect(stopCalled).toBe(true) + expect(startCalled).toBe(true) + + expect(requiredModule:Get()).toBe("ProfileB") + end) + + it("camera started signal is fired a frame after the camera is set", function() + local cameraSetTo = nil + + requiredModule:Profile({ + Name = "ProfileA", + }) + + local thread = task.spawn(function() + cameraSetTo = requiredModule.CameraStarted:Wait() + end) + + requiredModule:Set("ProfileA") + + expect(cameraSetTo).toBe(nil) + + task.wait() + + expect(cameraSetTo).toBe("ProfileA") + + task.cancel(thread) + end) + + it("camera stopped signal is fired a frame after the camera is set to something else", function() + local cameraSetTo = nil + + requiredModule:Profile({ + Name = "ProfileA", + }) + + requiredModule:Profile({ + Name = "ProfileB", + }) + + local thread = task.spawn(function() + cameraSetTo = requiredModule.CameraStopped:Wait() + end) + + requiredModule:Set("ProfileA") + requiredModule:Set("ProfileB") + + expect(cameraSetTo).toBe(nil) + + task.wait() + + expect(cameraSetTo).toBe("ProfileA") + + task.cancel(thread) + end) +end) + +describe("Edge cases for camera objects", function() + it("camera singleton should throw an error given an invalid value", function() + expect(function() + requiredModule:Set("IllegalCamera") + end).toThrow() + end) +end) + +describe("Bugs that have been fixed", function() end) diff --git a/packages/camera_profiler/src/jest.config.luau b/packages/camera_profiler/src/jest.config.luau new file mode 100644 index 0000000..a564707 --- /dev/null +++ b/packages/camera_profiler/src/jest.config.luau @@ -0,0 +1 @@ +return {} diff --git a/packages/camera_profiler/src/profile.docs.luau b/packages/camera_profiler/src/profile.docs.luau new file mode 100644 index 0000000..c682a0f --- /dev/null +++ b/packages/camera_profiler/src/profile.docs.luau @@ -0,0 +1,82 @@ +--[=[ + @class Profile + + The `Profile` class represents a camera wrapper that follows a basic lifecycle. These profiles are used with the `CameraProfiler` + system to manage multiple camera states in Roblox. Each profile is tied to a camera instance and can implement optional lifecycle + methods like `Construct`, `Start`, and `Stop`. + + You can define custom profiles using `CameraProfiler:Profile()` and implementing optional methods for setup and teardown. + + Example: + ```lua + local MyProfile = CameraProfiler:Profile({ + Name = "MyCamera" + }) + + function MyProfile.Construct(self) + print("Setup camera.") + end + + function MyProfile.Start(self) + print("Camera active.") + end + + function MyProfile.Stop(self) + print("Camera stopping.") + end + + return MyProfile + ``` +]=] + +--[=[ + @prop Instance Camera + @within Profile + + The actual `Camera` instance associated with this profile. This is the object that will be set as `workspace.CurrentCamera` + when the profile is activated. +]=] + +--[=[ + @prop Name string + @within Profile + + The name of the camera profile. Used to identify and switch between profiles via `CameraProfiler:Set(name)`. +]=] + +--[=[ + @method Construct + @within Profile + + Optional lifecycle method. + + Called once after the profile is created and added to the `CameraProfiler`. Use this for initialization logic such as + variable setup or preparing the camera instance. +]=] + +--[=[ + @method Start + @within Profile + + Optional lifecycle method. + + Called when this camera profile becomes the active one (i.e., when `CameraProfiler:Set(name)` is called with this profile's name). + Used to begin camera behaviors or transitions. +]=] + +--[=[ + @method Stop + @within Profile + + Optional lifecycle method. + + Called when this camera profile is no longer the active camera. Used to clean up behaviors or reset state as needed. +]=] + +--[=[ + @method Destroy + @within Profile + + Removes this profile from the `CameraProfiler`. If it was the active camera, the profile's `Stop` lifecycle is called, + the `CameraStopped` signal is fired, and the active camera reference is cleared. +]=] diff --git a/packages/camera_profiler/wally.lock b/packages/camera_profiler/wally.lock new file mode 100644 index 0000000..de50aa8 --- /dev/null +++ b/packages/camera_profiler/wally.lock @@ -0,0 +1,13 @@ +# This file is automatically @generated by Wally. +# It is not intended for manual editing. +registry = "test" + +[[package]] +name = "4x8matrix/camera-profiler" +version = "2.0.0" +dependencies = [["Signal", "sleitnick/signal@2.0.3"]] + +[[package]] +name = "sleitnick/signal" +version = "2.0.3" +dependencies = [] diff --git a/packages/camera_profiler/wally.toml b/packages/camera_profiler/wally.toml new file mode 100644 index 0000000..79b0093 --- /dev/null +++ b/packages/camera_profiler/wally.toml @@ -0,0 +1,11 @@ +[package] +name = "4x8matrix/camera-profiler" +version = "2.0.0" +registry = "https://github.com/UpliftGames/wally-index" +realm = "shared" + +[place] +shared-packages = "game.ReplicatedStorage.Packages" + +[dependencies] +Signal = "sleitnick/signal@^2" \ No newline at end of file diff --git a/packages/console/.vscode/settings.json b/packages/console/.vscode/settings.json new file mode 100644 index 0000000..46434d2 --- /dev/null +++ b/packages/console/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "luau-lsp.sourcemap.rojoProjectFile": "development.project.json", +} \ No newline at end of file diff --git a/packages/console/README.md b/packages/console/README.md new file mode 100644 index 0000000..e8b9011 --- /dev/null +++ b/packages/console/README.md @@ -0,0 +1 @@ +# Console \ No newline at end of file diff --git a/packages/console/default.project.json b/packages/console/default.project.json new file mode 100644 index 0000000..46fa59e --- /dev/null +++ b/packages/console/default.project.json @@ -0,0 +1,7 @@ +{ + "name": "Console", + "emitLegacyScripts": false, + "tree": { + "$path": "src" + } +} \ No newline at end of file diff --git a/packages/console/development.project.json b/packages/console/development.project.json new file mode 100644 index 0000000..b07aaff --- /dev/null +++ b/packages/console/development.project.json @@ -0,0 +1,15 @@ +{ + "name": "Console", + "emitLegacyScripts": false, + "tree": { + "$className": "DataModel", + "ReplicatedStorage": { + "Packages": { + "$className": "Folder", + "Console": { + "$path": "src" + } + } + } + } +} \ No newline at end of file diff --git a/packages/console/selene.toml b/packages/console/selene.toml new file mode 100644 index 0000000..3309f77 --- /dev/null +++ b/packages/console/selene.toml @@ -0,0 +1,23 @@ +std = "luau+roblox" + +[rules] +almost_swapped = "warn" +divide_by_zero = "warn" +duplicate_keys = "warn" +empty_if = "warn" +global_usage = "warn" +if_same_then_else = "warn" +ifs_same_cond = "warn" +multiple_statements = "warn" +mismatched_arg_count = "warn" +parenthese_conditions = "warn" +roblox_incorrect_color3_new_bounds = "warn" +roblox_incorrect_roact_usage = "warn" +shadowing = "warn" +incorrect_standard_library_use = "warn" +suspicious_reverse_loop = "warn" +type_check_inside_call = "warn" +unbalanced_assignments = "warn" +undefined_variable = "warn" +unscoped_variables = "warn" +unused_variable = "warn" \ No newline at end of file diff --git a/packages/console/src/init.luau b/packages/console/src/init.luau new file mode 100644 index 0000000..d35ee2d --- /dev/null +++ b/packages/console/src/init.luau @@ -0,0 +1,398 @@ +local DIM = "\27\91\50\109" +local BOLD = "\27\91\49\109" + +local RESET = "\27\91\48\109" + +local CYAN = "\27\91\51\54\109" +local BLUE = "\27\91\51\52\109" +local YELLOW = "\27\91\51\51\109" +local RED = "\27\91\51\49\109" + +local LOG_LEVEL_COLORS = table.freeze({ + ["Debug"] = `{DIM}`, + ["Info"] = `{CYAN}`, + ["Notice"] = `{BLUE}`, + ["Warn"] = `{YELLOW}`, + ["Error"] = `{RED}`, + ["Critical"] = `{RED}`, + ["Alert"] = `{BOLD}{RED}`, + ["Emergency"] = `{BOLD}{RED}`, +}) + +local LOG_LEVEL_PRIORITIES = { "Debug", "Info", "Notice", "Warn", "Error", "Critical", "Alert", "Emergency" } + +local configurations: { [string]: Configuration } = {} +local globalConfiguration = { + LogLevel = "Debug", + Format = "%*[%*][%*][%*]: %*%*%*", + Timestamps = false, + ANSI = false, + Tracebacks = false, +} + +--[=[ + @class Console + + A comprehensive logging package for Luau, providing configurable logging levels, formatted output, ANSI color support (won't work in Roblox), + timestamps, and traceback integration - it's intention is to make what limited control we have over the output, easier to work with. + + This console library implements the following APIs as to remain in parity with the following document: + - https://www.sumologic.com/glossary/log-levels + + See child pages for an example of how you can take advantage of this package. +]=] +local Console = {} + +Console.Prototype = {} +Console.Public = {} + +--[[ + Responsible for taking an input of any type, and formatting it in a way which makes it human readable. +]] +local function formatValue(value: any, config: Configuration, seen: { [{}]: boolean }?): string + local type = typeof(value) + + if type == "table" then + local seenStore = seen or {} + + if seenStore[value] then + return "*** cycle table reference detected ***" + end + + seenStore[value] = true + + local parts = {} + + for valueKey, valueValue in value do + local key = formatValue(valueKey, config, seenStore) + local formattedVal = formatValue(valueValue, config, seenStore) + + table.insert(parts, string.format("[%*] = %*", key, formattedVal)) + end + + return "{" .. table.concat(parts, ", ") .. "}" + elseif type == "string" then + return string.format('"%*"', tostring(value)) + elseif type == "Instance" then + return string.format("Instance<'%*'>", tostring(value)) + elseif type == "EnumItem" then + return string.format("EnumItem<'%*.%*'>", value.EnumType.Name, value.Name) + elseif type == "CFrame" then + local x, y, z = value.X, value.Y, value.Z + local r00, r01, r02, r10, r11, r12, r20, r21, r22 = value:GetComponents() + return string.format( + "CFrame<'Pos:(%.2f,%.2f,%.2f) Rot:[%.2f %.2f %.2f; %.2f %.2f %.2f; %.2f %.2f %.2f]'>", + x, + y, + z, + r00, + r01, + r02, + r10, + r11, + r12, + r20, + r21, + r22 + ) + elseif type == "Vector3" then + return string.format("Vector3<'X:%.2f,Y:%.2f,Z:%.2f'>", value.X, value.Y, value.Z) + elseif type == "Vector2" then + return string.format("Vector2<'X:%.2f,Y:%.2f'>", value.X, value.Y) + elseif type == "UDim" then + return string.format("UDim<'Scale:%.2f,Offset:%*'>", value.Scale, value.Offset) + elseif type == "UDim2" then + return string.format( + "UDim2<'X:Scale%.2f+Offset%*, Y:Scale%.2f+Offset%*'>", + value.X.Scale, + value.X.Offset, + value.Y.Scale, + value.Y.Offset + ) + elseif type == "Color3" then + return string.format("Color3<'R:%.2f,G:%.2f,B:%.2f'>", value.R, value.G, value.B) + elseif type == "BrickColor" then + return string.format("BrickColor<'%*'>", value.Name) + elseif type == "NumberRange" then + return string.format("NumberRange<'Min:%.2f,Max:%.2f'>", value.Min, value.Max) + elseif type == "NumberSequence" then + return string.format("NumberSequence<'%* points'>", #value.Keypoints) + elseif type == "ColorSequence" then + return string.format("ColorSequence<'%* points'>", #value.Keypoints) + elseif type == "Rect" then + return string.format( + "Rect<'Min:(%.2f,%.2f),Max:(%.2f,%.2f)'>", + value.Min.X, + value.Min.Y, + value.Max.X, + value.Max.Y + ) + elseif type == "Ray" then + return string.format( + "Ray<'Origin:(%.2f,%.2f,%.2f),Dir:(%.2f,%.2f,%.2f)'>", + value.Origin.X, + value.Origin.Y, + value.Origin.Z, + value.Direction.X, + value.Direction.Y, + value.Direction.Z + ) + elseif type == "Region3" then + local min, max = value.CFrame.Position - value.Size / 2, value.CFrame.Position + value.Size / 2 + return string.format( + "Region3<'Min:(%.2f,%.2f,%.2f),Max:(%.2f,%.2f,%.2f)'>", + min.X, + min.Y, + min.Z, + max.X, + max.Y, + max.Z + ) + end + + -- Fallback for primitive Luau types: nil, boolean, number, string, function, thread, userdata + return tostring(value) +end + +--[[ + Responsible for taking in an array of unknown types, will then format - and return a concatenated version + of these unknown types merged together. +]] +local function stringify(configuration: Configuration, ...): string + local values = {} + + for _, object in { ... } do + table.insert(values, formatValue(object, configuration)) + end + + return table.concat(values, " ") +end + +--[[ + Will return the configuration for the script that is calling a function in the Console library. +]] +local function getScriptConfiguration(hash: string): Configuration + if not configurations[hash] then + configurations[hash] = {} + end + + return configurations[hash] +end + +--[[ + Will fetch the name of this script, supports Unix, Windows and Roblox paths. + + If this fails, it'll fallback to returning the full path name. +]] +local function getScriptName(hash: string): string + return hash +end + +--[[ + Will construct the message that you'll see in the output. +]] +local function constructContent(hash: string, ...): string + local configuration = getScriptConfiguration(hash) + local scriptName = getScriptName(hash) + local logLevel = debug.info(2, "n") + local message = stringify(configuration, ...) + local format = configuration.Format or globalConfiguration.Format + local ansiEnabled = configuration.ANSI or globalConfiguration.ANSI + local timestampsEnabled = configuration.Timestamps or globalConfiguration.Timestamps + local tracebackEnabled = configuration.Tracebacks or globalConfiguration.Tracebacks + local timestamp = os.date("%Y-%m-%d %H:%M:%S", os.time()) + + local content = string.format( + format, + `{ansiEnabled and LOG_LEVEL_COLORS[logLevel] or ``}`, + `{timestampsEnabled and `{timestamp}` or `-`}`, + `{configuration.Name or scriptName}`, + logLevel, + message, + `{ansiEnabled and RESET or ""}`, + `{tracebackEnabled and `\nstack traceback{debug.traceback("", 3)}` or ``}` + ) + + return content +end + +--[[ + returns a boolean that defines if the API that calls this function is able to log to the output. +]] +local function meetsLogLevelRequirement(hash: string): boolean + local configuration = getScriptConfiguration(hash) + local targetLoglevel = configuration.LogLevel or globalConfiguration.LogLevel + local targetLoglevelPriority = table.find(LOG_LEVEL_PRIORITIES, targetLoglevel) + local currentLogLevel = debug.info(2, "n") + local currentLogLevelPriority = table.find(LOG_LEVEL_PRIORITIES, currentLogLevel) + + return currentLogLevelPriority >= targetLoglevelPriority +end + +--[[ + Documented within @console.docs.luau +]] +function Console.Prototype.Stringify(self: Console, value): string + return stringify(getScriptConfiguration(self.Name), value) +end + +--[[ + Documented within @console.docs.luau +]] +function Console.Prototype.Debug(self: Console, ...) + if meetsLogLevelRequirement(self.Name) then + local content = constructContent(self.Name, ...) + + print(content) + end +end + +--[[ + Documented within @console.docs.luau +]] +function Console.Prototype.Info(self: Console, ...) + if meetsLogLevelRequirement(self.Name) then + local content = constructContent(self.Name, ...) + + print(content) + end +end + +--[[ + Documented within @console.docs.luau +]] +function Console.Prototype.Notice(self: Console, ...) + if meetsLogLevelRequirement(self.Name) then + local content = constructContent(self.Name, ...) + + print(content) + end +end + +--[[ + Documented within @console.docs.luau +]] +function Console.Prototype.Warn(self: Console, ...) + if meetsLogLevelRequirement(self.Name) then + local content = constructContent(self.Name, ...) + + warn(content) + end +end + +--[[ + Documented within @console.docs.luau +]] +function Console.Prototype.Error(self: Console, ...) + if meetsLogLevelRequirement(self.Name) then + local content = constructContent(self.Name, ...) + + error(content, math.huge) + end +end + +--[[ + Documented within @console.docs.luau +]] +function Console.Prototype.Critical(self: Console, ...) + if meetsLogLevelRequirement(self.Name) then + local content = constructContent(self.Name, ...) + + error(content, math.huge) + end +end + +--[[ + Documented within @console.docs.luau +]] +function Console.Prototype.Alert(self: Console, ...) + if meetsLogLevelRequirement(self.Name) then + local content = constructContent(self.Name, ...) + + error(content, math.huge) + end +end + +--[[ + Documented within @console.docs.luau +]] +function Console.Prototype.Emergency(self: Console, ...) + if meetsLogLevelRequirement(self.Name) then + local content = constructContent(self.Name, ...) + + error(content, math.huge) + end +end + +--[[ + Documented within @console.docs.luau +]] +function Console.Prototype.Configure(self: Console, config: Configuration) + local scriptConfig = getScriptConfiguration(self.Name) + + for key, value in config do + scriptConfig[key] = value + end +end + +--[=[ + @function setDefaults + @within Console + + @param Configuration { LogLevel: LogLevel?, Format: string?, Name: string?, Tracebacks: boolean?, Timestamps: boolean?, ANSI: boolean?, } + @return () + + Establishes the **global default configuration** for the Console logger. + These defaults apply to all scripts that use the Console package unless a script + explicitly overrides them using `Console.Configure()`. +]=] +function Console.Public.setDefaults(config: Configuration) + for key, value in config do + if globalConfiguration[key] ~= nil then + globalConfiguration[key] = value + end + end +end + +--[=[ + @function new + @within Console + + @param name string + @param Configuration { LogLevel: LogLevel?, Format: string?, Name: string?, Tracebacks: boolean?, Timestamps: boolean?, ANSI: boolean?, }? + + @return Logger + + Will instantiate a new console object, this is how you'll communicate with the + console library. +]=] +function Console.Public.new(name: string, config: Configuration?) + local object = setmetatable( + { + Name = name, + } :: Console, + { __index = Console.Prototype } + ) + + if config then + object:Configure(config) + end + + return object +end + +export type LogLevel = "Debug" | "Info" | "Notice" | "Warn" | "Error" | "Critical" | "Alert" | "Emergency" +export type Configuration = { + LogLevel: LogLevel?, + Format: string?, + Name: string?, + + Tracebacks: boolean?, + Timestamps: boolean?, + ANSI: boolean?, +} +export type Console = typeof(Console.Prototype) & { + Name: string, +} + +return Console.Public diff --git a/packages/console/src/init.spec.luau b/packages/console/src/init.spec.luau new file mode 100644 index 0000000..0f2fc55 --- /dev/null +++ b/packages/console/src/init.spec.luau @@ -0,0 +1,349 @@ +local LogService = game:GetService("LogService") +local ReplicatedStorage = game:GetService("ReplicatedStorage") + +local JestGlobals = require(ReplicatedStorage.Packages.JestGlobals) + +local mainModule = script.Parent +local clonedModule + +local requiredModule = require(mainModule) + +local describe = JestGlobals.describe :: (...any) -> ...any +local it = JestGlobals.it :: (...any) -> ...any +local expect = JestGlobals.expect :: (...any) -> ...any +local beforeEach = JestGlobals.beforeEach :: (...any) -> ...any +local afterEach = JestGlobals.afterEach :: (...any) -> ...any + +beforeEach(function() + clonedModule = mainModule:Clone() + clonedModule.Name = `Tmp` + clonedModule.Parent = mainModule.Parent + + requiredModule = (require :: any)(clonedModule) +end) + +afterEach(function() + clonedModule:Destroy() +end) + +describe("Standard cases for console objects", function() + it("Is able to create a console object", function() + local console = requiredModule.new("Console") + + expect(console).toBeTruthy() + end) + + it("Is able to create a console object with a config", function() + local console = requiredModule.new("Console", { + LogLevel = "Debug", + Format = "%*[%*][%*][%*]: %*%*%*", + Timestamps = false, + ANSI = false, + Tracebacks = false, + }) + + expect(console).toBeTruthy() + end) + + it("Is able to parse and write a stringified version of various datatypes", function() + local console = requiredModule.new("Console") + + for value, expected in + { + [{ a = 1 }] = '{["a"] = 1}', + [{ a = {} }] = '{["a"] = {}}', + [Vector3.new(1, 5, 3)] = "Vector3<'X:1.00,Y:5.00,Z:3.00'>", + [CFrame.new(6, 2, 2)] = "CFrame<'Pos:(6.00,2.00,2.00) Rot:[6.00 2.00 2.00; 1.00 0.00 0.00; 0.00 1.00 0.00]'>", + [true] = "true", + ["YMCA"] = '"YMCA"', + [game] = "Instance<'Game'>", + } :: { [any]: string } + do + local parsed = console:Stringify(value) + + expect(parsed).toBe(expected) + end + end) + + it("Is able to parse and handle recursive datatypes", function() + local console = requiredModule.new("Console") + local value = {} + + value.a = value + value.b = value + value.c = value + + local parsed = console:Stringify(value) + + expect(parsed).toBe( + '{["a"] = *** cycle table reference detected ***, ["c"] = *** cycle table reference detected ***, ["b"] = *** cycle table reference detected ***}' + ) + end) + + it("Log levels are functional", function() + local console = requiredModule.new("Console") + + console:Configure({ + LogLevel = "Info", + }) + + local capturedLog + local messageType + + LogService.MessageOut:Once(function(...) + capturedLog, messageType = ... + end) + + console:Debug(`Test Function!`) + + task.spawn(function() + console:Info(`Test Function!`) + end) + + task.wait() + + expect(capturedLog).toBe('[-][Console][Info]: "Test Function!"') + expect(messageType).toBe(Enum.MessageType.MessageOutput) + end) + + describe("All general logging functions work as expected", function() + it("Debug function works", function() + local console = requiredModule.new("Console") + local capturedLog + local messageType + + LogService.MessageOut:Once(function(...) + capturedLog, messageType = ... + end) + + console:Debug(`Test Function!`) + + task.wait() + + expect(capturedLog).toBe('[-][Console][Debug]: "Test Function!"') + expect(messageType).toBe(Enum.MessageType.MessageOutput) + end) + + it("Info function works", function() + local console = requiredModule.new("Console") + local capturedLog + local messageType + + LogService.MessageOut:Once(function(...) + capturedLog, messageType = ... + end) + + console:Info(`Test Function!`) + + task.wait() + + expect(capturedLog).toBe('[-][Console][Info]: "Test Function!"') + expect(messageType).toBe(Enum.MessageType.MessageOutput) + end) + + it("Notice function works", function() + local console = requiredModule.new("Console") + local capturedLog + local messageType + + LogService.MessageOut:Once(function(...) + capturedLog, messageType = ... + end) + + console:Notice(`Test Function!`) + + task.wait() + + expect(capturedLog).toBe('[-][Console][Notice]: "Test Function!"') + expect(messageType).toBe(Enum.MessageType.MessageOutput) + end) + + it("Warn function works", function() + local console = requiredModule.new("Console") + local capturedLog + local messageType + + LogService.MessageOut:Once(function(...) + capturedLog, messageType = ... + end) + + console:Warn(`Test Function!`) + + task.wait() + + expect(capturedLog).toBe('[-][Console][Warn]: "Test Function!"') + expect(messageType).toBe(Enum.MessageType.MessageWarning) + end) + + it("Error function works", function() + local console = requiredModule.new("Console") + + expect(function() + console:Error(`Test Function!`) + end).toThrow() + end) + + it("Critical function works", function() + local console = requiredModule.new("Console") + + expect(function() + console:Critical(`Test Function!`) + end).toThrow() + end) + + it("Alert function works", function() + local console = requiredModule.new("Console") + + expect(function() + console:Alert(`Test Function!`) + end).toThrow() + end) + + it("Emergency function works", function() + local console = requiredModule.new("Console") + + expect(function() + console:Emergency(`Test Function!`) + end).toThrow() + end) + end) + + describe("Configurations are modifiable and have an effect", function() + it("Should modify the custom Name and affect output", function() + local console = requiredModule.new("Console") + local capturedLog + + console:Configure({ + Name = "MyTestLogger", + }) + + LogService.MessageOut:Once(function(...) + capturedLog = ... + end) + + console:Info("Test") + task.wait() + + expect(capturedLog).toBe('[-][MyTestLogger][Info]: "Test"') + end) + + it("Should modify the Format and affect output", function() + local console = requiredModule.new("Console") + local capturedLog + + console:Configure({ + Format = "%*<%*|%*|%*> %* %*", + }) + + LogService.MessageOut:Once(function(...) + capturedLog = ... + end) + + console:Debug("Test") + task.wait() + + expect(capturedLog).toBe('<-|Console|Debug> "Test" ') + end) + + it("Should toggle Timestamps and affect output", function() + local console = requiredModule.new("Console") + local capturedLog + + console:Configure({ + Timestamps = true, + }) + + LogService.MessageOut:Once(function(...) + capturedLog = ... + end) + + console:Info("Test") + task.wait() + + expect(string.match(capturedLog, "%d%d%d%d%-%d%d%-%d%d %d%d:%d%d:%d%d")).toBeTruthy() + + console:Configure({ + Timestamps = false, + }) + + LogService.MessageOut:Once(function(...) + capturedLog = ... + end) + + console:Info("Test") + task.wait() + + expect(capturedLog).toBe('[-][Console][Info]: "Test"') + end) + + it("Should toggle ANSI color codes and affect output", function() + local console = requiredModule.new("Console") + local capturedLog + + console:Configure({ + ANSI = true, + }) + + LogService.MessageOut:Once(function(...) + capturedLog = ... + end) + + console:Info("Test") + task.wait() + + expect(string.find(capturedLog, "\27") ~= nil).toBe(true) + + console:Configure({ + ANSI = false, + }) + + LogService.MessageOut:Once(function(...) + capturedLog = ... + end) + + console:Info("Test") + task.wait() + + expect(string.find(capturedLog, "\27") ~= nil).toBe(false) + end) + + it("Should toggle Tracebacks and affect output", function() + local console = requiredModule.new("Console") + local capturedLog + + console:Configure({ + Tracebacks = true, + }) + + LogService.MessageOut:Once(function(...) + capturedLog = ... + end) + + console:Debug("Test") + + task.wait() + + expect(capturedLog ~= nil).toBe(true) + expect(string.find(capturedLog, "stack traceback") ~= nil).toBe(true) + + capturedLog = nil + + console:Configure({ + Tracebacks = false, + }) + + LogService.MessageOut:Once(function(...) + capturedLog = ... + end) + + console:Debug("Test") + + task.wait() + + expect(capturedLog ~= nil).toBe(true) + expect(string.find(capturedLog, "stack traceback") == nil).toBe(true) + end) + end) +end) + +describe("Bugs that have been fixed", function() end) diff --git a/packages/console/src/jest.config.luau b/packages/console/src/jest.config.luau new file mode 100644 index 0000000..5a3a61e --- /dev/null +++ b/packages/console/src/jest.config.luau @@ -0,0 +1 @@ +return { } \ No newline at end of file diff --git a/packages/console/src/logger.docs.luau b/packages/console/src/logger.docs.luau new file mode 100644 index 0000000..3cc52ce --- /dev/null +++ b/packages/console/src/logger.docs.luau @@ -0,0 +1,132 @@ +--[=[ + @class Logger + + The `Logger` class provides a highly configurable logging system for Luau, supporting: + - Multiple log levels (Debug, Info, Notice, Warn, Error, etc.) + - ANSI color formatting (for compatible environments) + - Timestamps and traceback inclusion + - Per-script and global logger configurations + - Rich object serialization and formatting + + Logger is designed for use in both development tooling and in-engine debugging (e.g. Roblox). + + ## Basic Usage + + ```lua + local logger = Console.new("MyScript") + + logger:Info("Hello, world!") + logger:Warn("This is a warning!") + logger:Error("This is an error.") + ``` + + ## Custom Configuration + + ```lua + local logger = Console.new("MyGameScript", { + LogLevel = "Info", + Timestamps = true, + ANSI = true, + Tracebacks = true, + Format = "[%*][%*][%*][%*]: %*%*%*", + }) + ``` +]=] + +--[=[ + @prop Name string + @within Logger + The name of this logger instance, used for configuration routing and logging output. +]=] + +--[=[ + @method Debug + @within Logger + @param ... any + @return () + + Logs a debug message (priority 7). Used during development; typically suppressed in production. +]=] + +--[=[ + @method Info + @within Logger + @param ... any + @return () + + Logs an informational message (priority 6). Useful for tracking general application events. +]=] + +--[=[ + @method Notice + @within Logger + @param ... any + @return () + + Logs a notice message (priority 5). Indicates noteworthy events that are not errors. +]=] + +--[=[ + @method Warn + @within Logger + @param ... any + @return () + + Logs a warning message (priority 4). Something unexpected occurred, but the application can continue. +]=] + +--[=[ + @method Error + @within Logger + @param ... any + @return () + + Logs an error message (priority 3). Indicates application errors. +]=] + +--[=[ + @method Critical + @within Logger + @param ... any + @return () + + Logs a critical error (priority 2). Indicates severe issues like subsystem failure. +]=] + +--[=[ + @method Alert + @within Logger + @param ... any + @return () + + Logs an alert (priority 1). Requires immediate attention, such as a corrupted database. +]=] + +--[=[ + @method Emergency + @within Logger + @param ... any + @return () + + Logs an emergency (priority 0). System is unusable. +]=] + +--[=[ + @method Stringify + @within Logger + @param value any + @return string + + Converts the provided value to a human-readable string with type annotations and formatting. + Supports primitives, Roblox instances, CFrames, tables, and more. +]=] + +--[=[ + @method Configure + @within Logger + @param config Configuration + @return () + + Applies per-instance configuration overrides for this logger. + Useful for setting ANSI, format string, log level, etc. for just one logger. +]=] \ No newline at end of file diff --git a/packages/console/wally.lock b/packages/console/wally.lock new file mode 100644 index 0000000..62fa438 --- /dev/null +++ b/packages/console/wally.lock @@ -0,0 +1,8 @@ +# This file is automatically @generated by Wally. +# It is not intended for manual editing. +registry = "test" + +[[package]] +name = "4x8matrix/console" +version = "3.0.0" +dependencies = [] diff --git a/packages/console/wally.toml b/packages/console/wally.toml new file mode 100644 index 0000000..43fa786 --- /dev/null +++ b/packages/console/wally.toml @@ -0,0 +1,12 @@ +[package] +name = "4x8matrix/console" +version = "3.0.0" +registry = "https://github.com/UpliftGames/wally-index" +realm = "shared" + +[place] +shared-packages = "game.ReplicatedStorage.Packages" + +[dependencies] + +[server-dependencies] \ No newline at end of file diff --git a/pesde.lock b/pesde.lock new file mode 100644 index 0000000..adb1ef6 --- /dev/null +++ b/pesde.lock @@ -0,0 +1,783 @@ +# This file is automatically @generated by pesde. +# It is not intended for manual editing. +format = 2 +name = "4x8matrix/wally_packages" +version = "0.1.0" +target = "roblox" + +[graph."wally#jsdotlua/boolean@1.2.7 roblox".dependencies] +number = ["wally#jsdotlua/number@1.2.7 roblox", "standard"] + +[graph."wally#jsdotlua/boolean@1.2.7 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/boolean@1.2.7 roblox".pkg_ref.dependencies] +number = [{ wally = "wally#jsdotlua/number", version = ">=1.2.7, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/chalk@0.2.1 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/collections@1.2.7 roblox".dependencies] +es7-types = ["wally#jsdotlua/es7-types@1.2.7 roblox", "standard"] +instance-of = ["wally#jsdotlua/instance-of@1.2.7 roblox", "standard"] + +[graph."wally#jsdotlua/collections@1.2.7 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/collections@1.2.7 roblox".pkg_ref.dependencies] +es7-types = [{ wally = "wally#jsdotlua/es7-types", version = ">=1.2.7, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +instance-of = [{ wally = "wally#jsdotlua/instance-of", version = ">=1.2.7, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/console@1.2.7 roblox".dependencies] +collections = ["wally#jsdotlua/collections@1.2.7 roblox", "standard"] + +[graph."wally#jsdotlua/console@1.2.7 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/console@1.2.7 roblox".pkg_ref.dependencies] +collections = [{ wally = "wally#jsdotlua/collections", version = ">=1.2.7, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/diff-sequences@3.10.0 roblox".dependencies] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] + +[graph."wally#jsdotlua/diff-sequences@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/diff-sequences@3.10.0 roblox".pkg_ref.dependencies] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/emittery@3.10.0 roblox".dependencies] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] +promise = ["wally#jsdotlua/promise@3.5.2 roblox", "standard"] + +[graph."wally#jsdotlua/emittery@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/emittery@3.10.0 roblox".pkg_ref.dependencies] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +promise = [{ wally = "wally#jsdotlua/promise", version = ">=3.5.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/es7-types@1.2.7 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/expect@3.10.0 roblox".dependencies] +jest-get-type = ["wally#jsdotlua/jest-get-type@3.10.0 roblox", "standard"] +jest-matcher-utils = ["wally#jsdotlua/jest-matcher-utils@3.10.0 roblox", "standard"] +jest-message-util = ["wally#jsdotlua/jest-message-util@3.10.0 roblox", "standard"] +jest-roblox-shared = ["wally#jsdotlua/jest-roblox-shared@3.10.0 roblox", "standard"] +jest-snapshot = ["wally#jsdotlua/jest-snapshot@3.10.0 roblox", "standard"] +jest-util = ["wally#jsdotlua/jest-util@3.10.0 roblox", "standard"] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] +luau-regexp = ["wally#jsdotlua/luau-regexp@0.2.1 roblox", "standard"] +promise = ["wally#jsdotlua/promise@3.5.2 roblox", "standard"] + +[graph."wally#jsdotlua/expect@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/expect@3.10.0 roblox".pkg_ref.dependencies] +jest-get-type = [{ wally = "wally#jsdotlua/jest-get-type", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-matcher-utils = [{ wally = "wally#jsdotlua/jest-matcher-utils", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-message-util = [{ wally = "wally#jsdotlua/jest-message-util", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-roblox-shared = [{ wally = "wally#jsdotlua/jest-roblox-shared", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-snapshot = [{ wally = "wally#jsdotlua/jest-snapshot", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-util = [{ wally = "wally#jsdotlua/jest-util", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-regexp = [{ wally = "wally#jsdotlua/luau-regexp", version = ">=0.2.1, <0.3.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +promise = [{ wally = "wally#jsdotlua/promise", version = ">=3.5.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/instance-of@1.2.7 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/jest@3.10.0 roblox"] +direct = ["Jest", { wally = "wally#jsdotlua/jest", version = "^3.10.0", index = "default" }, "dev"] + +[graph."wally#jsdotlua/jest@3.10.0 roblox".dependencies] +jest-core = ["wally#jsdotlua/jest-core@3.10.0 roblox", "standard"] + +[graph."wally#jsdotlua/jest@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/jest@3.10.0 roblox".pkg_ref.dependencies] +jest-core = [{ wally = "wally#jsdotlua/jest-core", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/jest-circus@3.10.0 roblox".dependencies] +chalk = ["wally#jsdotlua/chalk@0.2.1 roblox", "standard"] +expect = ["wally#jsdotlua/expect@3.10.0 roblox", "standard"] +jest-each = ["wally#jsdotlua/jest-each@3.10.0 roblox", "standard"] +jest-environment = ["wally#jsdotlua/jest-environment@3.10.0 roblox", "standard"] +jest-matcher-utils = ["wally#jsdotlua/jest-matcher-utils@3.10.0 roblox", "standard"] +jest-message-util = ["wally#jsdotlua/jest-message-util@3.10.0 roblox", "standard"] +jest-roblox-shared = ["wally#jsdotlua/jest-roblox-shared@3.10.0 roblox", "standard"] +jest-runtime = ["wally#jsdotlua/jest-runtime@3.10.0 roblox", "standard"] +jest-snapshot = ["wally#jsdotlua/jest-snapshot@3.10.0 roblox", "standard"] +jest-test-result = ["wally#jsdotlua/jest-test-result@3.10.0 roblox", "standard"] +jest-types = ["wally#jsdotlua/jest-types@3.10.0 roblox", "standard"] +jest-util = ["wally#jsdotlua/jest-util@3.10.0 roblox", "standard"] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] +luau-regexp = ["wally#jsdotlua/luau-regexp@0.2.1 roblox", "standard"] +pretty-format = ["wally#jsdotlua/pretty-format@3.10.0 roblox", "standard"] +promise = ["wally#jsdotlua/promise@3.5.2 roblox", "standard"] +throat = ["wally#jsdotlua/throat@3.10.0 roblox", "standard"] + +[graph."wally#jsdotlua/jest-circus@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/jest-circus@3.10.0 roblox".pkg_ref.dependencies] +chalk = [{ wally = "wally#jsdotlua/chalk", version = ">=0.2.1, <0.3.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +expect = [{ wally = "wally#jsdotlua/expect", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-each = [{ wally = "wally#jsdotlua/jest-each", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-environment = [{ wally = "wally#jsdotlua/jest-environment", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-matcher-utils = [{ wally = "wally#jsdotlua/jest-matcher-utils", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-message-util = [{ wally = "wally#jsdotlua/jest-message-util", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-roblox-shared = [{ wally = "wally#jsdotlua/jest-roblox-shared", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-runtime = [{ wally = "wally#jsdotlua/jest-runtime", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-snapshot = [{ wally = "wally#jsdotlua/jest-snapshot", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-test-result = [{ wally = "wally#jsdotlua/jest-test-result", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-types = [{ wally = "wally#jsdotlua/jest-types", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-util = [{ wally = "wally#jsdotlua/jest-util", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-regexp = [{ wally = "wally#jsdotlua/luau-regexp", version = ">=0.2.1, <0.3.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +pretty-format = [{ wally = "wally#jsdotlua/pretty-format", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +promise = [{ wally = "wally#jsdotlua/promise", version = ">=3.5.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +throat = [{ wally = "wally#jsdotlua/throat", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/jest-config@3.10.0 roblox".dependencies] +chalk = ["wally#jsdotlua/chalk@0.2.1 roblox", "standard"] +jest-each = ["wally#jsdotlua/jest-each@3.10.0 roblox", "standard"] +jest-environment-roblox = ["wally#jsdotlua/jest-environment-roblox@3.10.0 roblox", "standard"] +jest-get-type = ["wally#jsdotlua/jest-get-type@3.10.0 roblox", "standard"] +jest-message-util = ["wally#jsdotlua/jest-message-util@3.10.0 roblox", "standard"] +jest-roblox-shared = ["wally#jsdotlua/jest-roblox-shared@3.10.0 roblox", "standard"] +jest-types = ["wally#jsdotlua/jest-types@3.10.0 roblox", "standard"] +jest-util = ["wally#jsdotlua/jest-util@3.10.0 roblox", "standard"] +jest-validate = ["wally#jsdotlua/jest-validate@3.10.0 roblox", "standard"] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] +luau-regexp = ["wally#jsdotlua/luau-regexp@0.2.1 roblox", "standard"] +promise = ["wally#jsdotlua/promise@3.5.2 roblox", "standard"] + +[graph."wally#jsdotlua/jest-config@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/jest-config@3.10.0 roblox".pkg_ref.dependencies] +chalk = [{ wally = "wally#jsdotlua/chalk", version = ">=0.2.1, <0.3.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-each = [{ wally = "wally#jsdotlua/jest-each", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-environment-roblox = [{ wally = "wally#jsdotlua/jest-environment-roblox", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-get-type = [{ wally = "wally#jsdotlua/jest-get-type", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-message-util = [{ wally = "wally#jsdotlua/jest-message-util", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-roblox-shared = [{ wally = "wally#jsdotlua/jest-roblox-shared", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-types = [{ wally = "wally#jsdotlua/jest-types", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-util = [{ wally = "wally#jsdotlua/jest-util", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-validate = [{ wally = "wally#jsdotlua/jest-validate", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-regexp = [{ wally = "wally#jsdotlua/luau-regexp", version = ">=0.2.1, <0.3.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +promise = [{ wally = "wally#jsdotlua/promise", version = ">=3.5.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/jest-console@3.10.0 roblox".dependencies] +chalk = ["wally#jsdotlua/chalk@0.2.1 roblox", "standard"] +jest-each = ["wally#jsdotlua/jest-each@3.10.0 roblox", "standard"] +jest-message-util = ["wally#jsdotlua/jest-message-util@3.10.0 roblox", "standard"] +jest-mock = ["wally#jsdotlua/jest-mock@3.10.0 roblox", "standard"] +jest-roblox-shared = ["wally#jsdotlua/jest-roblox-shared@3.10.0 roblox", "standard"] +jest-types = ["wally#jsdotlua/jest-types@3.10.0 roblox", "standard"] +jest-util = ["wally#jsdotlua/jest-util@3.10.0 roblox", "standard"] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] + +[graph."wally#jsdotlua/jest-console@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/jest-console@3.10.0 roblox".pkg_ref.dependencies] +chalk = [{ wally = "wally#jsdotlua/chalk", version = ">=0.2.1, <0.3.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-each = [{ wally = "wally#jsdotlua/jest-each", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-message-util = [{ wally = "wally#jsdotlua/jest-message-util", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-mock = [{ wally = "wally#jsdotlua/jest-mock", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-roblox-shared = [{ wally = "wally#jsdotlua/jest-roblox-shared", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-types = [{ wally = "wally#jsdotlua/jest-types", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-util = [{ wally = "wally#jsdotlua/jest-util", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/jest-core@3.10.0 roblox".dependencies] +chalk = ["wally#jsdotlua/chalk@0.2.1 roblox", "standard"] +emittery = ["wally#jsdotlua/emittery@3.10.0 roblox", "standard"] +jest-config = ["wally#jsdotlua/jest-config@3.10.0 roblox", "standard"] +jest-console = ["wally#jsdotlua/jest-console@3.10.0 roblox", "standard"] +jest-message-util = ["wally#jsdotlua/jest-message-util@3.10.0 roblox", "standard"] +jest-reporters = ["wally#jsdotlua/jest-reporters@3.10.0 roblox", "standard"] +jest-roblox-shared = ["wally#jsdotlua/jest-roblox-shared@3.10.0 roblox", "standard"] +jest-runner = ["wally#jsdotlua/jest-runner@3.10.0 roblox", "standard"] +jest-runtime = ["wally#jsdotlua/jest-runtime@3.10.0 roblox", "standard"] +jest-snapshot = ["wally#jsdotlua/jest-snapshot@3.10.0 roblox", "standard"] +jest-test-result = ["wally#jsdotlua/jest-test-result@3.10.0 roblox", "standard"] +jest-types = ["wally#jsdotlua/jest-types@3.10.0 roblox", "standard"] +jest-util = ["wally#jsdotlua/jest-util@3.10.0 roblox", "standard"] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] +luau-regexp = ["wally#jsdotlua/luau-regexp@0.2.1 roblox", "standard"] +pretty-format = ["wally#jsdotlua/pretty-format@3.10.0 roblox", "standard"] +promise = ["wally#jsdotlua/promise@3.5.2 roblox", "standard"] + +[graph."wally#jsdotlua/jest-core@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/jest-core@3.10.0 roblox".pkg_ref.dependencies] +chalk = [{ wally = "wally#jsdotlua/chalk", version = ">=0.2.1, <0.3.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +emittery = [{ wally = "wally#jsdotlua/emittery", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-config = [{ wally = "wally#jsdotlua/jest-config", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-console = [{ wally = "wally#jsdotlua/jest-console", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-message-util = [{ wally = "wally#jsdotlua/jest-message-util", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-reporters = [{ wally = "wally#jsdotlua/jest-reporters", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-roblox-shared = [{ wally = "wally#jsdotlua/jest-roblox-shared", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-runner = [{ wally = "wally#jsdotlua/jest-runner", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-runtime = [{ wally = "wally#jsdotlua/jest-runtime", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-snapshot = [{ wally = "wally#jsdotlua/jest-snapshot", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-test-result = [{ wally = "wally#jsdotlua/jest-test-result", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-types = [{ wally = "wally#jsdotlua/jest-types", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-util = [{ wally = "wally#jsdotlua/jest-util", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-regexp = [{ wally = "wally#jsdotlua/luau-regexp", version = ">=0.2.1, <0.3.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +pretty-format = [{ wally = "wally#jsdotlua/pretty-format", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +promise = [{ wally = "wally#jsdotlua/promise", version = ">=3.5.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/jest-diff@3.10.0 roblox".dependencies] +chalk = ["wally#jsdotlua/chalk@0.2.1 roblox", "standard"] +diff-sequences = ["wally#jsdotlua/diff-sequences@3.10.0 roblox", "standard"] +jest-get-type = ["wally#jsdotlua/jest-get-type@3.10.0 roblox", "standard"] +jest-types = ["wally#jsdotlua/jest-types@3.10.0 roblox", "standard"] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] +pretty-format = ["wally#jsdotlua/pretty-format@3.10.0 roblox", "standard"] + +[graph."wally#jsdotlua/jest-diff@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/jest-diff@3.10.0 roblox".pkg_ref.dependencies] +chalk = [{ wally = "wally#jsdotlua/chalk", version = ">=0.2.1, <0.3.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +diff-sequences = [{ wally = "wally#jsdotlua/diff-sequences", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-get-type = [{ wally = "wally#jsdotlua/jest-get-type", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-types = [{ wally = "wally#jsdotlua/jest-types", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +pretty-format = [{ wally = "wally#jsdotlua/pretty-format", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/jest-each@3.10.0 roblox".dependencies] +chalk = ["wally#jsdotlua/chalk@0.2.1 roblox", "standard"] +jest-get-type = ["wally#jsdotlua/jest-get-type@3.10.0 roblox", "standard"] +jest-types = ["wally#jsdotlua/jest-types@3.10.0 roblox", "standard"] +jest-util = ["wally#jsdotlua/jest-util@3.10.0 roblox", "standard"] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] +luau-regexp = ["wally#jsdotlua/luau-regexp@0.2.1 roblox", "standard"] +pretty-format = ["wally#jsdotlua/pretty-format@3.10.0 roblox", "standard"] + +[graph."wally#jsdotlua/jest-each@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/jest-each@3.10.0 roblox".pkg_ref.dependencies] +chalk = [{ wally = "wally#jsdotlua/chalk", version = ">=0.2.1, <0.3.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-get-type = [{ wally = "wally#jsdotlua/jest-get-type", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-types = [{ wally = "wally#jsdotlua/jest-types", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-util = [{ wally = "wally#jsdotlua/jest-util", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-regexp = [{ wally = "wally#jsdotlua/luau-regexp", version = ">=0.2.1, <0.3.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +pretty-format = [{ wally = "wally#jsdotlua/pretty-format", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/jest-environment@3.10.0 roblox".dependencies] +jest-fake-timers = ["wally#jsdotlua/jest-fake-timers@3.10.0 roblox", "standard"] +jest-mock = ["wally#jsdotlua/jest-mock@3.10.0 roblox", "standard"] +jest-mock-genv = ["wally#jsdotlua/jest-mock-genv@3.10.0 roblox", "standard"] +jest-types = ["wally#jsdotlua/jest-types@3.10.0 roblox", "standard"] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] + +[graph."wally#jsdotlua/jest-environment@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/jest-environment@3.10.0 roblox".pkg_ref.dependencies] +jest-fake-timers = [{ wally = "wally#jsdotlua/jest-fake-timers", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-mock = [{ wally = "wally#jsdotlua/jest-mock", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-mock-genv = [{ wally = "wally#jsdotlua/jest-mock-genv", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-types = [{ wally = "wally#jsdotlua/jest-types", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/jest-environment-roblox@3.10.0 roblox".dependencies] +jest-environment = ["wally#jsdotlua/jest-environment@3.10.0 roblox", "standard"] +jest-fake-timers = ["wally#jsdotlua/jest-fake-timers@3.10.0 roblox", "standard"] +jest-mock = ["wally#jsdotlua/jest-mock@3.10.0 roblox", "standard"] +jest-types = ["wally#jsdotlua/jest-types@3.10.0 roblox", "standard"] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] +promise = ["wally#jsdotlua/promise@3.5.2 roblox", "standard"] + +[graph."wally#jsdotlua/jest-environment-roblox@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/jest-environment-roblox@3.10.0 roblox".pkg_ref.dependencies] +jest-environment = [{ wally = "wally#jsdotlua/jest-environment", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-fake-timers = [{ wally = "wally#jsdotlua/jest-fake-timers", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-mock = [{ wally = "wally#jsdotlua/jest-mock", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-types = [{ wally = "wally#jsdotlua/jest-types", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +promise = [{ wally = "wally#jsdotlua/promise", version = ">=3.5.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/jest-fake-timers@3.10.0 roblox".dependencies] +jest-get-type = ["wally#jsdotlua/jest-get-type@3.10.0 roblox", "standard"] +jest-mock = ["wally#jsdotlua/jest-mock@3.10.0 roblox", "standard"] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] + +[graph."wally#jsdotlua/jest-fake-timers@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/jest-fake-timers@3.10.0 roblox".pkg_ref.dependencies] +jest-get-type = [{ wally = "wally#jsdotlua/jest-get-type", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-mock = [{ wally = "wally#jsdotlua/jest-mock", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/jest-get-type@3.10.0 roblox".dependencies] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] +luau-regexp = ["wally#jsdotlua/luau-regexp@0.2.1 roblox", "standard"] + +[graph."wally#jsdotlua/jest-get-type@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/jest-get-type@3.10.0 roblox".pkg_ref.dependencies] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-regexp = [{ wally = "wally#jsdotlua/luau-regexp", version = ">=0.2.1, <0.3.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/jest-globals@3.10.0 roblox"] +direct = ["JestGlobals", { wally = "wally#jsdotlua/jest-globals", version = "^3.10.0", index = "default" }, "dev"] + +[graph."wally#jsdotlua/jest-globals@3.10.0 roblox".dependencies] +expect = ["wally#jsdotlua/expect@3.10.0 roblox", "standard"] +jest-environment = ["wally#jsdotlua/jest-environment@3.10.0 roblox", "standard"] +jest-types = ["wally#jsdotlua/jest-types@3.10.0 roblox", "standard"] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] + +[graph."wally#jsdotlua/jest-globals@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/jest-globals@3.10.0 roblox".pkg_ref.dependencies] +expect = [{ wally = "wally#jsdotlua/expect", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-environment = [{ wally = "wally#jsdotlua/jest-environment", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-types = [{ wally = "wally#jsdotlua/jest-types", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/jest-matcher-utils@3.10.0 roblox".dependencies] +chalk = ["wally#jsdotlua/chalk@0.2.1 roblox", "standard"] +jest-diff = ["wally#jsdotlua/jest-diff@3.10.0 roblox", "standard"] +jest-get-type = ["wally#jsdotlua/jest-get-type@3.10.0 roblox", "standard"] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] +luau-regexp = ["wally#jsdotlua/luau-regexp@0.2.1 roblox", "standard"] +pretty-format = ["wally#jsdotlua/pretty-format@3.10.0 roblox", "standard"] + +[graph."wally#jsdotlua/jest-matcher-utils@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/jest-matcher-utils@3.10.0 roblox".pkg_ref.dependencies] +chalk = [{ wally = "wally#jsdotlua/chalk", version = ">=0.2.1, <0.3.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-diff = [{ wally = "wally#jsdotlua/jest-diff", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-get-type = [{ wally = "wally#jsdotlua/jest-get-type", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-regexp = [{ wally = "wally#jsdotlua/luau-regexp", version = ">=0.2.1, <0.3.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +pretty-format = [{ wally = "wally#jsdotlua/pretty-format", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/jest-message-util@3.10.0 roblox".dependencies] +chalk = ["wally#jsdotlua/chalk@0.2.1 roblox", "standard"] +jest-roblox-shared = ["wally#jsdotlua/jest-roblox-shared@3.10.0 roblox", "standard"] +jest-types = ["wally#jsdotlua/jest-types@3.10.0 roblox", "standard"] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] +luau-regexp = ["wally#jsdotlua/luau-regexp@0.2.1 roblox", "standard"] +pretty-format = ["wally#jsdotlua/pretty-format@3.10.0 roblox", "standard"] + +[graph."wally#jsdotlua/jest-message-util@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/jest-message-util@3.10.0 roblox".pkg_ref.dependencies] +chalk = [{ wally = "wally#jsdotlua/chalk", version = ">=0.2.1, <0.3.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-roblox-shared = [{ wally = "wally#jsdotlua/jest-roblox-shared", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-types = [{ wally = "wally#jsdotlua/jest-types", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-regexp = [{ wally = "wally#jsdotlua/luau-regexp", version = ">=0.2.1, <0.3.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +pretty-format = [{ wally = "wally#jsdotlua/pretty-format", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/jest-mock@3.10.0 roblox".dependencies] +jest-mock-genv = ["wally#jsdotlua/jest-mock-genv@3.10.0 roblox", "standard"] +jest-types = ["wally#jsdotlua/jest-types@3.10.0 roblox", "standard"] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] + +[graph."wally#jsdotlua/jest-mock@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/jest-mock@3.10.0 roblox".pkg_ref.dependencies] +jest-mock-genv = [{ wally = "wally#jsdotlua/jest-mock-genv", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-types = [{ wally = "wally#jsdotlua/jest-types", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/jest-mock-genv@3.10.0 roblox".dependencies] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] + +[graph."wally#jsdotlua/jest-mock-genv@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/jest-mock-genv@3.10.0 roblox".pkg_ref.dependencies] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/jest-reporters@3.10.0 roblox".dependencies] +chalk = ["wally#jsdotlua/chalk@0.2.1 roblox", "standard"] +jest-console = ["wally#jsdotlua/jest-console@3.10.0 roblox", "standard"] +jest-message-util = ["wally#jsdotlua/jest-message-util@3.10.0 roblox", "standard"] +jest-mock = ["wally#jsdotlua/jest-mock@3.10.0 roblox", "standard"] +jest-roblox-shared = ["wally#jsdotlua/jest-roblox-shared@3.10.0 roblox", "standard"] +jest-test-result = ["wally#jsdotlua/jest-test-result@3.10.0 roblox", "standard"] +jest-types = ["wally#jsdotlua/jest-types@3.10.0 roblox", "standard"] +jest-util = ["wally#jsdotlua/jest-util@3.10.0 roblox", "standard"] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] +path = ["wally#jsdotlua/path@3.10.0 roblox", "standard"] + +[graph."wally#jsdotlua/jest-reporters@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/jest-reporters@3.10.0 roblox".pkg_ref.dependencies] +chalk = [{ wally = "wally#jsdotlua/chalk", version = ">=0.2.1, <0.3.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-console = [{ wally = "wally#jsdotlua/jest-console", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-message-util = [{ wally = "wally#jsdotlua/jest-message-util", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-mock = [{ wally = "wally#jsdotlua/jest-mock", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-roblox-shared = [{ wally = "wally#jsdotlua/jest-roblox-shared", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-test-result = [{ wally = "wally#jsdotlua/jest-test-result", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-types = [{ wally = "wally#jsdotlua/jest-types", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-util = [{ wally = "wally#jsdotlua/jest-util", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +path = [{ wally = "wally#jsdotlua/path", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/jest-roblox-shared@3.10.0 roblox".dependencies] +jest-get-type = ["wally#jsdotlua/jest-get-type@3.10.0 roblox", "standard"] +jest-mock = ["wally#jsdotlua/jest-mock@3.10.0 roblox", "standard"] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] + +[graph."wally#jsdotlua/jest-roblox-shared@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/jest-roblox-shared@3.10.0 roblox".pkg_ref.dependencies] +jest-get-type = [{ wally = "wally#jsdotlua/jest-get-type", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-mock = [{ wally = "wally#jsdotlua/jest-mock", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/jest-runner@3.10.0 roblox".dependencies] +chalk = ["wally#jsdotlua/chalk@0.2.1 roblox", "standard"] +emittery = ["wally#jsdotlua/emittery@3.10.0 roblox", "standard"] +jest-circus = ["wally#jsdotlua/jest-circus@3.10.0 roblox", "standard"] +jest-console = ["wally#jsdotlua/jest-console@3.10.0 roblox", "standard"] +jest-environment = ["wally#jsdotlua/jest-environment@3.10.0 roblox", "standard"] +jest-message-util = ["wally#jsdotlua/jest-message-util@3.10.0 roblox", "standard"] +jest-roblox-shared = ["wally#jsdotlua/jest-roblox-shared@3.10.0 roblox", "standard"] +jest-runtime = ["wally#jsdotlua/jest-runtime@3.10.0 roblox", "standard"] +jest-test-result = ["wally#jsdotlua/jest-test-result@3.10.0 roblox", "standard"] +jest-types = ["wally#jsdotlua/jest-types@3.10.0 roblox", "standard"] +jest-util = ["wally#jsdotlua/jest-util@3.10.0 roblox", "standard"] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] +pretty-format = ["wally#jsdotlua/pretty-format@3.10.0 roblox", "standard"] +promise = ["wally#jsdotlua/promise@3.5.2 roblox", "standard"] +throat = ["wally#jsdotlua/throat@3.10.0 roblox", "standard"] + +[graph."wally#jsdotlua/jest-runner@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/jest-runner@3.10.0 roblox".pkg_ref.dependencies] +chalk = [{ wally = "wally#jsdotlua/chalk", version = ">=0.2.1, <0.3.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +emittery = [{ wally = "wally#jsdotlua/emittery", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-circus = [{ wally = "wally#jsdotlua/jest-circus", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-console = [{ wally = "wally#jsdotlua/jest-console", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-environment = [{ wally = "wally#jsdotlua/jest-environment", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-message-util = [{ wally = "wally#jsdotlua/jest-message-util", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-roblox-shared = [{ wally = "wally#jsdotlua/jest-roblox-shared", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-runtime = [{ wally = "wally#jsdotlua/jest-runtime", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-test-result = [{ wally = "wally#jsdotlua/jest-test-result", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-types = [{ wally = "wally#jsdotlua/jest-types", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-util = [{ wally = "wally#jsdotlua/jest-util", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +pretty-format = [{ wally = "wally#jsdotlua/pretty-format", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +promise = [{ wally = "wally#jsdotlua/promise", version = ">=3.5.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +throat = [{ wally = "wally#jsdotlua/throat", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/jest-runtime@3.10.0 roblox".dependencies] +emittery = ["wally#jsdotlua/emittery@3.10.0 roblox", "standard"] +expect = ["wally#jsdotlua/expect@3.10.0 roblox", "standard"] +jest-fake-timers = ["wally#jsdotlua/jest-fake-timers@3.10.0 roblox", "standard"] +jest-mock = ["wally#jsdotlua/jest-mock@3.10.0 roblox", "standard"] +jest-mock-genv = ["wally#jsdotlua/jest-mock-genv@3.10.0 roblox", "standard"] +jest-snapshot = ["wally#jsdotlua/jest-snapshot@3.10.0 roblox", "standard"] +jest-types = ["wally#jsdotlua/jest-types@3.10.0 roblox", "standard"] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] +promise = ["wally#jsdotlua/promise@3.5.2 roblox", "standard"] + +[graph."wally#jsdotlua/jest-runtime@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/jest-runtime@3.10.0 roblox".pkg_ref.dependencies] +emittery = [{ wally = "wally#jsdotlua/emittery", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +expect = [{ wally = "wally#jsdotlua/expect", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-fake-timers = [{ wally = "wally#jsdotlua/jest-fake-timers", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-mock = [{ wally = "wally#jsdotlua/jest-mock", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-mock-genv = [{ wally = "wally#jsdotlua/jest-mock-genv", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-snapshot = [{ wally = "wally#jsdotlua/jest-snapshot", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-types = [{ wally = "wally#jsdotlua/jest-types", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +promise = [{ wally = "wally#jsdotlua/promise", version = ">=3.5.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/jest-snapshot@3.10.0 roblox".dependencies] +chalk = ["wally#jsdotlua/chalk@0.2.1 roblox", "standard"] +jest-diff = ["wally#jsdotlua/jest-diff@3.10.0 roblox", "standard"] +jest-get-type = ["wally#jsdotlua/jest-get-type@3.10.0 roblox", "standard"] +jest-matcher-utils = ["wally#jsdotlua/jest-matcher-utils@3.10.0 roblox", "standard"] +jest-roblox-shared = ["wally#jsdotlua/jest-roblox-shared@3.10.0 roblox", "standard"] +jest-types = ["wally#jsdotlua/jest-types@3.10.0 roblox", "standard"] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] +pretty-format = ["wally#jsdotlua/pretty-format@3.10.0 roblox", "standard"] +promise = ["wally#jsdotlua/promise@3.5.2 roblox", "standard"] + +[graph."wally#jsdotlua/jest-snapshot@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/jest-snapshot@3.10.0 roblox".pkg_ref.dependencies] +chalk = [{ wally = "wally#jsdotlua/chalk", version = ">=0.2.1, <0.3.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-diff = [{ wally = "wally#jsdotlua/jest-diff", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-get-type = [{ wally = "wally#jsdotlua/jest-get-type", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-matcher-utils = [{ wally = "wally#jsdotlua/jest-matcher-utils", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-roblox-shared = [{ wally = "wally#jsdotlua/jest-roblox-shared", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-types = [{ wally = "wally#jsdotlua/jest-types", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +pretty-format = [{ wally = "wally#jsdotlua/pretty-format", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +promise = [{ wally = "wally#jsdotlua/promise", version = ">=3.5.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/jest-test-result@3.10.0 roblox".dependencies] +jest-types = ["wally#jsdotlua/jest-types@3.10.0 roblox", "standard"] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] + +[graph."wally#jsdotlua/jest-test-result@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/jest-test-result@3.10.0 roblox".pkg_ref.dependencies] +jest-types = [{ wally = "wally#jsdotlua/jest-types", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/jest-types@3.10.0 roblox".dependencies] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] +luau-regexp = ["wally#jsdotlua/luau-regexp@0.2.1 roblox", "standard"] + +[graph."wally#jsdotlua/jest-types@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/jest-types@3.10.0 roblox".pkg_ref.dependencies] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-regexp = [{ wally = "wally#jsdotlua/luau-regexp", version = ">=0.2.1, <0.3.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/jest-util@3.10.0 roblox".dependencies] +chalk = ["wally#jsdotlua/chalk@0.2.1 roblox", "standard"] +jest-roblox-shared = ["wally#jsdotlua/jest-roblox-shared@3.10.0 roblox", "standard"] +jest-types = ["wally#jsdotlua/jest-types@3.10.0 roblox", "standard"] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] +luau-regexp = ["wally#jsdotlua/luau-regexp@0.2.1 roblox", "standard"] +picomatch = ["wally#jsdotlua/picomatch@0.4.0 roblox", "standard"] +promise = ["wally#jsdotlua/promise@3.5.2 roblox", "standard"] + +[graph."wally#jsdotlua/jest-util@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/jest-util@3.10.0 roblox".pkg_ref.dependencies] +chalk = [{ wally = "wally#jsdotlua/chalk", version = ">=0.2.1, <0.3.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-roblox-shared = [{ wally = "wally#jsdotlua/jest-roblox-shared", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-types = [{ wally = "wally#jsdotlua/jest-types", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-regexp = [{ wally = "wally#jsdotlua/luau-regexp", version = ">=0.2.1, <0.3.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +picomatch = [{ wally = "wally#jsdotlua/picomatch", version = ">=0.4.0, <0.5.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +promise = [{ wally = "wally#jsdotlua/promise", version = ">=3.5.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/jest-validate@3.10.0 roblox".dependencies] +chalk = ["wally#jsdotlua/chalk@0.2.1 roblox", "standard"] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] + +[graph."wally#jsdotlua/jest-validate@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/jest-validate@3.10.0 roblox".pkg_ref.dependencies] +chalk = [{ wally = "wally#jsdotlua/chalk", version = ">=0.2.1, <0.3.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/luau-polyfill@1.2.7 roblox".dependencies] +boolean = ["wally#jsdotlua/boolean@1.2.7 roblox", "standard"] +collections = ["wally#jsdotlua/collections@1.2.7 roblox", "standard"] +console = ["wally#jsdotlua/console@1.2.7 roblox", "standard"] +es7-types = ["wally#jsdotlua/es7-types@1.2.7 roblox", "standard"] +instance-of = ["wally#jsdotlua/instance-of@1.2.7 roblox", "standard"] +math = ["wally#jsdotlua/math@1.2.7 roblox", "standard"] +number = ["wally#jsdotlua/number@1.2.7 roblox", "standard"] +string = ["wally#jsdotlua/string@1.2.7 roblox", "standard"] +symbol-luau = ["wally#jsdotlua/symbol-luau@1.0.1 roblox", "standard"] +timers = ["wally#jsdotlua/timers@1.2.7 roblox", "standard"] + +[graph."wally#jsdotlua/luau-polyfill@1.2.7 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/luau-polyfill@1.2.7 roblox".pkg_ref.dependencies] +boolean = [{ wally = "wally#jsdotlua/boolean", version = ">=1.2.7, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +collections = [{ wally = "wally#jsdotlua/collections", version = ">=1.2.7, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +console = [{ wally = "wally#jsdotlua/console", version = ">=1.2.7, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +es7-types = [{ wally = "wally#jsdotlua/es7-types", version = ">=1.2.7, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +instance-of = [{ wally = "wally#jsdotlua/instance-of", version = ">=1.2.7, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +math = [{ wally = "wally#jsdotlua/math", version = ">=1.2.7, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +number = [{ wally = "wally#jsdotlua/number", version = ">=1.2.7, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +string = [{ wally = "wally#jsdotlua/string", version = ">=1.2.7, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +symbol-luau = [{ wally = "wally#jsdotlua/symbol-luau", version = ">=1.0.0, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +timers = [{ wally = "wally#jsdotlua/timers", version = ">=1.2.7, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/luau-regexp@0.2.1 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/math@1.2.7 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/number@1.2.7 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/path@3.10.0 roblox".dependencies] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] + +[graph."wally#jsdotlua/path@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/path@3.10.0 roblox".pkg_ref.dependencies] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/picomatch@0.4.0 roblox".dependencies] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] +luau-regexp = ["wally#jsdotlua/luau-regexp@0.2.1 roblox", "standard"] +promise = ["wally#jsdotlua/promise@3.5.2 roblox", "standard"] + +[graph."wally#jsdotlua/picomatch@0.4.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/picomatch@0.4.0 roblox".pkg_ref.dependencies] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-regexp = [{ wally = "wally#jsdotlua/luau-regexp", version = ">=0.2.1, <0.3.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +promise = [{ wally = "wally#jsdotlua/promise", version = ">=3.5.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/pretty-format@3.10.0 roblox".dependencies] +chalk = ["wally#jsdotlua/chalk@0.2.1 roblox", "standard"] +jest-get-type = ["wally#jsdotlua/jest-get-type@3.10.0 roblox", "standard"] +jest-roblox-shared = ["wally#jsdotlua/jest-roblox-shared@3.10.0 roblox", "standard"] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] +luau-regexp = ["wally#jsdotlua/luau-regexp@0.2.1 roblox", "standard"] +react-is = ["wally#jsdotlua/react-is@17.2.1 roblox", "standard"] + +[graph."wally#jsdotlua/pretty-format@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/pretty-format@3.10.0 roblox".pkg_ref.dependencies] +chalk = [{ wally = "wally#jsdotlua/chalk", version = ">=0.2.1, <0.3.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-get-type = [{ wally = "wally#jsdotlua/jest-get-type", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +jest-roblox-shared = [{ wally = "wally#jsdotlua/jest-roblox-shared", version = ">=3.10.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +luau-regexp = [{ wally = "wally#jsdotlua/luau-regexp", version = ">=0.2.1, <0.3.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +react-is = [{ wally = "wally#jsdotlua/react-is", version = ">=17.1.0, <18.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/promise@3.5.2 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/react-is@17.2.1 roblox".dependencies] +shared = ["wally#jsdotlua/shared@17.2.1 roblox", "standard"] + +[graph."wally#jsdotlua/react-is@17.2.1 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/react-is@17.2.1 roblox".pkg_ref.dependencies] +shared = [{ wally = "wally#jsdotlua/shared", version = ">=17.2.1, <18.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/shared@17.2.1 roblox".dependencies] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] + +[graph."wally#jsdotlua/shared@17.2.1 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/shared@17.2.1 roblox".pkg_ref.dependencies] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/string@1.2.7 roblox".dependencies] +es7-types = ["wally#jsdotlua/es7-types@1.2.7 roblox", "standard"] +number = ["wally#jsdotlua/number@1.2.7 roblox", "standard"] + +[graph."wally#jsdotlua/string@1.2.7 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/string@1.2.7 roblox".pkg_ref.dependencies] +es7-types = [{ wally = "wally#jsdotlua/es7-types", version = ">=1.2.7, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +number = [{ wally = "wally#jsdotlua/number", version = ">=1.2.7, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/symbol-luau@1.0.1 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/throat@3.10.0 roblox".dependencies] +luau-polyfill = ["wally#jsdotlua/luau-polyfill@1.2.7 roblox", "standard"] +promise = ["wally#jsdotlua/promise@3.5.2 roblox", "standard"] + +[graph."wally#jsdotlua/throat@3.10.0 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/throat@3.10.0 roblox".pkg_ref.dependencies] +luau-polyfill = [{ wally = "wally#jsdotlua/luau-polyfill", version = ">=1.2.6, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] +promise = [{ wally = "wally#jsdotlua/promise", version = ">=3.5.0, <4.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#jsdotlua/timers@1.2.7 roblox".dependencies] +collections = ["wally#jsdotlua/collections@1.2.7 roblox", "standard"] + +[graph."wally#jsdotlua/timers@1.2.7 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" + +[graph."wally#jsdotlua/timers@1.2.7 roblox".pkg_ref.dependencies] +collections = [{ wally = "wally#jsdotlua/collections", version = ">=1.2.7, <2.0.0", index = "https://github.com/UpliftGames/wally-index" }, "standard"] + +[graph."wally#sleitnick/signal@2.0.3 roblox"] +direct = ["Signal", { wally = "wally#sleitnick/signal", version = "^2", index = "default" }, "standard"] + +[graph."wally#sleitnick/signal@2.0.3 roblox".pkg_ref] +ref_ty = "wally" +index_url = "https://github.com/UpliftGames/wally-index" diff --git a/pesde.toml b/pesde.toml new file mode 100644 index 0000000..da222cf --- /dev/null +++ b/pesde.toml @@ -0,0 +1,23 @@ +name = "4x8matrix/wally_packages" +version = "0.1.0" +license = "MIT" + +[target] +environment = "roblox" + +[indices] +default = "https://github.com/pesde-pkg/index" + +[wally_indices] +default = "https://github.com/UpliftGames/wally-index" + +[scripts] +roblox_sync_config_generator = ".pesde/roblox_sync_config_generator.luau" +sourcemap_generator = ".pesde/sourcemap_generator.luau" + +[dev_dependencies] +JestGlobals = { wally = "jsdotlua/jest-globals", version = "^3.10.0" } +Jest = { wally = "jsdotlua/jest", version = "^3.10.0" } + +[dependencies] +Signal = { wally = "sleitnick/signal", version = "^2" } diff --git a/reuploads/windlines/.vscode/settings.json b/reuploads/windlines/.vscode/settings.json new file mode 100644 index 0000000..46434d2 --- /dev/null +++ b/reuploads/windlines/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "luau-lsp.sourcemap.rojoProjectFile": "development.project.json", +} \ No newline at end of file diff --git a/reuploads/windlines/README.md b/reuploads/windlines/README.md new file mode 100644 index 0000000..69e9d08 --- /dev/null +++ b/reuploads/windlines/README.md @@ -0,0 +1,3 @@ +# Windline + +A simple re-upload of the 'Windline' module found in Boatbombers windshake tech demo. \ No newline at end of file diff --git a/reuploads/windlines/default.project.json b/reuploads/windlines/default.project.json new file mode 100644 index 0000000..6794f1d --- /dev/null +++ b/reuploads/windlines/default.project.json @@ -0,0 +1,7 @@ +{ + "name": "Windline", + "emitLegacyScripts": false, + "tree": { + "$path": "src" + } +} \ No newline at end of file diff --git a/reuploads/windlines/development.project.json b/reuploads/windlines/development.project.json new file mode 100644 index 0000000..1d3cd39 --- /dev/null +++ b/reuploads/windlines/development.project.json @@ -0,0 +1,15 @@ +{ + "name": "Windline", + "emitLegacyScripts": false, + "tree": { + "$className": "DataModel", + "ReplicatedStorage": { + "Packages": { + "$path": "Packages", + "Windline": { + "$path": "src" + } + } + } + } +} \ No newline at end of file diff --git a/reuploads/windlines/selene.toml b/reuploads/windlines/selene.toml new file mode 100644 index 0000000..3309f77 --- /dev/null +++ b/reuploads/windlines/selene.toml @@ -0,0 +1,23 @@ +std = "luau+roblox" + +[rules] +almost_swapped = "warn" +divide_by_zero = "warn" +duplicate_keys = "warn" +empty_if = "warn" +global_usage = "warn" +if_same_then_else = "warn" +ifs_same_cond = "warn" +multiple_statements = "warn" +mismatched_arg_count = "warn" +parenthese_conditions = "warn" +roblox_incorrect_color3_new_bounds = "warn" +roblox_incorrect_roact_usage = "warn" +shadowing = "warn" +incorrect_standard_library_use = "warn" +suspicious_reverse_loop = "warn" +type_check_inside_call = "warn" +unbalanced_assignments = "warn" +undefined_variable = "warn" +unscoped_variables = "warn" +unused_variable = "warn" \ No newline at end of file diff --git a/Modules/Windline/Source/init.luau b/reuploads/windlines/src/init.luau similarity index 95% rename from Modules/Windline/Source/init.luau rename to reuploads/windlines/src/init.luau index b10dfbc..578d6ca 100644 --- a/Modules/Windline/Source/init.luau +++ b/reuploads/windlines/src/init.luau @@ -21,10 +21,11 @@ WindLines.Private.Lifetime = 3 WindLines.Private.Direction = workspace.GlobalWind WindLines.Private.Speed = 6 WindLines.Private.SpawnRate = 25 +WindLines.Private.Position = Vector3.zero WindLines.Private.LastSpawned = os.clock() -WindLines.Private.UpdateConnection = nil +WindLines.Private.UpdateConnection = nil :: RBXScriptConnection? WindLines.Private.UpdateQueue = table.create(10) --[=[ @@ -85,7 +86,7 @@ function WindLines.Public.Init(self: WindLines, settings: WindLineSettings?) -- Update queue handler debug.profilebegin("Wind Lines") - for i, WindLine in WindLines.Private.UpdateQueue do + for i, WindLine: any in WindLines.Private.UpdateQueue do local AliveTime = Clock - WindLine.StartClock if AliveTime >= WindLine.Lifetime then @@ -136,7 +137,7 @@ end Windline:Cleanup() ``` ]=] -function WindLines.Public.Cleanup(self: WindLines) +function WindLines.Public.Cleanup(_: WindLines) if WindLines.Private.UpdateConnection then WindLines.Private.UpdateConnection:Disconnect() WindLines.Private.UpdateConnection = nil @@ -175,7 +176,7 @@ end }) ``` ]=] -function WindLines.Public.Create(self: WindLines, settings: WindLineObjectSettings?) +function WindLines.Public.Create(_: WindLines, settings: WindLineObjectSettings?) debug.profilebegin("Add Wind Line") local lifetime = WindLines.Private.Lifetime @@ -190,7 +191,7 @@ function WindLines.Public.Create(self: WindLines, settings: WindLineObjectSettin lifetime = settings.Lifetime or WindLines.Private.Lifetime direction = settings.Direction or WindLines.Private.Direction speed = settings.Speed or WindLines.Private.Speed - position = settings.Speed or WindLines.Private.Position + position = settings.Position or WindLines.Private.Position end if speed <= 0 then diff --git a/Modules/Windline/wally.toml b/reuploads/windlines/wally.toml similarity index 70% rename from Modules/Windline/wally.toml rename to reuploads/windlines/wally.toml index 3a5f5c1..5356450 100644 --- a/Modules/Windline/wally.toml +++ b/reuploads/windlines/wally.toml @@ -1,16 +1,12 @@ [package] name = "4x8matrix/windline" -version = "0.1.2" +version = "1.0.0" realm = "shared" registry = "https://github.com/UpliftGames/wally-index" licence = "MIT" -authors = ["boatbomber (https://boatbomber.com)", "AsynchronousMatrix"] +authors = ["boatbomber (https://boatbomber.com)", "AsynchronousMatrix (https://www.asyncmatrix.dev/)"] description = "A simple re-upload of the 'Windline' module found in Boatbombers windshake tech demo." exclude = ["**"] -include = ["Source", "Source/*", "default.project.json", "wally.toml"] - -[dev-dependencies] - -[dependencies] \ No newline at end of file +include = ["src", "src/*", "default.project.json", "wally.toml"] \ No newline at end of file diff --git a/rokit.toml b/rokit.toml new file mode 100644 index 0000000..126a712 --- /dev/null +++ b/rokit.toml @@ -0,0 +1,14 @@ +# This file lists tools managed by Aftman, a cross-platform toolchain manager. +# For more information, see https://github.com/LPGhatguy/aftman + +# To add a new tool, add an entry to this table. + +[tools] +luaulsp = "JohnnyMorganz/luau-lsp@1.49.1" +lune = "filiptibell/lune@0.10.1" +selene = "Kampfkarren/selene@0.28.0" +wally = "UpliftGames/wally@0.3.2" +rojo = "rojo-rbx/rojo@7.5.1" +wpt = "JohnnyMorganz/wally-package-types@1.5.1" + +run-in-roblox = "rojo-rbx/run-in-roblox@0.3.0" diff --git a/selene.toml b/selene.toml new file mode 100644 index 0000000..3309f77 --- /dev/null +++ b/selene.toml @@ -0,0 +1,23 @@ +std = "luau+roblox" + +[rules] +almost_swapped = "warn" +divide_by_zero = "warn" +duplicate_keys = "warn" +empty_if = "warn" +global_usage = "warn" +if_same_then_else = "warn" +ifs_same_cond = "warn" +multiple_statements = "warn" +mismatched_arg_count = "warn" +parenthese_conditions = "warn" +roblox_incorrect_color3_new_bounds = "warn" +roblox_incorrect_roact_usage = "warn" +shadowing = "warn" +incorrect_standard_library_use = "warn" +suspicious_reverse_loop = "warn" +type_check_inside_call = "warn" +unbalanced_assignments = "warn" +undefined_variable = "warn" +unscoped_variables = "warn" +unused_variable = "warn" \ No newline at end of file diff --git a/test-config.luau b/test-config.luau new file mode 100644 index 0000000..3407653 --- /dev/null +++ b/test-config.luau @@ -0,0 +1,7 @@ +return { + placeId = 129720155392658, + universeId = 6642880639, + + testPlaceFile = "test-place.rbxl", + rojoProjectFile = "test.project.json", +} \ No newline at end of file diff --git a/test.project.json b/test.project.json new file mode 100644 index 0000000..59718c8 --- /dev/null +++ b/test.project.json @@ -0,0 +1,27 @@ +{ + "name": "jest-tests", + "emitLegacyScripts": false, + "tree": { + "$className": "DataModel", + "ReplicatedStorage": { + "Packages": { + "$path": "roblox_packages", + "CameraProfiler": { + "$path": "packages/camera_profiler" + }, + "Console": { + "$path": "packages/console" + } + } + }, + "ServerScriptService": { + "$className": "ServerScriptService", + "$properties": { + "LoadStringEnabled": true + }, + "run-tests-in-studio": { + "$path": ".lune/test/bin/run-tests-in-studio.server.luau" + } + } + } +} \ No newline at end of file