123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- stds.roblox = {
- globals = {
- "game",
- "workspace",
- "script",
- },
- read_globals = {
- -- Global objects
- "plugin",
- -- Global functions
- "spawn",
- "delay",
- "warn",
- "wait",
- "tick",
- "typeof",
- "settings",
- "UserSettings",
- -- Global Namespaces
- "Enum",
- "debug",
- math = {
- fields = {
- "clamp",
- "sign",
- "noise"
- }
- },
- debug = {
- fields = {
- "profilebegin",
- "profileend"
- }
- },
- -- Global types
- "Instance",
- "Vector2",
- "Vector3",
- "CFrame",
- "Region3",
- "Color3",
- "UDim",
- "UDim2",
- "BrickColor",
- "Rect",
- "TweenInfo",
- "NumberRange",
- "NumberSequence",
- "NumberSequenceKeypoint",
- "Random",
- "Ray",
- "ColorSequence",
- "ColorSequenceKeypoint",
- "PhysicalProperties",
- "NumberSequence",
- "NumberSequenceKeypoint"
- }
- }
- ignore = { "111", "113", "631" }
- std = "lua51+roblox"
|