-
Notifications
You must be signed in to change notification settings - Fork 2
/
Bolt.luau
31 lines (25 loc) · 982 Bytes
/
Bolt.luau
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
local Bolt = {
["Leaderstats"] = require(script.Leaderstats),
["Health"] = require(script.Health),
["Badges"] = require(script.Badges),
["Chat"] = require(script.Chat),
["Combat"] = require(script.Combat),
["Actions"] = require(script.Actions),
["Camera"] = require(script.Camera),
["Teams"] = require(script.Teams),
["Teleporting"] = require(script.Teleporting),
["Premium"] = require(script.Premium),
["Stats"] = require(script.Stats),
["Marketplace"] = require(script.Marketplace),
["Datastores"] = require(script.Datastores),
["Studify"] = require(script.Studify)
}
Bolt.Version = "22.3"
Bolt.VersionDetails = "Bolt has been intigrated with Studify and Datastores have been added. Many functions have been simplified using less words"
game.Players.PlayerAdded:Connect(function(player)
local tempValS = Instance.new("Folder", player)
tempValS.Name = "stats"
local tempValLS = Instance.new("Folder", player)
tempValLS.Name = "leaderstats"
end)
return Bolt