Created
November 28, 2019 00:13
-
-
Save howmanysmall/d7d000dc80e903c902f20b3179ab6fa6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local lua_builtin = { | |
-- Lua Functions | |
["assert"] = true; | |
["collectgarbage"] = true; | |
["error"] = true; | |
["getfenv"] = true; | |
["getmetatable"] = true; | |
["ipairs"] = true; | |
["loadstring"] = true; | |
["newproxy"] = true; | |
["next"] = true; | |
["pairs"] = true; | |
["pcall"] = true; | |
["print"] = true; | |
["rawequal"] = true; | |
["rawget"] = true; | |
["rawset"] = true; | |
["select"] = true; | |
["setfenv"] = true; | |
["setmetatable"] = true; | |
["tonumber"] = true; | |
["tostring"] = true; | |
["type"] = true; | |
["unpack"] = true; | |
["xpcall"] = true; | |
-- Lua Variables | |
["_G"] = true; | |
["_VERSION"] = true; | |
-- Lua Tables | |
["bit32"] = true; | |
["coroutine"] = true; | |
["debug"] = true; | |
["math"] = true; | |
["os"] = true; | |
["string"] = true; | |
["table"] = true; | |
["utf8"] = true; | |
-- Roblox Functions | |
["delay"] = true; | |
["elapsedTime"] = true; | |
["gcinfo"] = true; | |
["require"] = true; | |
["settings"] = true; | |
["spawn"] = true; | |
["tick"] = true; | |
["time"] = true; | |
["typeof"] = true; | |
["UserSettings"] = true; | |
["wait"] = true; | |
["warn"] = true; | |
["ypcall"] = true; | |
-- Roblox Variables | |
["Enum"] = true; | |
["game"] = true; | |
["plugin"] = true; | |
["shared"] = true; | |
["script"] = true; | |
["workspace"] = true; | |
-- Roblox Tables | |
["Axes"] = true; | |
["BrickColor"] = true; | |
["CellId"] = true; | |
["CFrame"] = true; | |
["Color3"] = true; | |
["ColorSequence"] = true; | |
["ColorSequenceKeypoint"] = true; | |
["DateTime"] = true; | |
["DockWidgetPluginGuiInfo"] = true; | |
["Faces"] = true; | |
["Instance"] = true; | |
["NumberRange"] = true; | |
["NumberSequence"] = true; | |
["NumberSequenceKeypoint"] = true; | |
["PathWaypoint"] = true; | |
["PhysicalProperties"] = true; | |
["PluginDrag"] = true; | |
["Random"] = true; | |
["Ray"] = true; | |
["Rect"] = true; | |
["Region3"] = true; | |
["Region3int16"] = true; | |
["TweenInfo"] = true; | |
["UDim"] = true; | |
["UDim2"] = true; | |
["Vector2"] = true; | |
["Vector2int16"] = true; | |
["Vector3"] = true; | |
["Vector3int16"] = true; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment