-
Notifications
You must be signed in to change notification settings - Fork 21
/
defineGlobals.lua
66 lines (53 loc) · 1.13 KB
/
defineGlobals.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
script = {}
plugin = {}
game = {}
workspace = {}
bit32 = {}
utf8 = {}
Instance = {}
CFrame = {}
Enum = {}
Color3 = {}
PhysicalProperties = {}
NumberSequence = {}
NumberSequenceKeypoint = {}
TweenInfo = {}
ColorSequence = {}
ColorSequenceKeypoint = {}
Vector2 = {}
Vector3 = {}
Region3 = {}
Vector3int16 = {}
Region3int16 = {}
UDim = {}
UDim2 = {}
Rect = {}
Ray = {}
Random = {}
BrickColor = {}
---@param func function()
spawn = function(func) end
---@param time number
wait = function(time) end
---@return number Local time since 1970
tick = function() end
---@return number Time since the start of the game
time = function() end
---@vararg any
warn = function(...) end
---@param obj any
---@return string Roblox object type
typeof = function(obj) end
---@param time number
---@param func function
delay = function(time, func) end
---@param tbl number
---@param start integer
unpack = function(tbl, start) end
---@return userdata
newproxy = function() end
settings = function() end
UserSettings = function() end
describe = function() end
expect = function() end
it = function() end