> For the complete documentation index, see [llms.txt](https://docs.easy.gg/scripting/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.easy.gg/scripting/bedwars-scripting/utilities/table.md).

# table

Same as the [Roblox table library](https://create.roblox.com/docs/reference/engine/libraries/table) with a limited set of functions.

* table.sort
* table.clear
* table.insert(t: [table](https://create.roblox.com/docs/luau/tables), value: Variant, pos: [number](https://create.roblox.com/docs/en-us/luau/numbers) | nil)
* table.find(haystack: [table](https://create.roblox.com/docs/luau/tables), needle: Variant,  init: [number](https://create.roblox.com/docs/en-us/luau/numbers))
* table.remove(t: [table](https://create.roblox.com/docs/luau/tables), pos: [number](https://create.roblox.com/docs/en-us/luau/numbers))
* table.getn(t: [table](https://create.roblox.com/docs/luau/tables))
* table.freeze
* table.isFrozen
* table.create
